Issues (39)

Security Analysis    no request data  

This project does not seem to handle request data directly as such no vulnerable execution paths were found.

  Cross-Site Scripting
Cross-Site Scripting enables an attacker to inject code into the response of a web-request that is viewed by other users. It can for example be used to bypass access controls, or even to take over other users' accounts.
  File Exposure
File Exposure allows an attacker to gain access to local files that he should not be able to access. These files can for example include database credentials, or other configuration files.
  File Manipulation
File Manipulation enables an attacker to write custom data to files. This potentially leads to injection of arbitrary code on the server.
  Object Injection
Object Injection enables an attacker to inject an object into PHP code, and can lead to arbitrary code execution, file exposure, or file manipulation attacks.
  Code Injection
Code Injection enables an attacker to execute arbitrary code on the server.
  Response Splitting
Response Splitting can be used to send arbitrary responses.
  File Inclusion
File Inclusion enables an attacker to inject custom files into PHP's file loading mechanism, either explicitly passed to include, or for example via PHP's auto-loading mechanism.
  Command Injection
Command Injection enables an attacker to inject a shell command that is execute with the privileges of the web-server. This can be used to expose sensitive data, or gain access of your server.
  SQL Injection
SQL Injection enables an attacker to execute arbitrary SQL code on your database server gaining access to user data, or manipulating user data.
  XPath Injection
XPath Injection enables an attacker to modify the parts of XML document that are read. If that XML document is for example used for authentication, this can lead to further vulnerabilities similar to SQL Injection.
  LDAP Injection
LDAP Injection enables an attacker to inject LDAP statements potentially granting permission to run unauthorized queries, or modify content inside the LDAP tree.
  Header Injection
  Other Vulnerability
This category comprises other attack vectors such as manipulating the PHP runtime, loading custom extensions, freezing the runtime, or similar.
  Regex Injection
Regex Injection enables an attacker to execute arbitrary code in your PHP process.
  XML Injection
XML Injection enables an attacker to read files on your local filesystem including configuration files, or can be abused to freeze your web-server process.
  Variable Injection
Variable Injection enables an attacker to overwrite program variables with custom data, and can lead to further vulnerabilities.
Unfortunately, the security analysis is currently not available for your project. If you are a non-commercial open-source project, please contact support to gain access.

code/api/GoogleFontProvider.php (2 issues)

Upgrade to new PHP Analysis Engine

These results are based on our legacy PHP analysis, consider migrating to our new PHP analysis engine instead. Learn more

1
<?php
2
3
class GoogleFontProvider extends Object
0 ignored issues
show
Coding Style Compatibility introduced by
PSR1 recommends that each class must be in a namespace of at least one level to avoid collisions.

You can fix this by adding a namespace to your class:

namespace YourVendor;

class YourClass { }

When choosing a vendor namespace, try to pick something that is not too generic to avoid conflicts with other libraries.

