Repository: themexpert/onepager Branch: develop Commit: f82fc1512b91 Files: 426 Total size: 2.9 MB Directory structure: gitextract_kqenrl0y/ ├── .distignore ├── .editorconfig ├── .github/ │ └── workflows/ │ └── wp.yml ├── .gitignore ├── .jshintrc ├── .travis.yml ├── CHANGELOG.md ├── LICENSE.txt ├── app/ │ ├── Admin/ │ │ ├── menu.php │ │ ├── notice.php │ │ ├── override.php │ │ └── views/ │ │ ├── blocks.php │ │ ├── dashboard.php │ │ ├── delete-handler.php │ │ ├── getting-started.php │ │ ├── handler.php │ │ ├── settings.php │ │ ├── template-lists.php │ │ ├── templates/ │ │ │ ├── template-edit.php │ │ │ ├── template-list.php │ │ │ ├── template-new.php │ │ │ └── template-view.php │ │ └── templates.php │ ├── Api/ │ │ ├── Controllers/ │ │ │ ├── ApiController.php │ │ │ ├── BlocksApiController.php │ │ │ ├── MenuApiController.php │ │ │ ├── OptionsApiController.php │ │ │ ├── PageApiController.php │ │ │ └── SectionsApiController.php │ │ └── routes.php │ ├── Application.php │ ├── Assets/ │ │ ├── BlocksScripts.php │ │ ├── BuildModeScripts.php │ │ ├── OnepageScripts.php │ │ ├── OptionsPanelScripts.php │ │ ├── PreviewScripts.php │ │ ├── Traits/ │ │ │ └── FormEngineScripts.php │ │ └── WpConflictResolver.php │ ├── Content/ │ │ ├── OnepageContent.php │ │ ├── OnepageInternalScripts.php │ │ └── OnepageToolbar.php │ ├── Loaders/ │ │ ├── BlocksLoader.php │ │ ├── PresetsLoader.php │ │ └── TemplateLoader.php │ ├── Metabox/ │ │ ├── metabox.php │ │ └── page-meta.php │ ├── Onepager.php │ ├── OptionsPanel/ │ │ └── settings.php │ ├── bootstrap.php │ ├── data/ │ │ └── font-families.php │ ├── inc/ │ │ ├── onepager-settings.php │ │ └── support.php │ └── templates/ │ ├── builder.php │ ├── my-test.php │ ├── onepage.php │ └── onepager-default.php ├── blocks/ │ ├── blogs/ │ │ ├── blog-1/ │ │ │ ├── config.php │ │ │ ├── style.css │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── blog-2/ │ │ │ ├── config.php │ │ │ ├── style.css │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── blog-3/ │ │ │ ├── config.php │ │ │ ├── style.css │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── blog-4/ │ │ │ ├── config.php │ │ │ ├── style.css │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── blog-5/ │ │ │ └── blog-5/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ └── blog-6/ │ │ ├── config.php │ │ ├── style.php │ │ └── view.php │ ├── coming-soon/ │ │ ├── coming-soon-1/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ └── coming-soon-2/ │ │ ├── config.php │ │ ├── style.php │ │ └── view.php │ ├── contacts/ │ │ ├── contact-1/ │ │ │ ├── config.php │ │ │ ├── style.css │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── contact-2/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── contact-3/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ └── contact-4/ │ │ ├── config.php │ │ ├── style.php │ │ └── view.php │ ├── cta/ │ │ ├── cta-1/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── cta-2/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── cta-3/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ └── cta-4/ │ │ ├── config.php │ │ ├── style.php │ │ └── view.php │ ├── features/ │ │ ├── feature-1/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── feature-10/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── feature-11/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── feature-12/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── feature-13/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── feature-14/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── feature-15/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── feature-16/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── feature-17/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── feature-18/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── feature-19/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── feature-2/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── feature-20/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── feature-21/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── feature-22/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── feature-23/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── feature-24/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── feature-25/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── feature-3/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── feature-4/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── feature-5/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── feature-6/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── feature-7/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── feature-8/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ └── feature-9/ │ │ ├── config.php │ │ ├── style.php │ │ └── view.php │ ├── footers/ │ │ ├── footer-1/ │ │ │ ├── config.php │ │ │ ├── style.css │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── footer-2/ │ │ │ └── footer-2/ │ │ │ └── footer-2/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── footer-3/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ └── footer-4/ │ │ ├── config.php │ │ ├── style.php │ │ └── view.php │ ├── maps/ │ │ └── map-1/ │ │ ├── config.php │ │ ├── style.php │ │ └── view.php │ ├── navbars/ │ │ ├── navbar-1/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── navbar-2/ │ │ │ └── navbar-2/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ └── navbar-3/ │ │ ├── config.php │ │ ├── style.php │ │ └── view.php │ ├── portfolios/ │ │ └── portfolio-1/ │ │ ├── config.php │ │ ├── style.css │ │ ├── style.php │ │ └── view.php │ ├── pricing/ │ │ └── pricing-1/ │ │ ├── config.php │ │ ├── style.css │ │ ├── style.php │ │ └── view.php │ ├── sliders/ │ │ ├── slider-1/ │ │ │ ├── config.php │ │ │ ├── style.css │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── slider-2/ │ │ │ ├── config.php │ │ │ ├── style.css │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── slider-3/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ ├── slider-4/ │ │ │ ├── config.php │ │ │ ├── style.php │ │ │ └── view.php │ │ └── slider-5/ │ │ ├── config.php │ │ ├── style.php │ │ └── view.php │ ├── teams/ │ │ └── team-1/ │ │ ├── config.php │ │ ├── style.css │ │ ├── style.php │ │ └── view.php │ ├── testimonials/ │ │ └── testimonial-1/ │ │ ├── config.php │ │ ├── style.css │ │ ├── style.php │ │ └── view.php │ └── woocommerce/ │ └── woo-1/ │ ├── config.php │ ├── style.php │ └── view.php ├── bower.json ├── bowerrc.json ├── composer.json ├── constants.php ├── engine/ │ ├── App/ │ │ ├── App.jsx │ │ ├── AppStore.js │ │ ├── AppSyncService.js │ │ ├── Preview.jsx │ │ ├── components/ │ │ │ ├── blocks/ │ │ │ │ ├── Block.jsx │ │ │ │ └── BlockCollection.jsx │ │ │ ├── presets/ │ │ │ │ ├── Preset.jsx │ │ │ │ └── PresetCollections.jsx │ │ │ ├── section-list/ │ │ │ │ ├── Footer.jsx │ │ │ │ ├── Section.jsx │ │ │ │ ├── SectionList.jsx │ │ │ │ ├── SectionTitle.jsx │ │ │ │ └── style.less │ │ │ ├── section-view/ │ │ │ │ ├── SectionView.jsx │ │ │ │ └── SectionViewCollection.jsx │ │ │ ├── sidebar/ │ │ │ │ ├── Menu.jsx │ │ │ │ ├── SectionControls.jsx │ │ │ │ ├── Settings.jsx │ │ │ │ ├── Sidebar.jsx │ │ │ │ ├── Tab.jsx │ │ │ │ ├── assets/ │ │ │ │ │ └── overlay.less │ │ │ │ └── menu/ │ │ │ │ ├── AddToMenu.jsx │ │ │ │ └── style.less │ │ │ └── templates/ │ │ │ ├── ImportTemplate.jsx │ │ │ ├── SaveTemplate.jsx │ │ │ ├── SavedTemplates.jsx │ │ │ └── Template.jsx │ │ └── flux/ │ │ ├── AppActions.js │ │ ├── AppConstants.js │ │ ├── AppDispatcher.js │ │ └── BaseStore.js │ ├── Generator/ │ │ ├── Generator.jsx │ │ ├── GeneratorActions.js │ │ └── GeneratorStore.js │ ├── Optionspanel/ │ │ ├── Content.jsx │ │ ├── OptionActions.js │ │ ├── OptionStore.js │ │ ├── OptionsPanel.jsx │ │ ├── OptionsPanelSync.js │ │ └── Tabs.jsx │ ├── generator.jsx │ ├── lithium/ │ │ ├── builder/ │ │ │ ├── admin.less │ │ │ ├── bootstrap-override.less │ │ │ ├── bowerfix.less │ │ │ ├── modal.less │ │ │ ├── ui.less │ │ │ └── variables.less │ │ ├── lithium-builder.less │ │ ├── lithium.js │ │ ├── lithium.less │ │ └── site/ │ │ ├── blocks.less │ │ ├── flex.less │ │ └── overlay.less │ ├── meta.js │ ├── onepager-builder.jsx │ ├── onepager-preview.jsx │ ├── optionspanel.jsx │ └── shared/ │ ├── components/ │ │ ├── PopupModal.jsx │ │ ├── Tab.jsx │ │ ├── TabPane.jsx │ │ ├── form/ │ │ │ ├── Divider.jsx │ │ │ ├── Input.jsx │ │ │ ├── Link.jsx │ │ │ ├── Note.jsx │ │ │ ├── RepeatInput.jsx │ │ │ ├── Select.jsx │ │ │ ├── Switch.jsx │ │ │ ├── WpSelect.jsx │ │ │ ├── color/ │ │ │ │ ├── ColorPalette.bk.jsx │ │ │ │ ├── ColorPalette.jsx │ │ │ │ ├── ColorPicker.jsx │ │ │ │ ├── oppositeColor.js │ │ │ │ └── palette/ │ │ │ │ ├── Color.jsx │ │ │ │ ├── Picker.jsx │ │ │ │ ├── Preset.jsx │ │ │ │ ├── Presets.jsx │ │ │ │ └── palette.less │ │ │ ├── date/ │ │ │ │ └── index.jsx │ │ │ ├── editor/ │ │ │ │ ├── TinyMCE.jsx │ │ │ │ └── style.less │ │ │ ├── font/ │ │ │ │ ├── font-family.js │ │ │ │ └── index.jsx │ │ │ ├── input.less │ │ │ ├── media/ │ │ │ │ ├── IconSelector.jsx │ │ │ │ ├── Media.jsx │ │ │ │ └── WpMediaFrame.jsx │ │ │ └── time/ │ │ │ └── index.jsx │ │ └── repeater/ │ │ ├── RepeatGroup.jsx │ │ ├── RepeatGroupHeading.jsx │ │ ├── Repeater.jsx │ │ └── style.less │ ├── lib/ │ │ ├── Activity.js │ │ ├── ShouldSync.js │ │ ├── localState.js │ │ ├── storage.js │ │ ├── toolbelt.js │ │ └── transformer/ │ │ ├── controls/ │ │ │ ├── addRefToControls.js │ │ │ ├── prepareRepeaterControl.js │ │ │ ├── prepareSimpleControl.js │ │ │ ├── serialize-controls.js │ │ │ └── unserialize-controls.js │ │ └── html/ │ │ └── stripClassesFromHTML.js │ ├── mixins/ │ │ ├── ContainedSelectorMixin.js │ │ └── PureMixin.js │ ├── onepager/ │ │ ├── ODataStore.js │ │ ├── lib/ │ │ │ ├── _mixins.js │ │ │ └── replaceSectionStyleInDOM.js │ │ ├── localState.js │ │ ├── sectionTransformer.js │ │ └── transformer/ │ │ ├── block2section.js │ │ ├── controls.js │ │ ├── sectionRefer.js │ │ ├── sectionSerializer.js │ │ └── sectionUnserializer.js │ └── plugins/ │ ├── alert.js │ ├── notify.js │ └── scrollview.js ├── gulpfile.js ├── languages/ │ └── tx-onepager.pot ├── package.json ├── phpcs.xml ├── presets/ │ ├── book.json │ ├── corporate-1.json │ ├── education.json │ ├── law.json │ ├── mobile-app.json │ ├── personal-photography-1.json │ └── software-company.json ├── readme.txt ├── src/ │ ├── Asset/ │ │ ├── AssetsCompiler.php │ │ └── CssRewriteFilter.php │ ├── FileSystem/ │ │ └── FileSystem.php │ ├── Onepager/ │ │ ├── Adapters/ │ │ │ ├── AdapterInterface.php │ │ │ ├── BaseAdapter.php │ │ │ └── WordPress.php │ │ ├── Block/ │ │ │ ├── BlockManager.php │ │ │ ├── Collection.php │ │ │ ├── PresetManager.php │ │ │ └── Transformers/ │ │ │ ├── ConfigTransformer.php │ │ │ ├── FieldsTransformer.php │ │ │ ├── SerializedControlsConfigTransformer.php │ │ │ └── SerializedControlsOptionsTransformer.php │ │ ├── Onepager.php │ │ ├── OnepagerInterface.php │ │ ├── Render/ │ │ │ └── Render.php │ │ └── Templates/ │ │ └── SavedTemplates.php │ ├── Providers/ │ │ ├── Contracts/ │ │ │ ├── ApiInterface.php │ │ │ ├── AssetInterface.php │ │ │ ├── ContentInterface.php │ │ │ ├── NavigationMenuInterface.php │ │ │ ├── Opi18nInterface.php │ │ │ ├── OptionsPanelInterface.php │ │ │ ├── SectionInterface.php │ │ │ ├── SecurityfInterface.php │ │ │ ├── TemplatesInterface.php │ │ │ └── ToolbarInterface.php │ │ └── WordPress/ │ │ ├── Api.php │ │ ├── Asset.php │ │ ├── Content.php │ │ ├── NavigationMenu.php │ │ ├── Opi18n.php │ │ ├── OptionsPanel.php │ │ ├── Section.php │ │ ├── Security.php │ │ ├── TemplateManager.php │ │ └── Toolbar.php │ ├── View/ │ │ ├── Engines/ │ │ │ ├── EngineInterface.php │ │ │ └── PhpEngine.php │ │ └── View.php │ ├── WordPress/ │ │ ├── PageTemplater.php │ │ └── wp_bootstrap_navwalker.php │ ├── functions.php │ └── theme_helpers.php ├── theme.php ├── tx-onepager.php ├── uninstall.php └── webpack.config.js ================================================ FILE CONTENTS ================================================ ================================================ FILE: .distignore ================================================ /.wordpress-org /.git /.github /node_modules /bower_components /temp .distignore .gitignore .editorconfig .travis.yml .jshintrc bower.json bowerrc.json composer.json composer.lock gulpfile.js package.json phpcs.xml webpack.config.js yarn.lock ================================================ FILE: .editorconfig ================================================ # http://editorconfig.org root = true [*] indent_style = space indent_size = 4 end_of_line = lf charset = utf-8 trim_trailing_whitespace = true insert_final_newline = true [*.md] trim_trailing_whitespace = false ================================================ FILE: .github/workflows/wp.yml ================================================ name: Deploy to WordPress.org on: push: tags: - "*" jobs: tag: name: New tag runs-on: ubuntu-latest steps: - uses: actions/checkout@master - name: Build run: | yarn install composer install yarn add bower --dev npm run bower npm run release - name: WordPress Plugin Deploy uses: 10up/action-wordpress-plugin-deploy@master env: SVN_PASSWORD: ${{ secrets.SVN_PASSWORD }} SVN_USERNAME: ${{ secrets.SVN_USERNAME }} SLUG: tx-onepager ================================================ FILE: .gitignore ================================================ # OS Generated .DS_Store* ehthumbs.db Thumbs.db # IDE .idea .phpintel *.sublime* #arbitary .scratch # blocks blocks/blocks.cache blocks/test # package *.zip *.bowerrc # Node + Composer /assets /dist /vendor /node_modules /bower_components /temp npm-debug.log .bowerrc # NPM/YARN lock file *.lock *-lock.json ================================================ FILE: .jshintrc ================================================ { "node": true, "scripturl": true, "esnext": true, "bitwise": true, "camelcase": true, "curly": true, "eqeqeq": true, "immed": true, "indent": 2, "latedef": true, "newcap": true, "noarg": true, "regexp": true, "undef": true, "unused": true, "strict": false, "trailing": true, "smarttabs": true, "white": true, "predef": [ "window", "document", "jQuery", "alert", "onepager" ] } ================================================ FILE: .travis.yml ================================================ # Travis CI (MIT License) configuration file # @link https://travis-ci.org/ # Use new container based environment sudo: false # Declare project language. # @link http://about.travis-ci.org/docs/user/languages/php/ language: php # Declare versions of PHP to use. Use one decimal max. # @link http://docs.travis-ci.com/user/build-configuration/ matrix: fast_finish: true include: # aliased to a recent 5.6.x version - php: '5.6' # aliased to a recent 7.0 version - php: '7.0' # aliased to a recent 7.1 version - php: '7.1' # aliased to a recent 7.2 version - php: '7.2' # php nightly - php: 'nightly' allow_failures: - php: nightly before_install: # Install PHP CodeSniffer. - if [[ "$SNIFF" == "1" ]]; then composer self-update; fi - if [[ "$SNIFF" == "1" ]]; then composer require squizlabs/php_codesniffer:dev-master; fi - if [[ "$SNIFF" == "1" ]]; then composer install; fi - phpenv rehash script: # Search for PHP syntax errors. - find -L . -path ./vendor -prune -o -name '*.php' -print0 | xargs -0 -n 1 -P 4 php -l # Run PHPCS. # If the custom ruleset is named `.phpcs.xml`, `phpcs.xml`, `.phpcs.xml.dist` or `phpcs.xml.dist` # and, like the travis script, is in the root of the project, you can leave # out the `--standard=` part of the command. - if [[ "$SNIFF" == "1" ]]; then vendor/bin/phpcs; fi ================================================ FILE: CHANGELOG.md ================================================ # Change Log ## [v1.2.4](https://github.com/themexpert/onepager/tree/v1.2.4) (2015-10-26) [Full Changelog](https://github.com/themexpert/onepager/compare/v1.2.3...v1.2.4) **Implemented enhancements:** - Bedrock wordpress environment support - [Storefront theme support](https://github.com/nadimtuhin/onepager-storefront-support) - URL link in content-2, content-3, team-1, portfolio-1 **Fixed bugs:** - Can't access to a Onepager page [\#85](https://github.com/themexpert/onepager/issues/85) **Closed issues:** - Add Clickable Links [\#98](https://github.com/themexpert/onepager/issues/98) - Adding redirect link options to certain blocks? [\#70](https://github.com/themexpert/onepager/issues/70) ## [v1.2.3](https://github.com/themexpert/onepager/tree/v1.2.3) (2015-10-20) [Full Changelog](https://github.com/themexpert/onepager/compare/v1.2.2...v1.2.3) **Implemented enhancements:** - Testimonial slider goes very fast [\#81](https://github.com/themexpert/onepager/issues/81) **Fixed bugs:** - Asks to save sections sometimes when settings is saved [\#100](https://github.com/themexpert/onepager/issues/100) - Editor doesn't open [\#95](https://github.com/themexpert/onepager/issues/95) **Closed issues:** - CONTACT FORM SHORTCODE [\#102](https://github.com/themexpert/onepager/issues/102) - Request for include a option to use with theme via functions php [\#101](https://github.com/themexpert/onepager/issues/101) - On global settings color preset change it does not effect on the preview [\#99](https://github.com/themexpert/onepager/issues/99) - unable to log in [\#97](https://github.com/themexpert/onepager/issues/97) - OnePager support for Roots.io [\#96](https://github.com/themexpert/onepager/issues/96) ## [v1.2.2](https://github.com/themexpert/onepager/tree/v1.2.2) (2015-10-13) [Full Changelog](https://github.com/themexpert/onepager/compare/v1.2.0...v1.2.2) ## [v1.2.0](https://github.com/themexpert/onepager/tree/v1.2.0) (2015-10-13) [Full Changelog](https://github.com/themexpert/onepager/compare/v1.1.4...v1.2.0) **Implemented enhancements:** - add instagram icon for social profiles [\#82](https://github.com/themexpert/onepager/issues/82) - Do not open sidebar if its hidden if clicked on section view [\#79](https://github.com/themexpert/onepager/issues/79) - Block List name 'Theme' is confusing [\#74](https://github.com/themexpert/onepager/issues/74) - Give a notification when added a new block. [\#72](https://github.com/themexpert/onepager/issues/72) - Uploaded logo should be responsive [\#68](https://github.com/themexpert/onepager/issues/68) - Colorpicker causing problem when the last item is colorpicker [\#43](https://github.com/themexpert/onepager/issues/43) - Builder style override by theme [\#20](https://github.com/themexpert/onepager/issues/20) **Fixed bugs:** - setState bug on settings if switch is pressed [\#89](https://github.com/themexpert/onepager/issues/89) - Assets cache problem [\#88](https://github.com/themexpert/onepager/issues/88) - Onepager breaking search results page [\#86](https://github.com/themexpert/onepager/issues/86) - Drop-down lists within the builder [\#83](https://github.com/themexpert/onepager/issues/83) - Preset is not loading if the name is less than 4 chars [\#80](https://github.com/themexpert/onepager/issues/80) - Register new preset not working when disable preset code is on [\#73](https://github.com/themexpert/onepager/issues/73) - Color presets : color change not saving [\#71](https://github.com/themexpert/onepager/issues/71) **Closed issues:** - style.css over write feature. [\#87](https://github.com/themexpert/onepager/issues/87) - Radio changes not saved [\#84](https://github.com/themexpert/onepager/issues/84) - how can I post youtube video [\#77](https://github.com/themexpert/onepager/issues/77) - Testing Jira Integration [\#76](https://github.com/themexpert/onepager/issues/76) ## [v1.1.4](https://github.com/themexpert/onepager/tree/v1.1.4) (2015-09-15) [Full Changelog](https://github.com/themexpert/onepager/compare/v1.1.3...v1.1.4) **Fixed bugs:** - after editor edit save icon takes forever [\#67](https://github.com/themexpert/onepager/issues/67) **Closed issues:** - Last section is not seen if there are lots of sections [\#66](https://github.com/themexpert/onepager/issues/66) ## [v1.1.3](https://github.com/themexpert/onepager/tree/v1.1.3) (2015-09-13) [Full Changelog](https://github.com/themexpert/onepager/compare/v1.1.2...v1.1.3) **Implemented enhancements:** - Do not open section editor after section creation [\#63](https://github.com/themexpert/onepager/issues/63) **Fixed bugs:** - default value bug [\#62](https://github.com/themexpert/onepager/issues/62) - undefined layoutMangaer error [\#61](https://github.com/themexpert/onepager/issues/61) ## [v1.1.2](https://github.com/themexpert/onepager/tree/v1.1.2) (2015-09-11) [Full Changelog](https://github.com/themexpert/onepager/compare/v1.1.1...v1.1.2) ## [v1.1.1](https://github.com/themexpert/onepager/tree/v1.1.1) (2015-09-11) [Full Changelog](https://github.com/themexpert/onepager/compare/v1.1...v1.1.1) ## [v1.1](https://github.com/themexpert/onepager/tree/v1.1) (2015-09-09) [Full Changelog](https://github.com/themexpert/onepager/compare/1.1...v1.1) ## [1.1](https://github.com/themexpert/onepager/tree/1.1) (2015-09-08) [Full Changelog](https://github.com/themexpert/onepager/compare/1.0.0...1.1) **Implemented enhancements:** - Navbar fixed top not working properly when collapse the builder [\#21](https://github.com/themexpert/onepager/issues/21) - State management after reloading [\#59](https://github.com/themexpert/onepager/issues/59) - Implement new icon size attribute to all blocks that implements icon or media [\#10](https://github.com/themexpert/onepager/issues/10) **Fixed bugs:** - Corporate preset bug [\#60](https://github.com/themexpert/onepager/issues/60) - The update animation goes forever if typed and saved simultaneously [\#58](https://github.com/themexpert/onepager/issues/58) - Settings not overriding block config value [\#45](https://github.com/themexpert/onepager/issues/45) - Settings default value not coming [\#44](https://github.com/themexpert/onepager/issues/44) **Closed issues:** - Need pricing Table / HTML & css input Block [\#46](https://github.com/themexpert/onepager/issues/46) ## [1.0.0](https://github.com/themexpert/onepager/tree/1.0.0) (2015-08-24) [Full Changelog](https://github.com/themexpert/onepager/compare/1.0.0-beta...1.0.0) **Implemented enhancements:** - Need a way to disable loading bootstrap. [\#56](https://github.com/themexpert/onepager/issues/56) - WP editor style not match with OnePager style [\#55](https://github.com/themexpert/onepager/issues/55) - Color-palette style could be better [\#54](https://github.com/themexpert/onepager/issues/54) - Need asset build config like onepager\_debug [\#52](https://github.com/themexpert/onepager/issues/52) - Unified Asset handling [\#42](https://github.com/themexpert/onepager/issues/42) - Media, Icon, Image, Colorpicker confusing name [\#39](https://github.com/themexpert/onepager/issues/39) - Improve Field Link api and add documentation [\#23](https://github.com/themexpert/onepager/issues/23) - Load editor button has no style in backed [\#22](https://github.com/themexpert/onepager/issues/22) - There are some problems is some blocks need to fix them [\#19](https://github.com/themexpert/onepager/issues/19) - Collapsible Icon needed for each menu item [\#18](https://github.com/themexpert/onepager/issues/18) - No way to add icon size in iconpicker [\#12](https://github.com/themexpert/onepager/issues/12) - Replace text editor with a stripped down wp editor [\#6](https://github.com/themexpert/onepager/issues/6) - Selectbox in menu, page is dark and unreadable [\#3](https://github.com/themexpert/onepager/issues/3) **Fixed bugs:** - Editor field type repeater bug [\#40](https://github.com/themexpert/onepager/issues/40) - Input Select conflict with twentyfifteen theme [\#17](https://github.com/themexpert/onepager/issues/17) - Link color change after activating Onepager [\#16](https://github.com/themexpert/onepager/issues/16) - Nav menu scrolling is not smooth [\#9](https://github.com/themexpert/onepager/issues/9) - Missing normal icon size in icon picker [\#8](https://github.com/themexpert/onepager/issues/8) - footer menu dropdown not working properly [\#7](https://github.com/themexpert/onepager/issues/7) - Utilize cache in onepage asset build [\#5](https://github.com/themexpert/onepager/issues/5) - Sidebar footer and sections list conflict when there are lots of sections [\#4](https://github.com/themexpert/onepager/issues/4) - Wordpress default menu system not working properly with onepager [\#2](https://github.com/themexpert/onepager/issues/2) **Closed issues:** - Switch field bug [\#57](https://github.com/themexpert/onepager/issues/57) - Need asset build button [\#51](https://github.com/themexpert/onepager/issues/51) - Add documentation on field depends feature [\#24](https://github.com/themexpert/onepager/issues/24) - Need a new field type note [\#11](https://github.com/themexpert/onepager/issues/11) **Merged pull requests:** - improvements on menu, link and minor bugfixes [\#1](https://github.com/themexpert/onepager/pull/1) ([nadimtuhin](https://github.com/nadimtuhin)) ## [1.0.0-beta](https://github.com/themexpert/onepager/tree/1.0.0-beta) (2015-07-15) \* *This Change Log was automatically generated by [github_changelog_generator](https://github.com/skywinder/Github-Changelog-Generator)* ================================================ FILE: LICENSE.txt ================================================ This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA =================================== GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Lesser General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA. Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) year name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Lesser General Public License instead of this License. ================================================ FILE: app/Admin/menu.php ================================================ url( 'assets/images/logo-white.png' ); add_menu_page( __( 'OnePager', 'onepager' ), __( 'OnePager', 'onepager' ), 'manage_options', 'onepager', [$this, 'op_dashboard_view'], $icon, '31' ); add_submenu_page( 'onepager', __( 'Dashboard', 'onepager' ), __( 'Dashboard', 'onepager' ), 'manage_options', 'onepager', [$this, 'op_dashboard_view'] ); } /** * Register sub menu */ public function register_submenu() { add_submenu_page( 'onepager', __( 'Welcome to OnePager', 'onepager' ), __( 'Getting Started', 'onepager' ), 'manage_options', 'onepager-getting-started', [$this, 'op_getting_started'] ); add_submenu_page( 'onepager', __( 'Blocks', 'onepager' ), __( 'Blocks', 'onepager' ), 'manage_options', 'onepager-blocks', [$this, 'op_block_view'] ); add_submenu_page( 'onepager', __('Settings', 'onepager'), __('Settings', 'onepager'), 'manage_options', 'onepager-settings', [$this, 'op_settings_view'] ); add_submenu_page( 'onepager', __('Templates', 'onepager'), __('Templates', 'onepager'), 'manage_options', 'onepager-templates', [$this, 'txop_onepager_templates'] ); add_submenu_page( 'onepager', '', ' ' . __( 'Go Pro', 'onepager' ), 'manage_options', 'onepager-gopro', [$this, 'handle_external_redirects'] ); } /** * onepager dashboard view */ public function op_dashboard_view(){ include __DIR__ . '/views/dashboard.php'; } /** * getting started view */ public function op_getting_started(){ include __DIR__ . '/views/getting-started.php'; } /** * Block view */ public function op_block_view(){ include __DIR__ . '/views/blocks.php'; } /** * Settings View */ public function op_settings_view(){ include __DIR__ . '/views/settings.php'; } /** * Template View */ public function txop_onepager_templates(){ include __DIR__ . '/views/templates.php'; $template = new TXOP_Templates(); $template->handle_template_pages(); } /** * Hanlde template import */ public function txop_template_import_handle(){ include __DIR__ . '/views/handler.php'; new TXOP_Handler(); } /** * Hanlde template delete */ public function txop_template_delete_handle(){ include __DIR__ . '/views/delete-handler.php'; new TXOP_Delete_Handler(); } /** * Redirect */ public function on_admin_init() { $this->handle_external_redirects(); } /** * Go Pro view */ public function handle_external_redirects() { if ( empty( $_GET['page'] ) ) { return; } if ( 'onepager-gopro' === $_GET['page'] ) { wp_redirect( 'https://themesgrove.com/wp-onepager/?utm_source=wp-menu&utm_campaign=wponepager_gopro&utm_medium=wp-dash' ); exit; } if ( 'go_knowledge_base_site' === $_GET['page'] ) { wp_redirect( '' ); die; } } /** * Load Resources only for onepager pages */ public function onepager_load_admin_scripts() { global $wp; $current_url = add_query_arg(array($_GET), $wp->request); $current_url_slug = $current_url ? explode("=", $current_url) : ''; if($current_url_slug){ if(count($current_url_slug) > 1){ // add builder.css so icons and other stuff styles if( $current_url_slug[1] === 'onepager' OR $current_url_slug[1] === 'onepager-license' OR $current_url_slug[1] === 'onepager-blocks' OR $current_url_slug[1] === 'onepager-license&onepager_pro_activation' OR $current_url_slug[1] === 'onepager-getting-started' OR $current_url_slug[1] === 'onepager-templates' ) { wp_enqueue_script( 'uikit', op_asset( 'assets/js/uikit.js' ) ); wp_enqueue_script( 'uikit-icons', op_asset( 'assets/js/uikit-icons.js' ) ); wp_enqueue_style( 'uikit', op_asset( 'assets/css/uikit.css' ) ); } } } wp_enqueue_style( 'lithium-builder', op_asset( 'assets/css/lithium-builder.css' ) ); } } new TXOP_Admin_Menu(); ================================================ FILE: app/Admin/notice.php ================================================ strtotime( '-72 hours' ) or '1' === get_option( 'onepager_dismiss_rating_notice' ) or ! current_user_can( 'manage_options' ) ) { return; } $no_thanks = wp_nonce_url( add_query_arg( 'onepager_rating_notice', 'no_thanks_rating_btn' ), 'no_thanks_rating_btn' ); $dismiss = wp_nonce_url( add_query_arg( 'onepager_rating_notice', 'dismiss_rating_btn' ), 'dismiss_rating_btn' ); ?>

' ); ?>

post_type != 'page' ) { return $actions; } // URL $page_permalink = onepager_get_edit_mode_url( get_permalink( $post->ID ) ); // Page template $template = get_post_meta( $post->ID, '_wp_page_template', true ); if ( ( strpos( $template, 'onepage' ) !== false ) && ( current_user_can( 'editor' ) || current_user_can( 'administrator' ) ) ) { $actions['edit_with_onepager'] = sprintf( '%2$s', $page_permalink, __( 'Edit with Onepager', 'onepager' ) ); } return $actions; } add_filter( 'display_post_states', 'op_append_onepager_in_page_title', 10, 2 ); function op_append_onepager_in_page_title( $post_states, $post ) { $template = get_post_meta( $post->ID, '_wp_page_template', true ); if ( ( strpos( $template, 'onepage' ) !== false ) && ( current_user_can( 'editor' ) || current_user_can( 'administrator' ) ) ) { $post_states['onepager'] = __( 'Onepager', 'txop' ); } return $post_states; } ================================================ FILE: app/Admin/views/blocks.php ================================================ blockManager()->showAllBlocks(); $blockCollection = array_values((array) onepager()->blockManager()->showAllBlocksCollection()); $groups = array_unique( array_reduce( $blockCollection, function ( $carry, $block ) { return array_merge( $carry, $block['groups'] ); }, [] ) ); function op_get_html_group_class( $groups ) { return implode( ' ', array_map( function ( $group ) { return sanitize_title( $group ); }, $groups ) ); } function update_block_name($string){ $name = ucfirst(join(" ", explode("-", $string))); return $name; } function singleBlock($BlockCollec∂çtionsArr){ $count = 1; foreach($BlockCollec∂çtionsArr as $singleBlock): $type = array_get($singleBlock, 'type') ? $singleBlock['type'] : ''; $tag = array_get($singleBlock, 'tag') ? $singleBlock['tag'] : ''; ?>

Upgrade to PRO version and unlock more layouts, blocks and features you could imagine.

================================================ FILE: app/Admin/views/dashboard.php ================================================ presetManager()->all(); $blocks = onepager()->blockManager()->showAllBlocks(); $groups = array_unique( array_reduce( $layouts, function ( $carry, $layout ) { return array_merge( $carry, $layout['group'] ); }, [] ) ); function op_get_html_group_class( $groups ) { return implode( ' ', array_map( function ( $group ) { return sanitize_title( $group ); }, $groups ) ); } ?>

Upgrade to PRO version and unlock more layouts, blocks and features you could imagine.

<?php echo $layout['name']; ?>

================================================ FILE: app/Admin/views/delete-handler.php ================================================ txop_delete_template(); } public function txop_delete_template(){ /** * Verify nonce */ if( ! wp_verify_nonce($_REQUEST['_wpnonce'], 'txop-delete-template') ){ wp_die("are you cheating ?"); } /** * check user capability */ if( ! current_user_can('manage_options') ){ wp_die('Are you cheating buddy ?'); } /** * get the template id from request */ $id = isset($_REQUEST['id']) ? intval($_REQUEST['id']) : 0; /** * call the delete function * and it return row for success * and error object for failure */ $delete_template = txop_delete_template($id); /** * redirect to the list page */ if($delete_template){ $redirect_list_page = admin_url('admin.php?page=onepager-templates&template-deleted=true'); }else{ $redirect_list_page = admin_url('admin.php?page=onepager-templates&template-deleted=false'); } wp_redirect($redirect_list_page); exit; } } ?> ================================================ FILE: app/Admin/views/getting-started.php ================================================

Welcome to OnePager

We recommend you watch this getting started video, and then try to build page yourself.

================================================ FILE: app/Admin/views/handler.php ================================================ txop_upload_handler(); } public function txop_upload_handler(){ /** * check the import post data */ if(! isset($_POST['upload_template_button'])){ return; } /** * Verify nonce */ if( ! wp_verify_nonce($_POST['_wpnonce'], 'upload-template-nonce') ){ wp_die("are you cheating ?"); } /** * check user capability */ if( ! current_user_can('manage_options') ){ wp_die('Are you cheating buddy ?'); } /** * check if no file uploaded */ if(! $_FILES['import-template-json']['tmp_name']){ wp_die('Please upload onepager template json file'); } /** * read the json data and * decode that data */ $read_json_file = file_get_contents($_FILES['import-template-json']['tmp_name']); $json_data = json_decode($read_json_file, true); /** * If no identifier found */ if(! array_key_exists('identifier', $json_data) ){ wp_die('Invalid file. Please Upload Onepager template'); } /** * check if the identifier value is txonepager or not */ if( 'txonepager' !== $json_data['identifier'] ){ wp_die('Invalid file. Please Upload Onepager template'); } /** * If no section found */ if(! array_key_exists('sections', $json_data) ){ wp_die('Invalid file data. Please Upload Onepager template'); } /** * get the value from json file */ $name = array_key_exists('name', $json_data) ? sanitize_text_field($json_data['name']) : 'template'; $type = array_key_exists('type', $json_data) ? sanitize_text_field($json_data['type']) : 'page'; $data = serialize($json_data['sections']); /** * return an id for successfull insert * or if fail * return a error object */ $insert_id = txop_insert_user_templates([ 'name' => $name, 'type' => $type, 'data' => $data ]); /** * hanlde the error object */ if( is_wp_error($insert_id)){ wp_die( $insert_id->get_error_message() ); } /** * redirect to the list page * with inserted true query parameter */ $redirect_list_page = admin_url('admin.php?page=onepager-templates&inserted=true'); wp_redirect($redirect_list_page); exit; } } ?> ================================================ FILE: app/Admin/views/settings.php ================================================

OnePager Settings

================================================ FILE: app/Admin/views/template-lists.php ================================================ 'Template', 'plural' => 'Templates', 'ajax' => false, ]); } /** * Message to show if no designation found * * @return void */ public function no_items() { _e( 'No Templates found', 'tx-onepager' ); } /** * Get the column names * * @return array */ public function get_columns() { return [ 'cb' => '', 'name' => __( 'Name', 'tx-onepager' ), 'type' => __( 'Type', 'tx-onepager' ), 'id' => __( 'ID', 'tx-onepager' ), 'created_at' => __( 'Date', 'tx-onepager' ), ]; } /** * Get sortable columns * * @return array */ public function get_sortable_columns() { $sortable_columns = [ 'name' => [ 'name', true ], 'created_at' => [ 'created_at', true ], ]; return $sortable_columns; } /** * Set the bulk actions * * @return array */ public function get_bulk_actions() { $actions = array( 'trash' => __( 'Move to Trash', 'tx-onepager' ), ); return $actions; } /** * Default column values * * @param object $item * @param string $column_name * * @return string */ protected function column_default( $item, $column_name ) { switch ( $column_name ) { case 'created_at': return wp_date( get_option( 'date_format' ), strtotime( $item->created_at ) ); default: return isset( $item->$column_name ) ? $item->$column_name : ''; } } /** * Render the "name" column * * @param object $item * * @return string */ public function column_name( $item ) { $actions = []; // $actions['edit'] = sprintf( '%s', admin_url( 'admin.php?page=onepager-templates&action=edit&id=' . $item->id ), $item->id, __( 'Edit', 'tx-onepager' ), __( 'Edit', 'tx-onepager' ) ); $actions['delete'] = sprintf( '%s', wp_nonce_url( admin_url( 'admin-post.php?action=txop-delete-template&id=' . $item->id ), 'txop-delete-template' ), $item->id, __( 'Delete', 'tx-onepager' ), __( 'Delete', 'tx-onepager' ) ); return sprintf( '%2$s %3$s', admin_url( 'admin.php?page=onepager-templates&action=view&id' . $item->id ), $item->name, $this->row_actions( $actions ) ); } /** * Render the "cb" column * * @param object $item * * @return string */ protected function column_cb( $item ) { return sprintf( '', $item->id ); } /** * Prepare the address items * * @return void */ public function prepare_items() { $column = $this->get_columns(); $hidden = []; $sortable = $this->get_sortable_columns(); $this->_column_headers = [ $column, $hidden, $sortable ]; $per_page = 20; $current_page = $this->get_pagenum(); $offset = ( $current_page - 1 ) * $per_page; $args = [ 'number' => $per_page, 'offset' => $offset, ]; if ( isset( $_REQUEST['orderby'] ) && isset( $_REQUEST['order'] ) ) { $args['orderby'] = $_REQUEST['orderby']; $args['order'] = $_REQUEST['order'] ; } $this->items = txop_fetch_user_templates( $args ); $this->set_pagination_args( [ 'total_items' => txop_count_user_templates(), 'per_page' => $per_page ] ); } } ?> ================================================ FILE: app/Admin/views/templates/template-edit.php ================================================

================================================ FILE: app/Admin/views/templates/template-list.php ================================================

prepare_items(); $table->search_box( 'search', 'search_id' ); $table->display(); ?>
================================================ FILE: app/Admin/views/templates/template-new.php ================================================

================================================ FILE: app/Admin/views/templates/template-view.php ================================================ ================================================ FILE: app/Admin/views/templates.php ================================================ ================================================ FILE: app/Api/Controllers/ApiController.php ================================================ data = $data; return $this; } private function send() { wp_send_json( $this->data ); die(); } protected function responseFailed( $data = [ ] ) { $response = array_merge( $data, array( 'success' => false ) ); $this->response( $response )->send(); } protected function responseSuccess( $data = [ ] ) { $response = array_merge( $data, array( 'success' => true ) ); $this->response( $response )->send(); } } ================================================ FILE: app/Api/Controllers/BlocksApiController.php ================================================ blockManager()->all() ); $this->responseSuccess( compact( 'blocks' ) ); } } ================================================ FILE: app/Api/Controllers/MenuApiController.php ================================================ navigationMenu() ->addItem( $menuId, $itemTitle, $itemId ); $this->responseSuccess(); } } ================================================ FILE: app/Api/Controllers/OptionsApiController.php ================================================ filterInput( $options ); onepager()->optionsPanel( $page )->update( $options ); onepager()->render()->mergeSectionsAndSettings(); $sections = array_get( $_POST, 'sections', [ ] ) ?: [ ]; // making sure its an array if ( count( $sections ) ) { $sections = $this->filterInput( $sections ); $sections = onepager()->render()->mergeSectionsBlocksSettings( $sections ); $this->responseSuccess( compact( 'sections' ) ); } else { $this->responseSuccess(); } } public function savePageSettingsOption(){ /** * receive the requested data * @page * @pageID * @pageOptions * @sections */ $page = array_get( $_POST, 'page', false ); $pageID = array_get($_POST, 'pageID', ''); $pageOptions = array_get($_POST, 'options', [ ] ) ?: [ ]; $pageOptions = $this->filterInput( $pageOptions ); /** * save data to db */ onepager()->optionsPanel( $page )->updatePageSettingsOption( $pageID, $pageOptions ); /** * update all pages with the sections */ onepager()->render()->mergeSectionsAndSettings(); /** * Need to check again this. */ onepager()->render()->mergeSectionsAndSettingsWithPage($pageID); $sections = array_get( $_POST, 'sections', [ ] ) ?: [ ]; // making sure its an array if ( count( $sections ) ) { $sections = $this->filterInput( $sections ); $sections = onepager()->render()->mergeSectionsBlocksSettings( $sections ); $this->responseSuccess( compact( 'sections' ) ); } else { $this->responseSuccess(); } } public function pageSettingsOptionLive(){ $pageId = array_get($_POST, 'pageId', ''); $pageOptions = array_get($_POST, 'options', [ ] ) ?: [ ]; $pageOptions = $this->filterInput( $pageOptions ); $sectionsId = $_POST['sectionsId']; // making sure its an array $styleArr = onepager()->render()->syncPageStyles($pageId, $pageOptions, $sectionsId); if($styleArr){ $optionStyleArr = $styleArr; $fullScreen = $pageOptions['general']['full_screen']; $this->responseSuccess(compact('optionStyleArr', 'fullScreen')); }else{ $this->responseSuccess('Something wend wrong. Need to check ajax request data'); } } public function loadFullPageScript(){ $asset = onepager()->asset(); $asset->script( 'op-fullpage-ext-overflow', op_asset( 'assets/js/scrolloverflow.js' ) ); $asset->script('op-fullpage', op_asset('assets/js/fullpage.js')); $asset->style( 'op-fullpage', op_asset( 'assets/css/fullpage.css' ) ); } } ================================================ FILE: app/Api/Controllers/PageApiController.php ================================================ presetManager()->all(); $layout = array_find_by( $layouts, 'id', $layoutId ); if ( $layout ) { onepager()->section()->save( $pageId, $layout['sections'] ); $this->buildOnepageScripts( $layout['sections'], $pageId ); $this->responseSuccess(); } else { $this->responseFailed(); } } /** * @param $sections * @param $pageId */ protected function buildOnepageScripts( $sections, $pageId ) { $blockScripts = new BlocksScripts(); $onepageScripts = new OnepageScripts(); $onepageScripts->enqueueCommonScripts(); $onepageScripts->enqueuePageScripts(); $blockScripts->enqueueSectionBlocks( $sections ); if ( wp_is_writable( ONEPAGER_CACHE_DIR ) ) { onepager()->asset()->compilePageAssets( $pageId ); } } public function addPage() { $title = array_get( $_POST, 'pageTitle', 'OnePage #' . rand( 999, 9999 ) ); $layoutId = array_get( $_POST, 'layoutId', false ); /** * wp_insert_post syntax * wp_insert_post($postarr, $wp_error) */ $new_page_id = wp_insert_post( [ 'post_title' => $title, 'post_type' => 'page', 'post_name' => $title, 'comment_status' => 'closed', 'ping_status' => 'closed', 'post_content' => '', 'post_status' => 'publish', 'post_author' => get_user_by( 'id', 1 )->user_id, 'menu_order' => 0, 'page_template' => 'onepage.php', 'template' => 'onepage.php', ] ); $pageId = $new_page_id; $layouts = onepager()->presetManager()->all(); $layout = array_find_by( $layouts, 'id', $layoutId ); if ( $layout ) { onepager()->section()->save( $pageId, $layout['sections'] ); $this->buildOnepageScripts( $layout['sections'], $pageId ); $response = ['success' => true, 'url' => get_site_url() . "?page_id={$pageId}&onepager=1"]; $this->responseSuccess( $response ); } else { $this->responseFailed(); } // $this->responseSuccess($response); } } ================================================ FILE: app/Api/Controllers/SectionsApiController.php ================================================ filterInput( $sections ); if ( $pageId ) { onepager()->section()->save( $pageId, $sections ); $this->buildOnepageScripts( $sections, $pageId ); $this->responseSuccess( ['message' => 'compiled assets'] ); } else { $section = array_get( $sections, $updated, false ); $response = $this->prepareSectionWithContentAndStyle( $section ); $this->responseSuccess( $response ); } } /** * Merge section * for saved templates * while insert from popup modal */ public function mergeSections() { $sections = array_get( $_POST, 'sections', [] ) ?: []; // making sure its an array $pageId = array_get( $_POST, 'pageId', false ); /** * return only id, name slug */ // $sections = $this->filterInput( $sections ); if ( $pageId ) { onepager()->section()->save( $pageId, $sections ); $this->buildOnepageScripts( $sections, $pageId ); $this->responseSuccess( ['message' => 'compiled assets'] ); } else { $finalOutput = []; foreach ($sections as $section ) { $response = $this->prepareSectionWithContentAndStyle( $section ); array_push($finalOutput, $response); } $this->responseSuccess( $finalOutput ); } } public function getSections() { $pageId = array_get( $_POST, 'pageId', false ); if ( ! $pageId ) { $this->responseFailed(); } $sections = onepager()->section()->getAllValid( $pageId ); $this->responseSuccess( compact( 'sections' ) ); } /** * save layout from builder */ public function saveLayout() { $name = array_get( $_POST, 'name', false ); $type = array_get( $_POST, 'type', false ); $pageID = array_get( $_POST, 'pageID', false ); if ( ! $pageID ) { $this->responseFailed(); } $sections = onepager()->section()->getAllValid( $pageID ); if(empty($sections)){ $this->responseFailed(['message' => 'Page contains no sections to save']); } $data = serialize($sections); $insert_id = txop_insert_user_templates([ 'name' => $name, 'type' => $type, 'data' => $data ]); $inserted_data = txop_fetch_single_templates([ 'id' => $insert_id ]); $unserialize_data = unserialize($inserted_data[0]->data); $inserted_data[0]->data = $unserialize_data; $this->responseSuccess( compact('insert_id', 'inserted_data') ); } /** * delete layout from builder */ public function deleteLayout() { $id = array_get( $_POST, 'id', false ); $name = array_get( $_POST, 'name', false ); $type = array_get( $_POST, 'type', false ); if ( ! $id ) { $this->responseFailed(); } /** * check if the id exist */ $check_the_data = txop_fetch_single_templates([ 'id' => $id ]); if($name == $check_the_data[0]->name){ $delete_status = txop_delete_template($id); $this->responseSuccess( compact('delete_status') ); }else{ $mismatc_message = 'ID not matched'; $this->responseFailed( compact('mismatc_message') ); } } /** * import layout from builder */ public function importLayout() { $json_data = array_get( $_POST, 'data', false ); $name = array_key_exists('name', $json_data) ? sanitize_text_field($json_data['name']) : 'template'; $type = array_key_exists('type', $json_data) ? sanitize_text_field($json_data['type']) : 'page'; $data = serialize($json_data['sections']); $insert_id = txop_insert_user_templates([ 'name' => $name, 'type' => $type, 'data' => $data ]); $inserted_data = txop_fetch_single_templates([ 'id' => $insert_id ]); $unserialize_data = unserialize($inserted_data[0]->data); $inserted_data[0]->data = $unserialize_data; $this->responseSuccess( compact('insert_id', 'inserted_data') ); } public function reloadSections() { $sections = array_get( $_POST, 'sections', [] ) ?: []; // making sure its an array $sections = $this->filterInput( $sections ); $sections = $this->prepareSectionsWithContentAndStyle( $sections ); $this->responseSuccess( compact( 'sections' ) ); } /** * @param $sections * * @return array */ protected function prepareSectionsWithContentAndStyle( $sections ) { $sections = array_map( function ( $section ) { return $this->prepareSectionWithContentAndStyle( $section ); }, $sections ); return $sections; } /** * @param $section * * @return mixed */ protected function prepareSectionWithContentAndStyle( $section ) { $render = onepager()->render(); $section = $render->sectionBlockDataMerge( $section ); $section['content'] = $render->section( $section ); $section['style'] = $render->style( $section ); return $section; } /** * @param $sections * @param $pageId */ protected function buildOnepageScripts( $sections, $pageId ) { $blockScripts = new BlocksScripts(); $onepageScripts = new OnepageScripts(); $onepageScripts->enqueueCommonScripts(); $onepageScripts->enqueuePageScripts(); $blockScripts->enqueueSectionBlocks( $sections ); if ( wp_is_writable( ONEPAGER_CACHE_DIR ) ) { onepager()->asset()->compilePageAssets( $pageId ); } } } ================================================ FILE: app/Api/routes.php ================================================ post( 'onepager_save_options', 'App\Api\Controllers\OptionsApiController@saveOptions' ); $apiRouter->post( 'onepager_save_page_settings', 'App\Api\Controllers\OptionsApiController@savePageSettingsOption' ); $apiRouter->post( 'onepager_save_page_settings_live', 'App\Api\Controllers\OptionsApiController@pageSettingsOptionLive' ); $apiRouter->post( 'onepager_add_menu', 'App\Api\Controllers\MenuApiController@addMenu' ); $apiRouter->post( 'onepager_save_sections', 'App\Api\Controllers\SectionsApiController@saveSections' ); $apiRouter->post( 'onepager_merge_sections', 'App\Api\Controllers\SectionsApiController@mergeSections' ); $apiRouter->post( 'onepager_get_sections', 'App\Api\Controllers\SectionsApiController@getSections' ); $apiRouter->post( 'onepager_import_layout', 'App\Api\Controllers\SectionsApiController@importLayout' ); $apiRouter->post( 'onepager_save_layout', 'App\Api\Controllers\SectionsApiController@saveLayout' ); $apiRouter->post( 'onepager_delete_layout', 'App\Api\Controllers\SectionsApiController@deleteLayout' ); $apiRouter->post( 'onepager_reload_sections', 'App\Api\Controllers\SectionsApiController@reloadSections' ); $apiRouter->post( 'onepager_reload_blocks', 'App\Api\Controllers\BlocksApiController@reloadBlocks' ); $apiRouter->post( 'onepager_select_layout', 'App\Api\Controllers\PageApiController@selectLayout' ); $apiRouter->post( 'onepager_add_page', 'App\Api\Controllers\PageApiController@addPage' ); } ================================================ FILE: app/Application.php ================================================ onepager = $onepager; $this->init_loaders(); if ( is_admin() ) { return; } /** * We do not want them to be loaded when in dashboard */ $this->enqueue_assets(); $this->inject_page_contents(); // if(!$this->isCacheDirWritable()){ // add_action( 'admin_notices', [$this, 'cache_dir_notice'] ); // } } public function cache_dir_notice() { ?>

'' is used to store compiled assets. But its not writable by server. Making it writable will increase the performance of your website

shouldCompileScripts() ) { $page_id = $this->getCurrentPageId(); $this->onepager->asset()->compileScriptsAndEnqueue( $page_id ); } else { $this->onepager->asset()->enqueue(); } } protected function inject_page_contents() { new OnepageToolbar(); new OnepageContent(); new OnepageInternalScripts(); } protected function init_loaders() { $presetManager = $this->getPresetManager(); new PresetsLoader( $presetManager ); $pageTemplateManager = new PageTemplater(); new TemplateLoader( $pageTemplateManager ); /** No need to load them in dashboard */ if ( is_admin() && ! ( defined( 'DOING_AJAX' ) && DOING_AJAX ) ) { return; } $blockManager = $this->getBlockManager(); new BlocksLoader( $blockManager ); } /** * @return mixed */ protected function getCurrentPageId() { return $this->onepager->content()->getCurrentPageId(); } /** * @return mixed */ protected function getBlockManager() { return $this->onepager->blockManager(); } /** * @return mixed */ protected function getPresetManager() { return $this->onepager->presetManager(); } /** * @return bool */ private function shouldCompileScripts() { return $this->onepager->content()->isBuildMode() || $this->onepager->content()->isPreview() ? false : ! $this->isDebugMode() && $this->isCacheDirWritable(); } private function isCacheDirWritable() { return wp_is_writable( ONEPAGER_CACHE_DIR ); } /** * @return bool */ private function isDebugMode() { return ( defined( 'ONEPAGER_DEBUG' ) && ONEPAGER_DEBUG ) || \Onepager::getOption( 'onepager_debug', false ); } } ================================================ FILE: app/Assets/BlocksScripts.php ================================================ isPreview() ) { $this->enqueueAllBlocksScripts(); } else if ( $this->isBuildMode() ) { } else { $pageId = $this->getCurrentPageId(); $sections = $this->getAllValidSections( $pageId ); $this->enqueueSectionBlocks( $sections ); } } /** * convert sections from user save templates */ public function convertSavedSections($sections){ $blocks = $this->getBlocksFromUsedSections( $sections ); return $blocks; } public function enqueueSectionBlocks( $sections ) { $blocks = $this->getBlocksFromUsedSections( $sections ); $this->enqueueBlocksScripts( $blocks ); } protected function enqueueAllBlocksScripts() { $blocks = (array) onepager()->blockManager()->all(); $this->enqueueBlocksScripts( $blocks ); } protected function getBlocksFromUsedSections( $sections ) { $blockSlugs = array_unique( array_map( function ( $section ) { return $section['slug']; }, $sections ) ); return array_filter( array_map( function ( $blockSlug ) { $block = onepager()->blockManager()->get( $blockSlug ); return $block ?: false; }, $blockSlugs ) ); } protected function enqueueBlocksScripts( $blocks ) { array_walk( $blocks, [ $this, 'enqueueBlockScripts' ] ); } protected function enqueueBlockScripts( $block ) { $enqueueCb = $block['enqueue']; if ( ! $enqueueCb ) { return; } $blockUrl = $block['url']; $enqueueCb( $blockUrl ); $this->enqueueBlockCss( $block, $blockUrl ); } /** * @return mixed */ protected function isPreview() { return onepager()->content()->isPreview(); } /** * @return mixed */ protected function getCurrentPageId() { return onepager()->content()->getCurrentPageId(); } /** * @param $pageId * * @return mixed */ protected function getAllValidSections( $pageId ) { return onepager()->section()->getAllValid( $pageId ); } private function isBuildMode() { return onepager()->content()->isBuildMode(); } /** * @param $block * @param $blockUrl */ protected function enqueueBlockCss( $block, $blockUrl ) { $blockCssFileOverride = locate_template( 'onepager/overrides/' . $block['slug'] . '/block.css' ); $blockCssFileCore = $block['dir'] . 'block.css'; if ( FileSystem::exists( $blockCssFileOverride ) ) { $name = $block['slug'] . "-block"; $url = get_template_directory_uri() . "/onepager/overrides/" . $block['slug'] . "/block.css"; onepager()->asset()->style( $name, $url ); } else { if ( FileSystem::exists( $blockCssFileCore ) ) { $name = $block['slug'] . "-block"; $url = $blockUrl . "/block.css"; onepager()->asset()->style( $name, $url ); } } } } ================================================ FILE: app/Assets/BuildModeScripts.php ================================================ isBuildMode()) { return; } onepager()->asset()->enqueue(); }, 1000000); } public function enqueueScripts() { if (!$this->isBuildMode()) { return; } $this->resetWpScriptQueue(); $this->enqueueFormEngineScripts(); $this->enqueueInitializerScript(); } protected function enqueueInitializerScript() { $asset = onepager()->asset(); $pageId = $this->getCurrentPageId(); $data = $this->localizeScriptData($pageId); $asset->script('onepager', op_asset('assets/onepager-builder.bundle.js'), ['jquery'], ONEPAGER_VERSION, false); $asset->localizeScript('onepager', $data, 'onepager'); } public function localizeScriptData($pageId) { $pageInfo = []; $pageInfo['title'] = get_the_title($pageId); $pageInfo['status'] = get_post_status($pageId); $onepager = onepager(); $opi18n = onepager()->opi18n()->get_opi18n_strings(); $pagePresets = onepager()->presetManager()->all(); $footer = get_editor_section_list_footer(); $ajaxUrl = $onepager->api()->getAjaxUrl(); $getUpdatePlugins = $onepager->api()->getUpdatePlugins(); $pluginUpdateUrl = get_admin_url(). 'plugins.php'; $menus = $onepager->content()->getMenus(); $categories = $onepager->content()->getCategories(); $pages = $onepager->content()->getPages(); $blocks = array_values((array) $onepager->blockManager()->all()); $groupOrder = $onepager->blockManager()->getGroupOrder(); // $savedTemplates = $onepager->templatesManager()->getAllSavedTemplates(); $savedTemplates = $onepager->savedTemplates()->loadAllSavedTemplates(); $woocategories = $onepager->content()->getWooCategories(); $sections = array_map(function ($section) { $pageId = $this->getCurrentPageId(); $pageOptionPanel = onepager()->optionsPanel('onepager')->getAllSavedPageOptions($pageId); $section = onepager()->render()->sectionBlockDataMerge($section); $section['content'] = onepager()->render()->section($section); $section['style'] = onepager()->render()->style($section); $section['page_style'] = onepager()->render()->pageStyle($section, $pageId, $pageOptionPanel); return $section; }, onepager()->section()->getAllValid($pageId)); $disableBuildModeUrl = onepager_get_edit_mode_url(get_current_page_url(), false); $preview_link = get_preview_post_link($this->getCurrentPageId()); $optionPanel = onepager()->optionsPanel('onepager')->getOptionsControls(); $pageOptionPanel = onepager()->optionsPanel('onepager')->getPageOptionsControls($pageId); $options = onepager()->optionsPanel('onepager')->getAllSavedOptions(); $pageSettingOptions = onepager()->optionsPanel('onepager')->getAllSavedPageOptions($pageId); $page = 'onepager'; $dashboardUrl = get_dashboard_url().'edit.php?post_type=page'; $onepagerProLoaded = did_action( 'onepager_pro_loaded' ) ? true : false; $proUpgradeLink = 'https://themesgrove.com/wp-onepager/?utm_source=wp-admin&utm_medium=dashboard&utm_campaign=wponepager-gopro'; $presets = \Onepager::getPresets(); $basePreset = \Onepager::getBasePreset(); $assetUrl = ONEPAGER_URL . '/assets'; return compact( 'ajaxUrl', 'pageInfo', 'disableBuildModeUrl', 'optionPanel', 'pageOptionPanel', 'options', 'pageSettingOptions', 'page', 'blocks', 'pageId', 'sections', 'menus', 'pages', 'categories', 'groupOrder', 'footer', 'presets', 'basePreset', 'woocategories', 'dashboardUrl', 'onepagerProLoaded', 'proUpgradeLink', 'getUpdatePlugins', 'pluginUpdateUrl', 'preview_link', 'savedTemplates', 'pagePresets', 'opi18n', 'assetUrl' ); } /** * @return mixed */ protected function isBuildMode() { return onepager()->content()->isBuildMode(); } /** * @return mixed */ protected function getCurrentPageId() { return onepager()->content()->getCurrentPageId(); } private function resetWpScriptQueue() { wp_scripts()->queue = []; wp_styles()->queue = []; } } ================================================ FILE: app/Assets/OnepageScripts.php ================================================ content()->isOnepage() || onepager()->content()->isBuildMode()) { return; } $this->enqueueCommonScripts(); $this->enqueuePageScripts(); } public function enqueuePageScripts() { $asset = onepager()->asset(); $asset->script('lithium', op_asset('assets/lithium.js'), ['jquery']); $asset->style('lithium', op_asset('assets/css/lithium.css')); if (is_super_admin() && !onepager()->content()->isBuildMode()) { $asset->style('lithium-ui', op_asset('assets/css/lithium-builder.css')); } } public function enqueueCommonScripts() { $asset = onepager()->asset(); // $asset->script( 'tx-wow', op_asset( 'assets/js/wow.js' ), [ 'jquery' ] ); // if ( $this->shouldLoadTwitterBootstrap() ) { // $asset->script( 'tx-bootstrap', op_asset( 'assets/js/bootstrap.js' ), [ 'jquery' ] ); // $asset->style( 'tx-bootstrap', op_asset( 'assets/css/bootstrap.css' ) ); // } // $asset->style( 'tx-animate', op_asset( 'assets/css/animate.css' ) ); $asset->style('tx-fontawesome', op_asset('assets/css/font-awesome.css')); // Load UIKit $asset->script('op-uikit', op_asset('assets/js/uikit.js')); $asset->style('op-uikit', op_asset('assets/css/uikit.css')); // Load bootstrap datepicker $asset->script('op-bootstrap-datepicker', op_asset('assets/js/bootstrap-datepicker.js')); $asset->style('op-bootstrap-datepicker', op_asset('assets/css/bootstrap-datepicker.css')); // // Load bootstrap timepicker $asset->script('op-bootstrap-timepicker', op_asset('assets/js/bootstrap-timepicker.js')); $asset->style('op-bootstrap-timepicker', op_asset('assets/css/bootstrap-timepicker.css')); // $asset->script('op-google-fonts', 'https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js'); wp_enqueue_script('op-gfonts','//ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js'); } // protected function shouldLoadTwitterBootstrap() { // return ! defined( 'ONEPAGER_BOOTSTRAP' ) ? true : ONEPAGER_BOOTSTRAP; // } } ================================================ FILE: app/Assets/OptionsPanelScripts.php ================================================ enqueueFormEngineScripts(); $asset = onepager()->asset(); $asset->style( 'lithium-ui', op_asset( 'assets/css/lithium-builder.css' ) ); $asset->script( 'admin-bundle', op_asset( 'assets/optionspanel.bundle.js' ), [ 'jquery' ] ); $asset->enqueue(); } } ================================================ FILE: app/Assets/PreviewScripts.php ================================================ asset(); if (!$this->isPreview()) { return; } $asset->script('onepager-preview', op_asset('assets/onepager-preview.bundle.js'), ['jquery']); } /** * @return mixed */ protected function isPreview() { return onepager()->content()->isPreview(); } } ================================================ FILE: app/Assets/Traits/FormEngineScripts.php ================================================ jsWpEditor(); $this->formEngineScripts(); wp_enqueue_media(); } protected function formEngineScripts() { $asset = onepager()->asset(); // tx namespaced assets to avoid multiple assets loading from other ThemeXpert product $asset->style('tx-bootstrap', op_asset('assets/css/bootstrap.css')); $asset->style('tx-fontawesome', op_asset('assets/css/font-awesome.css')); $asset->script('tx-bootstrap', op_asset('assets/js/bootstrap.js'), ['jquery'], ONEPAGER_VERSION, false); $asset->script('tx-bootstrap-switch', op_asset('assets/js/bootstrap-switch.js'), ['jquery'], ONEPAGER_VERSION, false); $asset->script('tx-bootstrap-select', op_asset('assets/js/bootstrap-select.js'), ['jquery'], ONEPAGER_VERSION, false); $asset->script('tx-iconselector', op_asset('assets/js/icon-selector-bootstrap.js'), ['jquery'], ONEPAGER_VERSION, false); $asset->script('tx-colorpicker', op_asset('assets/js/bootstrap-colorpicker.js'), ['jquery'], ONEPAGER_VERSION, false); //$asset->script('tx-nicescroll', op_asset('assets/js/jquery.nicescroll.min.js'), ['jquery'], ONEPAGER_VERSION, false); $asset->script('tx-toastr', op_asset('assets/js/toastr.js'), ['jquery'], ONEPAGER_VERSION, false); $asset->style('tx-colorpicker', op_asset('assets/css/bootstrap-colorpicker.css')); // UIKit $asset->style('op-uikit', op_asset('assets/css/uikit.css')); $asset->script('op-uikit', op_asset('assets/js/uikit.js'), '', ONEPAGER_VERSION, false); // bootstrap datepicker $asset->style('op-bootstrap-datepicker', op_asset('assets/css/bootstrap-datepicker.css')); $asset->script('op-bootstrap-datepicker', op_asset('assets/js/bootstrap-datepicker.js'), '', ONEPAGER_VERSION, false); // bootstrap timepicker $asset->style('op-bootstrap-timepicker', op_asset('assets/css/bootstrap-timepicker.css')); $asset->script('op-bootstrap-timepicker', op_asset('assets/js/bootstrap-timepicker.js'), '', ONEPAGER_VERSION, false); $asset->script('op-uikit-icons', op_asset('assets/js/uikit-icons.js'), '', ONEPAGER_VERSION, false); // $asset->script('op-google-fonts', 'https://ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js', '', ONEPAGER_VERSION, false); wp_enqueue_script('op-gfonts','//ajax.googleapis.com/ajax/libs/webfont/1.6.26/webfont.js'); $asset->style('tx-lithium-ui', op_asset('assets/css/lithium-builder.css')); } protected function jsWpEditor($settings = []) { if (!class_exists('_WP_Editors')) { require ABSPATH . WPINC . '/class-wp-editor.php'; } $set = _WP_Editors::parse_settings('apid', $settings); if (!current_user_can('upload_files')) { $set['media_buttons'] = false; } if ($set['media_buttons']) { wp_enqueue_script('thickbox'); wp_enqueue_style('thickbox'); wp_enqueue_script('media-upload'); $post = get_post(); if (!$post && !empty($GLOBALS['post_ID'])) { $post = $GLOBALS['post_ID']; } wp_enqueue_media([ 'post' => $post, ]); } _WP_Editors::editor_settings('apid', $set); } } ================================================ FILE: app/Assets/WpConflictResolver.php ================================================ content()->isOnepage() ) { return; } global $wp_styles; if( method_exists($wp_styles, 'remove') ) { $wp_styles->remove( get_default_template_stylesheet_handle() ); if(onepager()->content()->isOnepagerDefaultPageTemplate()){ $wp_styles->add('theme-default-stylesheet', get_stylesheet_uri() ); $wp_styles->enqueue(array('theme-default-stylesheet')); } } } public function remove_sumome(){ if ( onepager()->content()->isBuildMode() || onepager()->content()->isPreview()) { global $wp_plugin_sumome; remove_action('wp_head', [$wp_plugin_sumome, 'append_script_code']); } } } ================================================ FILE: app/Content/OnepageContent.php ================================================ isOnepage() ) { return $content; } if ( $this->onepageContentLoaded() ) { return $content; } $this->setOnepageContentLoaded(); /** * builder preview mode */ if ( $this->isPreview() ) { return $this->getBuildModeContent(); } $pageId = $this->getCurrentPageId(); //$this->renderPageSettings($pageId); /** * return the frontend preview * without builder mode */ return $this->getPageContent( $pageId ); } protected function getBuildModeContent() { return '
'; } protected function getPageContent( $pageId ) { $sections = $this->getAllValidSections( $pageId ); return $this->renderPageSections( $sections ); } protected function onepageContentLoaded() { return defined( 'ONEPAGE_CONTENT_LOADED' ); } protected function setOnepageContentLoaded() { define( 'ONEPAGE_CONTENT_LOADED', true ); } /** * @return boolean */ protected function isPreview() { return onepager()->content()->isPreview(); } /** * @return mixed */ protected function getCurrentPageId() { return onepager()->content()->getCurrentPageId(); } /** * @return mixed */ protected function isOnepage() { return onepager()->content()->isOnepage(); } /** * @param $pageId * * @return mixed */ protected function getAllValidSections( $pageId ) { return onepager()->section()->getAllValid( $pageId ); } /** * @param $sections * * @return mixed */ protected function renderPageSections( $sections ) { return onepager()->render()->sections( $sections ); } /** * @param $sections * * @return mixed */ protected function renderPageSettings( $pageId ) { $sections = $this->getAllValidSections( $pageId ); return onepager()->render()->syncPageSettingsWithSection( $pageId, $sections ); } } ================================================ FILE: app/Content/OnepageInternalScripts.php ================================================ isOnepage() || $this->isBuildMode() ) { return; } $pageId = $this->getCurrentPageId(); $sections = $this->getAllValidSectionsFromPageId( $pageId ); $pageOptionPanel = $this->getPageOptionPanelFromPageId( $pageId ); $page_settings_general = $pageOptionPanel['general']; $full_page_status = array_get($page_settings_general, 'full_screen'); if($full_page_status){ if(! onepager()->content()->isPreview()): wp_enqueue_script('op-full-page-ext-overflow', op_asset( 'assets/js/scrolloverflow.js' ), 'jquery', time()); wp_enqueue_script('op-full-page', op_asset('assets/js/fullpage.js'), 'jquery', time()); wp_enqueue_style('op-full-page', op_asset( 'assets/css/fullpage.css' ), '', time()); endif; } } /** * create an array * for section ID * from all sections */ public function full_page_section_id_arr($sections){ $sections_arr = []; foreach($sections as $section){ array_push($sections_arr, $section['id']); } return $sections_arr; } /** * create an array * for section title * from all sections */ public function full_page_section_name_arr($sections){ $sections_name_arr = []; foreach($sections as $section){ array_push($sections_name_arr, $section['title']); } return $sections_name_arr; } public function injectInternalScripts() { if ( ! $this->isOnepage() || $this->isBuildMode() ) { return; } $pageId = $this->getCurrentPageId(); $sections = $this->getAllValidSectionsFromPageId( $pageId ); $pageOptionPanel = $this->getPageOptionPanelFromPageId( $pageId ); $this->renderStylesFromSections( $sections ); $this->renderStylesForPageSettings( $sections, $pageId, $pageOptionPanel ); $this->loadPageFonts( $pageOptionPanel ); /** * for full page script * need to fix it for build mode. * preview mode is ok. */ $page_settings_general = $pageOptionPanel['general']; $full_page_status = array_get($page_settings_general, 'full_screen'); $fullpage_section_ids_arr = $this->full_page_section_id_arr($sections); $fullpage_section_name_arr = $this->full_page_section_name_arr($sections); if(onepager()->content()->isPreview()): if($full_page_status): ?> getCurrentPageId(); $classes[] = 'txop-page-'.$pageId; return $classes; } /** * @return mixed */ protected function isBuildMode() { return onepager()->content()->isBuildMode(); } /** * @return mixed */ protected function isOnepage() { return onepager()->content()->isOnepage(); } /** * @return mixed */ protected function getCurrentPageId() { return onepager()->content()->getCurrentPageId(); } /** * @param $pageId * * @return mixed */ protected function getAllValidSectionsFromPageId( $pageId ) { return onepager()->section()->getAllValid( $pageId ); } /** * @return page option panel data */ protected function getPageOptionPanelFromPageId($pageId){ $pageOptionPanelData = onepager()->optionsPanel('onepager')->getAllSavedPageOptions($pageId); return $pageOptionPanelData; } /** * @param $sections */ protected function renderStylesFromSections( $sections ) { onepager()->render()->styles( $sections ); } /** * @param $pageId * @param $sections * @param $pageOptionPanel */ protected function renderStylesForPageSettings( $sections, $pageId, $pageOptionPanel ) { onepager()->render()->pageStyles( $sections, $pageId, $pageOptionPanel ); } } ================================================ FILE: app/Content/OnepageToolbar.php ================================================ content()->isOnepage(); $isPreview = onepager()->content()->isPreview(); $isBuildMode = onepager()->content()->isBuildMode(); if ( $isOnepage && ! $isPreview ) { $url = onepager_get_edit_mode_url( get_current_page_url(), true ); onepager()->toolbar()->addMenu( 'op-enable-livemode', $url, ' Edit with Onepager' ); } // hide the navbar when livemode if ( $isPreview || $isBuildMode ) { show_admin_bar( false ); } } } ================================================ FILE: app/Loaders/BlocksLoader.php ================================================ blockManager = $blockManager; add_action( 'init', [ $this, 'loadOnepagerBlocks' ], 999 ); add_action( 'init', [ $this, 'loadThemeBlocks' ], 999 ); add_action( 'init', [ $this, 'setGroupOrder' ], 999 ); } public function loadOnepagerBlocks() { // default group added to the blocks (optional array) $groups = 'Core Blocks'; $this->blockManager->loadAllFromPath( ONEPAGER_BLOCKS_PATH, ONEPAGER_BLOCKS_URL, $groups ); } public function loadThemeBlocks() { // default group added to the blocks (optional array) $groups = [ $this->getCurrentThemeBlocksGroup() ]; $dir = ONEPAGER_THEME_PATH . '/blocks'; $url = ONEPAGER_THEME_URL . '/blocks'; if ( ! file_exists( $dir ) ) { return; } $this->blockManager->loadAllFromPath( $dir, $url, $groups ); } public function setGroupOrder() { $order = array( $this->getCurrentThemeBlocksGroup(), ); // FIXME: need a way to filter it $this->blockManager->setGroupOrder( $order ); } /** * @return string */ private function getCurrentThemeBlocksGroup() { $currentTheme = wp_get_theme(); return $currentTheme->get( 'Name' ) . ' (theme)'; } } ================================================ FILE: app/Loaders/PresetsLoader.php ================================================ presetManager = $presetManager; add_action( 'admin_init', [ $this, 'onepagerPresetsLoader' ] ); add_action( 'admin_init', [ $this, 'themePresetsLoader' ] ); } public function onepagerPresetsLoader() { $groups = 'Free'; $this->presetManager->loadAllFromPath( ONEPAGER_PRESETS_PATH, ONEPAGER_PRESETS_URL, $groups ); } public function themePresetsLoader() { $groups = [ $this->getCurrentThemePresetsGroup() ]; $dir = ONEPAGER_THEME_PATH . '/presets'; $url = ONEPAGER_THEME_URL . '/presets'; if ( ! file_exists( $dir ) ) { return; } $this->presetManager->loadAllFromPath( $dir, $url, $groups ); } /** * @return string */ private function getCurrentThemePresetsGroup() { $currentTheme = wp_get_theme(); return $currentTheme->get( 'Name' ) . ' (theme)'; } } ================================================ FILE: app/Loaders/TemplateLoader.php ================================================ pageTemplateManager = $pageTemplateManager; add_action( 'wp_loaded', [ $this, 'loadOnepagerPageTemplates' ] ); add_action( 'wp_loaded', [ $this, 'loadOnepagerPageDefaultTemplates' ] ); // add_action( 'wp_loaded', [ $this, 'loadmytesttemplate' ] ); // 9999999999 is a very big number to make sure that builder.php loads whatever happens add_filter( 'template_include', [ $this, 'loadBuildModeTemplate' ], 9999999999 ); } public function loadBuildModeTemplate( $template ) { if ( $this->isBuildMode() ) { return onepager()->path( 'app/templates/builder.php' ); } else { return $template; } } /** * if we have a onepage.php file in themes onepager directory * then load that template * Add page Templates */ public function loadOnepagerPageTemplates() { $onepager_canvas = locate_template( 'onepager/onepage.php' ) ?: onepager()->path( '/app/templates/onepage.php' ); $this->pageTemplateManager->addTemplate( 'Onepager Canvas', $onepager_canvas ); // Any filename start with onepager*- will work from JS $onepager_default = locate_template( 'onepager/onepager-default.php' ) ?: onepager()->path( '/app/templates/onepager-default.php' ); $this->pageTemplateManager->addTemplate( 'Onepager Default', $onepager_default ); } public function loadOnepagerPageDefaultTemplates() { } public function loadmytesttemplate() { $test_file = onepager()->path('/app/templates/my-test.php'); $this->pageTemplateManager->addTemplate('my test', $test_file); } /** * @return mixed */ protected function isBuildMode() { return onepager()->content()->isBuildMode(); } } ================================================ FILE: app/Metabox/metabox.php ================================================ // // // presetManager()->all(); $groups = array_unique( array_reduce( $onepagerLayouts, function ( $carry, $layout ) { return array_merge( $carry, $layout['group'] ); }, [ ] ) ); $sections = onepager()->section()->getAllValid( $post->ID ); $editorUrl = onepager_get_edit_mode_url( get_permalink( $post->ID ), true ); echo View::getInstance()->make( __DIR__ . '/page-meta.php', compact( 'onepagerLayouts', 'post', 'groups', 'sections', 'editorUrl' ) ); }; /** * Add meta box syntax * add_meta_box($id, $title, $callback, $screen, $context, $priority, $callback_args) */ add_meta_box( 'onepager_meta', __( 'OnePager', 'onepager' ), $template, 'page', 'normal', apply_filters( 'onepager_metabox_prio', 'high' ) ); } function tx_onepager_metabox_scripts( $hook ) { global $post; if ( ! ( $post && $post->post_type == 'page' ) ) { return; } if ( ! ( $hook == 'post-new.php' || $hook == 'post.php' ) ) { return; } $data = array( 'pageId' => $post->ID, 'buildModeUrl' => onepager_get_edit_mode_url( get_permalink( $post->ID ), true ), ); wp_enqueue_script( 'tx-onepager-page-meta', op_asset( 'assets/meta.js' ), ["jquery", "wp-i18n"], true ); wp_enqueue_style( 'tx-lithium', op_asset( 'assets/css/lithium-builder.css' ) ); wp_localize_script( 'tx-onepager-page-meta', 'onepager', $data ); wp_set_script_translations( 'tx-onepager-page-meta', 'tx-onepager' ); } ================================================ FILE: app/Metabox/page-meta.php ================================================
post_status == 'publish' ) : ?>

Start Blank

================================================ FILE: app/Onepager.php ================================================ optionsPanel( 'onepager' ); } // Get individual option public static function getOption( $name, $default = '' ) { return onepager()->optionsPanel( 'onepager' )->getOption( $name, $default ); } /** * Deprecated from 1.1.4 * Will be removed in 1.2 * * @param string $folder */ public static function registerBlocks( $folder = 'blocks' ) { } // Disable Any Blocks Group public static function disableBlocks( $groups ) { onepager()->blockManager()->setIgnoredGroups( $groups ); } // Disable all core blocks group = onepager public static function disableCoreBlocks() { self::disableBlocks( 'Onepager (plugin)' ); } /** * Deprecated from 1.1.4 * Will be removed in 1.2 * * @param string $folder */ public static function registerPresets( $folder = 'presets' ) { } // Disable Any Presets Group public static function disablePresets( $groups ) { onepager()->presetManager()->setIgnoredGroups( $groups ); } // Disable core presets public static function disableCorePresets() { self::disablePresets( 'Free' ); } public static function addPresets( $name, $presets ) { if ( ! array_key_exists( $name, static::$presets ) ) { static::$presets[ $name ] = []; } static::$presets[ $name ] = array_merge( $presets, static::$presets[ $name ] ); } public static function getPresets() { return static::$presets; } // Add style public static function addStyle( $name, $src = false, $dependency = [], $version = ONEPAGER_VERSION, $media = 'all' ) { onepager()->asset()->style( $name, $src, $dependency, $version, $media ); } // Add script public static function addScript( $name, $src = false, $dependency = [], $version = ONEPAGER_VERSION, $footer = true ) { onepager()->asset()->script( $name, $src, $dependency, $version, $footer ); } public static function basePreset( $array ) { static::$basePreset = $array; } public static function getBasePreset() { return static::$basePreset; } public static function isBuilderMode() { return onepager()->content()->isBuildMode(); } public static function isWooCommerceInstalled() { if ( in_array( 'woocommerce/woocommerce.php', apply_filters( 'active_plugins', get_option( 'active_plugins' ) ) ) ) { return true; } return false; } public static function fonts( $name ) { $fonts = require __DIR__ . '/data/font-families.php'; $font = isset( $fonts[ $name ] ) ? $fonts[ $name ]['family'] : 'Roboto Condensed'; $url = str_replace( ' ', '+', $font ); $script = <<'; echo implode( ' ', static::$scripts ); echo ''; } } ================================================ FILE: app/OptionsPanel/settings.php ================================================ tab( 'general', 'Generals' ) ->add( array( 'name' => 'section_title_size', 'label' => 'Section Title Size', 'append' => 'px', 'value' => '', ), array( 'name' => 'section_heading_font', 'type' => 'font', 'label' => 'Section Title Fonts' ), array( 'name' => 'section_subtitle_size', 'label' => 'Section Subtitle Size', 'append' => 'px', 'value' => '', ) ) ->tab( 'styles', 'Styles' ) ->add( array( 'name' => 'color', 'type' => 'colorpalette', 'presets' => 'default', 'value' => array( 'primary' => '#1565c0', 'secondary' => '#0a3d78', 'accent' => '#E64A19', ), ) ) ->tab( 'advanced' ) ->add( array( 'name' => 'onepager_debug', 'label' => 'Development Mode', 'type' => 'switch', 'value' => false ), array( 'name' => 'google_analytics', 'type' => 'textarea', 'label' => 'Google Analytics', 'placeholder' => 'Paste your code here', ) ); // Onepager::basePreset( array( // 'primary' => "#1565c0", // 'secondary' => '#0a3d78', // 'accent' => '#E64A19', // ) ); // // Onepager::addPresets( "default", array( // [ 'primary' => 'red', 'secondary' => 'yellow' ], // [ 'primary' => 'green', 'secondary' => 'yellow' ], // ) ); add_action( 'wp_head', function () { ?> 'op_settings_general', 'title' => __('General', 'onepager') ], [ 'id' => 'op_setting_styles', 'title' => __('Styles', 'onepager') ], [ 'id' => 'op_setting_advanced', 'title' => __('Advanced', 'onepager') ] ]; $fields = [ 'op_settings_general' => [ [ 'name' => 'section_title_size', 'label' => __('Section Title Size', 'onepager'), 'desc' => __('in px', 'onepager'), 'type' => 'text', 'default' => '44' ], ], 'op_setting_styles' => [ [ 'name' => 'primary', 'label' => __('Primary Color', 'onepager'), 'desc' => __('Font color', 'onepager'), 'type' => 'color', 'default' => '#fff' ], [ 'name' => 'seconday', 'label' => __('Secondary Color', 'onepager'), 'desc' => __('Font color', 'onepager'), 'type' => 'color', 'default' => '#fff' ], [ 'name' => 'accent', 'label' => __('Accent Color', 'onepager'), 'desc' => __('Font color', 'onepager'), 'type' => 'color', 'default' => '#fff' ], ], 'op_setting_advanced' => [ [ 'name' => 'google_analytics', 'label' => __('Google Analytics', 'onepager'), 'desc' => __('Please insert your code here', 'onepager'), 'type' => 'textarea', 'default' => '' ], [ 'name' => 'onepager_debug', 'label' => __( 'Debug', 'onepager' ), 'desc' => __( 'Debug Mode', 'onepager' ), 'type' => 'checkbox' ], ] ]; onepagerSettings($tab, $fields); ================================================ FILE: app/bootstrap.php ================================================ [ "family" => "ABeeZee", "variants"=> [ 0=> "regular", 1=> "italic" ], "subsets"=> [ 0=> "latin", ], "version"=> "v13", "lastModified"=> "2019-07-17", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/abeezee/v13/esDR31xSG-6AGleN6tKukbcHCpE.ttf", "italic"=> "http://fonts.gstatic.com/s/abeezee/v13/esDT31xSG-6AGleN2tCklZUCGpG-GQ.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 1 => [ "family"=> "Abel", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-17", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/abel/v10/MwQ5bhbm2POE6VhLPJp6qGI.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 2 => [ "family"=> "Abhaya Libre", "variants"=> [ 0=> "regular", 1=> "500", 2=> "600", 3=> "700", 4=> "800", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "sinhala", ], "version"=> "v5", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/abhayalibre/v5/e3tmeuGtX-Co5MNzeAOqinEge0PWovdU4w.ttf", "500"=> "http://fonts.gstatic.com/s/abhayalibre/v5/e3t5euGtX-Co5MNzeAOqinEYj2ryqtxI6oYtBA.ttf", "600"=> "http://fonts.gstatic.com/s/abhayalibre/v5/e3t5euGtX-Co5MNzeAOqinEYo23yqtxI6oYtBA.ttf", "700"=> "http://fonts.gstatic.com/s/abhayalibre/v5/e3t5euGtX-Co5MNzeAOqinEYx2zyqtxI6oYtBA.ttf", "800"=> "http://fonts.gstatic.com/s/abhayalibre/v5/e3t5euGtX-Co5MNzeAOqinEY22_yqtxI6oYtBA.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 3 => [ "family"=> "Abril Fatface", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v11", "lastModified"=> "2019-07-17", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/abrilfatface/v11/zOL64pLDlL1D99S8g8PtiKchm-BsjOLhZBY.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 4 => [ "family"=> "Aclonica", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/aclonica/v10/K2FyfZJVlfNNSEBXGb7TCI6oBjLz.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 5 => [ "family"=> "Acme", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-17", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/acme/v9/RrQfboBx-C5_bx3Lb23lzLk.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 6 => [ "family"=> "Actor", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/actor/v9/wEOzEBbCkc5cO3ekXygtUMIO.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 7 => [ "family"=> "Adamina", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v13", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/adamina/v13/j8_r6-DH1bjoc-dwu-reETl4Bno.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 8 => [ "family"=> "Advent Pro", "variants"=> [ 0=> "100", 1=> "200", 2=> "300", 3=> "regular", 4=> "500", 5=> "600", 6=> "700", ], "subsets"=> [ 0=> "greek", 1=> "latin", 2=> "latin-ext", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "100"=> "http://fonts.gstatic.com/s/adventpro/v10/V8mCoQfxVT4Dvddr_yOwjVmtLZxcBtItFw.ttf", "200"=> "http://fonts.gstatic.com/s/adventpro/v10/V8mDoQfxVT4Dvddr_yOwjfWMDbZyCts0DqQ.ttf", "300"=> "http://fonts.gstatic.com/s/adventpro/v10/V8mDoQfxVT4Dvddr_yOwjZGPDbZyCts0DqQ.ttf", "regular"=> "http://fonts.gstatic.com/s/adventpro/v10/V8mAoQfxVT4Dvddr_yOwtT2nKb5ZFtI.ttf", "500"=> "http://fonts.gstatic.com/s/adventpro/v10/V8mDoQfxVT4Dvddr_yOwjcmODbZyCts0DqQ.ttf", "600"=> "http://fonts.gstatic.com/s/adventpro/v10/V8mDoQfxVT4Dvddr_yOwjeWJDbZyCts0DqQ.ttf", "700"=> "http://fonts.gstatic.com/s/adventpro/v10/V8mDoQfxVT4Dvddr_yOwjYGIDbZyCts0DqQ.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 9 => [ "family"=> "Aguafina Script", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/aguafinascript/v8/If2QXTv_ZzSxGIO30LemWEOmt1bHqs4pgicOrg.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 10 => [ "family"=> "Akronim", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/akronim/v9/fdN-9sqWtWZZlHRp-gBxkFYN-a8.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 11 => [ "family"=> "Aladin", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/aladin/v8/ZgNSjPJFPrvJV5f16Sf4pGT2Ng.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 12 => [ "family"=> "Alata", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v1", "lastModified"=> "2020-03-03", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/alata/v1/PbytFmztEwbIofe6xKcRQEOX.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 13 => [ "family"=> "Alatsi", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v1", "lastModified"=> "2020-03-03", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/alatsi/v1/TK3iWkUJAxQ2nLNGHjUHte5fKg.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 14 => [ "family"=> "Aldrich", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/aldrich/v10/MCoTzAn-1s3IGyJMZaAS3pP5H_E.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 15 => [ "family"=> "Alef", "variants"=> [ 0=> "regular", 1=> "700", ], "subsets"=> [ 0=> "hebrew", 1=> "latin", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/alef/v11/FeVfS0NQpLYgrjJbC5FxxbU.ttf", "700"=> "http://fonts.gstatic.com/s/alef/v11/FeVQS0NQpLYglo50L5la2bxii28.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 16 => [ "family"=> "Alegreya", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "500", 3=> "500italic", 4=> "700", 5=> "700italic", 6=> "800", 7=> "800italic", 8=> "900", 9=> "900italic", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "greek", 3=> "greek-ext", 4=> "latin", 5=> "latin-ext", 6=> "vietnamese", ], "version"=> "v13", "lastModified"=> "2019-07-17", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/alegreya/v13/4UaBrEBBsBhlBjvfkRLmzanB44N1.ttf", "italic"=> "http://fonts.gstatic.com/s/alegreya/v13/4UaHrEBBsBhlBjvfkSLkx63j5pN1MwI.ttf", "500"=> "http://fonts.gstatic.com/s/alegreya/v13/4UaGrEBBsBhlBjvfkSoS5I3JyJ98KhtH.ttf", "500italic"=> "http://fonts.gstatic.com/s/alegreya/v13/4UaErEBBsBhlBjvfkSLk_1nKwpteLwtHJlc.ttf", "700"=> "http://fonts.gstatic.com/s/alegreya/v13/4UaGrEBBsBhlBjvfkSpa4o3JyJ98KhtH.ttf", "700italic"=> "http://fonts.gstatic.com/s/alegreya/v13/4UaErEBBsBhlBjvfkSLk_xHMwpteLwtHJlc.ttf", "800"=> "http://fonts.gstatic.com/s/alegreya/v13/4UaGrEBBsBhlBjvfkSpG4Y3JyJ98KhtH.ttf", "800italic"=> "http://fonts.gstatic.com/s/alegreya/v13/4UaErEBBsBhlBjvfkSLk_w3PwpteLwtHJlc.ttf", "900"=> "http://fonts.gstatic.com/s/alegreya/v13/4UaGrEBBsBhlBjvfkSpi4I3JyJ98KhtH.ttf", "900italic"=> "http://fonts.gstatic.com/s/alegreya/v13/4UaErEBBsBhlBjvfkSLk_ynOwpteLwtHJlc.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 17 => [ "family"=> "Alegreya SC", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "500", 3=> "500italic", 4=> "700", 5=> "700italic", 6=> "800", 7=> "800italic", 8=> "900", 9=> "900italic", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "greek", 3=> "greek-ext", 4=> "latin", 5=> "latin-ext", 6=> "vietnamese", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/alegreyasc/v11/taiOGmRtCJ62-O0HhNEa-a6o05E5abe_.ttf", "italic"=> "http://fonts.gstatic.com/s/alegreyasc/v11/taiMGmRtCJ62-O0HhNEa-Z6q2ZUbbKe_DGs.ttf", "500"=> "http://fonts.gstatic.com/s/alegreyasc/v11/taiTGmRtCJ62-O0HhNEa-ZZc-rUxQqu2FXKD.ttf", "500italic"=> "http://fonts.gstatic.com/s/alegreyasc/v11/taiRGmRtCJ62-O0HhNEa-Z6q4WEySK-UEGKDBz4.ttf", "700"=> "http://fonts.gstatic.com/s/alegreyasc/v11/taiTGmRtCJ62-O0HhNEa-ZYU_LUxQqu2FXKD.ttf", "700italic"=> "http://fonts.gstatic.com/s/alegreyasc/v11/taiRGmRtCJ62-O0HhNEa-Z6q4Sk0SK-UEGKDBz4.ttf", "800"=> "http://fonts.gstatic.com/s/alegreyasc/v11/taiTGmRtCJ62-O0HhNEa-ZYI_7UxQqu2FXKD.ttf", "800italic"=> "http://fonts.gstatic.com/s/alegreyasc/v11/taiRGmRtCJ62-O0HhNEa-Z6q4TU3SK-UEGKDBz4.ttf", "900"=> "http://fonts.gstatic.com/s/alegreyasc/v11/taiTGmRtCJ62-O0HhNEa-ZYs_rUxQqu2FXKD.ttf", "900italic"=> "http://fonts.gstatic.com/s/alegreyasc/v11/taiRGmRtCJ62-O0HhNEa-Z6q4RE2SK-UEGKDBz4.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 18 => [ "family"=> "Alegreya Sans", "variants"=> [ 0=> "100", 1=> "100italic", 2=> "300", 3=> "300italic", 4=> "regular", 5=> "italic", 6=> "500", 7=> "500italic", 8=> "700", 9=> "700italic", 10=> "800", 11=> "800italic", 12=> "900", 13=> "900italic", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "greek", 3=> "greek-ext", 4=> "latin", 5=> "latin-ext", 6=> "vietnamese", ], "version"=> "v10", "lastModified"=> "2019-07-17", "files"=> [ "100"=> "http://fonts.gstatic.com/s/alegreyasans/v10/5aUt9_-1phKLFgshYDvh6Vwt5TltuGdShm5bsg.ttf", "100italic"=> "http://fonts.gstatic.com/s/alegreyasans/v10/5aUv9_-1phKLFgshYDvh6Vwt7V9V3G1WpGtLsgu7.ttf", "300"=> "http://fonts.gstatic.com/s/alegreyasans/v10/5aUu9_-1phKLFgshYDvh6Vwt5fFPmE18imdCqxI.ttf", "300italic"=> "http://fonts.gstatic.com/s/alegreyasans/v10/5aUo9_-1phKLFgshYDvh6Vwt7V9VFE92jkVHuxKiBA.ttf", "regular"=> "http://fonts.gstatic.com/s/alegreyasans/v10/5aUz9_-1phKLFgshYDvh6Vwt3V1nvEVXlm4.ttf", "italic"=> "http://fonts.gstatic.com/s/alegreyasans/v10/5aUt9_-1phKLFgshYDvh6Vwt7V9tuGdShm5bsg.ttf", "500"=> "http://fonts.gstatic.com/s/alegreyasans/v10/5aUu9_-1phKLFgshYDvh6Vwt5alOmE18imdCqxI.ttf", "500italic"=> "http://fonts.gstatic.com/s/alegreyasans/v10/5aUo9_-1phKLFgshYDvh6Vwt7V9VTE52jkVHuxKiBA.ttf", "700"=> "http://fonts.gstatic.com/s/alegreyasans/v10/5aUu9_-1phKLFgshYDvh6Vwt5eFImE18imdCqxI.ttf", "700italic"=> "http://fonts.gstatic.com/s/alegreyasans/v10/5aUo9_-1phKLFgshYDvh6Vwt7V9VBEh2jkVHuxKiBA.ttf", "800"=> "http://fonts.gstatic.com/s/alegreyasans/v10/5aUu9_-1phKLFgshYDvh6Vwt5f1LmE18imdCqxI.ttf", "800italic"=> "http://fonts.gstatic.com/s/alegreyasans/v10/5aUo9_-1phKLFgshYDvh6Vwt7V9VGEt2jkVHuxKiBA.ttf", "900"=> "http://fonts.gstatic.com/s/alegreyasans/v10/5aUu9_-1phKLFgshYDvh6Vwt5dlKmE18imdCqxI.ttf", "900italic"=> "http://fonts.gstatic.com/s/alegreyasans/v10/5aUo9_-1phKLFgshYDvh6Vwt7V9VPEp2jkVHuxKiBA.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 19 => [ "family"=> "Alegreya Sans SC", "variants"=> [ 0=> "100", 1=> "100italic", 2=> "300", 3=> "300italic", 4=> "regular", 5=> "italic", 6=> "500", 7=> "500italic", 8=> "700", 9=> "700italic", 10=> "800", 11=> "800italic", 12=> "900", 13=> "900italic", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "greek", 3=> "greek-ext", 4=> "latin", 5=> "latin-ext", 6=> "vietnamese", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "100"=> "http://fonts.gstatic.com/s/alegreyasanssc/v9/mtGn4-RGJqfMvt7P8FUr0Q1j-Hf1Dipl8g5FPYtmMg.ttf", "100italic"=> "http://fonts.gstatic.com/s/alegreyasanssc/v9/mtGl4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdlgRBH452Mvds.ttf", "300"=> "http://fonts.gstatic.com/s/alegreyasanssc/v9/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DuJH0iRrMYJ_K-4.ttf", "300italic"=> "http://fonts.gstatic.com/s/alegreyasanssc/v9/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdXiZhNaB6O-51OA.ttf", "regular"=> "http://fonts.gstatic.com/s/alegreyasanssc/v9/mtGh4-RGJqfMvt7P8FUr0Q1j-Hf1Nk5v9ixALYs.ttf", "italic"=> "http://fonts.gstatic.com/s/alegreyasanssc/v9/mtGn4-RGJqfMvt7P8FUr0Q1j-Hf1Bkxl8g5FPYtmMg.ttf", "500"=> "http://fonts.gstatic.com/s/alegreyasanssc/v9/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DrpG0iRrMYJ_K-4.ttf", "500italic"=> "http://fonts.gstatic.com/s/alegreyasanssc/v9/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdBidhNaB6O-51OA.ttf", "700"=> "http://fonts.gstatic.com/s/alegreyasanssc/v9/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DvJA0iRrMYJ_K-4.ttf", "700italic"=> "http://fonts.gstatic.com/s/alegreyasanssc/v9/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdTiFhNaB6O-51OA.ttf", "800"=> "http://fonts.gstatic.com/s/alegreyasanssc/v9/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1Du5D0iRrMYJ_K-4.ttf", "800italic"=> "http://fonts.gstatic.com/s/alegreyasanssc/v9/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxdUiJhNaB6O-51OA.ttf", "900"=> "http://fonts.gstatic.com/s/alegreyasanssc/v9/mtGm4-RGJqfMvt7P8FUr0Q1j-Hf1DspC0iRrMYJ_K-4.ttf", "900italic"=> "http://fonts.gstatic.com/s/alegreyasanssc/v9/mtGk4-RGJqfMvt7P8FUr0Q1j-Hf1BkxddiNhNaB6O-51OA.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 20 => [ "family"=> "Aleo", "variants"=> [ 0=> "300", 1=> "300italic", 2=> "regular", 3=> "italic", 4=> "700", 5=> "700italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v3", "lastModified"=> "2019-11-05", "files"=> [ "300"=> "http://fonts.gstatic.com/s/aleo/v3/c4mg1nF8G8_syKbr9DVDno985KM.ttf", "300italic"=> "http://fonts.gstatic.com/s/aleo/v3/c4mi1nF8G8_swAjxeDdJmq159KOnWA.ttf", "regular"=> "http://fonts.gstatic.com/s/aleo/v3/c4mv1nF8G8_s8ArD0D1ogoY.ttf", "italic"=> "http://fonts.gstatic.com/s/aleo/v3/c4mh1nF8G8_swAjJ1B9tkoZl_Q.ttf", "700"=> "http://fonts.gstatic.com/s/aleo/v3/c4mg1nF8G8_syLbs9DVDno985KM.ttf", "700italic"=> "http://fonts.gstatic.com/s/aleo/v3/c4mi1nF8G8_swAjxaDBJmq159KOnWA.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 21 => [ "family"=> "Alex Brush", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/alexbrush/v11/SZc83FzrJKuqFbwMKk6EtUL57DtOmCc.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 22 => [ "family"=> "Alfa Slab One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v9", "lastModified"=> "2019-07-17", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/alfaslabone/v9/6NUQ8FmMKwSEKjnm5-4v-4Jh6dVretWvYmE.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 23 => [ "family"=> "Alice", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "latin", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/alice/v11/OpNCnoEEmtHa6FcJpA_chzJ0.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 24 => [ "family"=> "Alike", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v12", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/alike/v12/HI_EiYEYI6BIoEjBSZXAQ4-d.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 25 => [ "family"=> "Alike Angular", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/alikeangular/v10/3qTrojWunjGQtEBlIcwMbSoI3kM6bB7FKjE.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 26 => [ "family"=> "Allan", "variants"=> [ 0=> "regular", 1=> "700", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v12", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/allan/v12/ea8XadU7WuTxEtb2P9SF8nZE.ttf", "700"=> "http://fonts.gstatic.com/s/allan/v12/ea8aadU7WuTxEu5KEPCN2WpNgEKU.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 27 => [ "family"=> "Allerta", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/allerta/v10/TwMO-IAHRlkbx940UnEdSQqO5uY.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 28 => [ "family"=> "Allerta Stencil", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/allertastencil/v10/HTx0L209KT-LmIE9N7OR6eiycOeF-zz313DuvQ.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 29 => [ "family"=> "Allura", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/allura/v8/9oRPNYsQpS4zjuAPjAIXPtrrGA.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 30 => [ "family"=> "Almarai", "variants"=> [ 0=> "300", 1=> "regular", 2=> "700", 3=> "800", ], "subsets"=> [ 0=> "arabic", ], "version"=> "v2", "lastModified"=> "2020-03-03", "files"=> [ "300"=> "http://fonts.gstatic.com/s/almarai/v2/tssoApxBaigK_hnnS_anhnicoq72sXg.ttf", "regular"=> "http://fonts.gstatic.com/s/almarai/v2/tsstApxBaigK_hnnc1qPonC3vqc.ttf", "700"=> "http://fonts.gstatic.com/s/almarai/v2/tssoApxBaigK_hnnS-aghnicoq72sXg.ttf", "800"=> "http://fonts.gstatic.com/s/almarai/v2/tssoApxBaigK_hnnS_qjhnicoq72sXg.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 31 => [ "family"=> "Almendra", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "700", 3=> "700italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v12", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/almendra/v12/H4ckBXKAlMnTn0CskyY6wr-wg763.ttf", "italic"=> "http://fonts.gstatic.com/s/almendra/v12/H4ciBXKAlMnTn0CskxY4yLuShq63czE.ttf", "700"=> "http://fonts.gstatic.com/s/almendra/v12/H4cjBXKAlMnTn0Cskx6G7Zu4qKK-aihq.ttf", "700italic"=> "http://fonts.gstatic.com/s/almendra/v12/H4chBXKAlMnTn0CskxY48Ae9oqacbzhqDtg.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 32 => [ "family"=> "Almendra Display", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/almendradisplay/v10/0FlPVOGWl1Sb4O3tETtADHRRlZhzXS_eTyer338.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 33 => [ "family"=> "Almendra SC", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/almendrasc/v10/Iure6Yx284eebowr7hbyTZZJprVA4XQ0.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 34 => [ "family"=> "Amarante", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/amarante/v7/xMQXuF1KTa6EvGx9bq-3C3rAmD-b.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 35 => [ "family"=> "Amaranth", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "700", 3=> "700italic", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/amaranth/v10/KtkuALODe433f0j1zPnCF9GqwnzW.ttf", "italic"=> "http://fonts.gstatic.com/s/amaranth/v10/KtkoALODe433f0j1zMnAHdWIx2zWD4I.ttf", "700"=> "http://fonts.gstatic.com/s/amaranth/v10/KtkpALODe433f0j1zMF-OPWi6WDfFpuc.ttf", "700italic"=> "http://fonts.gstatic.com/s/amaranth/v10/KtkrALODe433f0j1zMnAJWmn42T9E4ucRY8.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 36 => [ "family"=> "Amatic SC", "variants"=> [ 0=> "regular", 1=> "700", ], "subsets"=> [ 0=> "cyrillic", 1=> "hebrew", 2=> "latin", 3=> "latin-ext", 4=> "vietnamese", ], "version"=> "v13", "lastModified"=> "2019-07-17", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/amaticsc/v13/TUZyzwprpvBS1izr_vO0De6ecZQf1A.ttf", "700"=> "http://fonts.gstatic.com/s/amaticsc/v13/TUZ3zwprpvBS1izr_vOMscG6eb8D3WTy-A.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 37 => [ "family"=> "Amethysta", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/amethysta/v8/rP2Fp2K15kgb_F3ibfWIGDWCBl0O8Q.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 38 => [ "family"=> "Amiko", "variants"=> [ 0=> "regular", 1=> "600", 2=> "700", ], "subsets"=> [ 0=> "devanagari", 1=> "latin", 2=> "latin-ext", ], "version"=> "v4", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/amiko/v4/WwkQxPq1DFK04tqlc17MMZgJ.ttf", "600"=> "http://fonts.gstatic.com/s/amiko/v4/WwkdxPq1DFK04uJ9XXrEGoQAUco5.ttf", "700"=> "http://fonts.gstatic.com/s/amiko/v4/WwkdxPq1DFK04uIZXHrEGoQAUco5.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 39 => [ "family"=> "Amiri", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "700", 3=> "700italic", ], "subsets"=> [ 0=> "arabic", 1=> "latin", 2=> "latin-ext", ], "version"=> "v13", "lastModified"=> "2019-07-17", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/amiri/v13/J7aRnpd8CGxBHqUpvrIw74NL.ttf", "italic"=> "http://fonts.gstatic.com/s/amiri/v13/J7afnpd8CGxBHpUrtLYS6pNLAjk.ttf", "700"=> "http://fonts.gstatic.com/s/amiri/v13/J7acnpd8CGxBHp2VkZY4xJ9CGyAa.ttf", "700italic"=> "http://fonts.gstatic.com/s/amiri/v13/J7aanpd8CGxBHpUrjAo9zptgHjAavCA.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 40 => [ "family"=> "Amita", "variants"=> [ 0=> "regular", 1=> "700", ], "subsets"=> [ 0=> "devanagari", 1=> "latin", 2=> "latin-ext", ], "version"=> "v5", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/amita/v5/HhyaU5si9Om7PQlvAfSKEZZL.ttf", "700"=> "http://fonts.gstatic.com/s/amita/v5/HhyXU5si9Om7PTHTLtCCOopCTKkI.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 41 => [ "family"=> "Anaheim", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/anaheim/v7/8vII7w042Wp87g4G0UTUEE5eK_w.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 42 => [ "family"=> "Andada", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/andada/v11/uK_y4riWaego3w9RCh0TMv6EXw.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 43 => [ "family"=> "Andika", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "latin", 3=> "latin-ext", 4=> "vietnamese", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/andika/v11/mem_Ya6iyW-LwqgAbbwRWrwGVA.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 44 => [ "family"=> "Angkor", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "khmer", ], "version"=> "v12", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/angkor/v12/H4cmBXyAlsPdnlb-8iw-4Lqggw.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 45 => [ "family"=> "Annie Use Your Telescope", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/annieuseyourtelescope/v10/daaLSS4tI2qYYl3Jq9s_Hu74xwktnlKxH6osGVGjlDfB3UUVZA.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 46 => [ "family"=> "Anonymous Pro", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "700", 3=> "700italic", ], "subsets"=> [ 0=> "cyrillic", 1=> "greek", 2=> "latin", 3=> "latin-ext", ], "version"=> "v13", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/anonymouspro/v13/rP2Bp2a15UIB7Un-bOeISG3pLlw89CH98Ko.ttf", "italic"=> "http://fonts.gstatic.com/s/anonymouspro/v13/rP2fp2a15UIB7Un-bOeISG3pHl428AP44Kqr2Q.ttf", "700"=> "http://fonts.gstatic.com/s/anonymouspro/v13/rP2cp2a15UIB7Un-bOeISG3pFuAT0CnW7KOywKo.ttf", "700italic"=> "http://fonts.gstatic.com/s/anonymouspro/v13/rP2ap2a15UIB7Un-bOeISG3pHl4OTCzc6IG30KqB9Q.ttf", ], "category"=> "monospace", "kind"=> "webfonts#webfont" ], 47 => [ "family"=> "Antic", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/antic/v11/TuGfUVB8XY5DRaZLodgzydtk.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 48 => [ "family"=> "Antic Didone", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/anticdidone/v8/RWmPoKKX6u8sp8fIWdnDKqDiqYsGBGBzCw.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 49 => [ "family"=> "Antic Slab", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/anticslab/v8/bWt97fPFfRzkCa9Jlp6IWcJWXW5p5Qo.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 50 => [ "family"=> "Anton", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v11", "lastModified"=> "2019-07-17", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/anton/v11/1Ptgg87LROyAm0K08i4gS7lu.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 51 => [ "family"=> "Arapey", "variants"=> [ 0=> "regular", 1=> "italic", ], "subsets"=> [ 0=> "latin", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/arapey/v8/-W__XJn-UDDA2RC6Z9AcZkIzeg.ttf", "italic"=> "http://fonts.gstatic.com/s/arapey/v8/-W_9XJn-UDDA2RCKZdoYREcjeo0k.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 52 => [ "family"=> "Arbutus", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/arbutus/v9/NaPYcZ7dG_5J3poob9JtryO8fMU.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 53 => [ "family"=> "Arbutus Slab", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/arbutusslab/v8/oY1Z8e7OuLXkJGbXtr5ba7ZVa68dJlaFAQ.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 54 => [ "family"=> "Architects Daughter", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/architectsdaughter/v10/KtkxAKiDZI_td1Lkx62xHZHDtgO_Y-bvfY5q4szgE-Q.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 55 => [ "family"=> "Archivo", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "500", 3=> "500italic", 4=> "600", 5=> "600italic", 6=> "700", 7=> "700italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v6", "lastModified"=> "2019-07-26", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/archivo/v6/k3kQo8UDI-1M0wlSTd7iL0nAMaM.ttf", "italic"=> "http://fonts.gstatic.com/s/archivo/v6/k3kSo8UDI-1M0wlSfdzoK2vFIaOV8A.ttf", "500"=> "http://fonts.gstatic.com/s/archivo/v6/k3kVo8UDI-1M0wlSdSrLC0HrLaqM6Q4.ttf", "500italic"=> "http://fonts.gstatic.com/s/archivo/v6/k3kXo8UDI-1M0wlSfdzQ30LhKYiJ-Q7m8w.ttf", "600"=> "http://fonts.gstatic.com/s/archivo/v6/k3kVo8UDI-1M0wlSdQbMC0HrLaqM6Q4.ttf", "600italic"=> "http://fonts.gstatic.com/s/archivo/v6/k3kXo8UDI-1M0wlSfdzQ80XhKYiJ-Q7m8w.ttf", "700"=> "http://fonts.gstatic.com/s/archivo/v6/k3kVo8UDI-1M0wlSdWLNC0HrLaqM6Q4.ttf", "700italic"=> "http://fonts.gstatic.com/s/archivo/v6/k3kXo8UDI-1M0wlSfdzQl0ThKYiJ-Q7m8w.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 56 => [ "family"=> "Archivo Black", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v9", "lastModified"=> "2019-07-17", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/archivoblack/v9/HTxqL289NzCGg4MzN6KJ7eW6OYuP_x7yx3A.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 57 => [ "family"=> "Archivo Narrow", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "500", 3=> "500italic", 4=> "600", 5=> "600italic", 6=> "700", 7=> "700italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v11", "lastModified"=> "2019-07-26", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/archivonarrow/v11/tss0ApVBdCYD5Q7hcxTE1ArZ0Yb3g31S2s8p.ttf", "italic"=> "http://fonts.gstatic.com/s/archivonarrow/v11/tss2ApVBdCYD5Q7hcxTE1ArZ0bb1iXlw398pJxk.ttf", "500"=> "http://fonts.gstatic.com/s/archivonarrow/v11/tss3ApVBdCYD5Q7hcxTE1ArZ0b4Dqlla8dMgPgBu.ttf", "500italic"=> "http://fonts.gstatic.com/s/archivonarrow/v11/tssxApVBdCYD5Q7hcxTE1ArZ0bb1sY1Z-9cCOxBu_BM.ttf", "600"=> "http://fonts.gstatic.com/s/archivonarrow/v11/tss3ApVBdCYD5Q7hcxTE1ArZ0b4vrVla8dMgPgBu.ttf", "600italic"=> "http://fonts.gstatic.com/s/archivonarrow/v11/tssxApVBdCYD5Q7hcxTE1ArZ0bb1saFe-9cCOxBu_BM.ttf", "700"=> "http://fonts.gstatic.com/s/archivonarrow/v11/tss3ApVBdCYD5Q7hcxTE1ArZ0b5LrFla8dMgPgBu.ttf", "700italic"=> "http://fonts.gstatic.com/s/archivonarrow/v11/tssxApVBdCYD5Q7hcxTE1ArZ0bb1scVf-9cCOxBu_BM.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 58 => [ "family"=> "Aref Ruqaa", "variants"=> [ 0=> "regular", 1=> "700", ], "subsets"=> [ 0=> "arabic", 1=> "latin", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/arefruqaa/v8/WwkbxPW1E165rajQKDulEIAiVNo5xNY.ttf", "700"=> "http://fonts.gstatic.com/s/arefruqaa/v8/WwkYxPW1E165rajQKDulKDwNcNIS2N_7Bdk.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 59 => [ "family"=> "Arima Madurai", "variants"=> [ 0=> "100", 1=> "200", 2=> "300", 3=> "regular", 4=> "500", 5=> "700", 6=> "800", 7=> "900", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "tamil", 3=> "vietnamese", ], "version"=> "v5", "lastModified"=> "2019-07-16", "files"=> [ "100"=> "http://fonts.gstatic.com/s/arimamadurai/v5/t5t4IRoeKYORG0WNMgnC3seB1V3PqrGCch4Drg.ttf", "200"=> "http://fonts.gstatic.com/s/arimamadurai/v5/t5t7IRoeKYORG0WNMgnC3seB1fHuipusfhcat2c.ttf", "300"=> "http://fonts.gstatic.com/s/arimamadurai/v5/t5t7IRoeKYORG0WNMgnC3seB1ZXtipusfhcat2c.ttf", "regular"=> "http://fonts.gstatic.com/s/arimamadurai/v5/t5tmIRoeKYORG0WNMgnC3seB7TnFrpOHYh4.ttf", "500"=> "http://fonts.gstatic.com/s/arimamadurai/v5/t5t7IRoeKYORG0WNMgnC3seB1c3sipusfhcat2c.ttf", "700"=> "http://fonts.gstatic.com/s/arimamadurai/v5/t5t7IRoeKYORG0WNMgnC3seB1YXqipusfhcat2c.ttf", "800"=> "http://fonts.gstatic.com/s/arimamadurai/v5/t5t7IRoeKYORG0WNMgnC3seB1Znpipusfhcat2c.ttf", "900"=> "http://fonts.gstatic.com/s/arimamadurai/v5/t5t7IRoeKYORG0WNMgnC3seB1b3oipusfhcat2c.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 60 => [ "family"=> "Arimo", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "700", 3=> "700italic", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "greek", 3=> "greek-ext", 4=> "hebrew", 5=> "latin", 6=> "latin-ext", 7=> "vietnamese", ], "version"=> "v13", "lastModified"=> "2019-07-22", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/arimo/v13/P5sMzZCDf9_T_20eziBMjI-u.ttf", "italic"=> "http://fonts.gstatic.com/s/arimo/v13/P5sCzZCDf9_T_10cxCRuiZ-uydg.ttf", "700"=> "http://fonts.gstatic.com/s/arimo/v13/P5sBzZCDf9_T_1Wi4QREp5On0ME2.ttf", "700italic"=> "http://fonts.gstatic.com/s/arimo/v13/P5sHzZCDf9_T_10c_JhBrZeF1dE2PY4.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 61 => [ "family"=> "Arizonia", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/arizonia/v10/neIIzCemt4A5qa7mv6WGHK06UY30.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 62 => [ "family"=> "Armata", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/armata/v11/gokvH63_HV5jQ-E9lD53Q2u_mQ.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 63 => [ "family"=> "Arsenal", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "700", 3=> "700italic", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "latin", 3=> "latin-ext", 4=> "vietnamese", ], "version"=> "v4", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/arsenal/v4/wXKrE3kQtZQ4pF3D11_WAewrhXY.ttf", "italic"=> "http://fonts.gstatic.com/s/arsenal/v4/wXKpE3kQtZQ4pF3D513cBc4ulXYrtA.ttf", "700"=> "http://fonts.gstatic.com/s/arsenal/v4/wXKuE3kQtZQ4pF3D7-P5JeQAmX8yrdk.ttf", "700italic"=> "http://fonts.gstatic.com/s/arsenal/v4/wXKsE3kQtZQ4pF3D513kueEKnV03vdnKjw.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 64 => [ "family"=> "Artifika", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/artifika/v10/VEMyRoxzronptCuxu6Wt5jDtreOL.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 65 => [ "family"=> "Arvo", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "700", 3=> "700italic", ], "subsets"=> [ 0=> "latin", ], "version"=> "v13", "lastModified"=> "2019-07-26", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/arvo/v13/tDbD2oWUg0MKmSAa7Lzr7vs.ttf", "italic"=> "http://fonts.gstatic.com/s/arvo/v13/tDbN2oWUg0MKqSIQ6J7u_vvijQ.ttf", "700"=> "http://fonts.gstatic.com/s/arvo/v13/tDbM2oWUg0MKoZw1yLTA8vL7lAE.ttf", "700italic"=> "http://fonts.gstatic.com/s/arvo/v13/tDbO2oWUg0MKqSIoVLHK9tD-hAHkGg.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 66 => [ "family"=> "Arya", "variants"=> [ 0=> "regular", 1=> "700", ], "subsets"=> [ 0=> "devanagari", 1=> "latin", 2=> "latin-ext", ], "version"=> "v5", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/arya/v5/ga6CawNG-HJd9Ub1-beqdFE.ttf", "700"=> "http://fonts.gstatic.com/s/arya/v5/ga6NawNG-HJdzfra3b-BaFg3dRE.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 67 => [ "family"=> "Asap", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "500", 3=> "500italic", 4=> "600", 5=> "600italic", 6=> "700", 7=> "700italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v11", "lastModified"=> "2019-07-26", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/asap/v11/KFOoCniXp96a-zwU4UROGzY.ttf", "italic"=> "http://fonts.gstatic.com/s/asap/v11/KFOmCniXp96ayz4e5WZLCzYlKw.ttf", "500"=> "http://fonts.gstatic.com/s/asap/v11/KFOnCniXp96aw8g9xUxlBz88MsA.ttf", "500italic"=> "http://fonts.gstatic.com/s/asap/v11/KFOlCniXp96ayz4mEU9vAx05IsDqlA.ttf", "600"=> "http://fonts.gstatic.com/s/asap/v11/KFOnCniXp96aw-Q6xUxlBz88MsA.ttf", "600italic"=> "http://fonts.gstatic.com/s/asap/v11/KFOlCniXp96ayz4mPUhvAx05IsDqlA.ttf", "700"=> "http://fonts.gstatic.com/s/asap/v11/KFOnCniXp96aw4A7xUxlBz88MsA.ttf", "700italic"=> "http://fonts.gstatic.com/s/asap/v11/KFOlCniXp96ayz4mWUlvAx05IsDqlA.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 68 => [ "family"=> "Asap Condensed", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "500", 3=> "500italic", 4=> "600", 5=> "600italic", 6=> "700", 7=> "700italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v5", "lastModified"=> "2019-07-26", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/asapcondensed/v5/pxidypY1o9NHyXh3WvSbGSggdNeLYk1Mq3ap.ttf", "italic"=> "http://fonts.gstatic.com/s/asapcondensed/v5/pxifypY1o9NHyXh3WvSbGSggdOeJaElurmapvvM.ttf", "500"=> "http://fonts.gstatic.com/s/asapcondensed/v5/pxieypY1o9NHyXh3WvSbGSggdO9_S2lEgGqgp-pO.ttf", "500italic"=> "http://fonts.gstatic.com/s/asapcondensed/v5/pxiYypY1o9NHyXh3WvSbGSggdOeJUL1Him6CovpOkXA.ttf", "600"=> "http://fonts.gstatic.com/s/asapcondensed/v5/pxieypY1o9NHyXh3WvSbGSggdO9TTGlEgGqgp-pO.ttf", "600italic"=> "http://fonts.gstatic.com/s/asapcondensed/v5/pxiYypY1o9NHyXh3WvSbGSggdOeJUJFAim6CovpOkXA.ttf", "700"=> "http://fonts.gstatic.com/s/asapcondensed/v5/pxieypY1o9NHyXh3WvSbGSggdO83TWlEgGqgp-pO.ttf", "700italic"=> "http://fonts.gstatic.com/s/asapcondensed/v5/pxiYypY1o9NHyXh3WvSbGSggdOeJUPVBim6CovpOkXA.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 69 => [ "family"=> "Asar", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "devanagari", 1=> "latin", 2=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/asar/v7/sZlLdRyI6TBIXkYQDLlTW6E.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 70 => [ "family"=> "Asset", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/asset/v10/SLXGc1na-mM4cWImRJqExst1.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 71 => [ "family"=> "Assistant", "variants"=> [ 0=> "200", 1=> "300", 2=> "regular", 3=> "600", 4=> "700", 5=> "800", ], "subsets"=> [ 0=> "hebrew", 1=> "latin", ], "version"=> "v4", "lastModified"=> "2019-07-17", "files"=> [ "200"=> "http://fonts.gstatic.com/s/assistant/v4/2sDZZGJYnIjSi6H75xk7p0ScA5cZbCjItw.ttf", "300"=> "http://fonts.gstatic.com/s/assistant/v4/2sDZZGJYnIjSi6H75xk7w0ecA5cZbCjItw.ttf", "regular"=> "http://fonts.gstatic.com/s/assistant/v4/2sDcZGJYnIjSi6H75xkDb2-4C7wFZQ.ttf", "600"=> "http://fonts.gstatic.com/s/assistant/v4/2sDZZGJYnIjSi6H75xk7t0GcA5cZbCjItw.ttf", "700"=> "http://fonts.gstatic.com/s/assistant/v4/2sDZZGJYnIjSi6H75xk700CcA5cZbCjItw.ttf", "800"=> "http://fonts.gstatic.com/s/assistant/v4/2sDZZGJYnIjSi6H75xk7z0OcA5cZbCjItw.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 72 => [ "family"=> "Astloch", "variants"=> [ 0=> "regular", 1=> "700", ], "subsets"=> [ 0=> "latin", ], "version"=> "v11", "lastModified"=> "2019-07-26", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/astloch/v11/TuGRUVJ8QI5GSeUjq9wRzMtkH1Q.ttf", "700"=> "http://fonts.gstatic.com/s/astloch/v11/TuGUUVJ8QI5GSeUjk2A-6MNPA10xLMQ.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 73 => [ "family"=> "Asul", "variants"=> [ 0=> "regular", 1=> "700", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/asul/v9/VuJ-dNjKxYr46fMFXK78JIg.ttf", "700"=> "http://fonts.gstatic.com/s/asul/v9/VuJxdNjKxYr40U8qeKbXOIFneRo.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 74 => [ "family"=> "Athiti", "variants"=> [ 0=> "200", 1=> "300", 2=> "regular", 3=> "500", 4=> "600", 5=> "700", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "thai", 3=> "vietnamese", ], "version"=> "v4", "lastModified"=> "2019-07-16", "files"=> [ "200"=> "http://fonts.gstatic.com/s/athiti/v4/pe0sMISdLIZIv1wAxDNyAv2-C99ycg.ttf", "300"=> "http://fonts.gstatic.com/s/athiti/v4/pe0sMISdLIZIv1wAoDByAv2-C99ycg.ttf", "regular"=> "http://fonts.gstatic.com/s/athiti/v4/pe0vMISdLIZIv1w4DBhWCtaiAg.ttf", "500"=> "http://fonts.gstatic.com/s/athiti/v4/pe0sMISdLIZIv1wA-DFyAv2-C99ycg.ttf", "600"=> "http://fonts.gstatic.com/s/athiti/v4/pe0sMISdLIZIv1wA1DZyAv2-C99ycg.ttf", "700"=> "http://fonts.gstatic.com/s/athiti/v4/pe0sMISdLIZIv1wAsDdyAv2-C99ycg.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 75 => [ "family"=> "Atma", "variants"=> [ 0=> "300", 1=> "regular", 2=> "500", 3=> "600", 4=> "700", ], "subsets"=> [ 0=> "bengali", 1=> "latin", 2=> "latin-ext", ], "version"=> "v5", "lastModified"=> "2019-07-16", "files"=> [ "300"=> "http://fonts.gstatic.com/s/atma/v5/uK_z4rqWc-Eoo8JzKjc9PvedRkM.ttf", "regular"=> "http://fonts.gstatic.com/s/atma/v5/uK_84rqWc-Eom25bDj8WIv4.ttf", "500"=> "http://fonts.gstatic.com/s/atma/v5/uK_z4rqWc-Eoo5pyKjc9PvedRkM.ttf", "600"=> "http://fonts.gstatic.com/s/atma/v5/uK_z4rqWc-Eoo7Z1Kjc9PvedRkM.ttf", "700"=> "http://fonts.gstatic.com/s/atma/v5/uK_z4rqWc-Eoo9J0Kjc9PvedRkM.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 76 => [ "family"=> "Atomic Age", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v12", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/atomicage/v12/f0Xz0eug6sdmRFkYZZGL58Ht9a8GYeA.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 77 => [ "family"=> "Aubrey", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v12", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/aubrey/v12/q5uGsou7NPBw-p7vugNsCxVEgA.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 78 => [ "family"=> "Audiowide", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/audiowide/v8/l7gdbjpo0cum0ckerWCtkQXPExpQBw.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 79 => [ "family"=> "Autour One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/autourone/v9/UqyVK80cP25l3fJgbdfbk5lWVscxdKE.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 80 => [ "family"=> "Average", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/average/v8/fC1hPYBHe23MxA7rIeJwVWytTyk.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 81 => [ "family"=> "Average Sans", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/averagesans/v8/1Ptpg8fLXP2dlAXR-HlJJNJPBdqazVoK4A.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 82 => [ "family"=> "Averia Gruesa Libre", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/averiagruesalibre/v8/NGSov4nEGEktOaDRKsY-1dhh8eEtIx3ZUmmJw0SLRA8.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 83 => [ "family"=> "Averia Libre", "variants"=> [ 0=> "300", 1=> "300italic", 2=> "regular", 3=> "italic", 4=> "700", 5=> "700italic", ], "subsets"=> [ 0=> "latin", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "300"=> "http://fonts.gstatic.com/s/averialibre/v8/2V0FKIcMGZEnV6xygz7eNjEarovtb07t-pQgTw.ttf", "300italic"=> "http://fonts.gstatic.com/s/averialibre/v8/2V0HKIcMGZEnV6xygz7eNjESAJFhbUTp2JEwT4Sk.ttf", "regular"=> "http://fonts.gstatic.com/s/averialibre/v8/2V0aKIcMGZEnV6xygz7eNjEiAqPJZ2Xx8w.ttf", "italic"=> "http://fonts.gstatic.com/s/averialibre/v8/2V0EKIcMGZEnV6xygz7eNjESAKnNRWDh8405.ttf", "700"=> "http://fonts.gstatic.com/s/averialibre/v8/2V0FKIcMGZEnV6xygz7eNjEavoztb07t-pQgTw.ttf", "700italic"=> "http://fonts.gstatic.com/s/averialibre/v8/2V0HKIcMGZEnV6xygz7eNjESAJFxakTp2JEwT4Sk.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 84 => [ "family"=> "Averia Sans Libre", "variants"=> [ 0=> "300", 1=> "300italic", 2=> "regular", 3=> "italic", 4=> "700", 5=> "700italic", ], "subsets"=> [ 0=> "latin", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "300"=> "http://fonts.gstatic.com/s/averiasanslibre/v8/ga6SaxZG_G5OvCf_rt7FH3B6BHLMEd3lMKcQJZP1LmD9.ttf", "300italic"=> "http://fonts.gstatic.com/s/averiasanslibre/v8/ga6caxZG_G5OvCf_rt7FH3B6BHLMEdVLKisSL5fXK3D9qtg.ttf", "regular"=> "http://fonts.gstatic.com/s/averiasanslibre/v8/ga6XaxZG_G5OvCf_rt7FH3B6BHLMEeVJGIMYDo_8.ttf", "italic"=> "http://fonts.gstatic.com/s/averiasanslibre/v8/ga6RaxZG_G5OvCf_rt7FH3B6BHLMEdVLEoc6C5_8N3k.ttf", "700"=> "http://fonts.gstatic.com/s/averiasanslibre/v8/ga6SaxZG_G5OvCf_rt7FH3B6BHLMEd31N6cQJZP1LmD9.ttf", "700italic"=> "http://fonts.gstatic.com/s/averiasanslibre/v8/ga6caxZG_G5OvCf_rt7FH3B6BHLMEdVLKjsVL5fXK3D9qtg.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 85 => [ "family"=> "Averia Serif Libre", "variants"=> [ 0=> "300", 1=> "300italic", 2=> "regular", 3=> "italic", 4=> "700", 5=> "700italic", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "300"=> "http://fonts.gstatic.com/s/averiaseriflibre/v9/neIVzD2ms4wxr6GvjeD0X88SHPyX2xYGCSmqwacqdrKvbQ.ttf", "300italic"=> "http://fonts.gstatic.com/s/averiaseriflibre/v9/neIbzD2ms4wxr6GvjeD0X88SHPyX2xYOpzMmw60uVLe_bXHq.ttf", "regular"=> "http://fonts.gstatic.com/s/averiaseriflibre/v9/neIWzD2ms4wxr6GvjeD0X88SHPyX2xY-pQGOyYw2fw.ttf", "italic"=> "http://fonts.gstatic.com/s/averiaseriflibre/v9/neIUzD2ms4wxr6GvjeD0X88SHPyX2xYOpwuK64kmf6u2.ttf", "700"=> "http://fonts.gstatic.com/s/averiaseriflibre/v9/neIVzD2ms4wxr6GvjeD0X88SHPyX2xYGGS6qwacqdrKvbQ.ttf", "700italic"=> "http://fonts.gstatic.com/s/averiaseriflibre/v9/neIbzD2ms4wxr6GvjeD0X88SHPyX2xYOpzM2xK0uVLe_bXHq.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 86 => [ "family"=> "B612", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "700", 3=> "700italic", ], "subsets"=> [ 0=> "latin", ], "version"=> "v4", "lastModified"=> "2019-11-05", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/b612/v4/3JnySDDxiSz32jm4GDigUXw.ttf", "italic"=> "http://fonts.gstatic.com/s/b612/v4/3Jn8SDDxiSz36juyHBqlQXwdVw.ttf", "700"=> "http://fonts.gstatic.com/s/b612/v4/3Jn9SDDxiSz34oWXPDCLTXUETuE.ttf", "700italic"=> "http://fonts.gstatic.com/s/b612/v4/3Jn_SDDxiSz36juKoDWBSVcBXuFb0Q.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 87 => [ "family"=> "B612 Mono", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "700", 3=> "700italic", ], "subsets"=> [ 0=> "latin", ], "version"=> "v4", "lastModified"=> "2019-11-05", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/b612mono/v4/kmK_Zq85QVWbN1eW6lJl1wTcquRTtg.ttf", "italic"=> "http://fonts.gstatic.com/s/b612mono/v4/kmK5Zq85QVWbN1eW6lJV1Q7YiOFDtqtf.ttf", "700"=> "http://fonts.gstatic.com/s/b612mono/v4/kmK6Zq85QVWbN1eW6lJdayv4os9Pv7JGSg.ttf", "700italic"=> "http://fonts.gstatic.com/s/b612mono/v4/kmKkZq85QVWbN1eW6lJV1TZkp8VLnbdWSg4x.ttf", ], "category"=> "monospace", "kind"=> "webfonts#webfont" ], 88 => [ "family"=> "Bad Script", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "cyrillic", 1=> "latin", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/badscript/v8/6NUT8F6PJgbFWQn47_x7lOwuzd1AZtw.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 89 => [ "family"=> "Bahiana", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v4", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/bahiana/v4/uU9PCBUV4YenPWJU7xPb3vyHmlI.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 90 => [ "family"=> "Bahianita", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v2", "lastModified"=> "2019-11-05", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/bahianita/v2/yYLr0hTb3vuqqsBUgxWtxTvV2NJPcA.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 91 => [ "family"=> "Bai Jamjuree", "variants"=> [ 0=> "200", 1=> "200italic", 2=> "300", 3=> "300italic", 4=> "regular", 5=> "italic", 6=> "500", 7=> "500italic", 8=> "600", 9=> "600italic", 10=> "700", 11=> "700italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "thai", 3=> "vietnamese", ], "version"=> "v3", "lastModified"=> "2019-11-05", "files"=> [ "200"=> "http://fonts.gstatic.com/s/baijamjuree/v3/LDIqapSCOBt_aeQQ7ftydoa0kePuk5A1-yiSgA.ttf", "200italic"=> "http://fonts.gstatic.com/s/baijamjuree/v3/LDIoapSCOBt_aeQQ7ftydoa8W_oGkpox2S2CgOva.ttf", "300"=> "http://fonts.gstatic.com/s/baijamjuree/v3/LDIqapSCOBt_aeQQ7ftydoa09eDuk5A1-yiSgA.ttf", "300italic"=> "http://fonts.gstatic.com/s/baijamjuree/v3/LDIoapSCOBt_aeQQ7ftydoa8W_pikZox2S2CgOva.ttf", "regular"=> "http://fonts.gstatic.com/s/baijamjuree/v3/LDI1apSCOBt_aeQQ7ftydoaMWcjKm7sp8g.ttf", "italic"=> "http://fonts.gstatic.com/s/baijamjuree/v3/LDIrapSCOBt_aeQQ7ftydoa8W8LOub458jGL.ttf", "500"=> "http://fonts.gstatic.com/s/baijamjuree/v3/LDIqapSCOBt_aeQQ7ftydoa0reHuk5A1-yiSgA.ttf", "500italic"=> "http://fonts.gstatic.com/s/baijamjuree/v3/LDIoapSCOBt_aeQQ7ftydoa8W_o6kJox2S2CgOva.ttf", "600"=> "http://fonts.gstatic.com/s/baijamjuree/v3/LDIqapSCOBt_aeQQ7ftydoa0gebuk5A1-yiSgA.ttf", "600italic"=> "http://fonts.gstatic.com/s/baijamjuree/v3/LDIoapSCOBt_aeQQ7ftydoa8W_oWl5ox2S2CgOva.ttf", "700"=> "http://fonts.gstatic.com/s/baijamjuree/v3/LDIqapSCOBt_aeQQ7ftydoa05efuk5A1-yiSgA.ttf", "700italic"=> "http://fonts.gstatic.com/s/baijamjuree/v3/LDIoapSCOBt_aeQQ7ftydoa8W_pylpox2S2CgOva.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 92 => [ "family"=> "Baloo 2", "variants"=> [ 0=> "regular", 1=> "500", 2=> "600", 3=> "700", 4=> "800", ], "subsets"=> [ 0=> "devanagari", 1=> "latin", 2=> "latin-ext", 3=> "vietnamese", ], "version"=> "v1", "lastModified"=> "2020-03-06", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/baloo2/v1/wXKrE3kTposypRyd11_WAewrhXY.ttf", "500"=> "http://fonts.gstatic.com/s/baloo2/v1/wXKuE3kTposypRyd76v_JeQAmX8yrdk.ttf", "600"=> "http://fonts.gstatic.com/s/baloo2/v1/wXKuE3kTposypRyd74f4JeQAmX8yrdk.ttf", "700"=> "http://fonts.gstatic.com/s/baloo2/v1/wXKuE3kTposypRyd7-P5JeQAmX8yrdk.ttf", "800"=> "http://fonts.gstatic.com/s/baloo2/v1/wXKuE3kTposypRyd7__6JeQAmX8yrdk.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 93 => [ "family"=> "Baloo Bhai 2", "variants"=> [ 0=> "regular", 1=> "500", 2=> "600", 3=> "700", 4=> "800", ], "subsets"=> [ 0=> "gujarati", 1=> "latin", 2=> "latin-ext", 3=> "vietnamese", ], "version"=> "v1", "lastModified"=> "2020-03-06", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/baloobhai2/v1/sZlDdRSL-z1VEWZ4YNA7Y5I3cdTmiH1gFQ.ttf", "500"=> "http://fonts.gstatic.com/s/baloobhai2/v1/sZlcdRSL-z1VEWZ4YNA7Y5IPhf3CgFZ8HNV3Nw.ttf", "600"=> "http://fonts.gstatic.com/s/baloobhai2/v1/sZlcdRSL-z1VEWZ4YNA7Y5IPqfrCgFZ8HNV3Nw.ttf", "700"=> "http://fonts.gstatic.com/s/baloobhai2/v1/sZlcdRSL-z1VEWZ4YNA7Y5IPzfvCgFZ8HNV3Nw.ttf", "800"=> "http://fonts.gstatic.com/s/baloobhai2/v1/sZlcdRSL-z1VEWZ4YNA7Y5IP0fjCgFZ8HNV3Nw.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 94 => [ "family"=> "Baloo Bhaina 2", "variants"=> [ 0=> "regular", 1=> "500", 2=> "600", 3=> "700", 4=> "800", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "oriya", 3=> "vietnamese", ], "version"=> "v1", "lastModified"=> "2020-03-06", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/baloobhaina2/v1/qWczB6yyq4P9Adr3RtoX1q6yShz7mDUoupoI.ttf", "500"=> "http://fonts.gstatic.com/s/baloobhaina2/v1/qWcwB6yyq4P9Adr3RtoX1q6ySiQPsREgkYYBX_3F.ttf", "600"=> "http://fonts.gstatic.com/s/baloobhaina2/v1/qWcwB6yyq4P9Adr3RtoX1q6ySiQjthEgkYYBX_3F.ttf", "700"=> "http://fonts.gstatic.com/s/baloobhaina2/v1/qWcwB6yyq4P9Adr3RtoX1q6ySiRHtxEgkYYBX_3F.ttf", "800"=> "http://fonts.gstatic.com/s/baloobhaina2/v1/qWcwB6yyq4P9Adr3RtoX1q6ySiRbtBEgkYYBX_3F.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 95 => [ "family"=> "Baloo Chettan 2", "variants"=> [ 0=> "regular", 1=> "500", 2=> "600", 3=> "700", 4=> "800", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "malayalam", 3=> "vietnamese", ], "version"=> "v1", "lastModified"=> "2020-03-06", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/baloochettan2/v1/vm8udRbmXEva26PK-NtuX4ynWEzf4P17OpYDlg.ttf", "500"=> "http://fonts.gstatic.com/s/baloochettan2/v1/vm8rdRbmXEva26PK-NtuX4ynWEznFNRfMr0fn5bhCA.ttf", "600"=> "http://fonts.gstatic.com/s/baloochettan2/v1/vm8rdRbmXEva26PK-NtuX4ynWEznONNfMr0fn5bhCA.ttf", "700"=> "http://fonts.gstatic.com/s/baloochettan2/v1/vm8rdRbmXEva26PK-NtuX4ynWEznXNJfMr0fn5bhCA.ttf", "800"=> "http://fonts.gstatic.com/s/baloochettan2/v1/vm8rdRbmXEva26PK-NtuX4ynWEznQNFfMr0fn5bhCA.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 96 => [ "family"=> "Baloo Da 2", "variants"=> [ 0=> "regular", 1=> "500", 2=> "600", 3=> "700", 4=> "800", ], "subsets"=> [ 0=> "bengali", 1=> "latin", 2=> "latin-ext", 3=> "vietnamese", ], "version"=> "v1", "lastModified"=> "2020-03-06", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/balooda2/v1/2-ci9J9j0IaUMQZwAJyJcu7XoZFDf2Q.ttf", "500"=> "http://fonts.gstatic.com/s/balooda2/v1/2-ch9J9j0IaUMQZwAJyJShr-hZloY23zejE.ttf", "600"=> "http://fonts.gstatic.com/s/balooda2/v1/2-ch9J9j0IaUMQZwAJyJSjb5hZloY23zejE.ttf", "700"=> "http://fonts.gstatic.com/s/balooda2/v1/2-ch9J9j0IaUMQZwAJyJSlL4hZloY23zejE.ttf", "800"=> "http://fonts.gstatic.com/s/balooda2/v1/2-ch9J9j0IaUMQZwAJyJSk77hZloY23zejE.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 97 => [ "family"=> "Baloo Paaji 2", "variants"=> [ 0=> "regular", 1=> "500", 2=> "600", 3=> "700", 4=> "800", ], "subsets"=> [ 0=> "gurmukhi", 1=> "latin", 2=> "latin-ext", 3=> "vietnamese", ], "version"=> "v1", "lastModified"=> "2020-03-06", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/baloopaaji2/v1/i7dMIFFzbz-QHZUdV9_UGWZuYFKQHwyVd3U.ttf", "500"=> "http://fonts.gstatic.com/s/baloopaaji2/v1/i7dRIFFzbz-QHZUdV9_UGWZuWKa5OwS-a3yGe9E.ttf", "600"=> "http://fonts.gstatic.com/s/baloopaaji2/v1/i7dRIFFzbz-QHZUdV9_UGWZuWIq-OwS-a3yGe9E.ttf", "700"=> "http://fonts.gstatic.com/s/baloopaaji2/v1/i7dRIFFzbz-QHZUdV9_UGWZuWO6_OwS-a3yGe9E.ttf", "800"=> "http://fonts.gstatic.com/s/baloopaaji2/v1/i7dRIFFzbz-QHZUdV9_UGWZuWPK8OwS-a3yGe9E.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 98 => [ "family"=> "Baloo Tamma 2", "variants"=> [ 0=> "regular", 1=> "500", 2=> "600", 3=> "700", 4=> "800", ], "subsets"=> [ 0=> "kannada", 1=> "latin", 2=> "latin-ext", 3=> "vietnamese", ], "version"=> "v1", "lastModified"=> "2020-03-06", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/balootamma2/v1/vEFX2_hCAgcR46PaajtrYlBbT0g21tqeR7c.ttf", "500"=> "http://fonts.gstatic.com/s/balootamma2/v1/vEFK2_hCAgcR46PaajtrYlBbd7wf8tK1W77HtMo.ttf", "600"=> "http://fonts.gstatic.com/s/balootamma2/v1/vEFK2_hCAgcR46PaajtrYlBbd5AY8tK1W77HtMo.ttf", "700"=> "http://fonts.gstatic.com/s/balootamma2/v1/vEFK2_hCAgcR46PaajtrYlBbd_QZ8tK1W77HtMo.ttf", "800"=> "http://fonts.gstatic.com/s/balootamma2/v1/vEFK2_hCAgcR46PaajtrYlBbd-ga8tK1W77HtMo.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 99 => [ "family"=> "Baloo Tammudu 2", "variants"=> [ 0=> "regular", 1=> "500", 2=> "600", 3=> "700", 4=> "800", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "telugu", 3=> "vietnamese", ], "version"=> "v1", "lastModified"=> "2020-03-06", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/balootammudu2/v1/1Pt2g8TIS_SAmkLguUdFP8UaJcK-xXEW6aGXHw.ttf", "500"=> "http://fonts.gstatic.com/s/balootammudu2/v1/1Ptzg8TIS_SAmkLguUdFP8UaJcKGMVgy4YqLFrUnJA.ttf", "600"=> "http://fonts.gstatic.com/s/balootammudu2/v1/1Ptzg8TIS_SAmkLguUdFP8UaJcKGHV8y4YqLFrUnJA.ttf", "700"=> "http://fonts.gstatic.com/s/balootammudu2/v1/1Ptzg8TIS_SAmkLguUdFP8UaJcKGeV4y4YqLFrUnJA.ttf", "800"=> "http://fonts.gstatic.com/s/balootammudu2/v1/1Ptzg8TIS_SAmkLguUdFP8UaJcKGZV0y4YqLFrUnJA.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 100 => [ "family"=> "Baloo Thambi 2", "variants"=> [ 0=> "regular", 1=> "500", 2=> "600", 3=> "700", 4=> "800", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "tamil", 3=> "vietnamese", ], "version"=> "v1", "lastModified"=> "2020-03-06", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/baloothambi2/v1/cY9cfjeOW0NHpmOQXranrbDyu4hHBJOxZQPp.ttf", "500"=> "http://fonts.gstatic.com/s/baloothambi2/v1/cY9ffjeOW0NHpmOQXranrbDyu7CzLbe5Th_gRA7L.ttf", "600"=> "http://fonts.gstatic.com/s/baloothambi2/v1/cY9ffjeOW0NHpmOQXranrbDyu7CfKre5Th_gRA7L.ttf", "700"=> "http://fonts.gstatic.com/s/baloothambi2/v1/cY9ffjeOW0NHpmOQXranrbDyu7D7K7e5Th_gRA7L.ttf", "800"=> "http://fonts.gstatic.com/s/baloothambi2/v1/cY9ffjeOW0NHpmOQXranrbDyu7DnKLe5Th_gRA7L.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 101 => [ "family"=> "Balsamiq Sans", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "700", 3=> "700italic", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "latin", 3=> "latin-ext", ], "version"=> "v1", "lastModified"=> "2020-05-06", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/balsamiqsans/v1/P5sEzZiAbNrN8SB3lQQX7Pnc8dkdIYdNHzs.ttf", "italic"=> "http://fonts.gstatic.com/s/balsamiqsans/v1/P5sazZiAbNrN8SB3lQQX7PncwdsXJaVIDzvcXA.ttf", "700"=> "http://fonts.gstatic.com/s/balsamiqsans/v1/P5sZzZiAbNrN8SB3lQQX7PncyWUyBY9mAzLFRQI.ttf", "700italic"=> "http://fonts.gstatic.com/s/balsamiqsans/v1/P5sfzZiAbNrN8SB3lQQX7PncwdsvmYpsBxDAVQI4aA.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 102 => [ "family"=> "Balthazar", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/balthazar/v9/d6lKkaajS8Gm4CVQjFEvyRTo39l8hw.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 103 => [ "family"=> "Bangers", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v12", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/bangers/v12/FeVQS0BTqb0h60ACL5la2bxii28.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 104 => [ "family"=> "Barlow", "variants"=> [ 0=> "100", 1=> "100italic", 2=> "200", 3=> "200italic", 4=> "300", 5=> "300italic", 6=> "regular", 7=> "italic", 8=> "500", 9=> "500italic", 10=> "600", 11=> "600italic", 12=> "700", 13=> "700italic", 14=> "800", 15=> "800italic", 16=> "900", 17=> "900italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v4", "lastModified"=> "2019-07-17", "files"=> [ "100"=> "http://fonts.gstatic.com/s/barlow/v4/7cHrv4kjgoGqM7E3b8s8yn4hnCci.ttf", "100italic"=> "http://fonts.gstatic.com/s/barlow/v4/7cHtv4kjgoGqM7E_CfNYwHoDmTcibrA.ttf", "200"=> "http://fonts.gstatic.com/s/barlow/v4/7cHqv4kjgoGqM7E3w-oc4FAtlT47dw.ttf", "200italic"=> "http://fonts.gstatic.com/s/barlow/v4/7cHsv4kjgoGqM7E_CfP04Voptzsrd6m9.ttf", "300"=> "http://fonts.gstatic.com/s/barlow/v4/7cHqv4kjgoGqM7E3p-kc4FAtlT47dw.ttf", "300italic"=> "http://fonts.gstatic.com/s/barlow/v4/7cHsv4kjgoGqM7E_CfOQ4loptzsrd6m9.ttf", "regular"=> "http://fonts.gstatic.com/s/barlow/v4/7cHpv4kjgoGqM7EPC8E46HsxnA.ttf", "italic"=> "http://fonts.gstatic.com/s/barlow/v4/7cHrv4kjgoGqM7E_Ccs8yn4hnCci.ttf", "500"=> "http://fonts.gstatic.com/s/barlow/v4/7cHqv4kjgoGqM7E3_-gc4FAtlT47dw.ttf", "500italic"=> "http://fonts.gstatic.com/s/barlow/v4/7cHsv4kjgoGqM7E_CfPI41optzsrd6m9.ttf", "600"=> "http://fonts.gstatic.com/s/barlow/v4/7cHqv4kjgoGqM7E30-8c4FAtlT47dw.ttf", "600italic"=> "http://fonts.gstatic.com/s/barlow/v4/7cHsv4kjgoGqM7E_CfPk5Foptzsrd6m9.ttf", "700"=> "http://fonts.gstatic.com/s/barlow/v4/7cHqv4kjgoGqM7E3t-4c4FAtlT47dw.ttf", "700italic"=> "http://fonts.gstatic.com/s/barlow/v4/7cHsv4kjgoGqM7E_CfOA5Voptzsrd6m9.ttf", "800"=> "http://fonts.gstatic.com/s/barlow/v4/7cHqv4kjgoGqM7E3q-0c4FAtlT47dw.ttf", "800italic"=> "http://fonts.gstatic.com/s/barlow/v4/7cHsv4kjgoGqM7E_CfOc5loptzsrd6m9.ttf", "900"=> "http://fonts.gstatic.com/s/barlow/v4/7cHqv4kjgoGqM7E3j-wc4FAtlT47dw.ttf", "900italic"=> "http://fonts.gstatic.com/s/barlow/v4/7cHsv4kjgoGqM7E_CfO451optzsrd6m9.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 105 => [ "family"=> "Barlow Condensed", "variants"=> [ 0=> "100", 1=> "100italic", 2=> "200", 3=> "200italic", 4=> "300", 5=> "300italic", 6=> "regular", 7=> "italic", 8=> "500", 9=> "500italic", 10=> "600", 11=> "600italic", 12=> "700", 13=> "700italic", 14=> "800", 15=> "800italic", 16=> "900", 17=> "900italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v4", "lastModified"=> "2019-07-17", "files"=> [ "100"=> "http://fonts.gstatic.com/s/barlowcondensed/v4/HTxxL3I-JCGChYJ8VI-L6OO_au7B43LT31vytKgbaw.ttf", "100italic"=> "http://fonts.gstatic.com/s/barlowcondensed/v4/HTxzL3I-JCGChYJ8VI-L6OO_au7B6xTru1H2lq0La6JN.ttf", "200"=> "http://fonts.gstatic.com/s/barlowcondensed/v4/HTxwL3I-JCGChYJ8VI-L6OO_au7B497y_3HcuKECcrs.ttf", "200italic"=> "http://fonts.gstatic.com/s/barlowcondensed/v4/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrF3DWvIMHYrtUxg.ttf", "300"=> "http://fonts.gstatic.com/s/barlowcondensed/v4/HTxwL3I-JCGChYJ8VI-L6OO_au7B47rx_3HcuKECcrs.ttf", "300italic"=> "http://fonts.gstatic.com/s/barlowcondensed/v4/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrc3PWvIMHYrtUxg.ttf", "regular"=> "http://fonts.gstatic.com/s/barlowcondensed/v4/HTx3L3I-JCGChYJ8VI-L6OO_au7B2xbZ23n3pKg.ttf", "italic"=> "http://fonts.gstatic.com/s/barlowcondensed/v4/HTxxL3I-JCGChYJ8VI-L6OO_au7B6xTT31vytKgbaw.ttf", "500"=> "http://fonts.gstatic.com/s/barlowcondensed/v4/HTxwL3I-JCGChYJ8VI-L6OO_au7B4-Lw_3HcuKECcrs.ttf", "500italic"=> "http://fonts.gstatic.com/s/barlowcondensed/v4/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrK3LWvIMHYrtUxg.ttf", "600"=> "http://fonts.gstatic.com/s/barlowcondensed/v4/HTxwL3I-JCGChYJ8VI-L6OO_au7B4873_3HcuKECcrs.ttf", "600italic"=> "http://fonts.gstatic.com/s/barlowcondensed/v4/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrB3XWvIMHYrtUxg.ttf", "700"=> "http://fonts.gstatic.com/s/barlowcondensed/v4/HTxwL3I-JCGChYJ8VI-L6OO_au7B46r2_3HcuKECcrs.ttf", "700italic"=> "http://fonts.gstatic.com/s/barlowcondensed/v4/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrY3TWvIMHYrtUxg.ttf", "800"=> "http://fonts.gstatic.com/s/barlowcondensed/v4/HTxwL3I-JCGChYJ8VI-L6OO_au7B47b1_3HcuKECcrs.ttf", "800italic"=> "http://fonts.gstatic.com/s/barlowcondensed/v4/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrf3fWvIMHYrtUxg.ttf", "900"=> "http://fonts.gstatic.com/s/barlowcondensed/v4/HTxwL3I-JCGChYJ8VI-L6OO_au7B45L0_3HcuKECcrs.ttf", "900italic"=> "http://fonts.gstatic.com/s/barlowcondensed/v4/HTxyL3I-JCGChYJ8VI-L6OO_au7B6xTrW3bWvIMHYrtUxg.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 106 => [ "family"=> "Barlow Semi Condensed", "variants"=> [ 0=> "100", 1=> "100italic", 2=> "200", 3=> "200italic", 4=> "300", 5=> "300italic", 6=> "regular", 7=> "italic", 8=> "500", 9=> "500italic", 10=> "600", 11=> "600italic", 12=> "700", 13=> "700italic", 14=> "800", 15=> "800italic", 16=> "900", 17=> "900italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v5", "lastModified"=> "2019-07-17", "files"=> [ "100"=> "http://fonts.gstatic.com/s/barlowsemicondensed/v5/wlphgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfG4qvKk8ogoSP.ttf", "100italic"=> "http://fonts.gstatic.com/s/barlowsemicondensed/v5/wlpjgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbLLIEsKh5SPZWs.ttf", "200"=> "http://fonts.gstatic.com/s/barlowsemicondensed/v5/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRft6uPAGEki52WfA.ttf", "200italic"=> "http://fonts.gstatic.com/s/barlowsemicondensed/v5/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbJnAWsgqZiGfHK5.ttf", "300"=> "http://fonts.gstatic.com/s/barlowsemicondensed/v5/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf06iPAGEki52WfA.ttf", "300italic"=> "http://fonts.gstatic.com/s/barlowsemicondensed/v5/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbIDAmsgqZiGfHK5.ttf", "regular"=> "http://fonts.gstatic.com/s/barlowsemicondensed/v5/wlpvgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRnf4CrCEo4gg.ttf", "italic"=> "http://fonts.gstatic.com/s/barlowsemicondensed/v5/wlphgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfYqvKk8ogoSP.ttf", "500"=> "http://fonts.gstatic.com/s/barlowsemicondensed/v5/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfi6mPAGEki52WfA.ttf", "500italic"=> "http://fonts.gstatic.com/s/barlowsemicondensed/v5/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbJbA2sgqZiGfHK5.ttf", "600"=> "http://fonts.gstatic.com/s/barlowsemicondensed/v5/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfp66PAGEki52WfA.ttf", "600italic"=> "http://fonts.gstatic.com/s/barlowsemicondensed/v5/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbJ3BGsgqZiGfHK5.ttf", "700"=> "http://fonts.gstatic.com/s/barlowsemicondensed/v5/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRfw6-PAGEki52WfA.ttf", "700italic"=> "http://fonts.gstatic.com/s/barlowsemicondensed/v5/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbITBWsgqZiGfHK5.ttf", "800"=> "http://fonts.gstatic.com/s/barlowsemicondensed/v5/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf36yPAGEki52WfA.ttf", "800italic"=> "http://fonts.gstatic.com/s/barlowsemicondensed/v5/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbIPBmsgqZiGfHK5.ttf", "900"=> "http://fonts.gstatic.com/s/barlowsemicondensed/v5/wlpigxjLBV1hqnzfr-F8sEYMB0Yybp0mudRf-62PAGEki52WfA.ttf", "900italic"=> "http://fonts.gstatic.com/s/barlowsemicondensed/v5/wlpkgxjLBV1hqnzfr-F8sEYMB0Yybp0mudRXfbIrB2sgqZiGfHK5.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 107 => [ "family"=> "Barriecito", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v2", "lastModified"=> "2019-11-05", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/barriecito/v2/WWXXlj-CbBOSLY2QTuY_KdUiYwTO0MU.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 108 => [ "family"=> "Barrio", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v4", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/barrio/v4/wEO8EBXBk8hBIDiEdQYhWdsX1Q.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 109 => [ "family"=> "Basic", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/basic/v9/xfu_0WLxV2_XKQN34lDVyR7D.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 110 => [ "family"=> "Baskervville", "variants"=> [ 0=> "regular", 1=> "italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v1", "lastModified"=> "2020-03-03", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/baskervville/v1/YA9Ur0yU4l_XOrogbkun3kQgt5OohvbJ9A.ttf", "italic"=> "http://fonts.gstatic.com/s/baskervville/v1/YA9Kr0yU4l_XOrogbkun3kQQtZmspPPZ9Mlt.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 111 => [ "family"=> "Battambang", "variants"=> [ 0=> "regular", 1=> "700", ], "subsets"=> [ 0=> "khmer", ], "version"=> "v13", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/battambang/v13/uk-mEGe7raEw-HjkzZabDnWj4yxx7o8.ttf", "700"=> "http://fonts.gstatic.com/s/battambang/v13/uk-lEGe7raEw-HjkzZabNsmMxyRa8oZK9I0.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 112 => [ "family"=> "Baumans", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/baumans/v9/-W_-XJj9QyTd3QfpR_oyaksqY5Q.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 113 => [ "family"=> "Bayon", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "khmer", ], "version"=> "v13", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/bayon/v13/9XUrlJNmn0LPFl-pOhYEd2NJ.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 114 => [ "family"=> "Be Vietnam", "variants"=> [ 0=> "100", 1=> "100italic", 2=> "300", 3=> "300italic", 4=> "regular", 5=> "italic", 6=> "500", 7=> "500italic", 8=> "600", 9=> "600italic", 10=> "700", 11=> "700italic", 12=> "800", 13=> "800italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v1", "lastModified"=> "2020-03-03", "files"=> [ "100"=> "http://fonts.gstatic.com/s/bevietnam/v1/FBVxdDflz-iPfoPuIC2iKsUn7W1hK2czPg.ttf", "100italic"=> "http://fonts.gstatic.com/s/bevietnam/v1/FBVvdDflz-iPfoPuIC2iIqMfiWdlCWIjPi5p.ttf", "300"=> "http://fonts.gstatic.com/s/bevietnam/v1/FBVwdDflz-iPfoPuIC2iKg0FzUdPJ24qJzc.ttf", "300italic"=> "http://fonts.gstatic.com/s/bevietnam/v1/FBVudDflz-iPfoPuIC2iIqMfQUVFI0wvNzdwXQ.ttf", "regular"=> "http://fonts.gstatic.com/s/bevietnam/v1/FBVzdDflz-iPfoPuIC2iEqEt6U9kO2c.ttf", "italic"=> "http://fonts.gstatic.com/s/bevietnam/v1/FBVxdDflz-iPfoPuIC2iIqMn7W1hK2czPg.ttf", "500"=> "http://fonts.gstatic.com/s/bevietnam/v1/FBVwdDflz-iPfoPuIC2iKlUEzUdPJ24qJzc.ttf", "500italic"=> "http://fonts.gstatic.com/s/bevietnam/v1/FBVudDflz-iPfoPuIC2iIqMfGURFI0wvNzdwXQ.ttf", "600"=> "http://fonts.gstatic.com/s/bevietnam/v1/FBVwdDflz-iPfoPuIC2iKnkDzUdPJ24qJzc.ttf", "600italic"=> "http://fonts.gstatic.com/s/bevietnam/v1/FBVudDflz-iPfoPuIC2iIqMfNUNFI0wvNzdwXQ.ttf", "700"=> "http://fonts.gstatic.com/s/bevietnam/v1/FBVwdDflz-iPfoPuIC2iKh0CzUdPJ24qJzc.ttf", "700italic"=> "http://fonts.gstatic.com/s/bevietnam/v1/FBVudDflz-iPfoPuIC2iIqMfUUJFI0wvNzdwXQ.ttf", "800"=> "http://fonts.gstatic.com/s/bevietnam/v1/FBVwdDflz-iPfoPuIC2iKgEBzUdPJ24qJzc.ttf", "800italic"=> "http://fonts.gstatic.com/s/bevietnam/v1/FBVudDflz-iPfoPuIC2iIqMfTUFFI0wvNzdwXQ.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 115 => [ "family"=> "Bebas Neue", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v1", "lastModified"=> "2020-03-03", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/bebasneue/v1/JTUSjIg69CK48gW7PXooxW5rygbi49c.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 116 => [ "family"=> "Belgrano", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/belgrano/v10/55xvey5tM9rwKWrJZcMFirl08KDJ.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 117 => [ "family"=> "Bellefair", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "hebrew", 1=> "latin", 2=> "latin-ext", ], "version"=> "v5", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/bellefair/v5/kJExBuYY6AAuhiXUxG19__A2pOdvDA.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 118 => [ "family"=> "Belleza", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/belleza/v8/0nkoC9_pNeMfhX4BtcbyawzruP8.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 119 => [ "family"=> "Bellota", "variants"=> [ 0=> "300", 1=> "300italic", 2=> "regular", 3=> "italic", 4=> "700", 5=> "700italic", ], "subsets"=> [ 0=> "cyrillic", 1=> "latin", 2=> "latin-ext", 3=> "vietnamese", ], "version"=> "v1", "lastModified"=> "2020-04-21", "files"=> [ "300"=> "http://fonts.gstatic.com/s/bellota/v1/MwQzbhXl3_qEpiwAID55kGMViblPtXs.ttf", "300italic"=> "http://fonts.gstatic.com/s/bellota/v1/MwQxbhXl3_qEpiwAKJBjHGEfjZtKpXulTQ.ttf", "regular"=> "http://fonts.gstatic.com/s/bellota/v1/MwQ2bhXl3_qEpiwAGJJRtGs-lbA.ttf", "italic"=> "http://fonts.gstatic.com/s/bellota/v1/MwQ0bhXl3_qEpiwAKJBbsEk7hbBWrA.ttf", "700"=> "http://fonts.gstatic.com/s/bellota/v1/MwQzbhXl3_qEpiwAIC5-kGMViblPtXs.ttf", "700italic"=> "http://fonts.gstatic.com/s/bellota/v1/MwQxbhXl3_qEpiwAKJBjDGYfjZtKpXulTQ.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 120 => [ "family"=> "Bellota Text", "variants"=> [ 0=> "300", 1=> "300italic", 2=> "regular", 3=> "italic", 4=> "700", 5=> "700italic", ], "subsets"=> [ 0=> "cyrillic", 1=> "latin", 2=> "latin-ext", 3=> "vietnamese", ], "version"=> "v1", "lastModified"=> "2020-04-21", "files"=> [ "300"=> "http://fonts.gstatic.com/s/bellotatext/v1/0FlMVP2VnlWS4f3-UE9hHXM5VfsqfQXwQy6yxg.ttf", "300italic"=> "http://fonts.gstatic.com/s/bellotatext/v1/0FlOVP2VnlWS4f3-UE9hHXMx--Gmfw_0YSuixmYK.ttf", "regular"=> "http://fonts.gstatic.com/s/bellotatext/v1/0FlTVP2VnlWS4f3-UE9hHXMB-dMOdS7sSg.ttf", "italic"=> "http://fonts.gstatic.com/s/bellotatext/v1/0FlNVP2VnlWS4f3-UE9hHXMx-9kKVyv8Sjer.ttf", "700"=> "http://fonts.gstatic.com/s/bellotatext/v1/0FlMVP2VnlWS4f3-UE9hHXM5RfwqfQXwQy6yxg.ttf", "700italic"=> "http://fonts.gstatic.com/s/bellotatext/v1/0FlOVP2VnlWS4f3-UE9hHXMx--G2eA_0YSuixmYK.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 121 => [ "family"=> "BenchNine", "variants"=> [ 0=> "300", 1=> "regular", 2=> "700", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "300"=> "http://fonts.gstatic.com/s/benchnine/v8/ahcev8612zF4jxrwMosT--tRhWa8q0v8ag.ttf", "regular"=> "http://fonts.gstatic.com/s/benchnine/v8/ahcbv8612zF4jxrwMosrV8N1jU2gog.ttf", "700"=> "http://fonts.gstatic.com/s/benchnine/v8/ahcev8612zF4jxrwMosT6-xRhWa8q0v8ag.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 122 => [ "family"=> "Bentham", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/bentham/v10/VdGeAZQPEpYfmHglKWw7CJaK_y4.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 123 => [ "family"=> "Berkshire Swash", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/berkshireswash/v8/ptRRTi-cavZOGqCvnNJDl5m5XmNPrcQybX4pQA.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 124 => [ "family"=> "Beth Ellen", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v1", "lastModified"=> "2019-11-05", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/bethellen/v1/WwkbxPW2BE-3rb_JNT-qEIAiVNo5xNY.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 125 => [ "family"=> "Bevan", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/bevan/v11/4iCj6KZ0a9NXjF8aUir7tlSJ.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 126 => [ "family"=> "Big Shoulders Display", "variants"=> [ 0=> "100", 1=> "300", 2=> "regular", 3=> "500", 4=> "600", 5=> "700", 6=> "800", 7=> "900", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v1", "lastModified"=> "2020-03-03", "files"=> [ "100"=> "http://fonts.gstatic.com/s/bigshouldersdisplay/v1/fC1xPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx1Ur9DrDJYM2lAZ.ttf", "300"=> "http://fonts.gstatic.com/s/bigshouldersdisplay/v1/fC1yPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx1UZ_LLJrgA00kAdA.ttf", "regular"=> "http://fonts.gstatic.com/s/bigshouldersdisplay/v1/fC1_PZJEZG-e9gHhdI4-NBbfd2ys3SjJCx1sy9rvLpMc2g.ttf", "500"=> "http://fonts.gstatic.com/s/bigshouldersdisplay/v1/fC1yPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx1UP_PLJrgA00kAdA.ttf", "600"=> "http://fonts.gstatic.com/s/bigshouldersdisplay/v1/fC1yPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx1UE_TLJrgA00kAdA.ttf", "700"=> "http://fonts.gstatic.com/s/bigshouldersdisplay/v1/fC1yPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx1Ud_XLJrgA00kAdA.ttf", "800"=> "http://fonts.gstatic.com/s/bigshouldersdisplay/v1/fC1yPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx1Ua_bLJrgA00kAdA.ttf", "900"=> "http://fonts.gstatic.com/s/bigshouldersdisplay/v1/fC1yPZJEZG-e9gHhdI4-NBbfd2ys3SjJCx1UT_fLJrgA00kAdA.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 127 => [ "family"=> "Big Shoulders Text", "variants"=> [ 0=> "100", 1=> "300", 2=> "regular", 3=> "500", 4=> "600", 5=> "700", 6=> "800", 7=> "900", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v1", "lastModified"=> "2020-03-03", "files"=> [ "100"=> "http://fonts.gstatic.com/s/bigshoulderstext/v1/55xzezRtP9G3CGPIf49hxc8P0eytUxBU-IZ_YscCdXQB.ttf", "300"=> "http://fonts.gstatic.com/s/bigshoulderstext/v1/55xyezRtP9G3CGPIf49hxc8P0eytUxBUMKRfSOkOfG0Y3A.ttf", "regular"=> "http://fonts.gstatic.com/s/bigshoulderstext/v1/55xxezRtP9G3CGPIf49hxc8P0eytUxBsnIx7QMISdQ.ttf", "500"=> "http://fonts.gstatic.com/s/bigshoulderstext/v1/55xyezRtP9G3CGPIf49hxc8P0eytUxBUaKVfSOkOfG0Y3A.ttf", "600"=> "http://fonts.gstatic.com/s/bigshoulderstext/v1/55xyezRtP9G3CGPIf49hxc8P0eytUxBURKJfSOkOfG0Y3A.ttf", "700"=> "http://fonts.gstatic.com/s/bigshoulderstext/v1/55xyezRtP9G3CGPIf49hxc8P0eytUxBUIKNfSOkOfG0Y3A.ttf", "800"=> "http://fonts.gstatic.com/s/bigshoulderstext/v1/55xyezRtP9G3CGPIf49hxc8P0eytUxBUPKBfSOkOfG0Y3A.ttf", "900"=> "http://fonts.gstatic.com/s/bigshoulderstext/v1/55xyezRtP9G3CGPIf49hxc8P0eytUxBUGKFfSOkOfG0Y3A.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 128 => [ "family"=> "Bigelow Rules", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/bigelowrules/v8/RrQWboly8iR_I3KWSzeRuN0zT4cCH8WAJVk.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 129 => [ "family"=> "Bigshot One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/bigshotone/v10/u-470qukhRkkO6BD_7cM_gxuUQJBXv_-.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 130 => [ "family"=> "Bilbo", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/bilbo/v9/o-0EIpgpwWwZ210hpIRz4wxE.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 131 => [ "family"=> "Bilbo Swash Caps", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v12", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/bilboswashcaps/v12/zrf-0GXbz-H3Wb4XBsGrTgq2PVmdqAPopiRfKp8.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 132 => [ "family"=> "BioRhyme", "variants"=> [ 0=> "200", 1=> "300", 2=> "regular", 3=> "700", 4=> "800", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v4", "lastModified"=> "2019-07-16", "files"=> [ "200"=> "http://fonts.gstatic.com/s/biorhyme/v4/1cX3aULHBpDMsHYW_ESOjnGAq8Sk1PoH.ttf", "300"=> "http://fonts.gstatic.com/s/biorhyme/v4/1cX3aULHBpDMsHYW_ETqjXGAq8Sk1PoH.ttf", "regular"=> "http://fonts.gstatic.com/s/biorhyme/v4/1cXwaULHBpDMsHYW_HxGpVWIgNit.ttf", "700"=> "http://fonts.gstatic.com/s/biorhyme/v4/1cX3aULHBpDMsHYW_ET6inGAq8Sk1PoH.ttf", "800"=> "http://fonts.gstatic.com/s/biorhyme/v4/1cX3aULHBpDMsHYW_ETmiXGAq8Sk1PoH.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 133 => [ "family"=> "BioRhyme Expanded", "variants"=> [ 0=> "200", 1=> "300", 2=> "regular", 3=> "700", 4=> "800", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v5", "lastModified"=> "2019-07-16", "files"=> [ "200"=> "http://fonts.gstatic.com/s/biorhymeexpanded/v5/i7dVIE1zZzytGswgU577CDY9LjbffxxcblSHSdTXrb_z.ttf", "300"=> "http://fonts.gstatic.com/s/biorhymeexpanded/v5/i7dVIE1zZzytGswgU577CDY9Ljbffxw4bVSHSdTXrb_z.ttf", "regular"=> "http://fonts.gstatic.com/s/biorhymeexpanded/v5/i7dQIE1zZzytGswgU577CDY9LjbffySURXCPYsje.ttf", "700"=> "http://fonts.gstatic.com/s/biorhymeexpanded/v5/i7dVIE1zZzytGswgU577CDY9LjbffxwoalSHSdTXrb_z.ttf", "800"=> "http://fonts.gstatic.com/s/biorhymeexpanded/v5/i7dVIE1zZzytGswgU577CDY9Ljbffxw0aVSHSdTXrb_z.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 134 => [ "family"=> "Biryani", "variants"=> [ 0=> "200", 1=> "300", 2=> "regular", 3=> "600", 4=> "700", 5=> "800", 6=> "900", ], "subsets"=> [ 0=> "devanagari", 1=> "latin", 2=> "latin-ext", ], "version"=> "v5", "lastModified"=> "2019-07-16", "files"=> [ "200"=> "http://fonts.gstatic.com/s/biryani/v5/hv-TlzNxIFoO84YddYQyGTBSU-J-RxQ.ttf", "300"=> "http://fonts.gstatic.com/s/biryani/v5/hv-TlzNxIFoO84YddeAxGTBSU-J-RxQ.ttf", "regular"=> "http://fonts.gstatic.com/s/biryani/v5/hv-WlzNxIFoO84YdTUwZPTh5T-s.ttf", "600"=> "http://fonts.gstatic.com/s/biryani/v5/hv-TlzNxIFoO84YddZQ3GTBSU-J-RxQ.ttf", "700"=> "http://fonts.gstatic.com/s/biryani/v5/hv-TlzNxIFoO84YddfA2GTBSU-J-RxQ.ttf", "800"=> "http://fonts.gstatic.com/s/biryani/v5/hv-TlzNxIFoO84Yddew1GTBSU-J-RxQ.ttf", "900"=> "http://fonts.gstatic.com/s/biryani/v5/hv-TlzNxIFoO84Yddcg0GTBSU-J-RxQ.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 135 => [ "family"=> "Bitter", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "700", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v15", "lastModified"=> "2019-07-22", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/bitter/v15/rax8HiqOu8IVPmnLeIZoDDlCmg.ttf", "italic"=> "http://fonts.gstatic.com/s/bitter/v15/rax-HiqOu8IVPmn7eoxsLjxSmlLZ.ttf", "700"=> "http://fonts.gstatic.com/s/bitter/v15/rax_HiqOu8IVPmnzxKlMBBJek0vA8A.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 136 => [ "family"=> "Black And White Picture", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "korean", 1=> "latin", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/blackandwhitepicture/v8/TwMe-JAERlQd3ooUHBUXGmrmioKjjnRSFO-NqI5HbcMi-yWY.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 137 => [ "family"=> "Black Han Sans", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "korean", 1=> "latin", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/blackhansans/v8/ea8Aad44WunzF9a-dL6toA8r8nqVIXSkH-Hc.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 138 => [ "family"=> "Black Ops One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/blackopsone/v11/qWcsB6-ypo7xBdr6Xshe96H3WDzRtjkho4M.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 139 => [ "family"=> "Blinker", "variants"=> [ 0=> "100", 1=> "200", 2=> "300", 3=> "regular", 4=> "600", 5=> "700", 6=> "800", 7=> "900", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v3", "lastModified"=> "2019-11-05", "files"=> [ "100"=> "http://fonts.gstatic.com/s/blinker/v3/cIf_MaFatEE-VTaP_E2hZEsCkIt9QQ.ttf", "200"=> "http://fonts.gstatic.com/s/blinker/v3/cIf4MaFatEE-VTaP_OGARGEsnIJkWL4.ttf", "300"=> "http://fonts.gstatic.com/s/blinker/v3/cIf4MaFatEE-VTaP_IWDRGEsnIJkWL4.ttf", "regular"=> "http://fonts.gstatic.com/s/blinker/v3/cIf9MaFatEE-VTaPxCmrYGkHgIs.ttf", "600"=> "http://fonts.gstatic.com/s/blinker/v3/cIf4MaFatEE-VTaP_PGFRGEsnIJkWL4.ttf", "700"=> "http://fonts.gstatic.com/s/blinker/v3/cIf4MaFatEE-VTaP_JWERGEsnIJkWL4.ttf", "800"=> "http://fonts.gstatic.com/s/blinker/v3/cIf4MaFatEE-VTaP_ImHRGEsnIJkWL4.ttf", "900"=> "http://fonts.gstatic.com/s/blinker/v3/cIf4MaFatEE-VTaP_K2GRGEsnIJkWL4.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 140 => [ "family"=> "Bokor", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "khmer", ], "version"=> "v12", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/bokor/v12/m8JcjfpeeaqTiR2WdInbcaxE.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 141 => [ "family"=> "Bonbon", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/bonbon/v11/0FlVVPeVlFec4ee_cDEAbQY5-A.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 142 => [ "family"=> "Boogaloo", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/boogaloo/v11/kmK-Zq45GAvOdnaW6x1F_SrQo_1K.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 143 => [ "family"=> "Bowlby One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/bowlbyone/v11/taiPGmVuC4y96PFeqp8smo6C_Z0wcK4.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 144 => [ "family"=> "Bowlby One SC", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/bowlbyonesc/v11/DtVlJxerQqQm37tzN3wMug9Pzgj8owhNjuE.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 145 => [ "family"=> "Brawler", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/brawler/v10/xn7gYHE3xXewAscGsgC7S9XdZN8.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 146 => [ "family"=> "Bree Serif", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v9", "lastModified"=> "2019-07-17", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/breeserif/v9/4UaHrEJCrhhnVA3DgluAx63j5pN1MwI.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 147 => [ "family"=> "Bubblegum Sans", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/bubblegumsans/v8/AYCSpXb_Z9EORv1M5QTjEzMEtdaHzoPPb7R4.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 148 => [ "family"=> "Bubbler One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/bubblerone/v8/f0Xy0eqj68ppQV9KBLmAouHH26MPePkt.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 149 => [ "family"=> "Buda", "variants"=> [ 0=> "300", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "300"=> "http://fonts.gstatic.com/s/buda/v10/GFDqWAN8mnyIJSSrG7UBr7pZKA0.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 150 => [ "family"=> "Buenard", "variants"=> [ 0=> "regular", 1=> "700", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/buenard/v11/OD5DuM6Cyma8FnnsPzf9qGi9HL4.ttf", "700"=> "http://fonts.gstatic.com/s/buenard/v11/OD5GuM6Cyma8FnnsB4vSjGCWALepwss.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 151 => [ "family"=> "Bungee", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v5", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/bungee/v5/N0bU2SZBIuF2PU_ECn50Kd_PmA.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 152 => [ "family"=> "Bungee Hairline", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v5", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/bungeehairline/v5/snfys0G548t04270a_ljTLUVrv-7YB2dQ5ZPqQ.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 153 => [ "family"=> "Bungee Inline", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v5", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/bungeeinline/v5/Gg8zN58UcgnlCweMrih332VuDGJ1-FEglsc.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 154 => [ "family"=> "Bungee Outline", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v5", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/bungeeoutline/v5/_6_mEDvmVP24UvU2MyiGDslL3Qg3YhJqPXxo.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 155 => [ "family"=> "Bungee Shade", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v5", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/bungeeshade/v5/DtVkJxarWL0t2KdzK3oI_jks7iLSrwFUlw.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 156 => [ "family"=> "Butcherman", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/butcherman/v11/2EbiL-thF0loflXUBOdb1zWzq_5uT84.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 157 => [ "family"=> "Butterfly Kids", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/butterflykids/v8/ll8lK2CWTjuqAsXDqlnIbMNs5S4arxFrAX1D.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 158 => [ "family"=> "Cabin", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "500", 3=> "500italic", 4=> "600", 5=> "600italic", 6=> "700", 7=> "700italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v14", "lastModified"=> "2019-07-22", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/cabin/v14/u-4x0qWljRw-Pe839fxqmjRv.ttf", "italic"=> "http://fonts.gstatic.com/s/cabin/v14/u-4_0qWljRw-Pd81__hInyRvYwc.ttf", "500"=> "http://fonts.gstatic.com/s/cabin/v14/u-480qWljRw-PdfD3NhisShmeh5I.ttf", "500italic"=> "http://fonts.gstatic.com/s/cabin/v14/u-460qWljRw-Pd81xwxhuyxEfw5IR-Y.ttf", "600"=> "http://fonts.gstatic.com/s/cabin/v14/u-480qWljRw-Pdfv29hisShmeh5I.ttf", "600italic"=> "http://fonts.gstatic.com/s/cabin/v14/u-460qWljRw-Pd81xyBmuyxEfw5IR-Y.ttf", "700"=> "http://fonts.gstatic.com/s/cabin/v14/u-480qWljRw-PdeL2thisShmeh5I.ttf", "700italic"=> "http://fonts.gstatic.com/s/cabin/v14/u-460qWljRw-Pd81x0RnuyxEfw5IR-Y.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 159 => [ "family"=> "Cabin Condensed", "variants"=> [ 0=> "regular", 1=> "500", 2=> "600", 3=> "700", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v13", "lastModified"=> "2019-07-17", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/cabincondensed/v13/nwpMtK6mNhBK2err_hqkYhHRqmwaYOjZ5HZl8Q.ttf", "500"=> "http://fonts.gstatic.com/s/cabincondensed/v13/nwpJtK6mNhBK2err_hqkYhHRqmwilMH97F15-K1oqQ.ttf", "600"=> "http://fonts.gstatic.com/s/cabincondensed/v13/nwpJtK6mNhBK2err_hqkYhHRqmwiuMb97F15-K1oqQ.ttf", "700"=> "http://fonts.gstatic.com/s/cabincondensed/v13/nwpJtK6mNhBK2err_hqkYhHRqmwi3Mf97F15-K1oqQ.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 160 => [ "family"=> "Cabin Sketch", "variants"=> [ 0=> "regular", 1=> "700", ], "subsets"=> [ 0=> "latin", ], "version"=> "v13", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/cabinsketch/v13/QGYpz_kZZAGCONcK2A4bGOjMn9JM6fnuKg.ttf", "700"=> "http://fonts.gstatic.com/s/cabinsketch/v13/QGY2z_kZZAGCONcK2A4bGOj0I_1o4dLyI4CMFw.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 161 => [ "family"=> "Caesar Dressing", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/caesardressing/v8/yYLx0hLa3vawqtwdswbotmK4vrR3cbb6LZttyg.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 162 => [ "family"=> "Cagliostro", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/cagliostro/v8/ZgNWjP5HM73BV5amnX-TjGXEM4COoE4.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 163 => [ "family"=> "Cairo", "variants"=> [ 0=> "200", 1=> "300", 2=> "regular", 3=> "600", 4=> "700", 5=> "900", ], "subsets"=> [ 0=> "arabic", 1=> "latin", 2=> "latin-ext", ], "version"=> "v6", "lastModified"=> "2019-07-17", "files"=> [ "200"=> "http://fonts.gstatic.com/s/cairo/v6/SLXLc1nY6Hkvalrub76M7dd8aGZk.ttf", "300"=> "http://fonts.gstatic.com/s/cairo/v6/SLXLc1nY6HkvalqKbL6M7dd8aGZk.ttf", "regular"=> "http://fonts.gstatic.com/s/cairo/v6/SLXGc1nY6HkvamImRJqExst1.ttf", "600"=> "http://fonts.gstatic.com/s/cairo/v6/SLXLc1nY6Hkvalr-ar6M7dd8aGZk.ttf", "700"=> "http://fonts.gstatic.com/s/cairo/v6/SLXLc1nY6Hkvalqaa76M7dd8aGZk.ttf", "900"=> "http://fonts.gstatic.com/s/cairo/v6/SLXLc1nY6Hkvalqiab6M7dd8aGZk.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 164 => [ "family"=> "Caladea", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "700", 3=> "700italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v1", "lastModified"=> "2020-03-03", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/caladea/v1/kJEzBugZ7AAjhybUjR93-9IztOc.ttf", "italic"=> "http://fonts.gstatic.com/s/caladea/v1/kJExBugZ7AAjhybUvR19__A2pOdvDA.ttf", "700"=> "http://fonts.gstatic.com/s/caladea/v1/kJE2BugZ7AAjhybUtaNY39oYqO52FZ0.ttf", "700italic"=> "http://fonts.gstatic.com/s/caladea/v1/kJE0BugZ7AAjhybUvR1FQ98SrMxzBZ2lDA.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 165 => [ "family"=> "Calistoga", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v1", "lastModified"=> "2020-03-03", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/calistoga/v1/6NUU8F2OJg6MeR7l4e0vtMYAwdRZfw.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 166 => [ "family"=> "Calligraffitti", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/calligraffitti/v11/46k2lbT3XjDVqJw3DCmCFjE0vnFZM5ZBpYN-.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 167 => [ "family"=> "Cambay", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "700", 3=> "700italic", ], "subsets"=> [ 0=> "devanagari", 1=> "latin", 2=> "latin-ext", ], "version"=> "v6", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/cambay/v6/SLXJc1rY6H0_ZDsGbrSIz9JsaA.ttf", "italic"=> "http://fonts.gstatic.com/s/cambay/v6/SLXLc1rY6H0_ZDs2bL6M7dd8aGZk.ttf", "700"=> "http://fonts.gstatic.com/s/cambay/v6/SLXKc1rY6H0_ZDs-0pusx_lwYX99kA.ttf", "700italic"=> "http://fonts.gstatic.com/s/cambay/v6/SLXMc1rY6H0_ZDs2bIYwwvN0Q3ptkDMN.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 168 => [ "family"=> "Cambo", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/cambo/v8/IFSqHeNEk8FJk416ok7xkPm8.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 169 => [ "family"=> "Candal", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/candal/v9/XoHn2YH6T7-t_8cNAR4Jt9Yxlw.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 170 => [ "family"=> "Cantarell", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "700", 3=> "700italic", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-17", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/cantarell/v9/B50NF7ZDq37KMUvlO01Ji6hqHK-CLA.ttf", "italic"=> "http://fonts.gstatic.com/s/cantarell/v9/B50LF7ZDq37KMUvlO015iaJuPqqSLJYf.ttf", "700"=> "http://fonts.gstatic.com/s/cantarell/v9/B50IF7ZDq37KMUvlO01xN4dOFISeJY8GgQ.ttf", "700italic"=> "http://fonts.gstatic.com/s/cantarell/v9/B50WF7ZDq37KMUvlO015iZrSEY6aB4oWgWHB.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 171 => [ "family"=> "Cantata One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/cantataone/v9/PlI5Fl60Nb5obNzNe2jslVxEt8CwfGaD.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 172 => [ "family"=> "Cantora One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/cantoraone/v9/gyB4hws1JdgnKy56GB_JX6zdZ4vZVbgZ.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 173 => [ "family"=> "Capriola", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/capriola/v7/wXKoE3YSppcvo1PDln_8L-AinG8y.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 174 => [ "family"=> "Cardo", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "700", ], "subsets"=> [ 0=> "greek", 1=> "greek-ext", 2=> "latin", 3=> "latin-ext", ], "version"=> "v11", "lastModified"=> "2019-07-17", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/cardo/v11/wlp_gwjKBV1pqiv_1oAZ2H5O.ttf", "italic"=> "http://fonts.gstatic.com/s/cardo/v11/wlpxgwjKBV1pqhv93IQ73W5OcCk.ttf", "700"=> "http://fonts.gstatic.com/s/cardo/v11/wlpygwjKBV1pqhND-aQR82JHaTBX.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 175 => [ "family"=> "Carme", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/carme/v10/ptRHTiWdbvZIDOjGxLNrxfbZ.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 176 => [ "family"=> "Carrois Gothic", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/carroisgothic/v10/Z9XPDmFATg-N1PLtLOOxvIHl9ZmD3i7ajcJ-.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 177 => [ "family"=> "Carrois Gothic SC", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/carroisgothicsc/v9/ZgNJjOVHM6jfUZCmyUqT2A2HVKjc-28nNHabY4dN.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 178 => [ "family"=> "Carter One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/carterone/v11/q5uCsoe5IOB2-pXv9UcNIxR2hYxREMs.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 179 => [ "family"=> "Catamaran", "variants"=> [ 0=> "100", 1=> "200", 2=> "300", 3=> "regular", 4=> "500", 5=> "600", 6=> "700", 7=> "800", 8=> "900", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "tamil", ], "version"=> "v6", "lastModified"=> "2019-07-17", "files"=> [ "100"=> "http://fonts.gstatic.com/s/catamaran/v6/o-0OIpQoyXQa2RxT7-5jhjRFSfiM7HBj.ttf", "200"=> "http://fonts.gstatic.com/s/catamaran/v6/o-0NIpQoyXQa2RxT7-5jKhVlY9aA5Wl6PQ.ttf", "300"=> "http://fonts.gstatic.com/s/catamaran/v6/o-0NIpQoyXQa2RxT7-5jThZlY9aA5Wl6PQ.ttf", "regular"=> "http://fonts.gstatic.com/s/catamaran/v6/o-0IIpQoyXQa2RxT7-5b4j5Ba_2c7A.ttf", "500"=> "http://fonts.gstatic.com/s/catamaran/v6/o-0NIpQoyXQa2RxT7-5jFhdlY9aA5Wl6PQ.ttf", "600"=> "http://fonts.gstatic.com/s/catamaran/v6/o-0NIpQoyXQa2RxT7-5jOhBlY9aA5Wl6PQ.ttf", "700"=> "http://fonts.gstatic.com/s/catamaran/v6/o-0NIpQoyXQa2RxT7-5jXhFlY9aA5Wl6PQ.ttf", "800"=> "http://fonts.gstatic.com/s/catamaran/v6/o-0NIpQoyXQa2RxT7-5jQhJlY9aA5Wl6PQ.ttf", "900"=> "http://fonts.gstatic.com/s/catamaran/v6/o-0NIpQoyXQa2RxT7-5jZhNlY9aA5Wl6PQ.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 180 => [ "family"=> "Caudex", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "700", 3=> "700italic", ], "subsets"=> [ 0=> "greek", 1=> "greek-ext", 2=> "latin", 3=> "latin-ext", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/caudex/v9/esDQ311QOP6BJUrIyviAnb4eEw.ttf", "italic"=> "http://fonts.gstatic.com/s/caudex/v9/esDS311QOP6BJUr4yPKEv7sOE4in.ttf", "700"=> "http://fonts.gstatic.com/s/caudex/v9/esDT311QOP6BJUrwdteklZUCGpG-GQ.ttf", "700italic"=> "http://fonts.gstatic.com/s/caudex/v9/esDV311QOP6BJUr4yMo4kJ8GOJSuGdLB.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 181 => [ "family"=> "Caveat", "variants"=> [ 0=> "regular", 1=> "700", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "latin", 3=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-17", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/caveat/v7/Wnz6HAc5bAfYB2QLYTwZqg_MPQ.ttf", "700"=> "http://fonts.gstatic.com/s/caveat/v7/Wnz5HAc5bAfYB2Qz3RM9oiTQNAuxjA.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 182 => [ "family"=> "Caveat Brush", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v5", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/caveatbrush/v5/EYq0maZfwr9S9-ETZc3fKXtMW7mT03pdQw.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 183 => [ "family"=> "Cedarville Cursive", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/cedarvillecursive/v11/yYL00g_a2veiudhUmxjo5VKkoqA-B_neJbBxw8BeTg.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 184 => [ "family"=> "Ceviche One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/cevicheone/v10/gyB4hws1IcA6JzR-GB_JX6zdZ4vZVbgZ.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 185 => [ "family"=> "Chakra Petch", "variants"=> [ 0=> "300", 1=> "300italic", 2=> "regular", 3=> "italic", 4=> "500", 5=> "500italic", 6=> "600", 7=> "600italic", 8=> "700", 9=> "700italic" ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "thai", 3=> "vietnamese", ], "version"=> "v3", "lastModified"=> "2019-11-05", "files"=> [ "300"=> "http://fonts.gstatic.com/s/chakrapetch/v3/cIflMapbsEk7TDLdtEz1BwkeNIhFQJXE3AY00g.ttf", "300italic"=> "http://fonts.gstatic.com/s/chakrapetch/v3/cIfnMapbsEk7TDLdtEz1BwkWmpLJQp_A_gMk0izH.ttf", "regular"=> "http://fonts.gstatic.com/s/chakrapetch/v3/cIf6MapbsEk7TDLdtEz1BwkmmKBhSL7Y1Q.ttf", "italic"=> "http://fonts.gstatic.com/s/chakrapetch/v3/cIfkMapbsEk7TDLdtEz1BwkWmqplarvI1R8t.ttf", "500"=> "http://fonts.gstatic.com/s/chakrapetch/v3/cIflMapbsEk7TDLdtEz1BwkebIlFQJXE3AY00g.ttf", "500italic"=> "http://fonts.gstatic.com/s/chakrapetch/v3/cIfnMapbsEk7TDLdtEz1BwkWmpKRQ5_A_gMk0izH.ttf", "600"=> "http://fonts.gstatic.com/s/chakrapetch/v3/cIflMapbsEk7TDLdtEz1BwkeQI5FQJXE3AY00g.ttf", "600italic"=> "http://fonts.gstatic.com/s/chakrapetch/v3/cIfnMapbsEk7TDLdtEz1BwkWmpK9RJ_A_gMk0izH.ttf", "700"=> "http://fonts.gstatic.com/s/chakrapetch/v3/cIflMapbsEk7TDLdtEz1BwkeJI9FQJXE3AY00g.ttf", "700italic"=> "http://fonts.gstatic.com/s/chakrapetch/v3/cIfnMapbsEk7TDLdtEz1BwkWmpLZRZ_A_gMk0izH.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 186 => [ "family"=> "Changa", "variants"=> [ 0=> "200", 1=> "300", 2=> "regular", 3=> "500", 4=> "600", 5=> "700", 6=> "800", ], "subsets"=> [ 0=> "arabic", 1=> "latin", 2=> "latin-ext", ], "version"=> "v9", "lastModified"=> "2020-02-05", "files"=> [ "200"=> "http://fonts.gstatic.com/s/changa/v9/2-c79JNi2YuVOUcOarRPgnNGooxCZy2xQjDp9htf1ZM.ttf", "300"=> "http://fonts.gstatic.com/s/changa/v9/2-c79JNi2YuVOUcOarRPgnNGooxCZ_OxQjDp9htf1ZM.ttf", "regular"=> "http://fonts.gstatic.com/s/changa/v9/2-c79JNi2YuVOUcOarRPgnNGooxCZ62xQjDp9htf1ZM.ttf", "500"=> "http://fonts.gstatic.com/s/changa/v9/2-c79JNi2YuVOUcOarRPgnNGooxCZ5-xQjDp9htf1ZM.ttf", "600"=> "http://fonts.gstatic.com/s/changa/v9/2-c79JNi2YuVOUcOarRPgnNGooxCZ3O2QjDp9htf1ZM.ttf", "700"=> "http://fonts.gstatic.com/s/changa/v9/2-c79JNi2YuVOUcOarRPgnNGooxCZ0q2QjDp9htf1ZM.ttf", "800"=> "http://fonts.gstatic.com/s/changa/v9/2-c79JNi2YuVOUcOarRPgnNGooxCZy22QjDp9htf1ZM.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 187 => [ "family"=> "Changa One", "variants"=> [ 0=> "regular", 1=> "italic", ], "subsets"=> [ 0=> "latin", ], "version"=> "v12", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/changaone/v12/xfu00W3wXn3QLUJXhzq46AbouLfbK64.ttf", "italic"=> "http://fonts.gstatic.com/s/changaone/v12/xfu20W3wXn3QLUJXhzq42ATivJXeO67ISw.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 188 => [ "family"=> "Chango", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/chango/v8/2V0cKI0OB5U7WaJyz324TFUaAw.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 189 => [ "family"=> "Charm", "variants"=> [ 0=> "regular", 1=> "700", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "thai", 3=> "vietnamese", ], "version"=> "v4", "lastModified"=> "2019-11-05", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/charm/v4/7cHmv4oii5K0MeYvIe804WIo.ttf", "700"=> "http://fonts.gstatic.com/s/charm/v4/7cHrv4oii5K0Md6TDss8yn4hnCci.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 190 => [ "family"=> "Charmonman", "variants"=> [ 0=> "regular", 1=> "700", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "thai", 3=> "vietnamese", ], "version"=> "v3", "lastModified"=> "2019-11-05", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/charmonman/v3/MjQDmiR3vP_nuxDv47jiWJGovLdh6OE.ttf", "700"=> "http://fonts.gstatic.com/s/charmonman/v3/MjQAmiR3vP_nuxDv47jiYC2HmL9K9OhmGnY.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 191 => [ "family"=> "Chathura", "variants"=> [ 0=> "100", 1=> "300", 2=> "regular", 3=> "700", 4=> "800", ], "subsets"=> [ 0=> "latin", 1=> "telugu", ], "version"=> "v5", "lastModified"=> "2019-07-16", "files"=> [ "100"=> "http://fonts.gstatic.com/s/chathura/v5/_gP91R7-rzUuVjim42dEq0SbTvZyuDo.ttf", "300"=> "http://fonts.gstatic.com/s/chathura/v5/_gP81R7-rzUuVjim42eMiWSxYPp7oSNy.ttf", "regular"=> "http://fonts.gstatic.com/s/chathura/v5/_gP71R7-rzUuVjim418goUC5S-Zy.ttf", "700"=> "http://fonts.gstatic.com/s/chathura/v5/_gP81R7-rzUuVjim42ecjmSxYPp7oSNy.ttf", "800"=> "http://fonts.gstatic.com/s/chathura/v5/_gP81R7-rzUuVjim42eAjWSxYPp7oSNy.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 192 => [ "family"=> "Chau Philomene One", "variants"=> [ 0=> "regular", 1=> "italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/chauphilomeneone/v9/55xxezRsPtfie1vPY49qzdgSlJiHRQFsnIx7QMISdQ.ttf", "italic"=> "http://fonts.gstatic.com/s/chauphilomeneone/v9/55xzezRsPtfie1vPY49qzdgSlJiHRQFcnoZ_YscCdXQB.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 193 => [ "family"=> "Chela One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/chelaone/v8/6ae-4KC7Uqgdz_JZdPIy31vWNTMwoQ.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 194 => [ "family"=> "Chelsea Market", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/chelseamarket/v7/BCawqZsHqfr89WNP_IApC8tzKBhlLA4uKkWk.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 195 => [ "family"=> "Chenla", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "khmer", ], "version"=> "v12", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/chenla/v12/SZc43FDpIKu8WZ9eXxfonUPL6Q.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 196 => [ "family"=> "Cherry Cream Soda", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/cherrycreamsoda/v10/UMBIrOxBrW6w2FFyi9paG0fdVdRciTd6Cd47DJ7G.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 197 => [ "family"=> "Cherry Swash", "variants"=> [ 0=> "regular", 1=> "700", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/cherryswash/v8/i7dNIFByZjaNAMxtZcnfAy58QHi-EwWMbg.ttf", "700"=> "http://fonts.gstatic.com/s/cherryswash/v8/i7dSIFByZjaNAMxtZcnfAy5E_FeaGy6QZ3WfYg.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 198 => [ "family"=> "Chewy", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/chewy/v11/uK_94ruUb-k-wk5xIDMfO-ed.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 199 => [ "family"=> "Chicle", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/chicle/v8/lJwG-pw9i2dqU-BDyWKuobYSxw.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 200 => [ "family"=> "Chilanka", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "malayalam", ], "version"=> "v5", "lastModified"=> "2020-03-03", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/chilanka/v5/WWXRlj2DZQiMJYaYRrJQI9EAZhTO.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 201 => [ "family"=> "Chivo", "variants"=> [ 0=> "300", 1=> "300italic", 2=> "regular", 3=> "italic", 4=> "700", 5=> "700italic", 6=> "900", 7=> "900italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v11", "lastModified"=> "2019-07-17", "files"=> [ "300"=> "http://fonts.gstatic.com/s/chivo/v11/va9F4kzIxd1KFrjDY8Z_uqzGQC_-.ttf", "300italic"=> "http://fonts.gstatic.com/s/chivo/v11/va9D4kzIxd1KFrBteUp9sKjkRT_-bF0.ttf", "regular"=> "http://fonts.gstatic.com/s/chivo/v11/va9I4kzIxd1KFoBvS-J3kbDP.ttf", "italic"=> "http://fonts.gstatic.com/s/chivo/v11/va9G4kzIxd1KFrBtQeZVlKDPWTY.ttf", "700"=> "http://fonts.gstatic.com/s/chivo/v11/va9F4kzIxd1KFrjTZMZ_uqzGQC_-.ttf", "700italic"=> "http://fonts.gstatic.com/s/chivo/v11/va9D4kzIxd1KFrBteVp6sKjkRT_-bF0.ttf", "900"=> "http://fonts.gstatic.com/s/chivo/v11/va9F4kzIxd1KFrjrZsZ_uqzGQC_-.ttf", "900italic"=> "http://fonts.gstatic.com/s/chivo/v11/va9D4kzIxd1KFrBteWJ4sKjkRT_-bF0.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 202 => [ "family"=> "Chonburi", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "thai", 3=> "vietnamese", ], "version"=> "v4", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/chonburi/v4/8AtqGs-wOpGRTBq66IWaFr3biAfZ.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 203 => [ "family"=> "Cinzel", "variants"=> [ 0=> "regular", 1=> "700", 2=> "900", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v9", "lastModified"=> "2019-07-17", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/cinzel/v9/8vIJ7ww63mVu7gtL8W76HEdHMg.ttf", "700"=> "http://fonts.gstatic.com/s/cinzel/v9/8vIK7ww63mVu7gtzTUHeFGxbO_zo-w.ttf", "900"=> "http://fonts.gstatic.com/s/cinzel/v9/8vIK7ww63mVu7gtzdUPeFGxbO_zo-w.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 204 => [ "family"=> "Cinzel Decorative", "variants"=> [ 0=> "regular", 1=> "700", 2=> "900", ], "subsets"=> [ 0=> "latin", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/cinzeldecorative/v8/daaCSScvJGqLYhG8nNt8KPPswUAPnh7URs1LaCyC.ttf", "700"=> "http://fonts.gstatic.com/s/cinzeldecorative/v8/daaHSScvJGqLYhG8nNt8KPPswUAPniZoaelDQzCLlQXE.ttf", "900"=> "http://fonts.gstatic.com/s/cinzeldecorative/v8/daaHSScvJGqLYhG8nNt8KPPswUAPniZQa-lDQzCLlQXE.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 205 => [ "family"=> "Clicker Script", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/clickerscript/v7/raxkHiKPvt8CMH6ZWP8PdlEq72rY2zqUKafv.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 206 => [ "family"=> "Coda", "variants"=> [ 0=> "regular", 1=> "800", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v15", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/coda/v15/SLXHc1jY5nQ8JUIMapaN39I.ttf", "800"=> "http://fonts.gstatic.com/s/coda/v15/SLXIc1jY5nQ8HeIgTp6mw9t1cX8.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 207 => [ "family"=> "Coda Caption", "variants"=> [ 0=> "800", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v13", "lastModified"=> "2019-07-16", "files"=> [ "800"=> "http://fonts.gstatic.com/s/codacaption/v13/ieVm2YRII2GMY7SyXSoDRiQGqcx6x_-fACIgaw.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 208 => [ "family"=> "Codystar", "variants"=> [ 0=> "300", 1=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "300"=> "http://fonts.gstatic.com/s/codystar/v7/FwZf7-Q1xVk-40qxOuYsyuyrj0e29bfC.ttf", "regular"=> "http://fonts.gstatic.com/s/codystar/v7/FwZY7-Q1xVk-40qxOt6A4sijpFu_.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 209 => [ "family"=> "Coiny", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "tamil", 3=> "vietnamese", ], "version"=> "v5", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/coiny/v5/gyByhwU1K989PXwbElSvO5Tc.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 210 => [ "family"=> "Combo", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/combo/v8/BXRlvF3Jh_fIhg0iBu9y8Hf0.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 211 => [ "family"=> "Comfortaa", "variants"=> [ 0=> "300", 1=> "regular", 2=> "500", 3=> "600", 4=> "700", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "greek", 3=> "latin", 4=> "latin-ext", 5=> "vietnamese", ], "version"=> "v28", "lastModified"=> "2020-02-05", "files"=> [ "300"=> "http://fonts.gstatic.com/s/comfortaa/v28/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4TbMPrQVIT9c2c8.ttf", "regular"=> "http://fonts.gstatic.com/s/comfortaa/v28/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4WjMPrQVIT9c2c8.ttf", "500"=> "http://fonts.gstatic.com/s/comfortaa/v28/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4VrMPrQVIT9c2c8.ttf", "600"=> "http://fonts.gstatic.com/s/comfortaa/v28/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4bbLPrQVIT9c2c8.ttf", "700"=> "http://fonts.gstatic.com/s/comfortaa/v28/1Pt_g8LJRfWJmhDAuUsSQamb1W0lwk4S4Y_LPrQVIT9c2c8.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 212 => [ "family"=> "Comic Neue", "variants"=> [ 0=> "300", 1=> "300italic", 2=> "regular", 3=> "italic", 4=> "700", 5=> "700italic", ], "subsets"=> [ 0=> "latin", ], "version"=> "v1", "lastModified"=> "2020-05-01", "files"=> [ "300"=> "http://fonts.gstatic.com/s/comicneue/v1/4UaErEJDsxBrF37olUeD_wHLwpteLwtHJlc.ttf", "300italic"=> "http://fonts.gstatic.com/s/comicneue/v1/4UaarEJDsxBrF37olUeD96_RTplUKylCNlcw_Q.ttf", "regular"=> "http://fonts.gstatic.com/s/comicneue/v1/4UaHrEJDsxBrF37olUeDx63j5pN1MwI.ttf", "italic"=> "http://fonts.gstatic.com/s/comicneue/v1/4UaFrEJDsxBrF37olUeD96_p4rFwIwJePw.ttf", "700"=> "http://fonts.gstatic.com/s/comicneue/v1/4UaErEJDsxBrF37olUeD_xHMwpteLwtHJlc.ttf", "700italic"=> "http://fonts.gstatic.com/s/comicneue/v1/4UaarEJDsxBrF37olUeD96_RXp5UKylCNlcw_Q.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 213 => [ "family"=> "Coming Soon", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v11", "lastModified"=> "2019-07-26", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/comingsoon/v11/qWcuB6mzpYL7AJ2VfdQR1u-SUjjzsykh.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 214 => [ "family"=> "Concert One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v10", "lastModified"=> "2019-07-17", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/concertone/v10/VEM1Ro9xs5PjtzCu-srDqRTlhv-CuVAQ.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 215 => [ "family"=> "Condiment", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/condiment/v7/pONk1hggFNmwvXALyH6Sq4n4o1vyCQ.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 216 => [ "family"=> "Content", "variants"=> [ 0=> "regular", 1=> "700", ], "subsets"=> [ 0=> "khmer", ], "version"=> "v12", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/content/v12/zrfl0HLayePhU_AwUaDyIiL0RCg.ttf", "700"=> "http://fonts.gstatic.com/s/content/v12/zrfg0HLayePhU_AwaRzdBirfWCHvkAI.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 217 => [ "family"=> "Contrail One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/contrailone/v9/eLGbP-j_JA-kG0_Zo51noafdZUvt_c092w.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 218 => [ "family"=> "Convergence", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/convergence/v8/rax5HiePvdgXPmmMHcIPYRhasU7Q8Cad.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 219 => [ "family"=> "Cookie", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v11", "lastModified"=> "2019-07-17", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/cookie/v11/syky-y18lb0tSbfNlQCT9tPdpw.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 220 => [ "family"=> "Copse", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/copse/v9/11hPGpDKz1rGb0djHkihUb-A.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 221 => [ "family"=> "Corben", "variants"=> [ 0=> "regular", 1=> "700", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v13", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/corben/v13/LYjDdGzzklQtCMp9oAlEpVs3VQ.ttf", "700"=> "http://fonts.gstatic.com/s/corben/v13/LYjAdGzzklQtCMpFHCZgrXArXN7HWQ.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 222 => [ "family"=> "Cormorant", "variants"=> [ 0=> "300", 1=> "300italic", 2=> "regular", 3=> "italic", 4=> "500", 5=> "500italic", 6=> "600", 7=> "600italic", 8=> "700", 9=> "700italic" ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "latin", 3=> "latin-ext", 4=> "vietnamese", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "300"=> "http://fonts.gstatic.com/s/cormorant/v8/H4cgBXOCl9bbnla_nHIiRLmYgoyyYzFzFw.ttf", "300italic"=> "http://fonts.gstatic.com/s/cormorant/v8/H4c-BXOCl9bbnla_nHIq6qMUgIa2QTRjF8ER.ttf", "regular"=> "http://fonts.gstatic.com/s/cormorant/v8/H4clBXOCl9bbnla_nHIa6JG8iqeuag.ttf", "italic"=> "http://fonts.gstatic.com/s/cormorant/v8/H4cjBXOCl9bbnla_nHIq6pu4qKK-aihq.ttf", "500"=> "http://fonts.gstatic.com/s/cormorant/v8/H4cgBXOCl9bbnla_nHIiHLiYgoyyYzFzFw.ttf", "500italic"=> "http://fonts.gstatic.com/s/cormorant/v8/H4c-BXOCl9bbnla_nHIq6qNMgYa2QTRjF8ER.ttf", "600"=> "http://fonts.gstatic.com/s/cormorant/v8/H4cgBXOCl9bbnla_nHIiML-YgoyyYzFzFw.ttf", "600italic"=> "http://fonts.gstatic.com/s/cormorant/v8/H4c-BXOCl9bbnla_nHIq6qNghoa2QTRjF8ER.ttf", "700"=> "http://fonts.gstatic.com/s/cormorant/v8/H4cgBXOCl9bbnla_nHIiVL6YgoyyYzFzFw.ttf", "700italic"=> "http://fonts.gstatic.com/s/cormorant/v8/H4c-BXOCl9bbnla_nHIq6qMEh4a2QTRjF8ER.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 223 => [ "family"=> "Cormorant Garamond", "variants"=> [ 0=> "300", 1=> "300italic", 2=> "regular", 3=> "italic", 4=> "500", 5=> "500italic", 6=> "600", 7=> "600italic", 8=> "700", 9=> "700italic" ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "latin", 3=> "latin-ext", 4=> "vietnamese", ], "version"=> "v7", "lastModified"=> "2019-07-17", "files"=> [ "300"=> "http://fonts.gstatic.com/s/cormorantgaramond/v7/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQAllvuQWJ5heb_w.ttf", "300italic"=> "http://fonts.gstatic.com/s/cormorantgaramond/v7/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEPjuw-NxBKL_y94.ttf", "regular"=> "http://fonts.gstatic.com/s/cormorantgaramond/v7/co3bmX5slCNuHLi8bLeY9MK7whWMhyjornFLsS6V7w.ttf", "italic"=> "http://fonts.gstatic.com/s/cormorantgaramond/v7/co3ZmX5slCNuHLi8bLeY9MK7whWMhyjYrHtPkyuF7w6C.ttf", "500"=> "http://fonts.gstatic.com/s/cormorantgaramond/v7/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQWlhvuQWJ5heb_w.ttf", "500italic"=> "http://fonts.gstatic.com/s/cormorantgaramond/v7/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEO7ug-NxBKL_y94.ttf", "600"=> "http://fonts.gstatic.com/s/cormorantgaramond/v7/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQdl9vuQWJ5heb_w.ttf", "600italic"=> "http://fonts.gstatic.com/s/cormorantgaramond/v7/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEOXvQ-NxBKL_y94.ttf", "700"=> "http://fonts.gstatic.com/s/cormorantgaramond/v7/co3YmX5slCNuHLi8bLeY9MK7whWMhyjQEl5vuQWJ5heb_w.ttf", "700italic"=> "http://fonts.gstatic.com/s/cormorantgaramond/v7/co3WmX5slCNuHLi8bLeY9MK7whWMhyjYrEPzvA-NxBKL_y94.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 224 => [ "family"=> "Cormorant Infant", "variants"=> [ 0=> "300", 1=> "300italic", 2=> "regular", 3=> "italic", 4=> "500", 5=> "500italic", 6=> "600", 7=> "600italic", 8=> "700", 9=> "700italic" ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "latin", 3=> "latin-ext", 4=> "vietnamese", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "300"=> "http://fonts.gstatic.com/s/cormorantinfant/v8/HhyIU44g9vKiM1sORYSiWeAsLN9951w3_DMrQqcdJrk.ttf", "300italic"=> "http://fonts.gstatic.com/s/cormorantinfant/v8/HhyKU44g9vKiM1sORYSiWeAsLN997_ItcDEhRoUYNrn_Ig.ttf", "regular"=> "http://fonts.gstatic.com/s/cormorantinfant/v8/HhyPU44g9vKiM1sORYSiWeAsLN993_Af2DsAXq4.ttf", "italic"=> "http://fonts.gstatic.com/s/cormorantinfant/v8/HhyJU44g9vKiM1sORYSiWeAsLN997_IV3BkFTq4EPw.ttf", "500"=> "http://fonts.gstatic.com/s/cormorantinfant/v8/HhyIU44g9vKiM1sORYSiWeAsLN995wQ2_DMrQqcdJrk.ttf", "500italic"=> "http://fonts.gstatic.com/s/cormorantinfant/v8/HhyKU44g9vKiM1sORYSiWeAsLN997_ItKDAhRoUYNrn_Ig.ttf", "600"=> "http://fonts.gstatic.com/s/cormorantinfant/v8/HhyIU44g9vKiM1sORYSiWeAsLN995ygx_DMrQqcdJrk.ttf", "600italic"=> "http://fonts.gstatic.com/s/cormorantinfant/v8/HhyKU44g9vKiM1sORYSiWeAsLN997_ItBDchRoUYNrn_Ig.ttf", "700"=> "http://fonts.gstatic.com/s/cormorantinfant/v8/HhyIU44g9vKiM1sORYSiWeAsLN9950ww_DMrQqcdJrk.ttf", "700italic"=> "http://fonts.gstatic.com/s/cormorantinfant/v8/HhyKU44g9vKiM1sORYSiWeAsLN997_ItYDYhRoUYNrn_Ig.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 225 => [ "family"=> "Cormorant SC", "variants"=> [ 0=> "300", 1=> "regular", 2=> "500", 3=> "600", 4=> "700", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "latin", 3=> "latin-ext", 4=> "vietnamese", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "300"=> "http://fonts.gstatic.com/s/cormorantsc/v8/0ybmGD4kxqXBmOVLG30OGwsmABIU_R3y8DOWGA.ttf", "regular"=> "http://fonts.gstatic.com/s/cormorantsc/v8/0yb5GD4kxqXBmOVLG30OGwserDow9Tbu-Q.ttf", "500"=> "http://fonts.gstatic.com/s/cormorantsc/v8/0ybmGD4kxqXBmOVLG30OGwsmWBMU_R3y8DOWGA.ttf", "600"=> "http://fonts.gstatic.com/s/cormorantsc/v8/0ybmGD4kxqXBmOVLG30OGwsmdBQU_R3y8DOWGA.ttf", "700"=> "http://fonts.gstatic.com/s/cormorantsc/v8/0ybmGD4kxqXBmOVLG30OGwsmEBUU_R3y8DOWGA.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 226 => [ "family"=> "Cormorant Unicase", "variants"=> [ 0=> "300", 1=> "regular", 2=> "500", 3=> "600", 4=> "700", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "latin", 3=> "latin-ext", 4=> "vietnamese", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "300"=> "http://fonts.gstatic.com/s/cormorantunicase/v8/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9N_tucv7Gy0DRzS.ttf", "regular"=> "http://fonts.gstatic.com/s/cormorantunicase/v8/HI_QiZUaILtOqhqgDeXoF_n1_fTGX-vTnsMnx3C9.ttf", "500"=> "http://fonts.gstatic.com/s/cormorantunicase/v8/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9Mnt-cv7Gy0DRzS.ttf", "600"=> "http://fonts.gstatic.com/s/cormorantunicase/v8/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9MLsOcv7Gy0DRzS.ttf", "700"=> "http://fonts.gstatic.com/s/cormorantunicase/v8/HI_ViZUaILtOqhqgDeXoF_n1_fTGX9Nvsecv7Gy0DRzS.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 227 => [ "family"=> "Cormorant Upright", "variants"=> [ 0=> "300", 1=> "regular", 2=> "500", 3=> "600", 4=> "700", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v6", "lastModified"=> "2020-06-11", "files"=> [ "300"=> "http://fonts.gstatic.com/s/cormorantupright/v6/VuJudM3I2Y35poFONtLdafkUCHw1y1N5phDsU9X6RPzQ.ttf", "regular"=> "http://fonts.gstatic.com/s/cormorantupright/v6/VuJrdM3I2Y35poFONtLdafkUCHw1y2vVjjTkeMnz.ttf", "500"=> "http://fonts.gstatic.com/s/cormorantupright/v6/VuJudM3I2Y35poFONtLdafkUCHw1y1MhpxDsU9X6RPzQ.ttf", "600"=> "http://fonts.gstatic.com/s/cormorantupright/v6/VuJudM3I2Y35poFONtLdafkUCHw1y1MNoBDsU9X6RPzQ.ttf", "700"=> "http://fonts.gstatic.com/s/cormorantupright/v6/VuJudM3I2Y35poFONtLdafkUCHw1y1NpoRDsU9X6RPzQ.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 228 => [ "family"=> "Courgette", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-17", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/courgette/v7/wEO_EBrAnc9BLjLQAUkFUfAL3EsHiA.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 229 => [ "family"=> "Courier Prime", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "700", 3=> "700italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v1", "lastModified"=> "2020-03-03", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/courierprime/v1/u-450q2lgwslOqpF_6gQ8kELWwZjW-_-tvg.ttf", "italic"=> "http://fonts.gstatic.com/s/courierprime/v1/u-4n0q2lgwslOqpF_6gQ8kELawRpX837pvjxPA.ttf", "700"=> "http://fonts.gstatic.com/s/courierprime/v1/u-4k0q2lgwslOqpF_6gQ8kELY7pMf-fVqvHoJXw.ttf", "700italic"=> "http://fonts.gstatic.com/s/courierprime/v1/u-4i0q2lgwslOqpF_6gQ8kELawRR4-LfrtPtNXyeAg.ttf", ], "category"=> "monospace", "kind"=> "webfonts#webfont" ], 230 => [ "family"=> "Cousine", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "700", 3=> "700italic", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "greek", 3=> "greek-ext", 4=> "hebrew", 5=> "latin", 6=> "latin-ext", 7=> "vietnamese", ], "version"=> "v14", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/cousine/v14/d6lIkaiiRdih4SpPzSMlzTbtz9k.ttf", "italic"=> "http://fonts.gstatic.com/s/cousine/v14/d6lKkaiiRdih4SpP_SEvyRTo39l8hw.ttf", "700"=> "http://fonts.gstatic.com/s/cousine/v14/d6lNkaiiRdih4SpP9Z8K6T7G09BlnmQ.ttf", "700italic"=> "http://fonts.gstatic.com/s/cousine/v14/d6lPkaiiRdih4SpP_SEXdTvM1_JgjmRpOA.ttf", ], "category"=> "monospace", "kind"=> "webfonts#webfont" ], 231 => [ "family"=> "Coustard", "variants"=> [ 0=> "regular", 1=> "900", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/coustard/v10/3XFpErgg3YsZ5fqUU9UPvWXuROTd.ttf", "900"=> "http://fonts.gstatic.com/s/coustard/v10/3XFuErgg3YsZ5fqUU-2LkEHmb_jU3eRL.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 232 => [ "family"=> "Covered By Your Grace", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/coveredbyyourgrace/v9/QGYwz-AZahWOJJI9kykWW9mD6opopoqXSOS0FgItq6bFIg.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 233 => [ "family"=> "Crafty Girls", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/craftygirls/v9/va9B4kXI39VaDdlPJo8N_NvuQR37fF3Wlg.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 234 => [ "family"=> "Creepster", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/creepster/v8/AlZy_zVUqJz4yMrniH4hdXf4XB0Tow.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 235 => [ "family"=> "Crete Round", "variants"=> [ 0=> "regular", 1=> "italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-17", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/creteround/v8/55xoey1sJNPjPiv1ZZZrxJ1827zAKnxN.ttf", "italic"=> "http://fonts.gstatic.com/s/creteround/v8/55xqey1sJNPjPiv1ZZZrxK1-0bjiL2xNhKc.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 236 => [ "family"=> "Crimson Pro", "variants"=> [ 0=> "200", 1=> "300", 2=> "regular", 3=> "500", 4=> "600", 5=> "700", 6=> "800", 7=> "900", 8=> "200italic", 9=> "300italic", 10=> "italic", 11=> "500italic", 12=> "600italic", 13=> "700italic", 14=> "800italic", 15=> "900italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v12", "lastModified"=> "2020-04-21", "files"=> [ "200"=> "http://fonts.gstatic.com/s/crimsonpro/v12/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZTm18OJE_VNWoyQ.ttf", "300"=> "http://fonts.gstatic.com/s/crimsonpro/v12/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZkG18OJE_VNWoyQ.ttf", "regular"=> "http://fonts.gstatic.com/s/crimsonpro/v12/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZzm18OJE_VNWoyQ.ttf", "500"=> "http://fonts.gstatic.com/s/crimsonpro/v12/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZ_G18OJE_VNWoyQ.ttf", "600"=> "http://fonts.gstatic.com/s/crimsonpro/v12/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZEGp8OJE_VNWoyQ.ttf", "700"=> "http://fonts.gstatic.com/s/crimsonpro/v12/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZKWp8OJE_VNWoyQ.ttf", "800"=> "http://fonts.gstatic.com/s/crimsonpro/v12/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZTmp8OJE_VNWoyQ.ttf", "900"=> "http://fonts.gstatic.com/s/crimsonpro/v12/q5uUsoa5M_tv7IihmnkabC5XiXCAlXGks1WZZ2p8OJE_VNWoyQ.ttf", "200italic"=> "http://fonts.gstatic.com/s/crimsonpro/v12/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi4Ue5s7dtC4yZNE.ttf", "300italic"=> "http://fonts.gstatic.com/s/crimsonpro/v12/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi7Ke5s7dtC4yZNE.ttf", "italic"=> "http://fonts.gstatic.com/s/crimsonpro/v12/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi6Ue5s7dtC4yZNE.ttf", "500italic"=> "http://fonts.gstatic.com/s/crimsonpro/v12/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi6me5s7dtC4yZNE.ttf", "600italic"=> "http://fonts.gstatic.com/s/crimsonpro/v12/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi5KfJs7dtC4yZNE.ttf", "700italic"=> "http://fonts.gstatic.com/s/crimsonpro/v12/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi5zfJs7dtC4yZNE.ttf", "800italic"=> "http://fonts.gstatic.com/s/crimsonpro/v12/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi4UfJs7dtC4yZNE.ttf", "900italic"=> "http://fonts.gstatic.com/s/crimsonpro/v12/q5uSsoa5M_tv7IihmnkabAReu49Y_Bo-HVKMBi49fJs7dtC4yZNE.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 237 => [ "family"=> "Crimson Text", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "600", 3=> "600italic", 4=> "700", 5=> "700italic", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-22", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/crimsontext/v10/wlp2gwHKFkZgtmSR3NB0oRJvaAJSA_JN3Q.ttf", "italic"=> "http://fonts.gstatic.com/s/crimsontext/v10/wlpogwHKFkZgtmSR3NB0oRJfaghWIfdd3ahG.ttf", "600"=> "http://fonts.gstatic.com/s/crimsontext/v10/wlppgwHKFkZgtmSR3NB0oRJXsCx2C9lR1LFffg.ttf", "600italic"=> "http://fonts.gstatic.com/s/crimsontext/v10/wlprgwHKFkZgtmSR3NB0oRJfajCOD9NV9rRPfrKu.ttf", "700"=> "http://fonts.gstatic.com/s/crimsontext/v10/wlppgwHKFkZgtmSR3NB0oRJX1C12C9lR1LFffg.ttf", "700italic"=> "http://fonts.gstatic.com/s/crimsontext/v10/wlprgwHKFkZgtmSR3NB0oRJfajDqDtNV9rRPfrKu.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 238 => [ "family"=> "Croissant One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/croissantone/v7/3y9n6bU9bTPg4m8NDy3Kq24UM3pqn5cdJ-4.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 239 => [ "family"=> "Crushed", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/crushed/v10/U9Mc6dym6WXImTlFT1kfuIqyLzA.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 240 => [ "family"=> "Cuprum", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "700", 3=> "700italic", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "latin", 3=> "latin-ext", 4=> "vietnamese", ], "version"=> "v11", "lastModified"=> "2019-07-17", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/cuprum/v11/dg4k_pLmvrkcOkB9IeFDh701Sg.ttf", "italic"=> "http://fonts.gstatic.com/s/cuprum/v11/dg4m_pLmvrkcOkBNI-tHpbglShon.ttf", "700"=> "http://fonts.gstatic.com/s/cuprum/v11/dg4n_pLmvrkcOkBFnc5nj5YpQwM-gg.ttf", "700italic"=> "http://fonts.gstatic.com/s/cuprum/v11/dg4h_pLmvrkcOkBNI9P7ipwtYQYugjW4.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 241 => [ "family"=> "Cute Font", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "korean", 1=> "latin", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/cutefont/v8/Noaw6Uny2oWPbSHMrY6vmJNVNC9hkw.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 242 => [ "family"=> "Cutive", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/cutive/v11/NaPZcZ_fHOhV3Ip7T_hDoyqlZQ.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 243 => [ "family"=> "Cutive Mono", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/cutivemono/v8/m8JWjfRfY7WVjVi2E-K9H5RFRG-K3Mud.ttf", ], "category"=> "monospace", "kind"=> "webfonts#webfont" ], 244 => [ "family"=> "DM Mono", "variants"=> [ 0=> "300", 1=> "300italic", 2=> "regular", 3=> "italic", 4=> "500", 5=> "500italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v1", "lastModified"=> "2020-05-06", "files"=> [ "300"=> "http://fonts.gstatic.com/s/dmmono/v1/aFTR7PB1QTsUX8KYvrGyIYSnbKX9Rlk.ttf", "300italic"=> "http://fonts.gstatic.com/s/dmmono/v1/aFTT7PB1QTsUX8KYth-orYataIf4VllXuA.ttf", "regular"=> "http://fonts.gstatic.com/s/dmmono/v1/aFTU7PB1QTsUX8KYhh2aBYyMcKw.ttf", "italic"=> "http://fonts.gstatic.com/s/dmmono/v1/aFTW7PB1QTsUX8KYth-QAa6JYKzkXw.ttf", "500"=> "http://fonts.gstatic.com/s/dmmono/v1/aFTR7PB1QTsUX8KYvumzIYSnbKX9Rlk.ttf", "500italic"=> "http://fonts.gstatic.com/s/dmmono/v1/aFTT7PB1QTsUX8KYth-o9YetaIf4VllXuA.ttf", ], "category"=> "monospace", "kind"=> "webfonts#webfont" ], 245 => [ "family"=> "DM Sans", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "500", 3=> "500italic", 4=> "700", 5=> "700italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v4", "lastModified"=> "2019-11-14", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/dmsans/v4/rP2Hp2ywxg089UriOZSCHBeHFl0.ttf", "italic"=> "http://fonts.gstatic.com/s/dmsans/v4/rP2Fp2ywxg089UriCZaIGDWCBl0O8Q.ttf", "500"=> "http://fonts.gstatic.com/s/dmsans/v4/rP2Cp2ywxg089UriAWCrOB-sClQX6Cg.ttf", "500italic"=> "http://fonts.gstatic.com/s/dmsans/v4/rP2Ap2ywxg089UriCZaw7BymDnYS-Cjk6Q.ttf", "700"=> "http://fonts.gstatic.com/s/dmsans/v4/rP2Cp2ywxg089UriASitOB-sClQX6Cg.ttf", "700italic"=> "http://fonts.gstatic.com/s/dmsans/v4/rP2Ap2ywxg089UriCZawpBqmDnYS-Cjk6Q.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 246 => [ "family"=> "DM Serif Display", "variants"=> [ 0=> "regular", 1=> "italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v4", "lastModified"=> "2019-11-19", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/dmserifdisplay/v4/-nFnOHM81r4j6k0gjAW3mujVU2B2K_d709jy92k.ttf", "italic"=> "http://fonts.gstatic.com/s/dmserifdisplay/v4/-nFhOHM81r4j6k0gjAW3mujVU2B2G_Vx1_r352np3Q.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 247 => [ "family"=> "DM Serif Text", "variants"=> [ 0=> "regular", 1=> "italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v4", "lastModified"=> "2019-11-19", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/dmseriftext/v4/rnCu-xZa_krGokauCeNq1wWyafOPXHIJErY.ttf", "italic"=> "http://fonts.gstatic.com/s/dmseriftext/v4/rnCw-xZa_krGokauCeNq1wWyWfGFWFAMArZKqQ.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 248 => [ "family"=> "Damion", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/damion/v9/hv-XlzJ3KEUe_YZUbWY3MTFgVg.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 249 => [ "family"=> "Dancing Script", "variants"=> [ 0=> "regular", 1=> "500", 2=> "600", 3=> "700", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v14", "lastModified"=> "2020-02-05", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/dancingscript/v14/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BMSoHTeB9ptDqpw.ttf", "500"=> "http://fonts.gstatic.com/s/dancingscript/v14/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7BAyoHTeB9ptDqpw.ttf", "600"=> "http://fonts.gstatic.com/s/dancingscript/v14/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7B7y0HTeB9ptDqpw.ttf", "700"=> "http://fonts.gstatic.com/s/dancingscript/v14/If2cXTr6YS-zF4S-kcSWSVi_sxjsohD9F50Ruu7B1i0HTeB9ptDqpw.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 250 => [ "family"=> "Dangrek", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "khmer", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/dangrek/v11/LYjCdG30nEgoH8E2gCNqqVIuTN4.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 251 => [ "family"=> "Darker Grotesque", "variants"=> [ 0=> "300", 1=> "regular", 2=> "500", 3=> "600", 4=> "700", 5=> "800", 6=> "900", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v1", "lastModified"=> "2019-11-05", "files"=> [ "300"=> "http://fonts.gstatic.com/s/darkergrotesque/v1/U9MA6cuh-mLQlC4BKCtayOfARkSVoxr2AW8hTOsXsX0.ttf", "regular"=> "http://fonts.gstatic.com/s/darkergrotesque/v1/U9MH6cuh-mLQlC4BKCtayOfARkSVm7beJWcKUOI.ttf", "500"=> "http://fonts.gstatic.com/s/darkergrotesque/v1/U9MA6cuh-mLQlC4BKCtayOfARkSVo0L3AW8hTOsXsX0.ttf", "600"=> "http://fonts.gstatic.com/s/darkergrotesque/v1/U9MA6cuh-mLQlC4BKCtayOfARkSVo27wAW8hTOsXsX0.ttf", "700"=> "http://fonts.gstatic.com/s/darkergrotesque/v1/U9MA6cuh-mLQlC4BKCtayOfARkSVowrxAW8hTOsXsX0.ttf", "800"=> "http://fonts.gstatic.com/s/darkergrotesque/v1/U9MA6cuh-mLQlC4BKCtayOfARkSVoxbyAW8hTOsXsX0.ttf", "900"=> "http://fonts.gstatic.com/s/darkergrotesque/v1/U9MA6cuh-mLQlC4BKCtayOfARkSVozLzAW8hTOsXsX0.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 252 => [ "family"=> "David Libre", "variants"=> [ 0=> "regular", 1=> "500", 2=> "700", ], "subsets"=> [ 0=> "hebrew", 1=> "latin", 2=> "latin-ext", 3=> "vietnamese", ], "version"=> "v4", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/davidlibre/v4/snfus0W_99N64iuYSvp4W_l86p6TYS-Y.ttf", "500"=> "http://fonts.gstatic.com/s/davidlibre/v4/snfzs0W_99N64iuYSvp4W8GIw7qbSjORSo9W.ttf", "700"=> "http://fonts.gstatic.com/s/davidlibre/v4/snfzs0W_99N64iuYSvp4W8HAxbqbSjORSo9W.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 253 => [ "family"=> "Dawning of a New Day", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/dawningofanewday/v10/t5t_IQMbOp2SEwuncwLRjMfIg1yYit_nAz8bhWJGNoBE.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 254 => [ "family"=> "Days One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/daysone/v9/mem9YaCnxnKRiYZOCLYVeLkWVNBt.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 255 => [ "family"=> "Dekko", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "devanagari", 1=> "latin", 2=> "latin-ext", ], "version"=> "v6", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/dekko/v6/46khlb_wWjfSrttFR0vsfl1B.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 256 => [ "family"=> "Delius", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/delius/v9/PN_xRfK0pW_9e1rtYcI-jT3L_w.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 257 => [ "family"=> "Delius Swash Caps", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/deliusswashcaps/v11/oY1E8fPLr7v4JWCExZpWebxVKORpXXedKmeBvEYs.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 258 => [ "family"=> "Delius Unicase", "variants"=> [ 0=> "regular", 1=> "700", ], "subsets"=> [ 0=> "latin", ], "version"=> "v13", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/deliusunicase/v13/845BNMEwEIOVT8BmgfSzIr_6mmLHd-73LXWs.ttf", "700"=> "http://fonts.gstatic.com/s/deliusunicase/v13/845CNMEwEIOVT8BmgfSzIr_6mlp7WMr_BmmlS5aw.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 259 => [ "family"=> "Della Respira", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/dellarespira/v7/RLp5K5v44KaueWI6iEJQBiGPRfkSu6EuTHo.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 260 => [ "family"=> "Denk One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/denkone/v7/dg4m_pzhrqcFb2IzROtHpbglShon.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 261 => [ "family"=> "Devonshire", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/devonshire/v8/46kqlbDwWirWr4gtBD2BX0Vq01lYAZM.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 262 => [ "family"=> "Dhurjati", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "telugu", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/dhurjati/v7/_6_8ED3gSeatXfFiFX3ySKQtuTA2.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 263 => [ "family"=> "Didact Gothic", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "greek", 3=> "greek-ext", 4=> "latin", 5=> "latin-ext", ], "version"=> "v13", "lastModified"=> "2019-07-17", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/didactgothic/v13/ahcfv8qz1zt6hCC5G4F_P4ASpUySp0LlcyQ.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 264 => [ "family"=> "Diplomata", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/diplomata/v11/Cn-0JtiMXwhNwp-wKxyfYGxYrdM9Sg.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 265 => [ "family"=> "Diplomata SC", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/diplomatasc/v8/buExpoi3ecvs3kidKgBJo2kf-P5Oaiw4cw.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 266 => [ "family"=> "Do Hyeon", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "korean", 1=> "latin", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/dohyeon/v11/TwMN-I8CRRU2zM86HFE3ZwaH__-C.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 267 => [ "family"=> "Dokdo", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "korean", 1=> "latin", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/dokdo/v8/esDf315XNuCBLxLo4NaMlKcH.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 268 => [ "family"=> "Domine", "variants"=> [ 0=> "regular", 1=> "700", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-17", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/domine/v7/L0x8DFMnlVwD4h3RvPCmRSlUig.ttf", "700"=> "http://fonts.gstatic.com/s/domine/v7/L0x_DFMnlVwD4h3pAN-CTQJIg3uuXg.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 269 => [ "family"=> "Donegal One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/donegalone/v7/m8JWjfRYea-ZnFz6fsK9FZRFRG-K3Mud.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 270 => [ "family"=> "Doppio One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/doppioone/v7/Gg8wN5gSaBfyBw2MqCh-lgshKGpe5Fg.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 271 => [ "family"=> "Dorsa", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/dorsa/v10/yYLn0hjd0OGwqo493XCFxAnQ.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 272 => [ "family"=> "Dosis", "variants"=> [ 0=> "200", 1=> "300", 2=> "regular", 3=> "500", 4=> "600", 5=> "700", 6=> "800", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v17", "lastModified"=> "2020-02-05", "files"=> [ "200"=> "http://fonts.gstatic.com/s/dosis/v17/HhyJU5sn9vOmLxNkIwRSjTVNWLEJt7MV3BkFTq4EPw.ttf", "300"=> "http://fonts.gstatic.com/s/dosis/v17/HhyJU5sn9vOmLxNkIwRSjTVNWLEJabMV3BkFTq4EPw.ttf", "regular"=> "http://fonts.gstatic.com/s/dosis/v17/HhyJU5sn9vOmLxNkIwRSjTVNWLEJN7MV3BkFTq4EPw.ttf", "500"=> "http://fonts.gstatic.com/s/dosis/v17/HhyJU5sn9vOmLxNkIwRSjTVNWLEJBbMV3BkFTq4EPw.ttf", "600"=> "http://fonts.gstatic.com/s/dosis/v17/HhyJU5sn9vOmLxNkIwRSjTVNWLEJ6bQV3BkFTq4EPw.ttf", "700"=> "http://fonts.gstatic.com/s/dosis/v17/HhyJU5sn9vOmLxNkIwRSjTVNWLEJ0LQV3BkFTq4EPw.ttf", "800"=> "http://fonts.gstatic.com/s/dosis/v17/HhyJU5sn9vOmLxNkIwRSjTVNWLEJt7QV3BkFTq4EPw.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 273 => [ "family"=> "Dr Sugiyama", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/drsugiyama/v9/HTxoL2k4N3O9n5I1boGI7abRM4-t-g7y.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 274 => [ "family"=> "Duru Sans", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v13", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/durusans/v13/xn7iYH8xwmSyTvEV_HOxT_fYdN-WZw.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 275 => [ "family"=> "Dynalight", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/dynalight/v8/1Ptsg8LOU_aOmQvTsF4ISotrDfGGxA.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 276 => [ "family"=> "EB Garamond", "variants"=> [ 0=> "regular", 1=> "500", 2=> "600", 3=> "700", 4=> "800", 5=> "italic", 6=> "500italic", 7=> "600italic", 8=> "700italic", 9=> "800italic" ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "greek", 3=> "greek-ext", 4=> "latin", 5=> "latin-ext", 6=> "vietnamese", ], "version"=> "v13", "lastModified"=> "2020-02-05", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/ebgaramond/v13/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-6_RUA4V-e6yHgQ.ttf", "500"=> "http://fonts.gstatic.com/s/ebgaramond/v13/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-2fRUA4V-e6yHgQ.ttf", "600"=> "http://fonts.gstatic.com/s/ebgaramond/v13/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-NfNUA4V-e6yHgQ.ttf", "700"=> "http://fonts.gstatic.com/s/ebgaramond/v13/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-DPNUA4V-e6yHgQ.ttf", "800"=> "http://fonts.gstatic.com/s/ebgaramond/v13/SlGDmQSNjdsmc35JDF1K5E55YMjF_7DPuGi-a_NUA4V-e6yHgQ.ttf", "italic"=> "http://fonts.gstatic.com/s/ebgaramond/v13/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7e8QI96WamXgXFI.ttf", "500italic"=> "http://fonts.gstatic.com/s/ebgaramond/v13/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7eOQI96WamXgXFI.ttf", "600italic"=> "http://fonts.gstatic.com/s/ebgaramond/v13/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7diR496WamXgXFI.ttf", "700italic"=> "http://fonts.gstatic.com/s/ebgaramond/v13/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7dbR496WamXgXFI.ttf", "800italic"=> "http://fonts.gstatic.com/s/ebgaramond/v13/SlGFmQSNjdsmc35JDF1K5GRwUjcdlttVFm-rI7c8R496WamXgXFI.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 277 => [ "family"=> "Eagle Lake", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/eaglelake/v7/ptRMTiqbbuNJDOiKj9wG5O7yKQNute8.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 278 => [ "family"=> "East Sea Dokdo", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "korean", 1=> "latin", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/eastseadokdo/v8/xfuo0Wn2V2_KanASqXSZp22m05_aGavYS18y.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 279 => [ "family"=> "Eater", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/eater/v8/mtG04_FCK7bOvpu2u3FwsXsR.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 280 => [ "family"=> "Economica", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "700", 3=> "700italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/economica/v7/Qw3fZQZaHCLgIWa29ZBrMcgAAl1lfQ.ttf", "italic"=> "http://fonts.gstatic.com/s/economica/v7/Qw3ZZQZaHCLgIWa29ZBbM8IEIFh1fWUl.ttf", "700"=> "http://fonts.gstatic.com/s/economica/v7/Qw3aZQZaHCLgIWa29ZBTjeckCnZ5dHw8iw.ttf", "700italic"=> "http://fonts.gstatic.com/s/economica/v7/Qw3EZQZaHCLgIWa29ZBbM_q4D3x9Vnksi4M7.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 281 => [ "family"=> "Eczar", "variants"=> [ 0=> "regular", 1=> "500", 2=> "600", 3=> "700", 4=> "800", ], "subsets"=> [ 0=> "devanagari", 1=> "latin", 2=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/eczar/v8/BXRlvF3Pi-DLmw0iBu9y8Hf0.ttf", "500"=> "http://fonts.gstatic.com/s/eczar/v8/BXRovF3Pi-DLmzXWL8t622v9WNjW.ttf", "600"=> "http://fonts.gstatic.com/s/eczar/v8/BXRovF3Pi-DLmzX6KMt622v9WNjW.ttf", "700"=> "http://fonts.gstatic.com/s/eczar/v8/BXRovF3Pi-DLmzWeKct622v9WNjW.ttf", "800"=> "http://fonts.gstatic.com/s/eczar/v8/BXRovF3Pi-DLmzWCKst622v9WNjW.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 282 => [ "family"=> "El Messiri", "variants"=> [ 0=> "regular", 1=> "500", 2=> "600", 3=> "700", ], "subsets"=> [ 0=> "arabic", 1=> "cyrillic", 2=> "latin", ], "version"=> "v6", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/elmessiri/v6/K2F0fZBRmr9vQ1pHEey6AoqKAyLzfWo.ttf", "500"=> "http://fonts.gstatic.com/s/elmessiri/v6/K2F3fZBRmr9vQ1pHEey6On6jJyrYYWOMluQ.ttf", "600"=> "http://fonts.gstatic.com/s/elmessiri/v6/K2F3fZBRmr9vQ1pHEey6OlKkJyrYYWOMluQ.ttf", "700"=> "http://fonts.gstatic.com/s/elmessiri/v6/K2F3fZBRmr9vQ1pHEey6OjalJyrYYWOMluQ.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 283 => [ "family"=> "Electrolize", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/electrolize/v8/cIf5Ma1dtE0zSiGSiED7AUEGso5tQafB.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 284 => [ "family"=> "Elsie", "variants"=> [ 0=> "regular", 1=> "900", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/elsie/v9/BCanqZABrez54yYu9slAeLgX.ttf", "900"=> "http://fonts.gstatic.com/s/elsie/v9/BCaqqZABrez54x6q2-1IU6QeXSBk.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 285 => [ "family"=> "Elsie Swash Caps", "variants"=> [ 0=> "regular", 1=> "900", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/elsieswashcaps/v8/845DNN8xGZyVX5MVo_upKf7KnjK0ferVKGWsUo8.ttf", "900"=> "http://fonts.gstatic.com/s/elsieswashcaps/v8/845ENN8xGZyVX5MVo_upKf7KnjK0RW74DG2HToawrdU.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 286 => [ "family"=> "Emblema One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/emblemaone/v8/nKKT-GQ0F5dSY8vzG0rOEIRBHl57G_f_.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 287 => [ "family"=> "Emilys Candy", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/emilyscandy/v7/2EbgL-1mD1Rnb0OGKudbk0y5r9xrX84JjA.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 288 => [ "family"=> "Encode Sans", "variants"=> [ 0=> "100", 1=> "200", 2=> "300", 3=> "regular", 4=> "500", 5=> "600", 6=> "700", 7=> "800", 8=> "900", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v4", "lastModified"=> "2019-07-16", "files"=> [ "100"=> "http://fonts.gstatic.com/s/encodesans/v4/LDI0apOFNxEwR-Bd1O9uYPvIeeLkl7Iw6yg.ttf", "200"=> "http://fonts.gstatic.com/s/encodesans/v4/LDIrapOFNxEwR-Bd1O9uYPtkWMLOub458jGL.ttf", "300"=> "http://fonts.gstatic.com/s/encodesans/v4/LDIrapOFNxEwR-Bd1O9uYPsAW8LOub458jGL.ttf", "regular"=> "http://fonts.gstatic.com/s/encodesans/v4/LDI2apOFNxEwR-Bd1O9uYMOsc-bGkqIw.ttf", "500"=> "http://fonts.gstatic.com/s/encodesans/v4/LDIrapOFNxEwR-Bd1O9uYPtYWsLOub458jGL.ttf", "600"=> "http://fonts.gstatic.com/s/encodesans/v4/LDIrapOFNxEwR-Bd1O9uYPt0XcLOub458jGL.ttf", "700"=> "http://fonts.gstatic.com/s/encodesans/v4/LDIrapOFNxEwR-Bd1O9uYPsQXMLOub458jGL.ttf", "800"=> "http://fonts.gstatic.com/s/encodesans/v4/LDIrapOFNxEwR-Bd1O9uYPsMX8LOub458jGL.ttf", "900"=> "http://fonts.gstatic.com/s/encodesans/v4/LDIrapOFNxEwR-Bd1O9uYPsoXsLOub458jGL.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 289 => [ "family"=> "Encode Sans Condensed", "variants"=> [ 0=> "100", 1=> "200", 2=> "300", 3=> "regular", 4=> "500", 5=> "600", 6=> "700", 7=> "800", 8=> "900", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v4", "lastModified"=> "2019-07-16", "files"=> [ "100"=> "http://fonts.gstatic.com/s/encodesanscondensed/v4/j8_76_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-5a-JLQoFI2KR.ttf", "200"=> "http://fonts.gstatic.com/s/encodesanscondensed/v4/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-SY6pByQJKnuIFA.ttf", "300"=> "http://fonts.gstatic.com/s/encodesanscondensed/v4/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-LY2pByQJKnuIFA.ttf", "regular"=> "http://fonts.gstatic.com/s/encodesanscondensed/v4/j8_16_LD37rqfuwxyIuaZhE6cRXOLtm2gfTGgaWNDw8VIw.ttf", "500"=> "http://fonts.gstatic.com/s/encodesanscondensed/v4/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-dYypByQJKnuIFA.ttf", "600"=> "http://fonts.gstatic.com/s/encodesanscondensed/v4/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-WYupByQJKnuIFA.ttf", "700"=> "http://fonts.gstatic.com/s/encodesanscondensed/v4/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-PYqpByQJKnuIFA.ttf", "800"=> "http://fonts.gstatic.com/s/encodesanscondensed/v4/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-IYmpByQJKnuIFA.ttf", "900"=> "http://fonts.gstatic.com/s/encodesanscondensed/v4/j8_46_LD37rqfuwxyIuaZhE6cRXOLtm2gfT-BYipByQJKnuIFA.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 290 => [ "family"=> "Encode Sans Expanded", "variants"=> [ 0=> "100", 1=> "200", 2=> "300", 3=> "regular", 4=> "500", 5=> "600", 6=> "700", 7=> "800", 8=> "900", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v4", "lastModified"=> "2019-07-16", "files"=> [ "100"=> "http://fonts.gstatic.com/s/encodesansexpanded/v4/c4mx1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpJGKQNicoAbJlw.ttf", "200"=> "http://fonts.gstatic.com/s/encodesansexpanded/v4/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpLqCCNIXIwSP0XD.ttf", "300"=> "http://fonts.gstatic.com/s/encodesansexpanded/v4/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKOCyNIXIwSP0XD.ttf", "regular"=> "http://fonts.gstatic.com/s/encodesansexpanded/v4/c4m_1mF4GcnstG_Jh1QH6ac4hNLeNyeYUqoiIwdAd5Ab.ttf", "500"=> "http://fonts.gstatic.com/s/encodesansexpanded/v4/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpLWCiNIXIwSP0XD.ttf", "600"=> "http://fonts.gstatic.com/s/encodesansexpanded/v4/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpL6DSNIXIwSP0XD.ttf", "700"=> "http://fonts.gstatic.com/s/encodesansexpanded/v4/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKeDCNIXIwSP0XD.ttf", "800"=> "http://fonts.gstatic.com/s/encodesansexpanded/v4/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKCDyNIXIwSP0XD.ttf", "900"=> "http://fonts.gstatic.com/s/encodesansexpanded/v4/c4mw1mF4GcnstG_Jh1QH6ac4hNLeNyeYUpKmDiNIXIwSP0XD.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 291 => [ "family"=> "Encode Sans Semi Condensed", "variants"=> [ 0=> "100", 1=> "200", 2=> "300", 3=> "regular", 4=> "500", 5=> "600", 6=> "700", 7=> "800", 8=> "900", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v4", "lastModified"=> "2019-07-16", "files"=> [ "100"=> "http://fonts.gstatic.com/s/encodesanssemicondensed/v4/3qT6oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1T19MFtQ9jpVUA.ttf", "200"=> "http://fonts.gstatic.com/s/encodesanssemicondensed/v4/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1RZ1eFHbdTgTFmr.ttf", "300"=> "http://fonts.gstatic.com/s/encodesanssemicondensed/v4/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Q91uFHbdTgTFmr.ttf", "regular"=> "http://fonts.gstatic.com/s/encodesanssemicondensed/v4/3qT4oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG2yR_sVPRsjp.ttf", "500"=> "http://fonts.gstatic.com/s/encodesanssemicondensed/v4/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Rl1-FHbdTgTFmr.ttf", "600"=> "http://fonts.gstatic.com/s/encodesanssemicondensed/v4/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1RJ0OFHbdTgTFmr.ttf", "700"=> "http://fonts.gstatic.com/s/encodesanssemicondensed/v4/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Qt0eFHbdTgTFmr.ttf", "800"=> "http://fonts.gstatic.com/s/encodesanssemicondensed/v4/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1Qx0uFHbdTgTFmr.ttf", "900"=> "http://fonts.gstatic.com/s/encodesanssemicondensed/v4/3qT7oiKqnDuUtQUEHMoXcmspmy55SFWrXFRp9FTOG1QV0-FHbdTgTFmr.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 292 => [ "family"=> "Encode Sans Semi Expanded", "variants"=> [ 0=> "100", 1=> "200", 2=> "300", 3=> "regular", 4=> "500", 5=> "600", 6=> "700", 7=> "800", 8=> "900", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v5", "lastModified"=> "2019-07-16", "files"=> [ "100"=> "http://fonts.gstatic.com/s/encodesanssemiexpanded/v5/ke8xOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM-41KwrlKXeOEA.ttf", "200"=> "http://fonts.gstatic.com/s/encodesanssemiexpanded/v5/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM0IUCyDLJX6XCWU.ttf", "300"=> "http://fonts.gstatic.com/s/encodesanssemiexpanded/v5/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMyYXCyDLJX6XCWU.ttf", "regular"=> "http://fonts.gstatic.com/s/encodesanssemiexpanded/v5/ke83OhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TC4o_LyjgOXc.ttf", "500"=> "http://fonts.gstatic.com/s/encodesanssemiexpanded/v5/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM34WCyDLJX6XCWU.ttf", "600"=> "http://fonts.gstatic.com/s/encodesanssemiexpanded/v5/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TM1IRCyDLJX6XCWU.ttf", "700"=> "http://fonts.gstatic.com/s/encodesanssemiexpanded/v5/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMzYQCyDLJX6XCWU.ttf", "800"=> "http://fonts.gstatic.com/s/encodesanssemiexpanded/v5/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMyoTCyDLJX6XCWU.ttf", "900"=> "http://fonts.gstatic.com/s/encodesanssemiexpanded/v5/ke8yOhAPMEZs-BDuzwftTNJ85JvwMOzE9d9Cca5TMw4SCyDLJX6XCWU.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 293 => [ "family"=> "Engagement", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/engagement/v9/x3dlckLDZbqa7RUs9MFVXNossybsHQI.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 294 => [ "family"=> "Englebert", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/englebert/v7/xn7iYH8w2XGrC8AR4HSxT_fYdN-WZw.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 295 => [ "family"=> "Enriqueta", "variants"=> [ 0=> "regular", 1=> "500", 2=> "600", 3=> "700", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v9", "lastModified"=> "2019-07-26", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/enriqueta/v9/goksH6L7AUFrRvV44HVTS0CjkP1Yog.ttf", "500"=> "http://fonts.gstatic.com/s/enriqueta/v9/gokpH6L7AUFrRvV44HVrv2mHmNZEq6TTFw.ttf", "600"=> "http://fonts.gstatic.com/s/enriqueta/v9/gokpH6L7AUFrRvV44HVrk26HmNZEq6TTFw.ttf", "700"=> "http://fonts.gstatic.com/s/enriqueta/v9/gokpH6L7AUFrRvV44HVr92-HmNZEq6TTFw.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 296 => [ "family"=> "Erica One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/ericaone/v10/WBLnrEXccV9VGrOKmGD1W0_MJMGxiQ.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 297 => [ "family"=> "Esteban", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/esteban/v8/r05bGLZE-bdGdN-GdOuD5jokU8E.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 298 => [ "family"=> "Euphoria Script", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/euphoriascript/v8/mFTpWb0X2bLb_cx6To2B8GpKoD5ak_ZT1D8x7Q.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 299 => [ "family"=> "Ewert", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/ewert/v7/va9I4kzO2tFODYBvS-J3kbDP.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 300 => [ "family"=> "Exo", "variants"=> [ 0=> "100", 1=> "200", 2=> "300", 3=> "regular", 4=> "500", 5=> "600", 6=> "700", 7=> "800", 8=> "900", 9=> "100italic", 10=> "200italic", 11=> "300italic", 12=> "italic", 13=> "500italic", 14=> "600italic", 15=> "700italic", 16=> "800italic", 17=> "900italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v10", "lastModified"=> "2020-05-01", "files"=> [ "100"=> "http://fonts.gstatic.com/s/exo/v10/4UaZrEtFpBI4f1ZSIK9d4LjJ4lM2CwNsOl4p5Is.ttf", "200"=> "http://fonts.gstatic.com/s/exo/v10/4UaZrEtFpBI4f1ZSIK9d4LjJ4tM3CwNsOl4p5Is.ttf", "300"=> "http://fonts.gstatic.com/s/exo/v10/4UaZrEtFpBI4f1ZSIK9d4LjJ4g03CwNsOl4p5Is.ttf", "regular"=> "http://fonts.gstatic.com/s/exo/v10/4UaZrEtFpBI4f1ZSIK9d4LjJ4lM3CwNsOl4p5Is.ttf", "500"=> "http://fonts.gstatic.com/s/exo/v10/4UaZrEtFpBI4f1ZSIK9d4LjJ4mE3CwNsOl4p5Is.ttf", "600"=> "http://fonts.gstatic.com/s/exo/v10/4UaZrEtFpBI4f1ZSIK9d4LjJ4o0wCwNsOl4p5Is.ttf", "700"=> "http://fonts.gstatic.com/s/exo/v10/4UaZrEtFpBI4f1ZSIK9d4LjJ4rQwCwNsOl4p5Is.ttf", "800"=> "http://fonts.gstatic.com/s/exo/v10/4UaZrEtFpBI4f1ZSIK9d4LjJ4tMwCwNsOl4p5Is.ttf", "900"=> "http://fonts.gstatic.com/s/exo/v10/4UaZrEtFpBI4f1ZSIK9d4LjJ4vowCwNsOl4p5Is.ttf", "100italic"=> "http://fonts.gstatic.com/s/exo/v10/4UafrEtFpBISdmSt-MY2ehbO95t040FmPnws9Iu-uA.ttf", "200italic"=> "http://fonts.gstatic.com/s/exo/v10/4UafrEtFpBISdmSt-MY2ehbO95t0Y0BmPnws9Iu-uA.ttf", "300italic"=> "http://fonts.gstatic.com/s/exo/v10/4UafrEtFpBISdmSt-MY2ehbO95t0vUBmPnws9Iu-uA.ttf", "italic"=> "http://fonts.gstatic.com/s/exo/v10/4UafrEtFpBISdmSt-MY2ehbO95t040BmPnws9Iu-uA.ttf", "500italic"=> "http://fonts.gstatic.com/s/exo/v10/4UafrEtFpBISdmSt-MY2ehbO95t00UBmPnws9Iu-uA.ttf", "600italic"=> "http://fonts.gstatic.com/s/exo/v10/4UafrEtFpBISdmSt-MY2ehbO95t0PUdmPnws9Iu-uA.ttf", "700italic"=> "http://fonts.gstatic.com/s/exo/v10/4UafrEtFpBISdmSt-MY2ehbO95t0BEdmPnws9Iu-uA.ttf", "800italic"=> "http://fonts.gstatic.com/s/exo/v10/4UafrEtFpBISdmSt-MY2ehbO95t0Y0dmPnws9Iu-uA.ttf", "900italic"=> "http://fonts.gstatic.com/s/exo/v10/4UafrEtFpBISdmSt-MY2ehbO95t0SkdmPnws9Iu-uA.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 301 => [ "family"=> "Exo 2", "variants"=> [ 0=> "100", 1=> "200", 2=> "300", 3=> "regular", 4=> "500", 5=> "600", 6=> "700", 7=> "800", 8=> "900", 9=> "100italic", 10=> "200italic", 11=> "300italic", 12=> "italic", 13=> "500italic", 14=> "600italic", 15=> "700italic", 16=> "800italic", 17=> "900italic", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "latin", 3=> "latin-ext", 4=> "vietnamese", ], "version"=> "v8", "lastModified"=> "2020-03-20", "files"=> [ "100"=> "http://fonts.gstatic.com/s/exo2/v8/7cH1v4okm5zmbvwkAx_sfcEuiD8jvvOcPtq-rpvLpQ.ttf", "200"=> "http://fonts.gstatic.com/s/exo2/v8/7cH1v4okm5zmbvwkAx_sfcEuiD8jPvKcPtq-rpvLpQ.ttf", "300"=> "http://fonts.gstatic.com/s/exo2/v8/7cH1v4okm5zmbvwkAx_sfcEuiD8j4PKcPtq-rpvLpQ.ttf", "regular"=> "http://fonts.gstatic.com/s/exo2/v8/7cH1v4okm5zmbvwkAx_sfcEuiD8jvvKcPtq-rpvLpQ.ttf", "500"=> "http://fonts.gstatic.com/s/exo2/v8/7cH1v4okm5zmbvwkAx_sfcEuiD8jjPKcPtq-rpvLpQ.ttf", "600"=> "http://fonts.gstatic.com/s/exo2/v8/7cH1v4okm5zmbvwkAx_sfcEuiD8jYPWcPtq-rpvLpQ.ttf", "700"=> "http://fonts.gstatic.com/s/exo2/v8/7cH1v4okm5zmbvwkAx_sfcEuiD8jWfWcPtq-rpvLpQ.ttf", "800"=> "http://fonts.gstatic.com/s/exo2/v8/7cH1v4okm5zmbvwkAx_sfcEuiD8jPvWcPtq-rpvLpQ.ttf", "900"=> "http://fonts.gstatic.com/s/exo2/v8/7cH1v4okm5zmbvwkAx_sfcEuiD8jF_WcPtq-rpvLpQ.ttf", "100italic"=> "http://fonts.gstatic.com/s/exo2/v8/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drF0fNC6jJ7bpQBL.ttf", "200italic"=> "http://fonts.gstatic.com/s/exo2/v8/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drH0fdC6jJ7bpQBL.ttf", "300italic"=> "http://fonts.gstatic.com/s/exo2/v8/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drEqfdC6jJ7bpQBL.ttf", "italic"=> "http://fonts.gstatic.com/s/exo2/v8/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drF0fdC6jJ7bpQBL.ttf", "500italic"=> "http://fonts.gstatic.com/s/exo2/v8/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drFGfdC6jJ7bpQBL.ttf", "600italic"=> "http://fonts.gstatic.com/s/exo2/v8/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drGqetC6jJ7bpQBL.ttf", "700italic"=> "http://fonts.gstatic.com/s/exo2/v8/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drGTetC6jJ7bpQBL.ttf", "800italic"=> "http://fonts.gstatic.com/s/exo2/v8/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drH0etC6jJ7bpQBL.ttf", "900italic"=> "http://fonts.gstatic.com/s/exo2/v8/7cH3v4okm5zmbtYtMeA0FKq0Jjg2drHdetC6jJ7bpQBL.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 302 => [ "family"=> "Expletus Sans", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "500", 3=> "500italic", 4=> "600", 5=> "600italic", 6=> "700", 7=> "700italic", ], "subsets"=> [ 0=> "latin", ], "version"=> "v13", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/expletussans/v13/RLp5K5v5_bqufTYdnhFzDj2dRfkSu6EuTHo.ttf", "italic"=> "http://fonts.gstatic.com/s/expletussans/v13/RLpnK5v5_bqufTYdnhFzDj2ddfsYv4MrXHrRDA.ttf", "500"=> "http://fonts.gstatic.com/s/expletussans/v13/RLpkK5v5_bqufTYdnhFzDj2dfQ07n6kFUHPIFaU.ttf", "500italic"=> "http://fonts.gstatic.com/s/expletussans/v13/RLpiK5v5_bqufTYdnhFzDj2ddfsgS6oPVFHNBaVImA.ttf", "600"=> "http://fonts.gstatic.com/s/expletussans/v13/RLpkK5v5_bqufTYdnhFzDj2dfSE8n6kFUHPIFaU.ttf", "600italic"=> "http://fonts.gstatic.com/s/expletussans/v13/RLpiK5v5_bqufTYdnhFzDj2ddfsgZ60PVFHNBaVImA.ttf", "700"=> "http://fonts.gstatic.com/s/expletussans/v13/RLpkK5v5_bqufTYdnhFzDj2dfUU9n6kFUHPIFaU.ttf", "700italic"=> "http://fonts.gstatic.com/s/expletussans/v13/RLpiK5v5_bqufTYdnhFzDj2ddfsgA6wPVFHNBaVImA.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 303 => [ "family"=> "Fahkwang", "variants"=> [ 0=> "200", 1=> "200italic", 2=> "300", 3=> "300italic", 4=> "regular", 5=> "italic", 6=> "500", 7=> "500italic", 8=> "600", 9=> "600italic", 10=> "700", 11=> "700italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "thai", 3=> "vietnamese", ], "version"=> "v3", "lastModified"=> "2019-11-05", "files"=> [ "200"=> "http://fonts.gstatic.com/s/fahkwang/v3/Noa26Uj3zpmBOgbNpOJHmZlRFipxkwjx.ttf", "200italic"=> "http://fonts.gstatic.com/s/fahkwang/v3/Noa06Uj3zpmBOgbNpOqNgHFQHC5Tlhjxdw4.ttf", "300"=> "http://fonts.gstatic.com/s/fahkwang/v3/Noa26Uj3zpmBOgbNpOIjmplRFipxkwjx.ttf", "300italic"=> "http://fonts.gstatic.com/s/fahkwang/v3/Noa06Uj3zpmBOgbNpOqNgBVTHC5Tlhjxdw4.ttf", "regular"=> "http://fonts.gstatic.com/s/fahkwang/v3/Noax6Uj3zpmBOgbNpNqPsr1ZPTZ4.ttf", "italic"=> "http://fonts.gstatic.com/s/fahkwang/v3/Noa36Uj3zpmBOgbNpOqNuLl7OCZ4ihE.ttf", "500"=> "http://fonts.gstatic.com/s/fahkwang/v3/Noa26Uj3zpmBOgbNpOJ7m5lRFipxkwjx.ttf", "500italic"=> "http://fonts.gstatic.com/s/fahkwang/v3/Noa06Uj3zpmBOgbNpOqNgE1SHC5Tlhjxdw4.ttf", "600"=> "http://fonts.gstatic.com/s/fahkwang/v3/Noa26Uj3zpmBOgbNpOJXnJlRFipxkwjx.ttf", "600italic"=> "http://fonts.gstatic.com/s/fahkwang/v3/Noa06Uj3zpmBOgbNpOqNgGFVHC5Tlhjxdw4.ttf", "700"=> "http://fonts.gstatic.com/s/fahkwang/v3/Noa26Uj3zpmBOgbNpOIznZlRFipxkwjx.ttf", "700italic"=> "http://fonts.gstatic.com/s/fahkwang/v3/Noa06Uj3zpmBOgbNpOqNgAVUHC5Tlhjxdw4.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 304 => [ "family"=> "Fanwood Text", "variants"=> [ 0=> "regular", 1=> "italic", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/fanwoodtext/v9/3XFtErwl05Ad_vSCF6Fq7xXGRdbY1P1Sbg.ttf", "italic"=> "http://fonts.gstatic.com/s/fanwoodtext/v9/3XFzErwl05Ad_vSCF6Fq7xX2R9zc9vhCblye.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 305 => [ "family"=> "Farro", "variants"=> [ 0=> "300", 1=> "regular", 2=> "500", 3=> "700", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v1", "lastModified"=> "2019-11-05", "files"=> [ "300"=> "http://fonts.gstatic.com/s/farro/v1/i7dJIFl3byGNHa3hNJ6-WkJUQUq7.ttf", "regular"=> "http://fonts.gstatic.com/s/farro/v1/i7dEIFl3byGNHZVNHLq2cV5d.ttf", "500"=> "http://fonts.gstatic.com/s/farro/v1/i7dJIFl3byGNHa25NZ6-WkJUQUq7.ttf", "700"=> "http://fonts.gstatic.com/s/farro/v1/i7dJIFl3byGNHa3xM56-WkJUQUq7.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 306 => [ "family"=> "Farsan", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "gujarati", 1=> "latin", 2=> "latin-ext", 3=> "vietnamese", ], "version"=> "v5", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/farsan/v5/VEMwRoJ0vY_zsyz62q-pxDX9rQ.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 307 => [ "family"=> "Fascinate", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/fascinate/v8/z7NWdRrufC8XJK0IIEli1LbQRPyNrw.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 308 => [ "family"=> "Fascinate Inline", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/fascinateinline/v9/jVyR7mzzB3zc-jp6QCAu60poNqIy1g3CfRXxWZQ.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 309 => [ "family"=> "Faster One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/fasterone/v11/H4ciBXCHmdfClFb-vWhfyLuShq63czE.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 310 => [ "family"=> "Fasthand", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "khmer", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/fasthand/v10/0yb9GDohyKTYn_ZEESkuYkw2rQg1.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 311 => [ "family"=> "Fauna One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/faunaone/v7/wlpzgwTPBVpjpCuwkuEx2UxLYClOCg.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 312 => [ "family"=> "Faustina", "variants"=> [ 0=> "regular", 1=> "500", 2=> "600", 3=> "700", 4=> "italic", 5=> "500italic", 6=> "600italic", 7=> "700italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v6", "lastModified"=> "2020-02-05", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/faustina/v6/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlsgoEvGVWWe8tbEg.ttf", "500"=> "http://fonts.gstatic.com/s/faustina/v6/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlssIEvGVWWe8tbEg.ttf", "600"=> "http://fonts.gstatic.com/s/faustina/v6/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlsXIYvGVWWe8tbEg.ttf", "700"=> "http://fonts.gstatic.com/s/faustina/v6/XLY4IZPxYpJfTbZAFXWzNT2SO8wpWHlsZYYvGVWWe8tbEg.ttf", "italic"=> "http://fonts.gstatic.com/s/faustina/v6/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsLHWl-SWc5LEnoF.ttf", "500italic"=> "http://fonts.gstatic.com/s/faustina/v6/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsL1Wl-SWc5LEnoF.ttf", "600italic"=> "http://fonts.gstatic.com/s/faustina/v6/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsIZXV-SWc5LEnoF.ttf", "700italic"=> "http://fonts.gstatic.com/s/faustina/v6/XLY2IZPxYpJfTbZAFV-6B8JKUqez9n55SsIgXV-SWc5LEnoF.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 313 => [ "family"=> "Federant", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v12", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/federant/v12/2sDdZGNfip_eirT0_U0jRUG0AqUc.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 314 => [ "family"=> "Federo", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/federo/v11/iJWFBX-cbD_ETsbmjVOe2WTG7Q.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 315 => [ "family"=> "Felipa", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/felipa/v7/FwZa7-owz1Eu4F_wSNSEwM2zpA.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 316 => [ "family"=> "Fenix", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/fenix/v7/XoHo2YL_S7-g5ostKzAFvs8o.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 317 => [ "family"=> "Finger Paint", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/fingerpaint/v9/0QInMXVJ-o-oRn_7dron8YWO85bS8ANesw.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 318 => [ "family"=> "Fira Code", "variants"=> [ 0=> "300", 1=> "regular", 2=> "500", 3=> "600", 4=> "700", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "greek", 3=> "greek-ext", 4=> "latin", 5=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2020-04-21", "files"=> [ "300"=> "http://fonts.gstatic.com/s/firacode/v8/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_GNsFVfxN87gsj0.ttf", "regular"=> "http://fonts.gstatic.com/s/firacode/v8/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_D1sFVfxN87gsj0.ttf", "500"=> "http://fonts.gstatic.com/s/firacode/v8/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_A9sFVfxN87gsj0.ttf", "600"=> "http://fonts.gstatic.com/s/firacode/v8/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_ONrFVfxN87gsj0.ttf", "700"=> "http://fonts.gstatic.com/s/firacode/v8/uU9eCBsR6Z2vfE9aq3bL0fxyUs4tcw4W_NprFVfxN87gsj0.ttf", ], "category"=> "monospace", "kind"=> "webfonts#webfont" ], 319 => [ "family"=> "Fira Mono", "variants"=> [ 0=> "regular", 1=> "500", 2=> "700", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "greek", 3=> "greek-ext", 4=> "latin", 5=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/firamono/v8/N0bX2SlFPv1weGeLZDtQIfTTkdbJYA.ttf", "500"=> "http://fonts.gstatic.com/s/firamono/v8/N0bS2SlFPv1weGeLZDto1d33mf3VaZBRBQ.ttf", "700"=> "http://fonts.gstatic.com/s/firamono/v8/N0bS2SlFPv1weGeLZDtondv3mf3VaZBRBQ.ttf", ], "category"=> "monospace", "kind"=> "webfonts#webfont" ], 320 => [ "family"=> "Fira Sans", "variants"=> [ 0=> "100", 1=> "100italic", 2=> "200", 3=> "200italic", 4=> "300", 5=> "300italic", 6=> "regular", 7=> "italic", 8=> "500", 9=> "500italic", 10=> "600", 11=> "600italic", 12=> "700", 13=> "700italic", 14=> "800", 15=> "800italic", 16=> "900", 17=> "900italic", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "greek", 3=> "greek-ext", 4=> "latin", 5=> "latin-ext", 6=> "vietnamese", ], "version"=> "v10", "lastModified"=> "2019-07-22", "files"=> [ "100"=> "http://fonts.gstatic.com/s/firasans/v10/va9C4kDNxMZdWfMOD5Vn9IjOazP3dUTP.ttf", "100italic"=> "http://fonts.gstatic.com/s/firasans/v10/va9A4kDNxMZdWfMOD5VvkrCqYTfVcFTPj0s.ttf", "200"=> "http://fonts.gstatic.com/s/firasans/v10/va9B4kDNxMZdWfMOD5VnWKnuQR37fF3Wlg.ttf", "200italic"=> "http://fonts.gstatic.com/s/firasans/v10/va9f4kDNxMZdWfMOD5VvkrAGQBf_XljGllLX.ttf", "300"=> "http://fonts.gstatic.com/s/firasans/v10/va9B4kDNxMZdWfMOD5VnPKruQR37fF3Wlg.ttf", "300italic"=> "http://fonts.gstatic.com/s/firasans/v10/va9f4kDNxMZdWfMOD5VvkrBiQxf_XljGllLX.ttf", "regular"=> "http://fonts.gstatic.com/s/firasans/v10/va9E4kDNxMZdWfMOD5VfkILKSTbndQ.ttf", "italic"=> "http://fonts.gstatic.com/s/firasans/v10/va9C4kDNxMZdWfMOD5VvkojOazP3dUTP.ttf", "500"=> "http://fonts.gstatic.com/s/firasans/v10/va9B4kDNxMZdWfMOD5VnZKvuQR37fF3Wlg.ttf", "500italic"=> "http://fonts.gstatic.com/s/firasans/v10/va9f4kDNxMZdWfMOD5VvkrA6Qhf_XljGllLX.ttf", "600"=> "http://fonts.gstatic.com/s/firasans/v10/va9B4kDNxMZdWfMOD5VnSKzuQR37fF3Wlg.ttf", "600italic"=> "http://fonts.gstatic.com/s/firasans/v10/va9f4kDNxMZdWfMOD5VvkrAWRRf_XljGllLX.ttf", "700"=> "http://fonts.gstatic.com/s/firasans/v10/va9B4kDNxMZdWfMOD5VnLK3uQR37fF3Wlg.ttf", "700italic"=> "http://fonts.gstatic.com/s/firasans/v10/va9f4kDNxMZdWfMOD5VvkrByRBf_XljGllLX.ttf", "800"=> "http://fonts.gstatic.com/s/firasans/v10/va9B4kDNxMZdWfMOD5VnMK7uQR37fF3Wlg.ttf", "800italic"=> "http://fonts.gstatic.com/s/firasans/v10/va9f4kDNxMZdWfMOD5VvkrBuRxf_XljGllLX.ttf", "900"=> "http://fonts.gstatic.com/s/firasans/v10/va9B4kDNxMZdWfMOD5VnFK_uQR37fF3Wlg.ttf", "900italic"=> "http://fonts.gstatic.com/s/firasans/v10/va9f4kDNxMZdWfMOD5VvkrBKRhf_XljGllLX.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 321 => [ "family"=> "Fira Sans Condensed", "variants"=> [ 0=> "100", 1=> "100italic", 2=> "200", 3=> "200italic", 4=> "300", 5=> "300italic", 6=> "regular", 7=> "italic", 8=> "500", 9=> "500italic", 10=> "600", 11=> "600italic", 12=> "700", 13=> "700italic", 14=> "800", 15=> "800italic", 16=> "900", 17=> "900italic", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "greek", 3=> "greek-ext", 4=> "latin", 5=> "latin-ext", 6=> "vietnamese", ], "version"=> "v4", "lastModified"=> "2019-07-17", "files"=> [ "100"=> "http://fonts.gstatic.com/s/firasanscondensed/v4/wEOjEADFm8hSaQTFG18FErVhsC9x-tarWZXtqOlQfx9CjA.ttf", "100italic"=> "http://fonts.gstatic.com/s/firasanscondensed/v4/wEOtEADFm8hSaQTFG18FErVhsC9x-tarUfPVzONUXRpSjJcu.ttf", "200"=> "http://fonts.gstatic.com/s/firasanscondensed/v4/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWTnMiMN-cxZblY4.ttf", "200italic"=> "http://fonts.gstatic.com/s/firasanscondensed/v4/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVYMJ0dzRehY43EA.ttf", "300"=> "http://fonts.gstatic.com/s/firasanscondensed/v4/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWV3PiMN-cxZblY4.ttf", "300italic"=> "http://fonts.gstatic.com/s/firasanscondensed/v4/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVBMF0dzRehY43EA.ttf", "regular"=> "http://fonts.gstatic.com/s/firasanscondensed/v4/wEOhEADFm8hSaQTFG18FErVhsC9x-tarYfHnrMtVbx8.ttf", "italic"=> "http://fonts.gstatic.com/s/firasanscondensed/v4/wEOjEADFm8hSaQTFG18FErVhsC9x-tarUfPtqOlQfx9CjA.ttf", "500"=> "http://fonts.gstatic.com/s/firasanscondensed/v4/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWQXOiMN-cxZblY4.ttf", "500italic"=> "http://fonts.gstatic.com/s/firasanscondensed/v4/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVXMB0dzRehY43EA.ttf", "600"=> "http://fonts.gstatic.com/s/firasanscondensed/v4/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWSnJiMN-cxZblY4.ttf", "600italic"=> "http://fonts.gstatic.com/s/firasanscondensed/v4/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVcMd0dzRehY43EA.ttf", "700"=> "http://fonts.gstatic.com/s/firasanscondensed/v4/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWU3IiMN-cxZblY4.ttf", "700italic"=> "http://fonts.gstatic.com/s/firasanscondensed/v4/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVFMZ0dzRehY43EA.ttf", "800"=> "http://fonts.gstatic.com/s/firasanscondensed/v4/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWVHLiMN-cxZblY4.ttf", "800italic"=> "http://fonts.gstatic.com/s/firasanscondensed/v4/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVCMV0dzRehY43EA.ttf", "900"=> "http://fonts.gstatic.com/s/firasanscondensed/v4/wEOsEADFm8hSaQTFG18FErVhsC9x-tarWXXKiMN-cxZblY4.ttf", "900italic"=> "http://fonts.gstatic.com/s/firasanscondensed/v4/wEOuEADFm8hSaQTFG18FErVhsC9x-tarUfPVLMR0dzRehY43EA.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 322 => [ "family"=> "Fira Sans Extra Condensed", "variants"=> [ 0=> "100", 1=> "100italic", 2=> "200", 3=> "200italic", 4=> "300", 5=> "300italic", 6=> "regular", 7=> "italic", 8=> "500", 9=> "500italic", 10=> "600", 11=> "600italic", 12=> "700", 13=> "700italic", 14=> "800", 15=> "800italic", 16=> "900", 17=> "900italic", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "greek", 3=> "greek-ext", 4=> "latin", 5=> "latin-ext", 6=> "vietnamese", ], "version"=> "v4", "lastModified"=> "2019-07-17", "files"=> [ "100"=> "http://fonts.gstatic.com/s/firasansextracondensed/v4/NaPMcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3Zyuv1WarE9ncg.ttf", "100italic"=> "http://fonts.gstatic.com/s/firasansextracondensed/v4/NaPOcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqW21-ejkp3cn22.ttf", "200"=> "http://fonts.gstatic.com/s/firasansextracondensed/v4/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3TCPn3-0oEZ-a2Q.ttf", "200italic"=> "http://fonts.gstatic.com/s/firasansextracondensed/v4/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWd36-pGR7e2SvJQ.ttf", "300"=> "http://fonts.gstatic.com/s/firasansextracondensed/v4/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3VSMn3-0oEZ-a2Q.ttf", "300italic"=> "http://fonts.gstatic.com/s/firasansextracondensed/v4/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWE32-pGR7e2SvJQ.ttf", "regular"=> "http://fonts.gstatic.com/s/firasansextracondensed/v4/NaPKcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda5fiku3efvE8.ttf", "italic"=> "http://fonts.gstatic.com/s/firasansextracondensed/v4/NaPMcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fquv1WarE9ncg.ttf", "500"=> "http://fonts.gstatic.com/s/firasansextracondensed/v4/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3QyNn3-0oEZ-a2Q.ttf", "500italic"=> "http://fonts.gstatic.com/s/firasansextracondensed/v4/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWS3y-pGR7e2SvJQ.ttf", "600"=> "http://fonts.gstatic.com/s/firasansextracondensed/v4/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3SCKn3-0oEZ-a2Q.ttf", "600italic"=> "http://fonts.gstatic.com/s/firasansextracondensed/v4/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWZ3u-pGR7e2SvJQ.ttf", "700"=> "http://fonts.gstatic.com/s/firasansextracondensed/v4/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3USLn3-0oEZ-a2Q.ttf", "700italic"=> "http://fonts.gstatic.com/s/firasansextracondensed/v4/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWA3q-pGR7e2SvJQ.ttf", "800"=> "http://fonts.gstatic.com/s/firasansextracondensed/v4/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3ViIn3-0oEZ-a2Q.ttf", "800italic"=> "http://fonts.gstatic.com/s/firasansextracondensed/v4/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWH3m-pGR7e2SvJQ.ttf", "900"=> "http://fonts.gstatic.com/s/firasansextracondensed/v4/NaPPcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda3XyJn3-0oEZ-a2Q.ttf", "900italic"=> "http://fonts.gstatic.com/s/firasansextracondensed/v4/NaPxcYDaAO5dirw6IaFn7lPJFqXmS-M9Atn3wgda1fqWO3i-pGR7e2SvJQ.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 323 => [ "family"=> "Fjalla One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-17", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/fjallaone/v7/Yq6R-LCAWCX3-6Ky7FAFnOZwkxgtUb8.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 324 => [ "family"=> "Fjord One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/fjordone/v8/zOL-4pbEnKBY_9S1jNKr6e5As-FeiQ.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 325 => [ "family"=> "Flamenco", "variants"=> [ 0=> "300", 1=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "300"=> "http://fonts.gstatic.com/s/flamenco/v10/neIPzCehqYguo67ssZ0qNIkyepH9qGsf.ttf", "regular"=> "http://fonts.gstatic.com/s/flamenco/v10/neIIzCehqYguo67ssaWGHK06UY30.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 326 => [ "family"=> "Flavors", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v9", "lastModified"=> "2019-07-26", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/flavors/v9/FBV2dDrhxqmveJTpbkzlNqkG9UY.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 327 => [ "family"=> "Fondamento", "variants"=> [ 0=> "regular", 1=> "italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/fondamento/v10/4UaHrEJGsxNmFTPDnkaJx63j5pN1MwI.ttf", "italic"=> "http://fonts.gstatic.com/s/fondamento/v10/4UaFrEJGsxNmFTPDnkaJ96_p4rFwIwJePw.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 328 => [ "family"=> "Fontdiner Swanky", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/fontdinerswanky/v10/ijwOs4XgRNsiaI5-hcVb4hQgMvCD4uEfKiGvxts.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 329 => [ "family"=> "Forum", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "latin", 3=> "latin-ext", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/forum/v10/6aey4Ky-Vb8Ew_IWMJMa3mnT.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 330 => [ "family"=> "Francois One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v14", "lastModified"=> "2019-07-17", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/francoisone/v14/_Xmr-H4zszafZw3A-KPSZutNxgKQu_avAg.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 331 => [ "family"=> "Frank Ruhl Libre", "variants"=> [ 0=> "300", 1=> "regular", 2=> "500", 3=> "700", 4=> "900", ], "subsets"=> [ 0=> "hebrew", 1=> "latin", 2=> "latin-ext", ], "version"=> "v5", "lastModified"=> "2019-07-17", "files"=> [ "300"=> "http://fonts.gstatic.com/s/frankruhllibre/v5/j8_36_fAw7jrcalD7oKYNX0QfAnPUxvHxJDMhYeIHw8.ttf", "regular"=> "http://fonts.gstatic.com/s/frankruhllibre/v5/j8_w6_fAw7jrcalD7oKYNX0QfAnPa7fv4JjnmY4.ttf", "500"=> "http://fonts.gstatic.com/s/frankruhllibre/v5/j8_36_fAw7jrcalD7oKYNX0QfAnPU0PGxJDMhYeIHw8.ttf", "700"=> "http://fonts.gstatic.com/s/frankruhllibre/v5/j8_36_fAw7jrcalD7oKYNX0QfAnPUwvAxJDMhYeIHw8.ttf", "900"=> "http://fonts.gstatic.com/s/frankruhllibre/v5/j8_36_fAw7jrcalD7oKYNX0QfAnPUzPCxJDMhYeIHw8.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 332 => [ "family"=> "Freckle Face", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/freckleface/v8/AMOWz4SXrmKHCvXTohxY-YI0U1K2w9lb4g.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 333 => [ "family"=> "Fredericka the Great", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v9", "lastModified"=> "2019-07-26", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/frederickathegreat/v9/9Bt33CxNwt7aOctW2xjbCstzwVKsIBVV-9Skz7Ylch2L.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 334 => [ "family"=> "Fredoka One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/fredokaone/v7/k3kUo8kEI-tA1RRcTZGmTmHBA6aF8Bf_.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 335 => [ "family"=> "Freehand", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "khmer", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/freehand/v11/cIf-Ma5eqk01VjKTgAmBTmUOmZJk.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 336 => [ "family"=> "Fresca", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/fresca/v8/6ae94K--SKgCzbM2Gr0W13DKPA.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 337 => [ "family"=> "Frijole", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/frijole/v8/uU9PCBUR8oakM2BQ7xPb3vyHmlI.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 338 => [ "family"=> "Fruktur", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v12", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/fruktur/v12/SZc53FHsOru5QYsMfz3GkUrS8DI.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 339 => [ "family"=> "Fugaz One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/fugazone/v9/rax_HiWKp9EAITukFslMBBJek0vA8A.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 340 => [ "family"=> "GFS Didot", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "greek", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/gfsdidot/v9/Jqzh5TybZ9vZMWFssvwiF-fGFSCGAA.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 341 => [ "family"=> "GFS Neohellenic", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "700", 3=> "700italic", ], "subsets"=> [ 0=> "greek", ], "version"=> "v12", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/gfsneohellenic/v12/8QIRdiDOrfiq0b7R8O1Iw9WLcY5TLahP46UDUw.ttf", "italic"=> "http://fonts.gstatic.com/s/gfsneohellenic/v12/8QITdiDOrfiq0b7R8O1Iw9WLcY5jL6JLwaATU91X.ttf", "700"=> "http://fonts.gstatic.com/s/gfsneohellenic/v12/8QIUdiDOrfiq0b7R8O1Iw9WLcY5rkYdr644fWsRO9w.ttf", "700italic"=> "http://fonts.gstatic.com/s/gfsneohellenic/v12/8QIWdiDOrfiq0b7R8O1Iw9WLcY5jL5r37oQbeMFe985V.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 342 => [ "family"=> "Gabriela", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "latin", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/gabriela/v8/qkBWXvsO6sreR8E-b_m-zrpHmRzC.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 343 => [ "family"=> "Gaegu", "variants"=> [ 0=> "300", 1=> "regular", 2=> "700", ], "subsets"=> [ 0=> "korean", 1=> "latin", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "300"=> "http://fonts.gstatic.com/s/gaegu/v8/TuGSUVB6Up9NU57nifw74sdtBk0x.ttf", "regular"=> "http://fonts.gstatic.com/s/gaegu/v8/TuGfUVB6Up9NU6ZLodgzydtk.ttf", "700"=> "http://fonts.gstatic.com/s/gaegu/v8/TuGSUVB6Up9NU573jvw74sdtBk0x.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 344 => [ "family"=> "Gafata", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/gafata/v8/XRXV3I6Cn0VJKon4MuyAbsrVcA.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 345 => [ "family"=> "Galada", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "bengali", 1=> "latin", ], "version"=> "v5", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/galada/v5/H4cmBXyGmcjXlUX-8iw-4Lqggw.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 346 => [ "family"=> "Galdeano", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/galdeano/v9/uU9MCBoQ4YOqOW1boDPx8PCOg0uX.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 347 => [ "family"=> "Galindo", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/galindo/v7/HI_KiYMeLqVKqwyuQ5HiRp-dhpQ.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 348 => [ "family"=> "Gamja Flower", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "korean", 1=> "latin", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/gamjaflower/v8/6NUR8FiKJg-Pa0rM6uN40Z4kyf9Fdty2ew.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 349 => [ "family"=> "Gayathri", "variants"=> [ 0=> "100", 1=> "regular", 2=> "700", ], "subsets"=> [ 0=> "latin", 1=> "malayalam", ], "version"=> "v1", "lastModified"=> "2019-11-05", "files"=> [ "100"=> "http://fonts.gstatic.com/s/gayathri/v1/MCoWzAb429DbBilWLLhc-pvSA_gA2W8.ttf", "regular"=> "http://fonts.gstatic.com/s/gayathri/v1/MCoQzAb429DbBilWLIA48J_wBugA.ttf", "700"=> "http://fonts.gstatic.com/s/gayathri/v1/MCoXzAb429DbBilWLLiE37v4LfQJwHbn.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 350 => [ "family"=> "Gelasio", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "500", 3=> "500italic", 4=> "600", 5=> "600italic", 6=> "700", 7=> "700italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v1", "lastModified"=> "2020-03-03", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/gelasio/v1/cIf9MaFfvUQxTTqSxCmrYGkHgIs.ttf", "italic"=> "http://fonts.gstatic.com/s/gelasio/v1/cIf_MaFfvUQxTTqS9CuhZEsCkIt9QQ.ttf", "500"=> "http://fonts.gstatic.com/s/gelasio/v1/cIf4MaFfvUQxTTqS_N2CRGEsnIJkWL4.ttf", "500italic"=> "http://fonts.gstatic.com/s/gelasio/v1/cIf6MaFfvUQxTTqS9CuZkGImmKBhSL7Y1Q.ttf", "600"=> "http://fonts.gstatic.com/s/gelasio/v1/cIf4MaFfvUQxTTqS_PGFRGEsnIJkWL4.ttf", "600italic"=> "http://fonts.gstatic.com/s/gelasio/v1/cIf6MaFfvUQxTTqS9CuZvGUmmKBhSL7Y1Q.ttf", "700"=> "http://fonts.gstatic.com/s/gelasio/v1/cIf4MaFfvUQxTTqS_JWERGEsnIJkWL4.ttf", "700italic"=> "http://fonts.gstatic.com/s/gelasio/v1/cIf6MaFfvUQxTTqS9CuZ2GQmmKBhSL7Y1Q.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 351 => [ "family"=> "Gentium Basic", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "700", 3=> "700italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/gentiumbasic/v11/Wnz9HAw9aB_JD2VGQVR80We3HAqDiTI_cIM.ttf", "italic"=> "http://fonts.gstatic.com/s/gentiumbasic/v11/WnzjHAw9aB_JD2VGQVR80We3LAiJjRA6YIORZQ.ttf", "700"=> "http://fonts.gstatic.com/s/gentiumbasic/v11/WnzgHAw9aB_JD2VGQVR80We3JLasrToUbIqIfBU.ttf", "700italic"=> "http://fonts.gstatic.com/s/gentiumbasic/v11/WnzmHAw9aB_JD2VGQVR80We3LAixMT8eaKiNbBVWkw.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 352 => [ "family"=> "Gentium Book Basic", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "700", 3=> "700italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/gentiumbookbasic/v10/pe0zMJCbPYBVokB1LHA9bbyaQb8ZGjcIV7t7w6bE2A.ttf", "italic"=> "http://fonts.gstatic.com/s/gentiumbookbasic/v10/pe0xMJCbPYBVokB1LHA9bbyaQb8ZGjc4VbF_4aPU2Ec9.ttf", "700"=> "http://fonts.gstatic.com/s/gentiumbookbasic/v10/pe0wMJCbPYBVokB1LHA9bbyaQb8ZGjcw65Rfy43Y0V4kvg.ttf", "700italic"=> "http://fonts.gstatic.com/s/gentiumbookbasic/v10/pe0-MJCbPYBVokB1LHA9bbyaQb8ZGjc4VYnDzofc81s0voO3.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 353 => [ "family"=> "Geo", "variants"=> [ 0=> "regular", 1=> "italic", ], "subsets"=> [ 0=> "latin", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/geo/v11/CSRz4zRZlufVL3BmQjlCbQ.ttf", "italic"=> "http://fonts.gstatic.com/s/geo/v11/CSRx4zRZluflLXpiYDxSbf8r.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 354 => [ "family"=> "Geostar", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/geostar/v10/sykz-yx4n701VLOftSq9-trEvlQ.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 355 => [ "family"=> "Geostar Fill", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/geostarfill/v10/AMOWz4SWuWiXFfjEohxQ9os0U1K2w9lb4g.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 356 => [ "family"=> "Germania One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/germaniaone/v7/Fh4yPjrqIyv2ucM2qzBjeS3ezAJONau6ew.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 357 => [ "family"=> "Gidugu", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "telugu", ], "version"=> "v6", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/gidugu/v6/L0x8DFMkk1Uf6w3RvPCmRSlUig.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 358 => [ "family"=> "Gilda Display", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/gildadisplay/v7/t5tmIRoYMoaYG0WEOh7HwMeR7TnFrpOHYh4.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 359 => [ "family"=> "Girassol", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v1", "lastModified"=> "2020-03-03", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/girassol/v1/JTUUjIo_-DK48laaNC9Nz2pJzxbi.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 360 => [ "family"=> "Give You Glory", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/giveyouglory/v9/8QIQdiHOgt3vv4LR7ahjw9-XYc1zB4ZD6rwa.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 361 => [ "family"=> "Glass Antiqua", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/glassantiqua/v7/xfu30Wr0Wn3NOQM2piC0uXOjnL_wN6fRUkY.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 362 => [ "family"=> "Glegoo", "variants"=> [ 0=> "regular", 1=> "700", ], "subsets"=> [ 0=> "devanagari", 1=> "latin", 2=> "latin-ext", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/glegoo/v9/_Xmt-HQyrTKWaw2Ji6mZAI91xw.ttf", "700"=> "http://fonts.gstatic.com/s/glegoo/v9/_Xmu-HQyrTKWaw2xN4a9CKRpzimMsg.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 363 => [ "family"=> "Gloria Hallelujah", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v11", "lastModified"=> "2019-07-17", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/gloriahallelujah/v11/LYjYdHv3kUk9BMV96EIswT9DIbW-MLSy3TKEvkCF.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 364 => [ "family"=> "Goblin One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/goblinone/v9/CSR64z1ZnOqZRjRCBVY_TOcATNt_pOU.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 365 => [ "family"=> "Gochi Hand", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/gochihand/v10/hES06XlsOjtJsgCkx1PkTo71-n0nXWA.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 366 => [ "family"=> "Gorditas", "variants"=> [ 0=> "regular", 1=> "700", ], "subsets"=> [ 0=> "latin", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/gorditas/v7/ll8_K2aTVD26DsPEtQDoDa4AlxYb.ttf", "700"=> "http://fonts.gstatic.com/s/gorditas/v7/ll84K2aTVD26DsPEtThUIooIvAoShA1i.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 367 => [ "family"=> "Gothic A1", "variants"=> [ 0=> "100", 1=> "200", 2=> "300", 3=> "regular", 4=> "500", 5=> "600", 6=> "700", 7=> "800", 8=> "900", ], "subsets"=> [ 0=> "korean", 1=> "latin", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "100"=> "http://fonts.gstatic.com/s/gothica1/v8/CSR74z5ZnPydRjlCCwlCCMcqYtd2vfwk.ttf", "200"=> "http://fonts.gstatic.com/s/gothica1/v8/CSR44z5ZnPydRjlCCwlCpOYKSPl6tOU9Eg.ttf", "300"=> "http://fonts.gstatic.com/s/gothica1/v8/CSR44z5ZnPydRjlCCwlCwOUKSPl6tOU9Eg.ttf", "regular"=> "http://fonts.gstatic.com/s/gothica1/v8/CSR94z5ZnPydRjlCCwl6bM0uQNJmvQ.ttf", "500"=> "http://fonts.gstatic.com/s/gothica1/v8/CSR44z5ZnPydRjlCCwlCmOQKSPl6tOU9Eg.ttf", "600"=> "http://fonts.gstatic.com/s/gothica1/v8/CSR44z5ZnPydRjlCCwlCtOMKSPl6tOU9Eg.ttf", "700"=> "http://fonts.gstatic.com/s/gothica1/v8/CSR44z5ZnPydRjlCCwlC0OIKSPl6tOU9Eg.ttf", "800"=> "http://fonts.gstatic.com/s/gothica1/v8/CSR44z5ZnPydRjlCCwlCzOEKSPl6tOU9Eg.ttf", "900"=> "http://fonts.gstatic.com/s/gothica1/v8/CSR44z5ZnPydRjlCCwlC6OAKSPl6tOU9Eg.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 368 => [ "family"=> "Gotu", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "devanagari", 1=> "latin", 2=> "latin-ext", 3=> "vietnamese", ], "version"=> "v1", "lastModified"=> "2020-04-21", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/gotu/v1/o-0FIpksx3QOlH0Lioh6-hU.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 369 => [ "family"=> "Goudy Bookletter 1911", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/goudybookletter1911/v9/sykt-z54laciWfKv-kX8krex0jDiD2HbY6I5tRbXZ4IXAA.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 370 => [ "family"=> "Graduate", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/graduate/v7/C8cg4cs3o2n15t_2YxgR6X2NZAn2.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 371 => [ "family"=> "Grand Hotel", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/grandhotel/v7/7Au7p_IgjDKdCRWuR1azpmQNEl0O0kEx.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 372 => [ "family"=> "Gravitas One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/gravitasone/v9/5h1diZ4hJ3cblKy3LWakKQmaDWRNr3DzbQ.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 373 => [ "family"=> "Great Vibes", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-17", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/greatvibes/v7/RWmMoKWR9v4ksMfaWd_JN-XCg6UKDXlq.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 374 => [ "family"=> "Grenze", "variants"=> [ 0=> "100", 1=> "100italic", 2=> "200", 3=> "200italic", 4=> "300", 5=> "300italic", 6=> "regular", 7=> "italic", 8=> "500", 9=> "500italic", 10=> "600", 11=> "600italic", 12=> "700", 13=> "700italic", 14=> "800", 15=> "800italic", 16=> "900", 17=> "900italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v1", "lastModified"=> "2019-11-05", "files"=> [ "100"=> "http://fonts.gstatic.com/s/grenze/v1/O4ZRFGb7hR12BxqPm2IjuAkalnmd.ttf", "100italic"=> "http://fonts.gstatic.com/s/grenze/v1/O4ZXFGb7hR12BxqH_VpHsg04k2md0kI.ttf", "200"=> "http://fonts.gstatic.com/s/grenze/v1/O4ZQFGb7hR12BxqPN0MDkicWn2CEyw.ttf", "200italic"=> "http://fonts.gstatic.com/s/grenze/v1/O4ZWFGb7hR12BxqH_Vrrky0SvWWUy1uW.ttf", "300"=> "http://fonts.gstatic.com/s/grenze/v1/O4ZQFGb7hR12BxqPU0ADkicWn2CEyw.ttf", "300italic"=> "http://fonts.gstatic.com/s/grenze/v1/O4ZWFGb7hR12BxqH_VqPkC0SvWWUy1uW.ttf", "regular"=> "http://fonts.gstatic.com/s/grenze/v1/O4ZTFGb7hR12Bxq3_2gnmgwKlg.ttf", "italic"=> "http://fonts.gstatic.com/s/grenze/v1/O4ZRFGb7hR12BxqH_WIjuAkalnmd.ttf", "500"=> "http://fonts.gstatic.com/s/grenze/v1/O4ZQFGb7hR12BxqPC0EDkicWn2CEyw.ttf", "500italic"=> "http://fonts.gstatic.com/s/grenze/v1/O4ZWFGb7hR12BxqH_VrXkS0SvWWUy1uW.ttf", "600"=> "http://fonts.gstatic.com/s/grenze/v1/O4ZQFGb7hR12BxqPJ0YDkicWn2CEyw.ttf", "600italic"=> "http://fonts.gstatic.com/s/grenze/v1/O4ZWFGb7hR12BxqH_Vr7li0SvWWUy1uW.ttf", "700"=> "http://fonts.gstatic.com/s/grenze/v1/O4ZQFGb7hR12BxqPQ0cDkicWn2CEyw.ttf", "700italic"=> "http://fonts.gstatic.com/s/grenze/v1/O4ZWFGb7hR12BxqH_Vqfly0SvWWUy1uW.ttf", "800"=> "http://fonts.gstatic.com/s/grenze/v1/O4ZQFGb7hR12BxqPX0QDkicWn2CEyw.ttf", "800italic"=> "http://fonts.gstatic.com/s/grenze/v1/O4ZWFGb7hR12BxqH_VqDlC0SvWWUy1uW.ttf", "900"=> "http://fonts.gstatic.com/s/grenze/v1/O4ZQFGb7hR12BxqPe0UDkicWn2CEyw.ttf", "900italic"=> "http://fonts.gstatic.com/s/grenze/v1/O4ZWFGb7hR12BxqH_VqnlS0SvWWUy1uW.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 375 => [ "family"=> "Griffy", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/griffy/v8/FwZa7-ox2FQh9kfwSNSEwM2zpA.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 376 => [ "family"=> "Gruppo", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/gruppo/v10/WwkfxPmzE06v_ZWFWXDAOIEQUQ.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 377 => [ "family"=> "Gudea", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "700", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/gudea/v9/neIFzCqgsI0mp-CP9IGON7Ez.ttf", "italic"=> "http://fonts.gstatic.com/s/gudea/v9/neILzCqgsI0mp9CN_oWsMqEzSJQ.ttf", "700"=> "http://fonts.gstatic.com/s/gudea/v9/neIIzCqgsI0mp9gz26WGHK06UY30.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 378 => [ "family"=> "Gugi", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "korean", 1=> "latin", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/gugi/v8/A2BVn5dXywshVA6A9DEfgqM.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 379 => [ "family"=> "Gupter", "variants"=> [ 0=> "regular", 1=> "500", 2=> "700", ], "subsets"=> [ 0=> "latin", ], "version"=> "v1", "lastModified"=> "2020-03-03", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/gupter/v1/2-cm9JNmxJqPO1QUYZa_Wu_lpA.ttf", "500"=> "http://fonts.gstatic.com/s/gupter/v1/2-cl9JNmxJqPO1Qslb-bUsT5rZhaZg.ttf", "700"=> "http://fonts.gstatic.com/s/gupter/v1/2-cl9JNmxJqPO1Qs3bmbUsT5rZhaZg.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 380 => [ "family"=> "Gurajada", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "telugu", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/gurajada/v7/FwZY7-Qx308m-l-0Kd6A4sijpFu_.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 381 => [ "family"=> "Habibi", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/habibi/v8/CSR-4zFWkuqcTTNCShJeZOYySQ.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 382 => [ "family"=> "Halant", "variants"=> [ 0=> "300", 1=> "regular", 2=> "500", 3=> "600", 4=> "700", ], "subsets"=> [ 0=> "devanagari", 1=> "latin", 2=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "300"=> "http://fonts.gstatic.com/s/halant/v7/u-490qaujRI2Pbsvc_pCmwZqcwdRXg.ttf", "regular"=> "http://fonts.gstatic.com/s/halant/v7/u-4-0qaujRI2PbsX39Jmky12eg.ttf", "500"=> "http://fonts.gstatic.com/s/halant/v7/u-490qaujRI2PbsvK_tCmwZqcwdRXg.ttf", "600"=> "http://fonts.gstatic.com/s/halant/v7/u-490qaujRI2PbsvB_xCmwZqcwdRXg.ttf", "700"=> "http://fonts.gstatic.com/s/halant/v7/u-490qaujRI2PbsvY_1CmwZqcwdRXg.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 383 => [ "family"=> "Hammersmith One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/hammersmithone/v10/qWcyB624q4L_C4jGQ9IK0O_dFlnbshsks4MRXw.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 384 => [ "family"=> "Hanalei", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v10", "lastModified"=> "2019-09-17", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/hanalei/v10/E21n_dD8iufIjBRHXzgmVydREus.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 385 => [ "family"=> "Hanalei Fill", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/hanaleifill/v8/fC1mPYtObGbfyQznIaQzPQiMVwLBplm9aw.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 386 => [ "family"=> "Handlee", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/handlee/v8/-F6xfjBsISg9aMakDmr6oilJ3ik.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 387 => [ "family"=> "Hanuman", "variants"=> [ 0=> "regular", 1=> "700", ], "subsets"=> [ 0=> "khmer", ], "version"=> "v13", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/hanuman/v13/VuJxdNvD15HhpJJBeKbXOIFneRo.ttf", "700"=> "http://fonts.gstatic.com/s/hanuman/v13/VuJ0dNvD15HhpJJBQBr4HIlMZRNcp0o.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 388 => [ "family"=> "Happy Monkey", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/happymonkey/v8/K2F2fZZcl-9SXwl5F_C4R_OABwD2bWqVjw.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 389 => [ "family"=> "Harmattan", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "arabic", 1=> "latin", ], "version"=> "v6", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/harmattan/v6/goksH6L2DkFvVvRp9XpTS0CjkP1Yog.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 390 => [ "family"=> "Headland One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/headlandone/v7/yYLu0hHR2vKnp89Tk1TCq3Tx0PlTeZ3mJA.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 391 => [ "family"=> "Heebo", "variants"=> [ 0=> "100", 1=> "200", 2=> "300", 3=> "regular", 4=> "500", 5=> "600", 6=> "700", 7=> "800", 8=> "900", ], "subsets"=> [ 0=> "hebrew", 1=> "latin", ], "version"=> "v8", "lastModified"=> "2020-06-11", "files"=> [ "100"=> "http://fonts.gstatic.com/s/heebo/v8/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EiS2cckOnz02SXQ.ttf", "200"=> "http://fonts.gstatic.com/s/heebo/v8/NGSpv5_NC0k9P_v6ZUCbLRAHxK1ECSycckOnz02SXQ.ttf", "300"=> "http://fonts.gstatic.com/s/heebo/v8/NGSpv5_NC0k9P_v6ZUCbLRAHxK1E1yycckOnz02SXQ.ttf", "regular"=> "http://fonts.gstatic.com/s/heebo/v8/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EiSycckOnz02SXQ.ttf", "500"=> "http://fonts.gstatic.com/s/heebo/v8/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EuyycckOnz02SXQ.ttf", "600"=> "http://fonts.gstatic.com/s/heebo/v8/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EVyucckOnz02SXQ.ttf", "700"=> "http://fonts.gstatic.com/s/heebo/v8/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EbiucckOnz02SXQ.ttf", "800"=> "http://fonts.gstatic.com/s/heebo/v8/NGSpv5_NC0k9P_v6ZUCbLRAHxK1ECSucckOnz02SXQ.ttf", "900"=> "http://fonts.gstatic.com/s/heebo/v8/NGSpv5_NC0k9P_v6ZUCbLRAHxK1EICucckOnz02SXQ.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 392 => [ "family"=> "Henny Penny", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/hennypenny/v7/wXKvE3UZookzsxz_kjGSfMQqt3M7tMDT.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 393 => [ "family"=> "Hepta Slab", "variants"=> [ 0=> "100", 1=> "200", 2=> "300", 3=> "regular", 4=> "500", 5=> "600", 6=> "700", 7=> "800", 8=> "900", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v7", "lastModified"=> "2020-04-21", "files"=> [ "100"=> "http://fonts.gstatic.com/s/heptaslab/v7/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvkV5jfbY5B0NBkz.ttf", "200"=> "http://fonts.gstatic.com/s/heptaslab/v7/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvmV5zfbY5B0NBkz.ttf", "300"=> "http://fonts.gstatic.com/s/heptaslab/v7/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvlL5zfbY5B0NBkz.ttf", "regular"=> "http://fonts.gstatic.com/s/heptaslab/v7/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvkV5zfbY5B0NBkz.ttf", "500"=> "http://fonts.gstatic.com/s/heptaslab/v7/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5Hvkn5zfbY5B0NBkz.ttf", "600"=> "http://fonts.gstatic.com/s/heptaslab/v7/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvnL4DfbY5B0NBkz.ttf", "700"=> "http://fonts.gstatic.com/s/heptaslab/v7/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5Hvny4DfbY5B0NBkz.ttf", "800"=> "http://fonts.gstatic.com/s/heptaslab/v7/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5HvmV4DfbY5B0NBkz.ttf", "900"=> "http://fonts.gstatic.com/s/heptaslab/v7/ea8JadoyU_jkHdalebHvyWVNdYoIsHe5Hvm84DfbY5B0NBkz.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 394 => [ "family"=> "Herr Von Muellerhoff", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/herrvonmuellerhoff/v9/WBL6rFjRZkREW8WqmCWYLgCkQKXb4CAft3c6_qJY3QPQ.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 395 => [ "family"=> "Hi Melody", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "korean", 1=> "latin", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/himelody/v8/46ktlbP8Vnz0pJcqCTbEf29E31BBGA.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 396 => [ "family"=> "Hind", "variants"=> [ 0=> "300", 1=> "regular", 2=> "500", 3=> "600", 4=> "700", ], "subsets"=> [ 0=> "devanagari", 1=> "latin", 2=> "latin-ext", ], "version"=> "v10", "lastModified"=> "2019-07-22", "files"=> [ "300"=> "http://fonts.gstatic.com/s/hind/v10/5aU19_a8oxmIfMJaIRuYjDpf5Vw.ttf", "regular"=> "http://fonts.gstatic.com/s/hind/v10/5aU69_a8oxmIRG5yBROzkDM.ttf", "500"=> "http://fonts.gstatic.com/s/hind/v10/5aU19_a8oxmIfJpbIRuYjDpf5Vw.ttf", "600"=> "http://fonts.gstatic.com/s/hind/v10/5aU19_a8oxmIfLZcIRuYjDpf5Vw.ttf", "700"=> "http://fonts.gstatic.com/s/hind/v10/5aU19_a8oxmIfNJdIRuYjDpf5Vw.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 397 => [ "family"=> "Hind Guntur", "variants"=> [ 0=> "300", 1=> "regular", 2=> "500", 3=> "600", 4=> "700", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "telugu", ], "version"=> "v5", "lastModified"=> "2019-07-16", "files"=> [ "300"=> "http://fonts.gstatic.com/s/hindguntur/v5/wXKyE3UZrok56nvamSuJd_yGn1czn9zaj5Ju.ttf", "regular"=> "http://fonts.gstatic.com/s/hindguntur/v5/wXKvE3UZrok56nvamSuJd8Qqt3M7tMDT.ttf", "500"=> "http://fonts.gstatic.com/s/hindguntur/v5/wXKyE3UZrok56nvamSuJd_zenlczn9zaj5Ju.ttf", "600"=> "http://fonts.gstatic.com/s/hindguntur/v5/wXKyE3UZrok56nvamSuJd_zymVczn9zaj5Ju.ttf", "700"=> "http://fonts.gstatic.com/s/hindguntur/v5/wXKyE3UZrok56nvamSuJd_yWmFczn9zaj5Ju.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 398 => [ "family"=> "Hind Madurai", "variants"=> [ 0=> "300", 1=> "regular", 2=> "500", 3=> "600", 4=> "700", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "tamil", ], "version"=> "v5", "lastModified"=> "2019-07-17", "files"=> [ "300"=> "http://fonts.gstatic.com/s/hindmadurai/v5/f0Xu0e2p98ZvDXdZQIOcpqjfXaUnecsoMJ0b_g.ttf", "regular"=> "http://fonts.gstatic.com/s/hindmadurai/v5/f0Xx0e2p98ZvDXdZQIOcpqjn8Y0DceA0OQ.ttf", "500"=> "http://fonts.gstatic.com/s/hindmadurai/v5/f0Xu0e2p98ZvDXdZQIOcpqjfBaQnecsoMJ0b_g.ttf", "600"=> "http://fonts.gstatic.com/s/hindmadurai/v5/f0Xu0e2p98ZvDXdZQIOcpqjfKaMnecsoMJ0b_g.ttf", "700"=> "http://fonts.gstatic.com/s/hindmadurai/v5/f0Xu0e2p98ZvDXdZQIOcpqjfTaInecsoMJ0b_g.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 399 => [ "family"=> "Hind Siliguri", "variants"=> [ 0=> "300", 1=> "regular", 2=> "500", 3=> "600", 4=> "700", ], "subsets"=> [ 0=> "bengali", 1=> "latin", 2=> "latin-ext", ], "version"=> "v6", "lastModified"=> "2019-07-17", "files"=> [ "300"=> "http://fonts.gstatic.com/s/hindsiliguri/v6/ijwOs5juQtsyLLR5jN4cxBEoRDf44uEfKiGvxts.ttf", "regular"=> "http://fonts.gstatic.com/s/hindsiliguri/v6/ijwTs5juQtsyLLR5jN4cxBEofJvQxuk0Nig.ttf", "500"=> "http://fonts.gstatic.com/s/hindsiliguri/v6/ijwOs5juQtsyLLR5jN4cxBEoRG_54uEfKiGvxts.ttf", "600"=> "http://fonts.gstatic.com/s/hindsiliguri/v6/ijwOs5juQtsyLLR5jN4cxBEoREP-4uEfKiGvxts.ttf", "700"=> "http://fonts.gstatic.com/s/hindsiliguri/v6/ijwOs5juQtsyLLR5jN4cxBEoRCf_4uEfKiGvxts.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 400 => [ "family"=> "Hind Vadodara", "variants"=> [ 0=> "300", 1=> "regular", 2=> "500", 3=> "600", 4=> "700", ], "subsets"=> [ 0=> "gujarati", 1=> "latin", 2=> "latin-ext", ], "version"=> "v6", "lastModified"=> "2019-07-16", "files"=> [ "300"=> "http://fonts.gstatic.com/s/hindvadodara/v6/neIQzCKvrIcn5pbuuuriV9tTSDn3iXM0oSOL2Yw.ttf", "regular"=> "http://fonts.gstatic.com/s/hindvadodara/v6/neINzCKvrIcn5pbuuuriV9tTcJXfrXsfvSo.ttf", "500"=> "http://fonts.gstatic.com/s/hindvadodara/v6/neIQzCKvrIcn5pbuuuriV9tTSGH2iXM0oSOL2Yw.ttf", "600"=> "http://fonts.gstatic.com/s/hindvadodara/v6/neIQzCKvrIcn5pbuuuriV9tTSE3xiXM0oSOL2Yw.ttf", "700"=> "http://fonts.gstatic.com/s/hindvadodara/v6/neIQzCKvrIcn5pbuuuriV9tTSCnwiXM0oSOL2Yw.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 401 => [ "family"=> "Holtwood One SC", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/holtwoodonesc/v10/yYLx0hLR0P-3vMFSk1TCq3Txg5B3cbb6LZttyg.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 402 => [ "family"=> "Homemade Apple", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/homemadeapple/v10/Qw3EZQFXECDrI2q789EKQZJob3x9Vnksi4M7.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 403 => [ "family"=> "Homenaje", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/homenaje/v9/FwZY7-Q-xVAi_l-6Ld6A4sijpFu_.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 404 => [ "family"=> "IBM Plex Mono", "variants"=> [ 0=> "100", 1=> "100italic", 2=> "200", 3=> "200italic", 4=> "300", 5=> "300italic", 6=> "regular", 7=> "italic", 8=> "500", 9=> "500italic", 10=> "600", 11=> "600italic", 12=> "700", 13=> "700italic", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "latin", 3=> "latin-ext", 4=> "vietnamese", ], "version"=> "v5", "lastModified"=> "2019-07-16", "files"=> [ "100"=> "http://fonts.gstatic.com/s/ibmplexmono/v5/-F6pfjptAgt5VM-kVkqdyU8n3kwq0n1hj-sNFQ.ttf", "100italic"=> "http://fonts.gstatic.com/s/ibmplexmono/v5/-F6rfjptAgt5VM-kVkqdyU8n1ioStndlre4dFcFh.ttf", "200"=> "http://fonts.gstatic.com/s/ibmplexmono/v5/-F6qfjptAgt5VM-kVkqdyU8n3uAL8ldPg-IUDNg.ttf", "200italic"=> "http://fonts.gstatic.com/s/ibmplexmono/v5/-F6sfjptAgt5VM-kVkqdyU8n1ioSGlZFh8ARHNh4zg.ttf", "300"=> "http://fonts.gstatic.com/s/ibmplexmono/v5/-F6qfjptAgt5VM-kVkqdyU8n3oQI8ldPg-IUDNg.ttf", "300italic"=> "http://fonts.gstatic.com/s/ibmplexmono/v5/-F6sfjptAgt5VM-kVkqdyU8n1ioSflVFh8ARHNh4zg.ttf", "regular"=> "http://fonts.gstatic.com/s/ibmplexmono/v5/-F63fjptAgt5VM-kVkqdyU8n5igg1l9kn-s.ttf", "italic"=> "http://fonts.gstatic.com/s/ibmplexmono/v5/-F6pfjptAgt5VM-kVkqdyU8n1ioq0n1hj-sNFQ.ttf", "500"=> "http://fonts.gstatic.com/s/ibmplexmono/v5/-F6qfjptAgt5VM-kVkqdyU8n3twJ8ldPg-IUDNg.ttf", "500italic"=> "http://fonts.gstatic.com/s/ibmplexmono/v5/-F6sfjptAgt5VM-kVkqdyU8n1ioSJlRFh8ARHNh4zg.ttf", "600"=> "http://fonts.gstatic.com/s/ibmplexmono/v5/-F6qfjptAgt5VM-kVkqdyU8n3vAO8ldPg-IUDNg.ttf", "600italic"=> "http://fonts.gstatic.com/s/ibmplexmono/v5/-F6sfjptAgt5VM-kVkqdyU8n1ioSClNFh8ARHNh4zg.ttf", "700"=> "http://fonts.gstatic.com/s/ibmplexmono/v5/-F6qfjptAgt5VM-kVkqdyU8n3pQP8ldPg-IUDNg.ttf", "700italic"=> "http://fonts.gstatic.com/s/ibmplexmono/v5/-F6sfjptAgt5VM-kVkqdyU8n1ioSblJFh8ARHNh4zg.ttf", ], "category"=> "monospace", "kind"=> "webfonts#webfont" ], 405 => [ "family"=> "IBM Plex Sans", "variants"=> [ 0=> "100", 1=> "100italic", 2=> "200", 3=> "200italic", 4=> "300", 5=> "300italic", 6=> "regular", 7=> "italic", 8=> "500", 9=> "500italic", 10=> "600", 11=> "600italic", 12=> "700", 13=> "700italic", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "greek", 3=> "latin", 4=> "latin-ext", 5=> "vietnamese", ], "version"=> "v7", "lastModified"=> "2019-07-17", "files"=> [ "100"=> "http://fonts.gstatic.com/s/ibmplexsans/v7/zYX-KVElMYYaJe8bpLHnCwDKjbLeEKxIedbzDw.ttf", "100italic"=> "http://fonts.gstatic.com/s/ibmplexsans/v7/zYX8KVElMYYaJe8bpLHnCwDKhdTmdKZMW9PjD3N8.ttf", "200"=> "http://fonts.gstatic.com/s/ibmplexsans/v7/zYX9KVElMYYaJe8bpLHnCwDKjR7_MIZmdd_qFmo.ttf", "200italic"=> "http://fonts.gstatic.com/s/ibmplexsans/v7/zYX7KVElMYYaJe8bpLHnCwDKhdTm2Idscf3vBmpl8A.ttf", "300"=> "http://fonts.gstatic.com/s/ibmplexsans/v7/zYX9KVElMYYaJe8bpLHnCwDKjXr8MIZmdd_qFmo.ttf", "300italic"=> "http://fonts.gstatic.com/s/ibmplexsans/v7/zYX7KVElMYYaJe8bpLHnCwDKhdTmvIRscf3vBmpl8A.ttf", "regular"=> "http://fonts.gstatic.com/s/ibmplexsans/v7/zYXgKVElMYYaJe8bpLHnCwDKtdbUFI5NadY.ttf", "italic"=> "http://fonts.gstatic.com/s/ibmplexsans/v7/zYX-KVElMYYaJe8bpLHnCwDKhdTeEKxIedbzDw.ttf", "500"=> "http://fonts.gstatic.com/s/ibmplexsans/v7/zYX9KVElMYYaJe8bpLHnCwDKjSL9MIZmdd_qFmo.ttf", "500italic"=> "http://fonts.gstatic.com/s/ibmplexsans/v7/zYX7KVElMYYaJe8bpLHnCwDKhdTm5IVscf3vBmpl8A.ttf", "600"=> "http://fonts.gstatic.com/s/ibmplexsans/v7/zYX9KVElMYYaJe8bpLHnCwDKjQ76MIZmdd_qFmo.ttf", "600italic"=> "http://fonts.gstatic.com/s/ibmplexsans/v7/zYX7KVElMYYaJe8bpLHnCwDKhdTmyIJscf3vBmpl8A.ttf", "700"=> "http://fonts.gstatic.com/s/ibmplexsans/v7/zYX9KVElMYYaJe8bpLHnCwDKjWr7MIZmdd_qFmo.ttf", "700italic"=> "http://fonts.gstatic.com/s/ibmplexsans/v7/zYX7KVElMYYaJe8bpLHnCwDKhdTmrINscf3vBmpl8A.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 406 => [ "family"=> "IBM Plex Sans Condensed", "variants"=> [ 0=> "100", 1=> "100italic", 2=> "200", 3=> "200italic", 4=> "300", 5=> "300italic", 6=> "regular", 7=> "italic", 8=> "500", 9=> "500italic", 10=> "600", 11=> "600italic", 12=> "700", 13=> "700italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v6", "lastModified"=> "2019-07-16", "files"=> [ "100"=> "http://fonts.gstatic.com/s/ibmplexsanscondensed/v6/Gg8nN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY7KyKvBgYsMDhM.ttf", "100italic"=> "http://fonts.gstatic.com/s/ibmplexsanscondensed/v6/Gg8hN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8M_LhakJHhOgBg.ttf", "200"=> "http://fonts.gstatic.com/s/ibmplexsanscondensed/v6/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY5m6Yvrr4cFFwq5.ttf", "200italic"=> "http://fonts.gstatic.com/s/ibmplexsanscondensed/v6/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8GPqpYMnEhq5H1w.ttf", "300"=> "http://fonts.gstatic.com/s/ibmplexsanscondensed/v6/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY4C6ovrr4cFFwq5.ttf", "300italic"=> "http://fonts.gstatic.com/s/ibmplexsanscondensed/v6/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8AfppYMnEhq5H1w.ttf", "regular"=> "http://fonts.gstatic.com/s/ibmplexsanscondensed/v6/Gg8lN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHbauwq_jhJsM.ttf", "italic"=> "http://fonts.gstatic.com/s/ibmplexsanscondensed/v6/Gg8nN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYasyKvBgYsMDhM.ttf", "500"=> "http://fonts.gstatic.com/s/ibmplexsanscondensed/v6/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY5a64vrr4cFFwq5.ttf", "500italic"=> "http://fonts.gstatic.com/s/ibmplexsanscondensed/v6/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8F_opYMnEhq5H1w.ttf", "600"=> "http://fonts.gstatic.com/s/ibmplexsanscondensed/v6/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY527Ivrr4cFFwq5.ttf", "600italic"=> "http://fonts.gstatic.com/s/ibmplexsanscondensed/v6/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8HPvpYMnEhq5H1w.ttf", "700"=> "http://fonts.gstatic.com/s/ibmplexsanscondensed/v6/Gg8gN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHY4S7Yvrr4cFFwq5.ttf", "700italic"=> "http://fonts.gstatic.com/s/ibmplexsanscondensed/v6/Gg8iN4UfRSqiPg7Jn2ZI12V4DCEwkj1E4LVeHYas8BfupYMnEhq5H1w.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 407 => [ "family"=> "IBM Plex Serif", "variants"=> [ 0=> "100", 1=> "100italic", 2=> "200", 3=> "200italic", 4=> "300", 5=> "300italic", 6=> "regular", 7=> "italic", 8=> "500", 9=> "500italic", 10=> "600", 11=> "600italic", 12=> "700", 13=> "700italic", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "latin", 3=> "latin-ext", 4=> "vietnamese", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "100"=> "http://fonts.gstatic.com/s/ibmplexserif/v8/jizBREVNn1dOx-zrZ2X3pZvkTi182zIZj1bIkNo.ttf", "100italic"=> "http://fonts.gstatic.com/s/ibmplexserif/v8/jizHREVNn1dOx-zrZ2X3pZvkTiUa41YTi3TNgNq55w.ttf", "200"=> "http://fonts.gstatic.com/s/ibmplexserif/v8/jizAREVNn1dOx-zrZ2X3pZvkTi3Q-hIzoVrBicOg.ttf", "200italic"=> "http://fonts.gstatic.com/s/ibmplexserif/v8/jizGREVNn1dOx-zrZ2X3pZvkTiUa4_oyq17jjNOg_oc.ttf", "300"=> "http://fonts.gstatic.com/s/ibmplexserif/v8/jizAREVNn1dOx-zrZ2X3pZvkTi20-RIzoVrBicOg.ttf", "300italic"=> "http://fonts.gstatic.com/s/ibmplexserif/v8/jizGREVNn1dOx-zrZ2X3pZvkTiUa454xq17jjNOg_oc.ttf", "regular"=> "http://fonts.gstatic.com/s/ibmplexserif/v8/jizDREVNn1dOx-zrZ2X3pZvkThUY0TY7ikbI.ttf", "italic"=> "http://fonts.gstatic.com/s/ibmplexserif/v8/jizBREVNn1dOx-zrZ2X3pZvkTiUa2zIZj1bIkNo.ttf", "500"=> "http://fonts.gstatic.com/s/ibmplexserif/v8/jizAREVNn1dOx-zrZ2X3pZvkTi3s-BIzoVrBicOg.ttf", "500italic"=> "http://fonts.gstatic.com/s/ibmplexserif/v8/jizGREVNn1dOx-zrZ2X3pZvkTiUa48Ywq17jjNOg_oc.ttf", "600"=> "http://fonts.gstatic.com/s/ibmplexserif/v8/jizAREVNn1dOx-zrZ2X3pZvkTi3A_xIzoVrBicOg.ttf", "600italic"=> "http://fonts.gstatic.com/s/ibmplexserif/v8/jizGREVNn1dOx-zrZ2X3pZvkTiUa4-o3q17jjNOg_oc.ttf", "700"=> "http://fonts.gstatic.com/s/ibmplexserif/v8/jizAREVNn1dOx-zrZ2X3pZvkTi2k_hIzoVrBicOg.ttf", "700italic"=> "http://fonts.gstatic.com/s/ibmplexserif/v8/jizGREVNn1dOx-zrZ2X3pZvkTiUa4442q17jjNOg_oc.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 408 => [ "family"=> "IM Fell DW Pica", "variants"=> [ 0=> "regular", 1=> "italic", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/imfelldwpica/v9/2sDGZGRQotv9nbn2qSl0TxXVYNw9ZAPUvi88MQ.ttf", "italic"=> "http://fonts.gstatic.com/s/imfelldwpica/v9/2sDEZGRQotv9nbn2qSl0TxXVYNwNZgnQnCosMXm0.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 409 => [ "family"=> "IM Fell DW Pica SC", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/imfelldwpicasc/v9/0ybjGCAu5PfqkvtGVU15aBhXz3EUrnTW-BiKEUiBGA.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 410 => [ "family"=> "IM Fell Double Pica", "variants"=> [ 0=> "regular", 1=> "italic", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/imfelldoublepica/v9/3XF2EqMq_94s9PeKF7Fg4gOKINyMtZ8rT0S1UL5Ayp0.ttf", "italic"=> "http://fonts.gstatic.com/s/imfelldoublepica/v9/3XF0EqMq_94s9PeKF7Fg4gOKINyMtZ8rf0a_VJxF2p2G8g.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 411 => [ "family"=> "IM Fell Double Pica SC", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/imfelldoublepicasc/v9/neIazDmuiMkFo6zj_sHpQ8teNbWlwBB_hXjJ4Y0Eeru2dGg.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 412 => [ "family"=> "IM Fell English", "variants"=> [ 0=> "regular", 1=> "italic", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/imfellenglish/v9/Ktk1ALSLW8zDe0rthJysWrnLsAz3F6mZVY9Y5w.ttf", "italic"=> "http://fonts.gstatic.com/s/imfellenglish/v9/Ktk3ALSLW8zDe0rthJysWrnLsAzHFaOdd4pI59zg.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 413 => [ "family"=> "IM Fell English SC", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/imfellenglishsc/v9/a8IENpD3CDX-4zrWfr1VY879qFF05pZLO4gOg0shzA.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 414 => [ "family"=> "IM Fell French Canon", "variants"=> [ 0=> "regular", 1=> "italic", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/imfellfrenchcanon/v9/-F6ufiNtDWYfYc-tDiyiw08rrghJszkK6coVPt1ozoPz.ttf", "italic"=> "http://fonts.gstatic.com/s/imfellfrenchcanon/v9/-F6gfiNtDWYfYc-tDiyiw08rrghJszkK6foXNNlKy5PzzrU.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 415 => [ "family"=> "IM Fell French Canon SC", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/imfellfrenchcanonsc/v9/FBVmdCru5-ifcor2bgq9V89khWcmQghEURY7H3c0UBCVIVqH.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 416 => [ "family"=> "IM Fell Great Primer", "variants"=> [ 0=> "regular", 1=> "italic", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/imfellgreatprimer/v9/bx6aNwSJtayYxOkbYFsT6hMsLzX7u85rJorXvDo3SQY1.ttf", "italic"=> "http://fonts.gstatic.com/s/imfellgreatprimer/v9/bx6UNwSJtayYxOkbYFsT6hMsLzX7u85rJrrVtj4VTBY1N6U.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 417 => [ "family"=> "IM Fell Great Primer SC", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/imfellgreatprimersc/v9/ga6daxBOxyt6sCqz3fjZCTFCTUDMHagsQKdDTLf9BXz0s8FG.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 418 => [ "family"=> "Ibarra Real Nova", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "600", 3=> "600italic", 4=> "700", 5=> "700italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v2", "lastModified"=> "2020-04-13", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/ibarrarealnova/v2/sZlfdQiA-DBIDCcaWtQzL4BZHoiDoHxSENxuLuE.ttf", "italic"=> "http://fonts.gstatic.com/s/ibarrarealnova/v2/sZlZdQiA-DBIDCcaWtQzL4BZHoiDkH5YFP5rPuF6EA.ttf", "600"=> "http://fonts.gstatic.com/s/ibarrarealnova/v2/sZlYdQiA-DBIDCcaWtQzL4BZHoiDmKR8NNRFMuhjCXY.ttf", "600italic"=> "http://fonts.gstatic.com/s/ibarrarealnova/v2/sZladQiA-DBIDCcaWtQzL4BZHoiDkH5gzNBPNspmGXawpg.ttf", "700"=> "http://fonts.gstatic.com/s/ibarrarealnova/v2/sZlYdQiA-DBIDCcaWtQzL4BZHoiDmMB9NNRFMuhjCXY.ttf", "700italic"=> "http://fonts.gstatic.com/s/ibarrarealnova/v2/sZladQiA-DBIDCcaWtQzL4BZHoiDkH5gqNFPNspmGXawpg.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 419 => [ "family"=> "Iceberg", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/iceberg/v7/8QIJdijAiM7o-qnZuIgOq7jkAOw.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 420 => [ "family"=> "Iceland", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/iceland/v8/rax9HiuFsdMNOnWPWKxGADBbg0s.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 421 => [ "family"=> "Imprima", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/imprima/v8/VEMxRoN7sY3yuy-7-oWHyDzktPo.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 422 => [ "family"=> "Inconsolata", "variants"=> [ 0=> "200", 1=> "300", 2=> "regular", 3=> "500", 4=> "600", 5=> "700", 6=> "800", 7=> "900", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v19", "lastModified"=> "2020-04-20", "files"=> [ "200"=> "http://fonts.gstatic.com/s/inconsolata/v19/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7LppwU8aRr8lleY2co.ttf", "300"=> "http://fonts.gstatic.com/s/inconsolata/v19/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp9s8aRr8lleY2co.ttf", "regular"=> "http://fonts.gstatic.com/s/inconsolata/v19/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp4U8aRr8lleY2co.ttf", "500"=> "http://fonts.gstatic.com/s/inconsolata/v19/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp7c8aRr8lleY2co.ttf", "600"=> "http://fonts.gstatic.com/s/inconsolata/v19/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp1s7aRr8lleY2co.ttf", "700"=> "http://fonts.gstatic.com/s/inconsolata/v19/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lpp2I7aRr8lleY2co.ttf", "800"=> "http://fonts.gstatic.com/s/inconsolata/v19/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7LppwU7aRr8lleY2co.ttf", "900"=> "http://fonts.gstatic.com/s/inconsolata/v19/QldgNThLqRwH-OJ1UHjlKENVzkWGVkL3GZQmAwLYxYWI2qfdm7Lppyw7aRr8lleY2co.ttf", ], "category"=> "monospace", "kind"=> "webfonts#webfont" ], 423 => [ "family"=> "Inder", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/inder/v8/w8gUH2YoQe8_4vq6pw-P3U4O.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 424 => [ "family"=> "Indie Flower", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v11", "lastModified"=> "2019-07-17", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/indieflower/v11/m8JVjfNVeKWVnh3QMuKkFcZlbkGG1dKEDw.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 425 => [ "family"=> "Inika", "variants"=> [ 0=> "regular", 1=> "700", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/inika/v8/rnCm-x5X3QP-phTHRcc2s2XH.ttf", "700"=> "http://fonts.gstatic.com/s/inika/v8/rnCr-x5X3QP-pix7auM-mHnOSOuk.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 426 => [ "family"=> "Inknut Antiqua", "variants"=> [ 0=> "300", 1=> "regular", 2=> "500", 3=> "600", 4=> "700", 5=> "800", 6=> "900", ], "subsets"=> [ 0=> "devanagari", 1=> "latin", 2=> "latin-ext", ], "version"=> "v5", "lastModified"=> "2019-07-16", "files"=> [ "300"=> "http://fonts.gstatic.com/s/inknutantiqua/v5/Y4GRYax7VC4ot_qNB4nYpBdaKU2vwrj5bBoIYJNf.ttf", "regular"=> "http://fonts.gstatic.com/s/inknutantiqua/v5/Y4GSYax7VC4ot_qNB4nYpBdaKXUD6pzxRwYB.ttf", "500"=> "http://fonts.gstatic.com/s/inknutantiqua/v5/Y4GRYax7VC4ot_qNB4nYpBdaKU33w7j5bBoIYJNf.ttf", "600"=> "http://fonts.gstatic.com/s/inknutantiqua/v5/Y4GRYax7VC4ot_qNB4nYpBdaKU3bxLj5bBoIYJNf.ttf", "700"=> "http://fonts.gstatic.com/s/inknutantiqua/v5/Y4GRYax7VC4ot_qNB4nYpBdaKU2_xbj5bBoIYJNf.ttf", "800"=> "http://fonts.gstatic.com/s/inknutantiqua/v5/Y4GRYax7VC4ot_qNB4nYpBdaKU2jxrj5bBoIYJNf.ttf", "900"=> "http://fonts.gstatic.com/s/inknutantiqua/v5/Y4GRYax7VC4ot_qNB4nYpBdaKU2Hx7j5bBoIYJNf.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 427 => [ "family"=> "Inria Sans", "variants"=> [ 0=> "300", 1=> "300italic", 2=> "regular", 3=> "italic", 4=> "700", 5=> "700italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v1", "lastModified"=> "2020-04-21", "files"=> [ "300"=> "http://fonts.gstatic.com/s/inriasans/v1/ptRPTiqXYfZMCOiVj9kQ3ELaDQtFqeY3fX4.ttf", "300italic"=> "http://fonts.gstatic.com/s/inriasans/v1/ptRRTiqXYfZMCOiVj9kQ1OzAgQlPrcQybX4pQA.ttf", "regular"=> "http://fonts.gstatic.com/s/inriasans/v1/ptRMTiqXYfZMCOiVj9kQ5O7yKQNute8.ttf", "italic"=> "http://fonts.gstatic.com/s/inriasans/v1/ptROTiqXYfZMCOiVj9kQ1Oz4LSFrpe8uZA.ttf", "700"=> "http://fonts.gstatic.com/s/inriasans/v1/ptRPTiqXYfZMCOiVj9kQ3FLdDQtFqeY3fX4.ttf", "700italic"=> "http://fonts.gstatic.com/s/inriasans/v1/ptRRTiqXYfZMCOiVj9kQ1OzAkQ5PrcQybX4pQA.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 428 => [ "family"=> "Inria Serif", "variants"=> [ 0=> "300", 1=> "300italic", 2=> "regular", 3=> "italic", 4=> "700", 5=> "700italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v1", "lastModified"=> "2020-03-03", "files"=> [ "300"=> "http://fonts.gstatic.com/s/inriaserif/v1/fC14PYxPY3rXxEndZJAzN3wAVQjFhFyta3xN.ttf", "300italic"=> "http://fonts.gstatic.com/s/inriaserif/v1/fC16PYxPY3rXxEndZJAzN3SuT4THjliPbmxN0_E.ttf", "regular"=> "http://fonts.gstatic.com/s/inriaserif/v1/fC1lPYxPY3rXxEndZJAzN0SsfSzNr0Ck.ttf", "italic"=> "http://fonts.gstatic.com/s/inriaserif/v1/fC1nPYxPY3rXxEndZJAzN3SudyjvqlCkcmU.ttf", "700"=> "http://fonts.gstatic.com/s/inriaserif/v1/fC14PYxPY3rXxEndZJAzN3wQUgjFhFyta3xN.ttf", "700italic"=> "http://fonts.gstatic.com/s/inriaserif/v1/fC16PYxPY3rXxEndZJAzN3SuT5TAjliPbmxN0_E.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 429 => [ "family"=> "Inter", "variants"=> [ 0=> "100", 1=> "200", 2=> "300", 3=> "regular", 4=> "500", 5=> "600", 6=> "700", 7=> "800", 8=> "900", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "greek", 3=> "greek-ext", 4=> "latin", 5=> "latin-ext", 6=> "vietnamese", ], "version"=> "v1", "lastModified"=> "2020-04-21", "files"=> [ "100"=> "http://fonts.gstatic.com/s/inter/v1/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyeMZhrib2Bg-4.ttf", "200"=> "http://fonts.gstatic.com/s/inter/v1/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuDyfMZhrib2Bg-4.ttf", "300"=> "http://fonts.gstatic.com/s/inter/v1/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuOKfMZhrib2Bg-4.ttf", "regular"=> "http://fonts.gstatic.com/s/inter/v1/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuLyfMZhrib2Bg-4.ttf", "500"=> "http://fonts.gstatic.com/s/inter/v1/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuI6fMZhrib2Bg-4.ttf", "600"=> "http://fonts.gstatic.com/s/inter/v1/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuGKYMZhrib2Bg-4.ttf", "700"=> "http://fonts.gstatic.com/s/inter/v1/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuFuYMZhrib2Bg-4.ttf", "800"=> "http://fonts.gstatic.com/s/inter/v1/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuDyYMZhrib2Bg-4.ttf", "900"=> "http://fonts.gstatic.com/s/inter/v1/UcCO3FwrK3iLTeHuS_fvQtMwCp50KnMw2boKoduKmMEVuBWYMZhrib2Bg-4.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 430 => [ "family"=> "Irish Grover", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/irishgrover/v10/buExpoi6YtLz2QW7LA4flVgf-P5Oaiw4cw.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 431 => [ "family"=> "Istok Web", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "700", 3=> "700italic", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "latin", 3=> "latin-ext", ], "version"=> "v14", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/istokweb/v14/3qTvojGmgSyUukBzKslZAWF-9kIIaQ.ttf", "italic"=> "http://fonts.gstatic.com/s/istokweb/v14/3qTpojGmgSyUukBzKslpA2t61EcYaQ7F.ttf", "700"=> "http://fonts.gstatic.com/s/istokweb/v14/3qTqojGmgSyUukBzKslhvU5a_mkUYBfcMw.ttf", "700italic"=> "http://fonts.gstatic.com/s/istokweb/v14/3qT0ojGmgSyUukBzKslpA1PG-2MQQhLMMygN.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 432 => [ "family"=> "Italiana", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/italiana/v8/QldNNTtLsx4E__B0XTmRY31Wx7Vv.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 433 => [ "family"=> "Italianno", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/italianno/v9/dg4n_p3sv6gCJkwzT6Rnj5YpQwM-gg.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 434 => [ "family"=> "Itim", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "thai", 3=> "vietnamese", ], "version"=> "v4", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/itim/v4/0nknC9ziJOYewARKkc7ZdwU.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 435 => [ "family"=> "Jacques Francois", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/jacquesfrancois/v7/ZXu9e04ZvKeOOHIe1TMahbcIU2cgmcPqoeRWfbs.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 436 => [ "family"=> "Jacques Francois Shadow", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/jacquesfrancoisshadow/v8/KR1FBtOz8PKTMk-kqdkLVrvR0ECFrB6Pin-2_q8VsHuV5ULS.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 437 => [ "family"=> "Jaldi", "variants"=> [ 0=> "regular", 1=> "700", ], "subsets"=> [ 0=> "devanagari", 1=> "latin", 2=> "latin-ext", ], "version"=> "v6", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/jaldi/v6/or3sQ67z0_CI30NUZpD_B6g8.ttf", "700"=> "http://fonts.gstatic.com/s/jaldi/v6/or3hQ67z0_CI33voSbT3LLQ1niPn.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 438 => [ "family"=> "Jim Nightshade", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/jimnightshade/v7/PlIkFlu9Pb08Q8HLM1PxmB0g-OS4V3qKaMxD.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 439 => [ "family"=> "Jockey One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/jockeyone/v9/HTxpL2g2KjCFj4x8WI6ArIb7HYOk4xc.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 440 => [ "family"=> "Jolly Lodger", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/jollylodger/v7/BXRsvFTAh_bGkA1uQ48dlB3VWerT3ZyuqA.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 441 => [ "family"=> "Jomhuria", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "arabic", 1=> "latin", 2=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/jomhuria/v7/Dxxp8j-TMXf-llKur2b1MOGbC3Dh.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 442 => [ "family"=> "Jomolhari", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "tibetan", ], "version"=> "v1", "lastModified"=> "2020-03-03", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/jomolhari/v1/EvONzA1M1Iw_CBd2hsQCF1IZKq5INg.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 443 => [ "family"=> "Josefin Sans", "variants"=> [ 0=> "100", 1=> "200", 2=> "300", 3=> "regular", 4=> "500", 5=> "600", 6=> "700", 7=> "100italic", 8=> "200italic", 9=> "300italic", 10=> "italic", 11=> "500italic", 12=> "600italic", 13=> "700italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v15", "lastModified"=> "2020-03-06", "files"=> [ "100"=> "http://fonts.gstatic.com/s/josefinsans/v15/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_DjRXMFrLgTsQV0.ttf", "200"=> "http://fonts.gstatic.com/s/josefinsans/v15/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_LjQXMFrLgTsQV0.ttf", "300"=> "http://fonts.gstatic.com/s/josefinsans/v15/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_GbQXMFrLgTsQV0.ttf", "regular"=> "http://fonts.gstatic.com/s/josefinsans/v15/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_DjQXMFrLgTsQV0.ttf", "500"=> "http://fonts.gstatic.com/s/josefinsans/v15/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_ArQXMFrLgTsQV0.ttf", "600"=> "http://fonts.gstatic.com/s/josefinsans/v15/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_ObXXMFrLgTsQV0.ttf", "700"=> "http://fonts.gstatic.com/s/josefinsans/v15/Qw3PZQNVED7rKGKxtqIqX5E-AVSJrOCfjY46_N_XXMFrLgTsQV0.ttf", "100italic"=> "http://fonts.gstatic.com/s/josefinsans/v15/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTtINhKibpUV3MEQ.ttf", "200italic"=> "http://fonts.gstatic.com/s/josefinsans/v15/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTNIJhKibpUV3MEQ.ttf", "300italic"=> "http://fonts.gstatic.com/s/josefinsans/v15/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCT6oJhKibpUV3MEQ.ttf", "italic"=> "http://fonts.gstatic.com/s/josefinsans/v15/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTtIJhKibpUV3MEQ.ttf", "500italic"=> "http://fonts.gstatic.com/s/josefinsans/v15/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCThoJhKibpUV3MEQ.ttf", "600italic"=> "http://fonts.gstatic.com/s/josefinsans/v15/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTaoVhKibpUV3MEQ.ttf", "700italic"=> "http://fonts.gstatic.com/s/josefinsans/v15/Qw3JZQNVED7rKGKxtqIqX5EUCGZ2dIn0FyA96fCTU4VhKibpUV3MEQ.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 444 => [ "family"=> "Josefin Slab", "variants"=> [ 0=> "100", 1=> "100italic", 2=> "300", 3=> "300italic", 4=> "regular", 5=> "italic", 6=> "600", 7=> "600italic", 8=> "700", 9=> "700italic" ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "100"=> "http://fonts.gstatic.com/s/josefinslab/v10/lW-nwjwOK3Ps5GSJlNNkMalvyQ6qBM7oPxMX.ttf", "100italic"=> "http://fonts.gstatic.com/s/josefinslab/v10/lW-lwjwOK3Ps5GSJlNNkMalnrzbODsrKOgMX95A.ttf", "300"=> "http://fonts.gstatic.com/s/josefinslab/v10/lW-mwjwOK3Ps5GSJlNNkMalvASyKLuDkNgoO7g.ttf", "300italic"=> "http://fonts.gstatic.com/s/josefinslab/v10/lW-kwjwOK3Ps5GSJlNNkMalnrzYGLOrgFA8e7onu.ttf", "regular"=> "http://fonts.gstatic.com/s/josefinslab/v10/lW-5wjwOK3Ps5GSJlNNkMalXrQSuJsv4Pw.ttf", "italic"=> "http://fonts.gstatic.com/s/josefinslab/v10/lW-nwjwOK3Ps5GSJlNNkMalnrw6qBM7oPxMX.ttf", "600"=> "http://fonts.gstatic.com/s/josefinslab/v10/lW-mwjwOK3Ps5GSJlNNkMalvdSqKLuDkNgoO7g.ttf", "600italic"=> "http://fonts.gstatic.com/s/josefinslab/v10/lW-kwjwOK3Ps5GSJlNNkMalnrzZyKurgFA8e7onu.ttf", "700"=> "http://fonts.gstatic.com/s/josefinslab/v10/lW-mwjwOK3Ps5GSJlNNkMalvESuKLuDkNgoO7g.ttf", "700italic"=> "http://fonts.gstatic.com/s/josefinslab/v10/lW-kwjwOK3Ps5GSJlNNkMalnrzYWK-rgFA8e7onu.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 445 => [ "family"=> "Jost", "variants"=> [ 0=> "100", 1=> "200", 2=> "300", 3=> "regular", 4=> "500", 5=> "600", 6=> "700", 7=> "800", 8=> "900", 9=> "100italic", 10=> "200italic", 11=> "300italic", 12=> "italic", 13=> "500italic", 14=> "600italic", 15=> "700italic", 16=> "800italic", 17=> "900italic", ], "subsets"=> [ 0=> "cyrillic", 1=> "latin", 2=> "latin-ext", ], "version"=> "v2", "lastModified"=> "2020-05-13", "files"=> [ "100"=> "http://fonts.gstatic.com/s/jost/v2/92zPtBhPNqw79Ij1E865zBUv7myjJAVGPokMmuHL.ttf", "200"=> "http://fonts.gstatic.com/s/jost/v2/92zPtBhPNqw79Ij1E865zBUv7mwjJQVGPokMmuHL.ttf", "300"=> "http://fonts.gstatic.com/s/jost/v2/92zPtBhPNqw79Ij1E865zBUv7mz9JQVGPokMmuHL.ttf", "regular"=> "http://fonts.gstatic.com/s/jost/v2/92zPtBhPNqw79Ij1E865zBUv7myjJQVGPokMmuHL.ttf", "500"=> "http://fonts.gstatic.com/s/jost/v2/92zPtBhPNqw79Ij1E865zBUv7myRJQVGPokMmuHL.ttf", "600"=> "http://fonts.gstatic.com/s/jost/v2/92zPtBhPNqw79Ij1E865zBUv7mx9IgVGPokMmuHL.ttf", "700"=> "http://fonts.gstatic.com/s/jost/v2/92zPtBhPNqw79Ij1E865zBUv7mxEIgVGPokMmuHL.ttf", "800"=> "http://fonts.gstatic.com/s/jost/v2/92zPtBhPNqw79Ij1E865zBUv7mwjIgVGPokMmuHL.ttf", "900"=> "http://fonts.gstatic.com/s/jost/v2/92zPtBhPNqw79Ij1E865zBUv7mwKIgVGPokMmuHL.ttf", "100italic"=> "http://fonts.gstatic.com/s/jost/v2/92zJtBhPNqw73oHH7BbQp4-B6XlrZu0ENI0un_HLMEo.ttf", "200italic"=> "http://fonts.gstatic.com/s/jost/v2/92zJtBhPNqw73oHH7BbQp4-B6XlrZm0FNI0un_HLMEo.ttf", "300italic"=> "http://fonts.gstatic.com/s/jost/v2/92zJtBhPNqw73oHH7BbQp4-B6XlrZrMFNI0un_HLMEo.ttf", "italic"=> "http://fonts.gstatic.com/s/jost/v2/92zJtBhPNqw73oHH7BbQp4-B6XlrZu0FNI0un_HLMEo.ttf", "500italic"=> "http://fonts.gstatic.com/s/jost/v2/92zJtBhPNqw73oHH7BbQp4-B6XlrZt8FNI0un_HLMEo.ttf", "600italic"=> "http://fonts.gstatic.com/s/jost/v2/92zJtBhPNqw73oHH7BbQp4-B6XlrZjMCNI0un_HLMEo.ttf", "700italic"=> "http://fonts.gstatic.com/s/jost/v2/92zJtBhPNqw73oHH7BbQp4-B6XlrZgoCNI0un_HLMEo.ttf", "800italic"=> "http://fonts.gstatic.com/s/jost/v2/92zJtBhPNqw73oHH7BbQp4-B6XlrZm0CNI0un_HLMEo.ttf", "900italic"=> "http://fonts.gstatic.com/s/jost/v2/92zJtBhPNqw73oHH7BbQp4-B6XlrZkQCNI0un_HLMEo.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 446 => [ "family"=> "Joti One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/jotione/v8/Z9XVDmdJQAmWm9TwaYTe4u2El6GC.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 447 => [ "family"=> "Jua", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "korean", 1=> "latin", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/jua/v8/co3KmW9ljjAjc-DZCsKgsg.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 448 => [ "family"=> "Judson", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "700", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v12", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/judson/v12/FeVRS0Fbvbc14VxRD7N01bV7kg.ttf", "italic"=> "http://fonts.gstatic.com/s/judson/v12/FeVTS0Fbvbc14VxhDblw97BrknZf.ttf", "700"=> "http://fonts.gstatic.com/s/judson/v12/FeVSS0Fbvbc14Vxps5xQ3Z5nm29Gww.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 449 => [ "family"=> "Julee", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/julee/v9/TuGfUVB3RpZPQ6ZLodgzydtk.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 450 => [ "family"=> "Julius Sans One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/juliussansone/v8/1Pt2g8TAX_SGgBGUi0tGOYEga5W-xXEW6aGXHw.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 451 => [ "family"=> "Junge", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/junge/v7/gokgH670Gl1lUqAdvhB7SnKm.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 452 => [ "family"=> "Jura", "variants"=> [ 0=> "300", 1=> "regular", 2=> "500", 3=> "600", 4=> "700", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "greek", 3=> "greek-ext", 4=> "latin", 5=> "latin-ext", 6=> "vietnamese", ], "version"=> "v14", "lastModified"=> "2020-02-05", "files"=> [ "300"=> "http://fonts.gstatic.com/s/jura/v14/z7NOdRfiaC4Vd8hhoPzfb5vBTP0D7auhTfmrH_rt.ttf", "regular"=> "http://fonts.gstatic.com/s/jura/v14/z7NOdRfiaC4Vd8hhoPzfb5vBTP1d7auhTfmrH_rt.ttf", "500"=> "http://fonts.gstatic.com/s/jura/v14/z7NOdRfiaC4Vd8hhoPzfb5vBTP1v7auhTfmrH_rt.ttf", "600"=> "http://fonts.gstatic.com/s/jura/v14/z7NOdRfiaC4Vd8hhoPzfb5vBTP2D6quhTfmrH_rt.ttf", "700"=> "http://fonts.gstatic.com/s/jura/v14/z7NOdRfiaC4Vd8hhoPzfb5vBTP266quhTfmrH_rt.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 453 => [ "family"=> "Just Another Hand", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/justanotherhand/v11/845CNN4-AJyIGvIou-6yJKyptyOpOcr_BmmlS5aw.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 454 => [ "family"=> "Just Me Again Down Here", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/justmeagaindownhere/v11/MwQmbgXtz-Wc6RUEGNMc0QpRrfUh2hSdBBMoAuwHvqDwc_fg.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 455 => [ "family"=> "K2D", "variants"=> [ 0=> "100", 1=> "100italic", 2=> "200", 3=> "200italic", 4=> "300", 5=> "300italic", 6=> "regular", 7=> "italic", 8=> "500", 9=> "500italic", 10=> "600", 11=> "600italic", 12=> "700", 13=> "700italic", 14=> "800", 15=> "800italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "thai", 3=> "vietnamese", ], "version"=> "v3", "lastModified"=> "2019-11-05", "files"=> [ "100"=> "http://fonts.gstatic.com/s/k2d/v3/J7aRnpF2V0ErE6UpvrIw74NL.ttf", "100italic"=> "http://fonts.gstatic.com/s/k2d/v3/J7afnpF2V0EjdZ1NtLYS6pNLAjk.ttf", "200"=> "http://fonts.gstatic.com/s/k2d/v3/J7aenpF2V0Erv4QJlJw85ppSGw.ttf", "200italic"=> "http://fonts.gstatic.com/s/k2d/v3/J7acnpF2V0EjdZ3hlZY4xJ9CGyAa.ttf", "300"=> "http://fonts.gstatic.com/s/k2d/v3/J7aenpF2V0Er24cJlJw85ppSGw.ttf", "300italic"=> "http://fonts.gstatic.com/s/k2d/v3/J7acnpF2V0EjdZ2FlpY4xJ9CGyAa.ttf", "regular"=> "http://fonts.gstatic.com/s/k2d/v3/J7aTnpF2V0ETd68tnLcg7w.ttf", "italic"=> "http://fonts.gstatic.com/s/k2d/v3/J7aRnpF2V0EjdaUpvrIw74NL.ttf", "500"=> "http://fonts.gstatic.com/s/k2d/v3/J7aenpF2V0Erg4YJlJw85ppSGw.ttf", "500italic"=> "http://fonts.gstatic.com/s/k2d/v3/J7acnpF2V0EjdZ3dl5Y4xJ9CGyAa.ttf", "600"=> "http://fonts.gstatic.com/s/k2d/v3/J7aenpF2V0Err4EJlJw85ppSGw.ttf", "600italic"=> "http://fonts.gstatic.com/s/k2d/v3/J7acnpF2V0EjdZ3xkJY4xJ9CGyAa.ttf", "700"=> "http://fonts.gstatic.com/s/k2d/v3/J7aenpF2V0Ery4AJlJw85ppSGw.ttf", "700italic"=> "http://fonts.gstatic.com/s/k2d/v3/J7acnpF2V0EjdZ2VkZY4xJ9CGyAa.ttf", "800"=> "http://fonts.gstatic.com/s/k2d/v3/J7aenpF2V0Er14MJlJw85ppSGw.ttf", "800italic"=> "http://fonts.gstatic.com/s/k2d/v3/J7acnpF2V0EjdZ2JkpY4xJ9CGyAa.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 456 => [ "family"=> "Kadwa", "variants"=> [ 0=> "regular", 1=> "700", ], "subsets"=> [ 0=> "devanagari", 1=> "latin", ], "version"=> "v4", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/kadwa/v4/rnCm-x5V0g7iphTHRcc2s2XH.ttf", "700"=> "http://fonts.gstatic.com/s/kadwa/v4/rnCr-x5V0g7ipix7auM-mHnOSOuk.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 457 => [ "family"=> "Kalam", "variants"=> [ 0=> "300", 1=> "regular", 2=> "700", ], "subsets"=> [ 0=> "devanagari", 1=> "latin", 2=> "latin-ext", ], "version"=> "v10", "lastModified"=> "2019-07-17", "files"=> [ "300"=> "http://fonts.gstatic.com/s/kalam/v10/YA9Qr0Wd4kDdMtD6GgLLmCUItqGt.ttf", "regular"=> "http://fonts.gstatic.com/s/kalam/v10/YA9dr0Wd4kDdMuhWMibDszkB.ttf", "700"=> "http://fonts.gstatic.com/s/kalam/v10/YA9Qr0Wd4kDdMtDqHQLLmCUItqGt.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 458 => [ "family"=> "Kameron", "variants"=> [ 0=> "regular", 1=> "700", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/kameron/v10/vm82dR7vXErQxuznsL4wL-XIYH8.ttf", "700"=> "http://fonts.gstatic.com/s/kameron/v10/vm8zdR7vXErQxuzniAIfC-3jfHb--NY.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 459 => [ "family"=> "Kanit", "variants"=> [ 0=> "100", 1=> "100italic", 2=> "200", 3=> "200italic", 4=> "300", 5=> "300italic", 6=> "regular", 7=> "italic", 8=> "500", 9=> "500italic", 10=> "600", 11=> "600italic", 12=> "700", 13=> "700italic", 14=> "800", 15=> "800italic", 16=> "900", 17=> "900italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "thai", 3=> "vietnamese", ], "version"=> "v5", "lastModified"=> "2019-07-17", "files"=> [ "100"=> "http://fonts.gstatic.com/s/kanit/v5/nKKX-Go6G5tXcr72GwWKcaxALFs.ttf", "100italic"=> "http://fonts.gstatic.com/s/kanit/v5/nKKV-Go6G5tXcraQI2GAdY5FPFtrGw.ttf", "200"=> "http://fonts.gstatic.com/s/kanit/v5/nKKU-Go6G5tXcr5aOiWgX6BJNUJy.ttf", "200italic"=> "http://fonts.gstatic.com/s/kanit/v5/nKKS-Go6G5tXcraQI82hVaRrMFJyAu4.ttf", "300"=> "http://fonts.gstatic.com/s/kanit/v5/nKKU-Go6G5tXcr4-OSWgX6BJNUJy.ttf", "300italic"=> "http://fonts.gstatic.com/s/kanit/v5/nKKS-Go6G5tXcraQI6miVaRrMFJyAu4.ttf", "regular"=> "http://fonts.gstatic.com/s/kanit/v5/nKKZ-Go6G5tXcoaSEQGodLxA.ttf", "italic"=> "http://fonts.gstatic.com/s/kanit/v5/nKKX-Go6G5tXcraQGwWKcaxALFs.ttf", "500"=> "http://fonts.gstatic.com/s/kanit/v5/nKKU-Go6G5tXcr5mOCWgX6BJNUJy.ttf", "500italic"=> "http://fonts.gstatic.com/s/kanit/v5/nKKS-Go6G5tXcraQI_GjVaRrMFJyAu4.ttf", "600"=> "http://fonts.gstatic.com/s/kanit/v5/nKKU-Go6G5tXcr5KPyWgX6BJNUJy.ttf", "600italic"=> "http://fonts.gstatic.com/s/kanit/v5/nKKS-Go6G5tXcraQI92kVaRrMFJyAu4.ttf", "700"=> "http://fonts.gstatic.com/s/kanit/v5/nKKU-Go6G5tXcr4uPiWgX6BJNUJy.ttf", "700italic"=> "http://fonts.gstatic.com/s/kanit/v5/nKKS-Go6G5tXcraQI7mlVaRrMFJyAu4.ttf", "800"=> "http://fonts.gstatic.com/s/kanit/v5/nKKU-Go6G5tXcr4yPSWgX6BJNUJy.ttf", "800italic"=> "http://fonts.gstatic.com/s/kanit/v5/nKKS-Go6G5tXcraQI6WmVaRrMFJyAu4.ttf", "900"=> "http://fonts.gstatic.com/s/kanit/v5/nKKU-Go6G5tXcr4WPCWgX6BJNUJy.ttf", "900italic"=> "http://fonts.gstatic.com/s/kanit/v5/nKKS-Go6G5tXcraQI4GnVaRrMFJyAu4.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 460 => [ "family"=> "Kantumruy", "variants"=> [ 0=> "300", 1=> "regular", 2=> "700", ], "subsets"=> [ 0=> "khmer", ], "version"=> "v7", "lastModified"=> "2019-07-26", "files"=> [ "300"=> "http://fonts.gstatic.com/s/kantumruy/v7/syk0-yJ0m7wyVb-f4FOPUtDlpn-UJ1H6Uw.ttf", "regular"=> "http://fonts.gstatic.com/s/kantumruy/v7/sykx-yJ0m7wyVb-f4FO3_vjBrlSILg.ttf", "700"=> "http://fonts.gstatic.com/s/kantumruy/v7/syk0-yJ0m7wyVb-f4FOPQtflpn-UJ1H6Uw.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 461 => [ "family"=> "Karla", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "700", 3=> "700italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v13", "lastModified"=> "2019-12-08", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/karla/v13/qkBbXvYC6trAT4RSJN225aZO.ttf", "italic"=> "http://fonts.gstatic.com/s/karla/v13/qkBVXvYC6trAT7RQLtmU4LZOgAU.ttf", "700"=> "http://fonts.gstatic.com/s/karla/v13/qkBWXvYC6trAT7zuC_m-zrpHmRzC.ttf", "700italic"=> "http://fonts.gstatic.com/s/karla/v13/qkBQXvYC6trAT7RQFmW7xL5lnAzCKNg.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 462 => [ "family"=> "Karma", "variants"=> [ 0=> "300", 1=> "regular", 2=> "500", 3=> "600", 4=> "700", ], "subsets"=> [ 0=> "devanagari", 1=> "latin", 2=> "latin-ext", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "300"=> "http://fonts.gstatic.com/s/karma/v10/va9F4kzAzMZRGLjDY8Z_uqzGQC_-.ttf", "regular"=> "http://fonts.gstatic.com/s/karma/v10/va9I4kzAzMZRGIBvS-J3kbDP.ttf", "500"=> "http://fonts.gstatic.com/s/karma/v10/va9F4kzAzMZRGLibYsZ_uqzGQC_-.ttf", "600"=> "http://fonts.gstatic.com/s/karma/v10/va9F4kzAzMZRGLi3ZcZ_uqzGQC_-.ttf", "700"=> "http://fonts.gstatic.com/s/karma/v10/va9F4kzAzMZRGLjTZMZ_uqzGQC_-.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 463 => [ "family"=> "Katibeh", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "arabic", 1=> "latin", 2=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/katibeh/v7/ZGjXol5MQJog4bxDaC1RVDNdGDs.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 464 => [ "family"=> "Kaushan Script", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-17", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/kaushanscript/v8/vm8vdRfvXFLG3OLnsO15WYS5DF7_ytN3M48a.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 465 => [ "family"=> "Kavivanar", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "tamil", ], "version"=> "v5", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/kavivanar/v5/o-0IIpQgyXYSwhxP7_Jb4j5Ba_2c7A.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 466 => [ "family"=> "Kavoon", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/kavoon/v8/pxiFyp4_scRYhlU4NLr6f1pdEQ.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 467 => [ "family"=> "Kdam Thmor", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "khmer", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/kdamthmor/v7/MwQzbhjs3veF6QwJVf0JkGMViblPtXs.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 468 => [ "family"=> "Keania One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/keaniaone/v7/zOL54pXJk65E8pXardnuycRuv-hHkOs.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 469 => [ "family"=> "Kelly Slab", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "cyrillic", 1=> "latin", 2=> "latin-ext", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/kellyslab/v10/-W_7XJX0Rz3cxUnJC5t6TkMBf50kbiM.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 470 => [ "family"=> "Kenia", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/kenia/v11/jizURE5PuHQH9qCONUGswfGM.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 471 => [ "family"=> "Khand", "variants"=> [ 0=> "300", 1=> "regular", 2=> "500", 3=> "600", 4=> "700", ], "subsets"=> [ 0=> "devanagari", 1=> "latin", 2=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "300"=> "http://fonts.gstatic.com/s/khand/v8/TwMN-IINQlQQ0bL5cFE3ZwaH__-C.ttf", "regular"=> "http://fonts.gstatic.com/s/khand/v8/TwMA-IINQlQQ0YpVWHU_TBqO.ttf", "500"=> "http://fonts.gstatic.com/s/khand/v8/TwMN-IINQlQQ0bKhcVE3ZwaH__-C.ttf", "600"=> "http://fonts.gstatic.com/s/khand/v8/TwMN-IINQlQQ0bKNdlE3ZwaH__-C.ttf", "700"=> "http://fonts.gstatic.com/s/khand/v8/TwMN-IINQlQQ0bLpd1E3ZwaH__-C.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 472 => [ "family"=> "Khmer", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "khmer", ], "version"=> "v12", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/khmer/v12/MjQImit_vPPwpF-BpN2EeYmD.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 473 => [ "family"=> "Khula", "variants"=> [ 0=> "300", 1=> "regular", 2=> "600", 3=> "700", 4=> "800", ], "subsets"=> [ 0=> "devanagari", 1=> "latin", 2=> "latin-ext", ], "version"=> "v5", "lastModified"=> "2019-07-16", "files"=> [ "300"=> "http://fonts.gstatic.com/s/khula/v5/OpNPnoEOns3V7G-ljCvUrC59XwXD.ttf", "regular"=> "http://fonts.gstatic.com/s/khula/v5/OpNCnoEOns3V7FcJpA_chzJ0.ttf", "600"=> "http://fonts.gstatic.com/s/khula/v5/OpNPnoEOns3V7G_RiivUrC59XwXD.ttf", "700"=> "http://fonts.gstatic.com/s/khula/v5/OpNPnoEOns3V7G-1iyvUrC59XwXD.ttf", "800"=> "http://fonts.gstatic.com/s/khula/v5/OpNPnoEOns3V7G-piCvUrC59XwXD.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 474 => [ "family"=> "Kirang Haerang", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "korean", 1=> "latin", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/kiranghaerang/v8/E21-_dn_gvvIjhYON1lpIU4-bcqvWPaJq4no.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 475 => [ "family"=> "Kite One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/kiteone/v7/70lQu7shLnA_E02vyq1b6HnGO4uA.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 476 => [ "family"=> "Knewave", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/knewave/v8/sykz-yx0lLcxQaSItSq9-trEvlQ.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 477 => [ "family"=> "KoHo", "variants"=> [ 0=> "200", 1=> "200italic", 2=> "300", 3=> "300italic", 4=> "regular", 5=> "italic", 6=> "500", 7=> "500italic", 8=> "600", 9=> "600italic", 10=> "700", 11=> "700italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "thai", 3=> "vietnamese", ], "version"=> "v3", "lastModified"=> "2019-11-05", "files"=> [ "200"=> "http://fonts.gstatic.com/s/koho/v3/K2FxfZ5fmddNPuE1WJ75JoKhHys.ttf", "200italic"=> "http://fonts.gstatic.com/s/koho/v3/K2FzfZ5fmddNNisssJ_zIqCkDyvqZA.ttf", "300"=> "http://fonts.gstatic.com/s/koho/v3/K2FxfZ5fmddNPoU2WJ75JoKhHys.ttf", "300italic"=> "http://fonts.gstatic.com/s/koho/v3/K2FzfZ5fmddNNiss1JzzIqCkDyvqZA.ttf", "regular"=> "http://fonts.gstatic.com/s/koho/v3/K2F-fZ5fmddNBikefJbSOos.ttf", "italic"=> "http://fonts.gstatic.com/s/koho/v3/K2FwfZ5fmddNNisUeLTXKou4Bg.ttf", "500"=> "http://fonts.gstatic.com/s/koho/v3/K2FxfZ5fmddNPt03WJ75JoKhHys.ttf", "500italic"=> "http://fonts.gstatic.com/s/koho/v3/K2FzfZ5fmddNNissjJ3zIqCkDyvqZA.ttf", "600"=> "http://fonts.gstatic.com/s/koho/v3/K2FxfZ5fmddNPvEwWJ75JoKhHys.ttf", "600italic"=> "http://fonts.gstatic.com/s/koho/v3/K2FzfZ5fmddNNissoJrzIqCkDyvqZA.ttf", "700"=> "http://fonts.gstatic.com/s/koho/v3/K2FxfZ5fmddNPpUxWJ75JoKhHys.ttf", "700italic"=> "http://fonts.gstatic.com/s/koho/v3/K2FzfZ5fmddNNissxJvzIqCkDyvqZA.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 478 => [ "family"=> "Kodchasan", "variants"=> [ 0=> "200", 1=> "200italic", 2=> "300", 3=> "300italic", 4=> "regular", 5=> "italic", 6=> "500", 7=> "500italic", 8=> "600", 9=> "600italic", 10=> "700", 11=> "700italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "thai", 3=> "vietnamese", ], "version"=> "v3", "lastModified"=> "2019-11-05", "files"=> [ "200"=> "http://fonts.gstatic.com/s/kodchasan/v3/1cX0aUPOAJv9sG4I-DJeR1Cggeqo3eMeoA.ttf", "200italic"=> "http://fonts.gstatic.com/s/kodchasan/v3/1cXqaUPOAJv9sG4I-DJWjUlIgOCs_-YOoIgN.ttf", "300"=> "http://fonts.gstatic.com/s/kodchasan/v3/1cX0aUPOAJv9sG4I-DJeI1Oggeqo3eMeoA.ttf", "300italic"=> "http://fonts.gstatic.com/s/kodchasan/v3/1cXqaUPOAJv9sG4I-DJWjUksg-Cs_-YOoIgN.ttf", "regular"=> "http://fonts.gstatic.com/s/kodchasan/v3/1cXxaUPOAJv9sG4I-DJmj3uEicG01A.ttf", "italic"=> "http://fonts.gstatic.com/s/kodchasan/v3/1cX3aUPOAJv9sG4I-DJWjXGAq8Sk1PoH.ttf", "500"=> "http://fonts.gstatic.com/s/kodchasan/v3/1cX0aUPOAJv9sG4I-DJee1Kggeqo3eMeoA.ttf", "500italic"=> "http://fonts.gstatic.com/s/kodchasan/v3/1cXqaUPOAJv9sG4I-DJWjUl0guCs_-YOoIgN.ttf", "600"=> "http://fonts.gstatic.com/s/kodchasan/v3/1cX0aUPOAJv9sG4I-DJeV1Wggeqo3eMeoA.ttf", "600italic"=> "http://fonts.gstatic.com/s/kodchasan/v3/1cXqaUPOAJv9sG4I-DJWjUlYheCs_-YOoIgN.ttf", "700"=> "http://fonts.gstatic.com/s/kodchasan/v3/1cX0aUPOAJv9sG4I-DJeM1Sggeqo3eMeoA.ttf", "700italic"=> "http://fonts.gstatic.com/s/kodchasan/v3/1cXqaUPOAJv9sG4I-DJWjUk8hOCs_-YOoIgN.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 479 => [ "family"=> "Kosugi", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "cyrillic", 1=> "japanese", 2=> "latin", ], "version"=> "v6", "lastModified"=> "2020-03-03", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/kosugi/v6/pxiFyp4_v8FCjlI4NLr6f1pdEQ.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 480 => [ "family"=> "Kosugi Maru", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "cyrillic", 1=> "japanese", 2=> "latin", ], "version"=> "v6", "lastModified"=> "2020-03-03", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/kosugimaru/v6/0nksC9PgP_wGh21A2KeqGiTqivr9iBq_.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 481 => [ "family"=> "Kotta One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/kottaone/v7/S6u_w41LXzPc_jlfNWqPHA3s5dwt7w.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 482 => [ "family"=> "Koulen", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "khmer", ], "version"=> "v13", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/koulen/v13/AMOQz46as3KIBPeWgnA9kuYMUg.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 483 => [ "family"=> "Kranky", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/kranky/v10/hESw6XVgJzlPsFnMpheEZo_H_w.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 484 => [ "family"=> "Kreon", "variants"=> [ 0=> "300", 1=> "regular", 2=> "500", 3=> "600", 4=> "700", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v22", "lastModified"=> "2020-02-05", "files"=> [ "300"=> "http://fonts.gstatic.com/s/kreon/v22/t5t9IRIUKY-TFF_LW5lnMR3v2DnvPNimejUfp2dWNg.ttf", "regular"=> "http://fonts.gstatic.com/s/kreon/v22/t5t9IRIUKY-TFF_LW5lnMR3v2DnvYtimejUfp2dWNg.ttf", "500"=> "http://fonts.gstatic.com/s/kreon/v22/t5t9IRIUKY-TFF_LW5lnMR3v2DnvUNimejUfp2dWNg.ttf", "600"=> "http://fonts.gstatic.com/s/kreon/v22/t5t9IRIUKY-TFF_LW5lnMR3v2DnvvN-mejUfp2dWNg.ttf", "700"=> "http://fonts.gstatic.com/s/kreon/v22/t5t9IRIUKY-TFF_LW5lnMR3v2Dnvhd-mejUfp2dWNg.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 485 => [ "family"=> "Kristi", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/kristi/v11/uK_y4ricdeU6zwdRCh0TMv6EXw.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 486 => [ "family"=> "Krona One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/kronaone/v8/jAnEgHdjHcjgfIb1ZcUCMY-h3cWkWg.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 487 => [ "family"=> "Krub", "variants"=> [ 0=> "200", 1=> "200italic", 2=> "300", 3=> "300italic", 4=> "regular", 5=> "italic", 6=> "500", 7=> "500italic", 8=> "600", 9=> "600italic", 10=> "700", 11=> "700italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "thai", 3=> "vietnamese", ], "version"=> "v3", "lastModified"=> "2019-11-05", "files"=> [ "200"=> "http://fonts.gstatic.com/s/krub/v3/sZlEdRyC6CRYZo47KLF4R6gWaf8.ttf", "200italic"=> "http://fonts.gstatic.com/s/krub/v3/sZlGdRyC6CRYbkQiwLByQ4oTef_6gQ.ttf", "300"=> "http://fonts.gstatic.com/s/krub/v3/sZlEdRyC6CRYZuo4KLF4R6gWaf8.ttf", "300italic"=> "http://fonts.gstatic.com/s/krub/v3/sZlGdRyC6CRYbkQipLNyQ4oTef_6gQ.ttf", "regular"=> "http://fonts.gstatic.com/s/krub/v3/sZlLdRyC6CRYXkYQDLlTW6E.ttf", "italic"=> "http://fonts.gstatic.com/s/krub/v3/sZlFdRyC6CRYbkQaCJtWS6EPcA.ttf", "500"=> "http://fonts.gstatic.com/s/krub/v3/sZlEdRyC6CRYZrI5KLF4R6gWaf8.ttf", "500italic"=> "http://fonts.gstatic.com/s/krub/v3/sZlGdRyC6CRYbkQi_LJyQ4oTef_6gQ.ttf", "600"=> "http://fonts.gstatic.com/s/krub/v3/sZlEdRyC6CRYZp4-KLF4R6gWaf8.ttf", "600italic"=> "http://fonts.gstatic.com/s/krub/v3/sZlGdRyC6CRYbkQi0LVyQ4oTef_6gQ.ttf", "700"=> "http://fonts.gstatic.com/s/krub/v3/sZlEdRyC6CRYZvo_KLF4R6gWaf8.ttf", "700italic"=> "http://fonts.gstatic.com/s/krub/v3/sZlGdRyC6CRYbkQitLRyQ4oTef_6gQ.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 488 => [ "family"=> "Kulim Park", "variants"=> [ 0=> "200", 1=> "200italic", 2=> "300", 3=> "300italic", 4=> "regular", 5=> "italic", 6=> "600", 7=> "600italic", 8=> "700", 9=> "700italic" ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v1", "lastModified"=> "2020-03-03", "files"=> [ "200"=> "http://fonts.gstatic.com/s/kulimpark/v1/fdN49secq3hflz1Uu3IwjJYNwa5aZbUvGjU.ttf", "200italic"=> "http://fonts.gstatic.com/s/kulimpark/v1/fdNm9secq3hflz1Uu3IwhFwUKa9QYZcqCjVVUA.ttf", "300"=> "http://fonts.gstatic.com/s/kulimpark/v1/fdN49secq3hflz1Uu3IwjPIOwa5aZbUvGjU.ttf", "300italic"=> "http://fonts.gstatic.com/s/kulimpark/v1/fdNm9secq3hflz1Uu3IwhFwUTaxQYZcqCjVVUA.ttf", "regular"=> "http://fonts.gstatic.com/s/kulimpark/v1/fdN79secq3hflz1Uu3IwtF4m5aZxebw.ttf", "italic"=> "http://fonts.gstatic.com/s/kulimpark/v1/fdN59secq3hflz1Uu3IwhFws4YR0abw2Aw.ttf", "600"=> "http://fonts.gstatic.com/s/kulimpark/v1/fdN49secq3hflz1Uu3IwjIYIwa5aZbUvGjU.ttf", "600italic"=> "http://fonts.gstatic.com/s/kulimpark/v1/fdNm9secq3hflz1Uu3IwhFwUOapQYZcqCjVVUA.ttf", "700"=> "http://fonts.gstatic.com/s/kulimpark/v1/fdN49secq3hflz1Uu3IwjOIJwa5aZbUvGjU.ttf", "700italic"=> "http://fonts.gstatic.com/s/kulimpark/v1/fdNm9secq3hflz1Uu3IwhFwUXatQYZcqCjVVUA.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 489 => [ "family"=> "Kumar One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "gujarati", 1=> "latin", 2=> "latin-ext", ], "version"=> "v4", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/kumarone/v4/bMr1mS-P958wYi6YaGeGNO6WU3oT0g.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 490 => [ "family"=> "Kumar One Outline", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "gujarati", 1=> "latin", 2=> "latin-ext", ], "version"=> "v5", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/kumaroneoutline/v5/Noao6VH62pyLP0fsrZ-v18wlUEcX9zDwRQu8EGKF.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 491 => [ "family"=> "Kurale", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "devanagari", 3=> "latin", 4=> "latin-ext", ], "version"=> "v5", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/kurale/v5/4iCs6KV9e9dXjho6eAT3v02QFg.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 492 => [ "family"=> "La Belle Aurore", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/labelleaurore/v10/RrQIbot8-mNYKnGNDkWlocovHeIIG-eFNVmULg.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 493 => [ "family"=> "Lacquer", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v2", "lastModified"=> "2020-03-06", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/lacquer/v2/EYqzma1QwqpG4_BBB7-AXhttQ5I.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 494 => [ "family"=> "Laila", "variants"=> [ 0=> "300", 1=> "regular", 2=> "500", 3=> "600", 4=> "700", ], "subsets"=> [ 0=> "devanagari", 1=> "latin", 2=> "latin-ext", ], "version"=> "v6", "lastModified"=> "2019-07-16", "files"=> [ "300"=> "http://fonts.gstatic.com/s/laila/v6/LYjBdG_8nE8jDLzxogNAh14nVcfe.ttf", "regular"=> "http://fonts.gstatic.com/s/laila/v6/LYjMdG_8nE8jDIRdiidIrEIu.ttf", "500"=> "http://fonts.gstatic.com/s/laila/v6/LYjBdG_8nE8jDLypowNAh14nVcfe.ttf", "600"=> "http://fonts.gstatic.com/s/laila/v6/LYjBdG_8nE8jDLyFpANAh14nVcfe.ttf", "700"=> "http://fonts.gstatic.com/s/laila/v6/LYjBdG_8nE8jDLzhpQNAh14nVcfe.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 495 => [ "family"=> "Lakki Reddy", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "telugu", ], "version"=> "v6", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/lakkireddy/v6/S6u5w49MUSzD9jlCPmvLZQfox9k97-xZ.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 496 => [ "family"=> "Lalezar", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "arabic", 1=> "latin", 2=> "latin-ext", 3=> "vietnamese", ], "version"=> "v6", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/lalezar/v6/zrfl0HLVx-HwTP82UaDyIiL0RCg.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 497 => [ "family"=> "Lancelot", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/lancelot/v9/J7acnppxBGtQEulG4JY4xJ9CGyAa.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 498 => [ "family"=> "Lateef", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "arabic", 1=> "latin", ], "version"=> "v15", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/lateef/v15/hESw6XVnNCxEvkbMpheEZo_H_w.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 499 => [ "family"=> "Lato", "variants"=> [ 0=> "100", 1=> "100italic", 2=> "300", 3=> "300italic", 4=> "regular", 5=> "italic", 6=> "700", 7=> "700italic", 8=> "900", 9=> "900italic" ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v16", "lastModified"=> "2019-07-23", "files"=> [ "100"=> "http://fonts.gstatic.com/s/lato/v16/S6u8w4BMUTPHh30wWyWrFCbw7A.ttf", "100italic"=> "http://fonts.gstatic.com/s/lato/v16/S6u-w4BMUTPHjxsIPy-vNiPg7MU0.ttf", "300"=> "http://fonts.gstatic.com/s/lato/v16/S6u9w4BMUTPHh7USew-FGC_p9dw.ttf", "300italic"=> "http://fonts.gstatic.com/s/lato/v16/S6u_w4BMUTPHjxsI9w2PHA3s5dwt7w.ttf", "regular"=> "http://fonts.gstatic.com/s/lato/v16/S6uyw4BMUTPHvxk6XweuBCY.ttf", "italic"=> "http://fonts.gstatic.com/s/lato/v16/S6u8w4BMUTPHjxswWyWrFCbw7A.ttf", "700"=> "http://fonts.gstatic.com/s/lato/v16/S6u9w4BMUTPHh6UVew-FGC_p9dw.ttf", "700italic"=> "http://fonts.gstatic.com/s/lato/v16/S6u_w4BMUTPHjxsI5wqPHA3s5dwt7w.ttf", "900"=> "http://fonts.gstatic.com/s/lato/v16/S6u9w4BMUTPHh50Xew-FGC_p9dw.ttf", "900italic"=> "http://fonts.gstatic.com/s/lato/v16/S6u_w4BMUTPHjxsI3wiPHA3s5dwt7w.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 500 => [ "family"=> "League Script", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v11", "lastModified"=> "2019-07-26", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/leaguescript/v11/CSR54zpSlumSWj9CGVsoBZdeaNNUuOwkC2s.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 501 => [ "family"=> "Leckerli One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/leckerlione/v10/V8mCoQH8VCsNttEnxnGQ-1itLZxcBtItFw.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 502 => [ "family"=> "Ledger", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "cyrillic", 1=> "latin", 2=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/ledger/v7/j8_q6-HK1L3if_sxm8DwHTBhHw.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 503 => [ "family"=> "Lekton", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "700", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/lekton/v10/SZc43FDmLaWmWpBeXxfonUPL6Q.ttf", "italic"=> "http://fonts.gstatic.com/s/lekton/v10/SZc63FDmLaWmWpBuXR3sv0bb6StO.ttf", "700"=> "http://fonts.gstatic.com/s/lekton/v10/SZc73FDmLaWmWpBm4zjMlWjX4DJXgQ.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 504 => [ "family"=> "Lemon", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/lemon/v8/HI_EiYEVKqRMq0jBSZXAQ4-d.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 505 => [ "family"=> "Lemonada", "variants"=> [ 0=> "300", 1=> "regular", 2=> "500", 3=> "600", 4=> "700", ], "subsets"=> [ 0=> "arabic", 1=> "latin", 2=> "latin-ext", 3=> "vietnamese", ], "version"=> "v9", "lastModified"=> "2020-02-05", "files"=> [ "300"=> "http://fonts.gstatic.com/s/lemonada/v9/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGJOt2mfWc3Z2pTg.ttf", "regular"=> "http://fonts.gstatic.com/s/lemonada/v9/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGeut2mfWc3Z2pTg.ttf", "500"=> "http://fonts.gstatic.com/s/lemonada/v9/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGSOt2mfWc3Z2pTg.ttf", "600"=> "http://fonts.gstatic.com/s/lemonada/v9/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGpOx2mfWc3Z2pTg.ttf", "700"=> "http://fonts.gstatic.com/s/lemonada/v9/0QI-MXFD9oygTWy_R-FFlwV-bgfR7QJGnex2mfWc3Z2pTg.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 506 => [ "family"=> "Lexend Deca", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v1", "lastModified"=> "2020-03-03", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/lexenddeca/v1/K2F1fZFYk-dHSE0UPPuwQ6qgLS76ZHOM.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 507 => [ "family"=> "Lexend Exa", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v1", "lastModified"=> "2020-03-03", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/lexendexa/v1/UMBXrPdOoHOnxExyjdBeWirXArM58BY.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 508 => [ "family"=> "Lexend Giga", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v1", "lastModified"=> "2020-03-03", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/lexendgiga/v1/PlI5Fl67Mah5Y8yMHE7lkVxEt8CwfGaD.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 509 => [ "family"=> "Lexend Mega", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v1", "lastModified"=> "2020-03-03", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/lexendmega/v1/qFdA35aBi5JtHD41zSTFEv7K6BsAikI7.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 510 => [ "family"=> "Lexend Peta", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v1", "lastModified"=> "2020-03-03", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/lexendpeta/v1/BXRvvFPGjeLPh0kCfI4OkE_1c8Tf1IW3.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 511 => [ "family"=> "Lexend Tera", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v1", "lastModified"=> "2020-03-03", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/lexendtera/v1/RrQUbo98_jt_IXnBPwCWtZhARYMgGtWA.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 512 => [ "family"=> "Lexend Zetta", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v1", "lastModified"=> "2020-03-03", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/lexendzetta/v1/ll87K2KYXje7CdOFnEWcU8soliQejRR7AQ.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 513 => [ "family"=> "Libre Barcode 128", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2020-03-03", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/librebarcode128/v9/cIfnMbdUsUoiW3O_hVviCwVjuLtXeJ_A_gMk0izH.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 514 => [ "family"=> "Libre Barcode 128 Text", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2020-03-03", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/librebarcode128text/v9/fdNv9tubt3ZEnz1Gu3I4-zppwZ9CWZ16Z0w5cV3Y6M90w4k.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 515 => [ "family"=> "Libre Barcode 39", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2020-03-03", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/librebarcode39/v9/-nFnOHM08vwC6h8Li1eQnP_AHzI2K_d709jy92k.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 516 => [ "family"=> "Libre Barcode 39 Extended", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v8", "lastModified"=> "2020-03-03", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/librebarcode39extended/v8/8At7Gt6_O5yNS0-K4Nf5U922qSzhJ3dUdfJpwNUgfNRCOZ1GOBw.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 517 => [ "family"=> "Libre Barcode 39 Extended Text", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v8", "lastModified"=> "2020-03-03", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/librebarcode39extendedtext/v8/eLG1P_rwIgOiDA7yrs9LoKaYRVLQ1YldrrOnnL7xPO4jNP68fLIiPopNNA.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 518 => [ "family"=> "Libre Barcode 39 Text", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2020-03-03", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/librebarcode39text/v9/sJoa3KhViNKANw_E3LwoDXvs5Un0HQ1vT-031RRL-9rYaw.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 519 => [ "family"=> "Libre Baskerville", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "700", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-22", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/librebaskerville/v7/kmKnZrc3Hgbbcjq75U4uslyuy4kn0pNeYRI4CN2V.ttf", "italic"=> "http://fonts.gstatic.com/s/librebaskerville/v7/kmKhZrc3Hgbbcjq75U4uslyuy4kn0qNcaxYaDc2V2ro.ttf", "700"=> "http://fonts.gstatic.com/s/librebaskerville/v7/kmKiZrc3Hgbbcjq75U4uslyuy4kn0qviTjYwI8Gcw6Oi.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 520 => [ "family"=> "Libre Caslon Display", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v1", "lastModified"=> "2020-03-03", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/librecaslondisplay/v1/TuGOUUFxWphYQ6YI6q9Xp61FQzxDRKmzr2lRdRhtCC4d.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 521 => [ "family"=> "Libre Caslon Text", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "700", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v1", "lastModified"=> "2020-03-03", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/librecaslontext/v1/DdT878IGsGw1aF1JU10PUbTvNNaDMcq_3eNrHgO1.ttf", "italic"=> "http://fonts.gstatic.com/s/librecaslontext/v1/DdT678IGsGw1aF1JU10PUbTvNNaDMfq91-dJGxO1q9o.ttf", "700"=> "http://fonts.gstatic.com/s/librecaslontext/v1/DdT578IGsGw1aF1JU10PUbTvNNaDMfID8sdjNR-8ssPt.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 522 => [ "family"=> "Libre Franklin", "variants"=> [ 0=> "100", 1=> "100italic", 2=> "200", 3=> "200italic", 4=> "300", 5=> "300italic", 6=> "regular", 7=> "italic", 8=> "500", 9=> "500italic", 10=> "600", 11=> "600italic", 12=> "700", 13=> "700italic", 14=> "800", 15=> "800italic", 16=> "900", 17=> "900italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v4", "lastModified"=> "2019-07-22", "files"=> [ "100"=> "http://fonts.gstatic.com/s/librefranklin/v4/jizBREVItHgc8qDIbSTKq4XkRi182zIZj1bIkNo.ttf", "100italic"=> "http://fonts.gstatic.com/s/librefranklin/v4/jizHREVItHgc8qDIbSTKq4XkRiUa41YTi3TNgNq55w.ttf", "200"=> "http://fonts.gstatic.com/s/librefranklin/v4/jizAREVItHgc8qDIbSTKq4XkRi3Q-hIzoVrBicOg.ttf", "200italic"=> "http://fonts.gstatic.com/s/librefranklin/v4/jizGREVItHgc8qDIbSTKq4XkRiUa4_oyq17jjNOg_oc.ttf", "300"=> "http://fonts.gstatic.com/s/librefranklin/v4/jizAREVItHgc8qDIbSTKq4XkRi20-RIzoVrBicOg.ttf", "300italic"=> "http://fonts.gstatic.com/s/librefranklin/v4/jizGREVItHgc8qDIbSTKq4XkRiUa454xq17jjNOg_oc.ttf", "regular"=> "http://fonts.gstatic.com/s/librefranklin/v4/jizDREVItHgc8qDIbSTKq4XkRhUY0TY7ikbI.ttf", "italic"=> "http://fonts.gstatic.com/s/librefranklin/v4/jizBREVItHgc8qDIbSTKq4XkRiUa2zIZj1bIkNo.ttf", "500"=> "http://fonts.gstatic.com/s/librefranklin/v4/jizAREVItHgc8qDIbSTKq4XkRi3s-BIzoVrBicOg.ttf", "500italic"=> "http://fonts.gstatic.com/s/librefranklin/v4/jizGREVItHgc8qDIbSTKq4XkRiUa48Ywq17jjNOg_oc.ttf", "600"=> "http://fonts.gstatic.com/s/librefranklin/v4/jizAREVItHgc8qDIbSTKq4XkRi3A_xIzoVrBicOg.ttf", "600italic"=> "http://fonts.gstatic.com/s/librefranklin/v4/jizGREVItHgc8qDIbSTKq4XkRiUa4-o3q17jjNOg_oc.ttf", "700"=> "http://fonts.gstatic.com/s/librefranklin/v4/jizAREVItHgc8qDIbSTKq4XkRi2k_hIzoVrBicOg.ttf", "700italic"=> "http://fonts.gstatic.com/s/librefranklin/v4/jizGREVItHgc8qDIbSTKq4XkRiUa4442q17jjNOg_oc.ttf", "800"=> "http://fonts.gstatic.com/s/librefranklin/v4/jizAREVItHgc8qDIbSTKq4XkRi24_RIzoVrBicOg.ttf", "800italic"=> "http://fonts.gstatic.com/s/librefranklin/v4/jizGREVItHgc8qDIbSTKq4XkRiUa45I1q17jjNOg_oc.ttf", "900"=> "http://fonts.gstatic.com/s/librefranklin/v4/jizAREVItHgc8qDIbSTKq4XkRi2c_BIzoVrBicOg.ttf", "900italic"=> "http://fonts.gstatic.com/s/librefranklin/v4/jizGREVItHgc8qDIbSTKq4XkRiUa47Y0q17jjNOg_oc.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 523 => [ "family"=> "Life Savers", "variants"=> [ 0=> "regular", 1=> "700", 2=> "800", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/lifesavers/v10/ZXuie1UftKKabUQMgxAal_lrFgpbuNvB.ttf", "700"=> "http://fonts.gstatic.com/s/lifesavers/v10/ZXu_e1UftKKabUQMgxAal8HXOS5Tk8fIpPRW.ttf", "800"=> "http://fonts.gstatic.com/s/lifesavers/v10/ZXu_e1UftKKabUQMgxAal8HLOi5Tk8fIpPRW.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 524 => [ "family"=> "Lilita One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/lilitaone/v7/i7dPIFZ9Zz-WBtRtedDbUEZ2RFq7AwU.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 525 => [ "family"=> "Lily Script One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/lilyscriptone/v7/LhW9MV7ZMfIPdMxeBjBvFN8SXLS4gsSjQNsRMg.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 526 => [ "family"=> "Limelight", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/limelight/v10/XLYkIZL7aopJVbZJHDuYPeNGrnY2TA.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 527 => [ "family"=> "Linden Hill", "variants"=> [ 0=> "regular", 1=> "italic", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/lindenhill/v9/-F61fjxoKSg9Yc3hZgO8ygFI7CwC009k.ttf", "italic"=> "http://fonts.gstatic.com/s/lindenhill/v9/-F63fjxoKSg9Yc3hZgO8yjFK5igg1l9kn-s.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 528 => [ "family"=> "Literata", "variants"=> [ 0=> "regular", 1=> "500", 2=> "600", 3=> "700", 4=> "italic", 5=> "500italic", 6=> "600italic", 7=> "700italic", ], "subsets"=> [ 0=> "cyrillic", 1=> "greek", 2=> "greek-ext", 3=> "latin", 4=> "latin-ext", 5=> "vietnamese", ], "version"=> "v15", "lastModified"=> "2020-04-21", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/literata/v15/or38Q6P12-iJxAIgLa78DkTtAoDhk0oVpaLVa5RXzC1KOw.ttf", "500"=> "http://fonts.gstatic.com/s/literata/v15/or38Q6P12-iJxAIgLa78DkTtAoDhk0oVl6LVa5RXzC1KOw.ttf", "600"=> "http://fonts.gstatic.com/s/literata/v15/or38Q6P12-iJxAIgLa78DkTtAoDhk0oVe6XVa5RXzC1KOw.ttf", "700"=> "http://fonts.gstatic.com/s/literata/v15/or38Q6P12-iJxAIgLa78DkTtAoDhk0oVQqXVa5RXzC1KOw.ttf", "italic"=> "http://fonts.gstatic.com/s/literata/v15/or3yQ6P12-iJxAIgLYT1PLs1a-t7PU0AbeE9KJ5T7ihaO_CS.ttf", "500italic"=> "http://fonts.gstatic.com/s/literata/v15/or3yQ6P12-iJxAIgLYT1PLs1a-t7PU0AbeEPKJ5T7ihaO_CS.ttf", "600italic"=> "http://fonts.gstatic.com/s/literata/v15/or3yQ6P12-iJxAIgLYT1PLs1a-t7PU0AbeHjL55T7ihaO_CS.ttf", "700italic"=> "http://fonts.gstatic.com/s/literata/v15/or3yQ6P12-iJxAIgLYT1PLs1a-t7PU0AbeHaL55T7ihaO_CS.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 529 => [ "family"=> "Liu Jian Mao Cao", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "chinese-simplified", 1=> "latin", ], "version"=> "v5", "lastModified"=> "2019-11-05", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/liujianmaocao/v5/845DNN84HJrccNonurqXILGpvCOoferVKGWsUo8.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 530 => [ "family"=> "Livvic", "variants"=> [ 0=> "100", 1=> "100italic", 2=> "200", 3=> "200italic", 4=> "300", 5=> "300italic", 6=> "regular", 7=> "italic", 8=> "500", 9=> "500italic", 10=> "600", 11=> "600italic", 12=> "700", 13=> "700italic", 14=> "900", 15=> "900italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v3", "lastModified"=> "2019-11-05", "files"=> [ "100"=> "http://fonts.gstatic.com/s/livvic/v3/rnCr-x1S2hzjrlffC-M-mHnOSOuk.ttf", "100italic"=> "http://fonts.gstatic.com/s/livvic/v3/rnCt-x1S2hzjrlfXbdtakn3sTfukQHs.ttf", "200"=> "http://fonts.gstatic.com/s/livvic/v3/rnCq-x1S2hzjrlffp8IeslfCQfK9WQ.ttf", "200italic"=> "http://fonts.gstatic.com/s/livvic/v3/rnCs-x1S2hzjrlfXbdv2s13GY_etWWIJ.ttf", "300"=> "http://fonts.gstatic.com/s/livvic/v3/rnCq-x1S2hzjrlffw8EeslfCQfK9WQ.ttf", "300italic"=> "http://fonts.gstatic.com/s/livvic/v3/rnCs-x1S2hzjrlfXbduSsF3GY_etWWIJ.ttf", "regular"=> "http://fonts.gstatic.com/s/livvic/v3/rnCp-x1S2hzjrlfnb-k6unzeSA.ttf", "italic"=> "http://fonts.gstatic.com/s/livvic/v3/rnCr-x1S2hzjrlfXbeM-mHnOSOuk.ttf", "500"=> "http://fonts.gstatic.com/s/livvic/v3/rnCq-x1S2hzjrlffm8AeslfCQfK9WQ.ttf", "500italic"=> "http://fonts.gstatic.com/s/livvic/v3/rnCs-x1S2hzjrlfXbdvKsV3GY_etWWIJ.ttf", "600"=> "http://fonts.gstatic.com/s/livvic/v3/rnCq-x1S2hzjrlfft8ceslfCQfK9WQ.ttf", "600italic"=> "http://fonts.gstatic.com/s/livvic/v3/rnCs-x1S2hzjrlfXbdvmtl3GY_etWWIJ.ttf", "700"=> "http://fonts.gstatic.com/s/livvic/v3/rnCq-x1S2hzjrlff08YeslfCQfK9WQ.ttf", "700italic"=> "http://fonts.gstatic.com/s/livvic/v3/rnCs-x1S2hzjrlfXbduCt13GY_etWWIJ.ttf", "900"=> "http://fonts.gstatic.com/s/livvic/v3/rnCq-x1S2hzjrlff68QeslfCQfK9WQ.ttf", "900italic"=> "http://fonts.gstatic.com/s/livvic/v3/rnCs-x1S2hzjrlfXbdu6tV3GY_etWWIJ.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 531 => [ "family"=> "Lobster", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "latin", 3=> "latin-ext", 4=> "vietnamese", ], "version"=> "v22", "lastModified"=> "2019-07-17", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/lobster/v22/neILzCirqoswsqX9_oWsMqEzSJQ.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 532 => [ "family"=> "Lobster Two", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "700", 3=> "700italic", ], "subsets"=> [ 0=> "latin", ], "version"=> "v12", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/lobstertwo/v12/BngMUXZGTXPUvIoyV6yN59fK7KSJ4ACD.ttf", "italic"=> "http://fonts.gstatic.com/s/lobstertwo/v12/BngOUXZGTXPUvIoyV6yN5-fI5qCr5RCDY_k.ttf", "700"=> "http://fonts.gstatic.com/s/lobstertwo/v12/BngRUXZGTXPUvIoyV6yN5-92w4CByxyKeuDp.ttf", "700italic"=> "http://fonts.gstatic.com/s/lobstertwo/v12/BngTUXZGTXPUvIoyV6yN5-fI3hyEwRiof_DpXMY.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 533 => [ "family"=> "Londrina Outline", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/londrinaoutline/v10/C8c44dM8vmb14dfsZxhetg3pDH-SfuoxrSKMDvI.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 534 => [ "family"=> "Londrina Shadow", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/londrinashadow/v9/oPWX_kB4kOQoWNJmjxLV5JuoCUlXRlaSxkrMCQ.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 535 => [ "family"=> "Londrina Sketch", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/londrinasketch/v8/c4m41npxGMTnomOHtRU68eIJn8qfWWn5Pos6CA.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 536 => [ "family"=> "Londrina Solid", "variants"=> [ 0=> "100", 1=> "300", 2=> "regular", 3=> "900", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "100"=> "http://fonts.gstatic.com/s/londrinasolid/v9/flUjRq6sw40kQEJxWNgkLuudGfs9KBYesZHhV64.ttf", "300"=> "http://fonts.gstatic.com/s/londrinasolid/v9/flUiRq6sw40kQEJxWNgkLuudGfv1CjY0n53oTrcL.ttf", "regular"=> "http://fonts.gstatic.com/s/londrinasolid/v9/flUhRq6sw40kQEJxWNgkLuudGcNZIhI8tIHh.ttf", "900"=> "http://fonts.gstatic.com/s/londrinasolid/v9/flUiRq6sw40kQEJxWNgkLuudGfvdDzY0n53oTrcL.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 537 => [ "family"=> "Long Cang", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "chinese-simplified", 1=> "latin", ], "version"=> "v5", "lastModified"=> "2019-11-05", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/longcang/v5/LYjAdGP8kkgoTec8zkRgrXArXN7HWQ.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 538 => [ "family"=> "Lora", "variants"=> [ 0=> "regular", 1=> "500", 2=> "600", 3=> "700", 4=> "italic", 5=> "500italic", 6=> "600italic", 7=> "700italic", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "latin", 3=> "latin-ext", 4=> "vietnamese", ], "version"=> "v15", "lastModified"=> "2020-03-20", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/lora/v15/0QI6MX1D_JOuGQbT0gvTJPa787weuyJGmKxemMeZ.ttf", "500"=> "http://fonts.gstatic.com/s/lora/v15/0QI6MX1D_JOuGQbT0gvTJPa787wsuyJGmKxemMeZ.ttf", "600"=> "http://fonts.gstatic.com/s/lora/v15/0QI6MX1D_JOuGQbT0gvTJPa787zAvCJGmKxemMeZ.ttf", "700"=> "http://fonts.gstatic.com/s/lora/v15/0QI6MX1D_JOuGQbT0gvTJPa787z5vCJGmKxemMeZ.ttf", "italic"=> "http://fonts.gstatic.com/s/lora/v15/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-MoFkqh8ndeZzZ0.ttf", "500italic"=> "http://fonts.gstatic.com/s/lora/v15/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-PgFkqh8ndeZzZ0.ttf", "600italic"=> "http://fonts.gstatic.com/s/lora/v15/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-BQCkqh8ndeZzZ0.ttf", "700italic"=> "http://fonts.gstatic.com/s/lora/v15/0QI8MX1D_JOuMw_hLdO6T2wV9KnW-C0Ckqh8ndeZzZ0.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 539 => [ "family"=> "Love Ya Like A Sister", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/loveyalikeasister/v10/R70EjzUBlOqPeouhFDfR80-0FhOqJubN-Be78nZcsGGycA.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 540 => [ "family"=> "Loved by the King", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/lovedbytheking/v9/Gw6gwdP76VDVJNXerebZxUMeRXUF2PiNlXFu2R64.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 541 => [ "family"=> "Lovers Quarrel", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/loversquarrel/v7/Yq6N-LSKXTL-5bCy8ksBzpQ_-zAsY7pO6siz.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 542 => [ "family"=> "Luckiest Guy", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/luckiestguy/v10/_gP_1RrxsjcxVyin9l9n_j2RStR3qDpraA.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 543 => [ "family"=> "Lusitana", "variants"=> [ 0=> "regular", 1=> "700", ], "subsets"=> [ 0=> "latin", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/lusitana/v7/CSR84z9ShvucWzsMKxhaRuMiSct_.ttf", "700"=> "http://fonts.gstatic.com/s/lusitana/v7/CSR74z9ShvucWzsMKyDmaccqYtd2vfwk.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 544 => [ "family"=> "Lustria", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/lustria/v7/9oRONYodvDEyjuhOrCg5MtPyAcg.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 545 => [ "family"=> "M PLUS 1p", "variants"=> [ 0=> "100", 1=> "300", 2=> "regular", 3=> "500", 4=> "700", 5=> "800", 6=> "900", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "greek", 3=> "greek-ext", 4=> "hebrew", 5=> "japanese", 6=> "latin", 7=> "latin-ext", 8=> "vietnamese", ], "version"=> "v19", "lastModified"=> "2020-03-03", "files"=> [ "100"=> "http://fonts.gstatic.com/s/mplus1p/v19/e3tleuShHdiFyPFzBRrQnDQAUW3aq-5N.ttf", "300"=> "http://fonts.gstatic.com/s/mplus1p/v19/e3tmeuShHdiFyPFzBRrQVBYge0PWovdU4w.ttf", "regular"=> "http://fonts.gstatic.com/s/mplus1p/v19/e3tjeuShHdiFyPFzBRro-D4Ec2jKqw.ttf", "500"=> "http://fonts.gstatic.com/s/mplus1p/v19/e3tmeuShHdiFyPFzBRrQDBcge0PWovdU4w.ttf", "700"=> "http://fonts.gstatic.com/s/mplus1p/v19/e3tmeuShHdiFyPFzBRrQRBEge0PWovdU4w.ttf", "800"=> "http://fonts.gstatic.com/s/mplus1p/v19/e3tmeuShHdiFyPFzBRrQWBIge0PWovdU4w.ttf", "900"=> "http://fonts.gstatic.com/s/mplus1p/v19/e3tmeuShHdiFyPFzBRrQfBMge0PWovdU4w.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 546 => [ "family"=> "M PLUS Rounded 1c", "variants"=> [ 0=> "100", 1=> "300", 2=> "regular", 3=> "500", 4=> "700", 5=> "800", 6=> "900", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "greek", 3=> "greek-ext", 4=> "hebrew", 5=> "japanese", 6=> "latin", 7=> "latin-ext", 8=> "vietnamese", ], "version"=> "v10", "lastModified"=> "2019-11-05", "files"=> [ "100"=> "http://fonts.gstatic.com/s/mplusrounded1c/v10/VdGCAYIAV6gnpUpoWwNkYvrugw9RuM3ixLsg6-av1x0.ttf", "300"=> "http://fonts.gstatic.com/s/mplusrounded1c/v10/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0q5psKxeqmzgRK.ttf", "regular"=> "http://fonts.gstatic.com/s/mplusrounded1c/v10/VdGEAYIAV6gnpUpoWwNkYvrugw9RuPWGzr8C7vav.ttf", "500"=> "http://fonts.gstatic.com/s/mplusrounded1c/v10/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM1y55sKxeqmzgRK.ttf", "700"=> "http://fonts.gstatic.com/s/mplusrounded1c/v10/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM064ZsKxeqmzgRK.ttf", "800"=> "http://fonts.gstatic.com/s/mplusrounded1c/v10/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0m4psKxeqmzgRK.ttf", "900"=> "http://fonts.gstatic.com/s/mplusrounded1c/v10/VdGBAYIAV6gnpUpoWwNkYvrugw9RuM0C45sKxeqmzgRK.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 547 => [ "family"=> "Ma Shan Zheng", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "chinese-simplified", 1=> "latin", ], "version"=> "v5", "lastModified"=> "2019-11-05", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/mashanzheng/v5/NaPecZTRCLxvwo41b4gvzkXaRMTsDIRSfr0.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 548 => [ "family"=> "Macondo", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/macondo/v8/RrQQboN9-iB1IXmOS2XO0LBBd4Y.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 549 => [ "family"=> "Macondo Swash Caps", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/macondoswashcaps/v7/6NUL8EaAJgGKZA7lpt941Z9s6ZYgDq6Oekoa_mm5bA.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 550 => [ "family"=> "Mada", "variants"=> [ 0=> "200", 1=> "300", 2=> "regular", 3=> "500", 4=> "600", 5=> "700", 6=> "900", ], "subsets"=> [ 0=> "arabic", 1=> "latin", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "200"=> "http://fonts.gstatic.com/s/mada/v8/7Au_p_0qnzeSdf3nCCL8zkwMIFg.ttf", "300"=> "http://fonts.gstatic.com/s/mada/v8/7Au_p_0qnzeSdZnkCCL8zkwMIFg.ttf", "regular"=> "http://fonts.gstatic.com/s/mada/v8/7Auwp_0qnzeSTTXMLCrX0kU.ttf", "500"=> "http://fonts.gstatic.com/s/mada/v8/7Au_p_0qnzeSdcHlCCL8zkwMIFg.ttf", "600"=> "http://fonts.gstatic.com/s/mada/v8/7Au_p_0qnzeSde3iCCL8zkwMIFg.ttf", "700"=> "http://fonts.gstatic.com/s/mada/v8/7Au_p_0qnzeSdYnjCCL8zkwMIFg.ttf", "900"=> "http://fonts.gstatic.com/s/mada/v8/7Au_p_0qnzeSdbHhCCL8zkwMIFg.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 551 => [ "family"=> "Magra", "variants"=> [ 0=> "regular", 1=> "700", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/magra/v8/uK_94ruaZus72k5xIDMfO-ed.ttf", "700"=> "http://fonts.gstatic.com/s/magra/v8/uK_w4ruaZus72nbNDxcXEPuUX1ow.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 552 => [ "family"=> "Maiden Orange", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/maidenorange/v10/kJE1BuIX7AUmhi2V4m08kb1XjOZdCZS8FY8.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 553 => [ "family"=> "Maitree", "variants"=> [ 0=> "200", 1=> "300", 2=> "regular", 3=> "500", 4=> "600", 5=> "700", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "thai", 3=> "vietnamese", ], "version"=> "v4", "lastModified"=> "2019-07-16", "files"=> [ "200"=> "http://fonts.gstatic.com/s/maitree/v4/MjQDmil5tffhpBrklhGNWJGovLdh6OE.ttf", "300"=> "http://fonts.gstatic.com/s/maitree/v4/MjQDmil5tffhpBrklnWOWJGovLdh6OE.ttf", "regular"=> "http://fonts.gstatic.com/s/maitree/v4/MjQGmil5tffhpBrkrtmmfJmDoL4.ttf", "500"=> "http://fonts.gstatic.com/s/maitree/v4/MjQDmil5tffhpBrkli2PWJGovLdh6OE.ttf", "600"=> "http://fonts.gstatic.com/s/maitree/v4/MjQDmil5tffhpBrklgGIWJGovLdh6OE.ttf", "700"=> "http://fonts.gstatic.com/s/maitree/v4/MjQDmil5tffhpBrklmWJWJGovLdh6OE.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 554 => [ "family"=> "Major Mono Display", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v4", "lastModified"=> "2019-11-22", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/majormonodisplay/v4/RWmVoLyb5fEqtsfBX9PDZIGr2tFubRhLCn2QIndPww.ttf", ], "category"=> "monospace", "kind"=> "webfonts#webfont" ], 555 => [ "family"=> "Mako", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/mako/v11/H4coBX6Mmc_Z0ST09g478Lo.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 556 => [ "family"=> "Mali", "variants"=> [ 0=> "200", 1=> "200italic", 2=> "300", 3=> "300italic", 4=> "regular", 5=> "italic", 6=> "500", 7=> "500italic", 8=> "600", 9=> "600italic", 10=> "700", 11=> "700italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "thai", 3=> "vietnamese", ], "version"=> "v3", "lastModified"=> "2019-11-05", "files"=> [ "200"=> "http://fonts.gstatic.com/s/mali/v3/N0bV2SRONuN4QOLlKlRaJdbWgdY.ttf", "200italic"=> "http://fonts.gstatic.com/s/mali/v3/N0bX2SRONuN4SCj8wlVQIfTTkdbJYA.ttf", "300"=> "http://fonts.gstatic.com/s/mali/v3/N0bV2SRONuN4QIbmKlRaJdbWgdY.ttf", "300italic"=> "http://fonts.gstatic.com/s/mali/v3/N0bX2SRONuN4SCj8plZQIfTTkdbJYA.ttf", "regular"=> "http://fonts.gstatic.com/s/mali/v3/N0ba2SRONuN4eCrODlxxOd8.ttf", "italic"=> "http://fonts.gstatic.com/s/mali/v3/N0bU2SRONuN4SCjECn50Kd_PmA.ttf", "500"=> "http://fonts.gstatic.com/s/mali/v3/N0bV2SRONuN4QN7nKlRaJdbWgdY.ttf", "500italic"=> "http://fonts.gstatic.com/s/mali/v3/N0bX2SRONuN4SCj8_ldQIfTTkdbJYA.ttf", "600"=> "http://fonts.gstatic.com/s/mali/v3/N0bV2SRONuN4QPLgKlRaJdbWgdY.ttf", "600italic"=> "http://fonts.gstatic.com/s/mali/v3/N0bX2SRONuN4SCj80lBQIfTTkdbJYA.ttf", "700"=> "http://fonts.gstatic.com/s/mali/v3/N0bV2SRONuN4QJbhKlRaJdbWgdY.ttf", "700italic"=> "http://fonts.gstatic.com/s/mali/v3/N0bX2SRONuN4SCj8tlFQIfTTkdbJYA.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 557 => [ "family"=> "Mallanna", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "telugu", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/mallanna/v7/hv-Vlzx-KEQb84YaDGwzEzRwVvJ-.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 558 => [ "family"=> "Mandali", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "telugu", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/mandali/v8/LhWlMVbYOfASNfNUVFk1ZPdcKtA.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 559 => [ "family"=> "Manjari", "variants"=> [ 0=> "100", 1=> "regular", 2=> "700", ], "subsets"=> [ 0=> "latin", 1=> "malayalam", ], "version"=> "v2", "lastModified"=> "2019-11-05", "files"=> [ "100"=> "http://fonts.gstatic.com/s/manjari/v2/k3kSo8UPMOBO2w1UdbroK2vFIaOV8A.ttf", "regular"=> "http://fonts.gstatic.com/s/manjari/v2/k3kQo8UPMOBO2w1UTd7iL0nAMaM.ttf", "700"=> "http://fonts.gstatic.com/s/manjari/v2/k3kVo8UPMOBO2w1UdWLNC0HrLaqM6Q4.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 560 => [ "family"=> "Manrope", "variants"=> [ 0=> "200", 1=> "300", 2=> "regular", 3=> "500", 4=> "600", 5=> "700", 6=> "800", ], "subsets"=> [ 0=> "cyrillic", 1=> "greek", 2=> "latin", 3=> "latin-ext", ], "version"=> "v1", "lastModified"=> "2020-04-21", "files"=> [ "200"=> "http://fonts.gstatic.com/s/manrope/v1/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk59FO_F87jxeN7B.ttf", "300"=> "http://fonts.gstatic.com/s/manrope/v1/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk6jFO_F87jxeN7B.ttf", "regular"=> "http://fonts.gstatic.com/s/manrope/v1/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk79FO_F87jxeN7B.ttf", "500"=> "http://fonts.gstatic.com/s/manrope/v1/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk7PFO_F87jxeN7B.ttf", "600"=> "http://fonts.gstatic.com/s/manrope/v1/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4jE-_F87jxeN7B.ttf", "700"=> "http://fonts.gstatic.com/s/manrope/v1/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk4aE-_F87jxeN7B.ttf", "800"=> "http://fonts.gstatic.com/s/manrope/v1/xn7_YHE41ni1AdIRqAuZuw1Bx9mbZk59E-_F87jxeN7B.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 561 => [ "family"=> "Mansalva", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v1", "lastModified"=> "2020-03-03", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/mansalva/v1/aWB4m0aacbtDfvq5NJllI47vdyBg.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 562 => [ "family"=> "Manuale", "variants"=> [ 0=> "regular", 1=> "500", 2=> "600", 3=> "700", 4=> "italic", 5=> "500italic", 6=> "600italic", 7=> "700italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v6", "lastModified"=> "2020-02-05", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/manuale/v6/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeHke7wD1TB_JHHY.ttf", "500"=> "http://fonts.gstatic.com/s/manuale/v6/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeHWe7wD1TB_JHHY.ttf", "600"=> "http://fonts.gstatic.com/s/manuale/v6/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeE6fLwD1TB_JHHY.ttf", "700"=> "http://fonts.gstatic.com/s/manuale/v6/f0Xp0eas_8Z-TFZdHv3mMxFaSqASeeEDfLwD1TB_JHHY.ttf", "italic"=> "http://fonts.gstatic.com/s/manuale/v6/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOFRA3zRdIWHYr8M.ttf", "500italic"=> "http://fonts.gstatic.com/s/manuale/v6/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOGZA3zRdIWHYr8M.ttf", "600italic"=> "http://fonts.gstatic.com/s/manuale/v6/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOIpH3zRdIWHYr8M.ttf", "700italic"=> "http://fonts.gstatic.com/s/manuale/v6/f0Xn0eas_8Z-TFZdNPTUzMkzITq8fvQsOLNH3zRdIWHYr8M.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 563 => [ "family"=> "Marcellus", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/marcellus/v7/wEO_EBrOk8hQLDvIAF8FUfAL3EsHiA.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 564 => [ "family"=> "Marcellus SC", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/marcellussc/v7/ke8iOgUHP1dg-Rmi6RWjbLEPgdydGKikhA.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 565 => [ "family"=> "Marck Script", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "cyrillic", 1=> "latin", 2=> "latin-ext", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/marckscript/v10/nwpTtK2oNgBA3Or78gapdwuCzyI-aMPF7Q.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 566 => [ "family"=> "Margarine", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/margarine/v8/qkBXXvoE6trLT9Y7YLye5JRLkAXbMQ.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 567 => [ "family"=> "Markazi Text", "variants"=> [ 0=> "regular", 1=> "500", 2=> "600", 3=> "700", ], "subsets"=> [ 0=> "arabic", 1=> "latin", 2=> "latin-ext", 3=> "vietnamese", ], "version"=> "v11", "lastModified"=> "2020-04-21", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/markazitext/v11/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtfSQT4MlBekmJLo.ttf", "500"=> "http://fonts.gstatic.com/s/markazitext/v11/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtcaQT4MlBekmJLo.ttf", "600"=> "http://fonts.gstatic.com/s/markazitext/v11/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtSqXT4MlBekmJLo.ttf", "700"=> "http://fonts.gstatic.com/s/markazitext/v11/sykh-ydym6AtQaiEtX7yhqb_rV1k_81ZVYYZtROXT4MlBekmJLo.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 568 => [ "family"=> "Marko One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/markoone/v9/9Btq3DFG0cnVM5lw1haaKpUfrHPzUw.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 569 => [ "family"=> "Marmelad", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "cyrillic", 1=> "latin", 2=> "latin-ext", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/marmelad/v9/Qw3eZQdSHj_jK2e-8tFLG-YMC0R8.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 570 => [ "family"=> "Martel", "variants"=> [ 0=> "200", 1=> "300", 2=> "regular", 3=> "600", 4=> "700", 5=> "800", 6=> "900", ], "subsets"=> [ 0=> "devanagari", 1=> "latin", 2=> "latin-ext", ], "version"=> "v4", "lastModified"=> "2019-07-17", "files"=> [ "200"=> "http://fonts.gstatic.com/s/martel/v4/PN_yRfK9oXHga0XVqekahRbX9vnDzw.ttf", "300"=> "http://fonts.gstatic.com/s/martel/v4/PN_yRfK9oXHga0XVzeoahRbX9vnDzw.ttf", "regular"=> "http://fonts.gstatic.com/s/martel/v4/PN_xRfK9oXHga0XtYcI-jT3L_w.ttf", "600"=> "http://fonts.gstatic.com/s/martel/v4/PN_yRfK9oXHga0XVuewahRbX9vnDzw.ttf", "700"=> "http://fonts.gstatic.com/s/martel/v4/PN_yRfK9oXHga0XV3e0ahRbX9vnDzw.ttf", "800"=> "http://fonts.gstatic.com/s/martel/v4/PN_yRfK9oXHga0XVwe4ahRbX9vnDzw.ttf", "900"=> "http://fonts.gstatic.com/s/martel/v4/PN_yRfK9oXHga0XV5e8ahRbX9vnDzw.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 571 => [ "family"=> "Martel Sans", "variants"=> [ 0=> "200", 1=> "300", 2=> "regular", 3=> "600", 4=> "700", 5=> "800", 6=> "900", ], "subsets"=> [ 0=> "devanagari", 1=> "latin", 2=> "latin-ext", ], "version"=> "v6", "lastModified"=> "2019-07-16", "files"=> [ "200"=> "http://fonts.gstatic.com/s/martelsans/v6/h0GxssGi7VdzDgKjM-4d8hAX5suHFUknqMxQ.ttf", "300"=> "http://fonts.gstatic.com/s/martelsans/v6/h0GxssGi7VdzDgKjM-4d8hBz5cuHFUknqMxQ.ttf", "regular"=> "http://fonts.gstatic.com/s/martelsans/v6/h0GsssGi7VdzDgKjM-4d8ijfze-PPlUu.ttf", "600"=> "http://fonts.gstatic.com/s/martelsans/v6/h0GxssGi7VdzDgKjM-4d8hAH48uHFUknqMxQ.ttf", "700"=> "http://fonts.gstatic.com/s/martelsans/v6/h0GxssGi7VdzDgKjM-4d8hBj4suHFUknqMxQ.ttf", "800"=> "http://fonts.gstatic.com/s/martelsans/v6/h0GxssGi7VdzDgKjM-4d8hB_4cuHFUknqMxQ.ttf", "900"=> "http://fonts.gstatic.com/s/martelsans/v6/h0GxssGi7VdzDgKjM-4d8hBb4MuHFUknqMxQ.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 572 => [ "family"=> "Marvel", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "700", 3=> "700italic", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/marvel/v9/nwpVtKeoNgBV0qaIkV7ED366zg.ttf", "italic"=> "http://fonts.gstatic.com/s/marvel/v9/nwpXtKeoNgBV0qa4k1TALXuqzhA7.ttf", "700"=> "http://fonts.gstatic.com/s/marvel/v9/nwpWtKeoNgBV0qawLXHgB1WmxwkiYQ.ttf", "700italic"=> "http://fonts.gstatic.com/s/marvel/v9/nwpQtKeoNgBV0qa4k2x8Al-i5QwyYdrc.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 573 => [ "family"=> "Mate", "variants"=> [ 0=> "regular", 1=> "italic", ], "subsets"=> [ 0=> "latin", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/mate/v8/m8JdjftRd7WZ2z28WoXSaLU.ttf", "italic"=> "http://fonts.gstatic.com/s/mate/v8/m8JTjftRd7WZ6z-2XqfXeLVdbw.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 574 => [ "family"=> "Mate SC", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/matesc/v8/-nF8OGQ1-uoVr2wKyiXZ95OkJwA.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 575 => [ "family"=> "Maven Pro", "variants"=> [ 0=> "regular", 1=> "500", 2=> "600", 3=> "700", 4=> "800", 5=> "900", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v20", "lastModified"=> "2020-02-05", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/mavenpro/v20/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8SX25nCpozp5GvU.ttf", "500"=> "http://fonts.gstatic.com/s/mavenpro/v20/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8Rf25nCpozp5GvU.ttf", "600"=> "http://fonts.gstatic.com/s/mavenpro/v20/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8fvx5nCpozp5GvU.ttf", "700"=> "http://fonts.gstatic.com/s/mavenpro/v20/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8cLx5nCpozp5GvU.ttf", "800"=> "http://fonts.gstatic.com/s/mavenpro/v20/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8aXx5nCpozp5GvU.ttf", "900"=> "http://fonts.gstatic.com/s/mavenpro/v20/7Auup_AqnyWWAxW2Wk3swUz56MS91Eww8Yzx5nCpozp5GvU.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 576 => [ "family"=> "McLaren", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/mclaren/v7/2EbnL-ZuAXFqZFXISYYf8z2Yt_c.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 577 => [ "family"=> "Meddon", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v12", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/meddon/v12/kmK8ZqA2EgDNeHTZhBdB3y_Aow.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 578 => [ "family"=> "MedievalSharp", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v12", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/medievalsharp/v12/EvOJzAlL3oU5AQl2mP5KdgptAq96MwvXLDk.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 579 => [ "family"=> "Medula One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/medulaone/v9/YA9Wr0qb5kjJM6l2V0yukiEqs7GtlvY.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 580 => [ "family"=> "Meera Inimai", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "tamil", ], "version"=> "v4", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/meerainimai/v4/845fNMM5EIqOW5MPuvO3ILep_2jDVevnLQ.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 581 => [ "family"=> "Megrim", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/megrim/v10/46kulbz5WjvLqJZlbWXgd0RY1g.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 582 => [ "family"=> "Meie Script", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/meiescript/v7/_LOImzDK7erRjhunIspaMjxn5IXg0WDz.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 583 => [ "family"=> "Merienda", "variants"=> [ 0=> "regular", 1=> "700", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-17", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/merienda/v8/gNMHW3x8Qoy5_mf8uVMCOou6_dvg.ttf", "700"=> "http://fonts.gstatic.com/s/merienda/v8/gNMAW3x8Qoy5_mf8uWu-Fa-y1sfpPES4.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 584 => [ "family"=> "Merienda One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/meriendaone/v10/H4cgBXaMndbflEq6kyZ1ht6YgoyyYzFzFw.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 585 => [ "family"=> "Merriweather", "variants"=> [ 0=> "300", 1=> "300italic", 2=> "regular", 3=> "italic", 4=> "700", 5=> "700italic", 6=> "900", 7=> "900italic", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "latin", 3=> "latin-ext", 4=> "vietnamese", ], "version"=> "v21", "lastModified"=> "2019-07-22", "files"=> [ "300"=> "http://fonts.gstatic.com/s/merriweather/v21/u-4n0qyriQwlOrhSvowK_l521wRpX837pvjxPA.ttf", "300italic"=> "http://fonts.gstatic.com/s/merriweather/v21/u-4l0qyriQwlOrhSvowK_l5-eR7lXcf_hP3hPGWH.ttf", "regular"=> "http://fonts.gstatic.com/s/merriweather/v21/u-440qyriQwlOrhSvowK_l5OeyxNV-bnrw.ttf", "italic"=> "http://fonts.gstatic.com/s/merriweather/v21/u-4m0qyriQwlOrhSvowK_l5-eSZJdeP3r-Ho.ttf", "700"=> "http://fonts.gstatic.com/s/merriweather/v21/u-4n0qyriQwlOrhSvowK_l52xwNpX837pvjxPA.ttf", "700italic"=> "http://fonts.gstatic.com/s/merriweather/v21/u-4l0qyriQwlOrhSvowK_l5-eR71Wsf_hP3hPGWH.ttf", "900"=> "http://fonts.gstatic.com/s/merriweather/v21/u-4n0qyriQwlOrhSvowK_l52_wFpX837pvjxPA.ttf", "900italic"=> "http://fonts.gstatic.com/s/merriweather/v21/u-4l0qyriQwlOrhSvowK_l5-eR7NWMf_hP3hPGWH.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 586 => [ "family"=> "Merriweather Sans", "variants"=> [ 0=> "300", 1=> "300italic", 2=> "regular", 3=> "italic", 4=> "700", 5=> "700italic", 6=> "800", 7=> "800italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v11", "lastModified"=> "2019-07-17", "files"=> [ "300"=> "http://fonts.gstatic.com/s/merriweathersans/v11/2-c49IRs1JiJN1FRAMjTN5zd9vgsFH1eYBDD2BdWzIqY.ttf", "300italic"=> "http://fonts.gstatic.com/s/merriweathersans/v11/2-c29IRs1JiJN1FRAMjTN5zd9vgsFHXwepzB0hN0yZqYcqw.ttf", "regular"=> "http://fonts.gstatic.com/s/merriweathersans/v11/2-c99IRs1JiJN1FRAMjTN5zd9vgsFEXySDTL8wtf.ttf", "italic"=> "http://fonts.gstatic.com/s/merriweathersans/v11/2-c79IRs1JiJN1FRAMjTN5zd9vgsFHXwQjDp9htf1ZM.ttf", "700"=> "http://fonts.gstatic.com/s/merriweathersans/v11/2-c49IRs1JiJN1FRAMjTN5zd9vgsFH1OZxDD2BdWzIqY.ttf", "700italic"=> "http://fonts.gstatic.com/s/merriweathersans/v11/2-c29IRs1JiJN1FRAMjTN5zd9vgsFHXweozG0hN0yZqYcqw.ttf", "800"=> "http://fonts.gstatic.com/s/merriweathersans/v11/2-c49IRs1JiJN1FRAMjTN5zd9vgsFH1SZBDD2BdWzIqY.ttf", "800italic"=> "http://fonts.gstatic.com/s/merriweathersans/v11/2-c29IRs1JiJN1FRAMjTN5zd9vgsFHXwepDF0hN0yZqYcqw.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 587 => [ "family"=> "Metal", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "khmer", ], "version"=> "v12", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/metal/v12/lW-wwjUJIXTo7i3nnoQAUdN2.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 588 => [ "family"=> "Metal Mania", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/metalmania/v9/RWmMoKWb4e8kqMfBUdPFJeXCg6UKDXlq.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 589 => [ "family"=> "Metamorphous", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/metamorphous/v10/Wnz8HA03aAXcC39ZEX5y1330PCCthTsmaQ.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 590 => [ "family"=> "Metrophobic", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v13", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/metrophobic/v13/sJoA3LZUhMSAPV_u0qwiAT-J737FPEEL.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 591 => [ "family"=> "Michroma", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/michroma/v10/PN_zRfy9qWD8fEagAMg6rzjb_-Da.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 592 => [ "family"=> "Milonga", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/milonga/v7/SZc53FHnIaK9W5kffz3GkUrS8DI.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 593 => [ "family"=> "Miltonian", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v13", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/miltonian/v13/zOL-4pbPn6Ne9JqTg9mr6e5As-FeiQ.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 594 => [ "family"=> "Miltonian Tattoo", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v15", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/miltoniantattoo/v15/EvOUzBRL0o0kCxF-lcMCQxlpVsA_FwP8MDBku-s.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 595 => [ "family"=> "Mina", "variants"=> [ 0=> "regular", 1=> "700", ], "subsets"=> [ 0=> "bengali", 1=> "latin", 2=> "latin-ext", ], "version"=> "v3", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/mina/v3/-nFzOGc18vARrz9j7i3y65o.ttf", "700"=> "http://fonts.gstatic.com/s/mina/v3/-nF8OGc18vARl4NMyiXZ95OkJwA.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 596 => [ "family"=> "Miniver", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/miniver/v8/eLGcP-PxIg-5H0vC770Cy8r8fWA.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 597 => [ "family"=> "Miriam Libre", "variants"=> [ 0=> "regular", 1=> "700", ], "subsets"=> [ 0=> "hebrew", 1=> "latin", 2=> "latin-ext", ], "version"=> "v6", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/miriamlibre/v6/DdTh798HsHwubBAqfkcBTL_vYJn_Teun9g.ttf", "700"=> "http://fonts.gstatic.com/s/miriamlibre/v6/DdT-798HsHwubBAqfkcBTL_X3LbbRcC7_-Z7Hg.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 598 => [ "family"=> "Mirza", "variants"=> [ 0=> "regular", 1=> "500", 2=> "600", 3=> "700", ], "subsets"=> [ 0=> "arabic", 1=> "latin", 2=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/mirza/v7/co3ImWlikiN5EurdKMewsrvI.ttf", "500"=> "http://fonts.gstatic.com/s/mirza/v7/co3FmWlikiN5EtIpAeO4mafBomDi.ttf", "600"=> "http://fonts.gstatic.com/s/mirza/v7/co3FmWlikiN5EtIFBuO4mafBomDi.ttf", "700"=> "http://fonts.gstatic.com/s/mirza/v7/co3FmWlikiN5EtJhB-O4mafBomDi.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 599 => [ "family"=> "Miss Fajardose", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/missfajardose/v9/E21-_dn5gvrawDdPFVl-N0Ajb8qvWPaJq4no.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 600 => [ "family"=> "Mitr", "variants"=> [ 0=> "200", 1=> "300", 2=> "regular", 3=> "500", 4=> "600", 5=> "700", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "thai", 3=> "vietnamese", ], "version"=> "v5", "lastModified"=> "2019-07-16", "files"=> [ "200"=> "http://fonts.gstatic.com/s/mitr/v5/pxiEypw5ucZF8fMZFJDUc1NECPY.ttf", "300"=> "http://fonts.gstatic.com/s/mitr/v5/pxiEypw5ucZF8ZcaFJDUc1NECPY.ttf", "regular"=> "http://fonts.gstatic.com/s/mitr/v5/pxiLypw5ucZFyTsyMJj_b1o.ttf", "500"=> "http://fonts.gstatic.com/s/mitr/v5/pxiEypw5ucZF8c8bFJDUc1NECPY.ttf", "600"=> "http://fonts.gstatic.com/s/mitr/v5/pxiEypw5ucZF8eMcFJDUc1NECPY.ttf", "700"=> "http://fonts.gstatic.com/s/mitr/v5/pxiEypw5ucZF8YcdFJDUc1NECPY.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 601 => [ "family"=> "Modak", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "devanagari", 1=> "latin", 2=> "latin-ext", ], "version"=> "v5", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/modak/v5/EJRYQgs1XtIEsnMH8BVZ76KU.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 602 => [ "family"=> "Modern Antiqua", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/modernantiqua/v9/NGStv5TIAUg6Iq_RLNo_2dp1sI1Ea2u0c3Gi.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 603 => [ "family"=> "Mogra", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "gujarati", 1=> "latin", 2=> "latin-ext", ], "version"=> "v6", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/mogra/v6/f0X40eSs8c95TBo4DvLmxtnG.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 604 => [ "family"=> "Molengo", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/molengo/v10/I_uuMpWeuBzZNBtQbbRQkiCvs5Y.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 605 => [ "family"=> "Molle", "variants"=> [ 0=> "italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "italic"=> "http://fonts.gstatic.com/s/molle/v8/E21n_dL5hOXFhWEsXzgmVydREus.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 606 => [ "family"=> "Monda", "variants"=> [ 0=> "regular", 1=> "700", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v9", "lastModified"=> "2019-07-17", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/monda/v9/TK3tWkYFABsmjvpmNBsLvPdG.ttf", "700"=> "http://fonts.gstatic.com/s/monda/v9/TK3gWkYFABsmjsLaGz8Dl-tPKo2t.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 607 => [ "family"=> "Monofett", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/monofett/v9/mFTyWbofw6zc9NtnW43SuRwr0VJ7.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 608 => [ "family"=> "Monoton", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/monoton/v9/5h1aiZUrOngCibe4fkbBQ2S7FU8.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 609 => [ "family"=> "Monsieur La Doulaise", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/monsieurladoulaise/v8/_Xmz-GY4rjmCbQfc-aPRaa4pqV340p7EZl5ewkEU4HTy.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 610 => [ "family"=> "Montaga", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/montaga/v7/H4cnBX2Ml8rCkEO_0gYQ7LO5mqc.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 611 => [ "family"=> "Montez", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/montez/v10/845ZNMk5GoGIX8lm1LDeSd-R_g.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 612 => [ "family"=> "Montserrat", "variants"=> [ 0=> "100", 1=> "100italic", 2=> "200", 3=> "200italic", 4=> "300", 5=> "300italic", 6=> "regular", 7=> "italic", 8=> "500", 9=> "500italic", 10=> "600", 11=> "600italic", 12=> "700", 13=> "700italic", 14=> "800", 15=> "800italic", 16=> "900", 17=> "900italic", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "latin", 3=> "latin-ext", 4=> "vietnamese", ], "version"=> "v14", "lastModified"=> "2019-07-23", "files"=> [ "100"=> "http://fonts.gstatic.com/s/montserrat/v14/JTUQjIg1_i6t8kCHKm45_QphziTn89dtpQ.ttf", "100italic"=> "http://fonts.gstatic.com/s/montserrat/v14/JTUOjIg1_i6t8kCHKm459WxZqi7j0dJ9pTOi.ttf", "200"=> "http://fonts.gstatic.com/s/montserrat/v14/JTURjIg1_i6t8kCHKm45_aZA7g7J_950vCo.ttf", "200italic"=> "http://fonts.gstatic.com/s/montserrat/v14/JTUPjIg1_i6t8kCHKm459WxZBg_D-_xxrCq7qg.ttf", "300"=> "http://fonts.gstatic.com/s/montserrat/v14/JTURjIg1_i6t8kCHKm45_cJD7g7J_950vCo.ttf", "300italic"=> "http://fonts.gstatic.com/s/montserrat/v14/JTUPjIg1_i6t8kCHKm459WxZYgzD-_xxrCq7qg.ttf", "regular"=> "http://fonts.gstatic.com/s/montserrat/v14/JTUSjIg1_i6t8kCHKm45xW5rygbi49c.ttf", "italic"=> "http://fonts.gstatic.com/s/montserrat/v14/JTUQjIg1_i6t8kCHKm459WxhziTn89dtpQ.ttf", "500"=> "http://fonts.gstatic.com/s/montserrat/v14/JTURjIg1_i6t8kCHKm45_ZpC7g7J_950vCo.ttf", "500italic"=> "http://fonts.gstatic.com/s/montserrat/v14/JTUPjIg1_i6t8kCHKm459WxZOg3D-_xxrCq7qg.ttf", "600"=> "http://fonts.gstatic.com/s/montserrat/v14/JTURjIg1_i6t8kCHKm45_bZF7g7J_950vCo.ttf", "600italic"=> "http://fonts.gstatic.com/s/montserrat/v14/JTUPjIg1_i6t8kCHKm459WxZFgrD-_xxrCq7qg.ttf", "700"=> "http://fonts.gstatic.com/s/montserrat/v14/JTURjIg1_i6t8kCHKm45_dJE7g7J_950vCo.ttf", "700italic"=> "http://fonts.gstatic.com/s/montserrat/v14/JTUPjIg1_i6t8kCHKm459WxZcgvD-_xxrCq7qg.ttf", "800"=> "http://fonts.gstatic.com/s/montserrat/v14/JTURjIg1_i6t8kCHKm45_c5H7g7J_950vCo.ttf", "800italic"=> "http://fonts.gstatic.com/s/montserrat/v14/JTUPjIg1_i6t8kCHKm459WxZbgjD-_xxrCq7qg.ttf", "900"=> "http://fonts.gstatic.com/s/montserrat/v14/JTURjIg1_i6t8kCHKm45_epG7g7J_950vCo.ttf", "900italic"=> "http://fonts.gstatic.com/s/montserrat/v14/JTUPjIg1_i6t8kCHKm459WxZSgnD-_xxrCq7qg.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 613 => [ "family"=> "Montserrat Alternates", "variants"=> [ 0=> "100", 1=> "100italic", 2=> "200", 3=> "200italic", 4=> "300", 5=> "300italic", 6=> "regular", 7=> "italic", 8=> "500", 9=> "500italic", 10=> "600", 11=> "600italic", 12=> "700", 13=> "700italic", 14=> "800", 15=> "800italic", 16=> "900", 17=> "900italic", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "latin", 3=> "latin-ext", 4=> "vietnamese", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "100"=> "http://fonts.gstatic.com/s/montserratalternates/v11/mFThWacfw6zH4dthXcyms1lPpC8I_b0juU0xiKfVKphL03l4.ttf", "100italic"=> "http://fonts.gstatic.com/s/montserratalternates/v11/mFTjWacfw6zH4dthXcyms1lPpC8I_b0juU057p-xIJxp1ml4imo.ttf", "200"=> "http://fonts.gstatic.com/s/montserratalternates/v11/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xJIb1ALZH2mBhkw.ttf", "200italic"=> "http://fonts.gstatic.com/s/montserratalternates/v11/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p8dAbxD-GVxk3Nd.ttf", "300"=> "http://fonts.gstatic.com/s/montserratalternates/v11/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xQIX1ALZH2mBhkw.ttf", "300italic"=> "http://fonts.gstatic.com/s/montserratalternates/v11/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p95ArxD-GVxk3Nd.ttf", "regular"=> "http://fonts.gstatic.com/s/montserratalternates/v11/mFTvWacfw6zH4dthXcyms1lPpC8I_b0juU0J7K3RCJ1b0w.ttf", "italic"=> "http://fonts.gstatic.com/s/montserratalternates/v11/mFThWacfw6zH4dthXcyms1lPpC8I_b0juU057qfVKphL03l4.ttf", "500"=> "http://fonts.gstatic.com/s/montserratalternates/v11/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xGIT1ALZH2mBhkw.ttf", "500italic"=> "http://fonts.gstatic.com/s/montserratalternates/v11/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p8hA7xD-GVxk3Nd.ttf", "600"=> "http://fonts.gstatic.com/s/montserratalternates/v11/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xNIP1ALZH2mBhkw.ttf", "600italic"=> "http://fonts.gstatic.com/s/montserratalternates/v11/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p8NBLxD-GVxk3Nd.ttf", "700"=> "http://fonts.gstatic.com/s/montserratalternates/v11/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xUIL1ALZH2mBhkw.ttf", "700italic"=> "http://fonts.gstatic.com/s/montserratalternates/v11/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p9pBbxD-GVxk3Nd.ttf", "800"=> "http://fonts.gstatic.com/s/montserratalternates/v11/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xTIH1ALZH2mBhkw.ttf", "800italic"=> "http://fonts.gstatic.com/s/montserratalternates/v11/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p91BrxD-GVxk3Nd.ttf", "900"=> "http://fonts.gstatic.com/s/montserratalternates/v11/mFTiWacfw6zH4dthXcyms1lPpC8I_b0juU0xaID1ALZH2mBhkw.ttf", "900italic"=> "http://fonts.gstatic.com/s/montserratalternates/v11/mFTkWacfw6zH4dthXcyms1lPpC8I_b0juU057p9RB7xD-GVxk3Nd.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 614 => [ "family"=> "Montserrat Subrayada", "variants"=> [ 0=> "regular", 1=> "700", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/montserratsubrayada/v9/U9MD6c-o9H7PgjlTHThBnNHGVUORwteQQE8LYuceqGT-.ttf", "700"=> "http://fonts.gstatic.com/s/montserratsubrayada/v9/U9MM6c-o9H7PgjlTHThBnNHGVUORwteQQHe3TcMWg3j36Ebz.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 615 => [ "family"=> "Moul", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "khmer", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/moul/v11/nuF2D__FSo_3E-RYiJCy-00.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 616 => [ "family"=> "Moulpali", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "khmer", ], "version"=> "v12", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/moulpali/v12/H4ckBXKMl9HagUWymyY6wr-wg763.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 617 => [ "family"=> "Mountains of Christmas", "variants"=> [ 0=> "regular", 1=> "700", ], "subsets"=> [ 0=> "latin", ], "version"=> "v12", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/mountainsofchristmas/v12/3y9w6a4zcCnn5X0FDyrKi2ZRUBIy8uxoUo7ePNamMPNpJpc.ttf", "700"=> "http://fonts.gstatic.com/s/mountainsofchristmas/v12/3y9z6a4zcCnn5X0FDyrKi2ZRUBIy8uxoUo7eBGqJFPtCOp6IaEA.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 618 => [ "family"=> "Mouse Memoirs", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/mousememoirs/v7/t5tmIRoSNJ-PH0WNNgDYxdSb7TnFrpOHYh4.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 619 => [ "family"=> "Mr Bedfort", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/mrbedfort/v8/MQpR-WCtNZSWAdTMwBicliq0XZe_Iy8.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 620 => [ "family"=> "Mr Dafoe", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/mrdafoe/v8/lJwE-pIzkS5NXuMMrGiqg7MCxz_C.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 621 => [ "family"=> "Mr De Haviland", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/mrdehaviland/v8/OpNVnooIhJj96FdB73296ksbOj3C4ULVNTlB.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 622 => [ "family"=> "Mrs Saint Delafield", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/mrssaintdelafield/v7/v6-IGZDIOVXH9xtmTZfRagunqBw5WC62cK4tLsubB2w.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 623 => [ "family"=> "Mrs Sheppards", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/mrssheppards/v8/PN_2Rfm9snC0XUGoEZhb91ig3vjxynMix4Y.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 624 => [ "family"=> "Mukta", "variants"=> [ 0=> "200", 1=> "300", 2=> "regular", 3=> "500", 4=> "600", 5=> "700", 6=> "800", ], "subsets"=> [ 0=> "devanagari", 1=> "latin", 2=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-17", "files"=> [ "200"=> "http://fonts.gstatic.com/s/mukta/v7/iJWHBXyXfDDVXbEOjFma-2HW7ZB_.ttf", "300"=> "http://fonts.gstatic.com/s/mukta/v7/iJWHBXyXfDDVXbFqj1ma-2HW7ZB_.ttf", "regular"=> "http://fonts.gstatic.com/s/mukta/v7/iJWKBXyXfDDVXYnGp32S0H3f.ttf", "500"=> "http://fonts.gstatic.com/s/mukta/v7/iJWHBXyXfDDVXbEyjlma-2HW7ZB_.ttf", "600"=> "http://fonts.gstatic.com/s/mukta/v7/iJWHBXyXfDDVXbEeiVma-2HW7ZB_.ttf", "700"=> "http://fonts.gstatic.com/s/mukta/v7/iJWHBXyXfDDVXbF6iFma-2HW7ZB_.ttf", "800"=> "http://fonts.gstatic.com/s/mukta/v7/iJWHBXyXfDDVXbFmi1ma-2HW7ZB_.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 625 => [ "family"=> "Mukta Mahee", "variants"=> [ 0=> "200", 1=> "300", 2=> "regular", 3=> "500", 4=> "600", 5=> "700", 6=> "800", ], "subsets"=> [ 0=> "gurmukhi", 1=> "latin", 2=> "latin-ext", ], "version"=> "v5", "lastModified"=> "2019-07-16", "files"=> [ "200"=> "http://fonts.gstatic.com/s/muktamahee/v5/XRXN3IOIi0hcP8iVU67hA9MFcBoHJndqZCsW.ttf", "300"=> "http://fonts.gstatic.com/s/muktamahee/v5/XRXN3IOIi0hcP8iVU67hA9NhcxoHJndqZCsW.ttf", "regular"=> "http://fonts.gstatic.com/s/muktamahee/v5/XRXQ3IOIi0hcP8iVU67hA-vNWz4PDWtj.ttf", "500"=> "http://fonts.gstatic.com/s/muktamahee/v5/XRXN3IOIi0hcP8iVU67hA9M5choHJndqZCsW.ttf", "600"=> "http://fonts.gstatic.com/s/muktamahee/v5/XRXN3IOIi0hcP8iVU67hA9MVdRoHJndqZCsW.ttf", "700"=> "http://fonts.gstatic.com/s/muktamahee/v5/XRXN3IOIi0hcP8iVU67hA9NxdBoHJndqZCsW.ttf", "800"=> "http://fonts.gstatic.com/s/muktamahee/v5/XRXN3IOIi0hcP8iVU67hA9NtdxoHJndqZCsW.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 626 => [ "family"=> "Mukta Malar", "variants"=> [ 0=> "200", 1=> "300", 2=> "regular", 3=> "500", 4=> "600", 5=> "700", 6=> "800", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "tamil", ], "version"=> "v6", "lastModified"=> "2019-07-16", "files"=> [ "200"=> "http://fonts.gstatic.com/s/muktamalar/v6/MCoKzAXyz8LOE2FpJMxZqIMwBtAB62ruoAZW.ttf", "300"=> "http://fonts.gstatic.com/s/muktamalar/v6/MCoKzAXyz8LOE2FpJMxZqINUBdAB62ruoAZW.ttf", "regular"=> "http://fonts.gstatic.com/s/muktamalar/v6/MCoXzAXyz8LOE2FpJMxZqLv4LfQJwHbn.ttf", "500"=> "http://fonts.gstatic.com/s/muktamalar/v6/MCoKzAXyz8LOE2FpJMxZqIMMBNAB62ruoAZW.ttf", "600"=> "http://fonts.gstatic.com/s/muktamalar/v6/MCoKzAXyz8LOE2FpJMxZqIMgA9AB62ruoAZW.ttf", "700"=> "http://fonts.gstatic.com/s/muktamalar/v6/MCoKzAXyz8LOE2FpJMxZqINEAtAB62ruoAZW.ttf", "800"=> "http://fonts.gstatic.com/s/muktamalar/v6/MCoKzAXyz8LOE2FpJMxZqINYAdAB62ruoAZW.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 627 => [ "family"=> "Mukta Vaani", "variants"=> [ 0=> "200", 1=> "300", 2=> "regular", 3=> "500", 4=> "600", 5=> "700", 6=> "800", ], "subsets"=> [ 0=> "gujarati", 1=> "latin", 2=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "200"=> "http://fonts.gstatic.com/s/muktavaani/v7/3JnkSD_-ynaxmxnEfVHPIGXNV8BD-u97MW1a.ttf", "300"=> "http://fonts.gstatic.com/s/muktavaani/v7/3JnkSD_-ynaxmxnEfVHPIGWpVMBD-u97MW1a.ttf", "regular"=> "http://fonts.gstatic.com/s/muktavaani/v7/3Jn5SD_-ynaxmxnEfVHPIF0FfORL0fNy.ttf", "500"=> "http://fonts.gstatic.com/s/muktavaani/v7/3JnkSD_-ynaxmxnEfVHPIGXxVcBD-u97MW1a.ttf", "600"=> "http://fonts.gstatic.com/s/muktavaani/v7/3JnkSD_-ynaxmxnEfVHPIGXdUsBD-u97MW1a.ttf", "700"=> "http://fonts.gstatic.com/s/muktavaani/v7/3JnkSD_-ynaxmxnEfVHPIGW5U8BD-u97MW1a.ttf", "800"=> "http://fonts.gstatic.com/s/muktavaani/v7/3JnkSD_-ynaxmxnEfVHPIGWlUMBD-u97MW1a.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 628 => [ "family"=> "Muli", "variants"=> [ 0=> "200", 1=> "300", 2=> "regular", 3=> "500", 4=> "600", 5=> "700", 6=> "800", 7=> "900", 8=> "200italic", 9=> "300italic", 10=> "italic", 11=> "500italic", 12=> "600italic", 13=> "700italic", 14=> "800italic", 15=> "900italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v20", "lastModified"=> "2020-02-05", "files"=> [ "200"=> "http://fonts.gstatic.com/s/muli/v20/7Aulp_0qiz-aVz7u3PJLcUMYOFlOkHkw2-m9x2iC.ttf", "300"=> "http://fonts.gstatic.com/s/muli/v20/7Aulp_0qiz-aVz7u3PJLcUMYOFmQkHkw2-m9x2iC.ttf", "regular"=> "http://fonts.gstatic.com/s/muli/v20/7Aulp_0qiz-aVz7u3PJLcUMYOFnOkHkw2-m9x2iC.ttf", "500"=> "http://fonts.gstatic.com/s/muli/v20/7Aulp_0qiz-aVz7u3PJLcUMYOFn8kHkw2-m9x2iC.ttf", "600"=> "http://fonts.gstatic.com/s/muli/v20/7Aulp_0qiz-aVz7u3PJLcUMYOFkQl3kw2-m9x2iC.ttf", "700"=> "http://fonts.gstatic.com/s/muli/v20/7Aulp_0qiz-aVz7u3PJLcUMYOFkpl3kw2-m9x2iC.ttf", "800"=> "http://fonts.gstatic.com/s/muli/v20/7Aulp_0qiz-aVz7u3PJLcUMYOFlOl3kw2-m9x2iC.ttf", "900"=> "http://fonts.gstatic.com/s/muli/v20/7Aulp_0qiz-aVz7u3PJLcUMYOFlnl3kw2-m9x2iC.ttf", "200italic"=> "http://fonts.gstatic.com/s/muli/v20/7Aujp_0qiz-afTfcIyoiGtm2P0wG0xFz0e2fwniCvzM.ttf", "300italic"=> "http://fonts.gstatic.com/s/muli/v20/7Aujp_0qiz-afTfcIyoiGtm2P0wG089z0e2fwniCvzM.ttf", "italic"=> "http://fonts.gstatic.com/s/muli/v20/7Aujp_0qiz-afTfcIyoiGtm2P0wG05Fz0e2fwniCvzM.ttf", "500italic"=> "http://fonts.gstatic.com/s/muli/v20/7Aujp_0qiz-afTfcIyoiGtm2P0wG06Nz0e2fwniCvzM.ttf", "600italic"=> "http://fonts.gstatic.com/s/muli/v20/7Aujp_0qiz-afTfcIyoiGtm2P0wG00900e2fwniCvzM.ttf", "700italic"=> "http://fonts.gstatic.com/s/muli/v20/7Aujp_0qiz-afTfcIyoiGtm2P0wG03Z00e2fwniCvzM.ttf", "800italic"=> "http://fonts.gstatic.com/s/muli/v20/7Aujp_0qiz-afTfcIyoiGtm2P0wG0xF00e2fwniCvzM.ttf", "900italic"=> "http://fonts.gstatic.com/s/muli/v20/7Aujp_0qiz-afTfcIyoiGtm2P0wG0zh00e2fwniCvzM.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 629 => [ "family"=> "MuseoModerno", "variants"=> [ 0=> "100", 1=> "200", 2=> "300", 3=> "regular", 4=> "500", 5=> "600", 6=> "700", 7=> "800", 8=> "900", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v1", "lastModified"=> "2020-06-11", "files"=> [ "100"=> "http://fonts.gstatic.com/s/museomoderno/v1/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMlZFuewajeKlCdo.ttf", "200"=> "http://fonts.gstatic.com/s/museomoderno/v1/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMtZEuewajeKlCdo.ttf", "300"=> "http://fonts.gstatic.com/s/museomoderno/v1/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMghEuewajeKlCdo.ttf", "regular"=> "http://fonts.gstatic.com/s/museomoderno/v1/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMlZEuewajeKlCdo.ttf", "500"=> "http://fonts.gstatic.com/s/museomoderno/v1/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMmREuewajeKlCdo.ttf", "600"=> "http://fonts.gstatic.com/s/museomoderno/v1/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMohDuewajeKlCdo.ttf", "700"=> "http://fonts.gstatic.com/s/museomoderno/v1/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMrFDuewajeKlCdo.ttf", "800"=> "http://fonts.gstatic.com/s/museomoderno/v1/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMtZDuewajeKlCdo.ttf", "900"=> "http://fonts.gstatic.com/s/museomoderno/v1/zrf30HnU0_7wWdMrFcWqSEXPVyEaWJ55pTleMv9DuewajeKlCdo.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 630 => [ "family"=> "Mystery Quest", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/mysteryquest/v7/-nF6OG414u0E6k0wynSGlujRHwElD_9Qz9E.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 631 => [ "family"=> "NTR", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "telugu", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/ntr/v7/RLpzK5Xy0ZjiGGhs5TA4bg.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 632 => [ "family"=> "Nanum Brush Script", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "korean", 1=> "latin", ], "version"=> "v17", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/nanumbrushscript/v17/wXK2E2wfpokopxzthSqPbcR5_gVaxazyjqBr1lO97Q.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 633 => [ "family"=> "Nanum Gothic", "variants"=> [ 0=> "regular", 1=> "700", 2=> "800", ], "subsets"=> [ 0=> "korean", 1=> "latin", ], "version"=> "v17", "lastModified"=> "2019-07-22", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/nanumgothic/v17/PN_3Rfi-oW3hYwmKDpxS7F_z_tLfxno73g.ttf", "700"=> "http://fonts.gstatic.com/s/nanumgothic/v17/PN_oRfi-oW3hYwmKDpxS7F_LQv37zlEn14YEUQ.ttf", "800"=> "http://fonts.gstatic.com/s/nanumgothic/v17/PN_oRfi-oW3hYwmKDpxS7F_LXv77zlEn14YEUQ.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 634 => [ "family"=> "Nanum Gothic Coding", "variants"=> [ 0=> "regular", 1=> "700", ], "subsets"=> [ 0=> "korean", 1=> "latin", ], "version"=> "v14", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/nanumgothiccoding/v14/8QIVdjzHisX_8vv59_xMxtPFW4IXROwsy6QxVs1X7tc.ttf", "700"=> "http://fonts.gstatic.com/s/nanumgothiccoding/v14/8QIYdjzHisX_8vv59_xMxtPFW4IXROws8xgecsV88t5V9r4.ttf", ], "category"=> "monospace", "kind"=> "webfonts#webfont" ], 635 => [ "family"=> "Nanum Myeongjo", "variants"=> [ 0=> "regular", 1=> "700", 2=> "800", ], "subsets"=> [ 0=> "korean", 1=> "latin", ], "version"=> "v15", "lastModified"=> "2019-07-17", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/nanummyeongjo/v15/9Btx3DZF0dXLMZlywRbVRNhxy1LreHQ8juyl.ttf", "700"=> "http://fonts.gstatic.com/s/nanummyeongjo/v15/9Bty3DZF0dXLMZlywRbVRNhxy2pXV1A0pfCs5Kos.ttf", "800"=> "http://fonts.gstatic.com/s/nanummyeongjo/v15/9Bty3DZF0dXLMZlywRbVRNhxy2pLVFA0pfCs5Kos.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 636 => [ "family"=> "Nanum Pen Script", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "korean", 1=> "latin", ], "version"=> "v15", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/nanumpenscript/v15/daaDSSYiLGqEal3MvdA_FOL_3FkN2z7-aMFCcTU.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 637 => [ "family"=> "Neucha", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "cyrillic", 1=> "latin", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/neucha/v11/q5uGsou0JOdh94bvugNsCxVEgA.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 638 => [ "family"=> "Neuton", "variants"=> [ 0=> "200", 1=> "300", 2=> "regular", 3=> "italic", 4=> "700", 5=> "800", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v12", "lastModified"=> "2019-07-16", "files"=> [ "200"=> "http://fonts.gstatic.com/s/neuton/v12/UMBQrPtMoH62xUZKAKkfegD5Drog6Q.ttf", "300"=> "http://fonts.gstatic.com/s/neuton/v12/UMBQrPtMoH62xUZKZKofegD5Drog6Q.ttf", "regular"=> "http://fonts.gstatic.com/s/neuton/v12/UMBTrPtMoH62xUZyyII7civlBw.ttf", "italic"=> "http://fonts.gstatic.com/s/neuton/v12/UMBRrPtMoH62xUZCyog_UC71B6M5.ttf", "700"=> "http://fonts.gstatic.com/s/neuton/v12/UMBQrPtMoH62xUZKdK0fegD5Drog6Q.ttf", "800"=> "http://fonts.gstatic.com/s/neuton/v12/UMBQrPtMoH62xUZKaK4fegD5Drog6Q.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 639 => [ "family"=> "New Rocker", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/newrocker/v8/MwQzbhjp3-HImzcCU_cJkGMViblPtXs.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 640 => [ "family"=> "News Cycle", "variants"=> [ 0=> "regular", 1=> "700", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v16", "lastModified"=> "2019-07-17", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/newscycle/v16/CSR64z1Qlv-GDxkbKVQ_TOcATNt_pOU.ttf", "700"=> "http://fonts.gstatic.com/s/newscycle/v16/CSR54z1Qlv-GDxkbKVQ_dFsvaNNUuOwkC2s.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 641 => [ "family"=> "Niconne", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/niconne/v9/w8gaH2QvRug1_rTfrQut2F4OuOo.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 642 => [ "family"=> "Niramit", "variants"=> [ 0=> "200", 1=> "200italic", 2=> "300", 3=> "300italic", 4=> "regular", 5=> "italic", 6=> "500", 7=> "500italic", 8=> "600", 9=> "600italic", 10=> "700", 11=> "700italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "thai", 3=> "vietnamese", ], "version"=> "v4", "lastModified"=> "2019-11-05", "files"=> [ "200"=> "http://fonts.gstatic.com/s/niramit/v4/I_urMpWdvgLdNxVLVXx7tiiEr5_BdZ8.ttf", "200italic"=> "http://fonts.gstatic.com/s/niramit/v4/I_upMpWdvgLdNxVLXbZiXimOq73EZZ_f6w.ttf", "300"=> "http://fonts.gstatic.com/s/niramit/v4/I_urMpWdvgLdNxVLVRh4tiiEr5_BdZ8.ttf", "300italic"=> "http://fonts.gstatic.com/s/niramit/v4/I_upMpWdvgLdNxVLXbZiOiqOq73EZZ_f6w.ttf", "regular"=> "http://fonts.gstatic.com/s/niramit/v4/I_uuMpWdvgLdNxVLbbRQkiCvs5Y.ttf", "italic"=> "http://fonts.gstatic.com/s/niramit/v4/I_usMpWdvgLdNxVLXbZalgKqo5bYbA.ttf", "500"=> "http://fonts.gstatic.com/s/niramit/v4/I_urMpWdvgLdNxVLVUB5tiiEr5_BdZ8.ttf", "500italic"=> "http://fonts.gstatic.com/s/niramit/v4/I_upMpWdvgLdNxVLXbZiYiuOq73EZZ_f6w.ttf", "600"=> "http://fonts.gstatic.com/s/niramit/v4/I_urMpWdvgLdNxVLVWx-tiiEr5_BdZ8.ttf", "600italic"=> "http://fonts.gstatic.com/s/niramit/v4/I_upMpWdvgLdNxVLXbZiTiyOq73EZZ_f6w.ttf", "700"=> "http://fonts.gstatic.com/s/niramit/v4/I_urMpWdvgLdNxVLVQh_tiiEr5_BdZ8.ttf", "700italic"=> "http://fonts.gstatic.com/s/niramit/v4/I_upMpWdvgLdNxVLXbZiKi2Oq73EZZ_f6w.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 643 => [ "family"=> "Nixie One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/nixieone/v10/lW-8wjkKLXjg5y2o2uUoUOFzpS-yLw.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 644 => [ "family"=> "Nobile", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "500", 3=> "500italic", 4=> "700", 5=> "700italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/nobile/v11/m8JTjflSeaOVl1i2XqfXeLVdbw.ttf", "italic"=> "http://fonts.gstatic.com/s/nobile/v11/m8JRjflSeaOVl1iGXK3TWrBNb3OD.ttf", "500"=> "http://fonts.gstatic.com/s/nobile/v11/m8JQjflSeaOVl1iOqo7zcJ5BZmqa3A.ttf", "500italic"=> "http://fonts.gstatic.com/s/nobile/v11/m8JWjflSeaOVl1iGXJUnc5RFRG-K3Mud.ttf", "700"=> "http://fonts.gstatic.com/s/nobile/v11/m8JQjflSeaOVl1iO4ojzcJ5BZmqa3A.ttf", "700italic"=> "http://fonts.gstatic.com/s/nobile/v11/m8JWjflSeaOVl1iGXJVvdZRFRG-K3Mud.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 645 => [ "family"=> "Nokora", "variants"=> [ 0=> "regular", 1=> "700", ], "subsets"=> [ 0=> "khmer", ], "version"=> "v13", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/nokora/v13/hYkIPuwgTubzaWxQOzoPovZg8Q.ttf", "700"=> "http://fonts.gstatic.com/s/nokora/v13/hYkLPuwgTubzaWxohxUrqt18-B9Uuw.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 646 => [ "family"=> "Norican", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/norican/v8/MwQ2bhXp1eSBqjkPGJJRtGs-lbA.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 647 => [ "family"=> "Nosifer", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/nosifer/v8/ZGjXol5JTp0g5bxZaC1RVDNdGDs.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 648 => [ "family"=> "Notable", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v4", "lastModified"=> "2019-11-05", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/notable/v4/gNMEW3N_SIqx-WX9-HMoFIez5MI.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 649 => [ "family"=> "Nothing You Could Do", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/nothingyoucoulddo/v9/oY1B8fbBpaP5OX3DtrRYf_Q2BPB1SnfZb0OJl1ol2Ymo.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 650 => [ "family"=> "Noticia Text", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "700", 3=> "700italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v9", "lastModified"=> "2019-07-17", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/noticiatext/v9/VuJ2dNDF2Yv9qppOePKYRP1GYTFZt0rNpQ.ttf", "italic"=> "http://fonts.gstatic.com/s/noticiatext/v9/VuJodNDF2Yv9qppOePKYRP12YztdlU_dpSjt.ttf", "700"=> "http://fonts.gstatic.com/s/noticiatext/v9/VuJpdNDF2Yv9qppOePKYRP1-3R59v2HRrDH0eA.ttf", "700italic"=> "http://fonts.gstatic.com/s/noticiatext/v9/VuJrdNDF2Yv9qppOePKYRP12YwPhumvVjjTkeMnz.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 651 => [ "family"=> "Noto Sans", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "700", 3=> "700italic", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "devanagari", 3=> "greek", 4=> "greek-ext", 5=> "latin", 6=> "latin-ext", 7=> "vietnamese", ], "version"=> "v9", "lastModified"=> "2019-07-22", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/notosans/v9/o-0IIpQlx3QUlC5A4PNb4j5Ba_2c7A.ttf", "italic"=> "http://fonts.gstatic.com/s/notosans/v9/o-0OIpQlx3QUlC5A4PNr4DRFSfiM7HBj.ttf", "700"=> "http://fonts.gstatic.com/s/notosans/v9/o-0NIpQlx3QUlC5A4PNjXhFlY9aA5Wl6PQ.ttf", "700italic"=> "http://fonts.gstatic.com/s/notosans/v9/o-0TIpQlx3QUlC5A4PNr4Az5ZtyEx2xqPaif.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 652 => [ "family"=> "Noto Sans HK", "variants"=> [ 0=> "100", 1=> "300", 2=> "regular", 3=> "500", 4=> "700", 5=> "900", ], "subsets"=> [ 0=> "chinese-hongkong", 1=> "latin", ], "version"=> "v5", "lastModified"=> "2019-07-16", "files"=> [ "100"=> "http://fonts.gstatic.com/s/notosanshk/v5/nKKO-GM_FYFRJvXzVXaAPe9ZUHp1MOv2ObB7.otf", "300"=> "http://fonts.gstatic.com/s/notosanshk/v5/nKKP-GM_FYFRJvXzVXaAPe9ZmFhTHMX6MKliqQ.otf", "regular"=> "http://fonts.gstatic.com/s/notosanshk/v5/nKKQ-GM_FYFRJvXzVXaAPe9hMnB3Eu7mOQ.otf", "500"=> "http://fonts.gstatic.com/s/notosanshk/v5/nKKP-GM_FYFRJvXzVXaAPe9ZwFlTHMX6MKliqQ.otf", "700"=> "http://fonts.gstatic.com/s/notosanshk/v5/nKKP-GM_FYFRJvXzVXaAPe9ZiF9THMX6MKliqQ.otf", "900"=> "http://fonts.gstatic.com/s/notosanshk/v5/nKKP-GM_FYFRJvXzVXaAPe9ZsF1THMX6MKliqQ.otf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 653 => [ "family"=> "Noto Sans JP", "variants"=> [ 0=> "100", 1=> "300", 2=> "regular", 3=> "500", 4=> "700", 5=> "900", ], "subsets"=> [ 0=> "japanese", 1=> "latin", ], "version"=> "v25", "lastModified"=> "2020-03-05", "files"=> [ "100"=> "http://fonts.gstatic.com/s/notosansjp/v25/-F6ofjtqLzI2JPCgQBnw7HFQoggM-FNthvIU.otf", "300"=> "http://fonts.gstatic.com/s/notosansjp/v25/-F6pfjtqLzI2JPCgQBnw7HFQaioq1H1hj-sNFQ.otf", "regular"=> "http://fonts.gstatic.com/s/notosansjp/v25/-F62fjtqLzI2JPCgQBnw7HFowAIO2lZ9hg.otf", "500"=> "http://fonts.gstatic.com/s/notosansjp/v25/-F6pfjtqLzI2JPCgQBnw7HFQMisq1H1hj-sNFQ.otf", "700"=> "http://fonts.gstatic.com/s/notosansjp/v25/-F6pfjtqLzI2JPCgQBnw7HFQei0q1H1hj-sNFQ.otf", "900"=> "http://fonts.gstatic.com/s/notosansjp/v25/-F6pfjtqLzI2JPCgQBnw7HFQQi8q1H1hj-sNFQ.otf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 654 => [ "family"=> "Noto Sans KR", "variants"=> [ 0=> "100", 1=> "300", 2=> "regular", 3=> "500", 4=> "700", 5=> "900", ], "subsets"=> [ 0=> "korean", 1=> "latin", ], "version"=> "v12", "lastModified"=> "2019-07-22", "files"=> [ "100"=> "http://fonts.gstatic.com/s/notosanskr/v12/Pby6FmXiEBPT4ITbgNA5CgmOsn7uwpYcuH8y.otf", "300"=> "http://fonts.gstatic.com/s/notosanskr/v12/Pby7FmXiEBPT4ITbgNA5CgmOelzI7rgQsWYrzw.otf", "regular"=> "http://fonts.gstatic.com/s/notosanskr/v12/PbykFmXiEBPT4ITbgNA5Cgm20HTs4JMMuA.otf", "500"=> "http://fonts.gstatic.com/s/notosanskr/v12/Pby7FmXiEBPT4ITbgNA5CgmOIl3I7rgQsWYrzw.otf", "700"=> "http://fonts.gstatic.com/s/notosanskr/v12/Pby7FmXiEBPT4ITbgNA5CgmOalvI7rgQsWYrzw.otf", "900"=> "http://fonts.gstatic.com/s/notosanskr/v12/Pby7FmXiEBPT4ITbgNA5CgmOUlnI7rgQsWYrzw.otf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 655 => [ "family"=> "Noto Sans SC", "variants"=> [ 0=> "100", 1=> "300", 2=> "regular", 3=> "500", 4=> "700", 5=> "900", ], "subsets"=> [ 0=> "chinese-simplified", 1=> "latin", ], "version"=> "v11", "lastModified"=> "2020-03-05", "files"=> [ "100"=> "http://fonts.gstatic.com/s/notosanssc/v11/k3kJo84MPvpLmixcA63oeALZTYKL2wv287Sb.otf", "300"=> "http://fonts.gstatic.com/s/notosanssc/v11/k3kIo84MPvpLmixcA63oeALZhaCt9yX6-q2CGg.otf", "regular"=> "http://fonts.gstatic.com/s/notosanssc/v11/k3kXo84MPvpLmixcA63oeALhL4iJ-Q7m8w.otf", "500"=> "http://fonts.gstatic.com/s/notosanssc/v11/k3kIo84MPvpLmixcA63oeALZ3aGt9yX6-q2CGg.otf", "700"=> "http://fonts.gstatic.com/s/notosanssc/v11/k3kIo84MPvpLmixcA63oeALZlaet9yX6-q2CGg.otf", "900"=> "http://fonts.gstatic.com/s/notosanssc/v11/k3kIo84MPvpLmixcA63oeALZraWt9yX6-q2CGg.otf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 656 => [ "family"=> "Noto Sans TC", "variants"=> [ 0=> "100", 1=> "300", 2=> "regular", 3=> "500", 4=> "700", 5=> "900", ], "subsets"=> [ 0=> "chinese-traditional", 1=> "latin", ], "version"=> "v10", "lastModified"=> "2020-03-05", "files"=> [ "100"=> "http://fonts.gstatic.com/s/notosanstc/v10/-nFlOG829Oofr2wohFbTp9i9WyEJIfNZ1sjy.otf", "300"=> "http://fonts.gstatic.com/s/notosanstc/v10/-nFkOG829Oofr2wohFbTp9i9kwMvDd1V39Hr7g.otf", "regular"=> "http://fonts.gstatic.com/s/notosanstc/v10/-nF7OG829Oofr2wohFbTp9iFOSsLA_ZJ1g.otf", "500"=> "http://fonts.gstatic.com/s/notosanstc/v10/-nFkOG829Oofr2wohFbTp9i9ywIvDd1V39Hr7g.otf", "700"=> "http://fonts.gstatic.com/s/notosanstc/v10/-nFkOG829Oofr2wohFbTp9i9gwQvDd1V39Hr7g.otf", "900"=> "http://fonts.gstatic.com/s/notosanstc/v10/-nFkOG829Oofr2wohFbTp9i9uwYvDd1V39Hr7g.otf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 657 => [ "family"=> "Noto Serif", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "700", 3=> "700italic", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "greek", 3=> "greek-ext", 4=> "latin", 5=> "latin-ext", 6=> "vietnamese", ], "version"=> "v8", "lastModified"=> "2019-07-22", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/notoserif/v8/ga6Iaw1J5X9T9RW6j9bNTFAcaRi_bMQ.ttf", "italic"=> "http://fonts.gstatic.com/s/notoserif/v8/ga6Kaw1J5X9T9RW6j9bNfFIWbTq6fMRRMw.ttf", "700"=> "http://fonts.gstatic.com/s/notoserif/v8/ga6Law1J5X9T9RW6j9bNdOwzTRCUcM1IKoY.ttf", "700italic"=> "http://fonts.gstatic.com/s/notoserif/v8/ga6Vaw1J5X9T9RW6j9bNfFIu0RWedO9NOoYIDg.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 658 => [ "family"=> "Noto Serif JP", "variants"=> [ 0=> "200", 1=> "300", 2=> "regular", 3=> "500", 4=> "600", 5=> "700", 6=> "900", ], "subsets"=> [ 0=> "japanese", 1=> "latin", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "200"=> "http://fonts.gstatic.com/s/notoserifjp/v7/xn77YHs72GKoTvER4Gn3b5eMZBaPRkgfU8fEwb0.otf", "300"=> "http://fonts.gstatic.com/s/notoserifjp/v7/xn77YHs72GKoTvER4Gn3b5eMZHKMRkgfU8fEwb0.otf", "regular"=> "http://fonts.gstatic.com/s/notoserifjp/v7/xn7mYHs72GKoTvER4Gn3b5eMXNikYkY0T84.otf", "500"=> "http://fonts.gstatic.com/s/notoserifjp/v7/xn77YHs72GKoTvER4Gn3b5eMZCqNRkgfU8fEwb0.otf", "600"=> "http://fonts.gstatic.com/s/notoserifjp/v7/xn77YHs72GKoTvER4Gn3b5eMZAaKRkgfU8fEwb0.otf", "700"=> "http://fonts.gstatic.com/s/notoserifjp/v7/xn77YHs72GKoTvER4Gn3b5eMZGKLRkgfU8fEwb0.otf", "900"=> "http://fonts.gstatic.com/s/notoserifjp/v7/xn77YHs72GKoTvER4Gn3b5eMZFqJRkgfU8fEwb0.otf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 659 => [ "family"=> "Noto Serif KR", "variants"=> [ 0=> "200", 1=> "300", 2=> "regular", 3=> "500", 4=> "600", 5=> "700", 6=> "900", ], "subsets"=> [ 0=> "korean", 1=> "latin", ], "version"=> "v6", "lastModified"=> "2019-07-16", "files"=> [ "200"=> "http://fonts.gstatic.com/s/notoserifkr/v6/3JnmSDn90Gmq2mr3blnHaTZXTihC8O1ZNH1ahck.otf", "300"=> "http://fonts.gstatic.com/s/notoserifkr/v6/3JnmSDn90Gmq2mr3blnHaTZXTkxB8O1ZNH1ahck.otf", "regular"=> "http://fonts.gstatic.com/s/notoserifkr/v6/3Jn7SDn90Gmq2mr3blnHaTZXduZp1ONyKHQ.otf", "500"=> "http://fonts.gstatic.com/s/notoserifkr/v6/3JnmSDn90Gmq2mr3blnHaTZXThRA8O1ZNH1ahck.otf", "600"=> "http://fonts.gstatic.com/s/notoserifkr/v6/3JnmSDn90Gmq2mr3blnHaTZXTjhH8O1ZNH1ahck.otf", "700"=> "http://fonts.gstatic.com/s/notoserifkr/v6/3JnmSDn90Gmq2mr3blnHaTZXTlxG8O1ZNH1ahck.otf", "900"=> "http://fonts.gstatic.com/s/notoserifkr/v6/3JnmSDn90Gmq2mr3blnHaTZXTmRE8O1ZNH1ahck.otf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 660 => [ "family"=> "Noto Serif SC", "variants"=> [ 0=> "200", 1=> "300", 2=> "regular", 3=> "500", 4=> "600", 5=> "700", 6=> "900", ], "subsets"=> [ 0=> "chinese-simplified", 1=> "latin", ], "version"=> "v7", "lastModified"=> "2020-01-30", "files"=> [ "200"=> "http://fonts.gstatic.com/s/notoserifsc/v7/H4c8BXePl9DZ0Xe7gG9cyOj7mm63SzZBEtERe7U.otf", "300"=> "http://fonts.gstatic.com/s/notoserifsc/v7/H4c8BXePl9DZ0Xe7gG9cyOj7mgq0SzZBEtERe7U.otf", "regular"=> "http://fonts.gstatic.com/s/notoserifsc/v7/H4chBXePl9DZ0Xe7gG9cyOj7oqCcbzhqDtg.otf", "500"=> "http://fonts.gstatic.com/s/notoserifsc/v7/H4c8BXePl9DZ0Xe7gG9cyOj7mlK1SzZBEtERe7U.otf", "600"=> "http://fonts.gstatic.com/s/notoserifsc/v7/H4c8BXePl9DZ0Xe7gG9cyOj7mn6ySzZBEtERe7U.otf", "700"=> "http://fonts.gstatic.com/s/notoserifsc/v7/H4c8BXePl9DZ0Xe7gG9cyOj7mhqzSzZBEtERe7U.otf", "900"=> "http://fonts.gstatic.com/s/notoserifsc/v7/H4c8BXePl9DZ0Xe7gG9cyOj7miKxSzZBEtERe7U.otf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 661 => [ "family"=> "Noto Serif TC", "variants"=> [ 0=> "200", 1=> "300", 2=> "regular", 3=> "500", 4=> "600", 5=> "700", 6=> "900", ], "subsets"=> [ 0=> "chinese-traditional", 1=> "latin", ], "version"=> "v7", "lastModified"=> "2020-01-30", "files"=> [ "200"=> "http://fonts.gstatic.com/s/notoseriftc/v7/XLY9IZb5bJNDGYxLBibeHZ0Bvr8vbX9GTsoOAX4.otf", "300"=> "http://fonts.gstatic.com/s/notoseriftc/v7/XLY9IZb5bJNDGYxLBibeHZ0BvtssbX9GTsoOAX4.otf", "regular"=> "http://fonts.gstatic.com/s/notoseriftc/v7/XLYgIZb5bJNDGYxLBibeHZ0BhnEESXFtUsM.otf", "500"=> "http://fonts.gstatic.com/s/notoseriftc/v7/XLY9IZb5bJNDGYxLBibeHZ0BvoMtbX9GTsoOAX4.otf", "600"=> "http://fonts.gstatic.com/s/notoseriftc/v7/XLY9IZb5bJNDGYxLBibeHZ0Bvq8qbX9GTsoOAX4.otf", "700"=> "http://fonts.gstatic.com/s/notoseriftc/v7/XLY9IZb5bJNDGYxLBibeHZ0BvssrbX9GTsoOAX4.otf", "900"=> "http://fonts.gstatic.com/s/notoseriftc/v7/XLY9IZb5bJNDGYxLBibeHZ0BvvMpbX9GTsoOAX4.otf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 662 => [ "family"=> "Nova Cut", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/novacut/v11/KFOkCnSYu8mL-39LkWxPKTM1K9nz.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 663 => [ "family"=> "Nova Flat", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/novaflat/v11/QdVUSTc-JgqpytEbVebEuStkm20oJA.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 664 => [ "family"=> "Nova Mono", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "greek", 1=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/novamono/v10/Cn-0JtiGWQ5Ajb--MRKfYGxYrdM9Sg.ttf", ], "category"=> "monospace", "kind"=> "webfonts#webfont" ], 665 => [ "family"=> "Nova Oval", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/novaoval/v11/jAnEgHdmANHvPenMaswCMY-h3cWkWg.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 666 => [ "family"=> "Nova Round", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/novaround/v11/flU9Rqquw5UhEnlwTJYTYYfeeetYEBc.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 667 => [ "family"=> "Nova Script", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v12", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/novascript/v12/7Au7p_IpkSWSTWaFWkumvmQNEl0O0kEx.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 668 => [ "family"=> "Nova Slim", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/novaslim/v11/Z9XUDmZNQAuem8jyZcn-yMOInrib9Q.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 669 => [ "family"=> "Nova Square", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v12", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/novasquare/v12/RrQUbo9-9DV7b06QHgSWsZhARYMgGtWA.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 670 => [ "family"=> "Numans", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/numans/v9/SlGRmQmGupYAfH8IYRggiHVqaQ.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 671 => [ "family"=> "Nunito", "variants"=> [ 0=> "200", 1=> "200italic", 2=> "300", 3=> "300italic", 4=> "regular", 5=> "italic", 6=> "600", 7=> "600italic", 8=> "700", 9=> "700italic", 10=> "800", 11=> "800italic", 12=> "900", 13=> "900italic", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "latin", 3=> "latin-ext", 4=> "vietnamese", ], "version"=> "v12", "lastModified"=> "2019-11-14", "files"=> [ "200"=> "http://fonts.gstatic.com/s/nunito/v12/XRXW3I6Li01BKofA-sekZuHJeTsfDQ.ttf", "200italic"=> "http://fonts.gstatic.com/s/nunito/v12/XRXQ3I6Li01BKofIMN5MZ-vNWz4PDWtj.ttf", "300"=> "http://fonts.gstatic.com/s/nunito/v12/XRXW3I6Li01BKofAnsSkZuHJeTsfDQ.ttf", "300italic"=> "http://fonts.gstatic.com/s/nunito/v12/XRXQ3I6Li01BKofIMN4oZOvNWz4PDWtj.ttf", "regular"=> "http://fonts.gstatic.com/s/nunito/v12/XRXV3I6Li01BKof4MuyAbsrVcA.ttf", "italic"=> "http://fonts.gstatic.com/s/nunito/v12/XRXX3I6Li01BKofIMOaETM_FcCIG.ttf", "600"=> "http://fonts.gstatic.com/s/nunito/v12/XRXW3I6Li01BKofA6sKkZuHJeTsfDQ.ttf", "600italic"=> "http://fonts.gstatic.com/s/nunito/v12/XRXQ3I6Li01BKofIMN5cYuvNWz4PDWtj.ttf", "700"=> "http://fonts.gstatic.com/s/nunito/v12/XRXW3I6Li01BKofAjsOkZuHJeTsfDQ.ttf", "700italic"=> "http://fonts.gstatic.com/s/nunito/v12/XRXQ3I6Li01BKofIMN44Y-vNWz4PDWtj.ttf", "800"=> "http://fonts.gstatic.com/s/nunito/v12/XRXW3I6Li01BKofAksCkZuHJeTsfDQ.ttf", "800italic"=> "http://fonts.gstatic.com/s/nunito/v12/XRXQ3I6Li01BKofIMN4kYOvNWz4PDWtj.ttf", "900"=> "http://fonts.gstatic.com/s/nunito/v12/XRXW3I6Li01BKofAtsGkZuHJeTsfDQ.ttf", "900italic"=> "http://fonts.gstatic.com/s/nunito/v12/XRXQ3I6Li01BKofIMN4AYevNWz4PDWtj.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 672 => [ "family"=> "Nunito Sans", "variants"=> [ 0=> "200", 1=> "200italic", 2=> "300", 3=> "300italic", 4=> "regular", 5=> "italic", 6=> "600", 7=> "600italic", 8=> "700", 9=> "700italic", 10=> "800", 11=> "800italic", 12=> "900", 13=> "900italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v5", "lastModified"=> "2019-07-22", "files"=> [ "200"=> "http://fonts.gstatic.com/s/nunitosans/v5/pe03MImSLYBIv1o4X1M8cc9yAv5qWVAgVol-.ttf", "200italic"=> "http://fonts.gstatic.com/s/nunitosans/v5/pe01MImSLYBIv1o4X1M8cce4GxZrU1QCU5l-06Y.ttf", "300"=> "http://fonts.gstatic.com/s/nunitosans/v5/pe03MImSLYBIv1o4X1M8cc8WAf5qWVAgVol-.ttf", "300italic"=> "http://fonts.gstatic.com/s/nunitosans/v5/pe01MImSLYBIv1o4X1M8cce4G3JoU1QCU5l-06Y.ttf", "regular"=> "http://fonts.gstatic.com/s/nunitosans/v5/pe0qMImSLYBIv1o4X1M8cfe6Kdpickwp.ttf", "italic"=> "http://fonts.gstatic.com/s/nunitosans/v5/pe0oMImSLYBIv1o4X1M8cce4I95Ad1wpT5A.ttf", "600"=> "http://fonts.gstatic.com/s/nunitosans/v5/pe03MImSLYBIv1o4X1M8cc9iB_5qWVAgVol-.ttf", "600italic"=> "http://fonts.gstatic.com/s/nunitosans/v5/pe01MImSLYBIv1o4X1M8cce4GwZuU1QCU5l-06Y.ttf", "700"=> "http://fonts.gstatic.com/s/nunitosans/v5/pe03MImSLYBIv1o4X1M8cc8GBv5qWVAgVol-.ttf", "700italic"=> "http://fonts.gstatic.com/s/nunitosans/v5/pe01MImSLYBIv1o4X1M8cce4G2JvU1QCU5l-06Y.ttf", "800"=> "http://fonts.gstatic.com/s/nunitosans/v5/pe03MImSLYBIv1o4X1M8cc8aBf5qWVAgVol-.ttf", "800italic"=> "http://fonts.gstatic.com/s/nunitosans/v5/pe01MImSLYBIv1o4X1M8cce4G35sU1QCU5l-06Y.ttf", "900"=> "http://fonts.gstatic.com/s/nunitosans/v5/pe03MImSLYBIv1o4X1M8cc8-BP5qWVAgVol-.ttf", "900italic"=> "http://fonts.gstatic.com/s/nunitosans/v5/pe01MImSLYBIv1o4X1M8cce4G1ptU1QCU5l-06Y.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 673 => [ "family"=> "Odibee Sans", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v1", "lastModified"=> "2020-03-03", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/odibeesans/v1/neIPzCSooYAho6WvjeToRYkyepH9qGsf.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 674 => [ "family"=> "Odor Mean Chey", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "khmer", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/odormeanchey/v11/raxkHiKDttkTe1aOGcJMR1A_4mrY2zqUKafv.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 675 => [ "family"=> "Offside", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/offside/v7/HI_KiYMWKa9QrAykQ5HiRp-dhpQ.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 676 => [ "family"=> "Old Standard TT", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "700", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "latin", 3=> "latin-ext", 4=> "vietnamese", ], "version"=> "v12", "lastModified"=> "2019-07-17", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/oldstandardtt/v12/MwQubh3o1vLImiwAVvYawgcf2eVurVC5RHdCZg.ttf", "italic"=> "http://fonts.gstatic.com/s/oldstandardtt/v12/MwQsbh3o1vLImiwAVvYawgcf2eVer1q9ZnJSZtQG.ttf", "700"=> "http://fonts.gstatic.com/s/oldstandardtt/v12/MwQrbh3o1vLImiwAVvYawgcf2eVWEX-dTFxeb80flQ.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 677 => [ "family"=> "Oldenburg", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/oldenburg/v7/fC1jPY5JYWzbywv7c4V6UU6oXyndrw.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 678 => [ "family"=> "Oleo Script", "variants"=> [ 0=> "regular", 1=> "700", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/oleoscript/v8/rax5HieDvtMOe0iICsUccBhasU7Q8Cad.ttf", "700"=> "http://fonts.gstatic.com/s/oleoscript/v8/raxkHieDvtMOe0iICsUccCDmnmrY2zqUKafv.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 679 => [ "family"=> "Oleo Script Swash Caps", "variants"=> [ 0=> "regular", 1=> "700", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/oleoscriptswashcaps/v7/Noaj6Vb-w5SFbTTAsZP_7JkCS08K-jCzDn_HMXquSY0Hg90.ttf", "700"=> "http://fonts.gstatic.com/s/oleoscriptswashcaps/v7/Noag6Vb-w5SFbTTAsZP_7JkCS08K-jCzDn_HCcaBbYUsn9T5dt0.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 680 => [ "family"=> "Open Sans", "variants"=> [ 0=> "300", 1=> "300italic", 2=> "regular", 3=> "italic", 4=> "600", 5=> "600italic", 6=> "700", 7=> "700italic", 8=> "800", 9=> "800italic" ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "greek", 3=> "greek-ext", 4=> "latin", 5=> "latin-ext", 6=> "vietnamese", ], "version"=> "v17", "lastModified"=> "2019-07-23", "files"=> [ "300"=> "http://fonts.gstatic.com/s/opensans/v17/mem5YaGs126MiZpBA-UN_r8-VeJoCqeDjg.ttf", "300italic"=> "http://fonts.gstatic.com/s/opensans/v17/memnYaGs126MiZpBA-UFUKWyV-hsKKKTjrPW.ttf", "regular"=> "http://fonts.gstatic.com/s/opensans/v17/mem8YaGs126MiZpBA-U1UpcaXcl0Aw.ttf", "italic"=> "http://fonts.gstatic.com/s/opensans/v17/mem6YaGs126MiZpBA-UFUJ0ef8xkA76a.ttf", "600"=> "http://fonts.gstatic.com/s/opensans/v17/mem5YaGs126MiZpBA-UNirk-VeJoCqeDjg.ttf", "600italic"=> "http://fonts.gstatic.com/s/opensans/v17/memnYaGs126MiZpBA-UFUKXGUehsKKKTjrPW.ttf", "700"=> "http://fonts.gstatic.com/s/opensans/v17/mem5YaGs126MiZpBA-UN7rg-VeJoCqeDjg.ttf", "700italic"=> "http://fonts.gstatic.com/s/opensans/v17/memnYaGs126MiZpBA-UFUKWiUOhsKKKTjrPW.ttf", "800"=> "http://fonts.gstatic.com/s/opensans/v17/mem5YaGs126MiZpBA-UN8rs-VeJoCqeDjg.ttf", "800italic"=> "http://fonts.gstatic.com/s/opensans/v17/memnYaGs126MiZpBA-UFUKW-U-hsKKKTjrPW.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 681 => [ "family"=> "Open Sans Condensed", "variants"=> [ 0=> "300", 1=> "300italic", 2=> "700", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "greek", 3=> "greek-ext", 4=> "latin", 5=> "latin-ext", 6=> "vietnamese", ], "version"=> "v14", "lastModified"=> "2019-07-22", "files"=> [ "300"=> "http://fonts.gstatic.com/s/opensanscondensed/v14/z7NFdQDnbTkabZAIOl9il_O6KJj73e7Ff1GhPuLGRpWRyAs.ttf", "300italic"=> "http://fonts.gstatic.com/s/opensanscondensed/v14/z7NHdQDnbTkabZAIOl9il_O6KJj73e7Fd_-7suDMQreU2AsJSg.ttf", "700"=> "http://fonts.gstatic.com/s/opensanscondensed/v14/z7NFdQDnbTkabZAIOl9il_O6KJj73e7Ff0GmPuLGRpWRyAs.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 682 => [ "family"=> "Oranienbaum", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "latin", 3=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/oranienbaum/v8/OZpHg_txtzZKMuXLIVrx-3zn7kz3dpHc.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 683 => [ "family"=> "Orbitron", "variants"=> [ 0=> "regular", 1=> "500", 2=> "600", 3=> "700", 4=> "800", 5=> "900", ], "subsets"=> [ 0=> "latin", ], "version"=> "v15", "lastModified"=> "2020-02-05", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/orbitron/v15/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nyGy6xpmIyXjU1pg.ttf", "500"=> "http://fonts.gstatic.com/s/orbitron/v15/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nyKS6xpmIyXjU1pg.ttf", "600"=> "http://fonts.gstatic.com/s/orbitron/v15/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nyxSmxpmIyXjU1pg.ttf", "700"=> "http://fonts.gstatic.com/s/orbitron/v15/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1ny_CmxpmIyXjU1pg.ttf", "800"=> "http://fonts.gstatic.com/s/orbitron/v15/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nymymxpmIyXjU1pg.ttf", "900"=> "http://fonts.gstatic.com/s/orbitron/v15/yMJMMIlzdpvBhQQL_SC3X9yhF25-T1nysimxpmIyXjU1pg.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 684 => [ "family"=> "Oregano", "variants"=> [ 0=> "regular", 1=> "italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/oregano/v7/If2IXTPxciS3H4S2kZffPznO3yM.ttf", "italic"=> "http://fonts.gstatic.com/s/oregano/v7/If2KXTPxciS3H4S2oZXVOxvLzyP_qw.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 685 => [ "family"=> "Orienta", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/orienta/v7/PlI9FlK4Jrl5Y9zNeyeo9HRFhcU.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 686 => [ "family"=> "Original Surfer", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/originalsurfer/v8/RWmQoKGZ9vIirYntXJ3_MbekzNMiDEtvAlaMKw.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 687 => [ "family"=> "Oswald", "variants"=> [ 0=> "200", 1=> "300", 2=> "regular", 3=> "500", 4=> "600", 5=> "700", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "latin", 3=> "latin-ext", 4=> "vietnamese", ], "version"=> "v31", "lastModified"=> "2020-03-03", "files"=> [ "200"=> "http://fonts.gstatic.com/s/oswald/v31/TK3_WkUHHAIjg75cFRf3bXL8LICs13FvgUFoZAaRliE.ttf", "300"=> "http://fonts.gstatic.com/s/oswald/v31/TK3_WkUHHAIjg75cFRf3bXL8LICs169vgUFoZAaRliE.ttf", "regular"=> "http://fonts.gstatic.com/s/oswald/v31/TK3_WkUHHAIjg75cFRf3bXL8LICs1_FvgUFoZAaRliE.ttf", "500"=> "http://fonts.gstatic.com/s/oswald/v31/TK3_WkUHHAIjg75cFRf3bXL8LICs18NvgUFoZAaRliE.ttf", "600"=> "http://fonts.gstatic.com/s/oswald/v31/TK3_WkUHHAIjg75cFRf3bXL8LICs1y9ogUFoZAaRliE.ttf", "700"=> "http://fonts.gstatic.com/s/oswald/v31/TK3_WkUHHAIjg75cFRf3bXL8LICs1xZogUFoZAaRliE.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 688 => [ "family"=> "Over the Rainbow", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/overtherainbow/v10/11haGoXG1k_HKhMLUWz7Mc7vvW5upvOm9NA2XG0.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 689 => [ "family"=> "Overlock", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "700", 3=> "700italic", 4=> "900", 5=> "900italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/overlock/v9/Z9XVDmdMWRiN1_T9Z4Te4u2El6GC.ttf", "italic"=> "http://fonts.gstatic.com/s/overlock/v9/Z9XTDmdMWRiN1_T9Z7Tc6OmmkrGC7Cs.ttf", "700"=> "http://fonts.gstatic.com/s/overlock/v9/Z9XSDmdMWRiN1_T9Z7xizcmMvL2L9TLT.ttf", "700italic"=> "http://fonts.gstatic.com/s/overlock/v9/Z9XQDmdMWRiN1_T9Z7Tc0FWJtrmp8CLTlNs.ttf", "900"=> "http://fonts.gstatic.com/s/overlock/v9/Z9XSDmdMWRiN1_T9Z7xaz8mMvL2L9TLT.ttf", "900italic"=> "http://fonts.gstatic.com/s/overlock/v9/Z9XQDmdMWRiN1_T9Z7Tc0G2Ltrmp8CLTlNs.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 690 => [ "family"=> "Overlock SC", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/overlocksc/v8/1cX3aUHKGZrstGAY8nwVzHGAq8Sk1PoH.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 691 => [ "family"=> "Overpass", "variants"=> [ 0=> "100", 1=> "100italic", 2=> "200", 3=> "200italic", 4=> "300", 5=> "300italic", 6=> "regular", 7=> "italic", 8=> "600", 9=> "600italic", 10=> "700", 11=> "700italic", 12=> "800", 13=> "800italic", 14=> "900", 15=> "900italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v4", "lastModified"=> "2019-07-17", "files"=> [ "100"=> "http://fonts.gstatic.com/s/overpass/v4/qFdB35WCmI96Ajtm81nGU97gxhcJk1s.ttf", "100italic"=> "http://fonts.gstatic.com/s/overpass/v4/qFdD35WCmI96Ajtm81Gga7rqwjUMg1siNQ.ttf", "200"=> "http://fonts.gstatic.com/s/overpass/v4/qFdA35WCmI96Ajtm81lqcv7K6BsAikI7.ttf", "200italic"=> "http://fonts.gstatic.com/s/overpass/v4/qFdC35WCmI96Ajtm81GgaxbL4h8ij1I7LLE.ttf", "300"=> "http://fonts.gstatic.com/s/overpass/v4/qFdA35WCmI96Ajtm81kOcf7K6BsAikI7.ttf", "300italic"=> "http://fonts.gstatic.com/s/overpass/v4/qFdC35WCmI96Ajtm81Gga3LI4h8ij1I7LLE.ttf", "regular"=> "http://fonts.gstatic.com/s/overpass/v4/qFdH35WCmI96Ajtm82GiWdrCwwcJ.ttf", "italic"=> "http://fonts.gstatic.com/s/overpass/v4/qFdB35WCmI96Ajtm81GgU97gxhcJk1s.ttf", "600"=> "http://fonts.gstatic.com/s/overpass/v4/qFdA35WCmI96Ajtm81l6d_7K6BsAikI7.ttf", "600italic"=> "http://fonts.gstatic.com/s/overpass/v4/qFdC35WCmI96Ajtm81GgawbO4h8ij1I7LLE.ttf", "700"=> "http://fonts.gstatic.com/s/overpass/v4/qFdA35WCmI96Ajtm81kedv7K6BsAikI7.ttf", "700italic"=> "http://fonts.gstatic.com/s/overpass/v4/qFdC35WCmI96Ajtm81Gga2LP4h8ij1I7LLE.ttf", "800"=> "http://fonts.gstatic.com/s/overpass/v4/qFdA35WCmI96Ajtm81kCdf7K6BsAikI7.ttf", "800italic"=> "http://fonts.gstatic.com/s/overpass/v4/qFdC35WCmI96Ajtm81Gga37M4h8ij1I7LLE.ttf", "900"=> "http://fonts.gstatic.com/s/overpass/v4/qFdA35WCmI96Ajtm81kmdP7K6BsAikI7.ttf", "900italic"=> "http://fonts.gstatic.com/s/overpass/v4/qFdC35WCmI96Ajtm81Gga1rN4h8ij1I7LLE.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 692 => [ "family"=> "Overpass Mono", "variants"=> [ 0=> "300", 1=> "regular", 2=> "600", 3=> "700", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v5", "lastModified"=> "2019-07-16", "files"=> [ "300"=> "http://fonts.gstatic.com/s/overpassmono/v5/_Xm3-H86tzKDdAPa-KPQZ-AC3oSWk_edB3Zf8EQ.ttf", "regular"=> "http://fonts.gstatic.com/s/overpassmono/v5/_Xmq-H86tzKDdAPa-KPQZ-AC5ii-t_-2G38.ttf", "600"=> "http://fonts.gstatic.com/s/overpassmono/v5/_Xm3-H86tzKDdAPa-KPQZ-AC3vCQk_edB3Zf8EQ.ttf", "700"=> "http://fonts.gstatic.com/s/overpassmono/v5/_Xm3-H86tzKDdAPa-KPQZ-AC3pSRk_edB3Zf8EQ.ttf", ], "category"=> "monospace", "kind"=> "webfonts#webfont" ], 693 => [ "family"=> "Ovo", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/ovo/v11/yYLl0h7Wyfzjy4Q5_3WVxA.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 694 => [ "family"=> "Oxanium", "variants"=> [ 0=> "200", 1=> "300", 2=> "regular", 3=> "500", 4=> "600", 5=> "700", 6=> "800", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v1", "lastModified"=> "2020-03-03", "files"=> [ "200"=> "http://fonts.gstatic.com/s/oxanium/v1/RrQVboN_4yJ0JmiMc63l9Lhqa48pA8w.ttf", "300"=> "http://fonts.gstatic.com/s/oxanium/v1/RrQVboN_4yJ0JmiMc8nm9Lhqa48pA8w.ttf", "regular"=> "http://fonts.gstatic.com/s/oxanium/v1/RrQQboN_4yJ0JmiMS2XO0LBBd4Y.ttf", "500"=> "http://fonts.gstatic.com/s/oxanium/v1/RrQVboN_4yJ0JmiMc5Hn9Lhqa48pA8w.ttf", "600"=> "http://fonts.gstatic.com/s/oxanium/v1/RrQVboN_4yJ0JmiMc73g9Lhqa48pA8w.ttf", "700"=> "http://fonts.gstatic.com/s/oxanium/v1/RrQVboN_4yJ0JmiMc9nh9Lhqa48pA8w.ttf", "800"=> "http://fonts.gstatic.com/s/oxanium/v1/RrQVboN_4yJ0JmiMc8Xi9Lhqa48pA8w.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 695 => [ "family"=> "Oxygen", "variants"=> [ 0=> "300", 1=> "regular", 2=> "700", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v9", "lastModified"=> "2019-07-22", "files"=> [ "300"=> "http://fonts.gstatic.com/s/oxygen/v9/2sDcZG1Wl4LcnbuCJW8Db2-4C7wFZQ.ttf", "regular"=> "http://fonts.gstatic.com/s/oxygen/v9/2sDfZG1Wl4Lcnbu6iUcnZ0SkAg.ttf", "700"=> "http://fonts.gstatic.com/s/oxygen/v9/2sDcZG1Wl4LcnbuCNWgDb2-4C7wFZQ.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 696 => [ "family"=> "Oxygen Mono", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/oxygenmono/v7/h0GsssGg9FxgDgCjLeAd7ijfze-PPlUu.ttf", ], "category"=> "monospace", "kind"=> "webfonts#webfont" ], 697 => [ "family"=> "PT Mono", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "latin", 3=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/ptmono/v7/9oRONYoBnWILk-9ArCg5MtPyAcg.ttf", ], "category"=> "monospace", "kind"=> "webfonts#webfont" ], 698 => [ "family"=> "PT Sans", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "700", 3=> "700italic", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "latin", 3=> "latin-ext", ], "version"=> "v11", "lastModified"=> "2019-07-22", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/ptsans/v11/jizaRExUiTo99u79P0WOxOGMMDQ.ttf", "italic"=> "http://fonts.gstatic.com/s/ptsans/v11/jizYRExUiTo99u79D0eEwMOJIDQA-g.ttf", "700"=> "http://fonts.gstatic.com/s/ptsans/v11/jizfRExUiTo99u79B_mh4OmnLD0Z4zM.ttf", "700italic"=> "http://fonts.gstatic.com/s/ptsans/v11/jizdRExUiTo99u79D0e8fOytKB8c8zMrig.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 699 => [ "family"=> "PT Sans Caption", "variants"=> [ 0=> "regular", 1=> "700", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "latin", 3=> "latin-ext", ], "version"=> "v12", "lastModified"=> "2019-07-17", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/ptsanscaption/v12/0FlMVP6Hrxmt7-fsUFhlFXNIlpcqfQXwQy6yxg.ttf", "700"=> "http://fonts.gstatic.com/s/ptsanscaption/v12/0FlJVP6Hrxmt7-fsUFhlFXNIlpcSwSrUSwWuz38Tgg.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 700 => [ "family"=> "PT Sans Narrow", "variants"=> [ 0=> "regular", 1=> "700", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "latin", 3=> "latin-ext", ], "version"=> "v11", "lastModified"=> "2019-07-22", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/ptsansnarrow/v11/BngRUXNadjH0qYEzV7ab-oWlsYCByxyKeuDp.ttf", "700"=> "http://fonts.gstatic.com/s/ptsansnarrow/v11/BngSUXNadjH0qYEzV7ab-oWlsbg95DiCUfzgRd-3.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 701 => [ "family"=> "PT Serif", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "700", 3=> "700italic", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "latin", 3=> "latin-ext", ], "version"=> "v11", "lastModified"=> "2019-07-22", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/ptserif/v11/EJRVQgYoZZY2vCFuvDFRxL6ddjb-.ttf", "italic"=> "http://fonts.gstatic.com/s/ptserif/v11/EJRTQgYoZZY2vCFuvAFTzrq_cyb-vco.ttf", "700"=> "http://fonts.gstatic.com/s/ptserif/v11/EJRSQgYoZZY2vCFuvAnt65qVXSr3pNNB.ttf", "700italic"=> "http://fonts.gstatic.com/s/ptserif/v11/EJRQQgYoZZY2vCFuvAFT9gaQVy7VocNB6Iw.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 702 => [ "family"=> "PT Serif Caption", "variants"=> [ 0=> "regular", 1=> "italic", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "latin", 3=> "latin-ext", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/ptserifcaption/v11/ieVl2ZhbGCW-JoW6S34pSDpqYKU059WxDCs5cvI.ttf", "italic"=> "http://fonts.gstatic.com/s/ptserifcaption/v11/ieVj2ZhbGCW-JoW6S34pSDpqYKU019e7CAk8YvJEeg.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 703 => [ "family"=> "Pacifico", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "latin", 3=> "latin-ext", 4=> "vietnamese", ], "version"=> "v16", "lastModified"=> "2019-09-17", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/pacifico/v16/FwZY7-Qmy14u9lezJ96A4sijpFu_.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 704 => [ "family"=> "Padauk", "variants"=> [ 0=> "regular", 1=> "700", ], "subsets"=> [ 0=> "latin", 1=> "myanmar", ], "version"=> "v6", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/padauk/v6/RrQRboJg-id7OnbBa0_g3LlYbg.ttf", "700"=> "http://fonts.gstatic.com/s/padauk/v6/RrQSboJg-id7Onb512DE1JJEZ4YwGg.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 705 => [ "family"=> "Palanquin", "variants"=> [ 0=> "100", 1=> "200", 2=> "300", 3=> "regular", 4=> "500", 5=> "600", 6=> "700", ], "subsets"=> [ 0=> "devanagari", 1=> "latin", 2=> "latin-ext", ], "version"=> "v5", "lastModified"=> "2019-07-16", "files"=> [ "100"=> "http://fonts.gstatic.com/s/palanquin/v5/9XUhlJ90n1fBFg7ceXwUEltI7rWmZzTH.ttf", "200"=> "http://fonts.gstatic.com/s/palanquin/v5/9XUilJ90n1fBFg7ceXwUvnpoxJuqbi3ezg.ttf", "300"=> "http://fonts.gstatic.com/s/palanquin/v5/9XUilJ90n1fBFg7ceXwU2nloxJuqbi3ezg.ttf", "regular"=> "http://fonts.gstatic.com/s/palanquin/v5/9XUnlJ90n1fBFg7ceXwsdlFMzLC2Zw.ttf", "500"=> "http://fonts.gstatic.com/s/palanquin/v5/9XUilJ90n1fBFg7ceXwUgnhoxJuqbi3ezg.ttf", "600"=> "http://fonts.gstatic.com/s/palanquin/v5/9XUilJ90n1fBFg7ceXwUrn9oxJuqbi3ezg.ttf", "700"=> "http://fonts.gstatic.com/s/palanquin/v5/9XUilJ90n1fBFg7ceXwUyn5oxJuqbi3ezg.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 706 => [ "family"=> "Palanquin Dark", "variants"=> [ 0=> "regular", 1=> "500", 2=> "600", 3=> "700", ], "subsets"=> [ 0=> "devanagari", 1=> "latin", 2=> "latin-ext", ], "version"=> "v6", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/palanquindark/v6/xn75YHgl1nqmANMB-26xC7yuF_6OTEo9VtfE.ttf", "500"=> "http://fonts.gstatic.com/s/palanquindark/v6/xn76YHgl1nqmANMB-26xC7yuF8Z6ZW41fcvN2KT4.ttf", "600"=> "http://fonts.gstatic.com/s/palanquindark/v6/xn76YHgl1nqmANMB-26xC7yuF8ZWYm41fcvN2KT4.ttf", "700"=> "http://fonts.gstatic.com/s/palanquindark/v6/xn76YHgl1nqmANMB-26xC7yuF8YyY241fcvN2KT4.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 707 => [ "family"=> "Pangolin", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "latin", 3=> "latin-ext", 4=> "vietnamese", ], "version"=> "v5", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/pangolin/v5/cY9GfjGcW0FPpi-tWPfK5d3aiLBG.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 708 => [ "family"=> "Paprika", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/paprika/v7/8QIJdijZitv49rDfuIgOq7jkAOw.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 709 => [ "family"=> "Parisienne", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/parisienne/v7/E21i_d3kivvAkxhLEVZpcy96DuKuavM.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 710 => [ "family"=> "Passero One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/passeroone/v11/JTUTjIko8DOq5FeaeEAjgE5B5Arr-s50.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 711 => [ "family"=> "Passion One", "variants"=> [ 0=> "regular", 1=> "700", 2=> "900", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/passionone/v10/PbynFmL8HhTPqbjUzux3JHuW_Frg6YoV.ttf", "700"=> "http://fonts.gstatic.com/s/passionone/v10/Pby6FmL8HhTPqbjUzux3JEMq037owpYcuH8y.ttf", "900"=> "http://fonts.gstatic.com/s/passionone/v10/Pby6FmL8HhTPqbjUzux3JEMS0X7owpYcuH8y.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 712 => [ "family"=> "Pathway Gothic One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-17", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/pathwaygothicone/v8/MwQrbgD32-KAvjkYGNUUxAtW7pEBwx-dTFxeb80flQ.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 713 => [ "family"=> "Patrick Hand", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v13", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/patrickhand/v13/LDI1apSQOAYtSuYWp8ZhfYeMWcjKm7sp8g.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 714 => [ "family"=> "Patrick Hand SC", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/patrickhandsc/v7/0nkwC9f7MfsBiWcLtY65AWDK873ViSi6JQc7Vg.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 715 => [ "family"=> "Pattaya", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "cyrillic", 1=> "latin", 2=> "latin-ext", 3=> "thai", 4=> "vietnamese", ], "version"=> "v5", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/pattaya/v5/ea8ZadcqV_zkHY-XNdCn92ZEmVs.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 716 => [ "family"=> "Patua One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-17", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/patuaone/v10/ZXuke1cDvLCKLDcimxBI5PNvNA9LuA.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 717 => [ "family"=> "Pavanam", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "tamil", ], "version"=> "v4", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/pavanam/v4/BXRrvF_aiezLh0xPDOtQ9Wf0QcE.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 718 => [ "family"=> "Paytone One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v12", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/paytoneone/v12/0nksC9P7MfYHj2oFtYm2CiTqivr9iBq_.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 719 => [ "family"=> "Peddana", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "telugu", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/peddana/v7/aFTU7PBhaX89UcKWhh2aBYyMcKw.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 720 => [ "family"=> "Peralta", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/peralta/v7/hYkJPu0-RP_9d3kRGxAhrv956B8.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 721 => [ "family"=> "Permanent Marker", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-17", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/permanentmarker/v9/Fh4uPib9Iyv2ucM6pGQMWimMp004HaqIfrT5nlk.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 722 => [ "family"=> "Petit Formal Script", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/petitformalscript/v7/B50TF6xQr2TXJBnGOFME6u5OR83oRP5qoHnqP4gZSiE.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 723 => [ "family"=> "Petrona", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/petrona/v8/mtG64_NXL7bZo9XXsXVStGsRwCU.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 724 => [ "family"=> "Philosopher", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "700", 3=> "700italic", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "latin", 3=> "vietnamese", ], "version"=> "v12", "lastModified"=> "2020-01-30", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/philosopher/v12/vEFV2_5QCwIS4_Dhez5jcVBpRUwU08qe.ttf", "italic"=> "http://fonts.gstatic.com/s/philosopher/v12/vEFX2_5QCwIS4_Dhez5jcWBrT0g21tqeR7c.ttf", "700"=> "http://fonts.gstatic.com/s/philosopher/v12/vEFI2_5QCwIS4_Dhez5jcWjVamgc-NaXXq7H.ttf", "700italic"=> "http://fonts.gstatic.com/s/philosopher/v12/vEFK2_5QCwIS4_Dhez5jcWBrd_QZ8tK1W77HtMo.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 725 => [ "family"=> "Piedra", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/piedra/v8/ke8kOg8aN0Bn7hTunEyHN_M3gA.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 726 => [ "family"=> "Pinyon Script", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2020-03-30", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/pinyonscript/v10/6xKpdSJbL9-e9LuoeQiDRQR8aOLQO4bhiDY.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 727 => [ "family"=> "Pirata One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/pirataone/v8/I_urMpiDvgLdLh0fAtoftiiEr5_BdZ8.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 728 => [ "family"=> "Plaster", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/plaster/v11/DdTm79QatW80eRh4Ei5JOtLOeLI.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 729 => [ "family"=> "Play", "variants"=> [ 0=> "regular", 1=> "700", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "greek", 3=> "latin", 4=> "latin-ext", 5=> "vietnamese", ], "version"=> "v11", "lastModified"=> "2019-07-17", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/play/v11/6aez4K2oVqwIjtI8Hp8Tx3A.ttf", "700"=> "http://fonts.gstatic.com/s/play/v11/6ae84K2oVqwItm4TOpc423nTJTM.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 730 => [ "family"=> "Playball", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/playball/v9/TK3gWksYAxQ7jbsKcj8Dl-tPKo2t.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 731 => [ "family"=> "Playfair Display", "variants"=> [ 0=> "regular", 1=> "500", 2=> "600", 3=> "700", 4=> "800", 5=> "900", 6=> "italic", 7=> "500italic", 8=> "600italic", 9=> "700italic", 10=> "800italic", 11=> "900italic", ], "subsets"=> [ 0=> "cyrillic", 1=> "latin", 2=> "latin-ext", 3=> "vietnamese", ], "version"=> "v20", "lastModified"=> "2020-02-05", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/playfairdisplay/v20/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKdFvUDQZNLo_U2r.ttf", "500"=> "http://fonts.gstatic.com/s/playfairdisplay/v20/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKd3vUDQZNLo_U2r.ttf", "600"=> "http://fonts.gstatic.com/s/playfairdisplay/v20/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKebukDQZNLo_U2r.ttf", "700"=> "http://fonts.gstatic.com/s/playfairdisplay/v20/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKeiukDQZNLo_U2r.ttf", "800"=> "http://fonts.gstatic.com/s/playfairdisplay/v20/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKfFukDQZNLo_U2r.ttf", "900"=> "http://fonts.gstatic.com/s/playfairdisplay/v20/nuFvD-vYSZviVYUb_rj3ij__anPXJzDwcbmjWBN2PKfsukDQZNLo_U2r.ttf", "italic"=> "http://fonts.gstatic.com/s/playfairdisplay/v20/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_qiTbtbK-F2rA0s.ttf", "500italic"=> "http://fonts.gstatic.com/s/playfairdisplay/v20/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_pqTbtbK-F2rA0s.ttf", "600italic"=> "http://fonts.gstatic.com/s/playfairdisplay/v20/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_naUbtbK-F2rA0s.ttf", "700italic"=> "http://fonts.gstatic.com/s/playfairdisplay/v20/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_k-UbtbK-F2rA0s.ttf", "800italic"=> "http://fonts.gstatic.com/s/playfairdisplay/v20/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_iiUbtbK-F2rA0s.ttf", "900italic"=> "http://fonts.gstatic.com/s/playfairdisplay/v20/nuFRD-vYSZviVYUb_rj3ij__anPXDTnCjmHKM4nYO7KN_gGUbtbK-F2rA0s.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 732 => [ "family"=> "Playfair Display SC", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "700", 3=> "700italic", 4=> "900", 5=> "900italic", ], "subsets"=> [ 0=> "cyrillic", 1=> "latin", 2=> "latin-ext", 3=> "vietnamese", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/playfairdisplaysc/v9/ke85OhoaMkR6-hSn7kbHVoFf7ZfgMPr_pb4GEcM2M4s.ttf", "italic"=> "http://fonts.gstatic.com/s/playfairdisplaysc/v9/ke87OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbwMFeEzI4sNKg.ttf", "700"=> "http://fonts.gstatic.com/s/playfairdisplaysc/v9/ke80OhoaMkR6-hSn7kbHVoFf7ZfgMPr_nQIpNcsdL4IUMyE.ttf", "700italic"=> "http://fonts.gstatic.com/s/playfairdisplaysc/v9/ke82OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbw0qc4XK6ARIyH5IA.ttf", "900"=> "http://fonts.gstatic.com/s/playfairdisplaysc/v9/ke80OhoaMkR6-hSn7kbHVoFf7ZfgMPr_nTorNcsdL4IUMyE.ttf", "900italic"=> "http://fonts.gstatic.com/s/playfairdisplaysc/v9/ke82OhoaMkR6-hSn7kbHVoFf7ZfgMPr_lbw0kcwXK6ARIyH5IA.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 733 => [ "family"=> "Podkova", "variants"=> [ 0=> "regular", 1=> "500", 2=> "600", 3=> "700", 4=> "800", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "latin", 3=> "latin-ext", 4=> "vietnamese", ], "version"=> "v16", "lastModified"=> "2020-02-05", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/podkova/v16/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWtFzcU4EoporSHH.ttf", "500"=> "http://fonts.gstatic.com/s/podkova/v16/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWt3zcU4EoporSHH.ttf", "600"=> "http://fonts.gstatic.com/s/podkova/v16/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWubysU4EoporSHH.ttf", "700"=> "http://fonts.gstatic.com/s/podkova/v16/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWuiysU4EoporSHH.ttf", "800"=> "http://fonts.gstatic.com/s/podkova/v16/K2FufZ1EmftJSV9VQpXb1lo9vC3nZWvFysU4EoporSHH.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 734 => [ "family"=> "Poiret One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "cyrillic", 1=> "latin", 2=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/poiretone/v8/UqyVK80NJXN4zfRgbdfbk5lWVscxdKE.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 735 => [ "family"=> "Poller One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/pollerone/v9/ahccv82n0TN3gia5E4Bud-lbgUS5u0s.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 736 => [ "family"=> "Poly", "variants"=> [ 0=> "regular", 1=> "italic", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/poly/v10/MQpb-W6wKNitRLCAq2Lpris.ttf", "italic"=> "http://fonts.gstatic.com/s/poly/v10/MQpV-W6wKNitdLKKr0DsviuGWA.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 737 => [ "family"=> "Pompiere", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/pompiere/v9/VEMyRoxis5Dwuyeov6Wt5jDtreOL.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 738 => [ "family"=> "Pontano Sans", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/pontanosans/v7/qFdD35GdgYR8EzR6oBLDHa3qwjUMg1siNQ.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 739 => [ "family"=> "Poor Story", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "korean", 1=> "latin", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/poorstory/v8/jizfREFUsnUct9P6cDfd4OmnLD0Z4zM.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 740 => [ "family"=> "Poppins", "variants"=> [ 0=> "100", 1=> "100italic", 2=> "200", 3=> "200italic", 4=> "300", 5=> "300italic", 6=> "regular", 7=> "italic", 8=> "500", 9=> "500italic", 10=> "600", 11=> "600italic", 12=> "700", 13=> "700italic", 14=> "800", 15=> "800italic", 16=> "900", 17=> "900italic", ], "subsets"=> [ 0=> "devanagari", 1=> "latin", 2=> "latin-ext", ], "version"=> "v9", "lastModified"=> "2019-10-15", "files"=> [ "100"=> "http://fonts.gstatic.com/s/poppins/v9/pxiGyp8kv8JHgFVrLPTed3FBGPaTSQ.ttf", "100italic"=> "http://fonts.gstatic.com/s/poppins/v9/pxiAyp8kv8JHgFVrJJLmE3tFOvODSVFF.ttf", "200"=> "http://fonts.gstatic.com/s/poppins/v9/pxiByp8kv8JHgFVrLFj_V1tvFP-KUEg.ttf", "200italic"=> "http://fonts.gstatic.com/s/poppins/v9/pxiDyp8kv8JHgFVrJJLmv1plEN2PQEhcqw.ttf", "300"=> "http://fonts.gstatic.com/s/poppins/v9/pxiByp8kv8JHgFVrLDz8V1tvFP-KUEg.ttf", "300italic"=> "http://fonts.gstatic.com/s/poppins/v9/pxiDyp8kv8JHgFVrJJLm21llEN2PQEhcqw.ttf", "regular"=> "http://fonts.gstatic.com/s/poppins/v9/pxiEyp8kv8JHgFVrFJDUc1NECPY.ttf", "italic"=> "http://fonts.gstatic.com/s/poppins/v9/pxiGyp8kv8JHgFVrJJLed3FBGPaTSQ.ttf", "500"=> "http://fonts.gstatic.com/s/poppins/v9/pxiByp8kv8JHgFVrLGT9V1tvFP-KUEg.ttf", "500italic"=> "http://fonts.gstatic.com/s/poppins/v9/pxiDyp8kv8JHgFVrJJLmg1hlEN2PQEhcqw.ttf", "600"=> "http://fonts.gstatic.com/s/poppins/v9/pxiByp8kv8JHgFVrLEj6V1tvFP-KUEg.ttf", "600italic"=> "http://fonts.gstatic.com/s/poppins/v9/pxiDyp8kv8JHgFVrJJLmr19lEN2PQEhcqw.ttf", "700"=> "http://fonts.gstatic.com/s/poppins/v9/pxiByp8kv8JHgFVrLCz7V1tvFP-KUEg.ttf", "700italic"=> "http://fonts.gstatic.com/s/poppins/v9/pxiDyp8kv8JHgFVrJJLmy15lEN2PQEhcqw.ttf", "800"=> "http://fonts.gstatic.com/s/poppins/v9/pxiByp8kv8JHgFVrLDD4V1tvFP-KUEg.ttf", "800italic"=> "http://fonts.gstatic.com/s/poppins/v9/pxiDyp8kv8JHgFVrJJLm111lEN2PQEhcqw.ttf", "900"=> "http://fonts.gstatic.com/s/poppins/v9/pxiByp8kv8JHgFVrLBT5V1tvFP-KUEg.ttf", "900italic"=> "http://fonts.gstatic.com/s/poppins/v9/pxiDyp8kv8JHgFVrJJLm81xlEN2PQEhcqw.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 741 => [ "family"=> "Port Lligat Sans", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/portlligatsans/v8/kmKmZrYrGBbdN1aV7Vokow6Lw4s4l7N0Tx4xEcQ.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 742 => [ "family"=> "Port Lligat Slab", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/portlligatslab/v8/LDIpaoiQNgArA8kR7ulhZ8P_NYOss7ob9yGLmfI.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 743 => [ "family"=> "Pragati Narrow", "variants"=> [ 0=> "regular", 1=> "700", ], "subsets"=> [ 0=> "devanagari", 1=> "latin", 2=> "latin-ext", ], "version"=> "v5", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/pragatinarrow/v5/vm8vdRf0T0bS1ffgsPB7WZ-mD17_ytN3M48a.ttf", "700"=> "http://fonts.gstatic.com/s/pragatinarrow/v5/vm8sdRf0T0bS1ffgsPB7WZ-mD2ZD5fd_GJMTlo_4.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 744 => [ "family"=> "Prata", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "latin", 3=> "vietnamese", ], "version"=> "v11", "lastModified"=> "2020-01-30", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/prata/v11/6xKhdSpbNNCT-vWIAG_5LWwJ.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 745 => [ "family"=> "Preahvihear", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "khmer", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/preahvihear/v11/6NUS8F-dNQeEYhzj7uluxswE49FJf8Wv.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 746 => [ "family"=> "Press Start 2P", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "greek", 3=> "latin", 4=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/pressstart2p/v8/e3t4euO8T-267oIAQAu6jDQyK0nSgPJE4580.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 747 => [ "family"=> "Pridi", "variants"=> [ 0=> "200", 1=> "300", 2=> "regular", 3=> "500", 4=> "600", 5=> "700", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "thai", 3=> "vietnamese", ], "version"=> "v5", "lastModified"=> "2019-07-16", "files"=> [ "200"=> "http://fonts.gstatic.com/s/pridi/v5/2sDdZG5JnZLfkc1SiE0jRUG0AqUc.ttf", "300"=> "http://fonts.gstatic.com/s/pridi/v5/2sDdZG5JnZLfkc02i00jRUG0AqUc.ttf", "regular"=> "http://fonts.gstatic.com/s/pridi/v5/2sDQZG5JnZLfkfWao2krbl29.ttf", "500"=> "http://fonts.gstatic.com/s/pridi/v5/2sDdZG5JnZLfkc1uik0jRUG0AqUc.ttf", "600"=> "http://fonts.gstatic.com/s/pridi/v5/2sDdZG5JnZLfkc1CjU0jRUG0AqUc.ttf", "700"=> "http://fonts.gstatic.com/s/pridi/v5/2sDdZG5JnZLfkc0mjE0jRUG0AqUc.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 748 => [ "family"=> "Princess Sofia", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/princesssofia/v8/qWczB6yguIb8DZ_GXZst16n7GRz7mDUoupoI.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 749 => [ "family"=> "Prociono", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/prociono/v9/r05YGLlR-KxAf9GGO8upyDYtStiJ.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 750 => [ "family"=> "Prompt", "variants"=> [ 0=> "100", 1=> "100italic", 2=> "200", 3=> "200italic", 4=> "300", 5=> "300italic", 6=> "regular", 7=> "italic", 8=> "500", 9=> "500italic", 10=> "600", 11=> "600italic", 12=> "700", 13=> "700italic", 14=> "800", 15=> "800italic", 16=> "900", 17=> "900italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "thai", 3=> "vietnamese", ], "version"=> "v4", "lastModified"=> "2019-07-17", "files"=> [ "100"=> "http://fonts.gstatic.com/s/prompt/v4/-W_9XJnvUD7dzB2CA9oYREcjeo0k.ttf", "100italic"=> "http://fonts.gstatic.com/s/prompt/v4/-W_7XJnvUD7dzB2KZeJ8TkMBf50kbiM.ttf", "200"=> "http://fonts.gstatic.com/s/prompt/v4/-W_8XJnvUD7dzB2Cr_s4bmkvc5Q9dw.ttf", "200italic"=> "http://fonts.gstatic.com/s/prompt/v4/-W_6XJnvUD7dzB2KZeLQb2MrUZEtdzow.ttf", "300"=> "http://fonts.gstatic.com/s/prompt/v4/-W_8XJnvUD7dzB2Cy_g4bmkvc5Q9dw.ttf", "300italic"=> "http://fonts.gstatic.com/s/prompt/v4/-W_6XJnvUD7dzB2KZeK0bGMrUZEtdzow.ttf", "regular"=> "http://fonts.gstatic.com/s/prompt/v4/-W__XJnvUD7dzB26Z9AcZkIzeg.ttf", "italic"=> "http://fonts.gstatic.com/s/prompt/v4/-W_9XJnvUD7dzB2KZdoYREcjeo0k.ttf", "500"=> "http://fonts.gstatic.com/s/prompt/v4/-W_8XJnvUD7dzB2Ck_k4bmkvc5Q9dw.ttf", "500italic"=> "http://fonts.gstatic.com/s/prompt/v4/-W_6XJnvUD7dzB2KZeLsbWMrUZEtdzow.ttf", "600"=> "http://fonts.gstatic.com/s/prompt/v4/-W_8XJnvUD7dzB2Cv_44bmkvc5Q9dw.ttf", "600italic"=> "http://fonts.gstatic.com/s/prompt/v4/-W_6XJnvUD7dzB2KZeLAamMrUZEtdzow.ttf", "700"=> "http://fonts.gstatic.com/s/prompt/v4/-W_8XJnvUD7dzB2C2_84bmkvc5Q9dw.ttf", "700italic"=> "http://fonts.gstatic.com/s/prompt/v4/-W_6XJnvUD7dzB2KZeKka2MrUZEtdzow.ttf", "800"=> "http://fonts.gstatic.com/s/prompt/v4/-W_8XJnvUD7dzB2Cx_w4bmkvc5Q9dw.ttf", "800italic"=> "http://fonts.gstatic.com/s/prompt/v4/-W_6XJnvUD7dzB2KZeK4aGMrUZEtdzow.ttf", "900"=> "http://fonts.gstatic.com/s/prompt/v4/-W_8XJnvUD7dzB2C4_04bmkvc5Q9dw.ttf", "900italic"=> "http://fonts.gstatic.com/s/prompt/v4/-W_6XJnvUD7dzB2KZeKcaWMrUZEtdzow.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 751 => [ "family"=> "Prosto One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "cyrillic", 1=> "latin", 2=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/prostoone/v8/OpNJno4VhNfK-RgpwWWxpipfWhXD00c.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 752 => [ "family"=> "Proza Libre", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "500", 3=> "500italic", 4=> "600", 5=> "600italic", 6=> "700", 7=> "700italic", 8=> "800", 9=> "800italic" ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v4", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/prozalibre/v4/LYjGdGHgj0k1DIQRyUEyyHovftvXWYyz.ttf", "italic"=> "http://fonts.gstatic.com/s/prozalibre/v4/LYjEdGHgj0k1DIQRyUEyyEotdN_1XJyz7zc.ttf", "500"=> "http://fonts.gstatic.com/s/prozalibre/v4/LYjbdGHgj0k1DIQRyUEyyELbV__fcpC69i6N.ttf", "500italic"=> "http://fonts.gstatic.com/s/prozalibre/v4/LYjZdGHgj0k1DIQRyUEyyEotTCvceJSY8z6Np1k.ttf", "600"=> "http://fonts.gstatic.com/s/prozalibre/v4/LYjbdGHgj0k1DIQRyUEyyEL3UP_fcpC69i6N.ttf", "600italic"=> "http://fonts.gstatic.com/s/prozalibre/v4/LYjZdGHgj0k1DIQRyUEyyEotTAfbeJSY8z6Np1k.ttf", "700"=> "http://fonts.gstatic.com/s/prozalibre/v4/LYjbdGHgj0k1DIQRyUEyyEKTUf_fcpC69i6N.ttf", "700italic"=> "http://fonts.gstatic.com/s/prozalibre/v4/LYjZdGHgj0k1DIQRyUEyyEotTGPaeJSY8z6Np1k.ttf", "800"=> "http://fonts.gstatic.com/s/prozalibre/v4/LYjbdGHgj0k1DIQRyUEyyEKPUv_fcpC69i6N.ttf", "800italic"=> "http://fonts.gstatic.com/s/prozalibre/v4/LYjZdGHgj0k1DIQRyUEyyEotTH_ZeJSY8z6Np1k.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 753 => [ "family"=> "Public Sans", "variants"=> [ 0=> "100", 1=> "200", 2=> "300", 3=> "regular", 4=> "500", 5=> "600", 6=> "700", 7=> "800", 8=> "900", 9=> "100italic", 10=> "200italic", 11=> "300italic", 12=> "italic", 13=> "500italic", 14=> "600italic", 15=> "700italic", 16=> "800italic", 17=> "900italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v3", "lastModified"=> "2020-04-21", "files"=> [ "100"=> "http://fonts.gstatic.com/s/publicsans/v3/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuFpi5ww0pX189fg.ttf", "200"=> "http://fonts.gstatic.com/s/publicsans/v3/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymulpm5ww0pX189fg.ttf", "300"=> "http://fonts.gstatic.com/s/publicsans/v3/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuSJm5ww0pX189fg.ttf", "regular"=> "http://fonts.gstatic.com/s/publicsans/v3/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuFpm5ww0pX189fg.ttf", "500"=> "http://fonts.gstatic.com/s/publicsans/v3/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuJJm5ww0pX189fg.ttf", "600"=> "http://fonts.gstatic.com/s/publicsans/v3/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuyJ65ww0pX189fg.ttf", "700"=> "http://fonts.gstatic.com/s/publicsans/v3/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymu8Z65ww0pX189fg.ttf", "800"=> "http://fonts.gstatic.com/s/publicsans/v3/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymulp65ww0pX189fg.ttf", "900"=> "http://fonts.gstatic.com/s/publicsans/v3/ijwGs572Xtc6ZYQws9YVwllKVG8qX1oyOymuv565ww0pX189fg.ttf", "100italic"=> "http://fonts.gstatic.com/s/publicsans/v3/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tpRgQctfVotfj7j.ttf", "200italic"=> "http://fonts.gstatic.com/s/publicsans/v3/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673trRgActfVotfj7j.ttf", "300italic"=> "http://fonts.gstatic.com/s/publicsans/v3/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673toPgActfVotfj7j.ttf", "italic"=> "http://fonts.gstatic.com/s/publicsans/v3/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tpRgActfVotfj7j.ttf", "500italic"=> "http://fonts.gstatic.com/s/publicsans/v3/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tpjgActfVotfj7j.ttf", "600italic"=> "http://fonts.gstatic.com/s/publicsans/v3/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tqPhwctfVotfj7j.ttf", "700italic"=> "http://fonts.gstatic.com/s/publicsans/v3/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tq2hwctfVotfj7j.ttf", "800italic"=> "http://fonts.gstatic.com/s/publicsans/v3/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673trRhwctfVotfj7j.ttf", "900italic"=> "http://fonts.gstatic.com/s/publicsans/v3/ijwAs572Xtc6ZYQws9YVwnNDZpDyNjGolS673tr4hwctfVotfj7j.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 754 => [ "family"=> "Puritan", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "700", 3=> "700italic", ], "subsets"=> [ 0=> "latin", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/puritan/v11/845YNMgkAJ2VTtIo9JrwRdaI50M.ttf", "italic"=> "http://fonts.gstatic.com/s/puritan/v11/845aNMgkAJ2VTtIoxJj6QfSN90PfXA.ttf", "700"=> "http://fonts.gstatic.com/s/puritan/v11/845dNMgkAJ2VTtIozCbfYd6j-0rGRes.ttf", "700italic"=> "http://fonts.gstatic.com/s/puritan/v11/845fNMgkAJ2VTtIoxJjC_dup_2jDVevnLQ.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 755 => [ "family"=> "Purple Purse", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/purplepurse/v8/qWctB66gv53iAp-Vfs4My6qyeBb_ujA4ug.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 756 => [ "family"=> "Quando", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/quando/v8/xMQVuFNaVa6YuW0pC6WzKX_QmA.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 757 => [ "family"=> "Quantico", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "700", 3=> "700italic", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/quantico/v9/rax-HiSdp9cPL3KIF4xsLjxSmlLZ.ttf", "italic"=> "http://fonts.gstatic.com/s/quantico/v9/rax4HiSdp9cPL3KIF7xuJDhwn0LZ6T8.ttf", "700"=> "http://fonts.gstatic.com/s/quantico/v9/rax5HiSdp9cPL3KIF7TQARhasU7Q8Cad.ttf", "700italic"=> "http://fonts.gstatic.com/s/quantico/v9/rax7HiSdp9cPL3KIF7xuHIRfu0ry9TadML4.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 758 => [ "family"=> "Quattrocento", "variants"=> [ 0=> "regular", 1=> "700", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/quattrocento/v11/OZpEg_xvsDZQL_LKIF7q4jPHxGL7f4jFuA.ttf", "700"=> "http://fonts.gstatic.com/s/quattrocento/v11/OZpbg_xvsDZQL_LKIF7q4jP_eE3fd6PZsXcM9w.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 759 => [ "family"=> "Quattrocento Sans", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "700", 3=> "700italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v12", "lastModified"=> "2019-07-17", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/quattrocentosans/v12/va9c4lja2NVIDdIAAoMR5MfuElaRB3zOvU7eHGHJ.ttf", "italic"=> "http://fonts.gstatic.com/s/quattrocentosans/v12/va9a4lja2NVIDdIAAoMR5MfuElaRB0zMt0r8GXHJkLI.ttf", "700"=> "http://fonts.gstatic.com/s/quattrocentosans/v12/va9Z4lja2NVIDdIAAoMR5MfuElaRB0RykmrWN33AiasJ.ttf", "700italic"=> "http://fonts.gstatic.com/s/quattrocentosans/v12/va9X4lja2NVIDdIAAoMR5MfuElaRB0zMj_bTPXnijLsJV7E.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 760 => [ "family"=> "Questrial", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-17", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/questrial/v9/QdVUSTchPBm7nuUeVf7EuStkm20oJA.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 761 => [ "family"=> "Quicksand", "variants"=> [ 0=> "300", 1=> "regular", 2=> "500", 3=> "600", 4=> "700", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v20", "lastModified"=> "2020-02-05", "files"=> [ "300"=> "http://fonts.gstatic.com/s/quicksand/v20/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkKEo18G0wx40QDw.ttf", "regular"=> "http://fonts.gstatic.com/s/quicksand/v20/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkP8o18G0wx40QDw.ttf", "500"=> "http://fonts.gstatic.com/s/quicksand/v20/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkM0o18G0wx40QDw.ttf", "600"=> "http://fonts.gstatic.com/s/quicksand/v20/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkCEv18G0wx40QDw.ttf", "700"=> "http://fonts.gstatic.com/s/quicksand/v20/6xK-dSZaM9iE8KbpRA_LJ3z8mH9BOJvgkBgv18G0wx40QDw.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 762 => [ "family"=> "Quintessential", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/quintessential/v7/fdNn9sOGq31Yjnh3qWU14DdtjY5wS7kmAyxM.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 763 => [ "family"=> "Qwigley", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/qwigley/v9/1cXzaU3UGJb5tGoCuVxsi1mBmcE.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 764 => [ "family"=> "Racing Sans One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/racingsansone/v7/sykr-yRtm7EvTrXNxkv5jfKKyDCwL3rmWpIBtA.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 765 => [ "family"=> "Radley", "variants"=> [ 0=> "regular", 1=> "italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v14", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/radley/v14/LYjDdGzinEIjCN19oAlEpVs3VQ.ttf", "italic"=> "http://fonts.gstatic.com/s/radley/v14/LYjBdGzinEIjCN1NogNAh14nVcfe.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 766 => [ "family"=> "Rajdhani", "variants"=> [ 0=> "300", 1=> "regular", 2=> "500", 3=> "600", 4=> "700", ], "subsets"=> [ 0=> "devanagari", 1=> "latin", 2=> "latin-ext", ], "version"=> "v9", "lastModified"=> "2019-07-17", "files"=> [ "300"=> "http://fonts.gstatic.com/s/rajdhani/v9/LDI2apCSOBg7S-QT7pasEcOsc-bGkqIw.ttf", "regular"=> "http://fonts.gstatic.com/s/rajdhani/v9/LDIxapCSOBg7S-QT7q4AOeekWPrP.ttf", "500"=> "http://fonts.gstatic.com/s/rajdhani/v9/LDI2apCSOBg7S-QT7pb0EMOsc-bGkqIw.ttf", "600"=> "http://fonts.gstatic.com/s/rajdhani/v9/LDI2apCSOBg7S-QT7pbYF8Osc-bGkqIw.ttf", "700"=> "http://fonts.gstatic.com/s/rajdhani/v9/LDI2apCSOBg7S-QT7pa8FsOsc-bGkqIw.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 767 => [ "family"=> "Rakkas", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "arabic", 1=> "latin", 2=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/rakkas/v7/Qw3cZQlNHiblL3j_lttPOeMcCw.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 768 => [ "family"=> "Raleway", "variants"=> [ 0=> "100", 1=> "200", 2=> "300", 3=> "regular", 4=> "500", 5=> "600", 6=> "700", 7=> "800", 8=> "900", 9=> "100italic", 10=> "200italic", 11=> "300italic", 12=> "italic", 13=> "500italic", 14=> "600italic", 15=> "700italic", 16=> "800italic", 17=> "900italic", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "latin", 3=> "latin-ext", 4=> "vietnamese", ], "version"=> "v15", "lastModified"=> "2020-06-18", "files"=> [ "100"=> "http://fonts.gstatic.com/s/raleway/v15/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvao4CPNLA3JC9c.ttf", "200"=> "http://fonts.gstatic.com/s/raleway/v15/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVtaooCPNLA3JC9c.ttf", "300"=> "http://fonts.gstatic.com/s/raleway/v15/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVuEooCPNLA3JC9c.ttf", "regular"=> "http://fonts.gstatic.com/s/raleway/v15/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvaooCPNLA3JC9c.ttf", "500"=> "http://fonts.gstatic.com/s/raleway/v15/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVvoooCPNLA3JC9c.ttf", "600"=> "http://fonts.gstatic.com/s/raleway/v15/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVsEpYCPNLA3JC9c.ttf", "700"=> "http://fonts.gstatic.com/s/raleway/v15/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVs9pYCPNLA3JC9c.ttf", "800"=> "http://fonts.gstatic.com/s/raleway/v15/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVtapYCPNLA3JC9c.ttf", "900"=> "http://fonts.gstatic.com/s/raleway/v15/1Ptxg8zYS_SKggPN4iEgvnHyvveLxVtzpYCPNLA3JC9c.ttf", "100italic"=> "http://fonts.gstatic.com/s/raleway/v15/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4WjNPrQVIT9c2c8.ttf", "200italic"=> "http://fonts.gstatic.com/s/raleway/v15/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4ejMPrQVIT9c2c8.ttf", "300italic"=> "http://fonts.gstatic.com/s/raleway/v15/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4TbMPrQVIT9c2c8.ttf", "italic"=> "http://fonts.gstatic.com/s/raleway/v15/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4WjMPrQVIT9c2c8.ttf", "500italic"=> "http://fonts.gstatic.com/s/raleway/v15/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4VrMPrQVIT9c2c8.ttf", "600italic"=> "http://fonts.gstatic.com/s/raleway/v15/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4bbLPrQVIT9c2c8.ttf", "700italic"=> "http://fonts.gstatic.com/s/raleway/v15/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4Y_LPrQVIT9c2c8.ttf", "800italic"=> "http://fonts.gstatic.com/s/raleway/v15/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4ejLPrQVIT9c2c8.ttf", "900italic"=> "http://fonts.gstatic.com/s/raleway/v15/1Pt_g8zYS_SKggPNyCgSQamb1W0lwk4S4cHLPrQVIT9c2c8.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 769 => [ "family"=> "Raleway Dots", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/ralewaydots/v7/6NUR8FifJg6AfQvzpshgwJ8kyf9Fdty2ew.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 770 => [ "family"=> "Ramabhadra", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "telugu", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/ramabhadra/v9/EYq2maBOwqRW9P1SQ83LehNGX5uWw3o.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 771 => [ "family"=> "Ramaraja", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "telugu", ], "version"=> "v4", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/ramaraja/v4/SlGTmQearpYAYG1CABIkqnB6aSQU.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 772 => [ "family"=> "Rambla", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "700", 3=> "700italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/rambla/v7/snfrs0ip98hx6mr0I7IONthkwQ.ttf", "italic"=> "http://fonts.gstatic.com/s/rambla/v7/snfps0ip98hx6mrEIbgKFN10wYKa.ttf", "700"=> "http://fonts.gstatic.com/s/rambla/v7/snfos0ip98hx6mrMn50qPvN4yJuDYQ.ttf", "700italic"=> "http://fonts.gstatic.com/s/rambla/v7/snfus0ip98hx6mrEIYC2O_l86p6TYS-Y.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 773 => [ "family"=> "Rammetto One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/rammettoone/v8/LhWiMV3HOfMbMetJG3lQDpp9Mvuciu-_SQ.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 774 => [ "family"=> "Ranchers", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/ranchers/v7/zrfm0H3Lx-P2Xvs2AoDYDC79XTHv.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 775 => [ "family"=> "Rancho", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/rancho/v10/46kulbzmXjLaqZRlbWXgd0RY1g.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 776 => [ "family"=> "Ranga", "variants"=> [ 0=> "regular", 1=> "700", ], "subsets"=> [ 0=> "devanagari", 1=> "latin", 2=> "latin-ext", ], "version"=> "v5", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/ranga/v5/C8ct4cYisGb28p6CLDwZwmGE.ttf", "700"=> "http://fonts.gstatic.com/s/ranga/v5/C8cg4cYisGb28qY-AxgR6X2NZAn2.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 777 => [ "family"=> "Rasa", "variants"=> [ 0=> "300", 1=> "regular", 2=> "500", 3=> "600", 4=> "700", ], "subsets"=> [ 0=> "gujarati", 1=> "latin", 2=> "latin-ext", ], "version"=> "v5", "lastModified"=> "2019-07-16", "files"=> [ "300"=> "http://fonts.gstatic.com/s/rasa/v5/xn7gYHIn1mWmdg52sgC7S9XdZN8.ttf", "regular"=> "http://fonts.gstatic.com/s/rasa/v5/xn7vYHIn1mWmTqJelgiQV9w.ttf", "500"=> "http://fonts.gstatic.com/s/rasa/v5/xn7gYHIn1mWmdlZ3sgC7S9XdZN8.ttf", "600"=> "http://fonts.gstatic.com/s/rasa/v5/xn7gYHIn1mWmdnpwsgC7S9XdZN8.ttf", "700"=> "http://fonts.gstatic.com/s/rasa/v5/xn7gYHIn1mWmdh5xsgC7S9XdZN8.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 778 => [ "family"=> "Rationale", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/rationale/v11/9XUnlJ92n0_JFxHIfHcsdlFMzLC2Zw.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 779 => [ "family"=> "Ravi Prakash", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "telugu", ], "version"=> "v6", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/raviprakash/v6/gokpH6fsDkVrF9Bv9X8SOAKHmNZEq6TTFw.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 780 => [ "family"=> "Red Hat Display", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "500", 3=> "500italic", 4=> "700", 5=> "700italic", 6=> "900", 7=> "900italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v3", "lastModified"=> "2019-11-05", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/redhatdisplay/v3/8vIQ7wUr0m80wwYf0QCXZzYzUoTQ-jSgZYvdCQ.ttf", "italic"=> "http://fonts.gstatic.com/s/redhatdisplay/v3/8vIS7wUr0m80wwYf0QCXZzYzUoTg-D6kR47NCV5Z.ttf", "500"=> "http://fonts.gstatic.com/s/redhatdisplay/v3/8vIV7wUr0m80wwYf0QCXZzYzUoToDh2EbaDBAEdAbw.ttf", "500italic"=> "http://fonts.gstatic.com/s/redhatdisplay/v3/8vIX7wUr0m80wwYf0QCXZzYzUoTg-AZQbqrFIkJQb7zU.ttf", "700"=> "http://fonts.gstatic.com/s/redhatdisplay/v3/8vIV7wUr0m80wwYf0QCXZzYzUoToRhuEbaDBAEdAbw.ttf", "700italic"=> "http://fonts.gstatic.com/s/redhatdisplay/v3/8vIX7wUr0m80wwYf0QCXZzYzUoTg-AYYaKrFIkJQb7zU.ttf", "900"=> "http://fonts.gstatic.com/s/redhatdisplay/v3/8vIV7wUr0m80wwYf0QCXZzYzUoTofhmEbaDBAEdAbw.ttf", "900italic"=> "http://fonts.gstatic.com/s/redhatdisplay/v3/8vIX7wUr0m80wwYf0QCXZzYzUoTg-AYgaqrFIkJQb7zU.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 781 => [ "family"=> "Red Hat Text", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "500", 3=> "500italic", 4=> "700", 5=> "700italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v2", "lastModified"=> "2019-11-05", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/redhattext/v2/RrQXbohi_ic6B3yVSzGBrMxgb60sE8yZPA.ttf", "italic"=> "http://fonts.gstatic.com/s/redhattext/v2/RrQJbohi_ic6B3yVSzGBrMxQbacoMcmJPECN.ttf", "500"=> "http://fonts.gstatic.com/s/redhattext/v2/RrQIbohi_ic6B3yVSzGBrMxYm4QIG-eFNVmULg.ttf", "500italic"=> "http://fonts.gstatic.com/s/redhattext/v2/RrQKbohi_ic6B3yVSzGBrMxQbZ_cGO2BF1yELmgy.ttf", "700"=> "http://fonts.gstatic.com/s/redhattext/v2/RrQIbohi_ic6B3yVSzGBrMxY04IIG-eFNVmULg.ttf", "700italic"=> "http://fonts.gstatic.com/s/redhattext/v2/RrQKbohi_ic6B3yVSzGBrMxQbZ-UHu2BF1yELmgy.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 782 => [ "family"=> "Redressed", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/redressed/v10/x3dickHUbrmJ7wMy9MsBfPACvy_1BA.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 783 => [ "family"=> "Reem Kufi", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "arabic", 1=> "latin", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/reemkufi/v7/2sDcZGJLip7W2J7v7wQDb2-4C7wFZQ.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 784 => [ "family"=> "Reenie Beanie", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/reeniebeanie/v10/z7NSdR76eDkaJKZJFkkjuvWxbP2_qoOgf_w.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 785 => [ "family"=> "Revalia", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/revalia/v7/WwkexPimBE2-4ZPEeVruNIgJSNM.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 786 => [ "family"=> "Rhodium Libre", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "devanagari", 1=> "latin", 2=> "latin-ext", ], "version"=> "v4", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/rhodiumlibre/v4/1q2AY5adA0tn_ukeHcQHqpx6pETLeo2gm2U.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 787 => [ "family"=> "Ribeye", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/ribeye/v8/L0x8DFMxk1MP9R3RvPCmRSlUig.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 788 => [ "family"=> "Ribeye Marrow", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/ribeyemarrow/v9/GFDsWApshnqMRO2JdtRZ2d0vEAwTVWgKdtw.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 789 => [ "family"=> "Righteous", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-17", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/righteous/v8/1cXxaUPXBpj2rGoU7C9mj3uEicG01A.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 790 => [ "family"=> "Risque", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/risque/v7/VdGfAZUfHosahXxoCUYVBJ-T5g.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 791 => [ "family"=> "Roboto", "variants"=> [ 0=> "100", 1=> "100italic", 2=> "300", 3=> "300italic", 4=> "regular", 5=> "italic", 6=> "500", 7=> "500italic", 8=> "700", 9=> "700italic", 10=> "900", 11=> "900italic", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "greek", 3=> "greek-ext", 4=> "latin", 5=> "latin-ext", 6=> "vietnamese", ], "version"=> "v20", "lastModified"=> "2019-07-24", "files"=> [ "100"=> "http://fonts.gstatic.com/s/roboto/v20/KFOkCnqEu92Fr1MmgWxPKTM1K9nz.ttf", "100italic"=> "http://fonts.gstatic.com/s/roboto/v20/KFOiCnqEu92Fr1Mu51QrIzcXLsnzjYk.ttf", "300"=> "http://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmSU5vAx05IsDqlA.ttf", "300italic"=> "http://fonts.gstatic.com/s/roboto/v20/KFOjCnqEu92Fr1Mu51TjARc9AMX6lJBP.ttf", "regular"=> "http://fonts.gstatic.com/s/roboto/v20/KFOmCnqEu92Fr1Me5WZLCzYlKw.ttf", "italic"=> "http://fonts.gstatic.com/s/roboto/v20/KFOkCnqEu92Fr1Mu52xPKTM1K9nz.ttf", "500"=> "http://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmEU9vAx05IsDqlA.ttf", "500italic"=> "http://fonts.gstatic.com/s/roboto/v20/KFOjCnqEu92Fr1Mu51S7ABc9AMX6lJBP.ttf", "700"=> "http://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmWUlvAx05IsDqlA.ttf", "700italic"=> "http://fonts.gstatic.com/s/roboto/v20/KFOjCnqEu92Fr1Mu51TzBhc9AMX6lJBP.ttf", "900"=> "http://fonts.gstatic.com/s/roboto/v20/KFOlCnqEu92Fr1MmYUtvAx05IsDqlA.ttf", "900italic"=> "http://fonts.gstatic.com/s/roboto/v20/KFOjCnqEu92Fr1Mu51TLBBc9AMX6lJBP.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 792 => [ "family"=> "Roboto Condensed", "variants"=> [ 0=> "300", 1=> "300italic", 2=> "regular", 3=> "italic", 4=> "700", 5=> "700italic", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "greek", 3=> "greek-ext", 4=> "latin", 5=> "latin-ext", 6=> "vietnamese", ], "version"=> "v18", "lastModified"=> "2019-07-23", "files"=> [ "300"=> "http://fonts.gstatic.com/s/robotocondensed/v18/ieVi2ZhZI2eCN5jzbjEETS9weq8-33mZKCMSbvtdYyQ.ttf", "300italic"=> "http://fonts.gstatic.com/s/robotocondensed/v18/ieVg2ZhZI2eCN5jzbjEETS9weq8-19eDpCEYatlYcyRi4A.ttf", "regular"=> "http://fonts.gstatic.com/s/robotocondensed/v18/ieVl2ZhZI2eCN5jzbjEETS9weq8-59WxDCs5cvI.ttf", "italic"=> "http://fonts.gstatic.com/s/robotocondensed/v18/ieVj2ZhZI2eCN5jzbjEETS9weq8-19e7CAk8YvJEeg.ttf", "700"=> "http://fonts.gstatic.com/s/robotocondensed/v18/ieVi2ZhZI2eCN5jzbjEETS9weq8-32meKCMSbvtdYyQ.ttf", "700italic"=> "http://fonts.gstatic.com/s/robotocondensed/v18/ieVg2ZhZI2eCN5jzbjEETS9weq8-19eDtCYYatlYcyRi4A.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 793 => [ "family"=> "Roboto Mono", "variants"=> [ 0=> "100", 1=> "200", 2=> "300", 3=> "regular", 4=> "500", 5=> "600", 6=> "700", 7=> "100italic", 8=> "200italic", 9=> "300italic", 10=> "italic", 11=> "500italic", 12=> "600italic", 13=> "700italic", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "greek", 3=> "latin", 4=> "latin-ext", 5=> "vietnamese", ], "version"=> "v8", "lastModified"=> "2020-06-19", "files"=> [ "100"=> "http://fonts.gstatic.com/s/robotomono/v8/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vuPQ--5Ip2sSQ.ttf", "200"=> "http://fonts.gstatic.com/s/robotomono/v8/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_XvqPQ--5Ip2sSQ.ttf", "300"=> "http://fonts.gstatic.com/s/robotomono/v8/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_gPqPQ--5Ip2sSQ.ttf", "regular"=> "http://fonts.gstatic.com/s/robotomono/v8/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_3vqPQ--5Ip2sSQ.ttf", "500"=> "http://fonts.gstatic.com/s/robotomono/v8/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_7PqPQ--5Ip2sSQ.ttf", "600"=> "http://fonts.gstatic.com/s/robotomono/v8/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_AP2PQ--5Ip2sSQ.ttf", "700"=> "http://fonts.gstatic.com/s/robotomono/v8/L0xuDF4xlVMF-BfR8bXMIhJHg45mwgGEFl0_Of2PQ--5Ip2sSQ.ttf", "100italic"=> "http://fonts.gstatic.com/s/robotomono/v8/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAeW9AJi8SZwt.ttf", "200italic"=> "http://fonts.gstatic.com/s/robotomono/v8/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrnnAOW9AJi8SZwt.ttf", "300italic"=> "http://fonts.gstatic.com/s/robotomono/v8/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrk5AOW9AJi8SZwt.ttf", "italic"=> "http://fonts.gstatic.com/s/robotomono/v8/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlnAOW9AJi8SZwt.ttf", "500italic"=> "http://fonts.gstatic.com/s/robotomono/v8/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrlVAOW9AJi8SZwt.ttf", "600italic"=> "http://fonts.gstatic.com/s/robotomono/v8/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrm5B-W9AJi8SZwt.ttf", "700italic"=> "http://fonts.gstatic.com/s/robotomono/v8/L0xoDF4xlVMF-BfR8bXMIjhOsXG-q2oeuFoqFrmAB-W9AJi8SZwt.ttf", ], "category"=> "monospace", "kind"=> "webfonts#webfont" ], 794 => [ "family"=> "Roboto Slab", "variants"=> [ 0=> "100", 1=> "200", 2=> "300", 3=> "regular", 4=> "500", 5=> "600", 6=> "700", 7=> "800", 8=> "900", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "greek", 3=> "greek-ext", 4=> "latin", 5=> "latin-ext", 6=> "vietnamese", ], "version"=> "v11", "lastModified"=> "2020-02-05", "files"=> [ "100"=> "http://fonts.gstatic.com/s/robotoslab/v11/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjojIWWaG5iddG-1A.ttf", "200"=> "http://fonts.gstatic.com/s/robotoslab/v11/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoDISWaG5iddG-1A.ttf", "300"=> "http://fonts.gstatic.com/s/robotoslab/v11/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjo0oSWaG5iddG-1A.ttf", "regular"=> "http://fonts.gstatic.com/s/robotoslab/v11/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjojISWaG5iddG-1A.ttf", "500"=> "http://fonts.gstatic.com/s/robotoslab/v11/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjovoSWaG5iddG-1A.ttf", "600"=> "http://fonts.gstatic.com/s/robotoslab/v11/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoUoOWaG5iddG-1A.ttf", "700"=> "http://fonts.gstatic.com/s/robotoslab/v11/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoa4OWaG5iddG-1A.ttf", "800"=> "http://fonts.gstatic.com/s/robotoslab/v11/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoDIOWaG5iddG-1A.ttf", "900"=> "http://fonts.gstatic.com/s/robotoslab/v11/BngbUXZYTXPIvIBgJJSb6s3BzlRRfKOFbvjoJYOWaG5iddG-1A.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 795 => [ "family"=> "Rochester", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/rochester/v10/6ae-4KCqVa4Zy6Fif-Uy31vWNTMwoQ.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 796 => [ "family"=> "Rock Salt", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/rocksalt/v10/MwQ0bhv11fWD6QsAVOZbsEk7hbBWrA.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 797 => [ "family"=> "Rokkitt", "variants"=> [ 0=> "100", 1=> "200", 2=> "300", 3=> "regular", 4=> "500", 5=> "600", 6=> "700", 7=> "800", 8=> "900", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v18", "lastModified"=> "2020-02-05", "files"=> [ "100"=> "http://fonts.gstatic.com/s/rokkitt/v18/qFdb35qfgYFjGy5hukqqhw5XeRgdi1rydpDLE76HvN6n.ttf", "200"=> "http://fonts.gstatic.com/s/rokkitt/v18/qFdb35qfgYFjGy5hukqqhw5XeRgdi1pyd5DLE76HvN6n.ttf", "300"=> "http://fonts.gstatic.com/s/rokkitt/v18/qFdb35qfgYFjGy5hukqqhw5XeRgdi1qsd5DLE76HvN6n.ttf", "regular"=> "http://fonts.gstatic.com/s/rokkitt/v18/qFdb35qfgYFjGy5hukqqhw5XeRgdi1ryd5DLE76HvN6n.ttf", "500"=> "http://fonts.gstatic.com/s/rokkitt/v18/qFdb35qfgYFjGy5hukqqhw5XeRgdi1rAd5DLE76HvN6n.ttf", "600"=> "http://fonts.gstatic.com/s/rokkitt/v18/qFdb35qfgYFjGy5hukqqhw5XeRgdi1oscJDLE76HvN6n.ttf", "700"=> "http://fonts.gstatic.com/s/rokkitt/v18/qFdb35qfgYFjGy5hukqqhw5XeRgdi1oVcJDLE76HvN6n.ttf", "800"=> "http://fonts.gstatic.com/s/rokkitt/v18/qFdb35qfgYFjGy5hukqqhw5XeRgdi1pycJDLE76HvN6n.ttf", "900"=> "http://fonts.gstatic.com/s/rokkitt/v18/qFdb35qfgYFjGy5hukqqhw5XeRgdi1pbcJDLE76HvN6n.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 798 => [ "family"=> "Romanesco", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/romanesco/v8/w8gYH2ozQOY7_r_J7mSn3HwLqOqSBg.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 799 => [ "family"=> "Ropa Sans", "variants"=> [ 0=> "regular", 1=> "italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v9", "lastModified"=> "2019-07-17", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/ropasans/v9/EYqxmaNOzLlWtsZSScyKWjloU5KP2g.ttf", "italic"=> "http://fonts.gstatic.com/s/ropasans/v9/EYq3maNOzLlWtsZSScy6WDNscZef2mNE.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 800 => [ "family"=> "Rosario", "variants"=> [ 0=> "300", 1=> "regular", 2=> "500", 3=> "600", 4=> "700", 5=> "300italic", 6=> "italic", 7=> "500italic", 8=> "600italic", 9=> "700italic" ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v17", "lastModified"=> "2020-02-05", "files"=> [ "300"=> "http://fonts.gstatic.com/s/rosario/v17/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM69GCWczd-YnOzUD.ttf", "regular"=> "http://fonts.gstatic.com/s/rosario/v17/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM68YCWczd-YnOzUD.ttf", "500"=> "http://fonts.gstatic.com/s/rosario/v17/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM68qCWczd-YnOzUD.ttf", "600"=> "http://fonts.gstatic.com/s/rosario/v17/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM6_GDmczd-YnOzUD.ttf", "700"=> "http://fonts.gstatic.com/s/rosario/v17/xfuu0WDhWW_fOEoY8l_VPNZfB7jPM6__Dmczd-YnOzUD.ttf", "300italic"=> "http://fonts.gstatic.com/s/rosario/v17/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQStFwfeIFPiUDn08.ttf", "italic"=> "http://fonts.gstatic.com/s/rosario/v17/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSo9wfeIFPiUDn08.ttf", "500italic"=> "http://fonts.gstatic.com/s/rosario/v17/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSr1wfeIFPiUDn08.ttf", "600italic"=> "http://fonts.gstatic.com/s/rosario/v17/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSlF3feIFPiUDn08.ttf", "700italic"=> "http://fonts.gstatic.com/s/rosario/v17/xfug0WDhWW_fOEoY2Fbnww42bCJhNLrQSmh3feIFPiUDn08.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 801 => [ "family"=> "Rosarivo", "variants"=> [ 0=> "regular", 1=> "italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/rosarivo/v7/PlI-Fl2lO6N9f8HaNAeC2nhMnNy5.ttf", "italic"=> "http://fonts.gstatic.com/s/rosarivo/v7/PlI4Fl2lO6N9f8HaNDeA0Hxumcy5ZX8.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 802 => [ "family"=> "Rouge Script", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/rougescript/v8/LYjFdGbiklMoCIQOw1Ep3S4PVPXbUJWq9g.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 803 => [ "family"=> "Rozha One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "devanagari", 1=> "latin", 2=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/rozhaone/v7/AlZy_zVFtYP12Zncg2khdXf4XB0Tow.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 804 => [ "family"=> "Rubik", "variants"=> [ 0=> "300", 1=> "300italic", 2=> "regular", 3=> "italic", 4=> "500", 5=> "500italic", 6=> "700", 7=> "700italic", 8=> "900", 9=> "900italic" ], "subsets"=> [ 0=> "cyrillic", 1=> "hebrew", 2=> "latin", 3=> "latin-ext", ], "version"=> "v9", "lastModified"=> "2019-07-22", "files"=> [ "300"=> "http://fonts.gstatic.com/s/rubik/v9/iJWHBXyIfDnIV7Fqj1ma-2HW7ZB_.ttf", "300italic"=> "http://fonts.gstatic.com/s/rubik/v9/iJWBBXyIfDnIV7nEldWY8WX06IB_18o.ttf", "regular"=> "http://fonts.gstatic.com/s/rubik/v9/iJWKBXyIfDnIV4nGp32S0H3f.ttf", "italic"=> "http://fonts.gstatic.com/s/rubik/v9/iJWEBXyIfDnIV7nErXmw1W3f9Ik.ttf", "500"=> "http://fonts.gstatic.com/s/rubik/v9/iJWHBXyIfDnIV7Eyjlma-2HW7ZB_.ttf", "500italic"=> "http://fonts.gstatic.com/s/rubik/v9/iJWBBXyIfDnIV7nElY2Z8WX06IB_18o.ttf", "700"=> "http://fonts.gstatic.com/s/rubik/v9/iJWHBXyIfDnIV7F6iFma-2HW7ZB_.ttf", "700italic"=> "http://fonts.gstatic.com/s/rubik/v9/iJWBBXyIfDnIV7nElcWf8WX06IB_18o.ttf", "900"=> "http://fonts.gstatic.com/s/rubik/v9/iJWHBXyIfDnIV7FCilma-2HW7ZB_.ttf", "900italic"=> "http://fonts.gstatic.com/s/rubik/v9/iJWBBXyIfDnIV7nElf2d8WX06IB_18o.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 805 => [ "family"=> "Rubik Mono One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "cyrillic", 1=> "latin", 2=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/rubikmonoone/v8/UqyJK8kPP3hjw6ANTdfRk9YSN-8wRqQrc_j9.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 806 => [ "family"=> "Ruda", "variants"=> [ 0=> "regular", 1=> "500", 2=> "600", 3=> "700", 4=> "800", 5=> "900", ], "subsets"=> [ 0=> "cyrillic", 1=> "latin", 2=> "latin-ext", 3=> "vietnamese", ], "version"=> "v12", "lastModified"=> "2020-02-25", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/ruda/v12/k3kKo8YQJOpFgHQ1mQ5VkEbUKaJFsi_-2KiSGg-H.ttf", "500"=> "http://fonts.gstatic.com/s/ruda/v12/k3kKo8YQJOpFgHQ1mQ5VkEbUKaJ3si_-2KiSGg-H.ttf", "600"=> "http://fonts.gstatic.com/s/ruda/v12/k3kKo8YQJOpFgHQ1mQ5VkEbUKaKbtS_-2KiSGg-H.ttf", "700"=> "http://fonts.gstatic.com/s/ruda/v12/k3kKo8YQJOpFgHQ1mQ5VkEbUKaKitS_-2KiSGg-H.ttf", "800"=> "http://fonts.gstatic.com/s/ruda/v12/k3kKo8YQJOpFgHQ1mQ5VkEbUKaLFtS_-2KiSGg-H.ttf", "900"=> "http://fonts.gstatic.com/s/ruda/v12/k3kKo8YQJOpFgHQ1mQ5VkEbUKaLstS_-2KiSGg-H.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 807 => [ "family"=> "Rufina", "variants"=> [ 0=> "regular", 1=> "700", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/rufina/v7/Yq6V-LyURyLy-aKyoxRktOdClg.ttf", "700"=> "http://fonts.gstatic.com/s/rufina/v7/Yq6W-LyURyLy-aKKHztAvMxenxE0SA.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 808 => [ "family"=> "Ruge Boogie", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/rugeboogie/v10/JIA3UVFwbHRF_GIWSMhKNROiPzUveSxy.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 809 => [ "family"=> "Ruluko", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/ruluko/v7/xMQVuFNZVaODtm0pC6WzKX_QmA.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 810 => [ "family"=> "Rum Raisin", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/rumraisin/v7/nwpRtKu3Ih8D5avB4h2uJ3-IywA7eMM.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 811 => [ "family"=> "Ruslan Display", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "cyrillic", 1=> "latin", 2=> "latin-ext", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/ruslandisplay/v10/Gw6jwczl81XcIZuckK_e3UpfdzxrldyFvm1n.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 812 => [ "family"=> "Russo One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "cyrillic", 1=> "latin", 2=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-17", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/russoone/v8/Z9XUDmZRWg6M1LvRYsH-yMOInrib9Q.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 813 => [ "family"=> "Ruthie", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/ruthie/v10/gokvH63sGkdqXuU9lD53Q2u_mQ.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 814 => [ "family"=> "Rye", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/rye/v7/r05XGLJT86YDFpTsXOqx4w.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 815 => [ "family"=> "Sacramento", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/sacramento/v7/buEzpo6gcdjy0EiZMBUG0CoV_NxLeiw.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 816 => [ "family"=> "Sahitya", "variants"=> [ 0=> "regular", 1=> "700", ], "subsets"=> [ 0=> "devanagari", 1=> "latin", ], "version"=> "v4", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/sahitya/v4/6qLAKZkOuhnuqlJAaScFPywEDnI.ttf", "700"=> "http://fonts.gstatic.com/s/sahitya/v4/6qLFKZkOuhnuqlJAUZsqGyQvEnvSexI.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 817 => [ "family"=> "Sail", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/sail/v10/DPEjYwiBxwYJFBTDADYAbvw.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 818 => [ "family"=> "Saira", "variants"=> [ 0=> "100", 1=> "200", 2=> "300", 3=> "regular", 4=> "500", 5=> "600", 6=> "700", 7=> "800", 8=> "900", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v4", "lastModified"=> "2019-07-16", "files"=> [ "100"=> "http://fonts.gstatic.com/s/saira/v4/mem-Ya2wxmKQyNFETZY_VrUfTck.ttf", "200"=> "http://fonts.gstatic.com/s/saira/v4/mem9Ya2wxmKQyNHobLYVeLkWVNBt.ttf", "300"=> "http://fonts.gstatic.com/s/saira/v4/mem9Ya2wxmKQyNGMb7YVeLkWVNBt.ttf", "regular"=> "http://fonts.gstatic.com/s/saira/v4/memwYa2wxmKQyOkgR5IdU6Uf.ttf", "500"=> "http://fonts.gstatic.com/s/saira/v4/mem9Ya2wxmKQyNHUbrYVeLkWVNBt.ttf", "600"=> "http://fonts.gstatic.com/s/saira/v4/mem9Ya2wxmKQyNH4abYVeLkWVNBt.ttf", "700"=> "http://fonts.gstatic.com/s/saira/v4/mem9Ya2wxmKQyNGcaLYVeLkWVNBt.ttf", "800"=> "http://fonts.gstatic.com/s/saira/v4/mem9Ya2wxmKQyNGAa7YVeLkWVNBt.ttf", "900"=> "http://fonts.gstatic.com/s/saira/v4/mem9Ya2wxmKQyNGkarYVeLkWVNBt.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 819 => [ "family"=> "Saira Condensed", "variants"=> [ 0=> "100", 1=> "200", 2=> "300", 3=> "regular", 4=> "500", 5=> "600", 6=> "700", 7=> "800", 8=> "900", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v5", "lastModified"=> "2019-07-16", "files"=> [ "100"=> "http://fonts.gstatic.com/s/sairacondensed/v5/EJRMQgErUN8XuHNEtX81i9TmEkrnwetA2omSrzS8.ttf", "200"=> "http://fonts.gstatic.com/s/sairacondensed/v5/EJRLQgErUN8XuHNEtX81i9TmEkrnbcpg8Keepi2lHw.ttf", "300"=> "http://fonts.gstatic.com/s/sairacondensed/v5/EJRLQgErUN8XuHNEtX81i9TmEkrnCclg8Keepi2lHw.ttf", "regular"=> "http://fonts.gstatic.com/s/sairacondensed/v5/EJROQgErUN8XuHNEtX81i9TmEkrfpeFE-IyCrw.ttf", "500"=> "http://fonts.gstatic.com/s/sairacondensed/v5/EJRLQgErUN8XuHNEtX81i9TmEkrnUchg8Keepi2lHw.ttf", "600"=> "http://fonts.gstatic.com/s/sairacondensed/v5/EJRLQgErUN8XuHNEtX81i9TmEkrnfc9g8Keepi2lHw.ttf", "700"=> "http://fonts.gstatic.com/s/sairacondensed/v5/EJRLQgErUN8XuHNEtX81i9TmEkrnGc5g8Keepi2lHw.ttf", "800"=> "http://fonts.gstatic.com/s/sairacondensed/v5/EJRLQgErUN8XuHNEtX81i9TmEkrnBc1g8Keepi2lHw.ttf", "900"=> "http://fonts.gstatic.com/s/sairacondensed/v5/EJRLQgErUN8XuHNEtX81i9TmEkrnIcxg8Keepi2lHw.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 820 => [ "family"=> "Saira Extra Condensed", "variants"=> [ 0=> "100", 1=> "200", 2=> "300", 3=> "regular", 4=> "500", 5=> "600", 6=> "700", 7=> "800", 8=> "900", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v5", "lastModified"=> "2019-07-16", "files"=> [ "100"=> "http://fonts.gstatic.com/s/sairaextracondensed/v5/-nFsOHYr-vcC7h8MklGBkrvmUG9rbpkisrTri0jx9i5ss3a3.ttf", "200"=> "http://fonts.gstatic.com/s/sairaextracondensed/v5/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrJ2nR3ABgum-uoQ.ttf", "300"=> "http://fonts.gstatic.com/s/sairaextracondensed/v5/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrQ2rR3ABgum-uoQ.ttf", "regular"=> "http://fonts.gstatic.com/s/sairaextracondensed/v5/-nFiOHYr-vcC7h8MklGBkrvmUG9rbpkisrTT70L11Ct8sw.ttf", "500"=> "http://fonts.gstatic.com/s/sairaextracondensed/v5/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrG2vR3ABgum-uoQ.ttf", "600"=> "http://fonts.gstatic.com/s/sairaextracondensed/v5/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrN2zR3ABgum-uoQ.ttf", "700"=> "http://fonts.gstatic.com/s/sairaextracondensed/v5/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrU23R3ABgum-uoQ.ttf", "800"=> "http://fonts.gstatic.com/s/sairaextracondensed/v5/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTrT27R3ABgum-uoQ.ttf", "900"=> "http://fonts.gstatic.com/s/sairaextracondensed/v5/-nFvOHYr-vcC7h8MklGBkrvmUG9rbpkisrTra2_R3ABgum-uoQ.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 821 => [ "family"=> "Saira Semi Condensed", "variants"=> [ 0=> "100", 1=> "200", 2=> "300", 3=> "regular", 4=> "500", 5=> "600", 6=> "700", 7=> "800", 8=> "900", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v5", "lastModified"=> "2019-07-16", "files"=> [ "100"=> "http://fonts.gstatic.com/s/sairasemicondensed/v5/U9MN6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXdvaOM8rXT-8V8.ttf", "200"=> "http://fonts.gstatic.com/s/sairasemicondensed/v5/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXfDScMWg3j36Ebz.ttf", "300"=> "http://fonts.gstatic.com/s/sairasemicondensed/v5/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXenSsMWg3j36Ebz.ttf", "regular"=> "http://fonts.gstatic.com/s/sairasemicondensed/v5/U9MD6c-2-nnJkHxyCjRcnMHcWVWV1cWRRU8LYuceqGT-.ttf", "500"=> "http://fonts.gstatic.com/s/sairasemicondensed/v5/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXf_S8MWg3j36Ebz.ttf", "600"=> "http://fonts.gstatic.com/s/sairasemicondensed/v5/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXfTTMMWg3j36Ebz.ttf", "700"=> "http://fonts.gstatic.com/s/sairasemicondensed/v5/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXe3TcMWg3j36Ebz.ttf", "800"=> "http://fonts.gstatic.com/s/sairasemicondensed/v5/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXerTsMWg3j36Ebz.ttf", "900"=> "http://fonts.gstatic.com/s/sairasemicondensed/v5/U9MM6c-2-nnJkHxyCjRcnMHcWVWV1cWRRXePT8MWg3j36Ebz.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 822 => [ "family"=> "Saira Stencil One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v1", "lastModified"=> "2019-11-05", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/sairastencilone/v1/SLXSc03I6HkvZGJ1GvvipLoYSTEL9AsMawif2YQ2.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 823 => [ "family"=> "Salsa", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/salsa/v9/gNMKW3FiRpKj-imY8ncKEZez.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 824 => [ "family"=> "Sanchez", "variants"=> [ 0=> "regular", 1=> "italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/sanchez/v7/Ycm2sZJORluHnXbITm5b_BwE1l0.ttf", "italic"=> "http://fonts.gstatic.com/s/sanchez/v7/Ycm0sZJORluHnXbIfmxR-D4Bxl3gkw.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 825 => [ "family"=> "Sancreek", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/sancreek/v10/pxiHypAnsdxUm159X7D-XV9NEe-K.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 826 => [ "family"=> "Sansita", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "700", 3=> "700italic", 4=> "800", 5=> "800italic", 6=> "900", 7=> "900italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v4", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/sansita/v4/QldONTRRphEb_-V7HBm7TXFf3qw.ttf", "italic"=> "http://fonts.gstatic.com/s/sansita/v4/QldMNTRRphEb_-V7LBuxSVNazqx2xg.ttf", "700"=> "http://fonts.gstatic.com/s/sansita/v4/QldLNTRRphEb_-V7JKWUaXl0wqVv3_g.ttf", "700italic"=> "http://fonts.gstatic.com/s/sansita/v4/QldJNTRRphEb_-V7LBuJ9Xx-xodqz_joDQ.ttf", "800"=> "http://fonts.gstatic.com/s/sansita/v4/QldLNTRRphEb_-V7JLmXaXl0wqVv3_g.ttf", "800italic"=> "http://fonts.gstatic.com/s/sansita/v4/QldJNTRRphEb_-V7LBuJ6X9-xodqz_joDQ.ttf", "900"=> "http://fonts.gstatic.com/s/sansita/v4/QldLNTRRphEb_-V7JJ2WaXl0wqVv3_g.ttf", "900italic"=> "http://fonts.gstatic.com/s/sansita/v4/QldJNTRRphEb_-V7LBuJzX5-xodqz_joDQ.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 827 => [ "family"=> "Sarabun", "variants"=> [ 0=> "100", 1=> "100italic", 2=> "200", 3=> "200italic", 4=> "300", 5=> "300italic", 6=> "regular", 7=> "italic", 8=> "500", 9=> "500italic", 10=> "600", 11=> "600italic", 12=> "700", 13=> "700italic", 14=> "800", 15=> "800italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "thai", 3=> "vietnamese", ], "version"=> "v7", "lastModified"=> "2020-03-03", "files"=> [ "100"=> "http://fonts.gstatic.com/s/sarabun/v7/DtVhJx26TKEr37c9YHZJmnYI5gnOpg.ttf", "100italic"=> "http://fonts.gstatic.com/s/sarabun/v7/DtVnJx26TKEr37c9aBBx_nwMxAzephhN.ttf", "200"=> "http://fonts.gstatic.com/s/sarabun/v7/DtVmJx26TKEr37c9YNpoulwm6gDXvwE.ttf", "200italic"=> "http://fonts.gstatic.com/s/sarabun/v7/DtVkJx26TKEr37c9aBBxUl0s7iLSrwFUlw.ttf", "300"=> "http://fonts.gstatic.com/s/sarabun/v7/DtVmJx26TKEr37c9YL5rulwm6gDXvwE.ttf", "300italic"=> "http://fonts.gstatic.com/s/sarabun/v7/DtVkJx26TKEr37c9aBBxNl4s7iLSrwFUlw.ttf", "regular"=> "http://fonts.gstatic.com/s/sarabun/v7/DtVjJx26TKEr37c9WBJDnlQN9gk.ttf", "italic"=> "http://fonts.gstatic.com/s/sarabun/v7/DtVhJx26TKEr37c9aBBJmnYI5gnOpg.ttf", "500"=> "http://fonts.gstatic.com/s/sarabun/v7/DtVmJx26TKEr37c9YOZqulwm6gDXvwE.ttf", "500italic"=> "http://fonts.gstatic.com/s/sarabun/v7/DtVkJx26TKEr37c9aBBxbl8s7iLSrwFUlw.ttf", "600"=> "http://fonts.gstatic.com/s/sarabun/v7/DtVmJx26TKEr37c9YMptulwm6gDXvwE.ttf", "600italic"=> "http://fonts.gstatic.com/s/sarabun/v7/DtVkJx26TKEr37c9aBBxQlgs7iLSrwFUlw.ttf", "700"=> "http://fonts.gstatic.com/s/sarabun/v7/DtVmJx26TKEr37c9YK5sulwm6gDXvwE.ttf", "700italic"=> "http://fonts.gstatic.com/s/sarabun/v7/DtVkJx26TKEr37c9aBBxJlks7iLSrwFUlw.ttf", "800"=> "http://fonts.gstatic.com/s/sarabun/v7/DtVmJx26TKEr37c9YLJvulwm6gDXvwE.ttf", "800italic"=> "http://fonts.gstatic.com/s/sarabun/v7/DtVkJx26TKEr37c9aBBxOlos7iLSrwFUlw.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 828 => [ "family"=> "Sarala", "variants"=> [ 0=> "regular", 1=> "700", ], "subsets"=> [ 0=> "devanagari", 1=> "latin", 2=> "latin-ext", ], "version"=> "v4", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/sarala/v4/uK_y4riEZv4o1w9RCh0TMv6EXw.ttf", "700"=> "http://fonts.gstatic.com/s/sarala/v4/uK_x4riEZv4o1w9ptjI3OtWYVkMpXA.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 829 => [ "family"=> "Sarina", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/sarina/v8/-F6wfjF3ITQwasLhLkDUriBQxw.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 830 => [ "family"=> "Sarpanch", "variants"=> [ 0=> "regular", 1=> "500", 2=> "600", 3=> "700", 4=> "800", 5=> "900", ], "subsets"=> [ 0=> "devanagari", 1=> "latin", 2=> "latin-ext", ], "version"=> "v5", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/sarpanch/v5/hESy6Xt4NCpRuk6Pzh2ARIrX_20n.ttf", "500"=> "http://fonts.gstatic.com/s/sarpanch/v5/hES16Xt4NCpRuk6PziV0ba7f1HEuRHkM.ttf", "600"=> "http://fonts.gstatic.com/s/sarpanch/v5/hES16Xt4NCpRuk6PziVYaq7f1HEuRHkM.ttf", "700"=> "http://fonts.gstatic.com/s/sarpanch/v5/hES16Xt4NCpRuk6PziU8a67f1HEuRHkM.ttf", "800"=> "http://fonts.gstatic.com/s/sarpanch/v5/hES16Xt4NCpRuk6PziUgaK7f1HEuRHkM.ttf", "900"=> "http://fonts.gstatic.com/s/sarpanch/v5/hES16Xt4NCpRuk6PziUEaa7f1HEuRHkM.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 831 => [ "family"=> "Satisfy", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-17", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/satisfy/v10/rP2Hp2yn6lkG50LoOZSCHBeHFl0.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 832 => [ "family"=> "Sawarabi Gothic", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "cyrillic", 1=> "japanese", 2=> "latin", 3=> "latin-ext", 4=> "vietnamese", ], "version"=> "v8", "lastModified"=> "2019-11-05", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/sawarabigothic/v8/x3d4ckfVaqqa-BEj-I9mE65u3k3NBSk3E2YljQ.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 833 => [ "family"=> "Sawarabi Mincho", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "japanese", 1=> "latin", 2=> "latin-ext", ], "version"=> "v10", "lastModified"=> "2019-11-05", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/sawarabimincho/v10/8QIRdiDaitzr7brc8ahpxt6GcIJTLahP46UDUw.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 834 => [ "family"=> "Scada", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "700", 3=> "700italic", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "latin", 3=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/scada/v8/RLpxK5Pv5qumeWJoxzUobkvv.ttf", "italic"=> "http://fonts.gstatic.com/s/scada/v8/RLp_K5Pv5qumeVJqzTEKa1vvffg.ttf", "700"=> "http://fonts.gstatic.com/s/scada/v8/RLp8K5Pv5qumeVrU6BEgRVfmZOE5.ttf", "700italic"=> "http://fonts.gstatic.com/s/scada/v8/RLp6K5Pv5qumeVJq9Y0lT1PEYfE5p6g.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 835 => [ "family"=> "Scheherazade", "variants"=> [ 0=> "regular", 1=> "700", ], "subsets"=> [ 0=> "arabic", 1=> "latin", ], "version"=> "v17", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/scheherazade/v17/YA9Ur0yF4ETZN60keViq1kQgt5OohvbJ9A.ttf", "700"=> "http://fonts.gstatic.com/s/scheherazade/v17/YA9Lr0yF4ETZN60keViq1kQYC7yMjt3V_dB0Yw.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 836 => [ "family"=> "Schoolbell", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/schoolbell/v10/92zQtBZWOrcgoe-fgnJIVxIQ6mRqfiQ.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 837 => [ "family"=> "Scope One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v6", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/scopeone/v6/WBLnrEXKYFlGHrOKmGD1W0_MJMGxiQ.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 838 => [ "family"=> "Seaweed Script", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/seaweedscript/v7/bx6cNx6Tne2pxOATYE8C_Rsoe0WJ-KcGVbLW.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 839 => [ "family"=> "Secular One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "hebrew", 1=> "latin", 2=> "latin-ext", ], "version"=> "v4", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/secularone/v4/8QINdiTajsj_87rMuMdKypDlMul7LJpK.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 840 => [ "family"=> "Sedgwick Ave", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v5", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/sedgwickave/v5/uK_04rKEYuguzAcSYRdWTJq8Xmg1Vcf5JA.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 841 => [ "family"=> "Sedgwick Ave Display", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v5", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/sedgwickavedisplay/v5/xfuu0XPgU3jZPUoUo3ScvmPi-NapQ8OxM2czd-YnOzUD.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 842 => [ "family"=> "Sen", "variants"=> [ 0=> "regular", 1=> "700", 2=> "800", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v1", "lastModified"=> "2020-04-21", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/sen/v1/6xKjdSxYI9_Hm_-MImrpLQ.ttf", "700"=> "http://fonts.gstatic.com/s/sen/v1/6xKudSxYI9__J9CoKkH1JHUQSQ.ttf", "800"=> "http://fonts.gstatic.com/s/sen/v1/6xKudSxYI9__O9OoKkH1JHUQSQ.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 843 => [ "family"=> "Sevillana", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/sevillana/v8/KFOlCnWFscmDt1Bfiy1vAx05IsDqlA.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 844 => [ "family"=> "Seymour One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "cyrillic", 1=> "latin", 2=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/seymourone/v7/4iCp6Khla9xbjQpoWGGd0myIPYBvgpUI.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 845 => [ "family"=> "Shadows Into Light", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-17", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/shadowsintolight/v9/UqyNK9UOIntux_czAvDQx_ZcHqZXBNQDcsr4xzSMYA.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 846 => [ "family"=> "Shadows Into Light Two", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/shadowsintolighttwo/v7/4iC86LVlZsRSjQhpWGedwyOoW-0A6_kpsyNmlAvNGLNnIF0.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 847 => [ "family"=> "Shanti", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/shanti/v11/t5thIREMM4uSDgzgU0ezpKfwzA.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 848 => [ "family"=> "Share", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "700", 3=> "700italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/share/v10/i7dEIFliZjKNF5VNHLq2cV5d.ttf", "italic"=> "http://fonts.gstatic.com/s/share/v10/i7dKIFliZjKNF6VPFr6UdE5dWFM.ttf", "700"=> "http://fonts.gstatic.com/s/share/v10/i7dJIFliZjKNF63xM56-WkJUQUq7.ttf", "700italic"=> "http://fonts.gstatic.com/s/share/v10/i7dPIFliZjKNF6VPLgK7UEZ2RFq7AwU.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 849 => [ "family"=> "Share Tech", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/sharetech/v9/7cHtv4Uyi5K0OeZ7bohUwHoDmTcibrA.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 850 => [ "family"=> "Share Tech Mono", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/sharetechmono/v9/J7aHnp1uDWRBEqV98dVQztYldFc7pAsEIc3Xew.ttf", ], "category"=> "monospace", "kind"=> "webfonts#webfont" ], 851 => [ "family"=> "Shojumaru", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/shojumaru/v7/rax_HiWfutkLLnaKCtlMBBJek0vA8A.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 852 => [ "family"=> "Short Stack", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/shortstack/v9/bMrzmS2X6p0jZC6EcmPFX-SScX8D0nq6.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 853 => [ "family"=> "Shrikhand", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "gujarati", 1=> "latin", 2=> "latin-ext", ], "version"=> "v5", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/shrikhand/v5/a8IbNovtLWfR7T7bMJwbBIiQ0zhMtA.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 854 => [ "family"=> "Siemreap", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "khmer", ], "version"=> "v12", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/siemreap/v12/Gg82N5oFbgLvHAfNl2YbnA8DLXpe.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 855 => [ "family"=> "Sigmar One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/sigmarone/v10/co3DmWZ8kjZuErj9Ta3dk6Pjp3Di8U0.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 856 => [ "family"=> "Signika", "variants"=> [ 0=> "300", 1=> "regular", 2=> "600", 3=> "700", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v10", "lastModified"=> "2019-07-17", "files"=> [ "300"=> "http://fonts.gstatic.com/s/signika/v10/vEFU2_JTCgwQ5ejvE_oEI3BDa0AdytM.ttf", "regular"=> "http://fonts.gstatic.com/s/signika/v10/vEFR2_JTCgwQ5ejvK1YsB3hod0k.ttf", "600"=> "http://fonts.gstatic.com/s/signika/v10/vEFU2_JTCgwQ5ejvE44CI3BDa0AdytM.ttf", "700"=> "http://fonts.gstatic.com/s/signika/v10/vEFU2_JTCgwQ5ejvE-oDI3BDa0AdytM.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 857 => [ "family"=> "Signika Negative", "variants"=> [ 0=> "300", 1=> "regular", 2=> "600", 3=> "700", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "300"=> "http://fonts.gstatic.com/s/signikanegative/v10/E217_cfngu7HiRpPX3ZpNE4kY5zKal6DipHD6z_iXAs.ttf", "regular"=> "http://fonts.gstatic.com/s/signikanegative/v10/E218_cfngu7HiRpPX3ZpNE4kY5zKUvKrrpno9zY.ttf", "600"=> "http://fonts.gstatic.com/s/signikanegative/v10/E217_cfngu7HiRpPX3ZpNE4kY5zKaiqFipHD6z_iXAs.ttf", "700"=> "http://fonts.gstatic.com/s/signikanegative/v10/E217_cfngu7HiRpPX3ZpNE4kY5zKak6EipHD6z_iXAs.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 858 => [ "family"=> "Simonetta", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "900", 3=> "900italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v10", "lastModified"=> "2019-07-26", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/simonetta/v10/x3dickHVYrCU5BU15c4BfPACvy_1BA.ttf", "italic"=> "http://fonts.gstatic.com/s/simonetta/v10/x3dkckHVYrCU5BU15c4xfvoGnSrlBBsy.ttf", "900"=> "http://fonts.gstatic.com/s/simonetta/v10/x3dnckHVYrCU5BU15c45-N0mtwTpDQIrGg.ttf", "900italic"=> "http://fonts.gstatic.com/s/simonetta/v10/x3d5ckHVYrCU5BU15c4xfsKCsA7tLwc7Gn88.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 859 => [ "family"=> "Single Day", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "korean", ], "version"=> "v1", "lastModified"=> "2020-03-03", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/singleday/v1/LYjHdGDjlEgoAcF95EI5jVoFUNfeQJU.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 860 => [ "family"=> "Sintony", "variants"=> [ 0=> "regular", 1=> "700", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/sintony/v7/XoHm2YDqR7-98cVUITQnu98ojjs.ttf", "700"=> "http://fonts.gstatic.com/s/sintony/v7/XoHj2YDqR7-98cVUGYgIn9cDkjLp6C8.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 861 => [ "family"=> "Sirin Stencil", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/sirinstencil/v8/mem4YaWwznmLx-lzGfN7MdRydchGBq6al6o.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 862 => [ "family"=> "Six Caps", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/sixcaps/v10/6ae_4KGrU7VR7bNmabcS9XXaPCop.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 863 => [ "family"=> "Skranji", "variants"=> [ 0=> "regular", 1=> "700", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/skranji/v7/OZpDg_dtriVFNerMYzuuklTm3Ek.ttf", "700"=> "http://fonts.gstatic.com/s/skranji/v7/OZpGg_dtriVFNerMW4eBtlzNwED-b4g.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 864 => [ "family"=> "Slabo 13px", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/slabo13px/v7/11hEGp_azEvXZUdSBzzRcKer2wkYnvI.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 865 => [ "family"=> "Slabo 27px", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v6", "lastModified"=> "2019-07-22", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/slabo27px/v6/mFT0WbgBwKPR_Z4hGN2qsxgJ1EJ7i90.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 866 => [ "family"=> "Slackey", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/slackey/v10/N0bV2SdQO-5yM0-dKlRaJdbWgdY.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 867 => [ "family"=> "Smokum", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/smokum/v10/TK3iWkUbAhopmrdGHjUHte5fKg.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 868 => [ "family"=> "Smythe", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/smythe/v10/MwQ3bhT01--coT1BOLh_uGInjA.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 869 => [ "family"=> "Sniglet", "variants"=> [ 0=> "regular", 1=> "800", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/sniglet/v11/cIf9MaFLtkE3UjaJxCmrYGkHgIs.ttf", "800"=> "http://fonts.gstatic.com/s/sniglet/v11/cIf4MaFLtkE3UjaJ_ImHRGEsnIJkWL4.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 870 => [ "family"=> "Snippet", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/snippet/v9/bWt47f7XfQH9Gupu2v_Afcp9QWc.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 871 => [ "family"=> "Snowburst One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/snowburstone/v7/MQpS-WezKdujBsXY3B7I-UT7eZ-UPyacPbo.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 872 => [ "family"=> "Sofadi One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/sofadione/v8/JIA2UVBxdnVBuElZaMFGcDOIETkmYDU.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 873 => [ "family"=> "Sofia", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/sofia/v8/8QIHdirahM3j_vu-sowsrqjk.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 874 => [ "family"=> "Solway", "variants"=> [ 0=> "300", 1=> "regular", 2=> "500", 3=> "700", 4=> "800", ], "subsets"=> [ 0=> "latin", ], "version"=> "v2", "lastModified"=> "2020-03-03", "files"=> [ "300"=> "http://fonts.gstatic.com/s/solway/v2/AMOTz46Cs2uTAOCuLlgZms0QW3mqyg.ttf", "regular"=> "http://fonts.gstatic.com/s/solway/v2/AMOQz46Cs2uTAOCWgnA9kuYMUg.ttf", "500"=> "http://fonts.gstatic.com/s/solway/v2/AMOTz46Cs2uTAOCudlkZms0QW3mqyg.ttf", "700"=> "http://fonts.gstatic.com/s/solway/v2/AMOTz46Cs2uTAOCuPl8Zms0QW3mqyg.ttf", "800"=> "http://fonts.gstatic.com/s/solway/v2/AMOTz46Cs2uTAOCuIlwZms0QW3mqyg.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 875 => [ "family"=> "Song Myung", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "korean", 1=> "latin", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/songmyung/v8/1cX2aUDWAJH5-EIC7DIhr1GqhcitzeM.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 876 => [ "family"=> "Sonsie One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/sonsieone/v8/PbymFmP_EAnPqbKaoc18YVu80lbp8JM.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 877 => [ "family"=> "Sorts Mill Goudy", "variants"=> [ 0=> "regular", 1=> "italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/sortsmillgoudy/v9/Qw3GZR9MED_6PSuS_50nEaVrfzgEXH0OjpM75PE.ttf", "italic"=> "http://fonts.gstatic.com/s/sortsmillgoudy/v9/Qw3AZR9MED_6PSuS_50nEaVrfzgEbH8EirE-9PGLfQ.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 878 => [ "family"=> "Source Code Pro", "variants"=> [ 0=> "200", 1=> "200italic", 2=> "300", 3=> "300italic", 4=> "regular", 5=> "italic", 6=> "500", 7=> "500italic", 8=> "600", 9=> "600italic", 10=> "700", 11=> "700italic", 12=> "900", 13=> "900italic", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "greek", 3=> "latin", 4=> "latin-ext", 5=> "vietnamese", ], "version"=> "v11", "lastModified"=> "2019-08-22", "files"=> [ "200"=> "http://fonts.gstatic.com/s/sourcecodepro/v11/HI_XiYsKILxRpg3hIP6sJ7fM7Pqt8srztO0rzmmkDQ.ttf", "200italic"=> "http://fonts.gstatic.com/s/sourcecodepro/v11/HI_ViYsKILxRpg3hIP6sJ7fM7PqlONMbtecv7Gy0DRzS.ttf", "300"=> "http://fonts.gstatic.com/s/sourcecodepro/v11/HI_XiYsKILxRpg3hIP6sJ7fM7PqtlsnztO0rzmmkDQ.ttf", "300italic"=> "http://fonts.gstatic.com/s/sourcecodepro/v11/HI_ViYsKILxRpg3hIP6sJ7fM7PqlONN_tucv7Gy0DRzS.ttf", "regular"=> "http://fonts.gstatic.com/s/sourcecodepro/v11/HI_SiYsKILxRpg3hIP6sJ7fM7PqVOuHXvMY3xw.ttf", "italic"=> "http://fonts.gstatic.com/s/sourcecodepro/v11/HI_QiYsKILxRpg3hIP6sJ7fM7PqlOOvTnsMnx3C9.ttf", "500"=> "http://fonts.gstatic.com/s/sourcecodepro/v11/HI_XiYsKILxRpg3hIP6sJ7fM7PqtzsjztO0rzmmkDQ.ttf", "500italic"=> "http://fonts.gstatic.com/s/sourcecodepro/v11/HI_ViYsKILxRpg3hIP6sJ7fM7PqlONMnt-cv7Gy0DRzS.ttf", "600"=> "http://fonts.gstatic.com/s/sourcecodepro/v11/HI_XiYsKILxRpg3hIP6sJ7fM7Pqt4s_ztO0rzmmkDQ.ttf", "600italic"=> "http://fonts.gstatic.com/s/sourcecodepro/v11/HI_ViYsKILxRpg3hIP6sJ7fM7PqlONMLsOcv7Gy0DRzS.ttf", "700"=> "http://fonts.gstatic.com/s/sourcecodepro/v11/HI_XiYsKILxRpg3hIP6sJ7fM7Pqths7ztO0rzmmkDQ.ttf", "700italic"=> "http://fonts.gstatic.com/s/sourcecodepro/v11/HI_ViYsKILxRpg3hIP6sJ7fM7PqlONNvsecv7Gy0DRzS.ttf", "900"=> "http://fonts.gstatic.com/s/sourcecodepro/v11/HI_XiYsKILxRpg3hIP6sJ7fM7PqtvszztO0rzmmkDQ.ttf", "900italic"=> "http://fonts.gstatic.com/s/sourcecodepro/v11/HI_ViYsKILxRpg3hIP6sJ7fM7PqlONNXs-cv7Gy0DRzS.ttf", ], "category"=> "monospace", "kind"=> "webfonts#webfont" ], 879 => [ "family"=> "Source Sans Pro", "variants"=> [ 0=> "200", 1=> "200italic", 2=> "300", 3=> "300italic", 4=> "regular", 5=> "italic", 6=> "600", 7=> "600italic", 8=> "700", 9=> "700italic", 10=> "900", 11=> "900italic", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "greek", 3=> "greek-ext", 4=> "latin", 5=> "latin-ext", 6=> "vietnamese", ], "version"=> "v13", "lastModified"=> "2019-07-23", "files"=> [ "200"=> "http://fonts.gstatic.com/s/sourcesanspro/v13/6xKydSBYKcSV-LCoeQqfX1RYOo3i94_AkB1v_8CGxg.ttf", "200italic"=> "http://fonts.gstatic.com/s/sourcesanspro/v13/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZYokRdr3cWWxg40.ttf", "300"=> "http://fonts.gstatic.com/s/sourcesanspro/v13/6xKydSBYKcSV-LCoeQqfX1RYOo3ik4zAkB1v_8CGxg.ttf", "300italic"=> "http://fonts.gstatic.com/s/sourcesanspro/v13/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZMkhdr3cWWxg40.ttf", "regular"=> "http://fonts.gstatic.com/s/sourcesanspro/v13/6xK3dSBYKcSV-LCoeQqfX1RYOo3aP6TkmDZz9g.ttf", "italic"=> "http://fonts.gstatic.com/s/sourcesanspro/v13/6xK1dSBYKcSV-LCoeQqfX1RYOo3qPa7gujNj9tmf.ttf", "600"=> "http://fonts.gstatic.com/s/sourcesanspro/v13/6xKydSBYKcSV-LCoeQqfX1RYOo3i54rAkB1v_8CGxg.ttf", "600italic"=> "http://fonts.gstatic.com/s/sourcesanspro/v13/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZY4lBdr3cWWxg40.ttf", "700"=> "http://fonts.gstatic.com/s/sourcesanspro/v13/6xKydSBYKcSV-LCoeQqfX1RYOo3ig4vAkB1v_8CGxg.ttf", "700italic"=> "http://fonts.gstatic.com/s/sourcesanspro/v13/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZclRdr3cWWxg40.ttf", "900"=> "http://fonts.gstatic.com/s/sourcesanspro/v13/6xKydSBYKcSV-LCoeQqfX1RYOo3iu4nAkB1v_8CGxg.ttf", "900italic"=> "http://fonts.gstatic.com/s/sourcesanspro/v13/6xKwdSBYKcSV-LCoeQqfX1RYOo3qPZZklxdr3cWWxg40.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 880 => [ "family"=> "Source Serif Pro", "variants"=> [ 0=> "regular", 1=> "600", 2=> "700", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-17", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/sourceserifpro/v7/neIQzD-0qpwxpaWvjeD0X88SAOeaiXM0oSOL2Yw.ttf", "600"=> "http://fonts.gstatic.com/s/sourceserifpro/v7/neIXzD-0qpwxpaWvjeD0X88SAOeasasahSugxYUvZrI.ttf", "700"=> "http://fonts.gstatic.com/s/sourceserifpro/v7/neIXzD-0qpwxpaWvjeD0X88SAOeasc8bhSugxYUvZrI.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 881 => [ "family"=> "Space Mono", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "700", 3=> "700italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v5", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/spacemono/v5/i7dPIFZifjKcF5UAWdDRUEZ2RFq7AwU.ttf", "italic"=> "http://fonts.gstatic.com/s/spacemono/v5/i7dNIFZifjKcF5UAWdDRYER8QHi-EwWMbg.ttf", "700"=> "http://fonts.gstatic.com/s/spacemono/v5/i7dMIFZifjKcF5UAWdDRaPpZYFKQHwyVd3U.ttf", "700italic"=> "http://fonts.gstatic.com/s/spacemono/v5/i7dSIFZifjKcF5UAWdDRYERE_FeaGy6QZ3WfYg.ttf", ], "category"=> "monospace", "kind"=> "webfonts#webfont" ], 882 => [ "family"=> "Spartan", "variants"=> [ 0=> "100", 1=> "200", 2=> "300", 3=> "regular", 4=> "500", 5=> "600", 6=> "700", 7=> "800", 8=> "900", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v1", "lastModified"=> "2020-04-21", "files"=> [ "100"=> "http://fonts.gstatic.com/s/spartan/v1/l7gAbjR61M69yt8Z8w6FZf9WoBxdBrGFuG6OChXtf4qS.ttf", "200"=> "http://fonts.gstatic.com/s/spartan/v1/l7gAbjR61M69yt8Z8w6FZf9WoBxdBrEFuW6OChXtf4qS.ttf", "300"=> "http://fonts.gstatic.com/s/spartan/v1/l7gAbjR61M69yt8Z8w6FZf9WoBxdBrHbuW6OChXtf4qS.ttf", "regular"=> "http://fonts.gstatic.com/s/spartan/v1/l7gAbjR61M69yt8Z8w6FZf9WoBxdBrGFuW6OChXtf4qS.ttf", "500"=> "http://fonts.gstatic.com/s/spartan/v1/l7gAbjR61M69yt8Z8w6FZf9WoBxdBrG3uW6OChXtf4qS.ttf", "600"=> "http://fonts.gstatic.com/s/spartan/v1/l7gAbjR61M69yt8Z8w6FZf9WoBxdBrFbvm6OChXtf4qS.ttf", "700"=> "http://fonts.gstatic.com/s/spartan/v1/l7gAbjR61M69yt8Z8w6FZf9WoBxdBrFivm6OChXtf4qS.ttf", "800"=> "http://fonts.gstatic.com/s/spartan/v1/l7gAbjR61M69yt8Z8w6FZf9WoBxdBrEFvm6OChXtf4qS.ttf", "900"=> "http://fonts.gstatic.com/s/spartan/v1/l7gAbjR61M69yt8Z8w6FZf9WoBxdBrEsvm6OChXtf4qS.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 883 => [ "family"=> "Special Elite", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-17", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/specialelite/v10/XLYgIZbkc4JPUL5CVArUVL0nhncESXFtUsM.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 884 => [ "family"=> "Spectral", "variants"=> [ 0=> "200", 1=> "200italic", 2=> "300", 3=> "300italic", 4=> "regular", 5=> "italic", 6=> "500", 7=> "500italic", 8=> "600", 9=> "600italic", 10=> "700", 11=> "700italic", 12=> "800", 13=> "800italic", ], "subsets"=> [ 0=> "cyrillic", 1=> "latin", 2=> "latin-ext", 3=> "vietnamese", ], "version"=> "v6", "lastModified"=> "2019-07-16", "files"=> [ "200"=> "http://fonts.gstatic.com/s/spectral/v6/rnCs-xNNww_2s0amA9v2s13GY_etWWIJ.ttf", "200italic"=> "http://fonts.gstatic.com/s/spectral/v6/rnCu-xNNww_2s0amA9M8qrXHafOPXHIJErY.ttf", "300"=> "http://fonts.gstatic.com/s/spectral/v6/rnCs-xNNww_2s0amA9uSsF3GY_etWWIJ.ttf", "300italic"=> "http://fonts.gstatic.com/s/spectral/v6/rnCu-xNNww_2s0amA9M8qtHEafOPXHIJErY.ttf", "regular"=> "http://fonts.gstatic.com/s/spectral/v6/rnCr-xNNww_2s0amA-M-mHnOSOuk.ttf", "italic"=> "http://fonts.gstatic.com/s/spectral/v6/rnCt-xNNww_2s0amA9M8kn3sTfukQHs.ttf", "500"=> "http://fonts.gstatic.com/s/spectral/v6/rnCs-xNNww_2s0amA9vKsV3GY_etWWIJ.ttf", "500italic"=> "http://fonts.gstatic.com/s/spectral/v6/rnCu-xNNww_2s0amA9M8qonFafOPXHIJErY.ttf", "600"=> "http://fonts.gstatic.com/s/spectral/v6/rnCs-xNNww_2s0amA9vmtl3GY_etWWIJ.ttf", "600italic"=> "http://fonts.gstatic.com/s/spectral/v6/rnCu-xNNww_2s0amA9M8qqXCafOPXHIJErY.ttf", "700"=> "http://fonts.gstatic.com/s/spectral/v6/rnCs-xNNww_2s0amA9uCt13GY_etWWIJ.ttf", "700italic"=> "http://fonts.gstatic.com/s/spectral/v6/rnCu-xNNww_2s0amA9M8qsHDafOPXHIJErY.ttf", "800"=> "http://fonts.gstatic.com/s/spectral/v6/rnCs-xNNww_2s0amA9uetF3GY_etWWIJ.ttf", "800italic"=> "http://fonts.gstatic.com/s/spectral/v6/rnCu-xNNww_2s0amA9M8qt3AafOPXHIJErY.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 885 => [ "family"=> "Spectral SC", "variants"=> [ 0=> "200", 1=> "200italic", 2=> "300", 3=> "300italic", 4=> "regular", 5=> "italic", 6=> "500", 7=> "500italic", 8=> "600", 9=> "600italic", 10=> "700", 11=> "700italic", 12=> "800", 13=> "800italic", ], "subsets"=> [ 0=> "cyrillic", 1=> "latin", 2=> "latin-ext", 3=> "vietnamese", ], "version"=> "v5", "lastModified"=> "2019-07-16", "files"=> [ "200"=> "http://fonts.gstatic.com/s/spectralsc/v5/Ktk0ALCRZonmalTgyPmRfs1qwkTXPYeVXJZB.ttf", "200italic"=> "http://fonts.gstatic.com/s/spectralsc/v5/Ktk2ALCRZonmalTgyPmRfsWg26zWN4O3WYZB_sU.ttf", "300"=> "http://fonts.gstatic.com/s/spectralsc/v5/Ktk0ALCRZonmalTgyPmRfs0OwUTXPYeVXJZB.ttf", "300italic"=> "http://fonts.gstatic.com/s/spectralsc/v5/Ktk2ALCRZonmalTgyPmRfsWg28jVN4O3WYZB_sU.ttf", "regular"=> "http://fonts.gstatic.com/s/spectralsc/v5/KtkpALCRZonmalTgyPmRfvWi6WDfFpuc.ttf", "italic"=> "http://fonts.gstatic.com/s/spectralsc/v5/KtkrALCRZonmalTgyPmRfsWg42T9E4ucRY8.ttf", "500"=> "http://fonts.gstatic.com/s/spectralsc/v5/Ktk0ALCRZonmalTgyPmRfs1WwETXPYeVXJZB.ttf", "500italic"=> "http://fonts.gstatic.com/s/spectralsc/v5/Ktk2ALCRZonmalTgyPmRfsWg25DUN4O3WYZB_sU.ttf", "600"=> "http://fonts.gstatic.com/s/spectralsc/v5/Ktk0ALCRZonmalTgyPmRfs16x0TXPYeVXJZB.ttf", "600italic"=> "http://fonts.gstatic.com/s/spectralsc/v5/Ktk2ALCRZonmalTgyPmRfsWg27zTN4O3WYZB_sU.ttf", "700"=> "http://fonts.gstatic.com/s/spectralsc/v5/Ktk0ALCRZonmalTgyPmRfs0exkTXPYeVXJZB.ttf", "700italic"=> "http://fonts.gstatic.com/s/spectralsc/v5/Ktk2ALCRZonmalTgyPmRfsWg29jSN4O3WYZB_sU.ttf", "800"=> "http://fonts.gstatic.com/s/spectralsc/v5/Ktk0ALCRZonmalTgyPmRfs0CxUTXPYeVXJZB.ttf", "800italic"=> "http://fonts.gstatic.com/s/spectralsc/v5/Ktk2ALCRZonmalTgyPmRfsWg28TRN4O3WYZB_sU.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 886 => [ "family"=> "Spicy Rice", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/spicyrice/v8/uK_24rSEd-Uqwk4jY1RyGv-2WkowRcc.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 887 => [ "family"=> "Spinnaker", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/spinnaker/v11/w8gYH2oyX-I0_rvR6Hmn3HwLqOqSBg.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 888 => [ "family"=> "Spirax", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/spirax/v8/buE3poKgYNLy0F3cXktt-Csn-Q.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 889 => [ "family"=> "Squada One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/squadaone/v8/BCasqZ8XsOrx4mcOk6MtWaA8WDBkHgs.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 890 => [ "family"=> "Sree Krushnadevaraya", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "telugu", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/sreekrushnadevaraya/v7/R70FjzQeifmPepmyQQjQ9kvwMkWYPfTA_EWb2FhQuXir.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 891 => [ "family"=> "Sriracha", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "thai", 3=> "vietnamese", ], "version"=> "v4", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/sriracha/v4/0nkrC9D4IuYBgWcI9ObYRQDioeb0.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 892 => [ "family"=> "Srisakdi", "variants"=> [ 0=> "regular", 1=> "700", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "thai", 3=> "vietnamese", ], "version"=> "v3", "lastModified"=> "2019-11-05", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/srisakdi/v3/yMJRMIlvdpDbkB0A-jq8fSx5i814.ttf", "700"=> "http://fonts.gstatic.com/s/srisakdi/v3/yMJWMIlvdpDbkB0A-gIAUghxoNFxW0Hz.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 893 => [ "family"=> "Staatliches", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v3", "lastModified"=> "2019-11-05", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/staatliches/v3/HI_OiY8KO6hCsQSoAPmtMbectJG9O9PS.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 894 => [ "family"=> "Stalemate", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/stalemate/v7/taiIGmZ_EJq97-UfkZRpuqSs8ZQpaQ.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 895 => [ "family"=> "Stalinist One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "cyrillic", 1=> "latin", 2=> "latin-ext", ], "version"=> "v25", "lastModified"=> "2019-12-05", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/stalinistone/v25/MQpS-WezM9W4Dd7D3B7I-UT7eZ-UPyacPbo.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 896 => [ "family"=> "Stardos Stencil", "variants"=> [ 0=> "regular", 1=> "700", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-26", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/stardosstencil/v10/X7n94bcuGPC8hrvEOHXOgaKCc2TR71R3tiSx0g.ttf", "700"=> "http://fonts.gstatic.com/s/stardosstencil/v10/X7n44bcuGPC8hrvEOHXOgaKCc2TpU3tTvg-t29HSHw.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 897 => [ "family"=> "Stint Ultra Condensed", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/stintultracondensed/v8/-W_gXIrsVjjeyEnPC45qD2NoFPtBE0xCh2A-qhUO2cNvdg.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 898 => [ "family"=> "Stint Ultra Expanded", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/stintultraexpanded/v7/CSRg4yNNh-GbW3o3JkwoDcdvMKMf0oBAd0qoATQkWwam.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 899 => [ "family"=> "Stoke", "variants"=> [ 0=> "300", 1=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "300"=> "http://fonts.gstatic.com/s/stoke/v9/z7NXdRb7aTMfKNvFVgxC_pjcTeWU.ttf", "regular"=> "http://fonts.gstatic.com/s/stoke/v9/z7NadRb7aTMfKONpfihK1YTV.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 900 => [ "family"=> "Strait", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/strait/v7/DtViJxy6WaEr1LZzeDhtkl0U7w.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 901 => [ "family"=> "Stylish", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "korean", 1=> "latin", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/stylish/v8/m8JSjfhPYriQkk7-fo35dLxEdmo.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 902 => [ "family"=> "Sue Ellen Francisco", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/sueellenfrancisco/v10/wXK3E20CsoJ9j1DDkjHcQ5ZL8xRaxru9ropF2lqk9H4.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 903 => [ "family"=> "Suez One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "hebrew", 1=> "latin", 2=> "latin-ext", ], "version"=> "v4", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/suezone/v4/taiJGmd_EZ6rqscQgNFJkIqg-I0w.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 904 => [ "family"=> "Sulphur Point", "variants"=> [ 0=> "300", 1=> "regular", 2=> "700", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v1", "lastModified"=> "2020-03-03", "files"=> [ "300"=> "http://fonts.gstatic.com/s/sulphurpoint/v1/RLpkK5vv8KaycDcazWFPBj2afVU6n6kFUHPIFaU.ttf", "regular"=> "http://fonts.gstatic.com/s/sulphurpoint/v1/RLp5K5vv8KaycDcazWFPBj2aRfkSu6EuTHo.ttf", "700"=> "http://fonts.gstatic.com/s/sulphurpoint/v1/RLpkK5vv8KaycDcazWFPBj2afUU9n6kFUHPIFaU.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 905 => [ "family"=> "Sumana", "variants"=> [ 0=> "regular", 1=> "700", ], "subsets"=> [ 0=> "devanagari", 1=> "latin", 2=> "latin-ext", ], "version"=> "v4", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/sumana/v4/4UaDrE5TqRBjGj-G8Bji76zR4w.ttf", "700"=> "http://fonts.gstatic.com/s/sumana/v4/4UaArE5TqRBjGj--TDfG54fN6ppsKg.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 906 => [ "family"=> "Sunflower", "variants"=> [ 0=> "300", 1=> "500", 2=> "700", ], "subsets"=> [ 0=> "korean", 1=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "300"=> "http://fonts.gstatic.com/s/sunflower/v9/RWmPoKeF8fUjqIj7Vc-06MfiqYsGBGBzCw.ttf", "500"=> "http://fonts.gstatic.com/s/sunflower/v9/RWmPoKeF8fUjqIj7Vc-0sMbiqYsGBGBzCw.ttf", "700"=> "http://fonts.gstatic.com/s/sunflower/v9/RWmPoKeF8fUjqIj7Vc-0-MDiqYsGBGBzCw.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 907 => [ "family"=> "Sunshiney", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/sunshiney/v10/LDIwapGTLBwsS-wT4vcgE8moUePWkg.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 908 => [ "family"=> "Supermercado One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/supermercadoone/v9/OpNXnpQWg8jc_xps_Gi14kVVEXOn60b3MClBRTs.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 909 => [ "family"=> "Sura", "variants"=> [ 0=> "regular", 1=> "700", ], "subsets"=> [ 0=> "devanagari", 1=> "latin", 2=> "latin-ext", ], "version"=> "v4", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/sura/v4/SZc23FL5PbyzFf5UWzXtjUM.ttf", "700"=> "http://fonts.gstatic.com/s/sura/v4/SZc53FL5PbyzLUJ7fz3GkUrS8DI.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 910 => [ "family"=> "Suranna", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "telugu", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/suranna/v7/gokuH6ztGkFjWe58tBRZT2KmgP0.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 911 => [ "family"=> "Suravaram", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "telugu", ], "version"=> "v6", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/suravaram/v6/_gP61R_usiY7SCym4xIAi261Qv9roQ.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 912 => [ "family"=> "Suwannaphum", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "khmer", ], "version"=> "v13", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/suwannaphum/v13/jAnCgHV7GtDvc8jbe8hXXIWl_8C0Wg2V.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 913 => [ "family"=> "Swanky and Moo Moo", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/swankyandmoomoo/v9/flUlRrKz24IuWVI_WJYTYcqbEsMUZ3kUtbPkR64SYQ.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 914 => [ "family"=> "Syncopate", "variants"=> [ 0=> "regular", 1=> "700", ], "subsets"=> [ 0=> "latin", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/syncopate/v11/pe0sMIuPIYBCpEV5eFdyAv2-C99ycg.ttf", "700"=> "http://fonts.gstatic.com/s/syncopate/v11/pe0pMIuPIYBCpEV5eFdKvtKaA_Rue1UwVg.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 915 => [ "family"=> "Tajawal", "variants"=> [ 0=> "200", 1=> "300", 2=> "regular", 3=> "500", 4=> "700", 5=> "800", 6=> "900", ], "subsets"=> [ 0=> "arabic", 1=> "latin", ], "version"=> "v3", "lastModified"=> "2019-07-16", "files"=> [ "200"=> "http://fonts.gstatic.com/s/tajawal/v3/Iurf6YBj_oCad4k1l_6gLrZjiLlJ-G0.ttf", "300"=> "http://fonts.gstatic.com/s/tajawal/v3/Iurf6YBj_oCad4k1l5qjLrZjiLlJ-G0.ttf", "regular"=> "http://fonts.gstatic.com/s/tajawal/v3/Iura6YBj_oCad4k1rzaLCr5IlLA.ttf", "500"=> "http://fonts.gstatic.com/s/tajawal/v3/Iurf6YBj_oCad4k1l8KiLrZjiLlJ-G0.ttf", "700"=> "http://fonts.gstatic.com/s/tajawal/v3/Iurf6YBj_oCad4k1l4qkLrZjiLlJ-G0.ttf", "800"=> "http://fonts.gstatic.com/s/tajawal/v3/Iurf6YBj_oCad4k1l5anLrZjiLlJ-G0.ttf", "900"=> "http://fonts.gstatic.com/s/tajawal/v3/Iurf6YBj_oCad4k1l7KmLrZjiLlJ-G0.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 916 => [ "family"=> "Tangerine", "variants"=> [ 0=> "regular", 1=> "700", ], "subsets"=> [ 0=> "latin", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/tangerine/v11/IurY6Y5j_oScZZow4VOBDpxNhLBQ4Q.ttf", "700"=> "http://fonts.gstatic.com/s/tangerine/v11/Iurd6Y5j_oScZZow4VO5srNpjJtM6G0t9w.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 917 => [ "family"=> "Taprom", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "khmer", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/taprom/v11/UcCn3F82JHycULbFQyk3-0kvHg.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 918 => [ "family"=> "Tauri", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/tauri/v8/TwMA-IISS0AM3IpVWHU_TBqO.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 919 => [ "family"=> "Taviraj", "variants"=> [ 0=> "100", 1=> "100italic", 2=> "200", 3=> "200italic", 4=> "300", 5=> "300italic", 6=> "regular", 7=> "italic", 8=> "500", 9=> "500italic", 10=> "600", 11=> "600italic", 12=> "700", 13=> "700italic", 14=> "800", 15=> "800italic", 16=> "900", 17=> "900italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "thai", 3=> "vietnamese", ], "version"=> "v5", "lastModified"=> "2019-07-16", "files"=> [ "100"=> "http://fonts.gstatic.com/s/taviraj/v5/ahcbv8Cj3ylylTXzRIorV8N1jU2gog.ttf", "100italic"=> "http://fonts.gstatic.com/s/taviraj/v5/ahcdv8Cj3ylylTXzTOwTM8lxr0iwolLl.ttf", "200"=> "http://fonts.gstatic.com/s/taviraj/v5/ahccv8Cj3ylylTXzRCYKd-lbgUS5u0s.ttf", "200italic"=> "http://fonts.gstatic.com/s/taviraj/v5/ahcev8Cj3ylylTXzTOwTn-hRhWa8q0v8ag.ttf", "300"=> "http://fonts.gstatic.com/s/taviraj/v5/ahccv8Cj3ylylTXzREIJd-lbgUS5u0s.ttf", "300italic"=> "http://fonts.gstatic.com/s/taviraj/v5/ahcev8Cj3ylylTXzTOwT--tRhWa8q0v8ag.ttf", "regular"=> "http://fonts.gstatic.com/s/taviraj/v5/ahcZv8Cj3ylylTXzfO4hU-FwnU0.ttf", "italic"=> "http://fonts.gstatic.com/s/taviraj/v5/ahcbv8Cj3ylylTXzTOwrV8N1jU2gog.ttf", "500"=> "http://fonts.gstatic.com/s/taviraj/v5/ahccv8Cj3ylylTXzRBoId-lbgUS5u0s.ttf", "500italic"=> "http://fonts.gstatic.com/s/taviraj/v5/ahcev8Cj3ylylTXzTOwTo-pRhWa8q0v8ag.ttf", "600"=> "http://fonts.gstatic.com/s/taviraj/v5/ahccv8Cj3ylylTXzRDYPd-lbgUS5u0s.ttf", "600italic"=> "http://fonts.gstatic.com/s/taviraj/v5/ahcev8Cj3ylylTXzTOwTj-1RhWa8q0v8ag.ttf", "700"=> "http://fonts.gstatic.com/s/taviraj/v5/ahccv8Cj3ylylTXzRFIOd-lbgUS5u0s.ttf", "700italic"=> "http://fonts.gstatic.com/s/taviraj/v5/ahcev8Cj3ylylTXzTOwT6-xRhWa8q0v8ag.ttf", "800"=> "http://fonts.gstatic.com/s/taviraj/v5/ahccv8Cj3ylylTXzRE4Nd-lbgUS5u0s.ttf", "800italic"=> "http://fonts.gstatic.com/s/taviraj/v5/ahcev8Cj3ylylTXzTOwT9-9RhWa8q0v8ag.ttf", "900"=> "http://fonts.gstatic.com/s/taviraj/v5/ahccv8Cj3ylylTXzRGoMd-lbgUS5u0s.ttf", "900italic"=> "http://fonts.gstatic.com/s/taviraj/v5/ahcev8Cj3ylylTXzTOwT0-5RhWa8q0v8ag.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 920 => [ "family"=> "Teko", "variants"=> [ 0=> "300", 1=> "regular", 2=> "500", 3=> "600", 4=> "700", ], "subsets"=> [ 0=> "devanagari", 1=> "latin", 2=> "latin-ext", ], "version"=> "v9", "lastModified"=> "2019-07-17", "files"=> [ "300"=> "http://fonts.gstatic.com/s/teko/v9/LYjCdG7kmE0gdQhfgCNqqVIuTN4.ttf", "regular"=> "http://fonts.gstatic.com/s/teko/v9/LYjNdG7kmE0gTaR3pCtBtVs.ttf", "500"=> "http://fonts.gstatic.com/s/teko/v9/LYjCdG7kmE0gdVBegCNqqVIuTN4.ttf", "600"=> "http://fonts.gstatic.com/s/teko/v9/LYjCdG7kmE0gdXxZgCNqqVIuTN4.ttf", "700"=> "http://fonts.gstatic.com/s/teko/v9/LYjCdG7kmE0gdRhYgCNqqVIuTN4.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 921 => [ "family"=> "Telex", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/telex/v8/ieVw2Y1fKWmIO9fTB1piKFIf.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 922 => [ "family"=> "Tenali Ramakrishna", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "telugu", ], "version"=> "v6", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/tenaliramakrishna/v6/raxgHj6Yt9gAN3LLKs0BZVMo8jmwn1-8KJXqUFFvtA.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 923 => [ "family"=> "Tenor Sans", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "cyrillic", 1=> "latin", 2=> "latin-ext", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/tenorsans/v11/bx6ANxqUneKx06UkIXISr3JyC22IyqI.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 924 => [ "family"=> "Text Me One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/textmeone/v7/i7dOIFdlayuLUvgoFvHQFWZcalayGhyV.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 925 => [ "family"=> "Thasadith", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "700", 3=> "700italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "thai", 3=> "vietnamese", ], "version"=> "v3", "lastModified"=> "2019-11-05", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/thasadith/v3/mtG44_1TIqPYrd_f5R1YsEkU0CWuFw.ttf", "italic"=> "http://fonts.gstatic.com/s/thasadith/v3/mtG-4_1TIqPYrd_f5R1oskMQ8iC-F1ZE.ttf", "700"=> "http://fonts.gstatic.com/s/thasadith/v3/mtG94_1TIqPYrd_f5R1gDGYw2A6yHk9d8w.ttf", "700italic"=> "http://fonts.gstatic.com/s/thasadith/v3/mtGj4_1TIqPYrd_f5R1osnus3QS2PEpN8zxA.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 926 => [ "family"=> "The Girl Next Door", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/thegirlnextdoor/v10/pe0zMJCIMIsBjFxqYBIcZ6_OI5oFHCYIV7t7w6bE2A.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 927 => [ "family"=> "Tienne", "variants"=> [ 0=> "regular", 1=> "700", 2=> "900", ], "subsets"=> [ 0=> "latin", ], "version"=> "v12", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/tienne/v12/AYCKpX7pe9YCRP0LkEPHSFNyxw.ttf", "700"=> "http://fonts.gstatic.com/s/tienne/v12/AYCJpX7pe9YCRP0zLGzjQHhuzvef5Q.ttf", "900"=> "http://fonts.gstatic.com/s/tienne/v12/AYCJpX7pe9YCRP0zFG7jQHhuzvef5Q.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 928 => [ "family"=> "Tillana", "variants"=> [ 0=> "regular", 1=> "500", 2=> "600", 3=> "700", 4=> "800", ], "subsets"=> [ 0=> "devanagari", 1=> "latin", 2=> "latin-ext", ], "version"=> "v5", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/tillana/v5/VuJxdNvf35P4qJ1OeKbXOIFneRo.ttf", "500"=> "http://fonts.gstatic.com/s/tillana/v5/VuJ0dNvf35P4qJ1OQFL-HIlMZRNcp0o.ttf", "600"=> "http://fonts.gstatic.com/s/tillana/v5/VuJ0dNvf35P4qJ1OQH75HIlMZRNcp0o.ttf", "700"=> "http://fonts.gstatic.com/s/tillana/v5/VuJ0dNvf35P4qJ1OQBr4HIlMZRNcp0o.ttf", "800"=> "http://fonts.gstatic.com/s/tillana/v5/VuJ0dNvf35P4qJ1OQAb7HIlMZRNcp0o.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 929 => [ "family"=> "Timmana", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "telugu", ], "version"=> "v4", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/timmana/v4/6xKvdShfL9yK-rvpCmvbKHwJUOM.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 930 => [ "family"=> "Tinos", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "700", 3=> "700italic", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "greek", 3=> "greek-ext", 4=> "hebrew", 5=> "latin", 6=> "latin-ext", 7=> "vietnamese", ], "version"=> "v13", "lastModified"=> "2019-07-17", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/tinos/v13/buE4poGnedXvwgX8dGVh8TI-.ttf", "italic"=> "http://fonts.gstatic.com/s/tinos/v13/buE2poGnedXvwjX-fmFD9CI-4NU.ttf", "700"=> "http://fonts.gstatic.com/s/tinos/v13/buE1poGnedXvwj1AW0Fp2i43-cxL.ttf", "700italic"=> "http://fonts.gstatic.com/s/tinos/v13/buEzpoGnedXvwjX-Rt1s0CoV_NxLeiw.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 931 => [ "family"=> "Titan One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/titanone/v7/mFTzWbsGxbbS_J5cQcjykzIn2Etikg.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 932 => [ "family"=> "Titillium Web", "variants"=> [ 0=> "200", 1=> "200italic", 2=> "300", 3=> "300italic", 4=> "regular", 5=> "italic", 6=> "600", 7=> "600italic", 8=> "700", 9=> "700italic", 10=> "900", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-22", "files"=> [ "200"=> "http://fonts.gstatic.com/s/titilliumweb/v8/NaPDcZTIAOhVxoMyOr9n_E7ffAzHKIx5YrSYqWM.ttf", "200italic"=> "http://fonts.gstatic.com/s/titilliumweb/v8/NaPFcZTIAOhVxoMyOr9n_E7fdMbewI1zZpaduWMmxA.ttf", "300"=> "http://fonts.gstatic.com/s/titilliumweb/v8/NaPDcZTIAOhVxoMyOr9n_E7ffGjEKIx5YrSYqWM.ttf", "300italic"=> "http://fonts.gstatic.com/s/titilliumweb/v8/NaPFcZTIAOhVxoMyOr9n_E7fdMbepI5zZpaduWMmxA.ttf", "regular"=> "http://fonts.gstatic.com/s/titilliumweb/v8/NaPecZTIAOhVxoMyOr9n_E7fRMTsDIRSfr0.ttf", "italic"=> "http://fonts.gstatic.com/s/titilliumweb/v8/NaPAcZTIAOhVxoMyOr9n_E7fdMbmCKZXbr2BsA.ttf", "600"=> "http://fonts.gstatic.com/s/titilliumweb/v8/NaPDcZTIAOhVxoMyOr9n_E7ffBzCKIx5YrSYqWM.ttf", "600italic"=> "http://fonts.gstatic.com/s/titilliumweb/v8/NaPFcZTIAOhVxoMyOr9n_E7fdMbe0IhzZpaduWMmxA.ttf", "700"=> "http://fonts.gstatic.com/s/titilliumweb/v8/NaPDcZTIAOhVxoMyOr9n_E7ffHjDKIx5YrSYqWM.ttf", "700italic"=> "http://fonts.gstatic.com/s/titilliumweb/v8/NaPFcZTIAOhVxoMyOr9n_E7fdMbetIlzZpaduWMmxA.ttf", "900"=> "http://fonts.gstatic.com/s/titilliumweb/v8/NaPDcZTIAOhVxoMyOr9n_E7ffEDBKIx5YrSYqWM.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 933 => [ "family"=> "Tomorrow", "variants"=> [ 0=> "100", 1=> "100italic", 2=> "200", 3=> "200italic", 4=> "300", 5=> "300italic", 6=> "regular", 7=> "italic", 8=> "500", 9=> "500italic", 10=> "600", 11=> "600italic", 12=> "700", 13=> "700italic", 14=> "800", 15=> "800italic", 16=> "900", 17=> "900italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v2", "lastModified"=> "2020-03-03", "files"=> [ "100"=> "http://fonts.gstatic.com/s/tomorrow/v2/WBLgrETNbFtZCeGqgR2xe2XiKMiokE4.ttf", "100italic"=> "http://fonts.gstatic.com/s/tomorrow/v2/WBLirETNbFtZCeGqgRXXQwHoLOqtgE5h0A.ttf", "200"=> "http://fonts.gstatic.com/s/tomorrow/v2/WBLhrETNbFtZCeGqgR0dWkXIBsShiVd4.ttf", "200italic"=> "http://fonts.gstatic.com/s/tomorrow/v2/WBLjrETNbFtZCeGqgRXXQ63JDMCDjEd4yVY.ttf", "300"=> "http://fonts.gstatic.com/s/tomorrow/v2/WBLhrETNbFtZCeGqgR15WUXIBsShiVd4.ttf", "300italic"=> "http://fonts.gstatic.com/s/tomorrow/v2/WBLjrETNbFtZCeGqgRXXQ8nKDMCDjEd4yVY.ttf", "regular"=> "http://fonts.gstatic.com/s/tomorrow/v2/WBLmrETNbFtZCeGqgSXVcWHALdio.ttf", "italic"=> "http://fonts.gstatic.com/s/tomorrow/v2/WBLgrETNbFtZCeGqgRXXe2XiKMiokE4.ttf", "500"=> "http://fonts.gstatic.com/s/tomorrow/v2/WBLhrETNbFtZCeGqgR0hWEXIBsShiVd4.ttf", "500italic"=> "http://fonts.gstatic.com/s/tomorrow/v2/WBLjrETNbFtZCeGqgRXXQ5HLDMCDjEd4yVY.ttf", "600"=> "http://fonts.gstatic.com/s/tomorrow/v2/WBLhrETNbFtZCeGqgR0NX0XIBsShiVd4.ttf", "600italic"=> "http://fonts.gstatic.com/s/tomorrow/v2/WBLjrETNbFtZCeGqgRXXQ73MDMCDjEd4yVY.ttf", "700"=> "http://fonts.gstatic.com/s/tomorrow/v2/WBLhrETNbFtZCeGqgR1pXkXIBsShiVd4.ttf", "700italic"=> "http://fonts.gstatic.com/s/tomorrow/v2/WBLjrETNbFtZCeGqgRXXQ9nNDMCDjEd4yVY.ttf", "800"=> "http://fonts.gstatic.com/s/tomorrow/v2/WBLhrETNbFtZCeGqgR11XUXIBsShiVd4.ttf", "800italic"=> "http://fonts.gstatic.com/s/tomorrow/v2/WBLjrETNbFtZCeGqgRXXQ8XODMCDjEd4yVY.ttf", "900"=> "http://fonts.gstatic.com/s/tomorrow/v2/WBLhrETNbFtZCeGqgR1RXEXIBsShiVd4.ttf", "900italic"=> "http://fonts.gstatic.com/s/tomorrow/v2/WBLjrETNbFtZCeGqgRXXQ-HPDMCDjEd4yVY.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 934 => [ "family"=> "Trade Winds", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/tradewinds/v8/AYCPpXPpYNIIT7h8-QenM3Jq7PKP5Z_G.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 935 => [ "family"=> "Trirong", "variants"=> [ 0=> "100", 1=> "100italic", 2=> "200", 3=> "200italic", 4=> "300", 5=> "300italic", 6=> "regular", 7=> "italic", 8=> "500", 9=> "500italic", 10=> "600", 11=> "600italic", 12=> "700", 13=> "700italic", 14=> "800", 15=> "800italic", 16=> "900", 17=> "900italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "thai", 3=> "vietnamese", ], "version"=> "v5", "lastModified"=> "2019-07-16", "files"=> [ "100"=> "http://fonts.gstatic.com/s/trirong/v5/7r3EqXNgp8wxdOdOl-go3YRl6ujngw.ttf", "100italic"=> "http://fonts.gstatic.com/s/trirong/v5/7r3CqXNgp8wxdOdOn44QuY5hyO33g8IY.ttf", "200"=> "http://fonts.gstatic.com/s/trirong/v5/7r3DqXNgp8wxdOdOl0QJ_a5L5uH-mts.ttf", "200italic"=> "http://fonts.gstatic.com/s/trirong/v5/7r3BqXNgp8wxdOdOn44QFa9B4sP7itsB5g.ttf", "300"=> "http://fonts.gstatic.com/s/trirong/v5/7r3DqXNgp8wxdOdOlyAK_a5L5uH-mts.ttf", "300italic"=> "http://fonts.gstatic.com/s/trirong/v5/7r3BqXNgp8wxdOdOn44QcaxB4sP7itsB5g.ttf", "regular"=> "http://fonts.gstatic.com/s/trirong/v5/7r3GqXNgp8wxdOdOr4wi2aZg-ug.ttf", "italic"=> "http://fonts.gstatic.com/s/trirong/v5/7r3EqXNgp8wxdOdOn44o3YRl6ujngw.ttf", "500"=> "http://fonts.gstatic.com/s/trirong/v5/7r3DqXNgp8wxdOdOl3gL_a5L5uH-mts.ttf", "500italic"=> "http://fonts.gstatic.com/s/trirong/v5/7r3BqXNgp8wxdOdOn44QKa1B4sP7itsB5g.ttf", "600"=> "http://fonts.gstatic.com/s/trirong/v5/7r3DqXNgp8wxdOdOl1QM_a5L5uH-mts.ttf", "600italic"=> "http://fonts.gstatic.com/s/trirong/v5/7r3BqXNgp8wxdOdOn44QBapB4sP7itsB5g.ttf", "700"=> "http://fonts.gstatic.com/s/trirong/v5/7r3DqXNgp8wxdOdOlzAN_a5L5uH-mts.ttf", "700italic"=> "http://fonts.gstatic.com/s/trirong/v5/7r3BqXNgp8wxdOdOn44QYatB4sP7itsB5g.ttf", "800"=> "http://fonts.gstatic.com/s/trirong/v5/7r3DqXNgp8wxdOdOlywO_a5L5uH-mts.ttf", "800italic"=> "http://fonts.gstatic.com/s/trirong/v5/7r3BqXNgp8wxdOdOn44QfahB4sP7itsB5g.ttf", "900"=> "http://fonts.gstatic.com/s/trirong/v5/7r3DqXNgp8wxdOdOlwgP_a5L5uH-mts.ttf", "900italic"=> "http://fonts.gstatic.com/s/trirong/v5/7r3BqXNgp8wxdOdOn44QWalB4sP7itsB5g.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 936 => [ "family"=> "Trocchi", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/trocchi/v8/qWcqB6WkuIDxDZLcDrtUvMeTYD0.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 937 => [ "family"=> "Trochut", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "700", ], "subsets"=> [ 0=> "latin", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/trochut/v7/CHyjV-fDDlP9bDIw5nSIfVIPLns.ttf", "italic"=> "http://fonts.gstatic.com/s/trochut/v7/CHyhV-fDDlP9bDIw1naCeXAKPns8jw.ttf", "700"=> "http://fonts.gstatic.com/s/trochut/v7/CHymV-fDDlP9bDIw3sinWVokMnIllmA.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 938 => [ "family"=> "Trykker", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/trykker/v8/KtktALyWZJXudUPzhNnoOd2j22U.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 939 => [ "family"=> "Tulpen One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/tulpenone/v9/dFa6ZfeC474skLgesc0CWj0w_HyIRlE.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 940 => [ "family"=> "Turret Road", "variants"=> [ 0=> "200", 1=> "300", 2=> "regular", 3=> "500", 4=> "700", 5=> "800", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v1", "lastModified"=> "2020-03-03", "files"=> [ "200"=> "http://fonts.gstatic.com/s/turretroad/v1/pxidypMgpcBFjE84Zv-fE0ONEdeLYk1Mq3ap.ttf", "300"=> "http://fonts.gstatic.com/s/turretroad/v1/pxidypMgpcBFjE84Zv-fE0PpEteLYk1Mq3ap.ttf", "regular"=> "http://fonts.gstatic.com/s/turretroad/v1/pxiAypMgpcBFjE84Zv-fE3tFOvODSVFF.ttf", "500"=> "http://fonts.gstatic.com/s/turretroad/v1/pxidypMgpcBFjE84Zv-fE0OxE9eLYk1Mq3ap.ttf", "700"=> "http://fonts.gstatic.com/s/turretroad/v1/pxidypMgpcBFjE84Zv-fE0P5FdeLYk1Mq3ap.ttf", "800"=> "http://fonts.gstatic.com/s/turretroad/v1/pxidypMgpcBFjE84Zv-fE0PlFteLYk1Mq3ap.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 941 => [ "family"=> "Ubuntu", "variants"=> [ 0=> "300", 1=> "300italic", 2=> "regular", 3=> "italic", 4=> "500", 5=> "500italic", 6=> "700", 7=> "700italic", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "greek", 3=> "greek-ext", 4=> "latin", 5=> "latin-ext", ], "version"=> "v14", "lastModified"=> "2019-07-22", "files"=> [ "300"=> "http://fonts.gstatic.com/s/ubuntu/v14/4iCv6KVjbNBYlgoC1CzTt2aMH4V_gg.ttf", "300italic"=> "http://fonts.gstatic.com/s/ubuntu/v14/4iCp6KVjbNBYlgoKejZftWyIPYBvgpUI.ttf", "regular"=> "http://fonts.gstatic.com/s/ubuntu/v14/4iCs6KVjbNBYlgo6eAT3v02QFg.ttf", "italic"=> "http://fonts.gstatic.com/s/ubuntu/v14/4iCu6KVjbNBYlgoKeg7znUiAFpxm.ttf", "500"=> "http://fonts.gstatic.com/s/ubuntu/v14/4iCv6KVjbNBYlgoCjC3Tt2aMH4V_gg.ttf", "500italic"=> "http://fonts.gstatic.com/s/ubuntu/v14/4iCp6KVjbNBYlgoKejYHtGyIPYBvgpUI.ttf", "700"=> "http://fonts.gstatic.com/s/ubuntu/v14/4iCv6KVjbNBYlgoCxCvTt2aMH4V_gg.ttf", "700italic"=> "http://fonts.gstatic.com/s/ubuntu/v14/4iCp6KVjbNBYlgoKejZPsmyIPYBvgpUI.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 942 => [ "family"=> "Ubuntu Condensed", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "greek", 3=> "greek-ext", 4=> "latin", 5=> "latin-ext", ], "version"=> "v10", "lastModified"=> "2019-07-17", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/ubuntucondensed/v10/u-4k0rCzjgs5J7oXnJcM_0kACGMtf-fVqvHoJXw.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 943 => [ "family"=> "Ubuntu Mono", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "700", 3=> "700italic", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "greek", 3=> "greek-ext", 4=> "latin", 5=> "latin-ext", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/ubuntumono/v9/KFOjCneDtsqEr0keqCMhbBc9AMX6lJBP.ttf", "italic"=> "http://fonts.gstatic.com/s/ubuntumono/v9/KFOhCneDtsqEr0keqCMhbCc_CsHYkYBPY3o.ttf", "700"=> "http://fonts.gstatic.com/s/ubuntumono/v9/KFO-CneDtsqEr0keqCMhbC-BL-Hyv4xGemO1.ttf", "700italic"=> "http://fonts.gstatic.com/s/ubuntumono/v9/KFO8CneDtsqEr0keqCMhbCc_Mn33tYhkf3O1GVg.ttf", ], "category"=> "monospace", "kind"=> "webfonts#webfont" ], 944 => [ "family"=> "Ultra", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v12", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/ultra/v12/zOLy4prXmrtY-tT6yLOD6NxF.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 945 => [ "family"=> "Uncial Antiqua", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/uncialantiqua/v7/N0bM2S5WOex4OUbESzoESK-i-PfRS5VBBSSF.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 946 => [ "family"=> "Underdog", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "cyrillic", 1=> "latin", 2=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/underdog/v8/CHygV-jCElj7diMroVSiU14GN2Il.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 947 => [ "family"=> "Unica One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/unicaone/v7/DPEuYwWHyAYGVTSmalshdtffuEY7FA.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 948 => [ "family"=> "UnifrakturCook", "variants"=> [ 0=> "700", ], "subsets"=> [ 0=> "latin", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "700"=> "http://fonts.gstatic.com/s/unifrakturcook/v11/IurA6Yli8YOdcoky-0PTTdkm56n05Uw13ILXs-h6.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 949 => [ "family"=> "UnifrakturMaguntia", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/unifrakturmaguntia/v10/WWXPlieVYwiGNomYU-ciRLRvEmK7oaVun2xNNgNa1A.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 950 => [ "family"=> "Unkempt", "variants"=> [ 0=> "regular", 1=> "700", ], "subsets"=> [ 0=> "latin", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/unkempt/v11/2EbnL-Z2DFZue0DSSYYf8z2Yt_c.ttf", "700"=> "http://fonts.gstatic.com/s/unkempt/v11/2EbiL-Z2DFZue0DScTow1zWzq_5uT84.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 951 => [ "family"=> "Unlock", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/unlock/v9/7Au-p_8ykD-cDl7GKAjSwkUVOQ.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 952 => [ "family"=> "Unna", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "700", 3=> "700italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v13", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/unna/v13/AYCEpXzofN0NCpgBlGHCWFM.ttf", "italic"=> "http://fonts.gstatic.com/s/unna/v13/AYCKpXzofN0NOpoLkEPHSFNyxw.ttf", "700"=> "http://fonts.gstatic.com/s/unna/v13/AYCLpXzofN0NMiQusGnpRFpr3vc.ttf", "700italic"=> "http://fonts.gstatic.com/s/unna/v13/AYCJpXzofN0NOpozLGzjQHhuzvef5Q.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 953 => [ "family"=> "VT323", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/vt323/v11/pxiKyp0ihIEF2hsYHpT2dkNE.ttf", ], "category"=> "monospace", "kind"=> "webfonts#webfont" ], 954 => [ "family"=> "Vampiro One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/vampiroone/v10/gokqH6DoDl5yXvJytFsdLkqnsvhIor3K.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 955 => [ "family"=> "Varela", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/varela/v10/DPEtYwqExx0AWHXJBBQFfvzDsQ.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 956 => [ "family"=> "Varela Round", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "hebrew", 1=> "latin", 2=> "latin-ext", 3=> "vietnamese", ], "version"=> "v12", "lastModified"=> "2019-07-17", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/varelaround/v12/w8gdH283Tvk__Lua32TysjIvoMGOD9gxZw.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 957 => [ "family"=> "Vast Shadow", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/vastshadow/v9/pe0qMImKOZ1V62ZwbVY9dfe6Kdpickwp.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 958 => [ "family"=> "Vesper Libre", "variants"=> [ 0=> "regular", 1=> "500", 2=> "700", 3=> "900", ], "subsets"=> [ 0=> "devanagari", 1=> "latin", 2=> "latin-ext", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/vesperlibre/v11/bx6CNxyWnf-uxPdXDHUD_Rd4D0-N2qIWVQ.ttf", "500"=> "http://fonts.gstatic.com/s/vesperlibre/v11/bx6dNxyWnf-uxPdXDHUD_RdA-2ap0okKXKvPlw.ttf", "700"=> "http://fonts.gstatic.com/s/vesperlibre/v11/bx6dNxyWnf-uxPdXDHUD_RdAs2Cp0okKXKvPlw.ttf", "900"=> "http://fonts.gstatic.com/s/vesperlibre/v11/bx6dNxyWnf-uxPdXDHUD_RdAi2Kp0okKXKvPlw.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 959 => [ "family"=> "Viaoda Libre", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "latin", 3=> "latin-ext", 4=> "vietnamese", ], "version"=> "v2", "lastModified"=> "2020-05-06", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/viaodalibre/v2/vEFW2_lWCgoR6OKuRz9kcRVJb2IY2tOHXg.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 960 => [ "family"=> "Vibes", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "arabic", 1=> "latin", ], "version"=> "v1", "lastModified"=> "2019-11-05", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/vibes/v1/QdVYSTsmIB6tmbd3HpbsuBlh.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 961 => [ "family"=> "Vibur", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/vibur/v10/DPEiYwmEzw0QRjTpLjoJd-Xa.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 962 => [ "family"=> "Vidaloka", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v12", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/vidaloka/v12/7cHrv4c3ipenMKlEass8yn4hnCci.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 963 => [ "family"=> "Viga", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-17", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/viga/v8/xMQbuFFdSaiX_QIjD4e2OX8.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 964 => [ "family"=> "Voces", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/voces/v9/-F6_fjJyLyU8d4PBBG7YpzlJ.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 965 => [ "family"=> "Volkhov", "variants"=> [ 0=> "regular", 1=> "italic", 2=> "700", 3=> "700italic", ], "subsets"=> [ 0=> "latin", ], "version"=> "v11", "lastModified"=> "2019-07-17", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/volkhov/v11/SlGQmQieoJcKemNeQTIOhHxzcD0.ttf", "italic"=> "http://fonts.gstatic.com/s/volkhov/v11/SlGSmQieoJcKemNecTAEgF52YD0NYw.ttf", "700"=> "http://fonts.gstatic.com/s/volkhov/v11/SlGVmQieoJcKemNeeY4hoHRYbDQUego.ttf", "700italic"=> "http://fonts.gstatic.com/s/volkhov/v11/SlGXmQieoJcKemNecTA8PHFSaBYRagrQrA.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 966 => [ "family"=> "Vollkorn", "variants"=> [ 0=> "regular", 1=> "500", 2=> "600", 3=> "700", 4=> "800", 5=> "900", 6=> "italic", 7=> "500italic", 8=> "600italic", 9=> "700italic", 10=> "800italic", 11=> "900italic", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "greek", 3=> "latin", 4=> "latin-ext", 5=> "vietnamese", ], "version"=> "v11", "lastModified"=> "2020-05-13", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/vollkorn/v11/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2MHGuGWOdEbD63w.ttf", "500"=> "http://fonts.gstatic.com/s/vollkorn/v11/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2AnGuGWOdEbD63w.ttf", "600"=> "http://fonts.gstatic.com/s/vollkorn/v11/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df27nauGWOdEbD63w.ttf", "700"=> "http://fonts.gstatic.com/s/vollkorn/v11/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df213auGWOdEbD63w.ttf", "800"=> "http://fonts.gstatic.com/s/vollkorn/v11/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2sHauGWOdEbD63w.ttf", "900"=> "http://fonts.gstatic.com/s/vollkorn/v11/0ybgGDoxxrvAnPhYGzMlQLzuMasz6Df2mXauGWOdEbD63w.ttf", "italic"=> "http://fonts.gstatic.com/s/vollkorn/v11/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DJGWmmZM7Xq34g9.ttf", "500italic"=> "http://fonts.gstatic.com/s/vollkorn/v11/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DJ0WmmZM7Xq34g9.ttf", "600italic"=> "http://fonts.gstatic.com/s/vollkorn/v11/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DKYXWmZM7Xq34g9.ttf", "700italic"=> "http://fonts.gstatic.com/s/vollkorn/v11/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DKhXWmZM7Xq34g9.ttf", "800italic"=> "http://fonts.gstatic.com/s/vollkorn/v11/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DLGXWmZM7Xq34g9.ttf", "900italic"=> "http://fonts.gstatic.com/s/vollkorn/v11/0ybuGDoxxrvAnPhYGxksckM2WMCpRjDj-DLvXWmZM7Xq34g9.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 967 => [ "family"=> "Vollkorn SC", "variants"=> [ 0=> "regular", 1=> "600", 2=> "700", 3=> "900", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "latin", 3=> "latin-ext", 4=> "vietnamese", ], "version"=> "v3", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/vollkornsc/v3/j8_v6-zQ3rXpceZj9cqnVhF5NH-iSq_E.ttf", "600"=> "http://fonts.gstatic.com/s/vollkornsc/v3/j8_y6-zQ3rXpceZj9cqnVimhGluqYbPN5Yjn.ttf", "700"=> "http://fonts.gstatic.com/s/vollkornsc/v3/j8_y6-zQ3rXpceZj9cqnVinFG1uqYbPN5Yjn.ttf", "900"=> "http://fonts.gstatic.com/s/vollkornsc/v3/j8_y6-zQ3rXpceZj9cqnVin9GVuqYbPN5Yjn.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 968 => [ "family"=> "Voltaire", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/voltaire/v9/1Pttg8PcRfSblAvGvQooYKVnBOif.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 969 => [ "family"=> "Waiting for the Sunrise", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/waitingforthesunrise/v10/WBL1rFvOYl9CEv2i1mO6KUW8RKWJ2zoXoz5JsYZQ9h_ZYk5J.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 970 => [ "family"=> "Wallpoet", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v11", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/wallpoet/v11/f0X10em2_8RnXVVdUNbu7cXP8L8G.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 971 => [ "family"=> "Walter Turncoat", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/walterturncoat/v10/snfys0Gs98ln43n0d-14ULoToe67YB2dQ5ZPqQ.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 972 => [ "family"=> "Warnes", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/warnes/v9/pONn1hc0GsW6sW5OpiC2o6Lkqg.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 973 => [ "family"=> "Wellfleet", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/wellfleet/v7/nuF7D_LfQJb3VYgX6eyT42aLDhO2HA.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 974 => [ "family"=> "Wendy One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/wendyone/v8/2sDcZGJOipXfgfXV5wgDb2-4C7wFZQ.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 975 => [ "family"=> "Wire One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/wireone/v10/qFdH35Wah5htUhV75WGiWdrCwwcJ.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 976 => [ "family"=> "Work Sans", "variants"=> [ 0=> "100", 1=> "200", 2=> "300", 3=> "regular", 4=> "500", 5=> "600", 6=> "700", 7=> "800", 8=> "900", 9=> "100italic", 10=> "200italic", 11=> "300italic", 12=> "italic", 13=> "500italic", 14=> "600italic", 15=> "700italic", 16=> "800italic", 17=> "900italic", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", 2=> "vietnamese", ], "version"=> "v7", "lastModified"=> "2020-03-20", "files"=> [ "100"=> "http://fonts.gstatic.com/s/worksans/v7/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K0nWNigDp6_cOyA.ttf", "200"=> "http://fonts.gstatic.com/s/worksans/v7/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K8nXNigDp6_cOyA.ttf", "300"=> "http://fonts.gstatic.com/s/worksans/v7/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32KxfXNigDp6_cOyA.ttf", "regular"=> "http://fonts.gstatic.com/s/worksans/v7/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K0nXNigDp6_cOyA.ttf", "500"=> "http://fonts.gstatic.com/s/worksans/v7/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K3vXNigDp6_cOyA.ttf", "600"=> "http://fonts.gstatic.com/s/worksans/v7/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K5fQNigDp6_cOyA.ttf", "700"=> "http://fonts.gstatic.com/s/worksans/v7/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K67QNigDp6_cOyA.ttf", "800"=> "http://fonts.gstatic.com/s/worksans/v7/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K8nQNigDp6_cOyA.ttf", "900"=> "http://fonts.gstatic.com/s/worksans/v7/QGY_z_wNahGAdqQ43RhVcIgYT2Xz5u32K-DQNigDp6_cOyA.ttf", "100italic"=> "http://fonts.gstatic.com/s/worksans/v7/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGU3moJo43ZKyDSQQ.ttf", "200italic"=> "http://fonts.gstatic.com/s/worksans/v7/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUXmsJo43ZKyDSQQ.ttf", "300italic"=> "http://fonts.gstatic.com/s/worksans/v7/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUgGsJo43ZKyDSQQ.ttf", "italic"=> "http://fonts.gstatic.com/s/worksans/v7/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGU3msJo43ZKyDSQQ.ttf", "500italic"=> "http://fonts.gstatic.com/s/worksans/v7/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGU7GsJo43ZKyDSQQ.ttf", "600italic"=> "http://fonts.gstatic.com/s/worksans/v7/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUAGwJo43ZKyDSQQ.ttf", "700italic"=> "http://fonts.gstatic.com/s/worksans/v7/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUOWwJo43ZKyDSQQ.ttf", "800italic"=> "http://fonts.gstatic.com/s/worksans/v7/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUXmwJo43ZKyDSQQ.ttf", "900italic"=> "http://fonts.gstatic.com/s/worksans/v7/QGY9z_wNahGAdqQ43Rh_ebrnlwyYfEPxPoGUd2wJo43ZKyDSQQ.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 977 => [ "family"=> "Yanone Kaffeesatz", "variants"=> [ 0=> "200", 1=> "300", 2=> "regular", 3=> "500", 4=> "600", 5=> "700", ], "subsets"=> [ 0=> "cyrillic", 1=> "latin", 2=> "latin-ext", 3=> "vietnamese", ], "version"=> "v14", "lastModified"=> "2020-02-05", "files"=> [ "200"=> "http://fonts.gstatic.com/s/yanonekaffeesatz/v14/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftodtWpcGuLCnXkVA.ttf", "300"=> "http://fonts.gstatic.com/s/yanonekaffeesatz/v14/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftoqNWpcGuLCnXkVA.ttf", "regular"=> "http://fonts.gstatic.com/s/yanonekaffeesatz/v14/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIfto9tWpcGuLCnXkVA.ttf", "500"=> "http://fonts.gstatic.com/s/yanonekaffeesatz/v14/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftoxNWpcGuLCnXkVA.ttf", "600"=> "http://fonts.gstatic.com/s/yanonekaffeesatz/v14/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftoKNKpcGuLCnXkVA.ttf", "700"=> "http://fonts.gstatic.com/s/yanonekaffeesatz/v14/3y9I6aknfjLm_3lMKjiMgmUUYBs04aUXNxt9gW2LIftoEdKpcGuLCnXkVA.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 978 => [ "family"=> "Yantramanav", "variants"=> [ 0=> "100", 1=> "300", 2=> "regular", 3=> "500", 4=> "700", 5=> "900", ], "subsets"=> [ 0=> "devanagari", 1=> "latin", 2=> "latin-ext", ], "version"=> "v5", "lastModified"=> "2019-07-16", "files"=> [ "100"=> "http://fonts.gstatic.com/s/yantramanav/v5/flU-Rqu5zY00QEpyWJYWN5-QXeNzDB41rZg.ttf", "300"=> "http://fonts.gstatic.com/s/yantramanav/v5/flUhRqu5zY00QEpyWJYWN59Yf8NZIhI8tIHh.ttf", "regular"=> "http://fonts.gstatic.com/s/yantramanav/v5/flU8Rqu5zY00QEpyWJYWN6f0V-dRCQ41.ttf", "500"=> "http://fonts.gstatic.com/s/yantramanav/v5/flUhRqu5zY00QEpyWJYWN58AfsNZIhI8tIHh.ttf", "700"=> "http://fonts.gstatic.com/s/yantramanav/v5/flUhRqu5zY00QEpyWJYWN59IeMNZIhI8tIHh.ttf", "900"=> "http://fonts.gstatic.com/s/yantramanav/v5/flUhRqu5zY00QEpyWJYWN59wesNZIhI8tIHh.ttf", ], "category"=> "sans-serif", "kind"=> "webfonts#webfont" ], 979 => [ "family"=> "Yatra One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "devanagari", 1=> "latin", 2=> "latin-ext", ], "version"=> "v6", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/yatraone/v6/C8ch4copsHzj8p7NaF0xw1OBbRDvXw.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 980 => [ "family"=> "Yellowtail", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v10", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/yellowtail/v10/OZpGg_pnoDtINPfRIlLotlzNwED-b4g.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 981 => [ "family"=> "Yeon Sung", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "korean", 1=> "latin", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/yeonsung/v8/QldMNTpbohAGtsJvUn6xSVNazqx2xg.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 982 => [ "family"=> "Yeseva One", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "cyrillic", 1=> "cyrillic-ext", 2=> "latin", 3=> "latin-ext", 4=> "vietnamese", ], "version"=> "v14", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/yesevaone/v14/OpNJno4ck8vc-xYpwWWxpipfWhXD00c.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 983 => [ "family"=> "Yesteryear", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v8", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/yesteryear/v8/dg4g_p78rroaKl8kRKo1r7wHTwonmyw.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 984 => [ "family"=> "Yrsa", "variants"=> [ 0=> "300", 1=> "regular", 2=> "500", 3=> "600", 4=> "700", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v5", "lastModified"=> "2019-07-16", "files"=> [ "300"=> "http://fonts.gstatic.com/s/yrsa/v5/wlpxgwnQFlxs3af93IQ73W5OcCk.ttf", "regular"=> "http://fonts.gstatic.com/s/yrsa/v5/wlp-gwnQFlxs5QvV-IwQwWc.ttf", "500"=> "http://fonts.gstatic.com/s/yrsa/v5/wlpxgwnQFlxs3f_83IQ73W5OcCk.ttf", "600"=> "http://fonts.gstatic.com/s/yrsa/v5/wlpxgwnQFlxs3dP73IQ73W5OcCk.ttf", "700"=> "http://fonts.gstatic.com/s/yrsa/v5/wlpxgwnQFlxs3bf63IQ73W5OcCk.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 985 => [ "family"=> "ZCOOL KuaiLe", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "chinese-simplified", 1=> "latin", ], "version"=> "v5", "lastModified"=> "2019-11-05", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/zcoolkuaile/v5/tssqApdaRQokwFjFJjvM6h2WpozzoXhC2g.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 986 => [ "family"=> "ZCOOL QingKe HuangYou", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "chinese-simplified", 1=> "latin", ], "version"=> "v5", "lastModified"=> "2019-11-05", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/zcoolqingkehuangyou/v5/2Eb5L_R5IXJEWhD3AOhSvFC554MOOahI4mRIi_28c8bHWA.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ], 987 => [ "family"=> "ZCOOL XiaoWei", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "chinese-simplified", 1=> "latin", ], "version"=> "v5", "lastModified"=> "2019-11-05", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/zcoolxiaowei/v5/i7dMIFFrTRywPpUVX9_RJyM1YFKQHwyVd3U.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 988 => [ "family"=> "Zeyada", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "latin", ], "version"=> "v9", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/zeyada/v9/11hAGpPTxVPUbgZDNGatWKaZ3g.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 989 => [ "family"=> "Zhi Mang Xing", "variants"=> [ 0=> "regular", ], "subsets"=> [ 0=> "chinese-simplified", 1=> "latin", ], "version"=> "v5", "lastModified"=> "2019-11-05", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/zhimangxing/v5/f0Xw0ey79sErYFtWQ9a2rq-g0actfektIJ0.ttf", ], "category"=> "handwriting", "kind"=> "webfonts#webfont" ], 990 => [ "family"=> "Zilla Slab", "variants"=> [ 0=> "300", 1=> "300italic", 2=> "regular", 3=> "italic", 4=> "500", 5=> "500italic", 6=> "600", 7=> "600italic", 8=> "700", 9=> "700italic" ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v5", "lastModified"=> "2019-07-17", "files"=> [ "300"=> "http://fonts.gstatic.com/s/zillaslab/v5/dFa5ZfeM_74wlPZtksIFYpEY2HSjWlhzbaw.ttf", "300italic"=> "http://fonts.gstatic.com/s/zillaslab/v5/dFanZfeM_74wlPZtksIFaj8CVHapXnp2fazkfg.ttf", "regular"=> "http://fonts.gstatic.com/s/zillaslab/v5/dFa6ZfeM_74wlPZtksIFWj0w_HyIRlE.ttf", "italic"=> "http://fonts.gstatic.com/s/zillaslab/v5/dFa4ZfeM_74wlPZtksIFaj86-F6NVlFqdA.ttf", "500"=> "http://fonts.gstatic.com/s/zillaslab/v5/dFa5ZfeM_74wlPZtksIFYskZ2HSjWlhzbaw.ttf", "500italic"=> "http://fonts.gstatic.com/s/zillaslab/v5/dFanZfeM_74wlPZtksIFaj8CDHepXnp2fazkfg.ttf", "600"=> "http://fonts.gstatic.com/s/zillaslab/v5/dFa5ZfeM_74wlPZtksIFYuUe2HSjWlhzbaw.ttf", "600italic"=> "http://fonts.gstatic.com/s/zillaslab/v5/dFanZfeM_74wlPZtksIFaj8CIHCpXnp2fazkfg.ttf", "700"=> "http://fonts.gstatic.com/s/zillaslab/v5/dFa5ZfeM_74wlPZtksIFYoEf2HSjWlhzbaw.ttf", "700italic"=> "http://fonts.gstatic.com/s/zillaslab/v5/dFanZfeM_74wlPZtksIFaj8CRHGpXnp2fazkfg.ttf", ], "category"=> "serif", "kind"=> "webfonts#webfont" ], 991 => [ "family"=> "Zilla Slab Highlight", "variants"=> [ 0=> "regular", 1=> "700", ], "subsets"=> [ 0=> "latin", 1=> "latin-ext", ], "version"=> "v7", "lastModified"=> "2019-07-16", "files"=> [ "regular"=> "http://fonts.gstatic.com/s/zillaslabhighlight/v7/gNMbW2BrTpK8-inLtBJgMMfbm6uNVDvRxhtIY2DwSXlM.ttf", "700"=> "http://fonts.gstatic.com/s/zillaslabhighlight/v7/gNMUW2BrTpK8-inLtBJgMMfbm6uNVDvRxiP0TET4YmVF0Mb6.ttf", ], "category"=> "display", "kind"=> "webfonts#webfont" ] ]; ================================================ FILE: app/inc/onepager-settings.php ================================================ set_sections($tabs); $settings_api->set_fields($fields); //initialize them $settings_api->admin_init(); }); } /** * Register the plugin page */ function onepager_admin_menu() { add_options_page('Settings API', 'Settings API', 'delete_posts', 'settings_api_test', 'onepager_settings_page'); } add_action('admin_menu', 'onepager_admin_menu'); /** * Display the plugin settings options page */ function onepager_settings_page() { $settings_api = getWeDevsSettingAPI(); echo '
'; settings_errors(); $settings_api->show_navigation(); $settings_api->show_forms(); echo '
'; } /** * Get the value of a settings field * * @param string $option settings field name * @param string $section the section name this field belongs to * @param string $default default text if it's not found * @return mixed */ function get_onepager_option($option, $section, $default = '') { $options = get_option($section); if (isset($options[$option])) { return $options[$option]; } return $default; } ================================================ FILE: app/inc/support.php ================================================

hello world

"; * }); * * @return mixed */ function get_editor_section_list_footer() { $footer = ' Video Tutorial '; $footer .= ' Documentation '; return apply_filters( 'editor_section_list_footer', $footer ); } add_filter( 'upload_mimes', function ( $mimes ) { $mimes['svg'] = 'image/svg+xml'; return $mimes; } ); ================================================ FILE: app/templates/builder.php ================================================ > Onepage builder - <?php wp_title(); ?>
Initializing Onepager
================================================ FILE: app/templates/my-test.php ================================================ > <?php echo wp_get_document_title(); ?> >
================================================ FILE: app/templates/onepager-default.php ================================================ 'blog-1', // Must be unique and singular 'groups' => array('blogs'), // Blocks group for filter and plural // Fields - $contents available on view file to access the option 'contents' => array( array( 'name' => 'title', 'value' => 'Latest Thoughts', ), array( 'name' => 'description', 'type' => 'textarea', 'value' => 'Latest posts from our blog', ), array( 'name' => 'category', 'type' => 'category', ), array( 'name' => 'total_posts', 'label' => 'Total Posts', 'value' => '3', ), array( 'name' => 'text_limit', 'label' => 'Excerpt Length', 'value' => 20, ), array('name' => 'thumbnail_enable', 'label' => 'Thumbnail', 'type' => 'switch', 'value' => 'yes', ), array( 'name' => 'readmore_text', 'label' => 'Read More', 'value' => 'Read More', ), ), // Settings - $settings available on view file to access the option 'settings' => array( array('label' => 'Heading', 'type' => 'divider'), array( 'name' => 'heading_type', 'label' => 'Heading Type', 'type' => 'select', 'value' => 'h1', 'options' => array( 'h1' => 'h1', 'h2' => 'h2', 'h3' => 'h3', 'h4' => 'h4', 'h5' => 'h5', 'h6' => 'h6', ), ), array( 'name' => 'section_title_size', 'label' => 'Title Size', 'append' => 'px', 'value' => '@section_title_size', ), array( 'name' => 'title_transformation', 'label' => 'Title Transformation', 'type' => 'select', 'value' => 'inherit', 'options' => array( 'inherit' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'title_alignment', 'label' => 'Title Alignment', 'type' => 'select', 'value' => 'center', 'options' => array( 'left' => 'Left', 'center' => 'Center', 'right' => 'Right', 'justify' => 'Justify', ), ), array( 'name' => 'desc_size', 'label' => 'Desc Size', 'append' => 'px', 'value' => '18', ), array( 'name' => 'title_animation', 'label' => 'Animation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), array('label' => 'Items', 'type' => 'divider'), array( 'name' => 'media_alignment', 'label' => 'Media Alignment', 'type' => 'select', 'value' => 'left', 'options' => array( 'left' => 'Left', 'right' => 'Right', ), ), array( 'name' => 'item_title_size', 'label' => 'Title Size', 'append' => 'px', 'value' => '32', ), array( 'name' => 'item_title_transformation', 'label' => 'Transformation', 'type' => 'select', 'value' => 'inherit', 'options' => array( 'inherit' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'item_desc_size', 'label' => 'Item Desc Size', 'append' => 'px', 'value' => '16', ), array( 'name' => 'item_animation', 'label' => 'Animation Item', 'type' => 'select', 'value' => 'fadeInUp', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), ), // Fields - $styles available on view file to access the option 'styles' => array( array( 'name' => 'bg_color', 'label' => 'Background Color', 'type' => 'colorpicker', 'value' => '#fff', ), array('label' => 'Heading', 'type' => 'divider'), array( 'name' => 'section_title_color', 'label' => 'Title Color', 'type' => 'colorpicker', 'value' => '#323232', ), array( 'name' => 'desc_color', 'label' => 'Desc Color', 'type' => 'colorpicker', 'value' => '#323232', ), array('label' => 'Items', 'type' => 'divider'), array( 'name' => 'item_title_color', 'label' => 'Item Title Color', 'type' => 'colorpicker', 'value' => '#323232', ), array( 'name' => 'item_desc_color', 'label' => 'Item Desc Color', 'type' => 'colorpicker', 'value' => '#323232', ), array( 'name' => 'link_color', 'label' => 'Link Color', 'type' => 'colorpicker', 'value' => '#4cb257', ), ), // 'assets' => function( $path ){ // Onepager::addStyle('blog-1', $path . '/style.css'); // } ); ================================================ FILE: blocks/blogs/blog-1/style.css ================================================ .blog-1{ padding-top: 80px; padding-bottom: 80px;} .blog-1 .uk-card { overflow: hidden; } .blog-1 .uk-card .post-thumb, .blog-1 .uk-card .post-thumb figure{ transition: all 0.3s ease; overflow: hidden; max-height: 300px; } .blog-1 .uk-card .post-thumb img{ -webkit-transform: scale(1); transform: scale(1); transition: all 0.3s ease; } .blog-1 .uk-card:hover .post-thumb img{ -webkit-transform: scale(1.1); transform: scale(1.1); transition: all 0.3s ease; } .blog-1 .uk-card .uk-card-body .uk-text-small{ margin: -10px 0 20px; } ================================================ FILE: blocks/blogs/blog-1/style.php ================================================ #{ background-color : ; } # .section-heading .uk-heading-primary{ font-size : px; color : ; } # .section-heading .uk-text-lead{ font-size : px; color : ; } # .uk-card .uk-card-body .uk-card-title a{ font-size : px; color : ; } # .uk-card .uk-card-body .uk-text-small{ font-size : px; color : ; } # .uk-card .uk-card-body .uk-card-title a:hover{ color : ; text-decoration:none; } # .uk-card .uk-card-body a, # .uk-card .uk-card-body a:hover{ color : ; text-decoration:none; } # .uk-button-text::before{ bottom: -5px; border-bottom : 1px solid ; } @media(max-width:768px){ # .section-heading .uk-heading-primary{ font-size : px; } } ================================================ FILE: blocks/blogs/blog-1/view.php ================================================ .uk-card; delay:200;"' : ''; // Arguments $args = array( 'posts_per_page' => $contents['total_posts'], 'cat' => $contents['category'], ); // Build query $query = new WP_Query( $args ); ?>
>
> have_posts() ) : ?> have_posts() ) : $query->the_post(); ?>
================================================ FILE: blocks/blogs/blog-2/config.php ================================================ 'blog-2', // Must be unique and singular 'groups' => array('blogs'), // Blocks group for filter and plural // Fields - $contents available on view file to access the option 'contents' => array( array( 'name' => 'title', 'value' => 'Our Blogs', ), array( 'name' => 'description', 'type' => 'textarea', 'value' => 'There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form by injected humor or randomized words which don\'t look even slightly believable.', ), array( 'name' => 'category', 'type' => 'category', ), array( 'name' => 'total_posts', 'label' => 'Total Posts', 'value' => '4', ), array( 'name' => 'text_limit', 'label' => 'Excerpt Length', 'value' => 20, ), array('name' => 'thumbnail_enable', 'label' => 'Thumbnail', 'type' => 'switch', 'value' => 'yes', ), array( 'name' => 'readmore_text', 'label' => 'Read More', 'value' => 'Read More', ), ), // Settings - $settings available on view file to access the option 'settings' => array( array('label' => 'Heading', 'type' => 'divider'), array( 'name' => 'heading_type', 'label' => 'Heading Type', 'type' => 'select', 'value' => 'h1', 'options' => array( 'h1' => 'h1', 'h2' => 'h2', 'h3' => 'h3', 'h4' => 'h4', 'h5' => 'h5', 'h6' => 'h6', ), ), array( 'name' => 'section_title_size', 'label' => 'Title Size', 'append' => 'px', 'value' => '@section_title_size', ), array( 'name' => 'title_transformation', 'label' => 'Title Transformation', 'type' => 'select', 'value' => 'uppercase', 'options' => array( 'inherit' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'title_alignment', 'label' => 'Title Alignment', 'type' => 'select', 'value' => 'center', 'options' => array( 'left' => 'Left', 'center' => 'Center', 'right' => 'Right', 'justify' => 'Justify', ), ), array( 'name' => 'desc_size', 'label' => 'Desc Size', 'append' => 'px', 'value' => '18', ), array( 'name' => 'title_animation', 'label' => 'Animation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), array('label' => 'Items', 'type' => 'divider'), array( 'name' => 'item_title_size', 'label' => 'Title Size', 'append' => 'px', 'value' => '28', ), array( 'name' => 'item_desc_size', 'label' => 'Item Desc Size', 'append' => 'px', 'value' => '16', ), array( 'name' => 'item_title_transformation', 'label' => 'Transformation', 'type' => 'select', 'value' => 'uppercase', 'options' => array( 'inherit' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'item_animation', 'label' => 'Animation Item', 'type' => 'select', 'value' => 'fadeInUp', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), ), // Fields - $styles available on view file to access the option 'styles' => array( array( 'name' => 'bg_color', 'label' => 'Background Color', 'type' => 'colorpicker', 'value' => '#fff', ), array( 'name' => 'bg_image', 'label' => 'Background', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2019/07/blog-bg-1.png' ), array('label' => 'Heading', 'type' => 'divider'), array( 'name' => 'section_title_color', 'label' => 'Title Color', 'type' => 'colorpicker', 'value' => '#2D3436', ), array( 'name' => 'desc_color', 'label' => 'Desc Color', 'type' => 'colorpicker', 'value' => '#2D3436', ), array('label' => 'Items', 'type' => 'divider'), array( 'name' => 'item_title_color', 'label' => 'Item Title Color', 'type' => 'colorpicker', 'value' => '#ffffff', ), array( 'name' => 'item_desc_color', 'label' => 'Item Desc Color', 'type' => 'colorpicker', 'value' => '#f5f5f5', ), array( 'name' => 'link_color', 'label' => 'Link Color', 'type' => 'colorpicker', 'value' => '#ffffff', ), ), // 'assets' => function( $path ){ // Onepager::addStyle('blog-1', $path . '/style.css'); // } ); ================================================ FILE: blocks/blogs/blog-2/style.css ================================================ .blog-1{ padding-top: 80px; padding-bottom: 80px;} .blog-1 .uk-card { overflow: hidden; } .blog-1 .uk-card .post-thumb, .blog-1 .uk-card .post-thumb figure{ transition: all 0.3s ease; overflow: hidden; max-height: 300px; } .blog-1 .uk-card .post-thumb img{ -webkit-transform: scale(1); transform: scale(1); transition: all 0.3s ease; } .blog-1 .uk-card:hover .post-thumb img{ -webkit-transform: scale(1.1); transform: scale(1.1); transition: all 0.3s ease; } .blog-1 .uk-card .uk-card-body .uk-text-small{ margin: -10px 0 20px; } ================================================ FILE: blocks/blogs/blog-2/style.php ================================================ #{ background-color : ; } # .section-heading .uk-heading-primary{ font-size : px; color : ; } # .section-heading .uk-text-lead{ font-size : px; color : ; } # .uk-card .uk-card-body .uk-card-title a{ font-size : px; color : ; } # .uk-card .uk-card-body .uk-text-small{ font-size : px; color : ; } # .uk-card .uk-card-body .uk-card-title a:hover{ color : ; text-decoration:none; } # .uk-card .uk-card-body a, # .uk-card .uk-card-body a:hover{ color : ; text-decoration:none; } # .uk-button-text::before{ bottom: -5px; border-bottom : 1px solid ; } @media(max-width:768px){ # .section-heading .uk-heading-primary{ font-size : px; } } ================================================ FILE: blocks/blogs/blog-2/view.php ================================================ .uk-card; delay:200;"' : ''; // Arguments $args = array( 'posts_per_page' => $contents['total_posts'], 'cat' => $contents['category'], ); // Build query $query = new WP_Query( $args ); ?>
>
class="section-background uk-background-norepeat uk-background-center-center uk-background-contain uk-margin-medium-top" data-src="" uk-img>
have_posts() ) : ?> have_posts() ) : $query->the_post(); $customValues = array(); $customValues['counter'] = $i; if($customValues['counter'] < 9 ) { $customValues['counter'] = "0" . $i; } if($i % 2 == 0) { $customValues['order'] = ''; $customValues['class'] = 'right'; $customValues['margin'] = 'uk-margin-xlarge-top'; }else{ $customValues['class'] = ''; $customValues['order'] = 'uk-flex-last@s'; $customValues['margin'] = ''; } ?>

================================================ FILE: blocks/blogs/blog-3/config.php ================================================ 'blog-3', // Must be unique and singular 'groups' => array('blogs'), // Blocks group for filter and plural // Fields - $contents available on view file to access the option 'contents' => array( array( 'name' => 'title', 'value' => 'Our Blogs', ), array( 'name' => 'description', 'type' => 'textarea', 'value' => 'There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form by injected humor or randomized words which don\'t look even slightly believable.', ), array( 'name' => 'category', 'type' => 'category', ), array( 'name' => 'total_posts', 'label' => 'Total Posts', 'value' => '3', ), array( 'name' => 'text_limit', 'label' => 'Excerpt Length', 'value' => 20, ), array('name' => 'thumbnail_enable', 'label' => 'Thumbnail', 'type' => 'switch', 'value' => 'yes', ), array( 'name' => 'readmore_text', 'label' => 'Read More', 'value' => 'Read More', ), ), // Settings - $settings available on view file to access the option 'settings' => array( array('label' => 'Heading', 'type' => 'divider'), array( 'name' => 'heading_type', 'label' => 'Heading Type', 'type' => 'select', 'value' => 'h1', 'options' => array( 'h1' => 'h1', 'h2' => 'h2', 'h3' => 'h3', 'h4' => 'h4', 'h5' => 'h5', 'h6' => 'h6', ), ), array( 'name' => 'section_title_size', 'label' => 'Title Size', 'append' => 'px', 'value' => '@section_title_size', ), array( 'name' => 'title_transformation', 'label' => 'Title Transformation', 'type' => 'select', 'value' => 'uppercase', 'options' => array( 'inherit' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'title_alignment', 'label' => 'Title Alignment', 'type' => 'select', 'value' => 'center', 'options' => array( 'left' => 'Left', 'center' => 'Center', 'right' => 'Right', 'justify' => 'Justify', ), ), array( 'name' => 'desc_size', 'label' => 'Desc Size', 'append' => 'px', 'value' => '18', ), array( 'name' => 'title_animation', 'label' => 'Animation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), array('label' => 'Items', 'type' => 'divider'), array( 'name' => 'item_title_size', 'label' => 'Title Size', 'append' => 'px', 'value' => '32', ), array( 'name' => 'item_desc_size', 'label' => 'Item Desc Size', 'append' => 'px', 'value' => '16', ), array( 'name' => 'item_title_transformation', 'label' => 'Transformation', 'type' => 'select', 'value' => 'uppercase', 'options' => array( 'inherit' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'item_animation', 'label' => 'Animation Item', 'type' => 'select', 'value' => 'fadeInUp', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), ), // Fields - $styles available on view file to access the option 'styles' => array( array( 'name' => 'bg_color', 'label' => 'Background Color', 'type' => 'colorpicker', 'value' => '#fff', ), array( 'name' => 'bg_image', 'label' => 'Background', 'type' => 'image', 'value' => '' ), array('label' => 'Heading', 'type' => 'divider'), array( 'name' => 'section_title_color', 'label' => 'Title Color', 'type' => 'colorpicker', 'value' => '#323232', ), array( 'name' => 'desc_color', 'label' => 'Desc Color', 'type' => 'colorpicker', 'value' => '#323232', ), array('label' => 'Items', 'type' => 'divider'), array( 'name' => 'item_title_color', 'label' => 'Item Title Color', 'type' => 'colorpicker', 'value' => '#323232', ), array( 'name' => 'item_desc_color', 'label' => 'Item Desc Color', 'type' => 'colorpicker', 'value' => '#323232', ), array( 'name' => 'link_color', 'label' => 'Link Color', 'type' => 'colorpicker', 'value' => '#4cb257', ), ), // 'assets' => function( $path ){ // Onepager::addStyle('blog-1', $path . '/style.css'); // } ); ================================================ FILE: blocks/blogs/blog-3/style.css ================================================ .blog-1{ padding-top: 80px; padding-bottom: 80px;} .blog-1 .uk-card { overflow: hidden; } .blog-1 .uk-card .post-thumb, .blog-1 .uk-card .post-thumb figure{ transition: all 0.3s ease; overflow: hidden; max-height: 300px; } .blog-1 .uk-card .post-thumb img{ -webkit-transform: scale(1); transform: scale(1); transition: all 0.3s ease; } .blog-1 .uk-card:hover .post-thumb img{ -webkit-transform: scale(1.1); transform: scale(1.1); transition: all 0.3s ease; } .blog-1 .uk-card .uk-card-body .uk-text-small{ margin: -10px 0 20px; } ================================================ FILE: blocks/blogs/blog-3/style.php ================================================ #{ background-color : ; } # .section-heading .uk-heading-primary{ font-size : px; color : ; } # .section-heading .uk-text-lead{ font-size : px; color : ; } # .uk-card .uk-card-body .uk-card-title a{ font-size : px; color : ; } # .uk-card .uk-card-body .uk-text-small{ font-size : px; color : ; } # .uk-card .uk-card-body .uk-card-title a:hover{ color : ; text-decoration:none; } # .uk-card .uk-card-body a, # .uk-card .uk-card-body a:hover{ color : ; text-decoration:none; } # .uk-button-text::before{ bottom: -5px; border-bottom : 1px solid ; } # .uk-label{ background: #ffffff; color: #333333; padding: 10px 20px; } # .uk-card-badge{ left: 0px; bottom:0px; right: inherit; top: inherit; } @media(max-width:768px){ # .section-heading .uk-heading-primary{ font-size : px; } } ================================================ FILE: blocks/blogs/blog-3/view.php ================================================ .uk-card; delay:200;"' : ''; // Arguments $args = array( 'posts_per_page' => $contents['total_posts'], 'cat' => $contents['category'], ); // Build query $query = new WP_Query( $args ); ?>
>
have_posts() ) : ?> have_posts() ) : $query->the_post(); ?>

================================================ FILE: blocks/blogs/blog-4/config.php ================================================ 'blog-4', // Must be unique and singular 'groups' => array('blogs'), // Blocks group for filter and plural // Fields - $contents available on view file to access the option 'contents' => array( array( 'name' => 'title', 'value' => 'Our Blogs', ), array( 'name' => 'description', 'type' => 'textarea', 'value' => 'There are many variations of passages of Lorem Ipsum available, but the majority have suffered alteration in some form by injected humor or randomized words which don\'t look even slightly believable.', ), array( 'name' => 'category', 'type' => 'category', ), array( 'name' => 'total_posts', 'label' => 'Total Posts', 'value' => '2', ), array( 'name' => 'text_limit', 'label' => 'Excerpt Length', 'value' => 20, ), array('name' => 'thumbnail_enable', 'label' => 'Thumbnail', 'type' => 'switch', 'value' => 'yes', ), array( 'name' => 'readmore_text', 'label' => 'Read More', 'value' => 'Read More', ), ), // Settings - $settings available on view file to access the option 'settings' => array( array('label' => 'Heading', 'type' => 'divider'), array( 'name' => 'heading_type', 'label' => 'Heading Type', 'type' => 'select', 'value' => 'h1', 'options' => array( 'h1' => 'h1', 'h2' => 'h2', 'h3' => 'h3', 'h4' => 'h4', 'h5' => 'h5', 'h6' => 'h6', ), ), array( 'name' => 'section_title_size', 'label' => 'Title Size', 'append' => 'px', 'value' => '44', ), array( 'name' => 'title_transformation', 'label' => 'Title Transformation', 'type' => 'select', 'value' => 'inherit', 'options' => array( 'inherit' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'title_alignment', 'label' => 'Title Alignment', 'type' => 'select', 'value' => 'center', 'options' => array( 'left' => 'Left', 'center' => 'Center', 'right' => 'Right', 'justify' => 'Justify', ), ), array( 'name' => 'desc_size', 'label' => 'Desc Size', 'append' => 'px', 'value' => '18', ), array( 'name' => 'title_animation', 'label' => 'Animation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), array('label' => 'Items', 'type' => 'divider'), array( 'name' => 'min_height', 'label' => 'Minimum Box Height', 'append' => 'px', 'type' => 'text', 'value' => '450' ), array( 'name' => 'item_title_size', 'label' => 'Title Size', 'append' => 'px', 'value' => '32', ), array( 'name' => 'item_desc_size', 'label' => 'Item Desc Size', 'append' => 'px', 'value' => '16', ), array( 'name' => 'item_title_transformation', 'label' => 'Transformation', 'type' => 'select', 'value' => 'uppercase', 'options' => array( 'inherit' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'item_animation', 'label' => 'Animation Item', 'type' => 'select', 'value' => 'fadeInUp', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), ), // Fields - $styles available on view file to access the option 'styles' => array( array( 'name' => 'bg_color', 'label' => 'Background Color', 'type' => 'colorpicker', 'value' => '#fff', ), array( 'name' => 'bg_image', 'label' => 'Background', 'type' => 'image', 'value' => '' ), array( 'name' => 'bg_box', 'label' => 'Box Background Color', 'type' => 'colorpicker', 'value' => '#ffffff', ), array( 'name' => 'bg_box_shadow', 'label' => 'Box Shadow Color', 'type' => 'colorpicker', 'value' => '#dddddd', ), array('label' => 'Heading', 'type' => 'divider'), array( 'name' => 'section_title_color', 'label' => 'Title Color', 'type' => 'colorpicker', 'value' => '#323232', ), array( 'name' => 'desc_color', 'label' => 'Desc Color', 'type' => 'colorpicker', 'value' => '#323232', ), array('label' => 'Items', 'type' => 'divider'), array( 'name' => 'item_title_color', 'label' => 'Item Title Color', 'type' => 'colorpicker', 'value' => '#323232', ), array( 'name' => 'item_desc_color', 'label' => 'Item Desc Color', 'type' => 'colorpicker', 'value' => '#323232', ), array( 'name' => 'link_color', 'label' => 'Link Color', 'type' => 'colorpicker', 'value' => '#323232', ), array( 'name' => 'link_hover', 'label' => 'Link Hover Color', 'type' => 'colorpicker', 'value' => '#006FF0', ), ), // 'assets' => function( $path ){ // Onepager::addStyle('blog-1', $path . '/style.css'); // } ); ================================================ FILE: blocks/blogs/blog-4/style.css ================================================ .blog-1{ padding-top: 80px; padding-bottom: 80px;} .blog-1 .uk-card { overflow: hidden; } .blog-1 .uk-card .post-thumb, .blog-1 .uk-card .post-thumb figure{ transition: all 0.3s ease; overflow: hidden; max-height: 300px; } .blog-1 .uk-card .post-thumb img{ -webkit-transform: scale(1); transform: scale(1); transition: all 0.3s ease; } .blog-1 .uk-card:hover .post-thumb img{ -webkit-transform: scale(1.1); transform: scale(1.1); transition: all 0.3s ease; } .blog-1 .uk-card .uk-card-body .uk-text-small{ margin: -10px 0 20px; } ================================================ FILE: blocks/blogs/blog-4/style.php ================================================ #{ background-color : ; } # .section-heading .uk-heading-primary{ font-size : px; color : ; } # .section-heading .uk-text-lead{ font-size : px; color : ; } # .box-wrapper { width: 100%; height: 100%; } # .box-wrapper .content-wrapper h2 { font-size: ; color: ; } # .box-wrapper .content-wrapper p { font-size: ; color: ; } # .box-wrapper .content-wrapper a { display: block; color: ; text-decoration: none; transition: 300ms ease-in-out; } # .box-wrapper .content-wrapper h2 a:hover{ color: ; } # .box-wrapper .content-wrapper .uk-label.category{ background: ; } # .content-wrapper { background-color: ; box-shadow: 0 1px 15px ; transition: 400ms ease-in-out; } # .box-wrapper:hover .content-wrapper { box-shadow: 0 1px 8px ; } # .box-wrapper .odd-box, # .box-wrapper .even-box{ min-height: ; } # .box-wrapper .odd-box { position: relative; width: 100%; height: 100%; } # .box-wrapper .odd-box .image-wrapper { width: 70%; position: absolute; top: 5%; left: 0; } # .box-wrapper .odd-box .image-wrapper img{ width: 100%; } # .box-wrapper .odd-box .content-wrapper { position: absolute; right: 5%; width: 70%; bottom: -5%; background: #ffffff; padding: 25px; border-radius: 5px; } # .box-wrapper .even-box { position: relative; width: 100%; height: 100%; } # .box-wrapper .even-box .content-wrapper { position: absolute; top: 0; left: 0; width: 70%; background: #ffffff; padding: 25px; border-radius: 5px; z-index: 99; } # .box-wrapper .even-box .image-wrapper { position: absolute; bottom: 0; right: 0; width: 70%; z-index: 1; } # .box-wrapper .even-box .image-wrapper img{ width: 100%; } # .uk-card .uk-card-body a, # .uk-card .uk-card-body a:hover{ color : ; text-decoration:none; } # .uk-button-text::before{ bottom: -5px; border-bottom : 1px solid ; } @media(max-width:768px){ # .section-heading .uk-heading-primary{ font-size : px; } } @media(max-width:640px){ # .box-wrapper .odd-box .image-wrapper, # .box-wrapper .even-box .image-wrapper { width: 85%; } } ================================================ FILE: blocks/blogs/blog-4/view.php ================================================ .uk-card; delay:200;"' : ''; // Arguments $args = array( 'posts_per_page' => $contents['total_posts'], 'cat' => $contents['category'], ); // Build query $query = new WP_Query( $args ); ?>
>
have_posts() ) : ?> have_posts() ) : $query->the_post(); $customOption = ''; ?>

name; ?>

name; ?>

================================================ FILE: blocks/blogs/blog-5/blog-5/config.php ================================================ 'blog-5', 'groups' => array('blogs'), // Fields - $contents available on view file to access the option 'contents' => array( array( 'name' => 'title', 'value' => 'Legal Advice', ), array( 'name' => 'category', 'type' => 'category', ), array( 'name' => 'total_posts', 'label' => 'Total Posts', 'value' => '2', ), array( 'name' => 'text_limit', 'label' => 'Excerpt Length', 'value' => 20, ), array( 'name' => 'readmore_text', 'label' => 'Read More', 'value' => 'Read More', ), ), 'settings' => array( array('label' => 'Heading', 'type' => 'divider'), array( 'name' => 'heading_type', 'label' => 'Heading Type', 'type' => 'select', 'value' => 'h1', 'options' => array( 'h1' => 'h1', 'h2' => 'h2', 'h3' => 'h3', 'h4' => 'h4', 'h5' => 'h5', 'h6' => 'h6', ), ), array( 'name' => 'section_title_size', 'label' => 'Title Size', 'append' => 'px', 'value' => '40', ), array( 'name' => 'section_title_font_weight', 'label' => 'Font Weight', 'type' => 'select', 'value' => '700', 'options' => array( '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'title_transformation', 'label' => 'Title Transformation', 'type' => 'select', 'value' => 'inherit', 'options' => array( 'inherit' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'title_alignment', 'label' => 'Title Alignment', 'type' => 'select', 'value' => 'center', 'options' => array( 'left' => 'Left', 'center' => 'Center', 'right' => 'Right', 'justify' => 'Justify', ), ), array( 'name' => 'title_animation', 'label' => 'Animation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), array('label' => 'Items', 'type' => 'divider'), array( 'name' => 'item_title_size', 'label' => 'Title Size', 'append' => 'px', 'value' => '22', ), array( 'name' => 'item_font_weight', 'label' => 'Item Font Weight', 'type' => 'select', 'value' => '600', 'options' => array( '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'item_desc_size', 'label' => 'Item Desc Size', 'append' => 'px', 'value' => '16', ), array( 'name' => 'item_title_transformation', 'label' => 'Transformation', 'type' => 'select', 'value' => 'uppercase', 'options' => array( 'inherit' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'item_animation', 'label' => 'Animation Item', 'type' => 'select', 'value' => 'fadeInUp', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), array('label' => 'Button', 'type' => 'divider'), array( 'name' => 'item_btn_size', 'label' => 'Title Size', 'append' => 'px', 'value' => '16', ), array( 'name' => 'item_btn_font_weight', 'label' => 'Item Font Weight', 'type' => 'select', 'value' => '400', 'options' => array( '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), ), 'styles' => array( array( 'name' => 'bg_color', 'label' => 'Background Color', 'type' => 'colorpicker', 'value' => '#f1f1f1', ), array( 'name' => 'section_title_color', 'label' => 'Section Title Color', 'type' => 'colorpicker', 'value' => '#132a46', ), array('label' => 'Attorney', 'type' => 'divider'), // Divider - Text array( 'name' => 'title_color', 'label' => 'Title Color', 'type' => 'colorpicker', 'value' => '#132a46', ), array( 'name' => 'designation_color', 'label' => 'Designation Color', 'type' => 'colorpicker', 'value' => '#132a46', ), array( 'name' => 'text_color', 'label' => 'Text Color', 'type' => 'colorpicker', 'value' => '#132a46', ), array( 'name' => 'counter_num', 'label' => 'Item Count Color', 'type' => 'colorpicker', 'value' => '#dd5346', ), array( 'name' => 'btn_bg', 'label' => 'Button Background', 'type' => 'colorpicker', 'value' => '#29cb8b', ), array( 'name' => 'btn_text', 'label' => 'Button Text', 'type' => 'colorpicker', 'value' => '#ffffff', ), array( 'name' => 'btn_bg_hover', 'label' => 'Button Hover Background', 'type' => 'colorpicker', 'value' => '#ffffff', ), array( 'name' => 'btn_text_hover', 'label' => 'Button Hover Text', 'type' => 'colorpicker', 'value' => '#dd5346', ), ), ); ================================================ FILE: blocks/blogs/blog-5/blog-5/style.php ================================================ # { background-color: ; } # .main-heading h1, # .main-heading h2, # .main-heading h3, # .main-heading h4, # .main-heading h5, # .main-heading h6{ ; ; font-weight: ; color: } # .attorney_blog_list h2.uk-card-title a { display: inline-block; text-decoration: none; ; ; font-weight: ; color: } # .attorney_blog_list h2.uk-card-title a span{ color: ; } # .attorney_blog_list p{ ; ; } # a.op-button-right{ ; font-weight: ; background: ; color: ; transition: all 300ms ease-in-out; border: none; } # a.op-button-right:hover{ background: ; color: ; } @media(max-width: 960px){ # .main-heading h1, # .main-heading h2, # .main-heading h3, # .main-heading h4, # .main-heading h5, # .main-heading h6{ ; ; } # .attorney_blog_list h2.uk-card-title a { ; ; } # .attorney_blog_list h3.designation { ; ; } } ================================================ FILE: blocks/blogs/blog-5/blog-5/view.php ================================================ .uk-card; delay:200;"' : ''; // Arguments $args = array( 'posts_per_page' => $contents['total_posts'], 'cat' => $contents['category'], ); // Build query $query = new WP_Query($args); ?>
have_posts()): ?> have_posts()): $query->the_post();?>
class="uk-width-1-3@m uk-width-1-1@s">
================================================ FILE: blocks/blogs/blog-6/config.php ================================================ 'blog-6', 'tag' => 'new', 'groups' => array('blogs'), 'contents' => array( array( 'name' => 'title', 'value' => 'Latest From The Blog', ), array( 'name' => 'desc', 'type' => 'textarea', 'value' => 'Proin ac lobortis arcu, a vestibulum augue. Vivamus ipsum neque, facilisis vel
mollis vitae, mollis nec ante. Quisque aliquam dictum condim.' ), array( 'name' => 'category', 'type' => 'category', ), array( 'name' => 'total_posts', 'label' => 'Total Posts', 'value' => '3', ), array( 'name' => 'post_order', 'label' => 'Order By', 'type' => 'select', 'value' => 'DESC', 'options' => array( 'DESC' => 'Descending', 'ASC' => 'Ascending', ) ), array( 'name' => 'readmore_text', 'label' => 'Read More', 'value' => 'Read More', ), array( 'name' => 'all_post', 'text' => 'ALL POST', 'url' => '#', 'type' => 'link' ), ), 'settings' => array( array( 'name' => 'heading_type', 'label' => 'Heading Type', 'type' => 'select', 'value' => 'h1', 'options' => array( 'h1' => 'h1', 'h2' => 'h2', 'h3' => 'h3', 'h4' => 'h4', 'h5' => 'h5', 'h6' => 'h6', ), ), array( 'name' => 'img_border_radius', 'label' => 'Image Border Radius', 'append' => 'px', 'value' => '3', ), array( 'name' => 'section_title_size', 'label' => 'Section Font Size', 'append' => 'px', 'value' => '52', ), array( 'name' => 'section_description_size', 'label' => 'Description Font Size', 'append' => 'px', 'value' => '18', ), array( 'name' => 'section_title_font_weight', 'label' => 'Font Weight', 'type' => 'select', 'value' => '700', 'options' => array( '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'title_transformation', 'label' => 'Title Transformation', 'type' => 'select', 'value' => 'inherit', 'options' => array( 'inherit' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'title_alignment', 'label' => 'Title Alignment', 'type' => 'select', 'value' => 'center', 'options' => array( 'left' => 'Left', 'center' => 'Center', 'right' => 'Right', 'justify' => 'Justify', ), ), array( 'name' => 'title_animation', 'label' => 'Animation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), array('label' => 'Blog Item', 'type' => 'divider'), array( 'name' => 'meta_font', 'label' => 'Meta Font Size', 'append' => 'px', 'value' => '14', ), array( 'name' => 'meta_font_weight', 'label' => 'Meta Font Weight', 'type' => 'select', 'value' => '300', 'options' => array( '300' => '300', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'blog_font_size', 'label' => 'Blog Title Font Size', 'append' => 'px', 'value' => '32', ), array( 'name' => 'blog_font_weight', 'label' => 'Blog Title Font Weight', 'type' => 'select', 'value' => '700', 'options' => array( '300' => '300', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'blog_title_transformation', 'label' => 'Blog Title Transformation', 'type' => 'select', 'value' => 'inherit', 'options' => array( 'inherit' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'btn_font_size', 'label' => 'Button Font Size', 'append' => 'px', 'value' => '15', ), array( 'name' => 'btn_font_weight', 'label' => 'Button Font Weight', 'type' => 'select', 'value' => '300', 'options' => array( '300' => '300', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'btn_text_transformation', 'label' => 'Button Text Transformation', 'type' => 'select', 'value' => 'inherit', 'options' => array( 'inherit' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'post_btn_font', 'label' => 'All Post Font', 'append' => 'px', 'value' => '16', ), array( 'name' => 'all_post_font_weight', 'label' => 'Post Button Font Weight', 'type' => 'select', 'value' => '500', 'options' => array( '300' => '300', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'post_btn_radius', 'label' => 'Post Button Radius', 'append' => 'px', 'value' => '5', ), array( 'name' => 'blog_item_animation', 'label' => 'Blog Animation', 'type' => 'select', 'value' => 'fadeInUp', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), ), 'styles' => array( array( 'name' => 'bg_color', 'label' => 'Background Color', 'type' => 'colorpicker', 'value' => '#ffffff', ), array( 'name' => 'section_title_color', 'label' => 'Section Font Color', 'type' => 'colorpicker', 'value' => '#142b45', ), array( 'name' => 'section_desc_color', 'label' => 'Section Desc Color', 'type' => 'colorpicker', 'value' => '#142b45', ), array( 'name' => 'blog_meta_color', 'label' => 'Blog Meta Color', 'type' => 'colorpicker', 'value' => '#72808f', ), array( 'name' => 'blog_title_color', 'label' => 'Blog Title Color', 'type' => 'colorpicker', 'value' => '#1d4251', ), array( 'name' => 'btn_color', 'label' => 'Button Color', 'type' => 'colorpicker', 'value' => '#1d4251', ), array( 'name' => 'btn_color_hover', 'label' => 'Button Hover Color', 'type' => 'colorpicker', 'value' => '#ff5678', ), array( 'name' => 'all_post_btn_bg', 'label' => 'Post Button BG Color', 'type' => 'colorpicker', 'value' => 'rgb(255, 255, 255)', ), array( 'name' => 'all_post_btn_bg_hover', 'label' => 'Box Shadow Color', 'type' => 'colorpicker', 'value' => 'rgba(251, 136, 159, 0.35)', ), ), ); ================================================ FILE: blocks/blogs/blog-6/style.php ================================================ # .section-heading h1{ ; ; font-weight: ; color: ; } # .section-heading p{ ; ; color: ; } # article.uk-article .img-wrapper img{ ; } # article.uk-article .uk-article-meta{ ; ; ; color: ; } # article.uk-article h1.uk-article-title{ ; ; ; color: ; } # .title_link{ text-decoration: none; } # .uk-article a.uk-button{ ; ; ; color: ; transition: 300ms linear; } # .uk-article a.uk-button:hover{ color: ; } # .uk-button-text:focus::before, .uk-button-text:hover::before{ content: none; } # .content-wrapper .all-post-btn a{ display: inline-block; ; font-weight: ; border-radius: ; background-color: ; box-shadow: 0px 4px 5px 0px ; border: none; transition: all 400ms ease-in-out; } # .content-wrapper .all-post-btn a:hover{ box-shadow: 0px -1px 5px 0px ; } @media(max-width: 600px){ # .section-heading h1{ ; ; } # .section-heading p br{ display: none } # article.uk-article h1.uk-article-title{ ; ; } # .img-wrapper img{ width: 100%; } } ================================================ FILE: blocks/blogs/blog-6/view.php ================================================ $contents['total_posts'], 'cat' => $contents['category'], 'order' => $contents['post_order'], ); // Build query $query = new WP_Query($args); ?>

>

have_posts()):?>
have_posts()): $query->the_post(); ?>
class="uk-width-1-3@s">

================================================ FILE: blocks/coming-soon/coming-soon-1/config.php ================================================ 'coming-soon-01', // Must be unique and singular 'groups' => array('Coming Soon'), // Blocks group for filter and plural // Fields - $contents available on view file to access the option 'contents' => array( array( 'name' => 'title', 'value' => 'This Website Is Coming Soon', ), array( 'name' => 'description', 'type' => 'editor', 'value' => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.', ), array( 'name' => 'social', 'label' => 'Social Links', 'value' => array('http://facebook.com/themesgrove', 'http://twitter.com/themesgrove', 'http://linkedin.com/themesgrove', 'http://www.instagram.com/themesgrove'), ), array( 'name' => 'date', 'type' => 'date', ), ), // Settings - $settings available on view file to access the option 'settings' => array( array('label' => 'Heading', 'type' => 'divider'), // Divider - Text array( 'name' => 'heading_type', 'label' => 'Heading Type', 'type' => 'select', 'value' => 'h1', 'options' => array( 'h1' => 'h1', 'h2' => 'h2', 'h3' => 'h3', 'h4' => 'h4', 'h5' => 'h5', 'h6' => 'h6', ), ), array( 'name' => 'section_title_size', 'label' => 'Title Size', 'append' => 'px', 'value' => '@section_title_size', ), array( 'name' => 'title_font_weight', 'label' => 'Font Weight', 'type' => 'select', 'value' => '700', 'options' => array( '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'title_transformation', 'label' => 'Title Transformation', 'type' => 'select', 'value' => 'inherit', 'options' => array( 'inherit' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'title_animation', 'label' => 'Animation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), array('label' => 'Countdown', 'type' => 'divider'), // Divider - Text array( 'name' => 'countdown_number_size', 'label' => 'Countdown Number Size', 'append' => 'px', 'value' => '56', ), array( 'name' => 'countdown_label', 'label' => 'Countdown Label Size', 'append' => 'px', 'value' => '16', ), array( 'name' => 'countdown_animation', 'label' => 'Countdown Animation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', ), ), array('label' => 'Description', 'type' => 'divider'), // Divider - Text array( 'name' => 'desc_size', 'label' => 'Desc Size', 'append' => 'px', 'value' => '18', ), array( 'name' => 'content_animation', 'label' => 'Animation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), array('label' => 'Social', 'type' => 'divider'), // Divider - Text array( 'name' => 'social_animation', 'label' => 'Social Animation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', ), ), ), // Fields - $styles available on view file to access the option 'styles' => array( array( 'name' => 'bg_image', 'label' => 'Background', 'type' => 'image', 'value' => 'https://images.unsplash.com/photo-1479215932585-5eafc5b0c83a?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=1350&q=80', ), array( 'name' => 'overlay_color', 'label' => 'Overlay Color', 'type' => 'colorpicker', 'value' => 'rgba(20,11,5,0.17)', ), array('label' => 'Content', 'type' => 'divider'), // Divider - Text array( 'name' => 'title_color', 'label' => 'Title Color', 'type' => 'colorpicker', 'value' => '#ffffff', ), array( 'name' => 'desc_color', 'label' => 'description Color', 'type' => 'colorpicker', 'value' => '#ffffff', ), array('label' => 'Countdown', 'type' => 'divider'), // Divider - Text array( 'name' => 'countdown_color', 'label' => 'Countdown Color', 'type' => 'colorpicker', 'value' => '#4d3d31', ), array( 'name' => 'countdown_bg_color', 'label' => 'Countdown Background Color', 'type' => 'colorpicker', 'value' => 'rgba(255,255,255,0.7)', ), array('label' => 'Social', 'type' => 'divider'), // Divider - Text array( 'name' => 'icon_color', 'label' => 'Icon Color', 'type' => 'colorpicker', 'value' => '#4d3d31', ), ), ); ================================================ FILE: blocks/coming-soon/coming-soon-1/style.php ================================================ #{ background-image: url(); background-repeat: no-repeat; background-size: cover; } # .uk-overlay-primary{ background: ; } # .uk-heading-primary{ font-size : px; font-weight : ; color : ; } # .uk-text-lead { font-size : px; color : ; } # .countdown { color : ; } # .uk-countdown-number{ font-size : px; } # .uk-countdown-label{ font-size : px; } # .social-links a { color : ; } # .op-countdown-single { height: 165px; width: 165px; margin: 0 auto; border: 1px solid ; background-color: ; border-radius: 100%; } # .social-links > a { font-size: 18px; background: ; width: 40px; height: 40px; border-radius: 100%; line-height: 40px; } @media(max-width:768px){ # .uk-heading-primary{ font-size : px; } } ================================================ FILE: blocks/coming-soon/coming-soon-1/view.php ================================================
>
>
================================================ FILE: blocks/coming-soon/coming-soon-2/config.php ================================================ 'coming-soon-02', // Must be unique and singular 'groups' => array('Coming Soon'), // Blocks group for filter and plural // Fields - $contents available on view file to access the option 'contents' => array( array( 'name' => 'logo', 'label' => 'Logo', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2019/08/coming-soon-logo-2.png', ), array( 'name' => 'title', 'value' => 'Website Under Construction', ), array( 'name' => 'desc', 'type' => 'editor', 'value' => "Our website is under construction, We'll be here soon with new awesome site", ), ), 'settings' => array( array('label' => 'Logo', 'type' => 'divider'), // Divider - Text array( 'name' => 'logo_size', 'label' => 'Logo Size', 'append' => 'px', 'value' => '260', ), array( 'name' => 'logo_animation', 'label' => 'Logo Animation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', ), ), array('label' => 'Heading', 'type' => 'divider'), // Divider - Text array( 'name' => 'heading_type', 'label' => 'Heading Type', 'type' => 'select', 'value' => 'h1', 'options' => array( 'h1' => 'h1', 'h2' => 'h2', 'h3' => 'h3', 'h4' => 'h4', 'h5' => 'h5', 'h6' => 'h6', ), ), array( 'name' => 'section_title_size', 'label' => 'Title Size', 'append' => 'px', 'value' => '@section_title_size', ), array( 'name' => 'title_font_weight', 'label' => 'Font Weight', 'type' => 'select', 'value' => '700', 'options' => array( '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'title_transformation', 'label' => 'Title Transformation', 'type' => 'select', 'value' => 'inherit', 'options' => array( 'inherit' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'title_animation', 'label' => 'Animation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), array('label' => 'Description', 'type' => 'divider'), // Divider - Text array( 'name' => 'desc_size', 'label' => 'Desc Size', 'append' => 'px', 'value' => '18', ), array( 'name' => 'content_animation', 'label' => 'Animation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), ), // Fields - $styles available on view file to access the option 'styles' => array( array( 'name' => 'bg_image', 'label' => 'Background', 'type' => 'image', 'value' => 'https://images.pexels.com/photos/880873/pexels-photo-880873.jpeg?cs=srgb&dl=bay-boats-city-880873.jpg&fm=jpg', ), array( 'name' => 'overlay_color', 'label' => 'Overlay Color', 'type' => 'colorpicker', 'value' => 'rgba(0,0,0,0.53)', ), array('label' => 'Content', 'type' => 'divider'), // Divider - Text array( 'name' => 'title_color', 'label' => 'Title Color', 'type' => 'colorpicker', 'value' => '#f59c1f', ), array( 'name' => 'desc_color', 'label' => 'Content Color', 'type' => 'colorpicker', 'value' => '#f59c1f', ), ), ); ================================================ FILE: blocks/coming-soon/coming-soon-2/style.php ================================================ #{ background-image: url(); background-repeat: no-repeat; background-size: cover; } # .uk-overlay-primary{ background: ; } # .uk-heading-primary{ font-size : px; font-weight : ; color : ; } # .uk-text-lead { font-size : px; color : ; } # .op-logo { width: px; } @media(max-width:768px){ # .uk-heading-primary{ font-size : px; } } ================================================ FILE: blocks/coming-soon/coming-soon-2/view.php ================================================

>

================================================ FILE: blocks/contacts/contact-1/config.php ================================================ 'contact-1', // Must be unique and singular 'groups' => array('contact'), // Blocks group for filter and plural // Fields - $contents available on view file to access the option 'contents' => array( array('label' => 'Contact Info', 'type' => 'divider'), // Divider - Background array( 'name' => 'hotline_title', 'label' => 'Hotline Title', 'type' => 'text', 'value' => 'Hotline', ), array( 'name' => 'hotline_number', 'label' => 'Hotline Number', 'type' => 'text', 'value' => '+1 222 333 2132', ), array( 'name' => 'address', 'type' => 'textarea', 'value' => '23 Salient Road, London, United Kingdom, PO-LDN 123', ), array( 'name' => 'phone', 'value' => '+1(555)666.777.8888', ), array( 'name' => 'email', 'type' => 'text', 'value' => 'example@demo.com', ), array( 'name' => 'social', 'label' => 'Social Links', 'value' => array('http://facebook.com/themexpert', 'http://twitter.com/themexpert', 'http://linkedin.com/themexpert'), ), array('label' => 'Contact Form', 'type' => 'divider'), // Divider - Background array( 'name' => 'contact_title', 'label' => 'Contact Title', 'type' => 'text', 'value' => 'Send Feedback', ), array( 'name' => 'form', 'label' => 'Contact Form Shortcode', 'type' => 'textarea', ), ), // Settings - $settings available on view file to access the option 'settings' => array( array( 'name' => 'title_size', 'label' => 'Title Size', 'append' => 'px', 'value' => '22', ), array( 'name' => 'title_transformation', 'label' => 'Title Transformation', 'type' => 'select', 'value' => 'inherit', 'options' => array( 'inherit' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'info_animation', 'label' => 'Info Animation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), array( 'name' => 'form_animation', 'label' => 'Form Animation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), ), // Fields - $styles available on view file to access the option 'styles' => array( array('label' => 'Background', 'type' => 'divider'), // Divider - Background array( 'name' => 'bg_image', 'label' => 'Image', 'type' => 'image', ), // array( // 'name'=>'bg_parallax', // 'type'=> 'switch', // 'label'=>'Parallax Background' // ), array( 'name' => 'bg_repeat', 'label' => 'Repeat', 'type' => 'select', 'options' => array( 'no-repeat' => 'No Repeat', 'repeat-x' => 'Repeat X', 'repeat-y' => 'Repeat Y', ), ), array( 'name' => 'bg_color', 'label' => 'Bg Color', 'type' => 'colorpicker', 'value' => '#fff', ), array('label' => 'Items', 'type' => 'divider'), // Divider - Text array( 'name' => 'title_color', 'label' => 'Title Color', 'type' => 'colorpicker', 'value' => '#222', ), array( 'name' => 'text_color', 'label' => 'Text Color', 'type' => 'colorpicker', 'value' => '#323232', ), array( 'name' => 'accent_color', 'label' => 'Icon Color', 'type' => 'colorpicker', 'value' => '@color.accent', ), array( 'name' => 'button_text_color', 'label' => 'Button Color', 'type' => 'colorpicker', 'value' => '#fff', ), ), // 'assets' => function( $path ){ // Onepager::addStyle('contact-1', $path . '/style.css'); // } ); ================================================ FILE: blocks/contacts/contact-1/style.css ================================================ .contact-1{ padding-top: 80px; padding-bottom: 80px; } .contact-1 .uk-card .uk-card-header{ padding: 10px 0; } .contact-1 .uk-heading-primary{ font-size: 32px; } .contact-1 .heading-info .uk-text-lead{ margin: 10px 0; font-size: 20px; } .contact-1 .uk-card .uk-card-header .fa{ font-size: 16px; } .contact-1 .social-links a{ font-size: 16px; } .contact-1 input[type="text"], .contact-1 input[type="email"], .contact-1 textarea{ border: 1px solid #eee; padding: 4px 10px; margin-top: 5px; color: #757373; } .contact-1 input[type="submit"]{ padding:15px 30px; border: 0; } ================================================ FILE: blocks/contacts/contact-1/style.php ================================================ #{ background-image: url(); background-repeat: ; background-size:cover; background-color : ; } #.contact-1 .uk-heading-primary{ font-size : px; color : ; } #.contact-1 .uk-text-meta, #.contact-1 .uk-text-lead{ color : ; } # input[type="submit"]{ background: ; color : ; border: 1px solid ; } # input[type="submit"]:hover{ background: ; color : ; border: 1px solid ; } # .social-links a, #.contact-1 .uk-card .uk-card-header .fa{ color: ; } # input[type="text"]:focus, # input[type="email"]:focus, # textarea:focus{ border-color : ; outline : 0; } ================================================ FILE: blocks/contacts/contact-1/view.php ================================================

>

>

>

>

>

>

================================================ FILE: blocks/contacts/contact-2/config.php ================================================ 'contact-2', // Must be unique and singular 'groups' => array('contact'), // Blocks group for filter and plural // Fields - $contents available on view file to access the option 'contents' => array( array( 'name' => 'title', 'value' => 'Join The Community', ), array( 'name' => 'description', 'type' => 'textarea', 'value' => 'We waited until we could do it right. Then we did! Instead of creating a carbon copy. This
template has enough pages and blocks to let you create an awesome landing page. ', ), array('label' => 'Subscribe Shortcode', 'type' => 'divider'), // Divider - Text array( 'name' => 'form', 'label' => 'WPFrom Shortcode', 'type' => 'textarea', 'value' => '', ), ), // Settings - $settings available on view file to access the option 'settings' => array( array('label' => 'Heading', 'type' => 'divider'), // Divider - Text array( 'name' => 'heading_type', 'label' => 'Heading Type', 'type' => 'select', 'value' => 'h1', 'options' => array( 'h1' => 'h1', 'h2' => 'h2', 'h3' => 'h3', 'h4' => 'h4', 'h5' => 'h5', 'h6' => 'h6', ), ), array( 'name' => 'section_title_size', 'label' => 'Title Size', 'append' => 'px', 'value' => '44', ), array( 'name' => 'title_font', 'type' => 'font', 'label' => 'Title Fonts', ), array( 'name' => 'title_font_weight', 'label' => 'Font Weight', 'type' => 'select', 'value' => '700', 'options' => array( '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'title_transformation', 'label' => 'Title Transformation', 'type' => 'select', 'value' => 'inherit', 'options' => array( 'inherit' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'title_alignment', 'label' => 'Title Alignment', 'type' => 'select', 'value' => 'center', 'options' => array( 'left' => 'Left', 'center' => 'Center', 'right' => 'Right', 'justify' => 'Justify', ), ), array( 'name' => 'desc_size', 'label' => 'Desc Size', 'append' => 'px', 'value' => '18', ), array( 'name' => 'content_alignment', 'label' => 'Content Alignment', 'type' => 'select', 'value' => 'center', 'options' => array( 'left' => 'Left', 'center' => 'Center', 'right' => 'Right', 'justify' => 'Justify', ), ), array( 'name' => 'title_animation', 'label' => 'Animation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), array( 'name' => 'form_border_radius', 'label' => 'Border Radius', 'append' => 'px', 'value' => '5', ), array( 'name' => 'form_transformation', 'label' => 'Transformation', 'type' => 'select', 'value' => 'inherit', 'options' => array( 'inherit' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'form_animation', 'label' => 'From Animation ', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), ), // Fields - $styles available on view file to access the option 'styles' => array( array( 'name' => 'bg_image', 'label' => 'Background', 'type' => 'image', 'value' => '', ), array( 'name' => 'bg_image_size', 'label' => 'Size', 'type' => 'select', 'value' => 'uk-background-contain', 'options' => array( 'uk-background-contain' => 'Contain', 'uk-background-cover' => 'Cover', ), ), array( 'name' => 'bg_color', 'label' => 'Bg Color', 'type' => 'colorpicker', 'value' => '#ffffff', ), array( 'name' => 'overlay_color', 'label' => 'Overlay Color', 'type' => 'colorpicker', 'value' => 'rgba(255,255,255,0)', ), array('label' => 'Title', 'type' => 'divider'), // Divider - Text array( 'name' => 'title_color', 'label' => 'Title Color', 'type' => 'colorpicker', 'value' => '#333', ), array( 'name' => 'desc_color', 'label' => 'Desc Color', 'type' => 'colorpicker', 'value' => 'rgba(38, 59, 94, 0.54); ', ), array('label' => 'Form', 'type' => 'divider'), // Divider - Text array( 'name' => 'submit_text_color', 'label' => 'Submit Text Color', 'type' => 'colorpicker', 'value' => '#fff', ), array( 'name' => 'submit_bg_color', 'label' => 'Submit Bg Color', 'type' => 'colorpicker', 'value' => '#F2994A', ), array( 'name' => 'submit_hover_text_color', 'label' => 'Submit Hover Text Color', 'type' => 'colorpicker', 'value' => '#fff', ), array( 'name' => 'submit_hover_bg_color', 'label' => 'Submit Hover Bg Color', 'type' => 'colorpicker', 'value' => '#eb6f02', ), array( 'name' => 'border_color', 'label' => 'Border Color', 'type' => 'colorpicker', 'value' => '#ddd', ), array( 'name' => 'border_hover_color', 'label' => 'Border Hover Color', 'type' => 'colorpicker', 'value' => '#F2994A', ), array( 'name' => 'placeholder_color', 'label' => 'Placholder Color', 'type' => 'colorpicker', 'value' => '#ddd', ), ), ); ================================================ FILE: blocks/contacts/contact-2/style.php ================================================ # { background-color: } # h1, # h2, # h3, # h4{ font-family: ; font-weight:; } # .uk-heading-primary{ font-size : px; color : ; line-height : px; } # .uk-text-lead{ color : ; font-size : px; } # .uk-overlay-primary{ background: ; } # .uk-inline{ color : #fff; } # .uk-inline i{ margin-right: 8px; font-size: 16px; } # input[type="email"]{ min-width: 330px; float: left; height: 50px; border: 1px solid ; margin-right: 8px; color: #1a79fe; background: #fff; border-radius: 50px; padding: 0 25px; } # input[type="email"]:focus{ outline:none; border-color: ; } # ::placeholder { color: ; } # form.wpforms-form{ display: flex; justify-content: center; } # div.wpforms-container-full .wpforms-form input[type=submit], # div.wpforms-container-full .wpforms-form button[type=submit], # div.wpforms-container-full .wpforms-form .wpforms-page-button { color: ; background-color: ; font-size: 15px; padding: 0 40px; height: 50px; width: max-content; text-transform: uppercase; border: 1px solid ; border-radius: 50px; margin-left: -70px; transition: all 0.5s ease; } # div.wpforms-container-full .wpforms-form input[type=submit]:hover, # div.wpforms-container-full .wpforms-form button[type=submit]:hover, # div.wpforms-container-full .wpforms-form .wpforms-page-button:hover { background-color: ; border: 1px solid ; color: ; transition: all 0.5s ease; } @media(max-width:768px){ # .uk-heading-primary{ font-size : px; line-height : px; } # .uk-text-lead { font-size : px; } } @media(max-width:576px){ # input[type="email"]{ min-width: 220px; } } ================================================ FILE: blocks/contacts/contact-2/view.php ================================================
>
>

================================================ FILE: blocks/contacts/contact-3/config.php ================================================ 'contact-3', // Must be unique and singular 'groups' => array('contact'), // Blocks group for filter and plural // Fields - $contents available on view file to access the option 'contents' => array( array( 'name' => 'title', 'value' => 'Do you need some help?', ), array( 'name' => 'description', 'type' => 'textarea', 'value' => 'Visit our support center to get start', ), array('label' => 'Subscribe Shortcode', 'type' => 'divider'), // Divider - Text array( 'name' => 'form', 'label' => 'WPFrom Shortcode', 'type' => 'textarea', 'value' => '', ), ), // Settings - $settings available on view file to access the option 'settings' => array( array('label' => 'Heading', 'type' => 'divider'), // Divider - Text array( 'name' => 'heading_type', 'label' => 'Heading Type', 'type' => 'select', 'value' => 'h1', 'options' => array( 'h1' => 'h1', 'h2' => 'h2', 'h3' => 'h3', 'h4' => 'h4', 'h5' => 'h5', 'h6' => 'h6', ), ), array( 'name' => 'section_title_size', 'label' => 'Title Size', 'append' => 'px', 'value' => '44', ), array( 'name' => 'title_font', 'type' => 'font', 'label' => 'Title Fonts', ), array( 'name' => 'title_font_weight', 'label' => 'Font Weight', 'type' => 'select', 'value' => '700', 'options' => array( '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'title_transformation', 'label' => 'Title Transformation', 'type' => 'select', 'value' => 'inherit', 'options' => array( 'inherit' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'title_alignment', 'label' => 'Title Alignment', 'type' => 'select', 'value' => 'center', 'options' => array( 'left' => 'Left', 'center' => 'Center', 'right' => 'Right', 'justify' => 'Justify', ), ), array( 'name' => 'desc_size', 'label' => 'Desc Size', 'append' => 'px', 'value' => '18', ), array( 'name' => 'content_alignment', 'label' => 'Content Alignment', 'type' => 'select', 'value' => 'center', 'options' => array( 'left' => 'Left', 'center' => 'Center', 'right' => 'Right', 'justify' => 'Justify', ), ), array( 'name' => 'title_animation', 'label' => 'Animation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), array( 'name' => 'form_border_radius', 'label' => 'Border Radius', 'append' => 'px', 'value' => '5', ), array( 'name' => 'form_transformation', 'label' => 'Transformation', 'type' => 'select', 'value' => 'inherit', 'options' => array( 'inherit' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'form_animation', 'label' => 'From Animation ', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), ), // Fields - $styles available on view file to access the option 'styles' => array( array( 'name' => 'bg_image', 'label' => 'Background', 'type' => 'image', 'value' => '', ), array( 'name' => 'bg_image_size', 'label' => 'Size', 'type' => 'select', 'value' => 'uk-background-contain', 'options' => array( 'uk-background-contain' => 'Contain', 'uk-background-cover' => 'Cover', ), ), array( 'name' => 'bg_color', 'label' => 'Bg Color', 'type' => 'colorpicker', 'value' => '#ffffff', ), array( 'name' => 'overlay_color', 'label' => 'Overlay Color', 'type' => 'colorpicker', 'value' => 'rgba(255,255,255,0)', ), array('label' => 'Title', 'type' => 'divider'), // Divider - Text array( 'name' => 'title_color', 'label' => 'Title Color', 'type' => 'colorpicker', 'value' => '#333', ), array( 'name' => 'desc_color', 'label' => 'Desc Color', 'type' => 'colorpicker', 'value' => 'rgba(38, 59, 94, 0.54); ', ), array('label' => 'Form', 'type' => 'divider'), // Divider - Text array( 'name' => 'submit_text_color', 'label' => 'Submit Text Color', 'type' => 'colorpicker', 'value' => '#fff', ), array( 'name' => 'submit_bg_color', 'label' => 'Submit Bg Color', 'type' => 'colorpicker', 'value' => '#BB6BD9', ), array( 'name' => 'submit_hover_text_color', 'label' => 'Submit Hover Text Color', 'type' => 'colorpicker', 'value' => '#fff', ), array( 'name' => 'submit_hover_bg_color', 'label' => 'Submit Hover Bg Color', 'type' => 'colorpicker', 'value' => '#eb6f02', ), array( 'name' => 'border_color', 'label' => 'Border Color', 'type' => 'colorpicker', 'value' => '#ddd', ), array( 'name' => 'border_hover_color', 'label' => 'Border Hover Color', 'type' => 'colorpicker', 'value' => '#BB6BD9', ), array( 'name' => 'placeholder_color', 'label' => 'Placholder Color', 'type' => 'colorpicker', 'value' => '#ddd', ), ), ); ================================================ FILE: blocks/contacts/contact-3/style.php ================================================ # { background-color: } # h1, # h2, # h3, # h4{ font-family: ; font-weight:; } # .uk-heading-primary{ font-size : px; color : ; line-height : px; } # .uk-text-lead{ color : ; font-size : px; } # .uk-overlay-primary{ background: ; } # .uk-inline{ color : #fff; } # .uk-inline i{ margin-right: 8px; font-size: 16px; } # input[type="email"]{ min-width: 330px; float: left; height: 50px; border: 1px solid ; color: #1a79fe; background: #fff; border-radius: 10px; padding: 0 25px; } # input[type="email"]:focus{ outline:none; border-color: ; } # ::placeholder { color: ; } # form.wpforms-form{ display: flex; justify-content: center; } # div.wpforms-container-full .wpforms-form input[type=submit], # div.wpforms-container-full .wpforms-form button[type=submit], # div.wpforms-container-full .wpforms-form .wpforms-page-button { color: ; background-color: ; font-size: 15px; padding: 0 40px; height: 50px; margin-left: 10px; width: max-content; text-transform: uppercase; border: 1px solid ; border-radius: 10px; transition: all 0.5s ease; } # div.wpforms-container-full .wpforms-form input[type=submit]:hover, # div.wpforms-container-full .wpforms-form button[type=submit]:hover, # div.wpforms-container-full .wpforms-form .wpforms-page-button:hover { background-color: ; border: 1px solid ; color: ; transition: all 0.5s ease; } @media(max-width:768px){ # .uk-heading-primary{ font-size : px; line-height : px; } # .uk-text-lead { font-size : px; } # input[type="email"] { min-width: 190px; } } @media(max-width:576px){ # input[type="email"]{ min-width: 150px; } } ================================================ FILE: blocks/contacts/contact-3/view.php ================================================
>
>

================================================ FILE: blocks/contacts/contact-4/config.php ================================================ 'contact-4', 'groups' => array('contact'), 'contents' => array( array( 'name' => 'section_title', 'label' => 'Section Title', 'type' => 'text', 'value' => 'Get The Defense You Need From A Law Firm.', ), array( 'name' => 'section_blocks', 'type' => 'repeater', 'fields' => array( array( array( 'name' => 'title', 'label' => 'Title', 'type' => 'text', 'value' => '30+ Years experience', ), array( 'name' => 'media', 'type' => 'icon', 'value' => 'fa fa-check', ), array( 'name' => 'desc', 'label' => 'Description', 'type' => 'editor', 'value' => 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.', ), ), array( array( 'name' => 'title', 'label' => 'Title', 'type' => 'text', 'value' => 'Trusted by 1000s of clients with over 99% success rate', ), array( 'name' => 'media', 'type' => 'icon', 'value' => 'fa fa-check', ), array( 'name' => 'desc', 'label' => 'Description', 'type' => 'editor', 'value' => 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text.', ), ), ), ), array( 'name' => 'contact_heading', 'label' => 'Contact Heading', 'type' => 'text', 'value' => 'How Can We Help?', ), array( 'name' => 'contact_shortcode', 'label' => 'Contact ShortCode', 'type' => 'textarea', ), array( 'name' => 'section_btn', 'text' => 'Download The Guide', 'type' => 'link', 'placeholder' => home_url(), ), ), 'settings' => array( array('label' => 'Section Heading', 'type' => 'divider'), // Divider - Text array( 'name' => 'heading_type', 'label' => 'Heading Type', 'type' => 'select', 'value' => 'h1', 'options' => array( 'h1' => 'h1', 'h2' => 'h2', 'h3' => 'h3', 'h4' => 'h4', 'h5' => 'h5', 'h6' => 'h6', ), ), array( 'name' => 'title_size', 'label' => 'Title Size', 'append' => 'px', 'value' => '40', ), array( 'name' => 'title_font_weight', 'label' => 'Font Weight', 'type' => 'select', 'value' => '700', 'options' => array( '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'title_transformation', 'label' => 'Title Transformation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'title_alignment', 'label' => 'Title Alignment', 'type' => 'select', 'value' => 'left', 'options' => array( 'left' => 'Left', 'center' => 'Center', 'right' => 'Right', 'justify' => 'Justify', ), ), array( 'name' => 'animation_content', 'label' => 'Content Animation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), array('label' => 'Block Heading', 'type' => 'divider'), // Divider - Text array( 'name' => 'block_title_size', 'label' => 'Item Heading Size', 'append' => 'px', 'value' => '24', ), array( 'name' => 'block_title_font_weight', 'label' => 'Item Heading Font Weight', 'type' => 'select', 'value' => '600', 'options' => array( '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'block_title_transformation', 'label' => 'Item Heading Transformation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array('label' => 'Block Text', 'type' => 'divider'), // Divider - Text array( 'name' => 'block_text_size', 'label' => 'Item Text Size', 'append' => 'px', 'value' => '18', ), array( 'name' => 'block_text_font_weight', 'label' => 'Item Text Font Weight', 'type' => 'select', 'value' => '400', 'options' => array( '300' => '300', '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), ), 'styles' => array( array('label' => 'Background', 'type' => 'divider'), // Divider - Text array( 'name' => 'bg_image', 'label' => 'Contact Area BG Image', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2020/03/contact-bg.jpg', ), array('label' => 'Section Color', 'type' => 'divider'), // Divider - Text array( 'name' => 'bg_color', 'label' => 'Background Color', 'type' => 'colorpicker', 'value' => '#f1f1f1', ), array( 'name' => 'heading_color', 'label' => 'Section Heading Color', 'type' => 'colorpicker', 'value' => '#132a46', ), array( 'name' => 'text_color', 'label' => 'Text Color', 'type' => 'colorpicker', 'value' => '#132a46', ), array( 'name' => 'btn_bg', 'label' => 'Button BG Color', 'type' => 'colorpicker', 'value' => '#29cb8b', ), array( 'name' => 'btn_text', 'label' => 'Button Text Color', 'type' => 'colorpicker', 'value' => '#ffffff', ), array( 'name' => 'btn_bg_hover', 'label' => 'Button BG Hover Color', 'type' => 'colorpicker', 'value' => '#ffffff', ), array( 'name' => 'btn_text_hover', 'label' => 'Button Text Hover Color', 'type' => 'colorpicker', 'value' => '#29cb8b', ), array( 'name' => 'btn_border_color', 'label' => 'Button Border Color', 'type' => 'colorpicker', 'value' => '#29cb8b', ), ), ); ================================================ FILE: blocks/contacts/contact-4/style.php ================================================ # { background-color: ; } # h1.contact4-heading, # h2.contact4-heading, # h3.contact4-heading, # h4.contact4-heading, # h5.contact4-heading, # h6.contact4-heading{ ; ; font-weight: ; color: ; } # h3.tx-item-heading{ ; ; font-weight: ; text-transformation: ; color: ; } # .uk-block > p{ ; ; font-weight: ; color: ; } # .contact-area { width: 80%; margin: 0 auto; padding: 50px 0; } # .contact-4-wrapper{ background-repeat: no-repeat; background-size: cover; outline: 15px solid #ffffff; } # .contact-area label { font-weight: 500; width: 100%; } # .contact-area input[type=text], # .contact-area input[type=email], # .contact-area textarea { border: 1px solid #dddddd; width: 100%; margin-top: 7px; border-radius: 2px; line-height: 2rem; font-size: 1.2em; font-weight: 300; padding-left: 10px; resize: none; } # .contact-area input[type=submit] { background-color: ; border: 1px solid ; color: ; padding: 10px 20px; font-size: 18px; } # .contact-area input[type=submit]:hover{ background-color: ; color: ; } # a.tx-contact-btn{ background-color: ; color: ; border: 1px solid } # a.tx-contact-btn:hover{ background-color: ; color: ; } # .contact-area > h2{ font-size: 32px; font-weight: 600; color: ; } @media(max-width: 960px){ # .uk-card { padding: 0 15px; } # h1.contact4-heading, # h2.contact4-heading, # h3.contact4-heading, # h4.contact4-heading, # h5.contact4-heading, # h6.contact4-heading{ ; ; } # h3.tx-item-heading{ ; ; } } ================================================ FILE: blocks/contacts/contact-4/view.php ================================================
class="uk-width-1-2@m">

class="uk-width-1-2@m">

================================================ FILE: blocks/cta/cta-1/config.php ================================================ 'cta-1', // Must be unique and singular 'groups' => array('Call To Actions'), // Blocks group for filter and plural // Fields - $contents available on view file to access the option 'contents' => array( array( 'name' => 'title', 'value' => 'Lets make a better website together', ), array( 'name' => 'description', 'type' => 'editor', 'value' => 'The world is a dangerous place to live; not because of the people who are evil, but because of the people who dont do anything about it.', ), array( 'name' => 'link', 'text' => 'Contact Us', 'type' => 'link'), ), // Settings - $settings available on view file to access the option 'settings' => array( array('label' => 'Content', 'type' => 'divider'), // Divider - Text array( 'name' => 'heading_type', 'label' => 'Heading Type', 'type' => 'select', 'value' => 'h1', 'options' => array( 'h1' => 'h1', 'h2' => 'h2', 'h3' => 'h3', 'h4' => 'h4', 'h5' => 'h5', 'h6' => 'h6', ), ), array( 'name' => 'title_size', 'label' => 'Title Size', 'append' => 'px', 'value' => '44', ), array( 'name' => 'title_transformation', 'label' => 'Title Transformation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'desc_size', 'label' => 'Desc Size', 'append' => 'px', 'value' => '18', ), array( 'name' => 'content_animation', 'label' => 'Content Animation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), array('label' => 'Button', 'type' => 'divider'), // Divider - Text array( 'name' => 'button_font_size', 'label' => 'Font Size', 'append' => 'px', 'value' => '16', ), array( 'name' => 'button_transformation', 'label' => 'Transformation', 'type' => 'select', 'value' => 'inherit', 'options' => array( 'inherit' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'button_animation', 'label' => 'Animation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), ), // Fields - $styles available on view file to access the option 'styles' => array( array( 'name' => 'bg_color', 'label' => 'Background Color', 'type' => 'colorpicker', 'value' => '#262624', ), array('label' => 'Content', 'type' => 'divider'), // Divider - Text array( 'name' => 'title_color', 'label' => 'Title Color', 'type' => 'colorpicker', 'value' => '#fff', ), array( 'name' => 'desc_color', 'label' => 'Text Color', 'type' => 'colorpicker', 'value' => '#f5f5f5', ), array('label' => 'Button', 'type' => 'divider'), // Divider - Text array( 'name' => 'button_text_color', 'label' => 'Text Color', 'type' => 'colorpicker', 'value' => '#fff', ), array( 'name' => 'button_bg_color', 'label' => 'Bg Color', 'type' => 'colorpicker', 'value' => '#262624', ), array( 'name' => 'button_border_color', 'label' => 'Border Color', 'type' => 'colorpicker', 'value' => '#ffffff', ), ), // 'assets' => function( $path ){ // Onepager::addStyle('content-4', $path . '/style.css'); // } ); ================================================ FILE: blocks/cta/cta-1/style.php ================================================ #{ background-color : ; } # .uk-heading-primary{ font-size : px; color : ; } # .uk-text-lead{ font-size : px; color : ; } # .uk-button-primary{ font-size : px; background: ; border: 1px solid ; color : ; text-transform: } # .uk-button-primary:hover{ background : ; color : ; border-color : ; } @media(max-width:768px){ # .uk-heading-primary{ font-size : px; } } ================================================ FILE: blocks/cta/cta-1/view.php ================================================
>

>
================================================ FILE: blocks/cta/cta-2/config.php ================================================ 'cta-2', // Must be unique and singular 'groups' => array('Call To Actions'), // Blocks group for filter and plural // Fields - $contents available on view file to access the option 'contents' => array( array( 'name' => 'title', 'value' => 'Modern and ridiculusly easy page builder for all', ), array( 'name' => 'description', 'type' => 'editor', 'value' => 'I dream my painting and I paint my dream', ), array('name' => 'image', 'type' => 'image', 'value' => 'http://s3.amazonaws.com/quantum-assets/icons/download.png'), array('name' => 'link', 'type' => 'link'), ), // Settings - $settings available on view file to access the option 'settings' => array( array('label' => 'Content', 'type' => 'divider'), // Divider - Text array( 'name' => 'heading_type', 'label' => 'Heading Type', 'type' => 'select', 'value' => 'h1', 'options' => array( 'h1' => 'h1', 'h2' => 'h2', 'h3' => 'h3', 'h4' => 'h4', 'h5' => 'h5', 'h6' => 'h6', ), ), array( 'name' => 'content_alignment', 'label' => 'Alignment', 'type' => 'select', 'value' => 'center', 'options' => array( 'left' => 'Left', 'center' => 'Center', 'right' => 'Right', 'justify' => 'Justify', ), ), array( 'name' => 'content_animation', 'label' => 'Animation ', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), array( 'name' => 'title_size', 'label' => 'Title Size', 'append' => 'px', 'value' => '@section_title_size', ), array( 'name' => 'title_transformation', 'label' => 'Title Transformation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'desc_size', 'label' => 'Desc Size', 'append' => 'px', 'value' => '18', ), array('label' => 'Button', 'type' => 'divider'), // Divider - Text array( 'name' => 'button_font_size', 'label' => 'Font Size', 'append' => 'px', 'value' => '16', ), array( 'name' => 'button_transformation', 'label' => 'Text Transformation', 'type' => 'select', 'value' => 'inherit', 'options' => array( 'inherit' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), ), // Fields - $styles available on view file to access the option 'styles' => array( array( 'name' => 'bg_image', 'label' => 'Background', 'type' => 'image', 'value' => 'http://s3.amazonaws.com/quantum-assets/bg/bg6.jpg', ), array( 'name' => 'bg_parallax', 'type' => 'switch', 'label' => 'Parallax Background', ), array( 'name' => 'overlay_color', 'label' => 'Overlay Color', 'type' => 'colorpicker', 'value' => 'rgba(200,200,200,0.17)', ), array( 'name' => 'title_color', 'label' => 'Title Color', 'type' => 'colorpicker', 'value' => '#fff', ), array( 'name' => 'desc_color', 'label' => 'Desc Color', 'type' => 'colorpicker', 'value' => '#ddd', ), array('label' => 'Button', 'type' => 'divider'), // Divider - Text array( 'name' => 'button_text_color', 'label' => 'Text Color', 'type' => 'colorpicker', 'value' => '#fff', ), array( 'name' => 'button_bg_color', 'label' => 'Bg Color', 'type' => 'colorpicker', 'value' => '@color.primary', ), array( 'name' => 'button_border_color', 'label' => 'Border Color', 'type' => 'colorpicker', 'value' => '@color.primary', ), ), // 'assets' => function( $path ){ // Onepager::addStyle('content-5', $path . '/style.css'); // } ); ================================================ FILE: blocks/cta/cta-2/style.php ================================================ # .uk-heading-primary{ font-size : px; color : ; } # .uk-text-lead{ color : ; font-size : px; } # .uk-button-primary{ font-size : px; background: ; border: 1px solid ; color : ; text-transform: } # .uk-button-primary:hover{ background : ; color : ; border-color : ; } # .uk-overlay-primary{ background: ; } @media(max-width:768px){ # .uk-heading-primary{ font-size : px; } } ================================================ FILE: blocks/cta/cta-2/view.php ================================================
tabindex="-1" data-src="" uk-img>
> <?php echo $contents['title']; ?>
>

>

================================================ FILE: blocks/cta/cta-3/config.php ================================================ 'cta-3', // Must be unique and singular 'groups' => array('Call To Actions'), // Blocks group for filter and plural // Fields - $contents available on view file to access the option 'contents' => array( array( 'name' => 'title', 'value' => 'Updated in real time', ), array( 'name' => 'description', 'type' => 'textarea', 'value' => 'We’re building the best next-generation presentation tool and platform for students, teachers, creatives,
managers, startups and teams everywhere. We are looking for people with a strong passion for
delightful user experiences and innovative design and technology.', ), array('name' => 'link', 'text' => 'Read More', 'type' => 'link'), array('label' => 'Items', 'type' => 'divider'), // Divider - Text array( 'name' => 'items', 'type' => 'repeater', 'fields' => array( array( array('name' => 'title', 'label' => 'Name', 'value' => 'Powerful Dashboard'), array('name' => 'icon', 'type' => 'icon', 'value' => 'fa fa-angle-right fa-lg'), array('name' => 'link'), ), array( array('name' => 'title', 'label' => 'Name', 'value' => 'Content Strategist'), array('name' => 'icon', 'type' => 'icon', 'value' => 'fa fa-angle-right fa-lg'), array('name' => 'link'), ), ), ), ), // Settings - $settings available on view file to access the option 'settings' => array( array('label' => 'Content', 'type' => 'divider'), // Divider - Text array( 'name' => 'heading_type', 'label' => 'Heading Type', 'type' => 'select', 'value' => 'h1', 'options' => array( 'h1' => 'h1', 'h2' => 'h2', 'h3' => 'h3', 'h4' => 'h4', 'h5' => 'h5', 'h6' => 'h6', ), ), array( 'name' => 'content_alignment', 'label' => 'Alignment', 'type' => 'select', 'value' => 'center', 'options' => array( 'left' => 'Left', 'center' => 'Center', 'right' => 'Right', 'justify' => 'Justify', ), ), array( 'name' => 'content_animation', 'label' => 'Animation ', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), array( 'name' => 'title_size', 'label' => 'Title Size', 'append' => 'px', 'value' => '44', ), array( 'name' => 'title_transformation', 'label' => 'Title Transformation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'desc_size', 'label' => 'Desc Size', 'append' => 'px', 'value' => '18', ), array('label' => 'Button', 'type' => 'divider'), // Divider - Text array( 'name' => 'button_font_size', 'label' => 'Font Size', 'append' => 'px', 'value' => '16', ), array( 'name' => 'button_transformation', 'label' => 'Text Transformation', 'type' => 'select', 'value' => 'inherit', 'options' => array( 'inherit' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array('label' => 'Items', 'type' => 'divider'), // Divider - Text array( 'name' => 'items_font_size', 'label' => 'Font Size', 'append' => 'px', 'value' => '20', ), ), // Fields - $styles available on view file to access the option 'styles' => array( array( 'name' => 'bg_image', 'label' => 'Background', 'type' => 'image', 'value' => '', ), array( 'name' => 'bg_parallax', 'type' => 'switch', 'label' => 'Parallax Background', ), array( 'name' => 'overlay_color', 'label' => 'Overlay Color', 'type' => 'colorpicker', 'value' => 'rgba(255,255,255,1)', ), array( 'name' => 'title_color', 'label' => 'Title Color', 'type' => 'colorpicker', 'value' => '#1c1d1e', ), array( 'name' => 'desc_color', 'label' => 'Desc Color', 'type' => 'colorpicker', 'value' => '#1c1d1e', ), array('label' => 'Button', 'type' => 'divider'), // Divider - Text array( 'name' => 'button_text_color', 'label' => 'Text Color', 'type' => 'colorpicker', 'value' => '#ffffff', ), array( 'name' => 'button_bg_color', 'label' => 'Bg Color', 'type' => 'colorpicker', 'value' => '#006FF0', ), array( 'name' => 'button_border_color', 'label' => 'Border Color', 'type' => 'colorpicker', 'value' => '#006FF0', ), array('label' => 'Items', 'type' => 'divider'), // Divider - Text array( 'name' => 'items_text_color', 'label' => 'Text Color', 'type' => 'colorpicker', 'value' => '#1c1d1e', ), array( 'name' => 'items_bg_color', 'label' => 'Bg Color', 'type' => 'colorpicker', 'value' => '#fff', ), array( 'name' => 'items_border_color', 'label' => 'Border Color', 'type' => 'colorpicker', 'value' => '#d5dbe0', ), ), // 'assets' => function( $path ){ // Onepager::addStyle('content-5', $path . '/style.css'); // } ); ================================================ FILE: blocks/cta/cta-3/style.php ================================================ # .uk-heading-primary{ font-size : px; color : ; } # .uk-text-lead{ color : ; font-size : px; } # .uk-button-primary{ font-size : px; background: ; border: 1px solid ; color : ; text-transform: } # .uk-button-primary:hover{ background : ; color : ; border-color : ; } # .uk-overlay-primary{ background: ; } # .uk-background-default{ color:; background-color:; border: 1px solid ; border-radius: 10px; cursor:pointer; } # .uk-background-default h3{ font-size:px; } # .uk-background-default a{ color:; } # .uk-background-default:hover a{ color:; text-decoration:none; } @media(max-width:768px){ # .uk-heading-primary{ font-size : px; } # .links{ margin-left:30px !important; } } ================================================ FILE: blocks/cta/cta-3/view.php ================================================
tabindex="-1" data-src="" uk-img>
>

>

================================================ FILE: blocks/cta/cta-4/config.php ================================================ 'cta-4', // Must be unique and singular 'groups' => array('Call To Actions'), // Blocks group for filter and plural // Fields - $contents available on view file to access the option 'contents' => array( array( 'name' => 'title', 'value' => 'We Care About You', ), array( 'name' => 'description', 'type' => 'editor', 'value' => 'We waited until we could do it right. Then we did! Instead of creating a carbon copy. This
template has enough pages and blocks to let you create an awesome landing page', ), array('name'=>'link', 'type' => 'link', 'text' => 'Book Now', 'placeholder'=> home_url()), array('name'=>'link_2', 'type' => 'link', 'text' => 'Get Started', 'placeholder'=> home_url()), ), // Settings - $settings available on view file to access the option 'settings' => array( array('label' => 'Content', 'type' => 'divider'), // Divider - Text array( 'name' => 'heading_type', 'label' => 'Heading Type', 'type' => 'select', 'value' => 'h1', 'options' => array( 'h1' => 'h1', 'h2' => 'h2', 'h3' => 'h3', 'h4' => 'h4', 'h5' => 'h5', 'h6' => 'h6', ), ), array( 'name' => 'content_alignment', 'label' => 'Alignment', 'type' => 'select', 'value' => 'center', 'options' => array( 'left' => 'Left', 'center' => 'Center', 'right' => 'Right', 'justify' => 'Justify', ), ), array( 'name' => 'content_animation', 'label' => 'Animation ', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), array( 'name' => 'title_size', 'label' => 'Title Size', 'append' => 'px', 'value' => '44', ), array( 'name' => 'title_transformation', 'label' => 'Title Transformation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'desc_size', 'label' => 'Desc Size', 'append' => 'px', 'value' => '18', ), array('label' => 'Button', 'type' => 'divider'), // Divider - Text array( 'name' => 'button_font_size', 'label' => 'Font Size', 'append' => 'px', 'value' => '16', ), array( 'name' => 'button_transformation', 'label' => 'Text Transformation', 'type' => 'select', 'value' => 'inherit', 'options' => array( 'inherit' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), ), // Fields - $styles available on view file to access the option 'styles' => array( array( 'name' => 'bg_image', 'label' => 'Background', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2019/08/about-bg09.jpg ', ), array( 'name' => 'bg_parallax', 'type' => 'switch', 'label' => 'Parallax Background', ), array( 'name' => 'overlay_color', 'label' => 'Overlay Color', 'type' => 'colorpicker', 'value' => 'rgba(200,200,200,0.17)', ), array( 'name' => 'title_color', 'label' => 'Title Color', 'type' => 'colorpicker', 'value' => '#fff', ), array( 'name' => 'desc_color', 'label' => 'Desc Color', 'type' => 'colorpicker', 'value' => '#ddd', ), array('label' => 'Button', 'type' => 'divider'), // Divider - Text array( 'name' => 'button_text_color', 'label' => 'Left Button Text', 'type' => 'colorpicker', 'value' => '#fff', ), array( 'name' => 'button_bg_color', 'label' => 'Left Button Bg', 'type' => 'colorpicker', 'value' => '#56CCF2', ), array( 'name' => 'button_border_color', 'label' => 'Left Button Border', 'type' => 'colorpicker', 'value' => '#56CCF2', ), array( 'name' => 'button_text_color_right', 'label' => 'Right Button Text', 'type' => 'colorpicker', 'value' => '#fff', ), array( 'name' => 'button_bg_color_right', 'label' => 'Right Button Bg', 'type' => 'colorpicker', 'value' => 'rgba(86,204,242,0)', ), array( 'name' => 'button_border_color_right', 'label' => 'Right Button Border', 'type' => 'colorpicker', 'value' => '#fff', ), ), ); ================================================ FILE: blocks/cta/cta-4/style.php ================================================ # .uk-heading-primary{ font-size : px; color : ; } # .uk-text-lead{ color : ; font-size : px; } # .uk-button-primary{ font-size : px; background: ; border: 1px solid ; color : ; text-transform: } # .uk-button-primary:hover{ background : ; color : ; border-color : ; } # .op-button-right{ font-size : px; background: transparent; border: 1px solid ; color : ; text-transform: } # .op-button-right:hover{ background : ; color : ; border-color : ; } # .uk-overlay-primary{ background: ; } @media(max-width:768px){ # .uk-heading-primary{ font-size : px; } } ================================================ FILE: blocks/cta/cta-4/view.php ================================================
tabindex="-1" data-src="" uk-img>
>
>
>
================================================ FILE: blocks/features/feature-1/config.php ================================================ 'feature-1', // Must be unique and singular 'groups' => array('features'), // Blocks group for filter and plural // Fields - $contents available on view file to access the option 'contents' => array( array( 'name' => 'title', 'value' => 'Lets make a better website together', ), array( 'name' => 'description', 'type' => 'editor', 'value' => 'The world is a dangerous place to live; not because of the people who are evil, but because of the people who dont do anything about it.', ), array( 'name' => 'image', 'type' => 'image', 'value' => 'http://s3.amazonaws.com/quantum-assets/img-1.png', ), array( 'name' => 'link', 'type' => 'link'), ), // Settings - $settings available on view file to access the option 'settings' => array( array('label' => 'Content', 'type' => 'divider'), // Divider - Text array( 'name' => 'heading_type', 'label' => 'Heading Type', 'type' => 'select', 'value' => 'h1', 'options' => array( 'h1' => 'h1', 'h2' => 'h2', 'h3' => 'h3', 'h4' => 'h4', 'h5' => 'h5', 'h6' => 'h6', ), ), array( 'name' => 'media_alignment', 'label' => 'Meida Alignment', 'type' => 'select', 'value' => 'right', 'options' => array( 'left' => 'Left', 'right' => 'Right', ), ), array( 'name' => 'media_grid', 'label' => 'Meida Grid', 'type' => 'select', 'value' => 'width-1-3', 'options' => array( 'width-1-2' => 'Half', 'width-1-3' => 'One Thrids', 'width-1-4' => 'One Fourth', 'width-2-3' => 'Two Thirds', ), ), array( 'name' => 'title_size', 'label' => 'Title Size', 'append' => 'px', 'value' => '@section_title_size', ), array( 'name' => 'title_transformation', 'label' => 'Title Transformation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'desc_size', 'label' => 'Desc Size', 'append' => 'px', 'value' => '18', ), array( 'name' => 'animation_content', 'label' => 'Animation Content', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), array( 'name' => 'animation_media', 'label' => 'Animation Media', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), ), // Fields - $styles available on view file to access the option 'styles' => array( array('label' => 'Background', 'type' => 'divider'), // Divider - Background array( 'name' => 'bg_image', 'label' => 'Image', 'type' => 'image', ), array( 'name' => 'bg_repeat', 'label' => 'Repeat', 'type' => 'select', 'options' => array( 'no-repeat' => 'No Repeat', 'repeat-x' => 'Repeat X', 'repeat-y' => 'Repeat Y', ), ), array( 'name' => 'bg_color', 'label' => 'Bg Color', 'type' => 'colorpicker', 'value' => '#ebeff2', ), array('label' => 'Text', 'type' => 'divider'), // Divider - Text array( 'name' => 'title_color', 'label' => 'Title Color', 'type' => 'colorpicker', 'value' => '#323232', ), array( 'name' => 'text_color', 'label' => 'Text Color', 'type' => 'colorpicker', 'value' => '#323232', ), array( 'name' => 'button_bg_color', 'label' => 'Button Background', 'type' => 'colorpicker', 'value' => '@color.primary', ), array( 'name' => 'button_text_color', 'label' => 'Button Text', 'type' => 'colorpicker', 'value' => '#fff', ), ), // 'assets' => function( $path ){ // Onepager::addStyle('content-1', $path . '/style.css'); // } ); ================================================ FILE: blocks/features/feature-1/style.php ================================================ #{ background-image: url(); background-repeat: ; background-size: cover; background-color : ; } # .uk-heading-primary { font-size : px; color : ; } # .uk-text-lead { font-size : px; color : ; } # .uk-button{ background: ; color : ; } # .uk-button:hover{ background: ; color : ; border-color : ; } @media(max-width:768px){ # .uk-heading-primary{ font-size : px; } } ================================================ FILE: blocks/features/feature-1/view.php ================================================
> <?php echo $contents['title']; ?>
>

>

================================================ FILE: blocks/features/feature-10/config.php ================================================ 'features-10', 'groups' => array('features'), 'contents' => array( array( 'name' => 'section_image', 'label' => 'Section Image', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2020/03/block-1.jpg', ), array( 'name' => 'heading_text', 'label' => 'Heading Text', 'type' => 'text', 'value' => 'We are among the leading Law Firms in Sydney and have the expertise and skill to assist you with any large, complicated and serious matters.', ), array( 'name' => 'tab_items', 'type' => 'repeater', 'fields' => array( array( array( 'name' => 'title', 'label' => 'Title', 'type' => 'text', 'value' => 'General Practice', ), array( 'name' => 'desc', 'label' => 'Description', 'type' => 'editor', 'value' => 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled.', ), array( 'name' => 'tab_btn', 'text' => 'Get Help Now', 'type' => 'link', 'placeholder' => home_url()), ), array( array( 'name' => 'title', 'label' => 'Title', 'type' => 'text', 'value' => 'Business Solution', ), array( 'name' => 'desc', 'label' => 'Description', 'type' => 'editor', 'value' => 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled.', ), array( 'name' => 'tab_btn', 'text' => 'Get Help Now', 'type' => 'link', 'placeholder' => home_url(), ), ), array( array( 'name' => 'title', 'label' => 'Title', 'type' => 'text', 'value' => 'Wide Experience ', ), array( 'name' => 'desc', 'label' => 'Description', 'type' => 'editor', 'value' => 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled.', ), array( 'name' => 'tab_btn', 'text' => 'Get Help Now', 'type' => 'link', 'placeholder' => home_url(), ), ), array( array( 'name' => 'title', 'label' => 'Title', 'type' => 'text', 'value' => 'Planning', ), array( 'name' => 'desc', 'label' => 'Description', 'type' => 'editor', 'value' => 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled.', ), array( 'name' => 'tab_btn', 'text' => 'Get Help Now', 'type' => 'link', 'placeholder' => home_url(), ), ), ), ), ), 'settings' => array( array('label' => 'Media Animation', 'type' => 'divider'), // Divider - Text array( 'name' => 'animation_media', 'label' => 'Media Animation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), array('label' => 'Heading Options', 'type' => 'divider'), // Divider - Text array( 'name' => 'heading_type', 'label' => 'Heading Type', 'type' => 'select', 'value' => 'h1', 'options' => array( 'h1' => 'h1', 'h2' => 'h2', 'h3' => 'h3', 'h4' => 'h4', 'h5' => 'h5', 'h6' => 'h6', ), ), array( 'name' => 'title_size', 'label' => 'Title Size', 'append' => 'px', 'value' => '36', ), array( 'name' => 'title_font_weight', 'label' => 'Font Weight', 'type' => 'select', 'value' => '700', 'options' => array( '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'title_transformation', 'label' => 'Title Transformation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'animation_content', 'label' => 'Content Animation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), array('label' => 'Tab Options', 'type' => 'divider'), // Divider - Text array( 'name' => 'tab_title_size', 'label' => 'Tab Title Size', 'append' => 'px', 'value' => '20', ), array( 'name' => 'tab_font_weight', 'label' => 'Font Weight', 'type' => 'select', 'value' => '600', 'options' => array( '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'tab_text_transformation', 'label' => 'Title Transformation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'tab_desc_size', 'label' => 'Tab Description Size', 'append' => 'px', 'value' => '16', ), array( 'name' => 'tab_desc_font_weight', 'label' => 'Description Font Weight', 'type' => 'select', 'value' => '300', 'options' => array( '300' => '300', '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'button_font', 'type' => 'font', 'label' => 'Button Fonts', ), array( 'name' => 'btn_font_size', 'label' => 'Button Font Size', 'append' => 'px', 'value' => '18', ), array( 'name' => 'btn_font_weight', 'label' => 'Button Font Weight', 'type' => 'select', 'value' => '400', 'options' => array( '300' => '300', '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'btn_text_transform', 'label' => 'Button Text Transformation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), ), 'styles' => array( array( 'name' => 'bg_color', 'label' => 'Background Color', 'type' => 'colorpicker', 'value' => '#ffffff', ), array( 'name' => 'title_color', 'label' => 'Title Color', 'type' => 'colorpicker', 'value' => '#132a46', ), array( 'name' => 'tab_color', 'label' => 'Tab Button Color', 'type' => 'colorpicker', 'value' => '#132a46', ), array( 'name' => 'tab_color_hover', 'label' => 'Tab Button Hover Color', 'type' => 'colorpicker', 'value' => '#dd5344', ), array( 'name' => 'text_color', 'label' => 'Text Color', 'type' => 'colorpicker', 'value' => '#132a46', ), array( 'name' => 'button_bg_color', 'label' => 'Button Background Color', 'type' => 'colorpicker', 'value' => '#29cb8b', ), array( 'name' => 'button_bg_color_hover', 'label' => 'Button Background Hover Color', 'type' => 'colorpicker', 'value' => '#ffffff', ), array( 'name' => 'button_text_color', 'label' => 'Button Text Color', 'type' => 'colorpicker', 'value' => '#ffffff', ), array( 'name' => 'button_text_color_hover', 'label' => 'Button Text Color Hover', 'type' => 'colorpicker', 'value' => '#29cb8b', ), ), ); ================================================ FILE: blocks/features/feature-10/style.php ================================================ # { background-color: } # h1.uk-heading-primary, # h2.uk-heading-primary, # h3.uk-heading-primary, # h4.uk-heading-primary, # h5.uk-heading-primary, # h6.uk-heading-primary{ font-family: ; ; ; font-weight: ; color: ; } # .tab-area-wrapper { padding: 50px; } # .tab-content-wrap { padding-top: 50px; } # ul.tx-tab-nav { border-bottom: 1px solid #dddddd; margin-left: 0; } # ul.tx-tab-nav li{ padding-bottom: 10px; padding-left: 0; margin-left: 20px; } # ul.tx-tab-nav li:first-child { padding-left: 0; margin-left: 0; } # ul.tx-tab-nav li a{ font-family: ; ; ; font-weight: ; color: ; } # ul.tx-tab-nav li:hover a{ color: ; } # ul.tx-tab-nav li::after { content: ''; width: 0%; background: ; height: 1px; bottom: -1px; left: 0; position: absolute; transition: all 200ms linear; } # ul.tx-tab-nav li:hover:after { content: ''; position: absolute; width: 100%; background: ; height: 1px; bottom: -1px; left: 0; } # ul.tx-tab-nav li.uk-active a { color: #dd5346!important; } # ul.tx-tab-nav li.uk-active a { color: red; } # ul.tx-tab-nav li.uk-active::after { content: ''; width: 100%; background: #dd5346; height: 1px; bottom: -1px; left: 0; position: absolute; } # ul li .content-wrapper p{ ; ; font-weight: ; color: } # ul li .content-wrapper a.op-button{ color: ; background-color: ; border: 1px solid ; ; ; font-weight: ; padding: 10px 20px 10px 20px; } # ul li .content-wrapper a:hover{ background-color: ; color: ; } @media(max-width: 960px){ # h1.uk-heading-primary, # h2.uk-heading-primary, # h3.uk-heading-primary, # h4.uk-heading-primary, # h5.uk-heading-primary, # h6.uk-heading-primary{ ; ; } # .image-wrapper img { width: 100%; } # .tab-area-wrapper{ padding-left: 80px; } # ul.tx-tab-nav li{ width: 100%; margin-left: 0; margin-bottom: 5px; } # ul.tx-tab-nav li { border-bottom: 1px solid #dddddd; } # ul.tx-tab-nav{ border-bottom: 0; } } ================================================ FILE: blocks/features/feature-10/view.php ================================================
class="uk-width-1-3@m uk-padding-remove-left uk-text-right">
class="uk-width-expand@m uk-padding-remove-left">
    class="uk-subnav tx-tab-nav" uk-switcher="animation: uk-animation-slide-left-medium, uk-animation-slide-right-medium">
    class="uk-switcher uk-margin tx-tab-body">
================================================ FILE: blocks/features/feature-11/config.php ================================================ 'features-11', 'groups' => array('features'), 'contents' => array( array( 'name' => 'section_title', 'label' => 'Section Title', 'value' => 'Here\'s what some clients wonderful experience', ), array( 'name' => 'heading', 'lable' => 'Heading', 'value' => 'Hear it from our customer', ), array( 'name' => 'section_desc', 'label' => 'desc', 'type' => 'editor', 'value' => '"we\'ve seen amazing results already. I made back the purchase price in just 48 hours! Man, this thing is getting better and better as I learn more about it. Thanks to software, we\'ve just launched our 5th website!"', ), array( 'name' => 'section_image', 'label' => 'Section Image', 'type' => 'media', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2020/03/side-image-feature.jpg', ), array( 'name' => 'image_icon', 'label' => 'Image Icon', 'type' => 'icon', 'value' => 'fa fa-play-circle fa-5x', ), array( 'name' => 'video_source', 'label' => 'Youtube Video Source', 'prepend' => 'URL', 'type' => 'text', 'value' => 'https://youtu.be/DG6USXbTsW0', ), array( 'name' => 'logo_items', 'type' => 'repeater', 'label' => 'Customer Logo', 'fields' => array( array( array( 'name' => 'single_logo', 'label' => 'Logo', 'type' => 'media', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2020/03/logo-1.png', ), ), array( array( 'name' => 'single_logo', 'label' => 'Logo', 'type' => 'media', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2020/03/logo-2.png', ), ), array( array( 'name' => 'single_logo', 'label' => 'Logo', 'type' => 'media', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2020/03/logo-3.png', ), ), ), ), array( 'name' => 'section_btn', 'text' => 'See More Customer Stories', 'type' => 'link', 'placeholder' => home_url(), ), ), 'settings' => array( array('label' => 'Media Animation', 'type' => 'divider'), array( 'name' => 'animation_media', 'label' => 'Media Animation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), array('label' => 'Section Heading', 'type' => 'divider'), // Divider - Section Heading array( 'name' => 'section_heading_type', 'label' => 'Heading Type', 'type' => 'select', 'value' => 'h1', 'options' => array( 'h1' => 'h1', 'h2' => 'h2', 'h3' => 'h3', 'h4' => 'h4', 'h5' => 'h5', 'h6' => 'h6', ), ), array( 'name' => 'section_title_size', 'label' => 'Section Title Size', 'append' => 'px', 'value' => '60', ), array( 'name' => 'section_title_font_weight', 'label' => 'Section Font Weight', 'type' => 'select', 'value' => '700', 'options' => array( '300' => '300', '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'section_title_transformation', 'label' => 'Section Title Transformation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'animation_content', 'label' => 'Content Animation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), array('label' => 'Heading', 'type' => 'divider'), // Divider - Heading array( 'name' => 'heading_type', 'label' => 'Heading Type', 'type' => 'select', 'value' => 'h1', 'options' => array( 'h1' => 'h1', 'h2' => 'h2', 'h3' => 'h3', 'h4' => 'h4', 'h5' => 'h5', 'h6' => 'h6', ), ), array( 'name' => 'title_size', 'label' => 'Title Size', 'append' => 'px', 'value' => '42', ), array( 'name' => 'title_font_weight', 'label' => 'Font Weight', 'type' => 'select', 'value' => '300', 'options' => array( '300' => '300', '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'title_transformation', 'label' => 'Title Transformation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array('label' => 'Heading', 'type' => 'divider'), // Divider - Text array( 'name' => 'text_size', 'label' => 'Text Size', 'append' => 'px', 'value' => '@section_text_size', ), array( 'name' => 'text_font_weight', 'label' => 'Text Font Weight', 'type' => 'select', 'value' => '300', 'options' => array( '300' => '300', '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array('label' => 'Button', 'type' => 'divider'), // Divider - Button array( 'name' => 'btn_font_size', 'label' => 'Button Font Size', 'append' => 'px', 'value' => '16', ), array( 'name' => 'btn_font_weight', 'label' => 'Button Font Weight', 'type' => 'select', 'value' => '300', 'options' => array( '300' => '300', '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), ), 'styles' => array( array( 'name' => 'bg_color', 'label' => 'Background Color', 'type' => 'colorpicker', 'value' => '#ffffff', ), array( 'name' => 'section_title_color', 'label' => 'Section Title Color', 'type' => 'colorpicker', 'value' => '#192330', ), array( 'name' => 'title_color', 'label' => 'Title Color', 'type' => 'colorpicker', 'value' => '#132a46', ), array( 'name' => 'text_color', 'label' => 'Text Color', 'type' => 'colorpicker', 'value' => '#132a46', ), array( 'name' => 'btn_bg', 'label' => 'Button Background Color', 'type' => 'colorpicker', 'value' => '#29cb8b', ), array( 'name' => 'btn_text', 'label' => 'Button Text Color', 'type' => 'colorpicker', 'value' => '#ffffff', ), array( 'name' => 'btn_bg_hover', 'label' => 'Button Hover BG Color', 'type' => 'colorpicker', 'value' => '#ffffff', ), array( 'name' => 'btn_bg_hover_text', 'label' => 'Button Hover Text Color', 'type' => 'colorpicker', 'value' => '#29cb8b', ), array( 'name' => 'btn_border_color', 'label' => 'Button Border Color', 'type' => 'colorpicker', 'value' => '#29cb8b', ), ), ); ================================================ FILE: blocks/features/feature-11/style.php ================================================ #{ background-color:; } # h1.tx-section-heading, # h2.tx-section-heading, # h3.tx-section-heading, # h4.tx-section-heading, # h5.tx-section-heading, # h6.tx-section-heading{ ; ; font-weight: ; color: ; } # h1.tx-heading, # h2.tx-heading, # h3.tx-heading, # h4.tx-heading, # h5.tx-heading, # h6.tx-heading{ ; ; font-weight: ; color: ; } # .tx-text, # p{ ; ; font-weight: ; color: ; } # .tx-inline-list { padding: 0; list-style: none; } # .tx-inline-list > li { padding-left: 30px; } # .tx-inline-list li:first-child { padding-left: 0; } # .tx-ft11-button{ ; ; font-weight: ; background-color:; color: ; } # .tx-ft11-button:hover{ background-color: ; color: ; border: 1px solid ; } # .image-wrapper{ position: relative; } # .image-wrapper a.fa { position: absolute; top: 50%; left: 50%; transform: translate(-50%, -50%); color: #ffffff; text-decoration: none; } @media(max-width: 960px){ # .tx-margin-remove-left { margin-left: 0!important; } # h1.tx-section-heading, # h2.tx-section-heading, # h3.tx-section-heading, # h4.tx-section-heading, # h5.tx-section-heading, # h6.tx-section-heading{ ; ; } # h1.tx-heading, # h2.tx-heading, # h3.tx-heading, # h4.tx-heading, # h5.tx-heading, # h6.tx-heading{ ; ; } # .image-wrapper a img{ width: 100%; } } ================================================ FILE: blocks/features/feature-11/view.php ================================================
class="uk-width-1-3@m">
class="uk-width-expand@m">

================================================ FILE: blocks/features/feature-12/config.php ================================================ 'features-12', 'groups' => array('features'), 'contents' => array( array( 'name' => 'title', 'label' => 'Title', 'type' => 'textarea', 'value' => 'We work as part of your team, helping solve your toughest and most complex legal issues. Wherever you are.', ), array( 'name' => 'section_btn', 'text' => 'Request a free Consultation', 'type' => 'link', 'placeholder' => home_url(), ), ), 'settings' => array( array( 'name' => 'section_heading_type', 'label' => 'Heading Type', 'type' => 'select', 'value' => 'h1', 'options' => array( 'h1' => 'h1', 'h2' => 'h2', 'h3' => 'h3', 'h4' => 'h4', 'h5' => 'h5', 'h6' => 'h6', ), ), array( 'name' => 'title_font_size', 'label' => 'Title Font Size', 'append' => 'px', 'value' => '50', ), array( 'name' => 'title_font_weight', 'label' => 'Title Font Weight', 'type' => 'select', 'value' => '700', 'options' => array( '300' => '300', '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'section_title_transformation', 'label' => 'Title Transformation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'animation_content', 'label' => 'Content Animation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), array('label' => 'Button', 'type' => 'divider'), // Divider - Text array( 'name' => 'section_button_size', 'label' => 'Button font Size', 'append' => 'px', 'value' => '17', ), array( 'name' => 'section_btn_font_weight', 'label' => 'Button Font Weight', 'type' => 'select', 'value' => '600', 'options' => array( '300' => '300', '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), ), 'styles' => array( array( 'name' => 'bg_image', 'label' => 'Background Image', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2020/03/Hero-Block.jpg', ), array( 'name' => 'bg_color', 'label' => 'Background Color', 'type' => 'colorpicker', 'value' => '#ffffff', ), array( 'name' => 'section_title_color', 'label' => 'Section Title Color', 'type' => 'colorpicker', 'value' => '#ffffff', ), array( 'name' => 'button_bg', 'label' => 'Button Background', 'type' => 'colorpicker', 'value' => '#ffffff', ), array( 'name' => 'button_bg_hover', 'label' => 'Button Hover Background', 'type' => 'colorpicker', 'value' => '#29cb8b', ), array( 'name' => 'button_color', 'label' => 'Button Color', 'type' => 'colorpicker', 'value' => '#29cb8b', ), array( 'name' => 'button_color_hover', 'label' => 'Button Color Hover', 'type' => 'colorpicker', 'value' => '#ffffff', ), ), ); ================================================ FILE: blocks/features/feature-12/style.php ================================================ # { background-color: } # h1.uk-heading-primary, # h2.uk-heading-primary, # h3.uk-heading-primary, # h4.uk-heading-primary, # h5.uk-heading-primary, # h6.uk-heading-primary { ; ; font-weight: ; color: ; } # a.uk-button-primary{ ; font-weight: ; background-color:; color: ; transition: all 300ms ease-in-out; } # a.uk-button-primary:hover{ background-color: ; color: ; } # .top-space{ margin-top: 30px; } # .hero-content-wrapper { width: 70%; margin: 0 auto; } @media only screen and (max-width: 960px) { # .hero-content-wrapper{ width: 100%; } # .top-space{ margin-top: 100px; } # .hero-content-wrapper { padding-top: 60px; } # h1.uk-heading-primary { ; ; } # a.uk-button-primary{ padding: 0 30px; } } @media only screen and (max-width: 640px){ # h1.uk-heading-primary, # h2.uk-heading-primary, # h3.uk-heading-primary, # h4.uk-heading-primary, # h5.uk-heading-primary, # h6.uk-heading-primary { ; ; } } ================================================ FILE: blocks/features/feature-12/view.php ================================================
================================================ FILE: blocks/features/feature-13/config.php ================================================ 'feature-13', 'groups' => array('features'), 'contents' => array( array( 'name' => 'section_title', 'label' => 'Title', 'value' => 'Meet Our Attorneys', ), array( 'name' => 'sub_heading', 'type' => 'repeater', 'fields' => array( array( array('name' => 'image', 'label' => 'Attorneys Image', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2020/03/team1.jpg'), array('name' => 'name', 'label' => 'Name', 'value' => 'Marisa Goldberg'), array('name' => 'designation', 'label' => 'Designation', 'value' => 'Bank & Financial Lawyer'), array('name' => 'desc', 'label' => 'Description', 'type' => 'editor', 'value' => 'The trial lawyers at Arnold & Itkin LLP are known for the unique blend of skill, energy, and passion they bring to each and every case.'), array('name' => 'contact', 'text' => 'Contact Link', 'type' => 'link', 'placeholder' => home_url()), ), array( array('name' => 'image', 'label' => 'Attorneys Image', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2020/03/team-2.jpg'), array('name' => 'name', 'label' => 'Name', 'value' => 'Kevin Stiller'), array('name' => 'designation', 'label' => 'Designation', 'value' => 'Senior Lawyer'), array('name' => 'desc', 'label' => 'Description', 'type' => 'editor', 'value' => 'The trial lawyers at Arnold & Itkin LLP are known for the unique blend of skill, energy, and passion they bring to each and every case.'), array('name' => 'contact', 'text' => 'Contact Link', 'type' => 'link', 'placeholder' => home_url()), ), array( array('name' => 'image', 'label' => 'Attorneys Image', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2020/03/team-3.jpg'), array('name' => 'name', 'label' => 'Name', 'value' => 'Jack Smith'), array('name' => 'designation', 'label' => 'Designation', 'value' => 'Senior Lawyer'), array('name' => 'desc', 'label' => 'Description', 'type' => 'editor', 'value' => 'The trial lawyers at Arnold & Itkin LLP are known for the unique blend of skill, energy, and passion they bring to each and every case.'), array('name' => 'contact', 'text' => 'Contact Link', 'type' => 'link', 'placeholder' => home_url()), ), ), ), ), 'settings' => array( array('label' => 'Heading', 'type' => 'divider'), // Divider - Text array( 'name' => 'heading_type', 'label' => 'Heading Type', 'type' => 'select', 'value' => 'h1', 'options' => array( 'h1' => 'h1', 'h2' => 'h2', 'h3' => 'h3', 'h4' => 'h4', 'h5' => 'h5', 'h6' => 'h6', ), ), array( 'name' => 'title_size', 'label' => 'Title Size', 'append' => 'px', 'value' => '40', ), array( 'name' => 'title_font_weight', 'label' => 'Font Weight', 'type' => 'select', 'value' => '700', 'options' => array( '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'title_transformation', 'label' => 'Title Text Transformation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'content_animation', 'label' => 'Animation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), array('label' => 'Attorney', 'type' => 'divider'), // Divider - Text array( 'name' => 'attorney_title_font', 'type' => 'font', 'label' => 'Title Fonts', ), array( 'name' => 'attorney_title_size', 'label' => 'Title Font Size', 'append' => 'px', 'value' => '30', ), array( 'name' => 'attorney_designation_size', 'label' => 'Designation Font Size', 'append' => 'px', 'value' => '16', ), array( 'name' => 'attorney_title_font_weight', 'label' => 'Font Weight', 'type' => 'select', 'value' => '700', 'options' => array( '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'attorney_designation_font_weight', 'label' => 'Designation Font Weight', 'type' => 'select', 'value' => '700', 'options' => array( '300' => '300', '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'attorney_title_transformation', 'label' => 'Title Transformation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'attorney_text_size', 'label' => 'Text Font Size', 'append' => 'px', 'value' => '16', ), array( 'name' => 'attorney_text_font_weight', 'label' => 'Text Font Weight', 'type' => 'select', 'value' => '300', 'options' => array( '300' => '300', '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'attorney_button_size', 'label' => 'Button Font Size', 'append' => 'px', 'value' => '16', ), array( 'name' => 'attorney_button_font_weight', 'label' => 'Button Font Weight', 'type' => 'select', 'value' => '300', 'options' => array( '300' => '300', '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'attorney_button_transformation', 'label' => 'Button Text Transformation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), ), 'styles' => array( array( 'name' => 'bg_color', 'label' => 'Background Color', 'type' => 'colorpicker', 'value' => '#f1f1f1', ), array( 'name' => 'section_title_color', 'label' => 'Section Title Color', 'type' => 'colorpicker', 'value' => '#132a46', ), array('label' => 'Attorney', 'type' => 'divider'), // Divider - Text array( 'name' => 'title_color', 'label' => 'Title Color', 'type' => 'colorpicker', 'value' => '#132a46', ), array( 'name' => 'designation_color', 'label' => 'Designation Color', 'type' => 'colorpicker', 'value' => '#132a46', ), array( 'name' => 'text_color', 'label' => 'Text Color', 'type' => 'colorpicker', 'value' => '#132a46', ), array( 'name' => 'btn_bg', 'label' => 'Button Background', 'type' => 'colorpicker', 'value' => '#29cb8b', ), array( 'name' => 'btn_text', 'label' => 'Button Text', 'type' => 'colorpicker', 'value' => '#ffffff', ), array( 'name' => 'btn_bg_hover', 'label' => 'Button Hover Background', 'type' => 'colorpicker', 'value' => '#ffffff', ), array( 'name' => 'btn_text_hover', 'label' => 'Button Hover Text', 'type' => 'colorpicker', 'value' => '#dd5346', ), ), ); ================================================ FILE: blocks/features/feature-13/style.php ================================================ # { background-color: ; } # .section-heading h1, # .section-heading h2, # .section-heading h3, # .section-heading h4, # .section-heading h5, # .section-heading h6{ ; ; font-weight: ; } # .attorney_list h2.attorney-heading { ; ; font-weight: ; margin-top: 15px; margin-bottom: 0; } # .attorney_list h3.designation { ; ; font-weight: ; margin-top: 0; margin-bottom: 12px; } # .attorney_list p{ ; ; font-weight: ; margin-top: 0; } # a.op-button-right{ ; font-weight: ; background: ; color: ; transition: all 300ms ease-in-out; border: none; } # a.op-button-right:hover{ background: ; color: ; } @media(max-width: 960px){ # .section-heading h1, # .section-heading h2, # .section-heading h3, # .section-heading h4, # .section-heading h5, # .section-heading h6{ ; ; } # .attorney_list h2.attorney-heading { ; ; } # .attorney_list h3.designation { ; ; } } ================================================ FILE: blocks/features/feature-13/view.php ================================================
class="uk-width-1-3@s">
item

================================================ FILE: blocks/features/feature-14/config.php ================================================ 'feature-14', 'groups' => array('features'), 'tag' => 'new', 'contents' => array( array( 'name' => 'top_subheading', 'label' => 'Heading Top Text', 'value' => 'Welcome to the Onepager Education Theme' ), array( 'name' => 'main_heading', 'label' => 'Heading', 'value' => 'Best Learning Management
System for Wordpress' ), array( 'name' => 'desc', 'label' => 'Description', 'type' => 'textarea', 'value' => '"This book is written with the sole objective of helping the reader
achieve a happy, satisfying, and worthwhile life."' ), array( 'name' => 'cta_link', 'text' => 'LEARN MORE', 'url' => '#', 'type' => 'link' ) ), 'settings' => array( array( 'name' => 'heading_top_size', 'label' => 'Heading Top Font Size', 'append' => 'px', 'value' => '20', ), array( 'name' => 'heading_top_font_weight', 'label' => 'Heading Top Font Weight', 'type' => 'select', 'value' => '500', 'options' => array( '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'heading_type', 'label' => 'Heading Type', 'type' => 'select', 'value' => 'h1', 'options' => array( 'h1' => 'h1', 'h2' => 'h2', 'h3' => 'h3', 'h4' => 'h4', 'h5' => 'h5', 'h6' => 'h6', ), ), array( 'name' => 'heading_size', 'label' => 'Heading Font Size', 'append' => 'px', 'value' => '52', ), array( 'name' => 'heading_font_weight', 'label' => 'Heading Font Weight', 'type' => 'select', 'value' => '700', 'options' => array( '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'title_transformation', 'label' => 'Title Text Transformation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'content_animation', 'label' => 'Animation ', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%' ), ), array( 'name' => 'desc_size', 'label' => 'Description Font Size', 'append' => 'px', 'value' => '18', ), array( 'name' => 'desc_font_weight', 'label' => 'Description Font Weight', 'type' => 'select', 'value' => '400', 'options' => array( '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'btn_size', 'label' => 'Button Font Size', 'append' => 'px', 'value' => '15', ), array( 'name' => 'btn_font_weight', 'label' => 'Button Font Weight', 'type' => 'select', 'value' => '600', 'options' => array( '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), ), 'styles' => array( array( 'name' => 'bg_image', 'label' => 'Background', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2020/03/Hero-1.jpg' ), array( 'name'=>'bg_parallax', 'type'=> 'switch', 'label'=>'Parallax Background' ), array( 'name' => 'bg_image_size', 'label' => 'Size', 'type' => 'select', 'value' => 'uk-background-cover', 'options' => array( 'uk-background-contain' => 'Contain', 'uk-background-cover' => 'Cover', ), ), array( 'name' => 'section_bg', 'label' => 'Section Background', 'type' => 'colorpicker', 'value' => '#fff3f5' ), array( 'name' => 'heading_top', 'label' => 'Top Heading Color', 'type' => 'colorpicker', 'value' => '#142b45' ), array( 'name' => 'main_heading', 'label' => 'Main Heading Color', 'type' => 'colorpicker', 'value' => '#142b45' ), array( 'name' => 'hero_desc', 'label' => 'Description Color', 'type' => 'colorpicker', 'value' => '#142b45' ), array( 'name' => 'button_color', 'label' => 'Button Text Color', 'type' => 'colorpicker', 'value' => '#142b45' ), array( 'name' => 'button_bg', 'label' => 'Button Background Color', 'type' => 'colorpicker', 'value' => 'rgb(255, 255, 255)' ), array( 'name' => 'btn_box_shadow', 'label' => 'Button Box Shadow', 'type' => 'colorpicker', 'value' => 'rgba(251, 136, 159, 0.35)' ), ) ); ================================================ FILE: blocks/features/feature-14/style.php ================================================ # { background-color: ; } # .content-wrapper h1.uk-heading-primary, # .content-wrapper h2.uk-heading-primary, # .content-wrapper h3.uk-heading-primary, # .content-wrapper h4.uk-heading-primary, # .content-wrapper h5.uk-heading-primary, # .content-wrapper h6.uk-heading-primary { font-size: ; line-height: ; font-weight: ; color: ; } # .content-wrapper h4.top-heading-text { font-size: ; line-height: ; font-weight: ; color: ; } # .content-wrapper p.hero-desc { font-size: ; line-height: ; font-weight: ; color: ; } # .content-wrapper .op-button{ font-size: ; font-weight: ; color: ; border: 1px solid ; border-radius: 10px; background-color: ; box-shadow: 0px 4px 5px 0px ; transition: 400ms ease-in-out; } # .content-wrapper .op-button:hover{ box-shadow: 0px -1px 5px 0px ; } @media(max-width: 768px){ # { display: flex; align-items: center; background-position: center; } # .content-wrapper .uk-heading-primary { font-size: ; line-height: ; } # .content-wrapper h4.top-heading-text { font-size: ; line-height: ; } # .content-wrapper .op-button{ font-size: ; } #{ background-position: bottom left; } # .content-wrapper h1.uk-heading-primary br, # .content-wrapper h2.uk-heading-primary br, # .content-wrapper h3.uk-heading-primary br, # .content-wrapper h4.uk-heading-primary br, # .content-wrapper h5.uk-heading-primary br, # .content-wrapper h6.uk-heading-primary br{ display: none; } # .content-wrapper p.hero-desc br{ display: none; } } ================================================ FILE: blocks/features/feature-14/view.php ================================================
tabindex="-1" data-src="" uk-img>
class="uk-width-1-1">

================================================ FILE: blocks/features/feature-15/config.php ================================================ 'feature-15', 'groups' => array('features'), 'tag' => 'new', 'contents' => array( array( 'name' => 'section_title', 'label' => 'Section Title', 'value' => 'Our Services' ), array( 'name' => 'section_desc', 'label' => 'Section Description', 'type' => 'textarea', 'value' => 'Proin ac lobortis arcu, a vestibulum augue. Vivamus ipsum neque, facilisis vel
mollis vitae, mollis nec ante. Quisque aliquam dictum condim.' ), array( 'name' => 'services', 'type' => 'repeater', 'fields' => array( array( array('name' => 'media_image', 'label' => 'Image', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2020/03/item-1.png'), array('name' => 'service_title', 'label' => 'Item Title', 'value' => 'Scholarship Facility'), array('name' => 'service_desc', 'label' => 'Item Description', 'type' => 'textarea', 'value' => 'The precursor to The Secret, The
Power of Positive Thinking has
helped millions of men.' ) ), array( array('name' => 'media_image', 'label' => 'Image', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2020/03/item-2.png'), array('name' => 'service_title', 'label' => 'Item Title', 'value' => 'Skilled Lecturers'), array('name' => 'service_desc', 'label' => 'Item Description', 'type' => 'textarea', 'value' => 'The precursor to The Secret, The
Power of Positive Thinking has
helped millions of men.' ) ), array( array('name' => 'media_image', 'label' => 'Image', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2020/03/item-3.png'), array('name' => 'service_title', 'label' => 'Item Title', 'value' => 'Online & Offline courses'), array('name' => 'service_desc', 'label' => 'Item Description', 'type' => 'textarea', 'value' => 'The precursor to The Secret, The
Power of Positive Thinking has
helped millions of men.' ) ), ) ) ), 'settings' => array( array( 'name' => 'heading_type', 'label' => 'Heading Type', 'type' => 'select', 'value' => 'h1', 'options' => array( 'h1' => 'h1', 'h2' => 'h2', 'h3' => 'h3', 'h4' => 'h4', 'h5' => 'h5', 'h6' => 'h6', ), ), array( 'name' => 'section_title_size', 'label' => 'Section Font Size', 'append' => 'px', 'value' => '52', ), array( 'name' => 'section_description_size', 'label' => 'Description Font Size', 'append' => 'px', 'value' => '18', ), array( 'name' => 'section_title_font_weight', 'label' => 'Font Weight', 'type' => 'select', 'value' => '700', 'options' => array( '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'section_title_transformation', 'label' => 'Title Transformation', 'type' => 'select', 'value' => 'inherit', 'options' => array( 'inherit' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'title_alignment', 'label' => 'Title Alignment', 'type' => 'select', 'value' => 'center', 'options' => array( 'left' => 'Left', 'center' => 'Center', 'right' => 'Right', 'justify' => 'Justify', ), ), array( 'name' => 'title_animation', 'label' => 'Animation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), array('label' => 'Service Item', 'type' => 'divider'), array( 'name' => 'item_font_size', 'label' => 'item Title Font Size', 'append' => 'px', 'value' => '32', ), array( 'name' => 'item_font_weight', 'label' => 'Item Title Font Weight', 'type' => 'select', 'value' => '700', 'options' => array( '300' => '300', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'item_title_transformation', 'label' => 'Item Title Transformation', 'type' => 'select', 'value' => 'inherit', 'options' => array( 'inherit' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'item_desc_font', 'label' => 'Description Font Size', 'append' => 'px', 'value' => '18', ), array( 'name' => 'item_desc_font_weight', 'label' => 'Description Font Weight', 'type' => 'select', 'value' => '300', 'options' => array( '300' => '300', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'content_animation', 'label' => 'Content Animation', 'type' => 'select', 'value' => 'fadeInUp', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), ), 'styles' => array( array( 'name' => 'bg_color', 'label' => 'Background Color', 'type' => 'colorpicker', 'value' => '#ffffff', ), array( 'name' => 'section_title_color', 'label' => 'Section Font Color', 'type' => 'colorpicker', 'value' => '#142b45', ), array( 'name' => 'section_desc_color', 'label' => 'Section Desc Color', 'type' => 'colorpicker', 'value' => '#142b45', ), array( 'name' => 'item_title_color', 'label' => 'Item Title Color', 'type' => 'colorpicker', 'value' => '#142b45', ), array( 'name' => 'item_desc_color', 'label' => 'Item Description Color', 'type' => 'colorpicker', 'value' => '#142b45', ), ) ); ================================================ FILE: blocks/features/feature-15/style.php ================================================ # { background: } # .section-heading h1.uk-heading-primary, # .section-heading h2.uk-heading-primary, # .section-heading h3.uk-heading-primary, # .section-heading h4.uk-heading-primary, # .section-heading h5.uk-heading-primary, # .section-heading h6.uk-heading-primary{ font-size: ; line-height: ; font-weight: ; color: ; } # .section-heading p { font-size: ; line-height: ; color: ; } # .single-content-wrapper h2 { font-size: ; line-height: ; font-weight: ; color: ; } # .single-content-wrapper p.service-desc { font-size: ; line-height: ; color: ; } @media only screen and (max-width: 768px){ # .section-heading .uk-heading-primary{ font-size: ; line-height: ; } # .single-content-wrapper h2 { font-size: ; line-height: ; } # .section-heading p br{ display: none; } # .single-content-wrapper p.service-desc br{ display: none; } # .single-content-wrapper h2 { font-size: ; line-height: ; } } ================================================ FILE: blocks/features/feature-15/view.php ================================================

>

<?php echo $single_service['service_title']?>

================================================ FILE: blocks/features/feature-16/config.php ================================================ 'feature-16', 'groups' => array('features'), 'tag' => 'new', 'contents' => array( array( 'name' => 'section_image', 'label' => 'Section Image', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2020/03/section-image.jpg', ), array( 'name' => 'sub_heading', 'label' => 'Sub-Heading', 'value' => 'Welcome to the Onepager Education Theme' ), array( 'name' => 'heading', 'label' => 'Heading', 'value' => 'Best Learning Management
System for Wordpress' ), array( 'name' => 'desc', 'label' => 'description', 'type' => 'textarea', 'value' => '"This book is written with the sole objective of helping the reader
achieve a happy, satisfying, and worthwhile life."' ), array( 'name' => 'btn_1', 'text' => 'LEARN MORE', 'type' => 'link' ), array( 'name' => 'btn_2', 'text' => 'PLAY VIDEO', 'type' => 'link' ) ), 'settings' => array( array( 'name' => 'heading_type', 'label' => 'Heading Type', 'type' => 'select', 'value' => 'h1', 'options' => array( 'h1' => 'h1', 'h2' => 'h2', 'h3' => 'h3', 'h4' => 'h4', 'h5' => 'h5', 'h6' => 'h6', ), ), array( 'name' => 'title_size', 'label' => 'Title Size', 'append' => 'px', 'value' => '52', ), array( 'name' => 'title_font_weight', 'label' => 'Title Font Weight', 'type' => 'select', 'value' => '700', 'options' => array( '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'title_transformation', 'label' => 'Title Text Transformation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'subtitle_size', 'label' => 'Sub-Title Size', 'append' => 'px', 'value' => '20', ), array( 'name' => 'title_font_weight', 'label' => 'Title Font Weight', 'type' => 'select', 'value' => '500', 'options' => array( '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'desc_size', 'label' => 'Description Size', 'append' => 'px', 'value' => '20', ), array( 'name' => 'desc_font_weight', 'label' => 'Description Font Weight', 'type' => 'select', 'value' => '300', 'options' => array( '300' => '300', '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array('label' => 'Button', 'type' => 'divider'), // Divider - Button array( 'name' => 'btn_size', 'label' => 'Button Size', 'append' => 'px', 'value' => '16', ), array( 'name' => 'btn_font_weight', 'label' => 'Button Font Weight', 'type' => 'select', 'value' => '500', 'options' => array( '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'btn_radius', 'label' => 'Button Border Radius', 'append' => 'px', 'value' => '10', ), ), 'styles' => array( array( 'name' => 'bg_color', 'label' => 'Background Color', 'type' => 'colorpicker', 'value' => '#fee7eb', ), array('label' => 'Typography Color', 'type' => 'divider'), // Divider - Button array( 'name' => 'subheading_color', 'label' => 'Sub-Heading Color', 'type' => 'colorpicker', 'value' => '#142b45', ), array( 'name' => 'heading_color', 'label' => 'Heading Color', 'type' => 'colorpicker', 'value' => '#142b45', ), array( 'name' => 'desc_color', 'label' => 'Heading Color', 'type' => 'colorpicker', 'value' => '#142b45', ), array( 'name' => 'btn_bg_color', 'label' => 'Button Background', 'type' => 'colorpicker', 'value' => 'rgb(255, 255, 255)', ), array( 'name' => 'btn_shadow_color', 'label' => 'Button Box Shadow', 'type' => 'colorpicker', 'value' => 'rgba(251, 136, 159, 0.35)', ), array( 'name' => 'btn_hover_text_color', 'label' => 'Button Hover Text', 'type' => 'colorpicker', 'value' => '#142b45', ), ) ); ================================================ FILE: blocks/features/feature-16/style.php ================================================ # { background-color: ; } # .subheading{ ; ; font-weight: ; color: ; } # .heading{ ; ; font-weight: ; color: ; } # p{ ; ; font-weight: ; color: ; } # .button-group .learn-btn{ ; ; font-weight: ; background-color: ; box-shadow: 0px 4px 5px 0px ; border-radius: ; padding: 15px 30px; transition: all 300ms ease-in-out; } # .button-group .learn-btn:hover{ box-shadow: 0px -1px 5px 0px ; color: ; } @media(max-width: 768px){ # .heading{ ; ; } # .content-wrapper { padding: 30px; } # p br{ display: none; } } ================================================ FILE: blocks/features/feature-16/view.php ================================================

================================================ FILE: blocks/features/feature-17/config.php ================================================ 'feature-17', 'groups' => array('features'), 'tag' => 'new', 'contents' => array( array( 'name' => 'section_image', 'label' => 'Section Image', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2020/03/newsletter-icon.png' ), array( 'name' => 'main_title', 'label' => 'Section Title', 'value' => 'Sign up for Our Newsletter' ), array( 'name' => 'section_desc', 'type' => 'textarea', 'value' => 'Proin ac lobortis arcu, a vestibulum augue. Vivamus ipsum neque, facilisis vel
mollis vitae, mollis nec ante. Quisque aliquam dictum condim.' ), array( 'name' => 'form_shortcode', 'label' => 'Form ShortCode', 'type' => 'textarea', ), array( 'name' => 'social_icons', 'type' => 'repeater', 'fields' => array( array( array('name' => 'social_icon', 'label' => 'Social Icon', 'type' => 'icon', 'value' => 'fa fa-facebook fa-2x'), array('name' => 'social_link', 'label' => 'Icon Link', 'prepend' => 'url', 'type' => 'text', 'value' => '#') ), array( array('name' => 'social_icon', 'label' => 'Social Icon', 'type' => 'icon', 'size' => 'fa-2x', 'value' => 'fa fa-twitter fa-2x'), array('name' => 'social_link', 'label' => 'Icon Link', 'prepend' => 'url', 'type' => 'text', 'value' => '#') ), array( array('name' => 'social_icon', 'label' => 'Social Icon', 'type' => 'icon', 'size' => 'fa-2x', 'value' => 'fa fa-youtube fa-2x'), array('name' => 'social_link', 'label' => 'Icon Link', 'prepend' => 'url', 'type' => 'text', 'value' => '#') ), ) ) ), 'settings' => array( array( 'name' => 'heading_type', 'label' => 'Heading Type', 'type' => 'select', 'value' => 'h1', 'options' => array( 'h1' => 'h1', 'h2' => 'h2', 'h3' => 'h3', 'h4' => 'h4', 'h5' => 'h5', 'h6' => 'h6', ), ), array( 'name' => 'animation_content', 'label' => 'Content Animation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), array( 'name' => 'title_size', 'label' => 'Title Size', 'append' => 'px', 'value' => '52', ), array( 'name' => 'title_font_weight', 'label' => 'Font Weight', 'type' => 'select', 'value' => '600', 'options' => array( '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'title_transformation', 'label' => 'Title Transformation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'desc_font_size', 'label' => 'Description Font Size', 'append' => 'px', 'value' => '18', ), array( 'name' => 'desc_font_weight', 'label' => 'Description Font Weight', 'type' => 'select', 'value' => '400', 'options' => array( '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array('label' => 'Subscribe Form', 'type' => 'divider'), // Divider - Form array( 'name' => 'form_font_size', 'label' => 'Form Font Size', 'append' => 'px', 'value' => '16', ), array( 'name' => 'form_font_weight', 'label' => 'Form Font Weight', 'type' => 'select', 'value' => '400', 'options' => array( '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'field_border_radius', 'label' => 'Border Radius', 'append' => 'px', 'value' => '10' ) ), 'styles' => array( array( 'name' => 'bg_color', 'label' => 'Background Color', 'type' => 'colorpicker', 'value' => '#fee7eb', ), array('label' => 'Form Styles', 'type' => 'divider'), // Divider - Form array( 'name' => 'field_bg', 'label' => 'Fields Background Color', 'type' => 'colorpicker', 'value' => 'rgb(255, 255, 255)', ), array( 'name' => 'field_shadow', 'label' => 'Fields Shadow Color', 'type' => 'colorpicker', 'value' => 'rgba(251, 136, 159, 0.35)', ), array( 'name' => 'field_border', 'label' => 'Fields Border Color', 'type' => 'colorpicker', 'value' => '#ffffff', ), array('label' => 'Social Icons', 'type' => 'divider'), // Divider - Social array( 'name' => 'social_bg', 'label' => 'Social Icon Background', 'type' => 'colorpicker', 'value' => '#ffffff', ), array( 'name' => 'social_color', 'label' => 'Social Icon Color', 'type' => 'colorpicker', 'value' => '#142b45', ), ) ); ================================================ FILE: blocks/features/feature-17/style.php ================================================ # { background-color: ; } # .tg-form { display: flex; justify-content: center; } # .content-wrapper .uk-heading-primary { font-size: ; line-height: ; font-weight: ; } # .content-wrapper p{ font-size: ; line-height: ; font-weight: ; } # input[type="email"]{ border-radius: ; background-color: ; box-shadow: 0px 4px 5px 0px rgba(251, 136, 159, 0.35); border: 1px solid #ffffff; padding: 15px 30px; font-size: ; font-weight: ; transition: all 300ms ease-in-out; } # input[type="email"]:focus{ outline: none; box-shadow: 0px -1px 5px 0px rgba(251, 136, 159, 0.35); } # input[type="submit"] { border-radius: ; background-color: rgb(255, 255, 255); box-shadow: 0px 4px 5px 0px ; border: 1px solid ; padding: 15px 30px; font-size: ; font-weight: ; margin-left: 10px; cursor: pointer; transition: 300ms ease-in-out; } # input[type="submit"]:hover{ box-shadow: 0px -1px 5px 0px ; } # input[type="submit"]:focus{ outline: none; } # .social-icons-wrapper a { width: 60px; height: 60px; border-radius: 50%; background: ; display: inline-block; margin: 0 10px; color: ; transition: all 300ms ease-in-out; } # .social-icons-wrapper a:hover{ background: ; color: ; } # .tg-notice{ color: red; font-weight: bold; text-shadow: 0 1px 1px #f02e17; transform: scale(1); animation-name: notice; animation-duration: 2s; animation-iteration-count: infinite; transition: all 300ms ease-in-out; } @keyframes notice { 0% {transform: scale(1.1)} 50% {transform: scale(1.2)} 100% {transform: scale(1.1)} } @media(max-width:768px){ # .tg-form { flex-direction: column; } # .tg-form .form-group{ width: 100%; } # .tg-form .form-group input[type="email"]{ width: 100%; } # .tg-form .your-email input{ margin-bottom: 15px; padding: 15px 6px!important; } # .content-wrapper .uk-heading-primary{ font-size: ; line-height: ; } # .content-wrapper p br{ display: none; } } ================================================ FILE: blocks/features/feature-17/view.php ================================================
>
================================================ FILE: blocks/features/feature-18/config.php ================================================ 'feature-18', 'groups' => array('features'), 'tag' => 'new', 'contents' => array( array( 'name' => 'section_title', 'value' => 'Popular Online Courses', ), array( 'name' => 'section_desc', 'type' => 'textarea', 'value' => 'Proin ac lobortis arcu, a vestibulum augue. Vivamus ipsum neque, facilisis vel
mollis vitae, mollis nec ante. Quisque aliquam dictum condim.' ), array( 'name' => 'online_courses', 'type' => 'repeater', 'fields' => array( array( array('name' => 'image', 'label' => 'Image', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2020/03/course-image-1.jpg'), array('name' => 'title', 'label' => 'Title', 'value' => 'IT Foundations'), array('name' => 'desc', 'label' => 'Description', 'value' => 'The precursor to The Secret, The Power of Positive Thinking has helped millions of men.'), array('name' => 'author', 'label' => 'Author Name', 'value' => 'Jacke Masito'), array('name' => 'student_num', 'label' => 'Number of Student', 'append' => 'Students', 'value' => 112), array('name' => 'rating', 'label' => 'Course Rating', 'append' => 'Star Rating', 'value' => 5), array('name' => 'course_link', 'label' => 'Item Link', 'value' => '#', 'placeholder' => home_url()) ), array( array('name' => 'image', 'label' => 'Image', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2020/03/course-image-2.jpg'), array('name' => 'title', 'label' => 'Title', 'value' => 'Basic Marketing'), array('name' => 'desc', 'label' => 'Description', 'value' => 'The precursor to The Secret, The Power of Positive Thinking has helped millions of men.'), array('name' => 'author', 'label' => 'Author Name', 'value' => 'Jacke Masito'), array('name' => 'student_num', 'label' => 'Number of Student', 'append' => 'Students', 'value' => 112), array('name' => 'rating', 'label' => 'Course Rating', 'append' => 'Star Rating', 'value' => 5), array('name' => 'course_link', 'label' => 'Item Link', 'value' => '#', 'placeholder' => home_url()) ), array( array('name' => 'image', 'label' => 'Image', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2020/03/course-image-3.jpg'), array('name' => 'title', 'label' => 'Title', 'value' => 'Web Technology'), array('name' => 'desc', 'label' => 'Description', 'value' => 'The precursor to The Secret, The Power of Positive Thinking has helped millions of men.'), array('name' => 'author', 'label' => 'Author Name', 'value' => 'Jacke Masito'), array('name' => 'student_num', 'label' => 'Number of Student', 'append' => 'Students', 'value' => 112), array('name' => 'rating', 'label' => 'Course Rating', 'append' => 'Star Rating', 'value' => 5), array('name' => 'course_link', 'label' => 'Item Link', 'value' => '#', 'placeholder' => home_url()) ) ) ), array( 'name' => 'courses_link', 'label' => 'Button', 'text' => 'VIEW ALL COURSES', 'type' => 'link', 'url' => '#' ) ), 'settings' => array( array( 'name' => 'heading_type', 'label' => 'Heading Type', 'type' => 'select', 'value' => 'h1', 'options' => array( 'h1' => 'h1', 'h2' => 'h2', 'h3' => 'h3', 'h4' => 'h4', 'h5' => 'h5', 'h6' => 'h6', ), ), array( 'name' => 'section_title_size', 'label' => 'Section Font Size', 'append' => 'px', 'value' => '52', ), array( 'name' => 'section_description_size', 'label' => 'Description Font Size', 'append' => 'px', 'value' => '18', ), array( 'name' => 'section_title_font_weight', 'label' => 'Font Weight', 'type' => 'select', 'value' => '700', 'options' => array( '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'section_title_transformation', 'label' => 'Title Transformation', 'type' => 'select', 'value' => 'inherit', 'options' => array( 'inherit' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'title_alignment', 'label' => 'Title Alignment', 'type' => 'select', 'value' => 'center', 'options' => array( 'left' => 'Left', 'center' => 'Center', 'right' => 'Right', 'justify' => 'Justify', ), ), array( 'name' => 'title_animation', 'label' => 'Animation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), array('label' => 'Blog Item', 'type' => 'divider'), array( 'name' => 'img_border_radius', 'label' => 'Image Border Radius', 'append' => 'px', 'value' => '4', ), array( 'name' => 'blog_font_size', 'label' => 'Blog Title Font Size', 'append' => 'px', 'value' => '32', ), array( 'name' => 'blog_font_weight', 'label' => 'Blog Title Font Weight', 'type' => 'select', 'value' => '700', 'options' => array( '300' => '300', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'blog_title_transformation', 'label' => 'Blog Title Transformation', 'type' => 'select', 'value' => 'inherit', 'options' => array( 'inherit' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'author_meta_font', 'label' => 'Author Meta Font Size', 'append' => 'px', 'value' => '14', ), array( 'name' => 'author_meta_font_weight', 'label' => 'Author Meta Font Weight', 'type' => 'select', 'value' => '300', 'options' => array( '300' => '300', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'blog_desc_font', 'label' => 'Description Font Size', 'append' => 'px', 'value' => '18', ), array( 'name' => 'blog_desc_font_weight', 'label' => 'Description Font Weight', 'type' => 'select', 'value' => '300', 'options' => array( '300' => '300', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'course_meta_font', 'label' => 'Course Meta Font Size', 'append' => 'px', 'value' => '14', ), array( 'name' => 'course_meta_font_weight', 'label' => 'Course Meta Font Weight', 'type' => 'select', 'value' => '300', 'options' => array( '300' => '300', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'post_btn_font', 'label' => 'Button Font', 'append' => 'px', 'value' => '16', ), array( 'name' => 'all_post_font_weight', 'label' => 'Button Font Weight', 'type' => 'select', 'value' => '500', 'options' => array( '300' => '300', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'post_btn_radius', 'label' => 'Button Border Radius', 'append' => 'px', 'value' => '5', ), array( 'name' => 'content_animation', 'label' => 'Content Animation', 'type' => 'select', 'value' => 'fadeInUp', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), ), 'styles' => array( array( 'name' => 'bg_color', 'label' => 'Background Color', 'type' => 'colorpicker', 'value' => '#ffffff', ), array( 'name' => 'section_title_color', 'label' => 'Section Font Color', 'type' => 'colorpicker', 'value' => '#142b45', ), array( 'name' => 'section_desc_color', 'label' => 'Section Desc Color', 'type' => 'colorpicker', 'value' => '#142b45', ), array( 'name' => 'blog_title_color', 'label' => 'Item Title Color', 'type' => 'colorpicker', 'value' => '#142b45', ), array( 'name' => 'blog_meta_color', 'label' => 'Item Meta Color', 'type' => 'colorpicker', 'value' => '#142b45', ), array( 'name' => 'blog_desc', 'label' => 'Item Description Color', 'type' => 'colorpicker', 'value' => '#142b45', ), array( 'name' => 'course_meta_color', 'label' => 'Course Meta Color', 'type' => 'colorpicker', 'value' => '#142b45', ), array( 'name' => 'course_border_meta_color', 'label' => 'Course Border Color', 'type' => 'colorpicker', 'value' => '#142b45', ), array( 'name' => 'all_post_btn_bg', 'label' => 'Button BG Color', 'type' => 'colorpicker', 'value' => 'rgb(255, 255, 255)', ), array( 'name' => 'all_post_btn_bg_hover', 'label' => 'Box Shadow Color', 'type' => 'colorpicker', 'value' => 'rgba(251, 136, 159, 0.35)', ), ), ); ================================================ FILE: blocks/features/feature-18/style.php ================================================ # { background: } # .section-heading h1.uk-heading-primary, # .section-heading h2.uk-heading-primary, # .section-heading h3.uk-heading-primary, # .section-heading h4.uk-heading-primary, # .section-heading h5.uk-heading-primary, # .section-heading h6.uk-heading-primary{ font-size: ; line-height: ; font-weight: ; color: ; } # .section-heading p { font-size: ; line-height: ; color: ; } # .img-wrapper img{ border-radius: ; } # .uk-article a { text-decoration: none; display: inline-block; } # .uk-article a h1{ font-size: ; line-height: ; font-weight: ; color: ; margin-top: 20px; } # .uk-article .uk-article-meta{ font-size: ; line-height: ; font-weight: ; color: ; } # p.tx-details{ font-size: ; line-height: ; font-weight: ; color: ; } # ul.meta-list { margin: 0; padding: 0; list-style: none; } # ul.meta-list li { display: inline-block; font-size: ; line-height: ; font-weight: ; color: ; border-right: 1px solid ; padding: 0 20px; } # ul.meta-list li:last-child{ border-right: none; padding-right: 0; } # ul.meta-list li:first-child{ padding-left: 0; } # .content-wrapper .all-course-btn a{ display: inline-block; ; font-weight: ; border-radius: ; background-color: ; box-shadow: 0px 4px 5px 0px ; border: none; transition: all 400ms ease-in-out; } # .content-wrapper .all-course-btn a:hover{ box-shadow: 0px -1px 5px 0px ; } @media(max-width: 960px){ .img-wrapper a{ display: block!important; } .img-wrapper a img{ width: 100%; } } @media(max-width: 768px){ # .section-heading h1.uk-heading-primary, # .section-heading h2.uk-heading-primary, # .section-heading h3.uk-heading-primary, # .section-heading h4.uk-heading-primary, # .section-heading h5.uk-heading-primary, # .section-heading h6.uk-heading-primary{ font-size: ; line-height: ; } # .uk-article a h1{ font-size: ; line-height: ; } # .section-heading p br{ display: none; } } ================================================ FILE: blocks/features/feature-18/view.php ================================================

>

class="uk-grid uk-margin-large-top" uk-grid>

  • 1 ? $single_course['student_num'] . " Students" : $single_course['student_num'] . " Student") ?>
================================================ FILE: blocks/features/feature-19/config.php ================================================ 'feature-19', 'tag' => 'new', 'groups' => array('features'), 'contents' => array( array( 'name' => 'section_title', 'value' => 'What People Are Saying', ), array( 'name' => 'reviews', 'type' => 'repeater', 'fields' => array( array( array('name' => 'review', 'label' => 'review', 'type' => 'textarea', 'value' => '“The precursor to The Secret, The Power of Positive Thinking has helped millions of men and women to achieve fulfillment in their lives. In this phenomenal bestseller, Dr. Peale demonstrates the power of faith in action.”' ), array( 'name' => 'author_image', 'label' => 'Author Image', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2020/03/review-1.png' ), array( 'name' => 'author_name', 'label' => 'Author Name', 'value' => 'TUCKER MAX' ), array( 'name' => 'author_designation', 'label' => 'Author Designation', 'value' => 'Ceo Of Book In A Box' ) ), array( array('name' => 'review', 'label' => 'review', 'type' => 'textarea', 'value' => '“The precursor to The Secret, The Power of Positive Thinking has helped millions of men and women to achieve fulfillment in their lives. In this phenomenal bestseller, Dr. Peale demonstrates the power of faith in action. With the practical techniques outlined in this book, you can energize your life.”' ), array( 'name' => 'author_image', 'label' => 'Author Image', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2020/03/review-2.png' ), array( 'name' => 'author_name', 'label' => 'Author Name', 'value' => 'ANDREW WARNER' ), array( 'name' => 'author_designation', 'label' => 'Author Designation', 'value' => 'Creator Of Mixergy' ) ), array( array('name' => 'review', 'label' => 'review', 'type' => 'textarea', 'value' => '“The precursor to The Secret, The Power of Positive Thinking has helped millions of men and women to achieve fulfillment in their lives. In this phenomenal bestseller, Dr. Peale demonstrates the power of faith in action. With the practical techniques outlined in this book, you can energize your life.”' ), array( 'name' => 'author_image', 'label' => 'Author Image', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2020/03/review-3.png' ), array( 'name' => 'author_name', 'label' => 'Author Name', 'value' => 'SEAN LANGHI' ), array( 'name' => 'author_designation', 'label' => 'Author Designation', 'value' => 'Author Of The Creative Curve' ) ), array( array('name' => 'review', 'label' => 'review', 'type' => 'textarea', 'value' => '“The precursor to The Secret, The Power of Positive Thinking has helped millions of men and women to achieve fulfillment in their lives. In this phenomenal bestseller, Dr. Peale demonstrates the power of faith in action.”' ), array( 'name' => 'author_image', 'label' => 'Author Image', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2020/03/review-4.png' ), array( 'name' => 'author_name', 'label' => 'Author Name', 'value' => 'ALEXANDER ROSARIO' ), array( 'name' => 'author_designation', 'label' => 'Author Designation', 'value' => 'First Time Entrepreneur' ) ) ) ) ), 'settings' => array( array( 'name' => 'animation_content', 'label' => 'Content Animation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), array( 'name' => 'heading_type', 'label' => 'Heading Type', 'type' => 'select', 'value' => 'h1', 'options' => array( 'h1' => 'h1', 'h2' => 'h2', 'h3' => 'h3', 'h4' => 'h4', 'h5' => 'h5', 'h6' => 'h6', ), ), array( 'name' => 'section_title_size', 'label' => 'Title Font Size', 'append' => 'px', 'value' => '52', ), array( 'name' => 'section_title_font_weight', 'label' => 'Title Font Weight', 'type' => 'select', 'value' => '700', 'options' => array( '300' => '300', '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'section_title_transformation', 'label' => 'Title Transformation', 'type' => 'select', 'value' => 'uppercase', 'options' => array( 'inherit' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array('label' => 'Review Item', 'type' => 'divider'), array( 'name' => 'rev_desc_size', 'label' => 'Description Font Size', 'append' => 'px', 'value' => '20', ), array( 'name' => 'rev_desc_font_weight', 'label' => 'Description Font Weight', 'type' => 'select', 'value' => '500', 'options' => array( '300' => '300', '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'author_image_radius', 'label' => 'Author Border Radius', 'append' => '%', 'value' => '50%', ), array( 'name' => 'rev_author_title_size', 'label' => 'Author Title Font Size', 'append' => 'px', 'value' => '26', ), array( 'name' => 'rev_author_title_font_weight', 'label' => 'Author Title Font Weight', 'type' => 'select', 'value' => '500', 'options' => array( '300' => '300', '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'rev_author_pos_size', 'label' => 'Author Designation Font Size', 'append' => 'px', 'value' => '16', ), array( 'name' => 'rev_author_pos_font_weight', 'label' => 'Author Designation Font Weight', 'type' => 'select', 'value' => '500', 'options' => array( '300' => '300', '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), ), 'styles' => array( array( 'name' => 'bg_color', 'label' => 'Background Color', 'type' => 'colorpicker', 'value' => '#fff004', ), array( 'name' => 'section_heading_color', 'label' => 'Heading Color', 'type' => 'colorpicker', 'value' => '#142b45', ), array( 'name' => 'rev_desc_color', 'label' => 'Review Description Color', 'type' => 'colorpicker', 'value' => '#142b45', ), array( 'name' => 'rev_author_color', 'label' => 'Review Author Color', 'type' => 'colorpicker', 'value' => '#142b45', ), array( 'name' => 'rev_author_pos_color', 'label' => 'Review Author Designation Color', 'type' => 'colorpicker', 'value' => '#142b45', ), ) ); ================================================ FILE: blocks/features/feature-19/style.php ================================================ # { background-color: } # .uk-heading-primary{ font-size: ; line-height: ; font-weight: ; color: ; } # .img-wrapper img{ border-radius: ; } # .content-wrapper p{ font-size: ; line-height: ; font-weight: ; color: ; } # .author-meta h4{ font-size: ; line-height: ; font-weight: ; color: ; } # .author-meta p{ font-size: ; line-height: ; font-weight: ; color: ; } @media(max-width: 768px){ # .uk-heading-primary{ font-size: ; line-height: ; padding-top: 15px; } # .author-meta h4{ font-size: ; line-height: ; } } ================================================ FILE: blocks/features/feature-19/view.php ================================================
class="uk-content-wrapper">

<?php echo $single_review['author_name'];?>

================================================ FILE: blocks/features/feature-2/config.php ================================================ 'feature-2', 'groups' => array('features'), 'contents' => array( array( 'name' => 'title', 'value' => 'Modern and Ridiculously Easy Page Builder for All', ), array( 'name' => 'description', 'type' => 'textarea', 'value' => 'A fool thinks himself to be wise, but a wise man knows himself to be a fool.', ), array('label' => 'Items', 'type' => 'divider'), // Divider - Text array( 'name' => 'items', 'type' => 'repeater', 'fields' => array( array( array('name' => 'title', 'value' => 'Responsive Design'), array('name' => 'description', 'type' => 'textarea', 'value' => 'Blocks fit all devices'), array('name' => 'media', 'type' => 'media', 'size' => 'fa-5x', 'value' => 'http://s3.amazonaws.com/quantum-assets/icons/presentation.png'), array('name' => 'link', 'placeholder' => home_url()), array('name' => 'target', 'label' => 'open in new window', 'type' => 'switch'), ), array( array('name' => 'title', 'value' => 'WYSIWYG Editor'), array('name' => 'description', 'type' => 'textarea', 'value' => 'Do Everything In One Place'), array('name' => 'media', 'type' => 'media', 'size' => 'fa-5x', 'value' => 'http://s3.amazonaws.com/quantum-assets/icons/tools.png'), array('name' => 'link', 'placeholder' => home_url()), array('name' => 'target', 'label' => 'open in new window', 'type' => 'switch'), ), array( array('name' => 'title', 'value' => 'Intuitive Configuration'), array('name' => 'description', 'type' => 'textarea', 'value' => 'No more boalted configuration panel'), array('name' => 'media', 'type' => 'media', 'size' => 'fa-5x', 'value' => 'http://s3.amazonaws.com/quantum-assets/icons/gear.png'), array('name' => 'link', 'placeholder' => home_url()), array('name' => 'target', 'label' => 'open in new window', 'type' => 'switch'), ), ), ), ), 'settings' => array( array('label' => 'Heading', 'type' => 'divider'), // Divider - Text array( 'name' => 'heading_type', 'label' => 'Heading Type', 'type' => 'select', 'value' => 'h1', 'options' => array( 'h1' => 'h1', 'h2' => 'h2', 'h3' => 'h3', 'h4' => 'h4', 'h5' => 'h5', 'h6' => 'h6', ), ), array( 'name' => 'title_size', 'label' => 'Title Size', 'append' => 'px', 'value' => '@section_title_size', ), array( 'name' => 'title_transformation', 'label' => 'Title Transformation', 'type' => 'select', 'value' => 0, 'options' => array( 0 => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'title_alignment', 'label' => 'Title Alignment', 'type' => 'select', 'value' => 'center', 'options' => array( 'left' => 'Left', 'center' => 'Center', 'right' => 'Right', 'justify' => 'Justify', ), ), array( 'name' => 'desc_size', 'label' => 'Desc Size', 'append' => 'px', 'value' => '18', ), array( 'name' => 'title_animation', 'label' => 'Title Animation ', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), array('label' => 'Items Settings', 'type' => 'divider'), // Divider - Text array( 'name' => 'items_columns', 'label' => 'Items Columns', 'type' => 'select', 'value' => '3', 'options' => array( '2' => '2', '3' => '3', '4' => '4', ), ), array( 'name' => 'item_title_size', 'label' => 'Title Size', 'append' => 'px', 'value' => '22', ), array( 'name' => 'item_desc_size', 'label' => 'Desc Size', 'append' => 'px', 'value' => '16', ), array( 'name' => 'items_alignment', 'label' => 'Items Alignment', 'type' => 'select', 'value' => 'center', 'options' => array( 'left' => 'Left', 'center' => 'Center', 'right' => 'Right', 'justify' => 'Justify', ), ), array( 'name' => 'items_animation', 'label' => 'Items Animation ', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), ), 'styles' => array( array( 'name' => 'bg_image', 'label' => 'Background Image', 'type' => 'image', ), array( 'name' => 'bg_color', 'label' => 'Background Color', 'type' => 'colorpicker', 'value' => '#fff', ), array( 'name' => 'title_color', 'label' => 'Title Color', 'type' => 'colorpicker', 'value' => '#323232', ), array( 'name' => 'desc_color', 'label' => 'Subtitle Color', 'type' => 'colorpicker', 'value' => '#323232', ), array('label' => 'Items Style', 'type' => 'divider'), // Divider - Text array( 'name' => 'item_title_color', 'label' => 'Item Title Color', 'type' => 'colorpicker', 'value' => '#727272', ), array( 'name' => 'item_desc_color', 'label' => 'Item Desc Color', 'type' => 'colorpicker', 'value' => '#727272', ), array( 'name' => 'icon_color', 'label' => 'Icon Color', 'type' => 'colorpicker', ), ), // 'assets' => function( $path ){ // Onepager::addStyle('content-2', $path . '/style.css'); // } ); ================================================ FILE: blocks/features/feature-2/style.php ================================================ #{ background-image:url(); background-repeat:no-repeat; background-color : ; } # .section-heading .uk-heading-primary{ font-size : px; color : ; } # .section-heading .uk-text-lead{ font-size : px; color : ; } # .op-media{ color : ; } # .item-title, # .item-title a{ font-size : px; color : ; } # .uk-text-medium{ font-size : px; color : ; } @media(max-width:768px){ # .section-heading .uk-heading-primary{ font-size : px; } } ================================================ FILE: blocks/features/feature-2/view.php ================================================ div> .uk-card; delay:200;"' : ''; ?>

>

uk-grid >
<?php echo $feature['title']; ?>

================================================ FILE: blocks/features/feature-20/config.php ================================================ 'feature-20', 'tag' => 'new', 'groups' => array('features'), 'contents' => array( array( 'name' => 'section_image', 'label' => 'Image', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2020/03/section-person-image.png' ), array( 'name' => 'top_tagline', 'label' => 'Top Tagline', 'value' => ' @NORMANVINCENTPEALE' ), array( 'name' => 'title', 'label' => 'Title', 'value' => 'IT\'S 2019.
I\'M 70.
I\'M RETIRED.' ), array( 'name' => 'desc', 'label' => 'Description', 'type' => 'textarea', 'value' => 'The precursor to The Secret, The Power of Positive Thinking has helped millions of men and women to achieve fulfillment in their lives. In this phenomenal bestseller, Dr. Peale demonstrates the power of faith in action. With the practical techniques outlined in this book, you can energize your life -- and give yourself the initiative needed to carry out your ambitions and hopes.' ), array( 'name' => 'signature', 'label' => 'Signature', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2020/03/signature-photo.jpg' ), ), 'settings' => array( array( 'name' => 'animation_content', 'label' => 'Content Animation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), array( 'name' => 'heading_type', 'label' => 'Heading Type', 'type' => 'select', 'value' => 'h1', 'options' => array( 'h1' => 'h1', 'h2' => 'h2', 'h3' => 'h3', 'h4' => 'h4', 'h5' => 'h5', 'h6' => 'h6', ), ), array( 'name' => 'section_title_size', 'label' => 'Title Font Size', 'append' => 'px', 'value' => '52', ), array( 'name' => 'section_title_font_weight', 'label' => 'Title Font Weight', 'type' => 'select', 'value' => '700', 'options' => array( '300' => '300', '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'section_title_transformation', 'label' => 'Title Transformation', 'type' => 'select', 'value' => 'uppercase', 'options' => array( 'inherit' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'top_tagline', 'label' => 'Top Tag Font Size', 'append' => 'px', 'value' => '20', ), array( 'name' => 'top_tagline_font_weight', 'label' => 'Top Tag Font Weight', 'type' => 'select', 'value' => '500', 'options' => array( '300' => '300', '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'desc_font_size', 'label' => 'Description Font Size', 'append' => 'px', 'value' => '18', ), array( 'name' => 'section_desc_font_weight', 'label' => 'Description Font Weight', 'type' => 'select', 'value' => '400', 'options' => array( '300' => '300', '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), ), 'styles' => array( array( 'name' => 'bg_image', 'label' => 'Background Image', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2020/03/background-image-text.jpg', ), array( 'name' => 'bg_position', 'label' => 'Background Position', 'type' => 'select', 'value' => 'top-center', 'options' => array( 'top-left' => 'Top Left', 'top-center' => 'Top Center', 'top-right' => 'Top Right', 'center-left' => 'Center Left', 'center-center' => 'Center Center', 'center-right' => 'Center Right', 'bottom-left' => 'Bottom Left', 'bottom-center' => 'Bottom Center', 'bottom-right' => 'Bottom Right', ) ), array( 'name' => 'section_bg', 'label' => 'Section Background Color', 'type' => 'colorpicker', 'value' => '#ffffff', ), array( 'name' => 'tagline_color', 'label' => 'Top Tagline Color', 'type' => 'colorpicker', 'value' => '#f22e13', ), array( 'name' => 'heading_color', 'label' => 'Heading Color', 'type' => 'colorpicker', 'value' => '#142b45', ), array( 'name' => 'text_color', 'label' => 'Text Color', 'type' => 'colorpicker', 'value' => '#142b45', ), ) ); ================================================ FILE: blocks/features/feature-20/style.php ================================================ # { background-color: ; } # .heading-tagline{ font-size: ; line-height: ; font-weight: ; color: ; } # .uk-heading-primary { font-size: ; line-height: ; font-weight: ; color: ; } # p { font-size: ; line-height: ; font-weight: ; color: ; } @media(max-width: 600px){ # .uk-heading-primary{ padding-top: 25px; } } ================================================ FILE: blocks/features/feature-20/view.php ================================================
class="uk-grid uk-height-match" uk-grid>
<?php echo $contents['title'];?>

<?php echo $contents['title']?>
================================================ FILE: blocks/features/feature-21/config.php ================================================ 'feature-21', 'tag' => 'new', 'groups' => array('features'), 'contents' => array( array( 'name' => 'top_tagline', 'label' => 'Top Tagline', 'type' => 'text', 'value' => 'More than 5 million copies sold' ), array( 'name' => 'heading', 'label' => 'Heading', 'type' => 'text', 'value' => 'Removing This Book' ), array( 'name' => 'desc', 'label' => 'Description', 'type' => 'editor', 'value' => 'This book is not timeless. My publisher hates this because they want to sell lots of books over many decades. The thing is, stuff that works usually only works for a short amount of time before the crowd piles in. This book is exactly that: urgent tactics you must use before everyone else. The more people who buy this book, the less valuable it becomes. Buy it right now for the biggest advantage.' ), array( 'name' => 'btn1', 'text' => 'GET THE BOOK!', 'type' => 'link', 'url' => '#' ), array( 'name' => 'btn2', 'text' => 'Click here to buy in bulk', 'type' => 'link', 'url' => '#' ), array( 'name' => 'sponser_logos', 'labels' => 'Sponser Logos', 'type' => 'repeater', 'fields' => array( array( array('name' => 'sponser_logo', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2020/03/sponser-1.png') ), array( array('name' => 'sponser_logo', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2020/03/sponser-2.png') ), array( array('name' => 'sponser_logo', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2020/03/sponser-3.png') ), array( array('name' => 'sponser_logo', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2020/03/sponser-4.png') ), array( array('name' => 'sponser_logo', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2020/03/sponser-5.png') ) ) ), array( 'name' => 'right_image', 'labels' => 'Right Image', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2020/03/pw-of-positive.png' ) ), 'settings' => array( array( 'name' => 'heading_type', 'label' => 'Heading Type', 'type' => 'select', 'value' => 'h1', 'options' => array( 'h1' => 'h1', 'h2' => 'h2', 'h3' => 'h3', 'h4' => 'h4', 'h5' => 'h5', 'h6' => 'h6', ), ), array( 'name' => 'section_title_size', 'label' => 'Title Font Size', 'append' => 'px', 'value' => '52', ), array( 'name' => 'section_title_font_weight', 'label' => 'Title Font Weight', 'type' => 'select', 'value' => '700', 'options' => array( '300' => '300', '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'section_title_transformation', 'label' => 'Title Transformation', 'type' => 'select', 'value' => 'uppercase', 'options' => array( 'inherit' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'animation_content', 'label' => 'Content Animation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), array( 'name' => 'top_tagline', 'label' => 'Top Tag Font Size', 'append' => 'px', 'value' => '20', ), array( 'name' => 'top_tagline_font_weight', 'label' => 'Top Tag Font Weight', 'type' => 'select', 'value' => '500', 'options' => array( '300' => '300', '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'desc_font_size', 'label' => 'Description Font Size', 'append' => 'px', 'value' => '18', ), array( 'name' => 'btn_font_size', 'label' => 'Button Font Size', 'append' => 'px', 'value' => '18', ), array( 'name' => 'btn_font_weight', 'label' => 'Button Font Weight', 'type' => 'select', 'value' => '500', 'options' => array( '300' => '300', '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'btn_text_transformation', 'label' => 'Title Transformation', 'type' => 'select', 'value' => 'capitalized', 'options' => array( 'inherit' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'animation_media', 'label' => 'Media Animation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), ), 'styles' => array( array( 'name' => 'section_bg', 'label' => 'Section Background Color', 'type' => 'colorpicker', 'value' => '#ffffff', ), array( 'name' => 'top_tagline', 'label' => 'Top Tagline Color', 'type' => 'colorpicker', 'value' => '#4bb93e', ), array( 'name' => 'main_heading', 'label' => 'Heading Color', 'type' => 'colorpicker', 'value' => '#142b45', ), array( 'name' => 'desc_color', 'label' => 'Description Color', 'type' => 'colorpicker', 'value' => '#142b45', ), array( 'name' => 'btn_text_color', 'label' => 'Button Text', 'type' => 'colorpicker', 'value' => '#4bb93e', ), array( 'name' => 'btn_text_color_hover', 'label' => 'Button Text Hover', 'type' => 'colorpicker', 'value' => '#142b45', ), array( 'name' => 'btn_bg', 'label' => 'Button Background', 'type' => 'colorpicker', 'value' => 'rgba(255,255,255,0)', ), array( 'name' => 'btn_bg_hover', 'label' => 'Button Background Hover', 'type' => 'colorpicker', 'value' => '#4bb93e', ), ) ); ================================================ FILE: blocks/features/feature-21/style.php ================================================ # { background: ; } # .content-wrapper h4{ font-size: ; line-height: ; font-weight: ; color: ; } # .uk-heading-primary{ font-size: ; line-height: ; font-weight: ; color: ; } # .content-wrapper p{ font-size: ; line-height: ; color: ; } # .content-wrapper .button-wrapper .op-button{ font-size: ; font-weight: ; color: ; background: ; border: 1px solid ; transition: all 300ms ease-in-out; } # .content-wrapper .button-wrapper .op-button:hover{ color: ; background: ; border: 1px solid ; } # .tg-border-remove{ border: none; } @media(max-width: 768px){ # .uk-heading-primary{ font-size: ; line-height: ; } # .content-wrapper .button-wrapper .op-button{ font-size: ; } } @media(max-width: 640px){ # .button-wrapper { flex-direction: column; } # .button-wrapper .op-button{ margin-bottom: 15px; } } ================================================ FILE: blocks/features/feature-21/view.php ================================================
class="content-wrapper">

class="image-wrapper"> <?php echo $contents['heading']?>
================================================ FILE: blocks/features/feature-22/config.php ================================================ 'feature-22', 'tag' => 'new', 'groups' => array('features'), 'contents' => array( array( 'name' => 'section_title', 'label' => 'Title', 'value' => 'FAQ' ), array( 'name' => 'tabs', 'type' => 'repeater', 'fields' => array( array( array( 'name' => 'tab_title', 'label' => 'Tab Title', 'value' => 'What is the meaning of power of positive thinking?' ), array( 'name' => 'tab_desc', 'label' => 'Tab Description', 'type' => 'textarea', 'value' => 'Peale wrote more than 40 books. His seminal work, "The Power of Positive Thinking," was translated into 42 languages and sold more than 15 million copies worldwide.' ) ), array( array( 'name' => 'tab_title', 'label' => 'Tab Title', 'value' => 'How many copies of the power of positive thinking were sold?' ), array( 'name' => 'tab_desc', 'label' => 'Tab Description', 'type' => 'textarea', 'value' => 'Peale wrote more than 40 books. His seminal work, "The Power of Positive Thinking," was translated into 42 languages and sold more than 15 million copies worldwide.' ) ), array( array( 'name' => 'tab_title', 'label' => 'Tab Title', 'value' => 'When was the power of positive thinking written?' ), array( 'name' => 'tab_desc', 'label' => 'Tab Description', 'type' => 'textarea', 'value' => 'Peale wrote more than 40 books. His seminal work, "The Power of Positive Thinking," was translated into 42 languages and sold more than 15 million copies worldwide.' ) ), array( array( 'name' => 'tab_title', 'label' => 'Tab Title', 'value' => 'Where did Norman Vincent Peale preached?' ), array( 'name' => 'tab_desc', 'label' => 'Tab Description', 'type' => 'textarea', 'value' => 'Peale wrote more than 40 books. His seminal work, "The Power of Positive Thinking," was translated into 42 languages and sold more than 15 million copies worldwide.' ) ), array( array( 'name' => 'tab_title', 'label' => 'Tab Title', 'value' => 'Who said shoot for the moon and if you miss you will still be among the stars?' ), array( 'name' => 'tab_desc', 'label' => 'Tab Description', 'type' => 'textarea', 'value' => 'Peale wrote more than 40 books. His seminal work, "The Power of Positive Thinking," was translated into 42 languages and sold more than 15 million copies worldwide.' ) ), ) ) ), 'settings' => array( array( 'name' => 'animation_content', 'label' => 'Content Animation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), array( 'name' => 'heading_type', 'label' => 'Heading Type', 'type' => 'select', 'value' => 'h1', 'options' => array( 'h1' => 'h1', 'h2' => 'h2', 'h3' => 'h3', 'h4' => 'h4', 'h5' => 'h5', 'h6' => 'h6', ), ), array( 'name' => 'section_title_size', 'label' => 'Title Font Size', 'append' => 'px', 'value' => '52', ), array( 'name' => 'section_title_font_weight', 'label' => 'Title Font Weight', 'type' => 'select', 'value' => '700', 'options' => array( '300' => '300', '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'section_title_transformation', 'label' => 'Title Transformation', 'type' => 'select', 'value' => 'uppercase', 'options' => array( 'inherit' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'tab_title_font_size', 'label' => 'Tab Title Font Size', 'append' => 'px', 'value' => '26', ), array( 'name' => 'tab_title_font_weight', 'label' => 'Tab Description Font Weight', 'type' => 'select', 'value' => '600', 'options' => array( '300' => '300', '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'tab_desc_font_size', 'label' => 'Tab Title Font Size', 'append' => 'px', 'value' => '18', ), array( 'name' => 'tab_desc_font_weight', 'label' => 'Tab Description Font Weight', 'type' => 'select', 'value' => '500', 'options' => array( '300' => '300', '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), ), 'styles' => array( array( 'name' => 'bg_color', 'label' => 'Background Color', 'type' => 'colorpicker', 'value' => '#4bb93e', ), array( 'name' => 'section_title_color', 'label' => 'Section Title', 'type' => 'colorpicker', 'value' => '#142b45', ), array( 'name' => 'tab_title_color', 'label' => 'Tab Title', 'type' => 'colorpicker', 'value' => '#142b45', ), array( 'name' => 'tab_desc_color', 'label' => 'Tab Description', 'type' => 'colorpicker', 'value' => '#142b45', ), array( 'name' => 'hover_active_color', 'label' => 'Tab Item Hover/Active', 'type' => 'colorpicker', 'value' => '#ffffff', ), ) ); ================================================ FILE: blocks/features/feature-22/style.php ================================================ # { background: ; } # .section-heading .uk-heading-primary{ font-size: ; line-height: ; font-weight: ; color: ; } # .uk-accordion-title::before{ display: none!important; } # .single-accordion { border-bottom: 2px solid ; padding-bottom: 15px; transition: all 300ms linear; } # .single-accordion a{ font-size: ; line-height: ; font-weight: ; color: ; transition: all 300ms linear; } # .single-accordion .uk-accordion-content p{ font-size: ; line-height: ; font-weight: ; color: ; transition: all 300ms linear; } # .single-accordion:hover, # .single-accordion:hover a, # .single-accordion:hover .uk-accordion-content p{ color: ; border-bottom-color: ; } # .uk-open, # .uk-open a, # .uk-open .uk-accordion-content p{ color: ; border-bottom-color: ; } @media(max-width: 640px){ # .section-heading .uk-heading-primary{ font-size: ; line-height: ; } # .single-accordion a{ font-size: ; line-height: ; } } ================================================ FILE: blocks/features/feature-22/view.php ================================================
class="content-wrapper">

================================================ FILE: blocks/features/feature-23/config.php ================================================ 'feature-23', 'tag' => 'new', 'groups' => array('features'), 'contents' => array( array( 'name' => 'background_title', 'label' => 'Background Title', 'value' => 'Reasons 01' ), array( 'name' => 'section-image', 'label' => 'Right Image', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2020/03/reason-book-side.png' ), array( 'name' => 'section_title', 'label' => 'Section Title', 'value' => '8 Reasons to read this book' ), array( 'name' => 'section_desc', 'label' => 'Section Description', 'type' => 'textarea', 'value' => 'The precursor to The Secret, The Power of Positive Thinking has helped millions of men and women to achieve fulfillment in their lives. In this phenomenal bestseller, Dr. Peale demonstrates the power of faith in action. With the practical techniques outlined in this book, you can energize your life -- and give yourself the initiative needed to carry out your ambitions and hopes.' ), array( 'name' => "feature_title", 'label' => "Features Title", 'value' => "You\'ll learn how to:" ), array( 'name' => 'features', 'labels' => 'Feature Items', 'type' => 'repeater', 'fields' => array( array( array('name' => 'feature_text', 'label' => 'Featured Item Text', 'type' => 'text', 'value' => 'Believe in yourself and in everything you do') ), array( array('name' => 'feature_text', 'label' => 'Featured Item Text', 'type' => 'text', 'value' => 'Develop the power to reach your goals') ), array( array('name' => 'feature_text', 'label' => 'Featured Item Text', 'type' => 'text', 'value' => 'Break the worry habit and achieve a relaxed life') ), array( array('name' => 'feature_text', 'label' => 'Featured Item Text', 'type' => 'text', 'value' => 'Improve your personal and professional relationships') ), array( array('name' => 'feature_text', 'label' => 'Featured Item Text', 'type' => 'text', 'value' => 'Assume control over your circumstances') ), array( array('name' => 'feature_text', 'label' => 'Featured Item Text', 'type' => 'text', 'value' => 'Be kind to yourself') ) ), ), array('name' => 'feature_icon', 'label' => 'Feature Icon', 'type' => 'icon','icon-size' => 'fa fa-2x', 'value' => 'fa fa-check fa-2x'), ), 'settings' => array( array( 'name' => 'section_bg_font_size', 'label' => 'Section Font Size', 'append' => 'px', 'value' => '120', ), array( 'name' => 'section_bg_font_weight', 'label' => 'Section Font Weight', 'type' => 'select', 'value' => '700', 'options' => array( '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'heading_type', 'label' => 'Heading Type', 'type' => 'select', 'value' => 'h1', 'options' => array( 'h1' => 'h1', 'h2' => 'h2', 'h3' => 'h3', 'h4' => 'h4', 'h5' => 'h5', 'h6' => 'h6', ), ), array( 'name' => 'title_font_size', 'label' => 'Title Font Size', 'append' => 'px', 'value' => '46', ), array( 'name' => 'title_font_weight', 'label' => 'Title Font Weight', 'type' => 'select', 'value' => '700', 'options' => array( '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'title_transformation', 'label' => 'Title Transformation', 'type' => 'select', 'value' => 'lowercase', 'options' => array( '0' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'animation_content', 'label' => 'Content Animation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), array( 'name' => 'desc_font_size', 'label' => 'Description Font Size', 'append' => 'px', 'value' => '18', ), array( 'name' => 'desc_font_weight', 'label' => 'Description Font Weight', 'type' => 'select', 'value' => '400', 'options' => array( '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'list_font_size', 'label' => 'List Font Size', 'append' => 'px', 'value' => '18', ), array( 'name' => 'list_title_font_weight', 'label' => 'List Heading Font Weight', 'type' => 'select', 'value' => '700', 'options' => array( '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'list_font_weight', 'label' => 'List Font Weight', 'type' => 'select', 'value' => '400', 'options' => array( '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'animation_media', 'label' => 'media Animation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), ), 'styles' => array( array( 'name' => 'section_bg', 'label' => 'Section Background', 'type' => 'colorpicker', 'value' => '#4bb93e', ), array( 'name' => 'section_bg_title', 'label' => 'Section Title', 'type' => 'colorpicker', 'value' => '#ffffff', ), array( 'name' => 'section_title', 'label' => 'Section Title', 'type' => 'colorpicker', 'value' => '#142b45', ), array( 'name' => 'section_desc', 'label' => 'Section Description', 'type' => 'colorpicker', 'value' => '#142b45', ), array( 'name' => 'section_list_title', 'label' => 'Section List Title', 'type' => 'colorpicker', 'value' => '#142b45', ), array( 'name' => 'section_list', 'label' => 'Section List text', 'type' => 'colorpicker', 'value' => '#ffffff', ), ) ); ?> ================================================ FILE: blocks/features/feature-23/style.php ================================================ # { background: ; } # .section-bg-text { position: absolute; left: 2%; top: 0; } # .section-bg-text h2 { font-size: ; line-height: ; font-weight: ; color: ; } # .content-wrapper .uk-heading-primary{ font-size: ; line-height: ; font-weight: ; color: ; } # .content-wrapper p { font-size: ; line-height: ; font-weight: ; color: ; } # .content-wrapper h4.feature-title { font-size: ; line-height: ; font-weight: ; color: ; } # .op-list li p { display: inline-block; position: relative; bottom: 4px; left: 4px; margin-top: 0; font-size: ; line-height: ; font-weight: ; } # .op-list li span.fa, # .op-list li p{ color: ; } @media(max-width: 768px){ # .content-wrapper { padding-top: 60px; } # .image-wrapper { margin-top: 50px; } # .section-bg-text{ top: -5px; } # .section-bg-text h2{ opacity: 0.8; } } @media(max-width: 640px){ # .section-bg-text h2 { font-size: ; line-height: ; font-weight: ; color: #ffffff; } # .op-list li p { font-size: ; line-height: ; } } ================================================ FILE: blocks/features/feature-23/view.php ================================================

class="content-wrapper">

class="image-wrapper uk-text-center">
================================================ FILE: blocks/features/feature-24/config.php ================================================ 'feature-24', 'tag' => 'new', 'groups' => array('features'), 'contents' => array( array( 'name' => 'left_image', 'labels' => 'Left Image', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2020/03/block-24-left-image.jpg' ), array( 'name' => 'section_title', 'label' => 'Section Title', 'value' => 'About The Author' ), array( 'name' => 'section_desc', 'label' => 'Section Description', 'type' => 'textarea', 'value' => 'Norman Vincent Peale was an American minister and author known for his work in popularizing the concept of positive thinking, especially through his best-selling book The Power of Positive Thinking.' ), array( 'name' => 'quotes_title', 'label' => 'Quotes Title', 'value' => 'Quotes', ), array( 'name' => 'quotes_desc', 'label' => 'Quotes Description', 'type' => 'textarea', 'value' => 'Change your thoughts and you change your world.
Believe in yourself! Have faith in your abilities! Without a humble but reasonable confidence in your own powers you cannot be successful or happy.
Christmas waves a magic wand over this world, and behold, everything is softer and more beautiful.' ), array( 'name' => 'story_title', 'label' => 'Story Title', 'value' => 'RECENT STORIES' ), array( 'name' => 'stroies', 'label' => 'Stories', 'type' => 'repeater', 'fields' => array( array( array('name' => 'story_logo', 'label' => 'Story Logo', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2020/03/story-logo-1.png'), array('name' => 'story_text', 'label' => 'Story Text', "value" => "Latka\'s $5M Risk Paid Off!") ), array( array('name' => 'story_logo', 'label' => 'Story Logo', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2020/03/story-logo-2.png'), array('name' => 'story_text', 'label' => 'Story Text', "value" => "Billionaire Invests $2M in Latka!") ), array( array('name' => 'story_logo', 'label' => 'Story Logo', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2020/03/story-logo-3.png'), array('name' => 'story_text', 'label' => 'Story Text', "value" => "Latka Sells Company at 4x Initial Price...") ) ) ) ), 'settings' => array( array( 'name' => 'heading_type', 'label' => 'Heading Type', 'type' => 'select', 'value' => 'h1', 'options' => array( 'h1' => 'h1', 'h2' => 'h2', 'h3' => 'h3', 'h4' => 'h4', 'h5' => 'h5', 'h6' => 'h6', ), ), array( 'name' => 'section_title_size', 'label' => 'Title Font Size', 'append' => 'px', 'value' => '52', ), array( 'name' => 'section_title_font_weight', 'label' => 'Title Font Weight', 'type' => 'select', 'value' => '700', 'options' => array( '300' => '300', '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'title_transformation', 'label' => 'Title Transformation', 'type' => 'select', 'value' => 'uppercase', 'options' => array( '0' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'animation_content', 'label' => 'Content Animation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), array( 'name' => 'section_text_size', 'label' => 'Title Font Size', 'append' => 'px', 'value' => '18', ), array( 'name' => 'section_text_font_weight', 'label' => 'Title Font Weight', 'type' => 'select', 'value' => '400', 'options' => array( '300' => '300', '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'quote_title_size', 'label' => 'Title Font Size', 'append' => 'px', 'value' => '20', ), array( 'name' => 'quote_title_font_weight', 'label' => 'Title Font Weight', 'type' => 'select', 'value' => '500', 'options' => array( '300' => '300', '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'quote_desc_size', 'label' => 'Title Font Size', 'append' => 'px', 'value' => '16', ), array( 'name' => 'quote_desc_font_weight', 'label' => 'Title Font Weight', 'type' => 'select', 'value' => '500', 'options' => array( '300' => '300', '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'story_title_size', 'label' => 'Title Font Size', 'append' => 'px', 'value' => '26', ), array( 'name' => 'story_title_font_weight', 'label' => 'Title Font Weight', 'type' => 'select', 'value' => '600', 'options' => array( '300' => '300', '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'story_text_size', 'label' => 'Title Font Size', 'append' => 'px', 'value' => '18', ), array( 'name' => 'story_text_font_weight', 'label' => 'Title Font Weight', 'type' => 'select', 'value' => '600', 'options' => array( '300' => '300', '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'animation_media', 'label' => 'media Animation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), ), 'styles' => array( array( 'name' => 'bg_image', 'label' => 'Background Image', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2020/03/norman-fp-24-bg.jpg', ), array( 'name' => 'bg_position', 'label' => 'Background Position', 'type' => 'select', 'value' => 'top-center', 'options' => array( 'top-left' => 'Top Left', 'top-center' => 'Top Center', 'top-right' => 'Top Right', 'center-left' => 'Center Left', 'center-center' => 'Center Center', 'center-right' => 'Center Right', 'bottom-left' => 'Bottom Left', 'bottom-center' => 'Bottom Center', 'bottom-right' => 'Bottom Right', ) ), array( 'name' => 'section_bg', 'label' => 'Section Background Color', 'type' => 'colorpicker', 'value' => '#ffffff', ), array( 'name' => 'quote_bg', 'label' => 'Quote Background Color', 'type' => 'colorpicker', 'value' => '#fff004', ), array( 'name' => 'section_title_color', 'label' => 'Title Color', 'type' => 'colorpicker', 'value' => '#142b45', ), array( 'name' => 'section_desc_color', 'label' => 'Description Color', 'type' => 'colorpicker', 'value' => '#142b45', ), array( 'name' => 'quote_title_color', 'label' => 'Quote Title Color', 'type' => 'colorpicker', 'value' => '#142b45', ), array( 'name' => 'quote_desc_color', 'label' => 'Quote Description Color', 'type' => 'colorpicker', 'value' => '#142b45', ), array( 'name' => 'story_title_color', 'label' => 'Story Title Color', 'type' => 'colorpicker', 'value' => '#142b45', ), array( 'name' => 'story_desc_color', 'label' => 'Story Description Color', 'type' => 'colorpicker', 'value' => '#142b45', ), array( 'name' => 'story_link_color', 'label' => 'Story Link Hover Color', 'type' => 'colorpicker', 'value' => '#4bb93e', ), ) ); ================================================ FILE: blocks/features/feature-24/style.php ================================================ # { background: ; background: no-repeat; } # .quote-wrapper { background: ; } # .image-wrapper img { object-fit: cover; } # .uk-heading-primary{ font-size: ; line-height: ; font-weight: ; color: ; } # .primary-title-wrapper p{ font-size: ; line-height: ; font-weight: ; color: ; } # .quote-content h4{ font-size: ; line-height: ; font-weight: ; color: ; } # .quote-content p{ font-size: ; line-height: ; font-weight: ; color: ; } # .story-area h3{ font-size: ; line-height: ; font-weight: ; color: ; } # .op-text p, # .op-text p a{ margin: 0; font-size: ; line-height: ; font-weight: ; color: ; transition: all 300ms ease-in-out; } # .op-text p a:hover{ color: ; } @media(max-width: 768px){ # .image-wrapper img { width: 100%; } # .quote-wrapper{ margin-left: 30px; } } @media(max-width: 640px){ # .uk-heading-primary{ font-size: ; line-height: ; } # .op-margin-remove{ margin:0; } # .op-text p a{ margin: 0; font-size: ; line-height: ; } } ================================================ FILE: blocks/features/feature-24/view.php ================================================
class="image-wrapper uk-flex uk-flex-center"> <?php echo $contents['section_title'];?>
class="content-wrapper">

<?php echo $single_story['story_text']?>

================================================ FILE: blocks/features/feature-25/config.php ================================================ 'feature-25', 'tag' => 'new', 'groups' => array('features'), 'contents' => array( array( 'name' => 'right_side_logo', 'label' => 'Featured Photo', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2020/03/onepager-normand-logo.png' ), array( 'name' => 'author_name', 'label' => 'Author', 'value' => 'Norman Vincent Peale' ), array( 'name' => 'title_tag', 'label' => 'Before Title Text', 'value' => 'international bestseller More than 5 million copies sold' ), array( 'name' => 'section_title', 'label' => 'Section Title', 'value' => 'The Power of Positive Thinking' ), array( 'name' => 'section_desc', 'label' => 'Section Description', 'type' => 'textarea', 'value' => '"This book is written with the sole objective of helping the reader achieve a happy, satisfying, and worthwhile life."' ), array( 'name' => 'logos', 'label' => 'Company Logo', 'type' => 'repeater', 'fields' => array( array( array('name' => 'company_logo', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2020/03/sponser-1.png') ), array( array('name' => 'company_logo', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2020/03/sponser-2.png') ), array( array('name' => 'company_logo', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2020/03/sponser-3.png') ), array( array('name' => 'company_logo', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2020/03/sponser-4.png') ), array( array('name' => 'company_logo', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2020/03/sponser-5.png') ) ) ), array( 'name' => 'hero_btn', 'label' => 'Section Button', 'type' => 'link', 'text' => 'GET THE BOOK!' ) ), 'settings' => array( array( 'name' => 'author_font_size', 'label' => 'Author Font Size', 'append' => 'px', 'value' => '26', ), array( 'name' => 'author_font_weight', 'label' => 'Author Font Weight', 'type' => 'select', 'value' => '500', 'options' => array( '300' => '300', '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'heading_type', 'label' => 'Heading Type', 'type' => 'select', 'value' => 'h1', 'options' => array( 'h1' => 'h1', 'h2' => 'h2', 'h3' => 'h3', 'h4' => 'h4', 'h5' => 'h5', 'h6' => 'h6', ), ), array( 'name' => 'Title_font_size', 'label' => 'Title Font Size', 'append' => 'px', 'value' => '52', ), array( 'name' => 'title_font_weight', 'label' => 'Title Font Weight', 'type' => 'select', 'value' => '700', 'options' => array( '300' => '300', '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'title_transformation', 'label' => 'Title Transformation', 'type' => 'select', 'value' => 'capitalize', 'options' => array( '0' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'animation_content', 'label' => 'Content Animation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), array( 'name' => 'Title_before_font_size', 'label' => 'Title Before Font Size', 'append' => 'px', 'value' => '16', ), array( 'name' => 'title_before_font_weight', 'label' => 'Title Before Font Weight', 'type' => 'select', 'value' => '600', 'options' => array( '300' => '300', '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'desc_font_size', 'label' => 'Description Font Size', 'append' => 'px', 'value' => '18', ), array( 'name' => 'desc_font_weight', 'label' => 'Description Font Weight', 'type' => 'select', 'value' => '400', 'options' => array( '300' => '300', '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'btn_font_size', 'label' => 'Button Font Size', 'append' => 'px', 'value' => '18', ), array( 'name' => 'btn_font_weight', 'label' => 'Button Font Weight', 'type' => 'select', 'value' => '600', 'options' => array( '300' => '300', '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'animation_media', 'label' => 'media Animation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), ), 'styles' => array( array( 'name' => 'section_bg', 'label' => 'Section Background Color', 'type' => 'colorpicker', 'value' => '#fff004', ), array( 'name' => 'author_color', 'label' => 'Author Color', 'type' => 'colorpicker', 'value' => '#4bb93e', ), array( 'name' => 'title_before_color', 'label' => 'Title Before Text', 'type' => 'colorpicker', 'value' => '#142b45', ), array( 'name' => 'title_before_highlight_color', 'label' => 'Title Before Highlight', 'type' => 'colorpicker', 'value' => '#4bb93e', ), array( 'name' => 'title_color', 'label' => 'Title Text', 'type' => 'colorpicker', 'value' => '#142b45', ), array( 'name' => 'desc_color', 'label' => 'Description Text', 'type' => 'colorpicker', 'value' => '#142b45', ), array( 'name' => 'btn_color', 'label' => 'Button Text', 'type' => 'colorpicker', 'value' => '#142b45', ), array( 'name' => 'btn_bg_color', 'label' => 'Button Background', 'type' => 'colorpicker', 'value' => '#4bb93e', ), ) ); ================================================ FILE: blocks/features/feature-25/style.php ================================================ # { background: ; } # .author-name a{ position: relative; display: inline-block; font-size: ; line-height: ; font-weight: ; color: ; } # .author-name a::before { position: absolute; content: "\25B6"; width: 100%; top: 0; right: ; color: ; } # .author-name a::after { position: absolute; content: ''; width: 100%; height: 1px; background: ; top: 50%; right: 111%; } # h4.tagline{ font-size: ; line-height: ; font-weight: ; color: ; } # h4.tagline span.highlight{ color: ; } # h1.uk-heading-primary{ font-size: ; line-height: ; font-weight: ; color: ; } # .content-wrapper p{ font-size: ; line-height: ; font-weight: ; color: ; } # .content-wrapper a.op-button{ font-size: ; font-weight: ; background: ; border: 1px solid ; color: ; transition: all 300ms ease-in-out; } # .content-wrapper a.op-button:hover{ background: ; border: 1px solid ; color: ; } @media(max-width: 768px){ # .author-name a{ left: 5%; } } @media(max-width: 640px){ # .author-name a{ top: 20px; left: 10%; } } ================================================ FILE: blocks/features/feature-25/view.php ================================================
class="content-wrapper">

class="image-wrapper uk-text-center"> <?php echo $contents['author_name'];?>
================================================ FILE: blocks/features/feature-3/config.php ================================================ 'feature-3', 'groups' => array('features'), 'contents' => array( array( 'name' => 'title', 'value' => 'Onepage Makes Website Building Easy and Fun', ), array( 'name' => 'description', 'type' => 'textarea', 'value' => 'Dont limit yourself. Many people limit themselves to what they think they can do. You can go as far as your mind lets you. What you believe, remember, you can achieve', ), array( 'name' => 'image', 'type' => 'image', 'value' => 'https://s3.amazonaws.com/quantum-assets/phone-light.png', ), array( 'name' => 'items', 'type' => 'repeater', 'fields' => array( array( array('name' => 'title', 'value' => 'Beautiful and Responsive Design'), array('name' => 'description', 'type' => 'textarea', 'value' => 'The best and most beautiful things in the world cannot be seen or even touched - they must be felt with the heart'), array('name' => 'media', 'type' => 'media', 'size' => 'fa-5x', 'value' => 'http://s3.amazonaws.com/quantum-assets/icons/camera.png'), array('name' => 'link', 'placeholder' => home_url()), array('name' => 'target', 'label' => 'open in new window', 'type' => 'switch'), ), array( array('name' => 'title', 'value' => 'Cross Browser Compatibility'), array('name' => 'description', 'type' => 'textarea', 'value' => 'TDesign is not how it looks like of feels lie, design is how its works'), array('name' => 'media', 'type' => 'media', 'size' => 'fa-5x', 'value' => 'http://s3.amazonaws.com/quantum-assets/icons/browser.png'), array('name' => 'link', 'placeholder' => home_url()), array('name' => 'target', 'label' => 'open in new window', 'type' => 'switch'), ), array( array('name' => 'title', 'value' => 'Well Documentation'), array('name' => 'description', 'type' => 'textarea', 'value' => 'Start by doing whats necessary; then do whats possible; and suddenly you are doing the impossible.'), array('name' => 'media', 'type' => 'media', 'size' => 'fa-5x', 'value' => 'http://s3.amazonaws.com/quantum-assets/icons/documents.png'), array('name' => 'link', 'placeholder' => home_url()), array('name' => 'target', 'label' => 'open in new window', 'type' => 'switch'), ), ), ), ), 'settings' => array( array('label' => 'Media', 'type' => 'divider'), // Divider - Text array( 'name' => 'heading_type', 'label' => 'Heading Type', 'type' => 'select', 'value' => 'h1', 'options' => array( 'h1' => 'h1', 'h2' => 'h2', 'h3' => 'h3', 'h4' => 'h4', 'h5' => 'h5', 'h6' => 'h6', ), ), array( 'name' => 'media_alignment', 'label' => 'Content Alignment', 'type' => 'select', 'value' => 'right', 'options' => array( 'left' => 'Left', 'right' => 'Right', ), ), array( 'name' => 'media_grid', 'label' => 'Media Grid', 'type' => 'select', 'value' => 'width-1-3', 'options' => array( 'width-1-2' => 'Half', 'width-1-3' => 'One Thrids', 'width-1-4' => 'One Fourth', ), ), array( 'name' => 'animation_media', 'label' => 'Media Animation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), array('label' => 'Content', 'type' => 'divider'), // Divider - Text array( 'name' => 'item_columns', 'label' => 'Items Colmuns', 'type' => 'select', 'value' => '1', 'options' => array( '1' => '1', '2' => '2', ), ), array( 'name' => 'title_size', 'label' => 'Title Size', 'append' => 'px', 'value' => '@section_title_size', ), array( 'name' => 'title_transformation', 'label' => 'Title Transformation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'desc_size', 'label' => 'Desc Size', 'append' => 'px', 'value' => '18', ), array( 'name' => 'animation_content', 'label' => 'Content Animation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), array('label' => 'Items', 'type' => 'divider'), // Divider - Text array( 'name' => 'item_title_size', 'label' => 'Item Title Size', 'append' => 'px', 'value' => '24', ), array( 'name' => 'item_title_transformation', 'label' => 'Item Title Transformation', 'type' => 'select', 'value' => 'inherit', 'options' => array( 'inherit' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'item_desc_size', 'label' => 'Item Desc Size', 'append' => 'px', 'value' => '16', ), ), 'styles' => array( array( 'name' => 'bg_image', 'label' => 'Background Image', 'type' => 'image', ), array( 'name' => 'bg_color', 'label' => 'Background Color', 'type' => 'colorpicker', 'value' => '#fff', ), array('label' => 'Title', 'type' => 'divider'), // Divider - Text array( 'name' => 'title_color', 'label' => 'Title Color', 'type' => 'colorpicker', 'value' => '#323232', ), array( 'name' => 'desc_color', 'label' => 'Desc Color', 'type' => 'colorpicker', 'value' => '#727272', ), array('label' => 'Items', 'type' => 'divider'), // Divider - Text array( 'name' => 'icon_color', 'label' => 'Icon Color', 'type' => 'colorpicker', ), array( 'name' => 'item_title_color', 'label' => 'Title Color', 'type' => 'colorpicker', 'value' => '#323232', ), array( 'name' => 'item_desc_color', 'label' => 'Desc Color', 'type' => 'colorpicker', 'value' => '#727272', ), ), // 'assets' => function( $path ){ // Onepager::addStyle('content-3', $path . '/style.css'); // } ); ================================================ FILE: blocks/features/feature-3/style.php ================================================ #{ background-image:url(); background-repeat:no-repeat; background-color : ; } # .uk-article .uk-heading-primary{ font-size : px; color : ; } # .uk-article .uk-text-lead{ font-size : px; color : ; } # .uk-article .uk-panel .uk-card-title, # .uk-article .uk-panel .uk-card-title a{ font-size : px; color:; } # .uk-article .uk-panel .uk-text-medium{ font-size : px; color:; } # .op-media{ color : ; } @media(max-width:768px){ # .uk-article .uk-heading-primary{ font-size : px; } # .uk-card-media-left img{ width:50px; } } ================================================ FILE: blocks/features/feature-3/view.php ================================================
>
>
<?php echo $feature['title']; ?>

> <?php echo $contents['title']; ?>
================================================ FILE: blocks/features/feature-4/config.php ================================================ 'feature-4', 'groups' => array('features'), 'contents' => array( array( 'name' => 'title', 'value' => 'OUR SERVICES', ), array( 'name' => 'description', 'type' => 'textarea', 'value' => 'Lorem ipsum dolor sit amet, consectetur adipisicing elit, sed do eiusmod tempor incididunt ut labore et dolore magna aliqua.', ), array('label' => 'Items', 'type' => 'divider'), // Divider - Text array( 'name' => 'items', 'type' => 'repeater', 'fields' => array( array( array('name' => 'title', 'value' => 'Responsive Design'), array('name' => 'description', 'type' => 'textarea', 'value' => ''), array('name' => 'media', 'type' => 'media', 'size' => 'fa-5x', 'value' => 'http://try.getonepager.com/wp-content/uploads/2019/03/01.jpg'), array('name' => 'link', 'placeholder' => home_url()), array('name' => 'target', 'label' => 'open in new window', 'type' => 'switch'), ), array( array('name' => 'title', 'value' => 'WYSIWYG Editor'), array('name' => 'description', 'type' => 'textarea', 'value' => ''), array('name' => 'media', 'type' => 'media', 'size' => 'fa-5x', 'value' => 'http://try.getonepager.com/wp-content/uploads/2019/03/02.jpg'), array('name' => 'link', 'placeholder' => home_url()), array('name' => 'target', 'label' => 'open in new window', 'type' => 'switch'), ), array( array('name' => 'title', 'value' => 'Intuitive Configuration'), array('name' => 'description', 'type' => 'textarea', 'value' => ''), array('name' => 'media', 'type' => 'media', 'size' => 'fa-5x', 'value' => 'http://try.getonepager.com/wp-content/uploads/2019/03/03.jpg'), array('name' => 'link', 'placeholder' => home_url()), array('name' => 'target', 'label' => 'open in new window', 'type' => 'switch'), ), ), ), ), 'settings' => array( array('label' => 'Title Settings', 'type' => 'divider'), // Divider - Text array( 'name' => 'heading_type', 'label' => 'Heading Type', 'type' => 'select', 'value' => 'h1', 'options' => array( 'h1' => 'h1', 'h2' => 'h2', 'h3' => 'h3', 'h4' => 'h4', 'h5' => 'h5', 'h6' => 'h6', ), ), array( 'name' => 'title_size', 'label' => 'Title Size', 'append' => 'px', 'value' => '@section_title_size', ), array( 'name' => 'title_transformation', 'label' => 'Title Transformation', 'type' => 'select', 'value' => 0, 'options' => array( 0 => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'title_alignment', 'label' => 'Title Alignment', 'type' => 'select', 'value' => 'center', 'options' => array( 'left' => 'Left', 'center' => 'Center', 'right' => 'Right', 'justify' => 'Justify', ), ), array( 'name' => 'desc_size', 'label' => 'Desc Size', 'append' => 'px', 'value' => '18', ), array( 'name' => 'title_animation', 'label' => 'Title Animation ', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), array('label' => 'Items Settings', 'type' => 'divider'), // Divider - Text array( 'name' => 'items_columns', 'label' => 'Items Columns', 'type' => 'select', 'value' => '3', 'options' => array( '2' => '2', '3' => '3', '4' => '4', ), ), array( 'name' => 'item_title_size', 'label' => 'Title Size', 'append' => 'px', 'value' => '22', ), array( 'name' => 'item_desc_size', 'label' => 'Desc Size', 'append' => 'px', 'value' => '16', ), array( 'name' => 'items_alignment', 'label' => 'Items Alignment', 'type' => 'select', 'value' => 'center', 'options' => array( 'left' => 'Left', 'center' => 'Center', 'right' => 'Right', 'justify' => 'Justify', ), ), array( 'name' => 'items_animation', 'label' => 'Items Animation ', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), array( 'name' => 'section_margin', 'label' => 'Article Margin', 'append' => 'px', 'value' => '-140', ), ), 'styles' => array( array( 'name' => 'bg_color', 'label' => 'Background Color', 'type' => 'colorpicker', 'value' => '#fff', ), array( 'name' => 'title_color', 'label' => 'Title Color', 'type' => 'colorpicker', 'value' => '#323232', ), array( 'name' => 'desc_color', 'label' => 'Desc Color', 'type' => 'colorpicker', 'value' => '#323232', ), array('label' => 'Items Style', 'type' => 'divider'), // Divider - Text array( 'name' => 'item_title_color', 'label' => 'Item Title Color', 'type' => 'colorpicker', 'value' => '#727272', ), array( 'name' => 'item_desc_color', 'label' => 'Item Desc Color', 'type' => 'colorpicker', 'value' => '#727272', ), array( 'name' => 'icon_color', 'label' => 'Icon Color', 'type' => 'colorpicker', ), ), // 'assets' => function( $path ){ // Onepager::addStyle('content-2', $path . '/style.css'); // } ); ================================================ FILE: blocks/features/feature-4/style.php ================================================ #{ background-color : ; } # .section-heading .uk-heading-primary{ font-size : px; color : ; } # .section-heading .uk-text-lead{ font-size : px; color : ; } # .op-media{ color : ; } # .op-media{ width : 100%; } # .uk-article{ margin-top :px; } # .item-title, # .item-title a{ font-size : px; color : ; } # .uk-text-medium{ font-size : px; color : ; } @media(max-width:768px){ # .section-heading .uk-heading-primary{ font-size : px; } # .uk-article{ margin-top :0px; } } ================================================ FILE: blocks/features/feature-4/view.php ================================================ div> .uk-card; delay:200;"' : ''; ?>

>

uk-grid >
<?php echo $feature['title']; ?>

================================================ FILE: blocks/features/feature-5/config.php ================================================ 'features-5', 'groups' => array('features'), 'contents' => array( array( 'name' => 'title', 'value' => 'Our Service', ), array( 'name' => 'description', 'type' => 'textarea', 'value' => "Quisque ut eros eget odio accumsan mattis nec ac neque. Integer
ornare velit a dante scelerisque, ac porttitor ornare auctor.", ), array('label' => 'Items', 'type' => 'divider'), // Divider - Text array( 'name' => 'items', 'type' => 'repeater', 'fields' => array( array( array('name' => 'media', 'type' => 'media', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2019/08/speed-icon.png'), array('name' => 'title', 'value' => 'Seo Optimize'), array('name' => 'desc', 'value' => 'Quisque ut eros eget odio accumsan mattis nec ac neque. Integer ornare velit a dante.'), array('name' => 'link', 'placeholder' => home_url()), ), array( array('name' => 'media', 'type' => 'media', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2019/08/report-icon.png'), array('name' => 'title', 'value' => 'Report Writing'), array('name' => 'desc', 'value' => 'Manage your cash flow by scheduling payments and batch paying suppliers with Amountly.'), array('name' => 'link', 'placeholder' => home_url()), ), array( array('name' => 'media', 'type' => 'media', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2019/08/idea-icon.png'), array('name' => 'title', 'value' => 'Creative Idea'), array('name' => 'desc', 'value' => 'Quisque ut eros eget odio accumsan mattis nec ac neque. Integer ornare velit a dante.'), array('name' => 'link', 'placeholder' => home_url()), ), array( array('name' => 'media', 'type' => 'media', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2019/08/data-icon.png'), array('name' => 'title', 'value' => 'Data Analytics'), array('name' => 'desc', 'value' => 'Manage your cash flow by scheduling payments and batch paying suppliers with Amountly.'), array('name' => 'link', 'placeholder' => home_url()), ), ), ), ), 'settings' => array( array('label' => 'Heading', 'type' => 'divider'), // Divider - Text array( 'name' => 'heading_type', 'label' => 'Heading Type', 'type' => 'select', 'value' => 'h1', 'options' => array( 'h1' => 'h1', 'h2' => 'h2', 'h3' => 'h3', 'h4' => 'h4', 'h5' => 'h5', 'h6' => 'h6', ), ), array( 'name' => 'section_title_size', 'label' => 'Title Size', 'append' => 'px', 'value' => '@section_title_size', ), array( 'name' => 'title_font_weight', 'label' => 'Font Weight', 'type' => 'select', 'value' => '700', 'options' => array( '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'title_transformation', 'label' => 'Title Transformation', 'type' => 'select', 'value' => 'inherit', 'options' => array( 'inherit' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'title_alignment', 'label' => 'Title Alignment', 'type' => 'select', 'value' => 'center', 'options' => array( 'left' => 'Left', 'center' => 'Center', 'right' => 'Right', 'justify' => 'Justify', ), ), array( 'name' => 'desc_size', 'label' => 'Desc Size', 'append' => 'px', 'value' => '18', ), array( 'name' => 'title_animation', 'label' => 'Animation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), array('label' => 'Items Settings', 'type' => 'divider'), // Divider - Text array( 'name' => 'item_title_size', 'label' => 'Title Size', 'append' => 'px', 'value' => '22', ), array( 'name' => 'item_desc_size', 'label' => 'Desc Size', 'append' => 'px', 'value' => '16', ), array( 'name' => 'items_animation', 'label' => 'Items Animation ', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), ), 'styles' => array( array( 'name' => 'bg_image', 'label' => 'Background', 'type' => 'image', 'value' => '', ), array( 'name' => 'overlay_color', 'label' => 'Overlay Color', 'type' => 'colorpicker', 'value' => 'rgba(255,255,255,0)', ), array( 'name' => 'bg_color', 'label' => 'Background Color', 'type' => 'colorpicker', 'value' => '#fff', ), array('label' => 'Title Style', 'type' => 'divider'), // Divider - Text array( 'name' => 'title_color', 'label' => 'Title Color', 'type' => 'colorpicker', 'value' => '#263B5E', ), array( 'name' => 'desc_color', 'label' => 'Desc Color', 'type' => 'colorpicker', 'value' => 'rgba(38, 59, 94, 0.54)', ), array('label' => 'Items Style', 'type' => 'divider'), // Divider - Text array( 'name' => 'item_title_color', 'label' => 'Item Title Color', 'type' => 'colorpicker', 'value' => '#263B5E', ), array( 'name' => 'item_title_link_color', 'label' => 'Item Title Link Color', 'type' => 'colorpicker', 'value' => '#000', ), array( 'name' => 'item_desc_color', 'label' => 'Item Desc Color', 'type' => 'colorpicker', 'value' => 'rgba(38, 59, 94, 0.54)', ), ), ); ================================================ FILE: blocks/features/feature-5/style.php ================================================ #{ background-color : ; } # h1, # h2, # h3, # h4{ font-weight:; } # .section-heading .uk-heading-primary{ font-size : px; color : ; line-height : px; } # .section-heading .uk-text-lead{ font-size : px; color : ; } # .item-title, # .item-title a{ font-size : px; color : ; } # .uk-text-medium{ font-size : px; color : ; } # .uk-overlay-primary{ background: ; } # .items .item-img{ overflow: hidden; } # .items img{ transition: all 0.3s ease; overflow: hidden; transform: scale(1); width: 100%; } # .items:hover img{ transition: all 0.3s ease; transform: scale(1.1); } # .card-single .uk-link-heading{ color: ; font-size: px; transition: all 0.5s ease; } # .card-single .uk-link-heading:hover{ color: ; transition: all 0.5s ease; } # .card-single .uk-card{ border-radius: 10px; background-color: rgb(255, 255, 255); box-shadow: 3px 6px 23px rgba(38, 59, 94, 0.13); transition: all 0.5s ease; } # .card-single:hover .uk-card{ border-radius: 10px; background-color: rgb(255, 255, 255); box-shadow: 3px 6px 33px rgba(38, 59, 94, 0.2); transition: all 0.5s ease; } @media(max-width:768px){ # .section-heading .uk-heading-primary{ font-size : px; line-height : px; } # .section-heading .uk-text-lead { font-size : px; } } ================================================ FILE: blocks/features/feature-5/view.php ================================================

>

>
<?php echo $feature['title'];?>

================================================ FILE: blocks/features/feature-6/config.php ================================================ 'features-6', 'groups' => array('features'), 'contents' => array( array( 'name' => 'title', 'value' => "We Are Digital Specialists. It's All We Do", ), array( 'name' => 'description', 'type' => 'textarea', 'value' => "Quisque ut eros eget odio accumsan mattis nec ac neque. Integer
ornare velit a dante scelerisque, ac porttitor ornare auctor.", ), array('label' => 'Items', 'type' => 'divider'), // Divider - Text array( 'name' => 'items', 'type' => 'repeater', 'fields' => array( array( array('name' => 'media', 'type' => 'media', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2019/08/responsive-icon.png'), array('name' => 'title', 'value' => 'Responsive Design'), array('name' => 'desc', 'value' => 'Quisque ut eros eget odio accumsan mattis nec ac neque. Integer ornare velit a dante.'), array('name' => 'link', 'placeholder' => home_url()), ), array( array('name' => 'media', 'type' => 'media', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2019/08/service-cion.png'), array('name' => 'title', 'value' => 'Customizable'), array('name' => 'desc', 'value' => 'Quisque ut eros eget odio accumsan mattis nec ac neque. Integer ornare velit a dante.'), array('name' => 'link', 'placeholder' => home_url()), ), array( array('name' => 'media', 'type' => 'media', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2019/08/graphic-design-cion.png'), array('name' => 'title', 'value' => 'Ui Kit'), array('name' => 'desc', 'value' => 'Quisque ut eros eget odio accumsan mattis nec ac neque. Integer ornare velit a dante.'), array('name' => 'link', 'placeholder' => home_url()), ), array( array('name' => 'media', 'type' => 'media', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2019/08/group-icon.png'), array('name' => 'title', 'value' => 'Lego Base'), array('name' => 'desc', 'value' => 'Manage your cash flow by scheduling payments and batch paying suppliers with Amountly.'), array('name' => 'link', 'placeholder' => home_url()), ), array( array('name' => 'media', 'type' => 'media', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2019/08/code-alt-icon.png'), array('name' => 'title', 'value' => 'Clean Code'), array('name' => 'desc', 'value' => 'Quisque ut eros eget odio accumsan mattis nec ac neque. Integer ornare velit a dante.'), array('name' => 'link', 'placeholder' => home_url()), ), array( array('name' => 'media', 'type' => 'media', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2019/08/code-alt-icon.png'), array('name' => 'title', 'value' => 'Support'), array('name' => 'desc', 'value' => 'Manage your cash flow by scheduling payments and batch paying suppliers with Amountly.'), array('name' => 'link', 'placeholder' => home_url()), ), ), ), ), 'settings' => array( array('label' => 'Heading', 'type' => 'divider'), // Divider - Text array( 'name' => 'heading_type', 'label' => 'Heading Type', 'type' => 'select', 'value' => 'h1', 'options' => array( 'h1' => 'h1', 'h2' => 'h2', 'h3' => 'h3', 'h4' => 'h4', 'h5' => 'h5', 'h6' => 'h6', ), ), array( 'name' => 'section_title_size', 'label' => 'Title Size', 'append' => 'px', 'value' => '@section_title_size', ), array( 'name' => 'title_font_weight', 'label' => 'Font Weight', 'type' => 'select', 'value' => '700', 'options' => array( '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'title_transformation', 'label' => 'Title Transformation', 'type' => 'select', 'value' => 'inherit', 'options' => array( 'inherit' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'title_alignment', 'label' => 'Title Alignment', 'type' => 'select', 'value' => 'center', 'options' => array( 'left' => 'Left', 'center' => 'Center', 'right' => 'Right', 'justify' => 'Justify', ), ), array( 'name' => 'desc_size', 'label' => 'Desc Size', 'append' => 'px', 'value' => '18', ), array( 'name' => 'title_animation', 'label' => 'Animation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), array('label' => 'Items Settings', 'type' => 'divider'), // Divider - Text array( 'name' => 'item_title_size', 'label' => 'Title Size', 'append' => 'px', 'value' => '22', ), array( 'name' => 'item_desc_size', 'label' => 'Desc Size', 'append' => 'px', 'value' => '16', ), array( 'name' => 'items_animation', 'label' => 'Items Animation ', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), ), 'styles' => array( array( 'name' => 'bg_image', 'label' => 'Background', 'type' => 'image', 'value' => '', ), array( 'name' => 'overlay_color', 'label' => 'Overlay Color', 'type' => 'colorpicker', 'value' => 'rgba(255,255,255,0)', ), array( 'name' => 'bg_color', 'label' => 'Background Color', 'type' => 'colorpicker', 'value' => '#fff', ), array('label' => 'Title Style', 'type' => 'divider'), // Divider - Text array( 'name' => 'title_color', 'label' => 'Title Color', 'type' => 'colorpicker', 'value' => '#263B5E', ), array( 'name' => 'desc_color', 'label' => 'Desc Color', 'type' => 'colorpicker', 'value' => 'rgba(38, 59, 94, 0.54)', ), array('label' => 'Items Style', 'type' => 'divider'), // Divider - Text array( 'name' => 'item_title_color', 'label' => 'Item Title Color', 'type' => 'colorpicker', 'value' => '#263B5E', ), array( 'name' => 'item_title_link_color', 'label' => 'Item Title Link Color', 'type' => 'colorpicker', 'value' => '#000', ), array( 'name' => 'item_desc_color', 'label' => 'Item Desc Color', 'type' => 'colorpicker', 'value' => 'rgba(38, 59, 94, 0.54)', ), ), ); ================================================ FILE: blocks/features/feature-6/style.php ================================================ #{ background-color : ; } # h1, # h2, # h3, # h4{ font-weight:; } # .section-heading .uk-heading-primary{ font-size : px; color : ; line-height : px; } # .section-heading .uk-text-lead{ font-size : px; color : ; } # .item-title, # .item-title a{ font-size : px; color : ; } # .uk-text-medium{ font-size : px; color : ; } # .uk-overlay-primary{ background: ; } # .items .item-img{ overflow: hidden; } # .items img{ transition: all 0.3s ease; overflow: hidden; transform: scale(1); width: 100%; } # .items:hover img{ transition: all 0.3s ease; transform: scale(1.1); } # .card-single .uk-link-heading{ color: ; font-size: px; transition: all 0.5s ease; } # .card-single .uk-link-heading:hover{ color: ; transition: all 0.5s ease; } # .card-single .uk-card{ border-radius: 10px; background-color: rgb(255, 255, 255); box-shadow: 3px 6px 23px rgba(38, 59, 94, 0.13); transition: all 0.5s ease; } # .card-single:hover .uk-card{ border-radius: 10px; background-color: rgb(255, 255, 255); box-shadow: 3px 6px 33px rgba(38, 59, 94, 0.2); transition: all 0.5s ease; } @media(max-width:768px){ # .section-heading .uk-heading-primary{ font-size : px; line-height : px; } # .section-heading .uk-text-lead { font-size : px; } } ================================================ FILE: blocks/features/feature-6/view.php ================================================

>

>
<?php echo $feature['title'];?>

================================================ FILE: blocks/features/feature-7/config.php ================================================ 'features-7', 'groups' => array('features'), 'contents' => array( array( 'name' => 'title', 'value' => 'We Offer Your Needs', ), array( 'name' => 'description', 'type' => 'textarea', 'value' => "So delightful up dissimilar by unreserved it connection frequently. Do an high room so in paid. Up on cousin ye dinner should in. Sex stood tried walls manor truth shy and three his. Their to years so child truth. Honoured peculiar families sensible up likewise by on in.", ), array('label' => 'Items', 'type' => 'divider'), // Divider - Text array( 'name' => 'items', 'type' => 'repeater', 'fields' => array( array( array('name' => 'media', 'type' => 'media', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2019/08/responsive-icon.png'), array('name' => 'title', 'value' => 'Web Design'), array('name' => 'desc', 'value' => 'Written enquire painful to offices forming it. Then so does over sent dull. Likewise offended humour mrs fat trifling answered.'), array('name' => 'link', 'placeholder' => home_url()), ), array( array('name' => 'media', 'type' => 'media', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2019/08/service-cion.png'), array('name' => 'title', 'value' => 'Mobile App'), array('name' => 'desc', 'value' => 'Written enquire painful to offices forming it. Then so does over sent dull. Likewise offended humour mrs fat trifling answered.'), array('name' => 'link', 'placeholder' => home_url()), ), array( array('name' => 'media', 'type' => 'media', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2019/08/graphic-design-cion.png'), array('name' => 'title', 'value' => 'Digital Marketing'), array('name' => 'desc', 'value' => 'Written enquire painful to offices forming it. Then so does over sent dull. Likewise offended humour mrs fat trifling answered.'), array('name' => 'link', 'placeholder' => home_url()), ), array( array('name' => 'media', 'type' => 'media', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2019/08/group-icon.png'), array('name' => 'title', 'value' => 'Branding Package'), array('name' => 'desc', 'value' => 'Written enquire painful to offices forming it. Then so does over sent dull. Likewise offended humour mrs fat trifling answered.'), array('name' => 'link', 'placeholder' => home_url()), ), ), ), ), 'settings' => array( array('label' => 'Heading', 'type' => 'divider'), // Divider - Text array( 'name' => 'heading_type', 'label' => 'Heading Type', 'type' => 'select', 'value' => 'h1', 'options' => array( 'h1' => 'h1', 'h2' => 'h2', 'h3' => 'h3', 'h4' => 'h4', 'h5' => 'h5', 'h6' => 'h6', ), ), array( 'name' => 'section_title_size', 'label' => 'Title Size', 'append' => 'px', 'value' => '@section_title_size', ), array( 'name' => 'title_font_weight', 'label' => 'Font Weight', 'type' => 'select', 'value' => '700', 'options' => array( '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'title_transformation', 'label' => 'Title Transformation', 'type' => 'select', 'value' => 'inherit', 'options' => array( 'inherit' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'title_alignment', 'label' => 'Title Alignment', 'type' => 'select', 'value' => 'left', 'options' => array( 'left' => 'Left', 'center' => 'Center', 'right' => 'Right', 'justify' => 'Justify', ), ), array( 'name' => 'desc_size', 'label' => 'Desc Size', 'append' => 'px', 'value' => '16', ), array( 'name' => 'title_animation', 'label' => 'Animation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), array('label' => 'Items Settings', 'type' => 'divider'), // Divider - Text array( 'name' => 'item_title_size', 'label' => 'Title Size', 'append' => 'px', 'value' => '22', ), array( 'name' => 'item_desc_size', 'label' => 'Desc Size', 'append' => 'px', 'value' => '16', ), array( 'name' => 'item_alignment', 'label' => 'Item Alignment', 'type' => 'select', 'value' => 'left', 'options' => array( 'left' => 'Left', 'center' => 'Center', 'right' => 'Right', ), ), array( 'name' => 'items_animation', 'label' => 'Items Animation ', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), ), 'styles' => array( array( 'name' => 'bg_image', 'label' => 'Background', 'type' => 'image', 'value' => '', ), array( 'name' => 'overlay_color', 'label' => 'Overlay Color', 'type' => 'colorpicker', 'value' => 'rgba(255,255,255,0)', ), array( 'name' => 'bg_color', 'label' => 'Background Color', 'type' => 'colorpicker', 'value' => '#fff', ), array('label' => 'Title Style', 'type' => 'divider'), // Divider - Text array( 'name' => 'title_color', 'label' => 'Title Color', 'type' => 'colorpicker', 'value' => '#263B5E', ), array( 'name' => 'desc_color', 'label' => 'Desc Color', 'type' => 'colorpicker', 'value' => 'rgba(38, 59, 94, 0.54)', ), array('label' => 'Items Style', 'type' => 'divider'), // Divider - Text array( 'name' => 'item_title_color', 'label' => 'Item Title Color', 'type' => 'colorpicker', 'value' => '#263B5E', ), array( 'name' => 'item_title_link_color', 'label' => 'Item Title Link Color', 'type' => 'colorpicker', 'value' => '#000', ), array( 'name' => 'item_desc_color', 'label' => 'Item Desc Color', 'type' => 'colorpicker', 'value' => 'rgba(38, 59, 94, 0.54)', ), ), ); ================================================ FILE: blocks/features/feature-7/style.php ================================================ #{ background-color : ; } # h1, # h2, # h3, # h4{ font-weight:; } # .section-heading .uk-heading-primary{ font-size : px; color : ; line-height : px; } # .section-heading .uk-text-lead{ font-size : px; color : ; } # .uk-card-title, # .uk-card-title a{ font-size : px; color : ; } # .uk-text-medium{ font-size : px; color : ; } # .uk-overlay-primary{ background: ; } # .items .item-img{ overflow: hidden; } # .items img{ transition: all 0.3s ease; overflow: hidden; transform: scale(1); width: 100%; } # .items:hover img{ transition: all 0.3s ease; transform: scale(1.1); } # .card-single .uk-link-heading{ color: ; font-size: px; transition: all 0.5s ease; } # .card-single .uk-link-heading:hover{ color: ; transition: all 0.5s ease; } # .card-single .uk-card{ border-radius: 10px; background-color: rgb(255, 255, 255); box-shadow: 3px 6px 23px rgba(38, 59, 94, 0.13); transition: all 0.5s ease; } # .card-single:hover .uk-card{ border-radius: 10px; background-color: rgb(255, 255, 255); box-shadow: 3px 6px 33px rgba(38, 59, 94, 0.2); transition: all 0.5s ease; } @media(max-width:768px){ # .section-heading .uk-heading-primary{ font-size : px; line-height : px; } # .section-heading .uk-text-lead { font-size : px; } } ================================================ FILE: blocks/features/feature-7/view.php ================================================

>

>
<?php echo $feature['title'];?>

================================================ FILE: blocks/features/feature-8/config.php ================================================ 'features-8', 'groups' => array('features'), 'contents' => array( array( 'name' => 'title', 'type' => 'editor', 'value' => 'Lawyers in Melbourne can be complex and, at times, intimidating. From business to family law, our legal experts make complicated decisions easy to understand.', ), array( 'name' => 'sub_heading', 'type' => 'repeater', 'fields' => array( array( array('name' => 'heading', 'value' => '60'), array('name' => 'tagline', 'value' => 'K Trusted by 60,000 clients'), ), array( array('name' => 'heading', 'value' => '30'), array('name' => 'tagline', 'value' => '+ Years experience'), ), ), ), array( 'name' => 'list_items', 'type' => 'repeater', 'fields' => array( array( array('name' => 'title', 'value' => 'Trusted by 1000s of clients with over 99% success rate'), array('name' => 'media', 'type' => 'icon', 'size' => 'fa-2x', 'value' => 'fa fa-check fa-2x'), ), array( array('name' => 'title', 'value' => '30+ Years experience'), array('name' => 'media', 'type' => 'icon', 'size' => 'fa-2x', 'value' => 'fa fa-check fa-2x'), ), array( array('name' => 'title', 'value' => 'Family Law, Criminal Law, Busines Law, Conveyancing & more'), array('name' => 'media', 'type' => 'icon', 'size' => 'fa-2x', 'value' => 'fa fa-check fa-2x'), ), ), ), array('name' => 'link', 'type' => 'link', 'text' => 'CALL (02) 8084 2764'), array('name' => 'link_2', 'type' => 'link', 'text' => 'Free Consultation'), ), 'settings' => array( array( 'name' => 'heading_type', 'label' => 'Heading Type', 'type' => 'select', 'value' => 'h1', 'options' => array( 'h1' => 'h1', 'h2' => 'h2', 'h3' => 'h3', 'h4' => 'h4', 'h5' => 'h5', 'h6' => 'h6', ), ), array('label' => 'Content', 'type' => 'divider'), // Divider - Text array( 'name' => 'animation_content', 'label' => 'Content Animation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), array( 'name' => 'title_size', 'label' => 'Title Size', 'append' => 'px', 'value' => '40', ), array( 'name' => 'title_font_weight', 'label' => 'Font Weight', 'type' => 'select', 'value' => '600', 'options' => array( '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'title_transformation', 'label' => 'Title Transformation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array('label' => 'Sub Heading', 'type' => 'divider'), // Divider - Text array( 'name' => 'subheading_bigger_size', 'label' => 'Big Font Size', 'append' => 'px', 'value' => '70', ), array( 'name' => 'subheading_smaller_size', 'label' => 'Small Font Size', 'append' => 'px', 'value' => '26', ), array( 'name' => 'subheading_font_weight', 'label' => 'Sub-Heading Font Weight', 'type' => 'select', 'value' => '600', 'options' => array( '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'subheading_transformation', 'label' => 'Sub-Heading Transformation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array('label' => 'Items', 'type' => 'divider'), // Divider - Text array( 'name' => 'item_font_weight', 'label' => 'Item Font Weight', 'type' => 'select', 'value' => '600', 'options' => array( '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'item_title_size', 'label' => 'Item Font Size', 'append' => 'px', 'value' => '24', ), array( 'name' => 'item_title_transformation', 'label' => 'Item Title Transformation', 'type' => 'select', 'value' => 'inherit', 'options' => array( 'inherit' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), ), 'styles' => array( array( 'name' => 'bg_image', 'label' => 'Image', 'type' => 'image', ), array( 'name' => 'bg_parallax', 'type' => 'switch', 'label' => 'Parallax Background', ), array( 'name' => 'bg_size', 'label' => 'Background Size', 'type' => 'select', 'value' => 'inherit', 'options' => array( 'inherit' => 'Inherit', 'auto' => 'Auto', 'contain' => 'Contain', 'cover' => 'Cover', ), ), array( 'name' => 'bg_color', 'label' => 'Background Color', 'type' => 'colorpicker', 'value' => '#f1f1f1', ), array('label' => 'Title', 'type' => 'divider'), // Divider - Text array( 'name' => 'title_color', 'label' => 'Title Color', 'type' => 'colorpicker', 'value' => '#132a46', ), array( 'name' => 'sub_heading_primary', 'label' => 'Counter Primary Color', 'type' => 'colorpicker', 'value' => '#29cb8b', ), array( 'name' => 'sub_heading_secondary', 'label' => 'Counter Secondary Color', 'type' => 'colorpicker', 'value' => '#dd5346', ), array('label' => 'List Item', 'type' => 'divider'), // Divider - Text array( 'name' => 'icon_color', 'label' => 'Icon Color', 'type' => 'colorpicker', 'value' => '#132a46', ), array( 'name' => 'item_text_color', 'label' => 'Text Color', 'type' => 'colorpicker', 'value' => '#132a46', ), array('label' => 'Button', 'type' => 'divider'), // Divider - Text array( 'name' => 'btn_bg1', 'label' => 'First Button BG', 'type' => 'colorpicker', 'value' => '#29cb8b', ), array( 'name' => 'btn_text1', 'label' => 'First Button Text', 'type' => 'colorpicker', 'value' => '#ffffff', ), array( 'name' => 'btn_bg2', 'label' => 'Second Button BG', 'type' => 'colorpicker', 'value' => '#fff', ), array( 'name' => 'btn_text2', 'label' => 'Second Button Text', 'type' => 'colorpicker', 'value' => '#dd5346', ), ), ); ================================================ FILE: blocks/features/feature-8/style.php ================================================ #{ background-color: ; ; } # h1.quote-heading, # h2.quote-heading, # h3.quote-heading, # h4.quote-heading{ font-weight:; font-size: px; line-height: px; display: inline-block; color: } # .quote-heading::before{ content: ''; width: 35px; position: absolute; height: 35px; border-top: 2px solid ; border-left: 2px solid ; left: -1%; top: -8%; } # .quote-heading::after{ content: ''; position: absolute; width: 35px; height: 35px; right: -1%; bottom: -8%; border-bottom: 2px solid ; border-right: 2px solid ; } # .list-wrapper li span.fa { padding-right: 10px; } # .uk-card.uk-card-body h2 { } # .uk-card.uk-card-body:nth-child(2n+1) h2 { } # .uk-card.uk-card-body h2 { font-size: ; font-weight: ; } # .uk-card.uk-card-body h2 span.sub-head-tagline { font-size: ; } # ul.uk-list li{ font-size: ; color: ; font-weight: ; } # ul.uk-list li span.fa { color: ; } # .uk-button-primary{ background-color: ; color: ; font-weight: 700; transition: all 300ms ease-in-out; } # .uk-button-default{ background-color: ; color: ; font-weight: 700; transition: all 300ms ease-in-out; } # .uk-button-default:hover{ background-color: ; color: ; font-weight: 700; } # .uk-button-primary:hover{ background-color: ; color: ; font-weight: 700; } # .border-bottom { border-bottom: 1px dashed #dddddd; } @media(max-width:768px){ # h1.quote-heading, # h2.quote-heading, # h3.quote-heading, # h4.quote-heading{ font-size: px; line-height: px; padding: 8px; } # .uk-card.uk-card-body h2 { font-size: ; } # .uk-card.uk-card-body h2 span.sub-head-tagline { font-size: ; } # ul.uk-list li{ font-size: ; } # .quote-heading::before{ left: 0; } # .quote-heading::after{ right: 0; } # .ft-view-mobile { display: block; text-align: center; } # .ft-view-mobile div{ margin-bottom: 10px; margin-left: 0!important; } # .uk-card.uk-card-body { padding: 10px; text-align: left!important; } } @media(max-width:640px){ # h1.quote-heading, # h2.quote-heading, # h3.quote-heading, # h4.quote-heading{ font-size: px; line-height: px; padding: 8px; } # ul.uk-list li{ font-size: ; } } ================================================ FILE: blocks/features/feature-8/view.php ================================================
data-src="" uk-img>
>
>

>
>
================================================ FILE: blocks/features/feature-9/config.php ================================================ 'features-9', 'groups' => array('features'), 'contents' => array( array('name' => 'section_image', 'label' => 'Section Image', 'type' => 'media', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2020/03/another-block.jpg'), array( 'name' => 'section_title', 'label' => 'Title', 'value' => 'Our approach reduces the need for complicated legal tangles. Rose Lawyers Melbourne will save you time, money and stress.', ), array( 'name' => 'main_text', 'label' => 'Content', 'type' => 'editor', 'value' => 'Lorem Ipsum is simply dummy text of the printing and typesetting industry. Lorem Ipsum has been the industry\'s standard dummy text ever since the 1500s, when an unknown printer took a galley of type and scrambled it to make a type specimen book. Contrary to popular belief, Lorem Ipsum is not simply random text. It has roots in a piece of classical Latin literature from 45 BC, making it over 2000 years old.', ), array( 'name' => 'sponser_award', 'label' => 'Sponser and Awards', 'value' => 'Award', ), array( 'name' => 'awards', 'type' => 'repeater', 'fields' => array( array( array('name' => 'awardImage', 'label' => 'Awards Image', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2020/03/award-1.png'), ), array( array('name' => 'awardImage', 'label' => 'Awards Image', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2020/03/award-2.png'), ), array( array('name' => 'awardImage', 'label' => 'Awards Image', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2020/03/award-3.png'), ), array( array('name' => 'awardImage', 'label' => 'Awards Image', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2020/03/award-4.png'), ), array( array('name' => 'awardImage', 'label' => 'Awards Image', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2020/03/award-5.png'), ), ), ), ), 'settings' => array( array('label' => 'Animation', 'type' => 'divider'), // Divider - Text array( 'name' => 'animation_media', 'label' => 'Media Animation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), array( 'name' => 'animation_content', 'label' => 'Content Animation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), array('label' => 'Title', 'type' => 'divider'), // Divider - Text array( 'name' => 'heading_type', 'label' => 'Heading Type', 'type' => 'select', 'value' => 'h1', 'options' => array( 'h1' => 'h1', 'h2' => 'h2', 'h3' => 'h3', 'h4' => 'h4', 'h5' => 'h5', 'h6' => 'h6', ), ), array( 'name' => 'title_size', 'label' => 'Title Size', 'append' => 'px', 'value' => '36', ), array( 'name' => 'title_font_weight', 'label' => 'Font Weight', 'type' => 'select', 'value' => '700', 'options' => array( '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'title_transformation', 'label' => 'Title Transformation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'title_alignment', 'label' => 'Title Alignment', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'default', 'left' => 'Left', 'right' => 'Right', 'center' => 'Center', ), ), array('label' => 'Content', 'type' => 'divider'), // Divider - Text array( 'name' => 'text_size', 'label' => 'Text Size', 'append' => 'px', 'value' => '16', ), array( 'name' => 'text_font_weight', 'label' => 'Font Weight', 'type' => 'select', 'value' => '300', 'options' => array( '300' => '300', '400' => '400', '300' => '300', '500' => '500', '600' => '600', '700' => '700', ), ), array('label' => 'Award', 'type' => 'divider'), // Divider - Text array( 'name' => 'award_text_size', 'label' => 'Text Size', 'append' => 'px', 'value' => '24', ), array( 'name' => 'award_font_weight', 'label' => 'Font Weight', 'type' => 'select', 'value' => '600', 'options' => array( '400' => '400', '300' => '300', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'award_text_transformation', 'label' => 'Award Text Transformation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), ), 'styles' => array( array( 'name' => 'bg_color', 'label' => 'Background Color', 'type' => 'colorpicker', 'value' => '#f1f1f1', ), array( 'name' => 'right_box_bg', 'label' => 'Right Column Background Color', 'type' => 'colorpicker', 'value' => '#ffffff', ), array( 'name' => 'title_color', 'label' => 'Title Color', 'type' => 'colorpicker', 'value' => '#29cb8b', ), array( 'name' => 'text_color', 'label' => 'Text Color', 'type' => 'colorpicker', 'value' => '#132a46', ), array( 'name' => 'award_color', 'label' => 'Award and Sponser Color', 'type' => 'colorpicker', 'value' => '#132a46', ), array( 'name' => 'award_border_color', 'label' => 'Award Border Color', 'type' => 'colorpicker', 'value' => '#dddddd', ), ), ); ================================================ FILE: blocks/features/feature-9/style.php ================================================ #{ background-color: ; } # h1.uk-heading-primary, # h2.uk-heading-primary, # h3.uk-heading-primary, # h4.uk-heading-primary, # h5.uk-heading-primary, # h6.uk-heading-primary{ font-weight: ; font-size: px; line-height: px; color: ; } # p.feature-9-text{ font-weight: ; font-size: px; line-height: px; color: ; } # .award-section div { width: 100px; height: auto; } # .award-section-wrapper{ background-color: ; padding-left: 8%; } # .image-wrapper { transform: translateX(14%); } # h3.tx-heading-border{ position: relative; ; ; ; color: ; } # h3.tx-heading-border::before { content: ''; width: 20%; height: 2px; background: ; position: absolute; top: 18px; left: 22%; } # h3.tx-heading-border::after { content: ''; width: 20%; height: 2px; background: ; position: absolute; top: 18px; right: 22%; } # .z-99{ z-index: 99; } @media(max-width:960px){ # h1.uk-heading-primary, # h2.uk-heading-primary, # h3.uk-heading-primary, # h4.uk-heading-primary, # h5.uk-heading-primary, # h6.uk-heading-primary{ font-size: px; line-height: px; } # .image-wrapper { transform: translateX(0); } # .image-wrapper img{ width: 100%; } # .uk-section{ padding: 0; } # .tx-remove-margin { margin-top: 0!important; } # h3.tx-heading-border::before { left: 18%; } # h3.tx-heading-border::after { right: 18%; } } @media(max-width:640px){ # h1.uk-heading-primary, # h2.uk-heading-primary, # h3.uk-heading-primary, # h4.uk-heading-primary, # h5.uk-heading-primary, # h6.uk-heading-primary{ font-size: px; line-height: px; } # h3.tx-heading-border::before { left: 14%; } # h3.tx-heading-border::after { right: 14%; } } ================================================ FILE: blocks/features/feature-9/view.php ================================================
class="uk-width-1-3@m z-99">
class="uk-width-expand@m uk-padding-remove-left tx-remove-margin">

class="feature-9-text">

class="uk-text-center tx-heading-border">

class="uk-flex uk-flex-row uk-flex-auto uk-flex-middle uk-flex-center award-section">
================================================ FILE: blocks/footers/footer-1/config.php ================================================ 'footer-1', // Must be unique 'groups' => array('footers'), // Blocks group for filter 'contents' => array( array('name' => 'social', 'label' => 'Social Links', 'value' => array('http://facebook.com/ThemeXpert', 'http://twitter.com/themexpert', 'http://linkedin.com/themexpert', 'http://behance.net/ThemeXpert', 'http://dribbble.com/themexpert') ), array('name' => 'menu', 'type' => 'menu'), array('name' => 'copyright', 'type' => 'textarea', 'value' => 'Copyright © 2019 OnePager, All Rights Reserved'), ), 'styles' => array( array( 'name' => 'bg_color', 'label' => 'Background Color', 'type' => 'colorpicker', 'value' => '#323232', ), array( 'name' => 'text_color', 'label' => 'Color', 'type' => 'colorpicker', 'value' => '#f2f2f2', ), array( 'name' => 'text_hover_color', 'label' => 'Hover Color', 'type' => 'colorpicker', 'value' => '@color.primary', ), array( 'name' => 'item_alignment', 'label' => 'Alignment', 'type' => 'select', 'value' => 'center', 'options' => array( 'left' => 'Left', 'center' => 'Center', 'right' => 'Right', 'justify' => 'Justify', ), ), array( 'name' => 'section_animation', 'label' => 'Animation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), array( 'name' => 'menu_transformation', 'label' => 'Menu Transformation', 'type' => 'select', 'value' => 'inherit', 'options' => array( 'inherit' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), ), ); ================================================ FILE: blocks/footers/footer-1/style.css ================================================ .footer-1{ padding:50px 0; } .footer-1 .nav, .footer-1 p{ margin: -5px 0 0; } ================================================ FILE: blocks/footers/footer-1/style.php ================================================ #{ background : ; color : ; } # a{ color : ; } # .uk-navbar-nav>li>a{ text-transform:; font-size:16px; } # .uk-navbar-nav>li>a:hover, # .social-links > a:hover, # .copyright a{ color : ; } @media(max-width:768px){ # .uk-navbar-item, .uk-navbar-nav>li>a, .uk-navbar-toggle{ min-height:50px !important; padding:0 5px; } # .uk-navbar-nav>li>a{ font-size:14px; } } ================================================ FILE: blocks/footers/footer-1/view.php ================================================
================================================ FILE: blocks/footers/footer-2/footer-2/footer-2/config.php ================================================ 'footer-2', 'groups' => array('footers'), 'contents' => array( array( 'name' => 'section_heading', 'label' => 'Section Heading', 'type' => 'text', 'value' => 'Are you having any problems but can’t consult to anyone?', ), array( 'name' => 'subheading', 'label' => 'Sub Heading', 'type' => 'text', 'value' => 'Talk to us! We promise we can help you! Call Now! (1)223-3344-334', ), array( 'name' => 'footer_media', 'label' => 'Choose Icon', 'type' => 'icon', 'value' => 'fa fa-phone fa-4x', ), array( 'name' => 'icon_url', 'prepend' => 'URL', 'value' => 'tel:+12233344334', ), ), 'settings' => array( array( 'name' => 'section_alignment', 'label' => 'Section Alignment', 'type' => 'select', 'value' => 'center', 'options' => array( 'left' => 'Left', 'center' => 'Center', 'right' => 'Right', 'justify' => 'Justify', ), ), array( 'name' => 'heading_type', 'label' => 'Heading Type', 'type' => 'select', 'value' => 'h1', 'options' => array( 'h1' => 'h1', 'h2' => 'h2', 'h3' => 'h3', 'h4' => 'h4', 'h5' => 'h5', 'h6' => 'h6', ), ), array( 'name' => 'section_title_size', 'label' => 'Section Title Size', 'append' => 'px', 'value' => '42', ), array( 'name' => 'title_font_weight', 'label' => 'Font Weight', 'type' => 'select', 'value' => '700', 'options' => array( '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'title_transformation', 'label' => 'Title Transformation', 'type' => 'select', 'value' => 'inherit', 'options' => array( 'inherit' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'animation_title', 'label' => 'Title Animation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), array('label' => 'Sub Heading', 'type' => 'divider'), // Divider - Text array( 'name' => 'subheading_size', 'label' => 'Sub-Heading Size', 'append' => 'px', 'value' => '28', ), array( 'name' => 'subhead_font_weight', 'label' => 'Sub Heading Font Weight', 'type' => 'select', 'value' => '700', 'options' => array( '300' => '300', '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), ), 'styles' => array( array('label' => 'Section Color', 'type' => 'divider'), // Divider - Text array( 'name' => 'bg_color', 'label' => 'Background Color', 'type' => 'colorpicker', 'value' => '#f1f1f1', ), array( 'name' => 'section_heading_color', 'label' => 'Section Heading Color', 'type' => 'colorpicker', 'value' => '#132a46', ), array( 'name' => 'subheading_color', 'label' => 'Sub Heading Color', 'type' => 'colorpicker', 'value' => '#29cb8b', ), array( 'name' => 'subheading_highlighted', 'label' => 'Sub-Heading Highlight', 'type' => 'colorpicker', 'value' => '#dd5346', ), array( 'name' => 'icon_bg', 'label' => 'icon BG Color', 'type' => 'colorpicker', 'value' => '#ffffff', ), array( 'name' => 'icon_bg_hover', 'label' => 'icon BG Hover Color', 'type' => 'colorpicker', 'value' => '#dd5346', ), array( 'name' => 'icon_color', 'label' => 'icon Color', 'type' => 'colorpicker', 'value' => '#dd5346', ), array( 'name' => 'icon_color_hover', 'label' => 'icon Hover Color', 'type' => 'colorpicker', 'value' => '#ffffff', ), array( 'name' => 'icon_border', 'label' => 'icon border Color', 'type' => 'colorpicker', 'value' => '#29cb8b', ), ), ); ================================================ FILE: blocks/footers/footer-2/footer-2/footer-2/style.php ================================================ # { background-color: } # .content-wrapper { padding-bottom: 100px; } # h1.footer-main-heading, # h2.footer-main-heading, # h3.footer-main-heading, # h4.footer-main-heading, # h5.footer-main-heading, # h6.footer-main-heading{ ; ; font-weight: ; color: ; } # h2.sub-heading{ ; ; font-weight: ; color: ; } # h2.sub-heading span{ color: } # .footer-icon { position: relative; } # .footer-icon::before { content: ""; position: absolute; width: 40%; border: 1px dashed ; left: 0; top: 50%; z-index: 0; } # .footer-icon::after{ content: ""; position: absolute; width: 40%; border: 1px dashed ; right: 0; top: 50%; } # .footer-icon > a { display: inline-block; background: ; color: ; border-radius: 50%; width: 120px; height: 120px; outline: 40px solid ; z-index: 99; transition: all 300ms ease-in-out; } # .footer-icon > a:hover { background: ; color: ; } # .footer-icon > a span { line-height: 1.9em; } @media(max-width:960px){ # h1.footer-main-heading, # h2.footer-main-heading, # h3.footer-main-heading, # h4.footer-main-heading, # h5.footer-main-heading, # h6.footer-main-heading{ ; ; } # h2.sub-heading{ ; ; } # .footer-icon{ margin-bottom: 150px; } # .footer-icon::before { width: 30%; left: 8%; } # .footer-icon::after{ width: 30%; right: 8%; } } @media(max-width:500px){ # .footer-icon > a{ width: 80px; height: 80px; } # .footer-icon > a span { font-size: 40px; line-height: 2.2em; } # .footer-icon::before { width: 28%; left: 5%; } # .footer-icon::after{ width: 28%; right: 5%; } } ================================================ FILE: blocks/footers/footer-2/footer-2/footer-2/view.php ================================================

================================================ FILE: blocks/footers/footer-3/config.php ================================================ 'footer-3', 'tag' => 'update', 'groups' => array('footers'), 'contents' => array( array( 'name' => 'section_footer', 'label' => 'Footer Text', 'type' => 'text', 'value' => '2019 Onepager – All Rights Reserved', ), ), 'settings' => array( array( 'name' => 'footer_font_size', 'label' => 'Footer Font Size', 'append' => 'px', 'value' => '14', ), array( 'name' => 'footer_font_weight', 'label' => 'Footer Font Weight', 'type' => 'select', 'value' => '300', 'options' => array( '300' => '300', '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'footer_alignment', 'label' => 'Footer Alignment', 'type' => 'select', 'value' => 'center', 'options' => array( 'left' => 'Left', 'center' => 'Center', 'right' => 'Right', 'justify' => 'Justify', ), ), ), 'styles' => array( array( 'name' => 'bg_color', 'label' => 'Background Color', 'type' => 'colorpicker', 'value' => '#ffffff', ), array( 'name' => 'footer_color', 'label' => 'Footer Text Color', 'type' => 'colorpicker', 'value' => '#142b45', ), ) ); ================================================ FILE: blocks/footers/footer-3/style.php ================================================ # { background: ; } # p.footer-content{ font-size: ; line-height: ; font-weight: ; color: } ================================================ FILE: blocks/footers/footer-3/view.php ================================================
================================================ FILE: blocks/footers/footer-4/config.php ================================================ 'footer-4', 'groups' => array('footers'), 'tag' => 'update', 'contents' => array( array( 'name' => 'footer_left_text', 'label' => 'Footer Left Text', 'type' => 'link', 'text' => 'The Power of Positive Thinking' ), array( 'name' => 'footer_center_text', 'label' => 'Footer Center Text', 'type' => 'textarea', 'value' => 'Norman Vincent Peale' ), array( 'name' => 'footer_right_label', 'label' => 'Footer Right Title', 'type' => 'text', 'value' => 'Follow Me ' ), array( 'name' => 'social_shares', 'label' => 'Social Share', 'type' => 'repeater', 'fields' => array( array( array('name' => 'social_share', 'type' => 'icon', 'value' => 'fa fa-twitter fa-lg'), array('name' => 'btn_link', 'type' => 'text', 'prepend' => 'url', 'value' => 'https://twitter.com') ), array( array('name' => 'social_share', 'type' => 'icon', 'value' => 'fa fa-linkedin-square fa-lg'), array('name' => 'btn_link', 'type' => 'text', 'prepend' => 'url', 'value' => 'https://linkedin.com') ), array( array('name' => 'social_share', 'type' => 'icon', 'value' => 'fa fa-facebook fa-lg'), array('name' => 'btn_link', 'type' => 'text', 'prepend' => 'url', 'value' => 'https://facebook.com') ), array( array('name' => 'social_share', 'type' => 'icon', 'value' => 'fa fa-skype fa-lg'), array('name' => 'btn_link', 'type' => 'text', 'prepend' => 'url', 'value' => 'https://skype.com') ) ) ) ), 'settings' => array( array( 'name' => 'footer_font_size', 'label' => 'Footer Font Size', 'append' => 'px', 'value' => '16', ), array( 'name' => 'footer_font_weight', 'label' => 'Footer Font Weight', 'type' => 'select', 'value' => '500', 'options' => array( '300' => '300', '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ) ), 'styles' => array( array( 'name' => 'bg_color', 'label' => 'Background Color', 'type' => 'colorpicker', 'value' => '#ffffff', ), array( 'name' => 'text_color', 'label' => 'Text Color', 'type' => 'colorpicker', 'value' => '#142b45', ), array( 'name' => 'link_color_hover', 'label' => 'Link Hover Color', 'type' => 'colorpicker', 'value' => '#4bb93e', ), ) ); ================================================ FILE: blocks/footers/footer-4/style.php ================================================ # { background: } # .tg-list-inline { margin: 0; padding: 0; list-style: none; } # .tg-list-inline li { display: inline-block; padding: 0 10px; margin: 0; } # .tg-list-inline li a { display: inline-block; } # p, # ul.tg-list-inline li span.list-label{ margin: 0; } # .footer-left a, # .footer-center p, # .tg-list-inline li:first-child{ font-size: ; line-height: ; font-weight: ; color: ; text-decoration: none; transition: all 300ms ease-in-out; } # .tg-list-inline li a{ display: inline-block; color: ; transition: all 300ms ease-in-out; } # .footer-left a:hover, # .tg-list-inline li a:hover{ color: ; } @media(max-width: 768px){ # .tg-list-inline li{ padding: 0 6px; } } @media(max-width: 640px){ # .footer-left, # .tg-list-inline { text-align: center; } } ================================================ FILE: blocks/footers/footer-4/view.php ================================================
================================================ FILE: blocks/maps/map-1/config.php ================================================ 'map-1', 'groups' => array('maps'), 'contents' => array( array( 'name' => 'gmap_iframe', 'type' => 'text', 'placeholder' => 'Enter Just Iframe src url', 'value' => 'https://www.google.com/maps/embed?pb=!1m18!1m12!1m3!1d3651.2749790395205!2d90.3645923149682!3d23.77322049382117!2m3!1f0!2f0!3f0!3m2!1i1024!2i768!4f13.1!3m3!1m2!1s0x3755c0afbf7aaaab%3A0x32f99a91ddd34680!2sSEL%20HUQ%20SKYPARK!5e0!3m2!1sen!2sbd!4v1586851025024!5m2!1sen!2sbd'), array( 'name' => 'title', 'label' => 'Heading', 'value' => 'ThemesGrove', ), array( 'name' => 'location', 'label' => 'Location', 'type' => 'textarea', 'value' => 'Level - 12, Suite - 1202,
SEL HUQ SKYPARK,
23/2 Mirpur Rd, Dhaka 1207' ) ), 'settings' => array( array( 'name' => 'animation_contact', 'label' => 'Animation Contact Area', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), array( 'name' => 'contact_position', 'label' => 'Map Text area Position', 'type' => 'select', 'value' => 'bottom', 'options' => array( 'top' => 'Top', 'bottom' => 'Bottom' ) ), array( 'name' => 'text_alignment', 'label' => 'Text Alignment', 'type' => 'select', 'value' => 'center', 'options' => array( 'center' => 'Center', 'left' => 'Left', 'right' => 'Right', ) ), array( 'name' => 'title_size', 'label' => 'Title Size', 'append' => 'px', 'value' => '44', ), array( 'name' => 'title_transformation', 'label' => 'Title Transformation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'contact_size', 'label' => 'Contact Text Size', 'append' => 'px', 'value' => '18', ), ), 'styles' => array( array( 'name' => 'title_text_color', 'label' => 'Title Color', 'type' => 'colorpicker', 'value' => '#ffffff', ), array( 'name' => 'text_color', 'label' => 'Contact Text Color', 'type' => 'colorpicker', 'value' => '#ffffff', ), ) ); ================================================ FILE: blocks/maps/map-1/style.php ================================================ # .contact-heading h2{ font-size: ; line-height: ; color: ; } # .contact-details { padding-left: 50px; } # .contact-details p{ font-size: ; line-height: ; color: ; } # iframe{ pointer-events: auto!important; } @media(max-width:640px){ # .contact-details { padding-left: 0; } } ================================================ FILE: blocks/maps/map-1/view.php ================================================
class="map-contact-wrapper uk-overlay uk-overlay-primary uk-position-">

================================================ FILE: blocks/navbars/navbar-1/config.php ================================================ 'navbar-1', // Must be unique 'groups' => array('navbars'), // Blocks group for filter // Fields - $contents available on view file to access the option 'contents' => array( array('name' => 'logo', 'type' => 'image', 'value' => 'http://s3.amazonaws.com/quantum-assets/logo-dark.png'), array('name' => 'menu', 'type' => 'menu'), array( 'name' => 'link', 'type' => 'link', 'label' => 'Call To Action Link'), ), // Settings 'settings' => array( array( 'name' => 'sticky_nav', 'label' => 'Sticky Nav', 'type' => 'select', 'value' => 1, 'options' => array( 1 => 'Enabled', 0 => 'Disabled', ), ), ), // Styles - $styles available on view file to access the option 'styles' => array( array( 'name' => 'bg_color', 'label' => 'Background Color', 'type' => 'colorpicker', 'value' => '#ffffff', ), array( 'name' => 'link_color', 'label' => 'Link Color', 'type' => 'colorpicker', 'value' => '#777', ), array( 'name' => 'link_hover_color', 'label' => 'Link Hover Color', 'type' => 'colorpicker', 'value' => '#222', ), array( 'name' => 'link_active_color', 'label' => 'Link Active Color', 'type' => 'colorpicker', 'value' => '@color.primary', ), array( 'name' => 'cta_bg', 'label' => 'Button Background', 'type' => 'colorpicker', 'value' => '@color.primary', ), array( 'name' => 'cta_color', 'label' => 'Button Text Color', 'type' => 'colorpicker', 'value' => '#fff', ), ), ); ================================================ FILE: blocks/navbars/navbar-1/style.php ================================================ #{ background-color : ; } # .uk-navbar-nav > li > a{ color : ; } # .uk-navbar-toggle svg{ fill : ; } # .uk-navbar-nav > li:hover > a{ color : ; } # .uk-navbar-nav > li.uk-active > a{ color : ; } # .uk-button{ background : ; color : ; } @media only screen and (max-width: 400px) { # .uk-logo img{ width: 140px; } } ================================================ FILE: blocks/navbars/navbar-1/view.php ================================================
$contents['menu'], 'menu_class' => 'uk-nav uk-nav-default', 'container' => false, 'fallback_cb' => 'WP_Bootstrap_Navwalker::fallback', 'walker' => new WP_Bootstrap_Navwalker(), ) ) ?>
================================================ FILE: blocks/navbars/navbar-2/navbar-2/config.php ================================================ 'navbar-2', // Must be unique 'groups' => array('navbars'), // Blocks group for filter // Fields - $contents available on view file to access the option 'contents' => array( array('name' => 'logo', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2020/03/logo.jpg'), array('name' => 'menu', 'type' => 'menu'), array('name' => 'link', 'type' => 'link', 'label' => 'Phone', 'text' => '(546) 400 769 - 444', 'url' => 'tel:+546400769444'), ), 'settings' => array( array( 'name' => 'menu_font_size', 'label' => 'Menu Font Size', 'append' => 'px', 'value' => '14', ), array( 'name' => 'menu_font_weight', 'label' => 'Font Weight', 'type' => 'select', 'value' => '600', 'options' => array( '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), ), 'styles' => array( array( 'name' => 'bg_color', 'label' => 'Background Color', 'type' => 'colorpicker', 'value' => '#ffffff', ), array( 'name' => 'link_color', 'label' => 'Link Color', 'type' => 'colorpicker', 'value' => '#ffffff', ), array( 'name' => 'link_hover_color', 'label' => 'Link Hover Color', 'type' => 'colorpicker', 'value' => '#29cb8b', ), array( 'name' => 'link_active_color', 'label' => 'Link Active Color', 'type' => 'colorpicker', 'value' => '@color.primary', ), array( 'name' => 'cta_bg', 'label' => 'Button Background', 'type' => 'colorpicker', 'value' => '@color.primary', ), array( 'name' => 'cta_color', 'label' => 'Button Text Color', 'type' => 'colorpicker', 'value' => '#fff', ), ), ); ================================================ FILE: blocks/navbars/navbar-2/navbar-2/style.php ================================================ #{ background-color : ; z-index: 99; } # .uk-navbar-nav > li > a{ color : ; ; font-weight: ; min-height: 50px; padding: 0; margin: 0 15px; position: relative; } # .uk-navbar-nav > li:first-child a{ margin-left: 0; } # .uk-navbar-nav > li:last-child a{ margin-right: 0; } #menu-main-menu li.current-menu-item a{ color: ; } # ul#menu-main-menu li.current-menu-item a::before{ content: ''; position: absolute; width: 100%; height: 1px; background: ; bottom: 0; left: 0; } # ul#menu-main-menu li a::before{ content: ''; position: absolute; width: 0%; height: 1px; background: ;; bottom: 0; left: 0; transition: all 200ms linear; } # ul#menu-main-menu li a:hover::before { content: ''; position: absolute; width: 100%; height: 1px; background: ;; bottom: 0; left: 0; } # .uk-navbar-toggle svg{ fill : ; } # .uk-navbar-nav > li:hover > a{ color : ; } # .uk-navbar-nav > li.uk-active > a{ color : ; } # .uk-button{ background : ; color : ; } # .brand-logo-wrapper { position: absolute; top: 0; left: 0; } # .tx-area-right{ display: flex; flex-direction: column; } # .contact-wrapper { display: block; max-height: 30px; width: 100%; text-align: right; } # ul#menu-main-menu li:last-child a { padding-right: 0; } <<<<<<< HEAD # ul#menu-main-menu li a{ min-height: 50px; } ======= >>>>>>> develop # .contact-wrapper > a.uk-button { color: #dd5346; background: none; font-size: 1.3em; text-decoration: none; padding-right: 0; } @media only screen and (max-width: 400px) { # .uk-logo img{ width: 140px; } } ================================================ FILE: blocks/navbars/navbar-2/navbar-2/view.php ================================================
$contents['menu'], 'menu_class' => 'uk-nav uk-nav-default', 'container' => false, 'fallback_cb' => 'WP_Bootstrap_Navwalker::fallback', 'walker' => new WP_Bootstrap_Navwalker(), ) ) ?>
================================================ FILE: blocks/navbars/navbar-3/config.php ================================================ 'navbar-3', // Must be unique 'tag' => 'new', 'groups' => array('navbars'), // Blocks group for filter // Fields - $contents available on view file to access the option 'contents' => array( array('name' => 'logo', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2020/03/education-logo.png'), array('name' => 'main_menu', 'type' => 'menu'), array('name' => 'right_menu', 'type' => 'menu'), ), 'settings' => array( array( 'name' => 'sticky_nav', 'label' => 'Sticky Nav', 'type' => 'select', 'value' => 1, 'options' => array( 1 => 'Enabled', 0 => 'Disabled', ), ), array( 'name' => 'menu_font_size', 'label' => 'Menu Font Size', 'append' => 'px', 'value' => '15', ), array( 'name' => 'menu_font_weight', 'label' => 'Font Weight', 'type' => 'select', 'value' => '600', 'options' => array( '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), ), 'styles' => array( array( 'name' => 'bg_color', 'label' => 'Background Color', 'type' => 'colorpicker', 'value' => '#fff3f5', ), array( 'name' => 'menu_font_color', 'label' => 'Menu Color', 'type' => 'colorpicker', 'value' => '#142b45', ), array( 'name' => 'menu_font_hover_color', 'label' => 'Menu Hover Color', 'type' => 'colorpicker', 'value' => '#ff8099', ), array( 'name' => 'btn_box_shadow', 'label' => 'Menu Button Shadow', 'type' => 'colorpicker', 'value' => 'rgba(251, 136, 159, 0.35)', ), array( 'name' => 'menu_bottom_border', 'label' => 'Menu Bottom Border', 'type' => 'colorpicker', 'value' => '#dddddd' ) ) ); ================================================ FILE: blocks/navbars/navbar-3/style.php ================================================ #, # .tx-navbar { background: ; } # .tx-navbar{ border-bottom: 1px solid ; } # .center-menu-wrapper li a{ font-size: ; font-weight: ; position: relative; padding: 0; margin: 0 15px; color: ; transition: 400ms ease-in-out; } # .center-menu-wrapper li a:hover, # .center-menu-wrapper li.uk-active a{ color: ; } # .center-menu-wrapper li a::after { content: ''; position: absolute; width: 0%; border-bottom: 1px solid #ff8099; left: 0; bottom: 25px; transition: 400ms ease-in-out; } # .center-menu-wrapper li a:hover::after, # .center-menu-wrapper li.uk-active a::after { width: 100%; } # .right-menu-wrapper a i { font-size: 16px; position: relative; right: 6px; } .right-menu-wrapper ul li a{ font-size: ; font-weight: ; color: ; transition: 400ms ease-in-out; } .right-menu-wrapper ul li a:hover{ color: ; } # ul .button-menu a { border-radius: 8px; background-color: rgb(255, 255, 255); box-shadow: 0px 4px 5px 0px ; display: inline; padding: 14px; position: relative; top: 28px; } # ul .button-menu a:hover{ box-shadow: 0px -1px 5px 0px ; } ================================================ FILE: blocks/navbars/navbar-3/view.php ================================================
$contents['main_menu'], 'menu_class' => 'uk-nav uk-nav-default', 'container' => false, 'fallback_cb' => 'WP_Bootstrap_Navwalker::fallback', 'walker' => new WP_Bootstrap_Navwalker(), ) ) ?>
================================================ FILE: blocks/portfolios/portfolio-1/config.php ================================================ 'portfolio-1', // Must be unique 'groups' => ['portfolios'], // Blocks group for filter // Fields - $contents available on view file to access the option 'contents' => [ ['name' => 'title', 'value' => 'Our Works'], [ 'name' => 'description', 'type' => 'textarea', 'value' => 'A fool thinks himself to be wise, but a wise man knows himself to be a fool.', ], [ 'name' => 'portfolios', 'type' => 'repeater', 'fields' => [ [ ['name' => 'title', 'value' => 'Unity'], ['name' => 'description', 'type' => 'textarea', 'value' => 'Onepage Joomla Template'], ['name' => 'thumb', 'type' => 'image', 'value' => 'http://s3.amazonaws.com/quantum-assets/images/1-thumb.jpg'], ['name' => 'image', 'type' => 'image', 'value' => 'http://s3.amazonaws.com/quantum-assets/images/1.jpg'], ['name' => 'link', 'placeholder' => home_url()], ['name' => 'target', 'label' => 'open in new window', 'type' => 'switch'], ], [ ['name' => 'title', 'value' => 'BizCorp'], ['name' => 'description', 'type' => 'textarea', 'value' => 'Onepage Joomla Template'], ['name' => 'thumb', 'type' => 'image', 'value' => 'http://s3.amazonaws.com/quantum-assets/images/2-thumb.jpg'], ['name' => 'image', 'type' => 'image', 'value' => 'http://s3.amazonaws.com/quantum-assets/images/2.jpg'], ['name' => 'link', 'placeholder' => home_url()], ['name' => 'target', 'label' => 'open in new window', 'type' => 'switch'], ], [ ['name' => 'title', 'value' => 'Eventx'], ['name' => 'description', 'type' => 'textarea', 'value' => 'Event Template for Joomla'], ['name' => 'thumb', 'type' => 'image', 'value' => 'http://s3.amazonaws.com/quantum-assets/images/3-thumb.jpg'], ['name' => 'image', 'type' => 'image', 'value' => 'http://s3.amazonaws.com/quantum-assets/images/3.jpg'], ['name' => 'link', 'placeholder' => home_url()], ['name' => 'target', 'label' => 'open in new window', 'type' => 'switch'], ], ], ], ], // Settings - $settings available on view file to access the option 'settings' => [ ['label' => 'Heading', 'type' => 'divider'], // Divider - Text array( 'name' => 'heading_type', 'label' => 'Heading Type', 'type' => 'select', 'value' => 'h1', 'options' => array( 'h1' => 'h1', 'h2' => 'h2', 'h3' => 'h3', 'h4' => 'h4', 'h5' => 'h5', 'h6' => 'h6', ), ), [ 'name' => 'title_size', 'label' => 'Title Size', 'append' => 'px', 'value' => '44', ], [ 'name' => 'title_transformation', 'label' => 'Title Transformation', 'type' => 'select', 'value' => 'inherit', 'options' => [ 'inherit' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ], ], [ 'name' => 'title_alignment', 'label' => 'Title Alignment', 'type' => 'select', 'value' => 'center', 'options' => [ 'left' => 'Left', 'center' => 'Center', 'right' => 'Right', 'justify' => 'Justify', ], ], [ 'name' => 'desc_size', 'label' => 'Desc Size', 'append' => 'px', 'value' => '18', ], [ 'name' => 'title_animation', 'label' => 'Animation', 'type' => 'select', 'value' => '0', 'options' => [ '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ], ], ['label' => 'Items', 'type' => 'divider'], // Divider - Text [ 'name' => 'overlay_animation', 'label' => 'Overlay Animation', 'type' => 'select', 'value' => 'scale', 'options' => [ 'slide-top' => 'Slide Top', 'slide-bottom' => 'Slide Bottom', 'slide-left' => 'Slide Left', 'slide-right' => 'Slide RIght', 'fade' => 'Fade', 'scale' => 'Scale', 'spin' => 'Spin', ], ], [ 'name' => 'items_columns', 'label' => 'Columns', 'type' => 'select', 'value' => '3', 'options' => [ '2' => '2', '3' => '3', '4' => '4', ], ], [ 'name' => 'lightbox_animation', 'label' => 'LightBox Animation', 'type' => 'select', 'value' => 'scale', 'options' => [ 'fade' => 'Fade', 'scale' => 'Scale', 'slide' => 'Slide', ], ], ], 'styles' => [ [ 'name' => 'bg_color', 'label' => 'Background Color', 'type' => 'colorpicker', 'value' => '#fff', ], ['label' => 'Heading', 'type' => 'divider'], // Divider - Text [ 'name' => 'title_color', 'label' => 'Title Color', 'type' => 'colorpicker', 'value' => '#323232', ], [ 'name' => 'desc_color', 'label' => 'Desc Color', 'type' => 'colorpicker', 'value' => '#323232', ], ['label' => 'Items', 'type' => 'divider'], // Divider - Text [ 'name' => 'overlay_color', 'label' => 'Overlay Color', 'type' => 'colorpicker', 'value' => 'rgba(0, 0, 0, 0.5)', ], [ 'name' => 'icon_color', 'label' => 'Icon Color', 'type' => 'colorpicker', 'value' => '#ffffff', ], [ 'name' => 'icon_bg', 'label' => 'Icon Background', 'type' => 'colorpicker', 'value' => '#000000', ] ], // 'assets' => function( $path ){ // Local file // Onepager::addStyle('portfolio-1', $path . '/style.css'); // } ]; ================================================ FILE: blocks/portfolios/portfolio-1/style.css ================================================ ================================================ FILE: blocks/portfolios/portfolio-1/style.php ================================================ #{ background : ; } # .section-heading .uk-heading-primary{ font-size : px; color : ; } # .section-heading .uk-text-lead{ font-size : px; color : ; } #.portfolio-1 .overlay-background{ background:; } # .uk-text-medium, # .uk-text-small{ color : ; } # .icon{ background : ; color : ; border: 1px solid ; border-radius: 50%; } @media(max-width:768px){ # .section-heading .uk-heading-primary{ font-size : px; } } ================================================ FILE: blocks/portfolios/portfolio-1/view.php ================================================
================================================ FILE: blocks/pricing/pricing-1/config.php ================================================ 'pricing-1', 'name' => 'Pricing 1', 'groups' => array('pricing'), 'contents' => array( array('name' => 'title', 'value' => 'Price'), array('name' => 'description', 'value' => 'Our pricing is awesome', 'type' => 'editor'), array( 'name' => 'pricings', 'type' => 'repeater', 'fields' => array( array( array('name' => 'title', 'value' => 'Silver'), array('name' => 'featured', 'type' => 'switch'), array('name' => 'price', 'value' => '24'), array('name' => 'money', 'value' => '$'), array('name' => 'period', 'value' => 'month'), array('name' => 'features', 'value' => array('Limited space', 'Limited support', '5h support')), array('name' => 'link', 'type' => 'link', 'url' => '#', 'text' => 'sign up'), ), array( array('name' => 'title', 'value' => 'Gold'), array('name' => 'featured', 'type' => 'switch', 'value' => true), array('name' => 'price', 'value' => '40'), array('name' => 'money', 'value' => '$'), array('name' => 'period', 'value' => 'month'), array('name' => 'features', 'value' => array('Limited space', 'Limited support', '12h support')), array('name' => 'link', 'type' => 'link', 'url' => '#', 'text' => 'sign up'), ), array( array('name' => 'title', 'value' => 'Platinum'), array('name' => 'featured', 'type' => 'switch'), array('name' => 'price', 'value' => '60'), array('name' => 'money', 'value' => '$'), array('name' => 'period', 'value' => 'month'), array('name' => 'features', 'value' => array('Unlimited space', 'Unlimited support', '24h support')), array('name' => 'link', 'type' => 'link', 'url' => '#', 'text' => 'sign up'), ), ), ), ), // Settings - $settings available on view file to access the option 'settings' => array( array('label' => 'Heading', 'type' => 'divider'), // Divider - Text array( 'name' => 'heading_type', 'label' => 'Heading Type', 'type' => 'select', 'value' => 'h1', 'options' => array( 'h1' => 'h1', 'h2' => 'h2', 'h3' => 'h3', 'h4' => 'h4', 'h5' => 'h5', 'h6' => 'h6', ), ), array( 'name' => 'title_size', 'label' => 'Title Size', 'append' => 'px', 'value' => '@section_title_size', ), array( 'name' => 'title_transformation', 'label' => 'Title Transformation', 'type' => 'select', 'value' => 'inherit', 'options' => array( 'inherit' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'title_alignment', 'label' => 'Title Alignment', 'type' => 'select', 'value' => 'center', 'options' => array( 'left' => 'Left', 'center' => 'Center', 'right' => 'Right', 'justify' => 'Justify', ), ), array( 'name' => 'desc_size', 'label' => 'Desc Size', 'append' => 'px', 'value' => '18', ), array( 'name' => 'title_animation', 'label' => 'Animation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), array('label' => 'Items', 'type' => 'divider'), // Divider - Text array( 'name' => 'items_columns', 'label' => 'Columns', 'type' => 'select', 'value' => '3', 'options' => array( '2' => '2', '3' => '3', '4' => '4', ), ), ), 'styles' => array( array( 'name' => 'bg_color', 'label' => 'Background Color', 'type' => 'colorpicker', 'value' => '#fff', ), array('label' => 'Heading', 'type' => 'divider'), // Divider - Text array( 'name' => 'title_color', 'label' => 'Title Color', 'type' => 'colorpicker', 'value' => '#323232', ), array( 'name' => 'desc_color', 'label' => 'Desc Color', 'type' => 'colorpicker', 'value' => '#323232', ), array('label' => 'Items', 'type' => 'divider'), // Divider - Text array( 'name' => 'text_color', 'label' => 'Text Color', 'type' => 'colorpicker', 'value' => '#323232', ), array( 'name' => 'feature_text_color', 'label' => 'Featured Text Color', 'type' => 'colorpicker', 'value' => '#fff', ), array( 'name' => 'feature_bg_color', 'label' => 'Featured Bg Color', 'type' => 'colorpicker', 'value' => '@color.primary', ), array( 'name' => 'value_bg_color', 'label' => 'Value Bg Color', 'type' => 'colorpicker', 'value' => '#ddd', ), ), // 'assets' => function( $path ){ // Local file // Onepager::addStyle('pricing-1', $path . '/style.css'); // } ); ================================================ FILE: blocks/pricing/pricing-1/style.css ================================================ ================================================ FILE: blocks/pricing/pricing-1/style.php ================================================ #{ background : ; color:; } # .section-heading .uk-heading-primary{ font-size : px; color : ; } # .section-heading .uk-text-lead{ font-size : px; color : ; } # .price-table .pricing-title{ color:; } # .price-table.featured .value, # .price-table.featured ul li:last-child a{ background-color: ; color: ; } # .price-table ul li a{ color: ; } # .price-table ul li a:hover{ background-color: ; color: ; text-decoration: none; } # .price-table .value{ background-color: ; } # .price-table .value span:first-child { font-size: 32px; line-height: 32px; } # .price-table .value span:nth-child(2) { font-size: 65px; line-height: 65px; margin-bottom: 25px; } # .price-table .value span:last-child { font-size: 16px; } # .price-table.featured { -webkit-box-shadow: 0 4px 5px rgba(0,0,0,0.19); -moz-box-shadow: 0 4px 5px rgba(0,0,0,0.19); box-shadow: 0 4px 5px rgba(0,0,0,0.19); } # .price-table { border: 1px solid #e3e3e3; } # .price-table ul li:last-child{ padding:0; } # .price-table ul li:first-child{ padding-top:20px; } @media(max-width:768px){ # .section-heading .uk-heading-primary{ font-size : px; } } ================================================ FILE: blocks/pricing/pricing-1/view.php ================================================
>
$pricing ) : ?>
>


================================================ FILE: blocks/sliders/slider-1/config.php ================================================ 'slider-1', // Must be unique 'groups' => array('sliders'), // Blocks group for filter // Fields - $contents available on view file to access the option 'contents' => array( array( 'name' => 'sliders', 'type' => 'repeater', 'fields' => array( array( array('name' => 'title', 'value' => 'Onepage Builder for WordPress'), array('name' => 'description', 'type' => 'textarea', 'value' => 'Building onepage website has never been easier before'), array('name' => 'image', 'type' => 'image', 'value' => 'https://image.freepik.com/free-photo/abstract-background-blue-yellow-texture-paper-backdrop_23-2147981611.jpg'), array('name' => 'link', 'type' => 'link', 'text' => 'Download Now', 'url' => 'http://getonepager.com'), ), array( array('name' => 'title', 'value' => 'Revolutionary Website Builder'), array('name' => 'description', 'type' => 'textarea', 'value' => 'Ridiculously easy and built for tomorrows internet in mind'), array('name' => 'image', 'type' => 'image', 'value' => 'https://image.freepik.com/free-vector/abstract-background-with-geometric-style_23-2147823364.jpg'), array('name' => 'link', 'type' => 'link', 'text' => 'Download Now', 'url' => 'http://getonepager.com'), ), ), ), ), 'styles' => array( array( 'name' => 'overlay_color', 'label' => 'Overlay Color', 'type' => 'colorpicker', 'value' => 'rgba(4,4,4,0.54)', ), array( 'name' => 'title_color', 'label' => 'Title Color', 'type' => 'colorpicker', ), array( 'name' => 'desc_color', 'label' => 'Desc Color', 'type' => 'colorpicker', ), array('label' => 'Button', 'type' => 'divider'), array( 'name' => 'button_color', 'label' => 'Button Color', 'type' => 'colorpicker', ), array( 'name' => 'button_bg', 'label' => 'Button Background', 'type' => 'colorpicker', ), // array( // 'name' => 'button_hover_color', // 'label' => 'Button Hover Color', // 'type' => 'colorpicker', // ), ), // Settings - $settings available on view file to access the option 'settings' => array( array( 'name' => 'animation', 'label' => 'Animation', 'type' => 'select', 'value' => 'scale', 'options' => array( 'slide' => 'Slide', 'fade' => 'Fade', 'scale' => 'Scale', 'pull' => 'Pull', 'push' => 'Push', ), ), array( 'name' => 'autoplay', 'label' => 'Autoplay', 'type' => 'switch', 'value' => true, ), array( 'name' => 'slider_height', 'label' => 'Slider Height', 'append' => 'px', ), array( 'name' => 'title_size', 'label' => 'Title Size', 'append' => 'px', 'value' => '@section_title_size', ), array( 'name' => 'title_transformation', 'label' => 'Title Transformation', 'type' => 'select', 'value' => 0, 'options' => array( 0 => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'desc_size', 'label' => 'Desc Size', 'append' => 'px', 'value' => '26', ), ), // 'assets' => function( $path ){ // Onepager::addStyle('slider-1', $path . '/style.css'); // } ); ================================================ FILE: blocks/sliders/slider-1/style.css ================================================ ================================================ FILE: blocks/sliders/slider-1/style.php ================================================ # .uk-heading-primary{ font-size : px; color : ; } # .uk-text-lead{ font-size : px; color : ; } # .uk-button{ background : ; color : ; } # .uk-button:hover{ background : ; color : ; border-color : ; } # .uk-overlay-primary{ background : ; } @media(max-width:768px){ # .uk-heading-primary{ font-size : px; } # .uk-text-lead{ font-size : px; } } ================================================ FILE: blocks/sliders/slider-1/view.php ================================================
    $slide ) : ?>
================================================ FILE: blocks/sliders/slider-2/config.php ================================================ 'slider-2', // Must be unique 'groups' => array('sliders'), // Blocks group for filter // Fields - $contents available on view file to access the option 'contents' => array( array('label' => 'Slider Content', 'type' => 'divider'), array( 'name' => 'sliders', 'type' => 'repeater', 'fields' => array( array( array('name' => 'title', 'value' => 'Onepage Website Builder for WordPress'), array('name' => 'description', 'type' => 'textarea', 'value' => 'Build website quickly and efficiently with simple easy to use page builder'), array('name' => 'image', 'type' => 'image', 'value' => 'http://s3.amazonaws.com/quantum-assets/browser-1.png'), array('name' => 'link', 'type' => 'link'), ), array( array('name' => 'title', 'value' => 'Revolutionary Way of Building OnePage Website'), array('name' => 'description', 'type' => 'textarea', 'value' => 'Ridiculously easy and built for tomorrows internet in mind'), array('name' => 'image', 'type' => 'image', 'value' => 'http://s3.amazonaws.com/quantum-assets/browser-1.png'), array('name' => 'link', 'type' => 'link'), ), ), ), ), // Settings - $settings available on view file to access the option 'settings' => array( array('label' => 'Slider Settings', 'type' => 'divider'), array( 'name' => 'animation', 'label' => 'Animation', 'type' => 'select', 'value' => 'fade', 'options' => array( 'slide' => 'Slide', 'fade' => 'Fade', 'scale' => 'Scale', 'pull' => 'Pull', 'push' => 'Push', ), ), array( 'name' => 'autoplay', 'label' => 'Autoplay', 'type' => 'switch', 'value' => true, ), array( 'name' => 'slider_height', 'label' => 'Slider Height', 'append' => 'px', 'value' => 900, ), array( 'name' => 'media_size', 'label' => 'Image Size', 'append' => 'px', 'value' => '500', ), array( 'name' => 'title_size', 'label' => 'Title Size', 'append' => 'px', 'value' => '@section_title_size', ), array( 'name' => 'title_transformation', 'label' => 'Title Transformation', 'type' => 'select', 'value' => 'inherit', 'options' => array( 'inherit' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array('label' => 'Button Settings', 'type' => 'divider'), array( 'name' => 'button_font_size', 'label' => 'Font Size', 'append' => 'px', 'value' => '16', ), array( 'name' => 'button_transformation', 'label' => 'Text Transformation', 'type' => 'select', 'value' => 'inherit', 'options' => array( 'inherit' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), ), 'styles' => array( array('label' => 'Slider Style', 'type' => 'divider'), array( 'name' => 'slider_bg', 'label' => 'Background Image', 'type' => 'image', 'value' => 'http://s3.amazonaws.com/quantum-assets/bg/bg3.jpg', ), array( 'name' => 'bg_color_2', 'label' => 'Overlay Color', 'type' => 'colorpicker', ), array( 'name' => 'text_color', 'label' => 'Text Color', 'type' => 'colorpicker', 'value' => '#fff', ), array('label' => 'Button Style', 'type' => 'divider'), array( 'name' => 'cta_color', 'label' => 'Color', 'type' => 'colorpicker', 'value' => '#fff', ), array( 'name' => 'cta_bg', 'label' => 'Background', 'type' => 'colorpicker', 'value' => '@color.primary', ), ), ); ================================================ FILE: blocks/sliders/slider-2/style.css ================================================ ================================================ FILE: blocks/sliders/slider-2/style.php ================================================ #{ background-image: url(); background-repeat: no-repeat; background-size : cover; } # .uk-overlay-primary{ background: ; } # .uk-heading-primary{ font-size : px; color : ; } # .uk-text-lead{ font-size : px; color : ; } # .uk-button{ font-size : px; background : ; color : ; text-transform: } # .uk-button:hover{ background : ; color : ; } # .uk-light .uk-slidenav{ color : ; } @media(max-width:768px){ # .uk-heading-primary{ font-size : px; } # .uk-text-lead{ font-size : px; } } ================================================ FILE: blocks/sliders/slider-2/view.php ================================================
    $slide ) : ?>
  • <?php echo $slide['title']; ?>
================================================ FILE: blocks/sliders/slider-3/config.php ================================================ 'slider-3', // Must be unique 'groups' => array('sliders'), // Blocks group for filter 'tag' => 'new', // Fields - $contents available on view file to access the option 'contents' => array( array('label' => 'Slider Content', 'type' => 'divider'), array( 'name' => 'section_title', 'label' => 'Section Title', 'value' => 'Success Stories' ), array( 'name' => 'section_desc', 'label' => 'Section Description', 'type' => 'text-area', 'value' => 'Proin ac lobortis arcu, a vestibulum augue. Vivamus ipsum neque, facilisis vel
mollis vitae, mollis nec ante. Quisque aliquam dictum condim.' ), array( 'name' => 'sliders', 'type' => 'repeater', 'fields' => array( array( array('name' => 'description', 'type' => 'textarea', 'value' => '"Wow! I have the exact same personality, the only thing that has changed is my mindset and a few behaviors.I gained so much confidence in my ability to connect and deepen my relationships with people. It’s amazing how much easier it has been to meet new people and create instant connections"'), array('name' => 'name', 'label' => 'Name', 'value' => 'Jack Stevens'), array('name' => 'designation', 'label' => 'Designation', 'value' => 'Students'), array('name' => 'slide_image', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2019/03/img1.jpg'), ), array( array('name' => 'description', 'type' => 'textarea', 'value' => '"Wow! I have the exact same personality, the only thing that has changed is my mindset and a few behaviors.I gained so much confidence in my ability to connect and deepen my relationships with people. It’s amazing how much easier it has been to meet new people and create instant connections"'), array('name' => 'name', 'label' => 'Name', 'value' => 'Jack Stevens'), array('name' => 'designation', 'label' => 'Designation', 'value' => 'Students'), array('name' => 'slide_image', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2019/03/img2.jpg'), ), array( array('name' => 'description', 'type' => 'textarea', 'value' => '"Wow! I have the exact same personality, the only thing that has changed is my mindset and a few behaviors.I gained so much confidence in my ability to connect and deepen my relationships with people. It’s amazing how much easier it has been to meet new people and create instant connections"'), array('name' => 'name', 'label' => 'Name', 'value' => 'Jack Stevens'), array('name' => 'designation', 'label' => 'Designation', 'value' => 'Students'), array('name' => 'slide_image', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2019/03/client.png'), ), array( array('name' => 'description', 'type' => 'textarea', 'value' => '"Wow! I have the exact same personality, the only thing that has changed is my mindset and a few behaviors.I gained so much confidence in my ability to connect and deepen my relationships with people. It’s amazing how much easier it has been to meet new people and create instant connections"'), array('name' => 'name', 'label' => 'Name', 'value' => 'Jack Stevens'), array('name' => 'designation', 'label' => 'Designation', 'value' => 'Students'), array('name' => 'slide_image', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2019/03/img2.jpg'), ), array( array('name' => 'description', 'type' => 'textarea', 'value' => '"Wow! I have the exact same personality, the only thing that has changed is my mindset and a few behaviors.I gained so much confidence in my ability to connect and deepen my relationships with people. It’s amazing how much easier it has been to meet new people and create instant connections"'), array('name' => 'name', 'label' => 'Name', 'value' => 'Jack Stevens'), array('name' => 'designation', 'label' => 'Designation', 'value' => 'Students'), array('name' => 'slide_image', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2019/03/img1.jpg'), ), array( array('name' => 'description', 'type' => 'textarea', 'value' => '"Wow! I have the exact same personality, the only thing that has changed is my mindset and a few behaviors.I gained so much confidence in my ability to connect and deepen my relationships with people. It’s amazing how much easier it has been to meet new people and create instant connections"'), array('name' => 'name', 'label' => 'Name', 'value' => 'Jack Stevens'), array('name' => 'designation', 'label' => 'Designation', 'value' => 'Students'), array('name' => 'slide_image', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2019/03/img2.jpg'), ), ), ), ), // Settings - $settings available on view file to access the option 'settings' => array( array('label' => 'Section Settings', 'type' => 'divider'), array( 'name' => 'heading_type', 'label' => 'Heading Type', 'type' => 'select', 'value' => 'h1', 'options' => array( 'h1' => 'h1', 'h2' => 'h2', 'h3' => 'h3', 'h4' => 'h4', 'h5' => 'h5', 'h6' => 'h6', ), ), array( 'name' => 'title_size', 'label' => 'Title Size', 'append' => 'px', 'value' => '52', ), array( 'name' => 'title_font_weight', 'label' => 'Font Weight', 'type' => 'select', 'value' => '600', 'options' => array( '300' => '300', '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'title_transformation', 'label' => 'Title Transformation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'section_desc_size', 'label' => 'Description Font Size', 'append' => 'px', 'value' => '20', ), array( 'name' => 'section_desc_font_weight', 'label' => 'Description Font Weight', 'type' => 'select', 'value' => '400', 'options' => array( '300' => '300', '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array('label' => 'Slider Content', 'type' => 'divider'), array( 'name' => 'slide_title_font', 'label' => 'Slide Title Font Size', 'append' => 'px', 'value' => '26', ), array( 'name' => 'slide_title_font_weight', 'label' => 'Slide Title Font Weight', 'type' => 'select', 'value' => '600', 'options' => array( '300' => '300', '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'slide_desc_font', 'label' => 'Slide Desc Font Size', 'append' => 'px', 'value' => '20', ), array( 'name' => 'slide_desc_font_weight', 'label' => 'Slide Desc Font Weight', 'type' => 'select', 'value' => '400', 'options' => array( '300' => '300', '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'slide_designation_font', 'label' => 'Slide Designation Font Size', 'append' => 'px', 'value' => '14', ), array( 'name' => 'slide_designation_font_weight', 'label' => 'Slide Designation Font Weight', 'type' => 'select', 'value' => '300', 'options' => array( '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array('label' => 'Slider Settings', 'type' => 'divider'), array( 'name' => 'autoplay', 'label' => 'Autoplay', 'type' => 'switch', 'value' => true, ), array( 'name' => 'infinite_sliding', 'label' => 'Infinite Sliding', 'type' => 'switch', 'value' => true, ), array( 'name' => 'autoplay_interval', 'label' => 'Slide Time', 'append' => 'ms', 'value' => 3000, ), array( 'name' => 'slide_animation', 'label' => 'Slide Animate', 'type' => 'select', 'value' => 'ease-in-out', 'options' => array( 'ease-in-out' => 'ease-in-out', 'ease-in' => 'ease-in', 'ease-out' => 'ease-out', 'linear' => 'linear', ), ), array( 'name' => 'media_size', 'label' => 'Image Size', 'append' => 'px', 'value' => '500', ), array( 'name' => 'title_size', 'label' => 'Title Size', 'append' => 'px', 'value' => '@section_title_size', ), array( 'name' => 'title_transformation', 'label' => 'Title Transformation', 'type' => 'select', 'value' => 'inherit', 'options' => array( 'inherit' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array('label' => 'Button Settings', 'type' => 'divider'), array( 'name' => 'button_font_size', 'label' => 'Font Size', 'append' => 'px', 'value' => '16', ), array( 'name' => 'button_transformation', 'label' => 'Text Transformation', 'type' => 'select', 'value' => 'inherit', 'options' => array( 'inherit' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), ), 'styles' => array( array( 'name' => 'bg_color', 'label' => 'Section Background', 'type' => 'colorpicker', 'value' => '#ff5678', ), array( 'name' => 'section_heading_color', 'label' => 'Section Heading Color', 'type' => 'colorpicker', 'value' => '#ffffff', ), array( 'name' => 'section_desc_color', 'label' => 'Section Desc Color', 'type' => 'colorpicker', 'value' => '#ffffff', ), array( 'name' => 'slide_title_color', 'label' => 'Slider Title', 'type' => 'colorpicker', 'value' => '#142b45', ), array( 'name' => 'slide_desc_color', 'label' => 'Slider Description', 'type' => 'colorpicker', 'value' => '#142b45', ), array( 'name' => 'slide_designation_color', 'label' => 'Slider Designation', 'type' => 'colorpicker', 'value' => '#142b45', ), array( 'name' => 'slide_nav_bg', 'label' => 'Slider Navigation', 'type' => 'colorpicker', 'value' => '#ffffff', ), array( 'name' => 'slide_img_box_shadow', 'label' => 'Slider Box-Shadow', 'type' => 'colorpicker', 'value' => '#dddddd', ), array( 'name' => 'slide_nav_box_shadow', 'label' => 'Slider Navigation Box-Shadow', 'type' => 'colorpicker', 'value' => '#dddddd', ), ) ); ================================================ FILE: blocks/sliders/slider-3/style.php ================================================ # { background: ; } # .uk-heading-primary{ font-size: ; line-height: ; font-weight: ; color: ; } # .title-desc{ font-size: ; line-height: ; font-weight: ; color: ; } # .single-item{ border-radius: 10px; background-color: rgb(255, 255, 255); box-shadow: 0px 4px 5px 0px rgba(204, 69, 96, 0.004); } # .single-slider-wrapper p{ font-size: ; line-height: ; font-weight: ; color: ; } # .single-slider-wrapper h4{ font-size: ; line-height: ; font-weight: ; color: ; } # .single-slider-wrapper span.designation{ font-size: ; line-height: ; font-weight: ; color: ; } # .single-slide-img{ transition: all 400ms ease-in-out; } # .single-item:hover .single-slide-img { box-shadow: 0 0 6px 8px ; } # .right-navigation { right: -7%; background: ; height: 35px; width: 25px; border-radius: 50%; line-height: 34px; text-align: center; transition: all 300ms ease-in-out; } # .left-navigation { left: -7%; background: ; height: 35px; width: 25px; border-radius: 50%; line-height: 34px; text-align: center; transition: all 300ms ease-in-out; } # .right-navigation:hover, # .left-navigation:hover { box-shadow: 0 0 8px 5px ; } # .left-navigation svg, # .right-navigation svg { height: 15px; color: black; position: relative; bottom: 1px; } @media(max-width: 600px){ # .uk-heading-primary{ font-size: ; line-height: ; } # p.title-desc br{ display: none; } # .title-desc{ font-size: ; line-height: ; } # .single-slider-wrapper p{ font-size: ; line-height: ; } } ================================================ FILE: blocks/sliders/slider-3/view.php ================================================

================================================ FILE: blocks/sliders/slider-4/config.php ================================================ 'slider-4', // Must be unique 'tag' => 'new', 'groups' => array('sliders'), // Blocks group for filter // Fields - $contents available on view file to access the option 'contents' => array( array( 'name' => 'sliders', 'type' => 'repeater', 'fields' => array( array( array('name' => 'slide_image', 'label' => 'Single Slide', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2020/03/slide-item-1.jpg') ), array( array('name' => 'slide_image', 'label' => 'Single Slide', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2020/03/slide-item-2.jpg') ), array( array('name' => 'slide_image', 'label' => 'Single Slide', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2020/03/slide-item-3.jpg') ), array( array('name' => 'slide_image', 'label' => 'Single Slide', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2020/03/slide-item-4.jpg') ), array( array('name' => 'slide_image', 'label' => 'Single Slide', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2020/03/slide-item-5.jpg') ), array( array('name' => 'slide_image', 'label' => 'Single Slide', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2020/03/slide-item-1.jpg') ), array( array('name' => 'slide_image', 'label' => 'Single Slide', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2020/03/slide-item-2.jpg') ) ) ), array('name' => 'social_button', 'label' => 'Button', 'text' => 'FOLLOW US', 'type' => 'link') ), 'settings' => array( array( 'name' => 'btn_font', 'label' => 'Button Font Size', 'append' => 'px', 'value' => '14', ), array( 'name' => 'btn_font_weight', 'label' => 'Button Font Weight', 'type' => 'select', 'value' => '600', 'options' => array( '300' => '300', '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'btn_border_radius', 'label' => 'Button Border Radius', 'append' => 'px', 'value' => '10', ), array('label' => 'Slider Settings', 'type' => 'divider'), array( 'name' => 'autoplay', 'label' => 'Autoplay', 'type' => 'switch', 'value' => true, ), array( 'name' => 'infinite_sliding', 'label' => 'Infinite Sliding', 'type' => 'switch', 'value' => true, ), array( 'name' => 'autoplay_interval', 'label' => 'Slide Time', 'append' => 'ms', 'value' => 3000, ), array( 'name' => 'slide_animation', 'label' => 'Slide Animate', 'type' => 'select', 'value' => 'ease-in-out', 'options' => array( 'ease-in-out' => 'ease-in-out', 'ease-in' => 'ease-in', 'ease-out' => 'ease-out', 'linear' => 'linear', ), ), ), 'styles' => array( array( 'name' => 'bg_color', 'label' => 'Section Background', 'type' => 'colorpicker', 'value' => '#ff5678', ), array( 'name' => 'item_overlay_BG', 'label' => 'Image Overlay', 'type' => 'colorpicker', 'value' => 'rgba(255, 255, 255, 0.6)', ), array( 'name' => 'btn_bg_color', 'label' => 'Button Background', 'type' => 'colorpicker', 'value' => 'rgb(255, 255, 255)', ), array( 'name' => 'btn_text_color', 'label' => 'Button Text', 'type' => 'colorpicker', 'value' => '#142b45', ), array( 'name' => 'btn_box_shadow', 'label' => 'Button Box Shadow', 'type' => 'colorpicker', 'value' => 'rgba(251, 136, 159, 0.35)', ), ) ); ================================================ FILE: blocks/sliders/slider-4/style.php ================================================ # { background: ; } # ul.uk-slider-items li .item-wrapper{ transition: all 300ms ease-in-out; } # ul.uk-slider-items li:hover .item-wrapper{ transform: scale(1.2); } # .item-wrapper img{ min-height: 315px; object-fit: cover; } # ul.uk-slider-items li .tx-overlay{ position: absolute; top: -150%; left: 0; width: 100%; height: 100%; background: ; transition: all 400ms ease-in-out; } # ul.uk-slider-items li:hover .tx-overlay { top: 0; } # a.uk-button.button-fw { position: absolute; font-size: ; font-weight: ; top: 150%; left: 50%; transform: translate(-50%, -50%); border-radius: ; background-color: ; color: ; box-shadow: 0px 4px 5px 0px ; transition: all 700ms ease-in-out; } # ul.uk-slider-items li:hover a.uk-button.button-fw { top: 50%; } # a.uk-button.button-fw:hover{ box-shadow: 0px -1px 5px 0px ; } @media(max-width: 960px){ .button-fw { font-size: 12px; padding: 2px 12px; } } @media(max-width: 600px){ # ul.uk-slider-items li img{ width: 100%; } } ================================================ FILE: blocks/sliders/slider-4/view.php ================================================
  • <?php echo $single_slide['slide_image']?>
================================================ FILE: blocks/sliders/slider-5/config.php ================================================ 'slider-5', 'tag' => 'new', 'groups' => array('sliders'), 'contents' => array( array( 'name' => 'section_title', 'label' => 'Section Title', 'value' => 'HOW THIS BOOK IS STRUCTURED' ), array( 'name' => 'section_desc', 'label' => 'Section Description', 'value' => '4 Rules And 36 Screenshot Stories' ), array( 'name' => 'sliders', 'label' => 'Sliders', 'type' => 'repeater', 'fields' => array( array( array( 'name' => 'slide_num', 'label' => 'Slider Label', 'value' => 'Rules 01' ), array( 'name' => 'slide_title', 'label' => 'Slider Title', 'value' => 'Don\'t Focus On One Thing' ), array( 'name' => 'slide_desc', 'label' => 'Slider Description', 'type' => 'textarea', 'value' => 'The precursor to The Secret, The Power of Positive Thinking has helped millions of men and women to achieve fulfillment in their lives. In this phenomenal bestseller, Dr. Peale demonstrates the power of faith in action. With the practical techniques outlined in this book, you can energize your life -- and give yourself the initiative needed to carry out your ambitions and hopes. Dr. Peale demonstrates the power of faith in action. With the practical techniques outlined in this book, you can energize your life -- and give yourself the initiative needed to carry out your ambitions and hopes.' ), array( 'name' => 'slide_image', 'label' => 'Slider Image', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2020/03/slider-book.png' ) ), array( array( 'name' => 'slide_num', 'label' => 'Slider Label', 'value' => 'Rules 02' ), array( 'name' => 'slide_title', 'label' => 'Slider Title', 'value' => 'Don\'t Focus On One Thing' ), array( 'name' => 'slide_desc', 'label' => 'Slider Description', 'type' => 'textarea', 'value' => 'The precursor to The Secret, The Power of Positive Thinking has helped millions of men and women to achieve fulfillment in their lives. In this phenomenal bestseller, Dr. Peale demonstrates the power of faith in action. With the practical techniques outlined in this book, you can energize your life -- and give yourself the initiative needed to carry out your ambitions and hopes. Dr. Peale demonstrates the power of faith in action. With the practical techniques outlined in this book, you can energize your life -- and give yourself the initiative needed to carry out your ambitions and hopes.' ), array( 'name' => 'slide_image', 'label' => 'Slider Image', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2020/03/slider-book.png' ) ), array( array( 'name' => 'slide_num', 'label' => 'Slider Label', 'value' => 'Rules 03' ), array( 'name' => 'slide_title', 'label' => 'Slider Title', 'value' => 'Don\'t Focus On One Thing' ), array( 'name' => 'slide_desc', 'label' => 'Slider Description', 'type' => 'textarea', 'value' => 'The precursor to The Secret, The Power of Positive Thinking has helped millions of men and women to achieve fulfillment in their lives. In this phenomenal bestseller, Dr. Peale demonstrates the power of faith in action. With the practical techniques outlined in this book, you can energize your life -- and give yourself the initiative needed to carry out your ambitions and hopes. Dr. Peale demonstrates the power of faith in action. With the practical techniques outlined in this book, you can energize your life -- and give yourself the initiative needed to carry out your ambitions and hopes.' ), array( 'name' => 'slide_image', 'label' => 'Slider Image', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2020/03/slider-book.png' ) ), ) ) ), 'settings' => array( array( 'name' => 'heading_type', 'label' => 'Heading Type', 'type' => 'select', 'value' => 'h1', 'options' => array( 'h1' => 'h1', 'h2' => 'h2', 'h3' => 'h3', 'h4' => 'h4', 'h5' => 'h5', 'h6' => 'h6', ), ), array( 'name' => 'section_title_size', 'label' => 'Title Font Size', 'append' => 'px', 'value' => '52', ), array( 'name' => 'section_title_font_weight', 'label' => 'Title Font Weight', 'type' => 'select', 'value' => '700', 'options' => array( '300' => '300', '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'title_transformation', 'label' => 'Title Transformation', 'type' => 'select', 'value' => 'uppercase', 'options' => array( '0' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'section_desc_font_size', 'label' => 'Description Font Size', 'append' => 'px', 'value' => '18', ), array( 'name' => 'section_desc_font_weight', 'label' => 'Description Font Weight', 'type' => 'select', 'value' => '400', 'options' => array( '300' => '300', '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array('label' => 'Slider Settings', 'type' => 'divider'), array( 'name' => 'animation', 'label' => 'Animation', 'type' => 'select', 'value' => 'slide', 'options' => array( 'slide' => 'Slide', 'fade' => 'Fade', 'scale' => 'Scale', ), ), array( 'name' => 'autoplay', 'label' => 'Autoplay', 'type' => 'switch', 'value' => true, ), array( 'name' => 'min_height', 'label' => 'Minimum Height', 'type' => 'text', 'value' => '530', 'append' => 'px' ), array('label' => 'Slider Typography', 'type' => 'divider'), // Divider - Text array( 'name' => 'slider_number_font_size', 'label' => 'Label Font Size', 'append' => 'px', 'value' => '52', ), array( 'name' => 'slider_num_font_weight', 'label' => 'Label Font Weight', 'type' => 'select', 'value' => '600', 'options' => array( '300' => '300', '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'slider_title_font_size', 'label' => 'Slider Title Font Size', 'append' => 'px', 'value' => '26', ), array( 'name' => 'slider_title_font_weight', 'label' => 'Slider Title Font Weight', 'type' => 'select', 'value' => '600', 'options' => array( '300' => '300', '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), array( 'name' => 'slider_desc_font_size', 'label' => 'Slider Description Font Size', 'append' => 'px', 'value' => '18', ), array( 'name' => 'slider_desc_font_weight', 'label' => 'Slider Description Font Weight', 'type' => 'select', 'value' => '400', 'options' => array( '300' => '300', '400' => '400', '500' => '500', '600' => '600', '700' => '700', ), ), ), 'styles' => array( array( 'name' => 'bg_image', 'label' => 'Background Image', 'type' => 'image', 'value' => 'https://demo.wponepager.com/wp-content/uploads/2020/03/slider-background.png', ), array( 'name' => 'section_bg', 'label' => 'Section Background Color', 'type' => 'colorpicker', 'value' => '#ffffff', ), array( 'name' => 'section_title_color', 'label' => 'Title Color', 'type' => 'colorpicker', 'value' => '#142b45', ), array( 'name' => 'section_desc_color', 'label' => 'Description Color', 'type' => 'colorpicker', 'value' => '#142b45', ), array( 'name' => 'slider_label_color', 'label' => 'Slider Label Color', 'type' => 'colorpicker', 'value' => '#142b45', ), array( 'name' => 'slider_title_color', 'label' => 'Slider Title Color', 'type' => 'colorpicker', 'value' => '#142b45', ), array( 'name' => 'slider_desc_color', 'label' => 'Slider Description Color', 'type' => 'colorpicker', 'value' => '#142b45', ), array( 'name' => 'slider_primary_bg_color', 'label' => 'Slider Primary Color', 'type' => 'colorpicker', 'value' => '#4bb93e', ), ) ); ================================================ FILE: blocks/sliders/slider-5/style.php ================================================ #{ background: ; background-position: top center; background-repeat: no-repeat; } # .title-wrapper h1.uk-heading-primary{ font-size: ; line-height: ; font-weight: ; color: ; } # .title-wrapper p{ font-size: ; line-height: ; font-weight: ; color: ; } # .item-wrapper { border: 4px solid ; } # .slide-label { position: absolute; top: -; left: 0; width: ;; text-align: center; } # .slide-label h2 { margin-bottom: 0; line-height: 1.4em; background: ; font-size: ; line-height: ; font-weight: ; color: ; } # .item-wrapper h3{ font-size: ; line-height: ; font-weight: ; color: ; } # .item-wrapper p{ font-size: ; line-height: ; font-weight: ; color: ; } # ul.uk-slideshow-nav.uk-dotnav li a { background: ; opacity: 0.4; } # ul.uk-slideshow-nav.uk-dotnav li.uk-active a { border: 1px solid ; background: ; opacity: 1; } # .uk-slideshow-items { min-height: !important; } @media(max-width: 768px){ # .title-wrapper h1.uk-heading-primary{ font-size: ; line-height: ; } # .slide-label h2 { font-size: ; line-height: ; } # .slide-label{ top: -38px; } # .uk-slideshow-items { min-height: !important; } # .image-wrap{ justify-content: flex-end; } } @media(max-width: 640px){ # .slide-label { position: absolute; top: -; left: 0; width: ;; text-align: center; } # .title-wrapper h1.uk-heading-primary{ font-size: ; line-height: ; } # .slide-label h2 { font-size: ; line-height: ; } # .uk-slideshow-items { } # .image-wrap{ justify-content: center; } # .item-wrapper::before { position: absolute; content: ''; width: 0; height: 0; border-top: 50px solid #4bb93e; border-left: 35px solid transparent; border-right: 35px solid transparent; top: 100%; right: 42%; } } ================================================ FILE: blocks/sliders/slider-5/view.php ================================================

    <?php echo $single_slide['slide_title'];?>
    ================================================ FILE: blocks/teams/team-1/config.php ================================================ 'team-1', // Must be unique 'groups' => array('teams'), // Blocks group for filter // Fields - $contents available on view file to access the option 'contents' => array( array('name' => 'title', 'value' => 'Meet The Team'), array( 'name' => 'description', 'type' => 'textarea', 'value' => 'A fool thinks himself to be wise, but a wise man knows himself to be a fool.', ), array( 'name' => 'items', 'type' => 'repeater', 'fields' => array( array( array('name' => 'title', 'label' => 'Name', 'value' => 'Steve Jobs'), array('name' => 'designation', 'value' => 'CEO, Apple Inc'), array('name' => 'image', 'type' => 'image', 'value' => 'https://images.unsplash.com/photo-1500048993953-d23a436266cf?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=649&q=80'), array('name' => 'social', 'label' => 'Social Profiles', 'value' => array('http://facebook.com/ThemeXpert', 'http://twitter.com/themexpert', 'http://linkedin.com/themexpert')), array('name' => 'link', 'placeholder' => home_url()), array('name' => 'target', 'label' => 'open in new window', 'type' => 'switch'), ), array( array('name' => 'title', 'label' => 'Name', 'value' => 'Nikola Tesla'), array('name' => 'designation', 'value' => 'Scientist'), array('name' => 'image', 'type' => 'image', 'value' => 'https://images.unsplash.com/photo-1519838255388-73be30bda0e5?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=650&q=80'), array('name' => 'social', 'label' => 'Social Profiles', 'value' => array('http://behance.net/ThemeXpert', 'http://dribbble.com/themexpert', 'http://twitter.com/themexpert.com')), array('name' => 'link', 'placeholder' => home_url()), array('name' => 'target', 'label' => 'open in new window', 'type' => 'switch'), ), array( array('name' => 'title', 'label' => 'Name', 'value' => 'Elon Musk'), array('name' => 'designation', 'value' => 'CEO, Tesla Motors'), array('name' => 'image', 'type' => 'image', 'value' => 'https://images.unsplash.com/photo-1504593811423-6dd665756598?ixlib=rb-1.2.1&ixid=eyJhcHBfaWQiOjEyMDd9&auto=format&fit=crop&w=650&q=80'), array('name' => 'social', 'label' => 'Social Profiles', 'value' => array('http://github.com/ThemeXpert', 'http://codepen.io/themexpert')), array('name' => 'link', 'placeholder' => home_url()), array('name' => 'target', 'label' => 'open in new window', 'type' => 'switch'), ), ), ), ), // Settings - $settings available on view file to access the option 'settings' => array( array('label' => 'Title', 'type' => 'divider'), // Divider - Text array( 'name' => 'heading_type', 'label' => 'Heading Type', 'type' => 'select', 'value' => 'h1', 'options' => array( 'h1' => 'h1', 'h2' => 'h2', 'h3' => 'h3', 'h4' => 'h4', 'h5' => 'h5', 'h6' => 'h6', ), ), array( 'name' => 'title_size', 'label' => 'Title Size', 'append' => 'px', 'value' => '44', ), array( 'name' => 'title_transformation', 'label' => 'Title Transformation', 'type' => 'select', 'value' => 'inherit', 'options' => array( 'inherit' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'title_alignment', 'label' => 'Title Alignment', 'type' => 'select', 'value' => 'center', 'options' => array( 'left' => 'Left', 'center' => 'Center', 'right' => 'Right', 'justify' => 'Justify', ), ), array( 'name' => 'desc_size', 'label' => 'Desc Size', 'append' => 'px', 'value' => '18', ), array( 'name' => 'title_animation', 'label' => 'Animation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), // array( // 'name' => 'overlay_animation', // 'label' => 'Overlay Animation', // 'type' => 'select', // 'value' => 'scale', // 'options' => array( // 'slide-top' => 'Slide Top', // 'slide-bottom' => 'Slide Bottom', // 'slide-left' => 'Slide Left', // 'slide-right' => 'Slide Right', // 'fade' => 'Fade', // 'scale' => 'Scale', // 'spin' => 'Spin', // ) // ), array('label' => 'Items', 'type' => 'divider'), // Divider - Text array( 'name' => 'items_columns', 'label' => 'Columns', 'type' => 'select', 'value' => '3', 'options' => array( '2' => '2', '3' => '3', '4' => '4', ), ), array( 'name' => 'item_name_size', 'label' => 'Name Size', 'append' => 'px', 'value' => '24', ), array( 'name' => 'item_designation_size', 'label' => 'Designation Size', 'append' => 'px', 'value' => '14', ), array( 'name' => 'item_icon_size', 'label' => 'Icon Size', 'append' => 'px', 'value' => '14', ), array( 'name' => 'item_animation', 'label' => 'Animation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top Small', 'slide-bottom-small' => 'Slide Bottom Small', 'slide-left-small' => 'Slide Left Small', 'slide-right-small' => 'Slide Right Small', 'slide-top-medium' => 'Slide Top Medium', 'slide-bottom-medium' => 'Slide Bottom Medium', 'slide-left-medium' => 'Slide Left Medium', 'slide-right-medium' => 'Slide Right Medium', 'slide-top' => 'Slide Top 100%', 'slide-bottom' => 'Slide Bottom 100%', 'slide-left' => 'Slide Left 100%', 'slide-right' => 'Slide Right 100%', ), ), ), 'styles' => array( array( 'name' => 'bg_color', 'label' => 'Background Color', 'type' => 'colorpicker', 'value' => '#fff', ), array( 'name' => 'title_color', 'label' => 'Title Color', 'type' => 'colorpicker', 'value' => '#323232', ), array( 'name' => 'desc_color', 'label' => 'Desc Color', 'type' => 'colorpicker', 'value' => '#323232', ), array('label' => 'Items', 'type' => 'divider'), // Divider - Text array( 'name' => 'item_overlay_color', 'label' => 'Overlay Color', 'type' => 'colorpicker', 'value' => 'rgba(0, 0, 0, 0.5)', ), array( 'name' => 'item_name_color', 'label' => 'Name Color', 'type' => 'colorpicker', 'value' => '#fff', ), array( 'name' => 'item_designation_color', 'label' => 'Designation Color', 'type' => 'colorpicker', 'value' => '#fff', ), array( 'name' => 'item_icon_color', 'label' => 'Icon Color', 'type' => 'colorpicker', 'value' => '#fff', ), array( 'name' => 'item_icon_hover_color', 'label' => 'Icon Hover Color', 'type' => 'colorpicker', 'value' => '#006FF0', ), ), // 'assets' => function( $path ){ // Onepager::addStyle('team-1', $path . '/style.css'); // } ); ================================================ FILE: blocks/teams/team-1/style.css ================================================ ================================================ FILE: blocks/teams/team-1/style.php ================================================ #{ background : ; } # .section-heading .uk-heading-primary{ font-size : px; color : ; } # .section-heading .uk-text-lead{ font-size:px; color: ; } # .uk-card .uk-overlay-default{ background:; } # .uk-card .uk-visible-toggle .uk-card-title, # .uk-card .uk-visible-toggle .uk-card-title a{ font-size : px; color : ; } # .uk-card .uk-visible-toggle .uk-text-medium{ font-size : px; color : ; } # .uk-card .uk-visible-toggle .social-links a{ font-size : px; color : ; } # .uk-card .uk-visible-toggle .social-links a:hover{ color : ; } # .uk-card:hover .uk-visible-toggle .uk-overlay-default{ -webkit-transform: scale(1.1); transform: scale(1.1); transition:all 0.3s ease; } @media(max-width:768px){ # .section-heading .uk-heading-primary{ font-size : px; } } ================================================ FILE: blocks/teams/team-1/view.php ================================================ div> .uk-card; delay:200;"' : ''; ?>

    >

    uk-grid>
    <?php echo $team['title']; ?>

    ================================================ FILE: blocks/testimonials/testimonial-1/config.php ================================================ 'testimonial-1', // Must be unique 'groups' => array('testimonials'), // Blocks group for filter // Fields - $contents available on view file to access the option 'contents' => array( array( 'name' => 'testimonials', 'type' => 'repeater', 'fields' => array( array( array('name' => 'image', 'label' => 'Image', 'type' => 'image', 'value' => 'http://s3.amazonaws.com/quantum-assets/images/8-thumb.jpg' ), array('name' => 'testimony', 'type' => 'textarea', 'value' => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus quis ex risus. Vivamus hendrerit nec ex vitae varius. Aliquam sollicitudin dapibus dapibus. Duis lacus diam, lacinia a fringilla semper, laoreet eget tellus. Vestibulum sed nisi rutrum, efficitur odio et, varius mi.'), array('name' => 'name', 'value' => 'John Resig'), array('name' => 'designation', 'value' => 'Creator of jQuery'), ), array( array('name' => 'image', 'type' => 'image', 'value' => 'http://s3.amazonaws.com/quantum-assets/images/7-thumb.jpg'), array('name' => 'testimony', 'type' => 'textarea', 'value' => 'Lorem ipsum dolor sit amet, consectetur adipiscing elit. Vivamus quis ex risus. Vivamus hendrerit nec ex vitae varius. Aliquam sollicitudin dapibus dapibus. Duis lacus diam, lacinia a fringilla semper, laoreet eget tellus. Vestibulum sed nisi rutrum, efficitur odio et, varius mi.'), array('name' => 'name', 'value' => 'Elon Musk'), array('name' => 'designation', 'value' => 'CEO and CTO of SpaceX'), ), ), ), ), 'styles' => array( array( 'name' => 'bg_image', 'label' => 'Background Image', 'type' => 'image', ), array( 'name' => 'bg_parallax', 'type' => 'switch', 'label' => 'Parallax Background', ), array( 'name' => 'overlay_color', 'label' => 'Overlay Color', 'type' => 'colorpicker', 'value' => '@color.primary', ), array( 'name' => 'testimoni_color', 'label' => 'Testimoni Color', 'type' => 'colorpicker', 'value' => '#fff', ), array( 'name' => 'name_color', 'label' => 'Name Color', 'type' => 'colorpicker', 'value' => '#fff', ), array( 'name' => 'designation_color', 'label' => 'Designation Color', 'type' => 'colorpicker', 'value' => '#fff', ), array( 'name' => 'dot_color', 'label' => 'Dot Color', 'type' => 'colorpicker', 'value' => '#fff', ), ), // Settings - $settings available on view file to access the option 'settings' => array( array( 'name' => 'animation', 'label' => 'Animation', 'type' => 'select', 'value' => 'slide', 'options' => array( 'slide' => 'Slide', 'fade' => 'Fade', 'scale' => 'Scale', 'pull' => 'Pull', 'push' => 'Push', ), ), array( 'name' => 'autoplay', 'label' => 'Autoplay', 'type' => 'switch', 'value' => true, ), array( 'name' => 'testimonial_height', 'label' => 'Min Height', 'append' => 'px', 'value' => 750, ), array( 'name' => 'text_size', 'label' => 'Text Size', 'append' => 'px', 'value' => '18', ), array( 'name' => 'name_size', 'label' => 'Name Size', 'append' => 'px', 'value' => '32', ), array( 'name' => 'name_transformation', 'label' => ' Transformation', 'type' => 'select', 'value' => 0, 'options' => array( 0 => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'designation_size', 'label' => 'Designation Size', 'append' => 'px', 'value' => '16', ), ), ); ================================================ FILE: blocks/testimonials/testimonial-1/style.css ================================================ ================================================ FILE: blocks/testimonials/testimonial-1/style.php ================================================ # .uk-heading-primary{ font-size : px; color : ; } # .testimony{ font-size : px; color : ; } # .uk-text-lead{ font-size : px; color : ; } #.testimonial-1 .uk-dotnav>*>*{ border-color:; } #.testimonial-1 .uk-dotnav>.uk-active>*{ border-color:; background-color : ; } #.testimonial-1 .uk-light .uk-slidenav{ color:; } # .uk-overlay-primary{ background: ; } # .uk-border-circle { margin: 0 auto; } ================================================ FILE: blocks/testimonials/testimonial-1/view.php ================================================
    data-src="" uk-img>
      $testimonial ) : ?>
    • <?php echo $testimonial['name']; ?>

      ================================================ FILE: blocks/woocommerce/woo-1/config.php ================================================ 'woo-1', // Must be unique and singular 'groups' => array('woocommerce'), // Blocks group for filter and plural // Fields - $contents available on view file to access the option 'contents' => array( array( 'name' => 'title', 'value' => 'Our Store', ), array( 'name' => 'description', 'type' => 'textarea', 'value' => 'Select product from our store', ), array( 'name' => 'category', 'label' => 'Product by category', 'type' => 'woocategories', ), array( 'name' => 'num_products', 'label' => 'Number Of Products', 'value' => '6', ), array( 'name' => 'prod_options', 'label' => 'Product Options', 'type' => 'select', 'value' => 'recent_prod', 'options' => array( 'recent_prod' => 'Recent Product', 'featured_prod' => 'Featured Product', 'best_selling' => 'Best Selling Product', 'sale_prod' => 'Sale Product' ) ), array( 'name' => 'columns', 'label' => 'Columns', 'type' => 'select', 'value' => '3', 'options' => [ '2' => '2', '3' => '3', '4' => '4', ], ), array( 'name' => 'text_limit', 'label' => 'Product Desc Length', 'value' => 20, ), array( 'name' => 'display_price', 'label' => 'Display price', 'type' => 'switch', 'value' => 'yes', ), array( 'name' => 'add_to_cart', 'label' => 'Add to cart button', 'type' => 'switch', 'value' => 'yes', ), ), // Settings - $settings available on view file to access the option 'settings' => array( array('label' => 'Section Heading', 'type' => 'divider'), array( 'name' => 'heading_type', 'label' => 'Heading Type', 'type' => 'select', 'value' => 'h1', 'options' => array( 'h1' => 'h1', 'h2' => 'h2', 'h3' => 'h3', 'h4' => 'h4', 'h5' => 'h5', 'h6' => 'h6', ), ), array( 'name' => 'section_title_size', 'label' => 'Title Size', 'append' => 'px', 'value' => '60', ), array( 'name' => 'title_transformation', 'label' => 'Title Transformation', 'type' => 'select', 'value' => 'inherit', 'options' => array( 'inherit' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'title_alignment', 'label' => 'Title Alignment', 'type' => 'select', 'value' => 'center', 'options' => array( 'left' => 'Left', 'center' => 'Center', 'right' => 'Right', 'justify' => 'Justify', ), ), array( 'name' => 'desc_size', 'label' => 'Desc Size', 'append' => 'px', 'value' => '20', ), array( 'name' => 'title_animation', 'label' => 'Animation', 'type' => 'select', 'value' => '0', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top', 'slide-bottom-small' => 'Slide Bottom', 'slide-left-small' => 'Slide Left', 'slide-right-small' => 'Slide Right', ), ), array('label' => 'Items', 'type' => 'divider'), array( 'name' => 'item_title_size', 'label' => 'Title Size', 'append' => 'px', 'value' => '18', ), array( 'name' => 'item_title_transformation', 'label' => 'Transformation', 'type' => 'select', 'value' => 'inherit', 'options' => array( 'inherit' => 'Default', 'lowercase' => 'Lowercase', 'uppercase' => 'Uppercase', 'capitalize' => 'Capitalized', ), ), array( 'name' => 'item_desc_size', 'label' => 'Item Desc Size', 'append' => 'px', 'value' => '14', ), array( 'name' => 'item_animation', 'label' => 'Animation Item', 'type' => 'select', 'value' => 'fadeInUp', 'options' => array( '0' => 'None', 'fade' => 'Fade', 'scale-up' => 'Scale Up', 'scale-down' => 'Scale Down', 'slide-top-small' => 'Slide Top', 'slide-bottom-small' => 'Slide Bottom', 'slide-left-small' => 'Slide Left', 'slide-right-small' => 'Slide Right', ), ), ), // Fields - $styles available on view file to access the option 'styles' => array( array( 'name' => 'bg_color', 'label' => 'Background Color', 'type' => 'colorpicker', 'value' => '#fff', ), array('label' => 'Heading', 'type' => 'divider'), array( 'name' => 'section_title_color', 'label' => 'Title Color', 'type' => 'colorpicker', 'value' => '#323232', ), array( 'name' => 'desc_color', 'label' => 'Desc Color', 'type' => 'colorpicker', 'value' => '#323232', ), array('label' => 'Items', 'type' => 'divider'), array( 'name' => 'item_title_color', 'label' => 'Item Title Color', 'type' => 'colorpicker', 'value' => '#323232', ), array( 'name' => 'item_desc_color', 'label' => 'Item Desc Color', 'type' => 'colorpicker', 'value' => '#323232', ), array( 'name' => 'button_text_color', 'label' => 'Button Text Color', 'type' => 'colorpicker', 'value' => '#323232', ), ), // 'assets' => function( $path ){ // Onepager::addStyle('blog-1', $path . '/style.css'); // } ); ================================================ FILE: blocks/woocommerce/woo-1/style.php ================================================ #{ background-color : ; } # .section-heading .uk-heading-primary{ font-size : px; color : ; } # .section-heading .uk-text-lead{ font-size : px; color : ; } # .uk-card .uk-card-title{ font-size : px; } # .uk-card .uk-card-title a{ color : ; } # .uk-card .uk-text-small{ font-size : px; color : ; } # .button{ color : ; } @media(max-width:768px){ # .section-heading .uk-heading-primary{ font-size : px; } } ================================================ FILE: blocks/woocommerce/woo-1/view.php ================================================ WooCommerce is not installed or activated. Please install and activate WooCommerce.

      '; return; } // title animation $title_animation = ( $settings['title_animation'] ) ? 'uk-scrollspy="cls:uk-animation-' . $settings['title_animation'] . ';"' : ''; // title alignment $title_alignment = ( $settings['title_alignment'] ) ? $settings['title_alignment'] : ''; // title animation $item_animation = ( $settings['item_animation'] ) ? 'uk-scrollspy="cls: uk-animation-' . $settings['item_animation'] . '; target: > div > .uk-card; delay: 300;"' : ''; $mcq = WC()->query->get_meta_query(); $mcq[] = array( 'key' => '_featured', 'value' => 'yes', ); // Woo Arguments $args = array( 'post_type' => 'product', 'post_status' => 'publish', 'posts_per_page' => $contents['num_products'], 'order' => 'DESC', 'tax_query' => array( array( 'taxonomy' => 'product_visibility', 'field' => 'slug', 'terms' => 'exclude-from-catalog', // Possibly 'exclude-from-search' too 'operator' => 'NOT IN', ), ) ); if($contents['prod_options'] === 'featured_prod'){ $args['post__in'] = wc_get_featured_product_ids(); } elseif ($contents['prod_options'] === 'best_selling') { $args['meta_key'] = 'total_sales'; $args['orderby'] = 'meta_value_num'; } elseif ($contents['prod_options'] === 'sale_prod') { $args['meta_query'] = array( 'relation' => 'OR', array( // Simple products type 'key' => '_sale_price', 'value' => 0, 'compare' => '>', 'type' => 'numeric' ), array( // Variable products type 'key' => '_min_variation_sale_price', 'value' => 0, 'compare' => '>', 'type' => 'numeric' ) ); } if($contents['category']){ $args['tax_query'][0] = array( 'taxonomy' => 'product_cat', 'terms' => $contents['category'] ); } // Build query $query = new WP_Query( $args ); ?>
      >
      > have_posts() ) : ?> have_posts() ) : $query->the_post(); ?>
      ================================================ FILE: bower.json ================================================ { "name": "onepager", "version": "1.1.4", "dependencies": { "animate.css": ">=3.0", "bootstrap": "~3.4", "bootstrap-select": "~1.7.3", "bootstrap-switch": "~3.3.2", "fontawesome": "4.7", "fontawesome-selector": "https://github.com/themesgrove/fontawesome-selector.git", "fullpage.js": ">=3.0", "jquery.nicescroll": "~3.6.0", "lesshat": "~3.0", "magnific-popup": ">=1.1", "mjolnic-bootstrap-colorpicker": "~2.1.2", "sweetalert": "~1.1", "toastr": "~2.1.1", "wow": "~1.1.2" }, "overrides": { "jquery.nicescroll": { "main": [ "./jquery.nicescroll.min.js", "./zoomico.png" ] }, "fontawesome": { "main": [ "css/font-awesome.css", "fonts/fontawesome-webfont.eot", "fonts/fontawesome-webfont.svg", "fonts/fontawesome-webfont.ttf", "fonts/fontawesome-webfont.woff", "fonts/fontawesome-webfont.woff2" ] }, "fullpage.js": { "main": [ "dist/fullpage.css", "dist/fullpage.js", "vendors/easings.js", "vendors/scrolloverflow.js" ] } }, "devDependencies": {}, "resolutions": { "jquery": "~1.12" } } ================================================ FILE: bowerrc.json ================================================ "registry": "https://registry.bower.io" ================================================ FILE: composer.json ================================================ { "name": "themexpert/onepager", "authors": [ { "name": "ThemeXpert", "email": "info@themexpert.com" } ], "scripts": { "format": "phpcbf --standard=phpcs.xml --report-summary --report-source", "phpcs": "phpcs --standard=phpcs.xml --extensions=php -s", "phpmd": "phpmd inc text phpmd.xml", "test": "phpunit --confirguration=phpunit.xml", "lint": "composer run-script phpcs" }, "require": { "pimple/pimple": "^3.0", "kriswallsmith/assetic": "^1.2", "ramsey/array_column": "^1.1", "symfony/http-foundation": "2.7.50", "appsero/client": "^1.0", "tareq1988/wordpress-settings-api-class": "dev-master" }, "autoload": { "classmap": ["src/WordPress"], "psr-4": { "ThemeXpert\\": "src/", "App\\": "app/" } } } ================================================ FILE: constants.php ================================================ { if (this.state.isDirty) { if(['op-sections', 'op-contents'].indexOf(this.state.sidebarTabState.active) === -1){ AppStore.setTabState({active: 'op-sections'}); } return "You haven't saved your changes and by leaving the page they will be lost."; } }); }, _addBuildClassToBody(){ jQuery("body").addClass("op-build-active"); }, _setSidebarCollapseClass(collapse){ if (collapse) { jQuery('body').addClass('op-sidebar-collapsed'); } else { jQuery('body').removeClass('op-sidebar-collapsed'); } }, render() { let { previewFrameLoaded } = this.state; return previewFrameLoaded ? :
      Initializing Onepager
      ; } }); module.exports = App; ================================================ FILE: engine/App/AppStore.js ================================================ const $ = jQuery; //jshint ignore: line const _ = require('underscore'); const assign = require('object-assign'); const AppDispatcher = require('./flux/AppDispatcher.js'); const Constants = require('./flux/AppConstants.js'); const SectionTransformer = require('./../shared/onepager/sectionTransformer.js'); const ShouldSync = require('../shared/lib/ShouldSync.js'); const Activity = require('../shared/lib/Activity.js'); const ODataStore = require('./../shared/onepager/ODataStore.js'); const BaseStore = require('./flux/BaseStore.js'); const AppActions = require('./flux/AppActions.js'); const SyncService = require('./AppSyncService.js'); require('./../shared/onepager/lib/_mixins.js'); import toolbelt from '../shared/lib/toolbelt.js'; import storage from '../shared/lib/storage.js'; import localState from './../shared/onepager/localState.js'; let {serializeSections, unserializeSections} = SectionTransformer; let {stripClassesFromHTML} = SectionTransformer; // data storage function sortBlocks(blocks){ return blocks.sort(function (a, b) { return +(a.slug > b.slug) || +(a.slug === b.slug) - 1; }); } function transformSections(sections){ return SectionTransformer.unserializeSections(sections, _blocks); } let _modalActiveTabName = 'tab-block'; let _assetUrl = ODataStore.assetUrl; let _blocks = sortBlocks(ODataStore.blocks); let _sections = transformSections(ODataStore.sections); let _menuState = {id: null, index: null, title: null}; let _savedSections = getSerializedSectionsAsJSON(_sections); let AUTO_SAVE_DELAY = 150; let _previewFrameLoaded = false; let _pageID = ODataStore.pageId; let _pageSettingOptions = ODataStore.pageSettingOptions; let _pageSettingOptionPanel = ODataStore.pageOptionPanel; // Need to remove this let _savedTemplates = ODataStore.savedTemplates; let _pagePresets = ODataStore.pagePresets; let _collapseSidebar = localState.get('collapseSidebar', false); let _activeSectionIndex = _sections[localState.get('activeSectionIndex')] ? localState.get('activeSectionIndex') : null; let _sidebarTabState = _activeSectionIndex !== null ? localState.get('sidebarTabState', {active: 'op-sections'}) : {active: 'op-sections'}; let shouldLiveSectionsSync = ShouldSync(_sections, 'sections'); let shouldSectionsSync = ShouldSync(_sections, 'sections'); let savedTemplates = ShouldSync(_savedTemplates, 'savedTemplates'); let syncService = SyncService(ODataStore.pageId, Activity(AUTO_SAVE_DELAY), shouldSectionsSync); let liveService = SyncService(null, Activity(AUTO_SAVE_DELAY), shouldLiveSectionsSync); function collapseSidebar(collapse) { _collapseSidebar = collapse; } function getSerializedSectionsAsJSON(section) { return JSON.stringify(serializeSections(section)); } function getBlockBySlug(slug) { return _.find(_blocks, {slug}); } // function to activate a section function setActiveSection(index) { _activeSectionIndex = index; } function setPreviewFrameLoaded(){ _previewFrameLoaded = true; } // function to add a section function addSection(section) { let sectionIndex = _sections.length; //isn't it :p //its a row section to need to uni(quei)fy section = SectionTransformer.unifySection(section); _sections.push(section); setActiveSection(sectionIndex); // liveService.updateSection(_sections, sectionIndex); const liveSyncPromise = liveService.updateSection(_sections, sectionIndex); return liveSyncPromise; } /** * * @param {section} * section those are comes from saved template * all section that will be merged */ function mergeSections(sections) { let passedSection; if('object' == typeof sections){ passedSection = Object.keys(sections).map(function (key) { return sections[key]; }); } passedSection.forEach(section => { section.id = toolbelt.randomId( "s_" ); // section = SectionTransformer.unifySection(section); // _sections.push(section); }); /** * pass only clicked section * not all sections of the page. */ // liveService.mergeSections(_sections); let layoutInsertPromise = liveService.mergeSections(passedSection); return layoutInsertPromise; } // function to update a section function updateSection(sectionIndex, section) { _sections[sectionIndex] = section; liveService.updateSection(_sections, sectionIndex); } function updatePageSettingsLive(key, fields){ /** * prepare fields to synced */ let optionData = fields.toJS(); optionData = optionData.reduce( (map, control) => { map[control.name] = control.value; return map; }, {} ); _pageSettingOptions[key] = optionData; let sectionsId = []; _sections.forEach( (section) => { sectionsId.push(section['id']); }); /** * send request * return a promise * @res = style array for page's section */ let livePageSyncPromise = syncService.pageSyncServiceLive( _pageSettingOptions, sectionsId); livePageSyncPromise.then( (res) => { if (res.success) { let styleArr = res.optionStyleArr; let fullScreen = res.fullScreen ? res.fullScreen : null; /** * sync previously loaded sections * with updated option panel data */ _sections.filter(function(section, index){ section['page_style'] = styleArr[index]; }); /** * call action to sync full page with updated sections * to load preview jsx again * to load latest option panel data * inside head tag. */ AppActions.fullPageSectionSynced(_sections, fullScreen); } }); } function fullPageSectionSynced(sectionsArr, fullScreen){ /** * copy existing sections while load the component */ let sections = toolbelt.copy(_sections); let pageSettingOptions = toolbelt.copy(_pageSettingOptions); pageSettingOptions['general']['full_screen'] = fullScreen; /** * sync section page style key * with changed data */ sections.filter(function(section, index){ section['page_style'] = sectionsArr[index]['page_style']; }) } // function to duplicate a section function duplicateSection(index) { let sectionIndex = _sections.length; //isn't it :p //its a row section to need to uni(quei)fy let section = SectionTransformer.unifySection(_sections[index], true); _sections = toolbelt.pushAt(toolbelt.copy(_sections), index + 1, section); liveService.updateSection(_sections, sectionIndex); setActiveSection(sectionIndex); } function removeSection(index) { _sections.splice(index, 1); liveService.rawUpdate(_sections); //bad pattern setActiveSection(null); } function updateTitle(index, previousTitle, newTitle) { let section = toolbelt.copy(_sections[index]); section.title = newTitle; if ('untitled section' === previousTitle) { section.id = getUniqueSectionId(_sections, index, newTitle); } updateSection(index, section); } function getUniqueSectionId(sections, index, title) { let id = toolbelt.dasherize(title); //make es4 compatible while (!toolbelt.isUniquePropInArray(sections, index, 'id', id)) { id = id + 1; } return id; } function sectionSynced(index, res) { let section; _sections[index] = toolbelt.copy(_sections[index]); section = _sections[index]; section.content = stripClassesFromHTML(section.livemode, res.content); section.style = res.style; } function sectionAgainSynced(res, index) { if(Number.isInteger(+index)){ let section; _sections[index] = toolbelt.copy(_sections[index]); section = _sections[index]; section.content = stripClassesFromHTML(section.livemode, res.content); section.style = res.style; section.settings = res.settings; section.contents = res.contents; section.styles = res.styles; } } /** * after convert the data * from routes asyn operation * @param {res} res */ function sectionShouldSynced(res){ let transformRes = transformSections(res); Object.entries(transformRes).forEach( ([index, res]) => { if(typeof res == 'object'){ _sections.push(res) } } ) // let finalTransformation = transformSections(_sections); Object.entries(_sections).forEach( ([index, finalTransformation]) => sectionAgainSynced(finalTransformation, index)) } function emitChange(){ AppStore.emitChange(); } function editSection(index) { setActiveSection(index); AppStore.setTabState({active: 'op-contents'}); } function updateSections(sections) { _sections = unserializeSections(sections, _blocks); } function reloadSections(sections) { return liveService.reloadSections(sections).then(updateSections); } function reloadBlocks(){ //FIXME: its not a place for business logic let reloadBlocksPromise = syncService.reloadBlocks(); reloadBlocksPromise.then((blocks)=> { _blocks = sortBlocks(blocks); }); return reloadBlocksPromise; } let dispatcherIndex = AppDispatcher.register(function (payload) { const actions = Constants.ActionTypes; const action = payload.action; switch (action.type) { case actions.ADD_SECTION: addSection(action.section); emitChange(); break; case actions.MERGE_SECTIONS: mergeSections(action.sections); emitChange(); break; case actions.EDIT_SECTION: editSection(action.index); emitChange(); break; case actions.COLLAPSE_SIDEBAR: collapseSidebar(action.collapse); emitChange(); break; case actions.ACTIVATE_SECTION: setActiveSection(action.index); emitChange(); break; case actions.UPDATE_SECTION: updateSection(action.index, action.section); emitChange(); break; case actions.REMOVE_SECTION: removeSection(action.index); emitChange(); break; case actions.DUPLICATE_SECTION: duplicateSection(action.index); emitChange(); break; case actions.SECTIONS_SYNCED: sectionSynced(action.index, action.res); emitChange(); break; case actions.SECTIONS_SHOULD_SYNCED: sectionShouldSynced(action.res); emitChange(); break; ///maybe do not need it case actions.RELOAD_SECTIONS: reloadSections(serializeSections(_sections)); break; case actions.REFRESH_SECTIONS: reloadSections(action.sections); break; case actions.UPDATE_SECTIONS: updateSections(action.sections); emitChange(); break; case actions.UPDATE_TITLE: updateTitle(action.index, action.previousTitle, action.newTitle); emitChange(); break; case actions.PREVIEW_FRAME_LOADED: setPreviewFrameLoaded(); emitChange(); break; case actions.UPDATE_PAGE_SETTINGS: updatePageSettingsLive(action.index, action.fields) emitChange(); break; case actions.FULL_PAGE_SECTION_SYNCED: fullPageSectionSynced(action.sections, action.fullScreen) emitChange(); break; } }); // Facebook style store creation. let AppStore = assign({}, BaseStore, { // public methods used by Controller-View to operate on data getAll() { return { isDirty: this.isDirty(), assetUrl: _assetUrl, blocks: _blocks, sections: _sections, menuState: _menuState, activeSection: _sections[_activeSectionIndex], collapseSidebar: _collapseSidebar, sidebarTabState: _sidebarTabState, activeSectionIndex: _activeSectionIndex, previewFrameLoaded: _previewFrameLoaded, pageID: _pageID, pageSettingOptions: _pageSettingOptions, pageSettingOptionPanel: _pageSettingOptionPanel, // Need to remove this savedTemplates: _savedTemplates, pagePresets: _pagePresets, modalActiveTabName: _modalActiveTabName }; }, save(){ let updated = syncService.rawUpdate(_sections); updated.then(this.setSectionsAsSavedSections); return updated; }, exportPage(){ let exportPageData = syncService.exportPage(_pageID); return exportPageData; }, /** * * @param {*} jsonData */ importTemplate(jsonData){ let importJSONDataPromise = syncService.importJsonData(jsonData); return importJSONDataPromise; }, /** * Save a template from builder * @param {pageID} */ saveTemplate(name, type){ let saveTemplatePromise = syncService.saveTemplate(_pageID, name, type); return saveTemplatePromise; }, /** * * @param {*} templateData */ mergeSavedTemplateWithPage(templateData){ let templateInsertPromise = mergeSections(templateData); return templateInsertPromise; }, /** * * @param {*} blockData */ blockInsertToPage(blockData){ let blockInsertPromise = addSection(blockData); return blockInsertPromise; }, /** * delete saved template */ deleteTemplate(id, name, type ){ console.log('preparing to delete'); let deleteTemplatePromise = syncService.deleteTemplate(id, name, type); return deleteTemplatePromise; }, pageSave(){ let callingRoute = syncService.updatePageSettings(); callingRoute.then( (res) => { console.log('hello, for appstorre') }).catch( (err) => { console.log('err', err); } ); return callingRoute; }, isDirty(){ return getSerializedSectionsAsJSON(_sections) !== _savedSections; }, setSectionsAsSavedSections(){ _savedSections = getSerializedSectionsAsJSON(_sections); // return the changed json emitChange(); }, /** * update template library of modal * after save template * @param {*} NewTemplate */ syncSavedTemplateLibrary(NewTemplate){ var previousTemplates = _savedTemplates; previousTemplates.push(NewTemplate.inserted_data[0]); // return the changed json _savedTemplates = previousTemplates; _modalActiveTabName = 'tab-my-template'; emitChange(); }, /** * update template library of modal * after delete template * @param {*} NewTemplate */ syncLibraryAfterDelete(deletedId){ var previousTemplates = _savedTemplates; var filterdTemplate = previousTemplates.filter( (template) => { return deletedId != template.id }); _savedTemplates = filterdTemplate; _modalActiveTabName = 'tab-my-template'; emitChange(); }, /** * update template library of modal * after import template * @param {*} updatedRow */ updateModalTemplate(updatedRow){ var previousTemplates = _savedTemplates; previousTemplates.push(updatedRow.inserted_data[0]); // return the changed json _savedTemplates = previousTemplates; _modalActiveTabName = 'tab-my-template'; emitChange(); }, get(index){ return _sections[index]; }, getBlock(slug){ return getBlockBySlug(slug); }, setTabState(state){ _sidebarTabState = state; emitChange(); }, setSections(sections){ _sections = sections; emitChange(); }, setMenuState(id, title, index){ _menuState = {id, title, index}; emitChange(); }, reorder(sections, index){ setActiveSection(index); this.setSections(sections); liveService.rawUpdate(_sections); }, getAssetUrl(){ return _assetUrl; }, /** * * @param {sections} sections data comes for page specific section from db onepager_sections row of post_meta table * @param {*} isSectionsDirty */ settingsChanged(sections, isSectionsDirty){ /** Horrible codes*/ reloadBlocks().then(function(){ reloadSections(sections).then(function(){ if(!isSectionsDirty){ AppStore.setSectionsAsSavedSections(); } }); }); }, loadPreset(sections){ sections = transformSections(sections); this.setSections(sections); }, rawUpdate(){ liveService.rawUpdate(_sections); }, // register store with dispatcher, allowing actions to flow through dispatcherIndex }); module.exports = AppStore; ================================================ FILE: engine/App/AppSyncService.js ================================================ const $ = jQuery; const async = require('async'); const notify = require('./../shared/plugins/notify'); const ODataStore = require('./../shared/onepager/ODataStore'); const AppActions = require('./flux/AppActions'); import {serializeSections} from './../shared/onepager/sectionTransformer'; function AppSyncService(pageId, inactive, shouldSectionsSync) { let updateSection = function (sections, sectionIndex) { return new Promise( (resolve, reject) => { let payload = { pageId : pageId, action : 'onepager_save_sections', updated : sectionIndex, sections: serializeSections(sections) }; let sync = function () { $.post(ODataStore.ajaxUrl, payload, (res)=> { if (!res || !res.success) { return notify.error('Unable to sync. Make sure you are logged in'); } //else AppActions.sectionSynced(sectionIndex, res); if (pageId) { notify.success('Sync Successful'); } /** * return promise * after success or * reject on faliur */ return res.success ? resolve(res.success): reject('Unable to sync. Make sure you are logged in'); }); }; async.series([ (pass)=> inactive().then(pass, (err)=>console.log(err)), (pass)=> shouldSectionsSync(sections).then(pass), (pass)=> sync(pass) ]); }); }; let mergeSections = function (sections) { return new Promise( (resolve, reject) => { let payload = { pageId : pageId, action : 'onepager_merge_sections', sections: sections }; let sync = function () { $.post(ODataStore.ajaxUrl, payload, (res)=> { if (!res || !res.success) { notify.error('Unable to sync. Make sure you are logged in'); return reject('Unable to sync. Make sure you are logged in'); } //else AppActions.sectionsShouldSynced(res); if (pageId) { notify.success('Sync Successful'); } /** * return promise * after success or * reject on faliur */ return res.success ? resolve(res.success): reject('Unable to sync. Make sure you are logged in'); }); }; async.series([ (pass)=> inactive().then(pass, (err)=>console.log(err)), (pass)=> shouldSectionsSync(sections).then(pass), (pass)=> sync(pass) ]); }) }; let rawUpdate = function (sections) { return new Promise((resolve, reject)=> { let payload = { pageId : pageId, action : 'onepager_save_sections', updated : null, sections: serializeSections(sections) }; let sync = function () { $.post(ODataStore.ajaxUrl, payload, (res)=> { if (!res || !res.success) { notify.error('Unable to save. Make sure you are logged in'); //bad message return reject('Unable to save. Make sure you are logged in'); //bad message } if (pageId) { notify.success('Page updated successfully'); } return resolve(); }); }; async.series([ (pass)=> inactive().then(pass), (pass)=> shouldSectionsSync(sections).then(pass), (pass)=> sync(pass) ]); }); }; function updatePageSettings(sections){ return new Promise((resolve, reject)=>{ let payload = { action: "onepager_save_page_settings", pageId: pageId }; $.post(ODataStore.ajaxUrl, payload, (res)=> { if (!res || !res.success) { notify.error('Unable to save. Make sure you are logged in'); //bad message return reject('Unable to save. Make sure you are logged in'); //bad message } console.log('res', res); return resolve('i am new to onepager, dont fire me'); }); }); } function reloadSections(sections){ return new Promise((resolve, reject)=>{ let payload = { action: "onepager_reload_sections", sections: sections }; $.post(ODataStore.ajaxUrl, payload, (res)=> { if (!res || !res.success) { notify.error('Unable to save. Make sure you are logged in'); //bad message return reject('Unable to save. Make sure you are logged in'); //bad message } if (pageId) { notify.success('Page reloaded'); } return resolve(res.sections); }); }); } function reloadBlocks(){ let payload = { action : 'onepager_reload_blocks' }; return new Promise((resolve, reject)=>{ jQuery.post(ODataStore.ajaxUrl, payload, (res)=>{ return res.success ? resolve(res.blocks) : reject("Could not load blocks"); }) }); } function pageSyncServiceLive(pageSettingOptions, sectionsId){ let payload = { action : 'onepager_save_page_settings_live', pageId : pageId, options: pageSettingOptions, sectionsId: sectionsId, }; return new Promise( (resolve, reject) => { jQuery.post(ODataStore.ajaxUrl, payload, (res)=> { return res.success ? resolve(res) : reject('something went wrong'); }) }); } /** * export a page from builder * @param {pageID} */ function saveTemplate(pageID, name, type){ var payload = { action: 'onepager_save_layout', pageID: pageID, name: name, type: type, }; return new Promise((resolve, reject) => { jQuery.post(ODataStore.ajaxUrl, payload, (res) => { return res.success ? resolve( res ) : reject(res.message); }); }); } /** * delete a template from popup * @param {pageID} */ function deleteTemplate(id, name, type){ var payload = { action: 'onepager_delete_layout', id: id, name: name, type: type, }; return new Promise((resolve, reject) => { jQuery.post(ODataStore.ajaxUrl, payload, (res) => { return res.success ? resolve( res ) : reject('failed'); }); }); } /** * export a page from builder * @param {pageID} */ function exportPage(pageId){ var payload = { action: 'onepager_get_sections', pageId: pageId }; return new Promise((resolve, reject) => { jQuery.post(ODataStore.ajaxUrl, payload, (res) => { return res.success ? resolve( res ) : reject("oops!! onepager could not export this page"); }); }); } /** * import a exported json from builder * @param {*} jsonData */ function importJsonData(jsonData){ var payload = { action: 'onepager_import_layout', data: jsonData }; return new Promise((resolve, reject) => { jQuery.post(ODataStore.ajaxUrl, payload, (res) => { return res.insert_id ? resolve( res ) : reject("oops!! onepager could not import this page"); }); }); } return { reloadSections, reloadBlocks, updateSection, mergeSections, rawUpdate, updatePageSettings, pageSyncServiceLive, exportPage, importJsonData, deleteTemplate, saveTemplate }; } module.exports = AppSyncService; ================================================ FILE: engine/App/Preview.jsx ================================================ import React from 'react'; import _ from 'underscore'; import SectionViewCollection from './components/section-view/SectionViewCollection.jsx'; let AppStore = parent.AppStore; let AppActions = parent.AppActions; let Preview = React.createClass({ getInitialState() { return AppStore.getAll(); }, _onChange() { this.setState(AppStore.getAll()); }, componentDidMount() { AppActions.previewFrameLoaded(); AppStore.addChangeListener(this._onChange); }, componentWillUnmount() { AppStore.removeChangeListener(this._onChange); }, render() { let {sections, activeSectionIndex, pageID, pageSettingOptions} = this.state; let viewSections = _.map(sections, function (section) { return _.pick(section, ['content', 'key', 'style', 'id', 'page_style']); }); let fullScreen = pageSettingOptions['general']['full_screen']; return ( ); } }); module.exports = Preview; ================================================ FILE: engine/App/components/blocks/Block.jsx ================================================ const React = require('react'); const PureMixin = require('react/lib/ReactComponentWithPureRenderMixin'); const AppActions = require('../../flux/AppActions.js'); const AppStore = require('../../AppStore.js'); const {opi18n:i18n} = onepager; import notify from '../../../shared/plugins/notify'; let Block = React.createClass({ mixins: [PureMixin], getInitialState(){ return { blockInsertLoading:false, }; }, propTypes: { block: React.PropTypes.object }, handleCreateSection() { /** * disable below 4 line * these line are previous code */ // AppActions.addSection(this.props.block); //FIXME: return a promise from addSection then hook this success // notify.success('New section added'); // AppStore.setTabState({active: 'op-contents'}); this.setState({blockInsertLoading:true}); this.props.handleBlockInsertLoading(true); /** * promise based reply */ const blockInsertPromise = AppStore.blockInsertToPage(this.props.block); blockInsertPromise.then( res => { if(res){ notify.success(i18n.success.section_added); this.setState({blockInsertLoading:false}); this.props.handleBlockInsertLoading(false); document.querySelector('#onepager-builder .popup-modal').classList.remove('open'); } }).catch( rej => { notify.error(i18n.error.insert); this.setState({blockInsertLoading:false}); this.props.handleBlockInsertLoading(false); }); }, render() { let block = this.props.block; return (
      {block.type ? {block.type} : null } {block.tag ? {block.tag} : null } {block.name}
      {block.name} {block.groups}
      ); } }); module.exports = Block; ================================================ FILE: engine/App/components/blocks/BlockCollection.jsx ================================================ const React = require('react'); const _ = require('underscore'); const Alert = require('react-bootstrap/lib/Alert'); const Button = require('react-bootstrap/lib/Button'); const PureMixin = require('react/lib/ReactComponentWithPureRenderMixin'); const Block = require('./Block.jsx'); const Select = require("../../../shared/components/form/Select.jsx"); // const AppStore = require('../../stores/AppStore'); const {opi18n:i18n} = onepager; function orderGroups(blocks, groupOrder) { let groups = _.unique(blocks.reduceRight(function (groups, block) { return groups.concat(block.groups); }, [])).sort(); let foundGroups = _.intersection(groupOrder, groups); groups = (foundGroups).concat(_.difference(groups, foundGroups)); groups.unshift('all'); return groups; } function orderBlocks(blocks, groups) { function getBlocksByGroup(blocks, group) { let blocksTop = blocks.filter( block => block.groups.indexOf(group) !== -1); let remGroups = _.without(groups, group); let blocksBottom = remGroups.map(function(remGroup){ return blocksTop.filter( block => block.groups.indexOf(remGroup) !== -1); }); blocksBottom = [].concat.apply([], blocksBottom); blocks = _.unique(blocksBottom.concat(blocksTop)); return blocks; } /** get blocks by groups order */ blocks = groups.map(getBlocksByGroup.bind(null, blocks)); /** blocks are like [[1,3,2], [2,3], [1,3]] */ blocks = _.flatten(blocks, true); /** * blocks are like [1,3,2, 2,3, 1,3] * We have duplicate blocks now so take the unique blocks */ blocks = _.unique(blocks); return blocks; } let BlockCollection = React.createClass({ mixins: [PureMixin], propTypes: { blocks: React.PropTypes.array }, getInitialState(){ return { group: 'all', blockInsertLoading: false, }; }, handleChange(){ let group = this.refs.group.getValue(); this.setState({group: group}); }, handleBlockInsertLoading(status){ this.setState({blockInsertLoading: status}); var parentSelector = document.querySelector('.popup-modal-wrapper .popup-overlay'); if(status){ parentSelector.classList.add('loading'); }else{ parentSelector.classList.remove('loading'); } }, render() { console.log("rendering blocks"); let groups = orderGroups(this.props.blocks, onepager.groupOrder); /** remove the currently selected group from groups */ let blocks = orderBlocks( this.props.blocks, _.without(groups, this.state.group) ); /** * get the active blocks */ blocks = blocks.filter(block => { /** * if group is all then is active * else if block belongs to this group its active * @type {boolean} */ let active = (this.state.group === "all") || block.groups.indexOf(this.state.group) !== -1; return active ? block : false; }); let msg = (blocks.length === 0) ? {i18n.alert.no_blocks} : ''; return (
      {/*
      {this.state.blockInsertLoading ? : }
      */} {i18n.save}
      ) : (
      {this.props.children}
      ) } ); } }); module.exports = Title; ================================================ FILE: engine/App/components/section-list/style.less ================================================ .list-sections { padding-bottom: 60px; } ================================================ FILE: engine/App/components/section-view/SectionView.jsx ================================================ const $ = jQuery; //jshint ignore:line const React = require('react'); const cx = require('classnames'); //const AppActions = require('../../AppActions.js'); const scrollIntoView = require('../../../shared/plugins/scrollview.js'); let AppActions = parent.AppActions; function removeSectionStyle(id) { $(`#style-${id}`).remove(); } function replaceSectionStyle(id, style) { $(`#style-${id}`).remove(); $("head").append(style); } function addStyleToPage(page_style){ $("head").append(page_style); } function setSectionClass(fullScreen) { let pageSections = document.querySelectorAll('#onepager-preview .op-section-view'); if( fullScreen ){ pageSections.forEach(function(section, index){ if(!section.classList.contains('section')){ if('0' == index){ if(section.querySelector('div#navs')){ section.className += ''; } }else{ section.className += ' section '; } } }); }else{ pageSections.forEach(function(section){ section.classList.remove('section') }); } } let Section = React.createClass({ shouldComponentUpdate(nextProps){ let equalProps = JSON.stringify(nextProps) === JSON.stringify(this.props); return !equalProps; }, componentDidMount(){ this.setSectionContent(); this.setSectionStyle(); // this.setfullPageClass(); }, componentDidUpdate(){ this.scrollIntoView(); this.setSectionContent(); this.setSectionStyle(); // this.setfullPageClass(); }, componentWillUnmount(){ let {id} = this.props.section; removeSectionStyle(id); }, setSectionContent(){ let {content} = this.props.section; $(React.findDOMNode(this)).html(content); }, setSectionStyle(){ let {id, style, page_style} = this.props.section; replaceSectionStyle(id, style); addStyleToPage( page_style); }, setfullPageClass(){ let fullScreen = this.props.fullScreen; setSectionClass(fullScreen); }, scrollIntoView(){ if (!this.props.active) { return false; } //TODO: find a way to scroll natively with animation // React.findDOMNode(this).scrollIntoView(); // jQuery animation is costly cpu calculation // also need to optimize it at a later time when speed is crucial // TODO: SPEED scrollIntoView(React.findDOMNode(this)); }, handleClick(){ AppActions.editSection(this.props.index); // AppActions.collapseSidebar(false); // AppActions.activateSection(this.props.index); }, render() { console.log("re rendering section view"); let sectionId = this.props.section.id; let classes = cx('op-section-view', { 'active': this.props.active }); return
      ; } }); module.exports = Section; ================================================ FILE: engine/App/components/section-view/SectionViewCollection.jsx ================================================ const React = require('react'); const _ = require('underscore'); const SectionView = require('./SectionView.jsx'); const PureMixin = require('../../../shared/mixins/PureMixin.js'); const cx = require('classnames'); function setBodyClass(sections) { let noBlockClassName = 'txop-noblock'; let $body = jQuery('body'); if (sections === 0) { $body.addClass(noBlockClassName); } else { $body.removeClass(noBlockClassName); } } function setBodyClassForPageSettings(sections, pageID){ let $body = jQuery('body'); let bodyClassWithID = `txop-page-${pageID}`; if (sections === 0) { $body.removeClass(bodyClassWithID); } else { $body.addClass(bodyClassWithID); } } let SectionViewCollection = React.createClass({ mixins: [PureMixin], componentDidMount(){ setBodyClass(this.props.sections.length); setBodyClassForPageSettings(this.props.sections.length, this.props.pageID); }, componentDidUpdate(){ setBodyClass(this.props.sections.length); setBodyClassForPageSettings(this.props.sections.length, this.props.pageID); }, render() { let sections = this.props.sections; let fullScreen = this.props.fullScreen; return (
      { sections.map((section, index)=> { let active = this.props.activeSectionIndex === index; return ; }) }
      ); //end jsx } //end render }); module.exports = SectionViewCollection; ================================================ FILE: engine/App/components/sidebar/Menu.jsx ================================================ import React from 'react'; import PanelGroup from 'react-bootstrap/lib/PanelGroup'; import Panel from 'react-bootstrap/lib/Panel'; import Input from '../../../shared/components/form/Input.jsx'; import AddToMenu from './menu/AddToMenu.jsx'; const {opi18n:i18n} = onepager; import "./menu/style.less"; const Menu = React.createClass({ getInitialState(){ return{ menu: null } }, handleMenu(){ this.setState({menu: this.refs.menu.getValue()}); }, _renderMenuPanel(section, index){ let title =
      {section.title}
      ; return ( ); }, render() { let menu = { type : 'menu', value : '', label : i18n.label.menu_position, onChange: this.isFormValid }; let {sections} = this.props; return (
      {this.state.menu ? { sections.map(this._renderMenuPanel) } :

      {i18n.alert.select_menu}

      }
      ); } }); export default Menu; ================================================ FILE: engine/App/components/sidebar/SectionControls.jsx ================================================ const React = require('react'); const _ = require('underscore'); const Divider = require('../../../shared/components/form/Divider.jsx'); const Note = require('../../../shared/components/form/Note.jsx'); const Input = require('../../../shared/components/form/Input.jsx'); const RepeatInput = require('../../../shared/components/form/RepeatInput.jsx'); const Repeater = require('../../../shared/components/repeater/Repeater.jsx'); const PureMixin = require('../../../shared/mixins/PureMixin.js'); const Tab = require('../../../shared/components/Tab.jsx'); const TabPane = require('../../../shared/components/TabPane.jsx'); const SectionTitle = require("../section-list/SectionTitle.jsx"); const {opi18n:i18n} = onepager; import LocalState from '../../../shared/lib/localState.js'; let componentLocalState = LocalState('onepager_section_editor_ui_state')(); let SectionControls = React.createClass({ // mixins: [PureMixin], getInitialState(){ return { activeTab: componentLocalState.get('activeTab', 'contents') }; }, componentDidUpdate() { componentLocalState.set(this.state); }, update(tabName){ let controls = _.copy(this.props.sectionSettings[tabName]); controls = controls.map(control=> { let ref = this.refs[control.ref]; let type = control.type; switch (type) { case "divider": case "note": //we do not need to compute anything for a divider break; case "repeater": control.fields = ref.getFields(); break; default: //normal input control.value = ref.getValue(); } return control; }); this.props.update(tabName, controls); }, updateControl(tabName, controlIndex, key, value){ let contentControls = _.copy(this.props.sectionSettings[tabName]); contentControls[controlIndex][key] = value; this.props.update(tabName, contentControls); }, render() { console.log('rendering section contentControls'); let {title, sectionIndex, sectionSettings} = this.props; let getControlsHTML = (tabName, controls)=> { return controls.map((control, ii)=> { let type = control.type; let hidden = false; if (_.isArray(control.value)) { type = 'repeat-input'; } if (control.depends) { let depends = _.find(sectionSettings[tabName], {name: control.depends}); if (!depends || depends.value !== true) { hidden = true; } } let props = { hidden, sectionIndex, onChange: this.update.bind(this, tabName), options: control, id: control.ref, ref: control.ref, key: control.ref }; switch (type) { case "repeat-input": return ; case "divider": return ; case "note": return ; case "repeater": let updateControl = this.updateControl.bind(this, tabName, ii); return ; default: return ; } }); }; let handleTabClick = (id)=> this.setState({activeTab: id}); let activeTab = this.state.activeTab; if (!sectionSettings[activeTab].length) { let tabs = ['contents', 'settings', 'styles']; tabs.splice(tabs.indexOf(activeTab), 1); if (sectionSettings[tabs[0]] && sectionSettings[tabs[0]].length) { activeTab = tabs[0]; } else if (sectionSettings[tabs[1]] && sectionSettings[tabs[1]].length) { activeTab = tabs[1]; } else { activeTab = tabs[2]; } } return (

      {this.props.title}

        {sectionSettings.contents.length && (sectionSettings.settings.length !== 0 || sectionSettings.styles.length!== 0) ? : null} {sectionSettings.settings.length ? : null} {sectionSettings.styles.length ? : null}
      {getControlsHTML('contents', sectionSettings.contents)} {getControlsHTML('settings', sectionSettings.settings)} {getControlsHTML('styles', sectionSettings.styles)}
      ); } }); module.exports = SectionControls; ================================================ FILE: engine/App/components/sidebar/Settings.jsx ================================================ const React = require('react'); const Reflux = require('reflux'); const PureMixin = require('react/lib/ReactComponentWithPureRenderMixin'); const OptionsPanelStore = require('../../../Optionspanel/OptionStore.js'); const Content = require('../../../Optionspanel/Content.jsx'); const Tabs = require('../../../Optionspanel/Tabs.jsx'); let Admin = React.createClass({ mixins: [Reflux.connect(OptionsPanelStore)], propTypes: { whenSettingsDirty: React.PropTypes.func, pagUpdate: React.PropTypes.func }, componentDidMount: function() { this._bindPlugins(); }, componentDidUpdate: function(prevProps, prevState) { this._bindPlugins(); }, componentWillUnmount: function() { this._unbindPlugins(); }, _bindPlugins(){ jQuery('select.form-control').selectpicker(); jQuery('[data-toggle="tooltip"]').tooltip() }, _unbindPlugins(){ jQuery('select.form-control').unbind(); jQuery('[data-toggle="tooltip"]').unbind() }, render(){ console.log("rendering Admin from settings file"); let panel = this.state.optionPanel.get(this.state.activeTabIndex); return (
      {!panel? null: }
      ); } }); module.exports = Admin; ================================================ FILE: engine/App/components/sidebar/Sidebar.jsx ================================================ const _ = require('underscore'); const swal = require('sweetalert'); const React = require('react'); const Tab = require('./Tab.jsx'); const TabPane = require('../../../shared/components/TabPane.jsx'); const OptionActions = require('../../../Optionspanel/OptionActions.js'); const SectionTransformer = require('../../../shared/onepager/sectionTransformer.js'); const ODataStore = require('../../../shared/onepager/ODataStore.js'); const AppActions = require('../../flux/AppActions.js'); const AppStore = require('../../AppStore.js'); const SectionList = require('../section-list/SectionList.jsx'); const SectionControls = require('./SectionControls.jsx'); const Settings = require("./Settings.jsx"); const Menu = require("./Menu.jsx"); const $ = jQuery; // const Footer = require('./../section-list/Footer.jsx'); const BlockCollection = require('../blocks/BlockCollection.jsx'); const PopupModal = require('../../../shared/components/PopupModal.jsx'); import notify from '../../../shared/plugins/notify.js'; import cx from "classnames"; import './assets/overlay.less'; const {opi18n:i18n} = onepager; let Sidebar = React.createClass({ // we need to optimize this with immutability // mixins: [PureMixin], collapseSidebar(){ AppActions.collapseSidebar(!this.props.collapseSidebar) }, getInitialState(){ return { saving: false, collapse: false, isSettingsDirty: false, saveTemplateLoading:false, exportLoading:false, modalActiveTab:'', savedTemplates:'' }; }, componentDidMount(){ this._unsavedAlert(); this._initNiceScroll(); // $('body #onepager-preview').find('iframe#onepager-iframe').wrap("
      "); this.setState({ savedTemplates:this.props.savedTemplates }) }, componentWillReceiveProps (nextProps){ this.setState({ modalActiveTab:nextProps.modalActiveTabName, savedTemplates:nextProps.savedTemplates }); }, /** * handle section update */ handleSave(){ let updated = AppStore.save(); // return a promise this.setState({saving: true}); updated.then(()=> { this.setState({saving: false}); }, ()=> { this.setState({saving: false}); swal(i18n.error.save); }); }, /** * handle global settings * Need to move this function * to another part of this application */ handleGlobalSettingsSave(){ let serializedSections = SectionTransformer.serializeSections(this.props.sections); let isSectionsDirty = AppStore.isDirty(); let updated = OptionActions.syncWithSections .triggerPromise(serializedSections, (sections)=> { AppStore.settingsChanged(sections, isSectionsDirty); }); this.setState({saving: true}); updated.then(()=> { this.setState({isSettingsDirty: false, saving: false}); }, ()=> { this.setState({saving: false}); swal(i18n.error.save); }); }, /** * handle page settings option panel * update the database */ handlePageSettingsSave(){ let serializedSections = SectionTransformer.serializeSections(this.props.sections); let isSectionsDirty = AppStore.isDirty(); // return a promise let updated = OptionActions.syncPageWithSections .triggerPromise(serializedSections, (sections)=> { AppStore.settingsChanged(sections, isSectionsDirty); }); this.setState({saving: true}); updated.then(()=> { this.setState({isSettingsDirty: false, saving: false}); }, ()=> { this.setState({saving: false}); swal(i18n.error.save); }); }, /** * handle page settings option panel * let know the builder * when any changes happen */ whenSettingsDirty(){ //FIXME: why the! should I use a promise here? OptionActions .isDirty .triggerPromise() .then(isSettingsDirty=> this.setState({isSettingsDirty})); }, /** * handle responsive iframe check */ handleResponsiveToggle(){ $('.op-footer-wrapper .save-option-panel').find('.save-option-lists').removeClass('open'); $('.op-footer-wrapper .responsive-check-panel').find('.responsive-devices').toggleClass('open'); }, /** * handle page option panel * for save template and export */ handleSaveOptionToggle(){ $('.op-footer-wrapper .responsive-check-panel').find('.responsive-devices').removeClass('open'); $('.op-footer-wrapper .save-option-panel').find('.save-option-lists').toggleClass('open'); }, /** * export page */ handleExport(){ if(this.props.isDirty){ return; } if(this.props.sections.length < 1){ notify.error(i18n.error.section_add); return; } let pageTitle = ODataStore.pageInfo.title; var userTemplate = prompt(i18n.user_input.template_name, pageTitle); if(userTemplate == null){ return; } let exported = AppStore.exportPage(); // return a promise this.setState({exportLoading: true}); let trimmedTitle = ODataStore.pageInfo.title.replace(/\s+/g, ''); var donwloadFileName = 'onepager' + trimmedTitle + ODataStore.pageId + Date.now(); var name = trimmedTitle || 'template-' + 'pageId'; var screenshot = name + ".jpg"; exported.then( res => { this.exportDownloadAsJson({ name: userTemplate, screenshot: screenshot, file:donwloadFileName, identifier: 'txonepager', type:'page', sections: res.sections }) this.setState({exportLoading: false}); }).catch( rej => { this.setState({exportLoading: false}); swal(i18n.error.save + rej); }); }, /** * data hold all section data of this page * @param {data} */ exportDownloadAsJson(data) { var dataStr = "data:text/json;charset=utf-8," + encodeURIComponent( JSON.stringify( data, null, 2 ) ); var dlAnchorElem = document.getElementById( 'exportAnchorElem' ); var downloadName = data.name ? data.name : data.file; dlAnchorElem.setAttribute( "href", dataStr ); dlAnchorElem.setAttribute( "download", downloadName + ".json" ); dlAnchorElem.click(); }, handleSaveTemplate(){ if(this.props.isDirty){ return; } if(this.props.sections.length < 1){ notify.error(i18n.error.section_add); return; } this.setState({ saveTemplateLoading: false }); this.handlePopupModal('tab-save-template'); }, /** * handle responsive iframe * @param {*} device */ handleResponsiveFrame(device){ if( ($('body').hasClass('iframe-desktop')) || ($('body').hasClass('iframe-tablet')) || ($('body').hasClass('iframe-mobile')) ){ $('body').removeClass('iframe-desktop iframe-tablet iframe-mobile'); } let previewDevice = 'iframe-' + device; $('body').addClass(previewDevice); }, _unsavedAlert(){ jQuery(window).on('beforeunload', ()=> { if (this.state.isSettingsDirty) { AppStore.setTabState({active: 'op-settings'}); return i18n.error.settings; } }); }, _initNiceScroll(){ // let tabContents = React.findDOMNode(this.refs.tabContents); // $(function () { // $(tabContents).niceScroll({cursorcolor: '#ddd', cursorborder: '0'}); // }); }, handleTabClick(id){ AppStore.setTabState({active: id}); }, /** * handle the popup * to insert the block to page */ handlePopupModal(tabName = 'tab-block'){ // set active tab name let activeTabName = tabName; this.setState({modalActiveTab: activeTabName}); // toggle the modal var modalElement = document.querySelector('#onepager-builder .popup-modal'); modalElement.classList.toggle('open'); }, _renderTabs(){ let handleTabClick = this.handleTabClick; let activeTab = this.props.sidebarTabState.active; return (
        {/* visibleOn=""/> */}
      ); }, render() { let {opi18n} = onepager; let {sections, blocks, activeSectionIndex, activeSection, pageSettingOptions, savedTemplates, pagePresets} = this.props; let sectionEditable = activeSectionIndex !== null; let activeTab = this.props.sidebarTabState.active; let sectionSettings = activeSection ? _.pick(activeSection, ['settings', 'contents', 'styles']) : {}; let handleTabClick = this.handleTabClick; let handlePopupModal = this.handlePopupModal; let update = (key, fields)=> { let section = _.copy(sections[activeSectionIndex]); section[key] = fields; AppActions.updateSection(activeSectionIndex, section); }; /** * live page update */ let pagUpdate = (key, fields)=> { AppActions.updatePageSettigs(key, fields); }; let {status, title} = ODataStore.pageInfo; let isSettingsDirty = this.state.isSettingsDirty; let {isDirty} = this.props; let buildModeUrl = ODataStore.disableBuildModeUrl; let previewLink = ODataStore.preview_link; let dashboardUrl = ODataStore.dashboardUrl; let getUpdatePlugins = ODataStore.getUpdatePlugins; let pluginUpdateUrl = ODataStore.pluginUpdateUrl; let onepagerProLoaded = ODataStore.onepagerProLoaded; let proUpgradeLink = ODataStore.proUpgradeLink; let saveButtonIcon = cx({ "fa fa-refresh fa-spin": this.state.saving, "fa fa-check": !this.state.saving }); let classes = cx({ "fa fa-chevron-left": !this.props.collapseSidebar, "fa fa-chevron-right": this.props.collapseSidebar }); let pageOptionClasses = cx({ "": !isDirty, "dirty": isDirty, }); let overlayClasses = cx({ "saving-overlay": this.state.saving }); let saveTemplateClasses = cx({ // "fa fa-refresh fa-spin fa-fw": this.state.saveTemplateLoading, "fa fa-save fa-fw": this.state.saveTemplateLoading, "fa fa-save fa-fw": !this.state.saveTemplateLoading }); let exportClasses = cx({ "fa fa-refresh fa-spin fa-fw": this.state.exportLoading, "fa fa-download fa-fw": !this.state.exportLoading }); return (
      {this._renderTabs()}
      {sectionEditable ? :

      {i18n.dropdown.section}

      }
      {/* {activeTab === "op-sections" ?
      : null } */}
      {! onepagerProLoaded ?

      {opi18n.unlock_pro_description}

      {opi18n.upgrade_to_pro}
      : null}
      {/* */}
      ); } }); module.exports = Sidebar; ================================================ FILE: engine/App/components/sidebar/Tab.jsx ================================================ const React = require('react'); const PureMixin = require('react/lib/ReactComponentWithPureRenderMixin'); const cx = require('classnames'); let Tab = React.createClass({ mixins: [PureMixin], propTypes: { id: React.PropTypes.string, visibleOn: React.PropTypes.string, icon: React.PropTypes.string, icon2: React.PropTypes.string, title: React.PropTypes.string }, getDefaultProps(){ return { active: "", visibleOn: "" }; }, handleClick(){ this.props.onClick(this.props.id); }, getIcon() { let icon = this.isActive() ? this.props.icon : this.props.icon2 || this.props.icon; return `fa fa-${icon}`; }, isActive(){ return this.props.active === this.props.id; }, isVisible(){ return this.props.parent || this.isActive() ? true : this.props.visibleOn === this.props.active; }, showTitle(){ return !this.props.parent && this.isActive(); }, render() { let icon = this.getIcon(); let title = this.props.title; let classes = { li: cx({ "hidden": !this.isVisible(), "active": this.isActive() }), title: cx({ hidden: !this.showTitle() }) }; return (
    • {title}
    • ); } }); module.exports = Tab; ================================================ FILE: engine/App/components/sidebar/assets/overlay.less ================================================ .txop-sidebar .saving-overlay{ position: absolute; top: 50px; right: 0; width: 100%; z-index: 9999; height: 100%; cursor: progress; background: rgba(0, 0, 0, 0.1); } ================================================ FILE: engine/App/components/sidebar/menu/AddToMenu.jsx ================================================ const $ = jQuery; //jshint ignore: line const PureComponent = require("react/lib/ReactComponentWithPureRenderMixin"); const React = require("react"); const _ = require("underscore"); const Button = require("react-bootstrap/lib/Button"); const Input = require("../../../../shared/components/form/Input.jsx"); const ODataStore = require("../../../../shared/onepager/ODataStore.js"); const notify = require("../../../../shared/plugins/notify.js"); const AppStore = require("../../../AppStore.js"); const AppActions = require("../../../flux/AppActions.js"); let AddToMenu = React.createClass({ mixins: [PureComponent], propTypes: { menu: React.PropTypes.number, index: React.PropTypes.number, id: React.PropTypes.string, title: React.PropTypes.string }, getInitialState(){ return { isValid: true }; }, componentDidUpdate() { this.isFormValid(); }, isFormValid(){ let itemId = this.refs.itemId.getValue(); let sections = _.map(AppStore.getAll().sections, function (section) { return section.id; }); sections.splice(this.props.index, 1); let isValid = sections.indexOf(itemId) === -1 && this.props.menu ? true : false; this.setState({isValid}); }, handleSubmit(){ let sectionIndex = this.props.index; let data = { action: "onepager_add_menu", menuId: this.props.menu, itemId: this.refs.itemId.getValue(), itemTitle: this.refs.itemTitle.getValue() }; let section = _.copy(AppStore.getAll().sections[sectionIndex]); section.id = data.itemId; section.title = data.itemTitle; section.key = data.itemId; $.post(ODataStore.ajaxUrl, data, (res)=> { if (res && res.success) { notify.success("successfully added menu"); AppActions.updateSection(sectionIndex, section); AppActions.reloadSections(); } else { notify.warning("failed to add menu"); } }); }, render(){ let {title, id} = this.props; let fields = [ { type: "text", id: "name", value: title, label: "Menu name", ref: "itemTitle", placeholder: "Item name", onChange: this.isFormValid }, { type: "text", id: "id", value: id, label: "Menu ID", ref: "itemId", addonBefore: "#", placeholder: "Item Id", onChange: this.isFormValid } ]; return (
      { fields.map(field=> { return ; }) }
      ); } }); module.exports = AddToMenu; ================================================ FILE: engine/App/components/sidebar/menu/style.less ================================================ ================================================ FILE: engine/App/components/templates/ImportTemplate.jsx ================================================ const React = require('react'); const _ = require('underscore'); const Alert = require('react-bootstrap/lib/Alert'); const Button = require('react-bootstrap/lib/Button'); const PureMixin = require('react/lib/ReactComponentWithPureRenderMixin'); const Template = require('./Template.jsx'); const Select = require("../../../shared/components/form/Select.jsx"); // const AppStore = require('../../stores/AppStore'); const swal = require('sweetalert'); const AppStore = require('../../AppStore'); import cx from "classnames"; const {opi18n:i18n} = onepager; let ImportTemplate = React.createClass({ getInitialState(){ return { selectedFileData: null, loading:false, error:'' }; }, mixins: [PureMixin], handleTemplateImport(event){ this.setState({loading:true}); const files = event.target.files[0]; this.fileReader = new FileReader(); this.fileReader.readAsText(files); this.fileReader.onload = event => { let jsonData = JSON.parse(event.target.result); if( 'txonepager' != jsonData.identifier ){ this.setState({ error: i18n.error.wrong_json, loading:false }) }else{ this.setState({error: ''}); let importPromise = AppStore.importTemplate(jsonData); importPromise.then( res => { AppStore.updateModalTemplate(res); this.setState({loading:false}) } ).catch( rej => { this.setState({loading:false}); swal(rej); } ); } this.setState({ selectedFileData: JSON.parse(event.target.result) }); }; }, render() { console.log("importing template"); let importButtonIcon = cx({ "fa fa-refresh fa-spin": this.state.loading, "fa fa-upload": !this.state.loading }); return (
      {this.state.error ? this.state.error : null}
      {/* */}
      ); } }); module.exports = ImportTemplate; ================================================ FILE: engine/App/components/templates/SaveTemplate.jsx ================================================ const React = require('react'); const _ = require('underscore'); const Alert = require('react-bootstrap/lib/Alert'); const Button = require('react-bootstrap/lib/Button'); const PureMixin = require('react/lib/ReactComponentWithPureRenderMixin'); const Template = require('./Template.jsx'); const Select = require("../../../shared/components/form/Select.jsx"); const swal = require('sweetalert'); const AppStore = require('../../AppStore'); import cx from "classnames"; const {opi18n:i18n} = onepager; let SaveTemplate = React.createClass({ mixins: [PureMixin], getInitialState(){ return { name: null, loading:false }; }, handleNameInput(event){ const name = event.target.value; this.setState({ name: name }) }, handleSaveTemplateFormSubmit(e){ e.preventDefault(); this.setState({loading:true}); let name = this.state.name; let type = 'page'; let importPromise = AppStore.saveTemplate(name, type); importPromise.then( res => { AppStore.syncSavedTemplateLibrary(res); this.setState({ name: null, loading:false }); } ).catch( rej => { this.setState({loading:false}); swal(rej); } ); }, render() { let saveButtonIcon = cx({ "fa fa-refresh fa-spin": this.state.loading, }); return (

      {i18n.save_page_op_library}

      {/*

      Your page content will be available for export and reuse on any page or website

      */}
      ); } }); module.exports = SaveTemplate; ================================================ FILE: engine/App/components/templates/SavedTemplates.jsx ================================================ const React = require('react'); const _ = require('underscore'); const Alert = require('react-bootstrap/lib/Alert'); const Button = require('react-bootstrap/lib/Button'); const PureMixin = require('react/lib/ReactComponentWithPureRenderMixin'); const Template = require('./Template.jsx'); const Select = require("../../../shared/components/form/Select.jsx"); const {opi18n:i18n} = onepager; let SavedTemplates = React.createClass({ getInitialState(){ return { templates: '', loading:false }; }, // propTypes: { // templates: React.PropTypes.array // }, componentDidMount(){ this.setState({ templates: this.props.templates }); }, componentWillReceiveProps (nextProps){ this.setState({ templates: nextProps.templates }); }, handleLoadingState(status){ this.setState({loading:status}) }, render() { console.log("rendering saved templates"); let templates = this.state.templates; return (
      {this.state.loading ? : null }
      {templates.length > 0 ? ( {/* */} {templates.map(template =>
      ID{i18n.thead.name} {i18n.thead.type} {i18n.thead.created_by} {i18n.thead.created_at} {i18n.thead.action}