Loading history...
4
{
5
6
    /**
7
     *
8
     * @param  array | string
9
     * @return
10
     */
11
    function getLink($names)
0 ignored issues
show
It is generally recommended to explicitly declare the visibility for methods.

Adding explicit visibility (private, protected, or public) is generally recommend to communicate to other developers how, and from where this method is intended to be used.

Loading history...
12
    {
13
        $test = $this->fullList();
14
        if(! is_array($names)) {
15
            $names = [$names];
16
        }
17
        $links = [];
18
        foreach($names as $name) {
19
            if(isset($test[$name])) {
20
                $links[$name] = urlencode(str_replace(' ', '+', $name));
21
            }
22
        }
23
        if(count($links)) {
24
            return '<link href="https://fonts.googleapis.com/css?family='.implode('%7c', $links).'" rel="stylesheet">';
25
        }
26
    }
27
28
    public function fullList ()
29
    {
30
        $list = [
31
            'ABeeZee',
32
            'Abel',
33
            'Abhaya Libre',
34
            'Abril Fatface',
35
            'Aclonica',
36
            'Acme',
37
            'Actor',
38
            'Adamina',
39
            'Advent Pro',
40
            'Aguafina Script',
41
            'Akronim',
42
            'Aladin',
43
            'Aldrich',
44
            'Alef',
45
            'Alegreya',
46
            'Alegreya SC',
47
            'Alegreya Sans',
48
            'Alegreya Sans SC',
49
            'Alex Brush',
50
            'Alfa Slab One',
51
            'Alice',
52
            'Alike',
53
            'Alike Angular',
54
            'Allan',
55
            'Allerta',
56
            'Allerta Stencil',
57
            'Allura',
58
            'Almendra',
59
            'Almendra Display',
60
            'Almendra SC',
61
            'Amarante',
62
            'Amaranth',
63
            'Amatic SC',
64
            'Amatica SC',
65
            'Amethysta',
66
            'Amiko',
67
            'Amiri',
68
            'Amita',
69
            'Anaheim',
70
            'Andada',
71
            'Andika',
72
            'Angkor',
73
            'Annie Use Your Telescope',
74
            'Anonymous Pro',
75
            'Antic',
76
            'Antic Didone',
77
            'Antic Slab',
78
            'Anton',
79
            'Arapey',
80
            'Arbutus',
81
            'Arbutus Slab',
82
            'Architects Daughter',
83
            'Archivo',
84
            'Archivo Black',
85
            'Archivo Narrow',
86
            'Aref Ruqaa',
87
            'Arima Madurai',
88
            'Arimo',
89
            'Arizonia',
90
            'Armata',
91
            'Arsenal',
92
            'Artifika',
93
            'Arvo',
94
            'Arya',
95
            'Asap',
96
            'Asap Condensed',
97
            'Asar',
98
            'Asset',
99
            'Assistant',
100
            'Astloch',
101
            'Asul',
102
            'Athiti',
103
            'Atma',
104
            'Atomic Age',
105
            'Aubrey',
106
            'Audiowide',
107
            'Autour One',
108
            'Average',
109
            'Average Sans',
110
            'Averia Gruesa Libre',
111
            'Averia Libre',
112
            'Averia Sans Libre',
113
            'Averia Serif Libre',
114
            'Bad Script',
115
            'Bahiana',
116
            'Baloo',
117
            'Baloo Bhai',
118
            'Baloo Bhaina',
119
            'Baloo Chettan',
120
            'Baloo Da',
121
            'Baloo Paaji',
122
            'Baloo Tamma',
123
            'Baloo Thambi',
124
            'Balthazar',
125
            'Bangers',
126
            'Barrio',
127
            'Basic',
128
            'Battambang',
129
            'Baumans',
130
            'Bayon',
131
            'Belgrano',
132
            'Bellefair',
133
            'Belleza',
134
            'BenchNine',
135
            'Bentham',
136
            'Berkshire Swash',
137
            'Bevan',
138
            'Bigelow Rules',
139
            'Bigshot One',
140
            'Bilbo',
141
            'Bilbo Swash Caps',
142
            'BioRhyme',
143
            'BioRhyme Expanded',
144
            'Biryani',
145
            'Bitter',
146
            'Black Ops One',
147
            'Bokor',
148
            'Bonbon',
149
            'Boogaloo',
150
            'Bowlby One',
151
            'Bowlby One SC',
152
            'Brawler',
153
            'Bree Serif',
154
            'Bubblegum Sans',
155
            'Bubbler One',
156
            'Buda',
157
            'Buenard',
158
            'Bungee',
159
            'Bungee Hairline',
160
            'Bungee Inline',
161
            'Bungee Outline',
162
            'Bungee Shade',
163
            'Butcherman',
164
            'Butterfly Kids',
165
            'Cabin',
166
            'Cabin Condensed',
167
            'Cabin Sketch',
168
            'Caesar Dressing',
169
            'Cagliostro',
170
            'Cairo',
171
            'Calligraffitti',
172
            'Cambay',
173
            'Cambo',
174
            'Candal',
175
            'Cantarell',
176
            'Cantata One',
177
            'Cantora One',
178
            'Capriola',
179
            'Cardo',
180
            'Carme',
181
            'Carrois Gothic',
182
            'Carrois Gothic SC',
183
            'Carter One',
184
            'Catamaran',
185
            'Caudex',
186
            'Caveat',
187
            'Caveat Brush',
188
            'Cedarville Cursive',
189
            'Ceviche One',
190
            'Changa',
191
            'Changa One',
192
            'Chango',
193
            'Chathura',
194
            'Chau Philomene One',
195
            'Chela One',
196
            'Chelsea Market',
197
            'Chenla',
198
            'Cherry Cream Soda',
199
            'Cherry Swash',
200
            'Chewy',
201
            'Chicle',
202
            'Chivo',
203
            'Chonburi',
204
            'Cinzel',
205
            'Cinzel Decorative',
206
            'Clicker Script',
207
            'Coda',
208
            'Coda Caption',
209
            'Codystar',
210
            'Coiny',
211
            'Combo',
212
            'Comfortaa',
213
            'Coming Soon',
214
            'Concert One',
215
            'Condiment',
216
            'Content',
217
            'Contrail One',
218
            'Convergence',
219
            'Cookie',
220
            'Copse',
221
            'Corben',
222
            'Cormorant',
223
            'Cormorant Garamond',
224
            'Cormorant Infant',
225
            'Cormorant SC',
226
            'Cormorant Unicase',
227
            'Cormorant Upright',
228
            'Courgette',
229
            'Cousine',
230
            'Coustard',
231
            'Covered By Your Grace',
232
            'Crafty Girls',
233
            'Creepster',
234
            'Crete Round',
235
            'Crimson Text',
236
            'Croissant One',
237
            'Crushed',
238
            'Cuprum',
239
            'Cutive',
240
            'Cutive Mono',
241
            'Damion',
242
            'Dancing Script',
243
            'Dangrek',
244
            'David Libre',
245
            'Dawning of a New Day',
246
            'Days One',
247
            'Dekko',
248
            'Delius',
249
            'Delius Swash Caps',
250
            'Delius Unicase',
251
            'Della Respira',
252
            'Denk One',
253
            'Devonshire',
254
            'Dhurjati',
255
            'Didact Gothic',
256
            'Diplomata',
257
            'Diplomata SC',
258
            'Domine',
259
            'Donegal One',
260
            'Doppio One',
261
            'Dorsa',
262
            'Dosis',
263
            'Dr Sugiyama',
264
            'Droid Sans',
265
            'Droid Sans Mono',
266
            'Droid Serif',
267
            'Duru Sans',
268
            'Dynalight',
269
            'EB Garamond',
270
            'Eagle Lake',
271
            'Eater',
272
            'Economica',
273
            'Eczar',
274
            'Ek Mukta',
275
            'El Messiri',
276
            'Electrolize',
277
            'Elsie',
278
            'Elsie Swash Caps',
279
            'Emblema One',
280
            'Emilys Candy',
281
            'Engagement',
282
            'Englebert',
283
            'Enriqueta',
284
            'Erica One',
285
            'Esteban',
286
            'Euphoria Script',
287
            'Ewert',
288
            'Exo',
289
            'Exo 2',
290
            'Expletus Sans',
291
            'Fanwood Text',
292
            'Farsan',
293
            'Fascinate',
294
            'Fascinate Inline',
295
            'Faster One',
296
            'Fasthand',
297
            'Fauna One',
298
            'Faustina',
299
            'Federant',
300
            'Federo',
301
            'Felipa',
302
            'Fenix',
303
            'Finger Paint',
304
            'Fira Mono',
305
            'Fira Sans',
306
            'Fira Sans Condensed',
307
            'Fira Sans Extra Condensed',
308
            'Fjalla One',
309
            'Fjord One',
310
            'Flamenco',
311
            'Flavors',
312
            'Fondamento',
313
            'Fontdiner Swanky',
314
            'Forum',
315
            'Francois One',
316
            'Frank Ruhl Libre',
317
            'Freckle Face',
318
            'Fredericka the Great',
319
            'Fredoka One',
320
            'Freehand',
321
            'Fresca',
322
            'Frijole',
323
            'Fruktur',
324
            'Fugaz One',
325
            'GFS Didot',
326
            'GFS Neohellenic',
327
            'Gabriela',
328
            'Gafata',
329
            'Galada',
330
            'Galdeano',
331
            'Galindo',
332
            'Gentium Basic',
333
            'Gentium Book Basic',
334
            'Geo',
335
            'Geostar',
336
            'Geostar Fill',
337
            'Germania One',
338
            'Gidugu',
339
            'Gilda Display',
340
            'Give You Glory',
341
            'Glass Antiqua',
342
            'Glegoo',
343
            'Gloria Hallelujah',
344
            'Goblin One',
345
            'Gochi Hand',
346
            'Gorditas',
347
            'Goudy Bookletter 1911',
348
            'Graduate',
349
            'Grand Hotel',
350
            'Gravitas One',
351
            'Great Vibes',
352
            'Griffy',
353
            'Gruppo',
354
            'Gudea',
355
            'Gurajada',
356
            'Habibi',
357
            'Halant',
358
            'Hammersmith One',
359
            'Hanalei',
360
            'Hanalei Fill',
361
            'Handlee',
362
            'Hanuman',
363
            'Happy Monkey',
364
            'Harmattan',
365
            'Headland One',
366
            'Heebo',
367
            'Henny Penny',
368
            'Herr Von Muellerhoff',
369
            'Hind',
370
            'Hind Guntur',
371
            'Hind Madurai',
372
            'Hind Siliguri',
373
            'Hind Vadodara',
374
            'Holtwood One SC',
375
            'Homemade Apple',
376
            'Homenaje',
377
            'IM Fell DW Pica',
378
            'IM Fell DW Pica SC',
379
            'IM Fell Double Pica',
380
            'IM Fell Double Pica SC',
381
            'IM Fell English',
382
            'IM Fell English SC',
383
            'IM Fell French Canon',
384
            'IM Fell French Canon SC',
385
            'IM Fell Great Primer',
386
            'IM Fell Great Primer SC',
387
            'Iceberg',
388
            'Iceland',
389
            'Imprima',
390
            'Inconsolata',
391
            'Inder',
392
            'Indie Flower',
393
            'Inika',
394
            'Inknut Antiqua',
395
            'Irish Grover',
396
            'Istok Web',
397
            'Italiana',
398
            'Italianno',
399
            'Itim',
400
            'Jacques Francois',
401
            'Jacques Francois Shadow',
402
            'Jaldi',
403
            'Jim Nightshade',
404
            'Jockey One',
405
            'Jolly Lodger',
406
            'Jomhuria',
407
            'Josefin Sans',
408
            'Josefin Slab',
409
            'Joti One',
410
            'Judson',
411
            'Julee',
412
            'Julius Sans One',
413
            'Junge',
414
            'Jura',
415
            'Just Another Hand',
416
            'Just Me Again Down Here',
417
            'Kadwa',
418
            'Kalam',
419
            'Kameron',
420
            'Kanit',
421
            'Kantumruy',
422
            'Karla',
423
            'Karma',
424
            'Katibeh',
425
            'Kaushan Script',
426
            'Kavivanar',
427
            'Kavoon',
428
            'Kdam Thmor',
429
            'Keania One',
430
            'Kelly Slab',
431
            'Kenia',
432
            'Khand',
433
            'Khmer',
434
            'Khula',
435
            'Kite One',
436
            'Knewave',
437
            'Kotta One',
438
            'Koulen',
439
            'Kranky',
440
            'Kreon',
441
            'Kristi',
442
            'Krona One',
443
            'Kumar One',
444
            'Kumar One Outline',
445
            'Kurale',
446
            'La Belle Aurore',
447
            'Laila',
448
            'Lakki Reddy',
449
            'Lalezar',
450
            'Lancelot',
451
            'Lateef',
452
            'Lato',
453
            'League Script',
454
            'Leckerli One',
455
            'Ledger',
456
            'Lekton',
457
            'Lemon',
458
            'Lemonada',
459
            'Libre Baskerville',
460
            'Libre Franklin',
461
            'Life Savers',
462
            'Lilita One',
463
            'Lily Script One',
464
            'Limelight',
465
            'Linden Hill',
466
            'Lobster',
467
            'Lobster Two',
468
            'Londrina Outline',
469
            'Londrina Shadow',
470
            'Londrina Sketch',
471
            'Londrina Solid',
472
            'Lora',
473
            'Love Ya Like A Sister',
474
            'Loved by the King',
475
            'Lovers Quarrel',
476
            'Luckiest Guy',
477
            'Lusitana',
478
            'Lustria',
479
            'Macondo',
480
            'Macondo Swash Caps',
481
            'Mada',
482
            'Magra',
483
            'Maiden Orange',
484
            'Maitree',
485
            'Mako',
486
            'Mallanna',
487
            'Mandali',
488
            'Manuale',
489
            'Marcellus',
490
            'Marcellus SC',
491
            'Marck Script',
492
            'Margarine',
493
            'Marko One',
494
            'Marmelad',
495
            'Martel',
496
            'Martel Sans',
497
            'Marvel',
498
            'Mate',
499
            'Mate SC',
500
            'Maven Pro',
501
            'McLaren',
502
            'Meddon',
503
            'MedievalSharp',
504
            'Medula One',
505
            'Meera Inimai',
506
            'Megrim',
507
            'Meie Script',
508
            'Merienda',
509
            'Merienda One',
510
            'Merriweather',
511
            'Merriweather Sans',
512
            'Metal',
513
            'Metal Mania',
514
            'Metamorphous',
515
            'Metrophobic',
516
            'Michroma',
517
            'Milonga',
518
            'Miltonian',
519
            'Miltonian Tattoo',
520
            'Miniver',
521
            'Miriam Libre',
522
            'Mirza',
523
            'Miss Fajardose',
524
            'Mitr',
525
            'Modak',
526
            'Modern Antiqua',
527
            'Mogra',
528
            'Molengo',
529
            'Molle',
530
            'Monda',
531
            'Monofett',
532
            'Monoton',
533
            'Monsieur La Doulaise',
534
            'Montaga',
535
            'Montez',
536
            'Montserrat',
537
            'Montserrat Alternates',
538
            'Montserrat Subrayada',
539
            'Moul',
540
            'Moulpali',
541
            'Mountains of Christmas',
542
            'Mouse Memoirs',
543
            'Mr Bedfort',
544
            'Mr Dafoe',
545
            'Mr De Haviland',
546
            'Mrs Saint Delafield',
547
            'Mrs Sheppards',
548
            'Mukta Vaani',
549
            'Muli',
550
            'Mystery Quest',
551
            'NTR',
552
            'Neucha',
553
            'Neuton',
554
            'New Rocker',
555
            'News Cycle',
556
            'Niconne',
557
            'Nixie One',
558
            'Nobile',
559
            'Nokora',
560
            'Norican',
561
            'Nosifer',
562
            'Nothing You Could Do',
563
            'Noticia Text',
564
            'Noto Sans',
565
            'Noto Serif',
566
            'Nova Cut',
567
            'Nova Flat',
568
            'Nova Mono',
569
            'Nova Oval',
570
            'Nova Round',
571
            'Nova Script',
572
            'Nova Slim',
573
            'Nova Square',
574
            'Numans',
575
            'Nunito',
576
            'Nunito Sans',
577
            'Odor Mean Chey',
578
            'Offside',
579
            'Old Standard TT',
580
            'Oldenburg',
581
            'Oleo Script',
582
            'Oleo Script Swash Caps',
583
            'Open Sans',
584
            'Open Sans Condensed',
585
            'Oranienbaum',
586
            'Orbitron',
587
            'Oregano',
588
            'Orienta',
589
            'Original Surfer',
590
            'Oswald',
591
            'Over the Rainbow',
592
            'Overlock',
593
            'Overlock SC',
594
            'Overpass',
595
            'Overpass Mono',
596
            'Ovo',
597
            'Oxygen',
598
            'Oxygen Mono',
599
            'PT Mono',
600
            'PT Sans',
601
            'PT Sans Caption',
602
            'PT Sans Narrow',
603
            'PT Serif',
604
            'PT Serif Caption',
605
            'Pacifico',
606
            'Padauk',
607
            'Palanquin',
608
            'Palanquin Dark',
609
            'Pangolin',
610
            'Paprika',
611
            'Parisienne',
612
            'Passero One',
613
            'Passion One',
614
            'Pathway Gothic One',
615
            'Patrick Hand',
616
            'Patrick Hand SC',
617
            'Pattaya',
618
            'Patua One',
619
            'Pavanam',
620
            'Paytone One',
621
            'Peddana',
622
            'Peralta',
623
            'Permanent Marker',
624
            'Petit Formal Script',
625
            'Petrona',
626
            'Philosopher',
627
            'Piedra',
628
            'Pinyon Script',
629
            'Pirata One',
630
            'Plaster',
631
            'Play',
632
            'Playball',
633
            'Playfair Display',
634
            'Playfair Display SC',
635
            'Podkova',
636
            'Poiret One',
637
            'Poller One',
638
            'Poly',
639
            'Pompiere',
640
            'Pontano Sans',
641
            'Poppins',
642
            'Port Lligat Sans',
643
            'Port Lligat Slab',
644
            'Pragati Narrow',
645
            'Prata',
646
            'Preahvihear',
647
            'Press Start 2P',
648
            'Pridi',
649
            'Princess Sofia',
650
            'Prociono',
651
            'Prompt',
652
            'Prosto One',
653
            'Proza Libre',
654
            'Puritan',
655
            'Purple Purse',
656
            'Quando',
657
            'Quantico',
658
            'Quattrocento',
659
            'Quattrocento Sans',
660
            'Questrial',
661
            'Quicksand',
662
            'Quintessential',
663
            'Qwigley',
664
            'Racing Sans One',
665
            'Radley',
666
            'Rajdhani',
667
            'Rakkas',
668
            'Raleway',
669
            'Raleway Dots',
670
            'Ramabhadra',
671
            'Ramaraja',
672
            'Rambla',
673
            'Rammetto One',
674
            'Ranchers',
675
            'Rancho',
676
            'Ranga',
677
            'Rasa',
678
            'Rationale',
679
            'Ravi Prakash',
680
            'Redressed',
681
            'Reem Kufi',
682
            'Reenie Beanie',
683
            'Revalia',
684
            'Rhodium Libre',
685
            'Ribeye',
686
            'Ribeye Marrow',
687
            'Righteous',
688
            'Risque',
689
            'Roboto',
690
            'Roboto Condensed',
691
            'Roboto Mono',
692
            'Roboto Slab',
693
            'Rochester',
694
            'Rock Salt',
695
            'Rokkitt',
696
            'Romanesco',
697
            'Ropa Sans',
698
            'Rosario',
699
            'Rosarivo',
700
            'Rouge Script',
701
            'Rozha One',
702
            'Rubik',
703
            'Rubik Mono One',
704
            'Ruda',
705
            'Rufina',
706
            'Ruge Boogie',
707
            'Ruluko',
708
            'Rum Raisin',
709
            'Ruslan Display',
710
            'Russo One',
711
            'Ruthie',
712
            'Rye',
713
            'Sacramento',
714
            'Sahitya',
715
            'Sail',
716
            'Saira',
717
            'Saira Condensed',
718
            'Saira Extra Condensed',
719
            'Saira Semi Condensed',
720
            'Salsa',
721
            'Sanchez',
722
            'Sancreek',
723
            'Sansita',
724
            'Sarala',
725
            'Sarina',
726
            'Sarpanch',
727
            'Satisfy',
728
            'Scada',
729
            'Scheherazade',
730
            'Schoolbell',
731
            'Scope One',
732
            'Seaweed Script',
733
            'Secular One',
734
            'Sedgwick Ave',
735
            'Sedgwick Ave Display',
736
            'Sevillana',
737
            'Seymour One',
738
            'Shadows Into Light',
739
            'Shadows Into Light Two',
740
            'Shanti',
741
            'Share',
742
            'Share Tech',
743
            'Share Tech Mono',
744
            'Shojumaru',
745
            'Short Stack',
746
            'Shrikhand',
747
            'Siemreap',
748
            'Sigmar One',
749
            'Signika',
750
            'Signika Negative',
751
            'Simonetta',
752
            'Sintony',
753
            'Sirin Stencil',
754
            'Six Caps',
755
            'Skranji',
756
            'Slabo 13px',
757
            'Slabo 27px',
758
            'Slackey',
759
            'Smokum',
760
            'Smythe',
761
            'Sniglet',
762
            'Snippet',
763
            'Snowburst One',
764
            'Sofadi One',
765
            'Sofia',
766
            'Sonsie One',
767
            'Sorts Mill Goudy',
768
            'Source Code Pro',
769
            'Source Sans Pro',
770
            'Source Serif Pro',
771
            'Space Mono',
772
            'Special Elite',
773
            'Spectral',
774
            'Spicy Rice',
775
            'Spinnaker',
776
            'Spirax',
777
            'Squada One',
778
            'Sree Krushnadevaraya',
779
            'Sriracha',
780
            'Stalemate',
781
            'Stalinist One',
782
            'Stardos Stencil',
783
            'Stint Ultra Condensed',
784
            'Stint Ultra Expanded',
785
            'Stoke',
786
            'Strait',
787
            'Sue Ellen Francisco',
788
            'Suez One',
789
            'Sumana',
790
            'Sunshiney',
791
            'Supermercado One',
792
            'Sura',
793
            'Suranna',
794
            'Suravaram',
795
            'Suwannaphum',
796
            'Swanky and Moo Moo',
797
            'Syncopate',
798
            'Tangerine',
799
            'Taprom',
800
            'Tauri',
801
            'Taviraj',
802
            'Teko',
803
            'Telex',
804
            'Tenali Ramakrishna',
805
            'Tenor Sans',
806
            'Text Me One',
807
            'The Girl Next Door',
808
            'Tienne',
809
            'Tillana',
810
            'Timmana',
811
            'Tinos',
812
            'Titan One',
813
            'Titillium Web',
814
            'Trade Winds',
815
            'Trirong',
816
            'Trocchi',
817
            'Trochut',
818
            'Trykker',
819
            'Tulpen One',
820
            'Ubuntu',
821
            'Ubuntu Condensed',
822
            'Ubuntu Mono',
823
            'Ultra',
824
            'Uncial Antiqua',
825
            'Underdog',
826
            'Unica One',
827
            'UnifrakturCook',
828
            'UnifrakturMaguntia',
829
            'Unkempt',
830
            'Unlock',
831
            'Unna',
832
            'VT323',
833
            'Vampiro One',
834
            'Varela',
835
            'Varela Round',
836
            'Vast Shadow',
837
            'Vesper Libre',
838
            'Vibur',
839
            'Vidaloka',
840
            'Viga',
841
            'Voces',
842
            'Volkhov',
843
            'Vollkorn',
844
            'Voltaire',
845
            'Waiting for the Sunrise',
846
            'Wallpoet',
847
            'Walter Turncoat',
848
            'Warnes',
849
            'Wellfleet',
850
            'Wendy One',
851
            'Wire One',
852
            'Work Sans',
853
            'Yanone Kaffeesatz',
854
            'Yantramanav',
855
            'Yatra One',
856
            'Yellowtail',
857
            'Yeseva One',
858
            'Yesteryear',
859
            'Yrsa',
860
            'Zeyada',
861
            'Zilla Slab',
862
            'Zilla Slab Highlight'
863
        ];
864
        return array_combine($list, $list);
865
    }
866
}
867