-
Notifications
You must be signed in to change notification settings - Fork 6
/
output.merge.data.json
4223 lines (4223 loc) · 152 KB
/
output.merge.data.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
{
"fa-glass": {
"name": "fa-glass",
"keywords": ["cocktail", "alcohol", "beer", "wine", "liquor", "martini", "looking glass",
"field glass", "spyglass", "chalk", "chicken feed", "crank", "deoxyephedrine",
"ice", "meth", "methamphetamine", "methamphetamine hydrochloride", "methedrine",
"shabu", "trash", "glass in", "drinking glass", "glass over", "glaze", "glaze over",
"glaze", "glassful", "glassy", "mirror", "refracting telescope", "speed",
"pep pill", "upper", "amphetamine", "controlled substance", "enclose", "shut in",
"close in", "inclose", "container", "change", "furnish", "supply", "provide",
"render", "containerful", "solid", "glasswork", "glassware", "stick in", "inclose",
"put in", "insert", "introduce", "enclose", "scan", "water glass", "highball glass",
"liqueur glass", "goblet", "parfait glass", "pony", "rummer", "schooner", "seidel",
"shot glass", "snifter", "bumper", "brandy snifter", "tumbler", "brandy glass",
"jigger", "wineglass", "beer glass", "double-glaze", "laminated glass",
"water glass", "stained glass", "soluble glass", "soft glass", "sodium silicate",
"crown glass", "shatterproof glass", "safety glass", "wire glass", "pyrex",
"optical glass", "opal glass", "natural glass", "milk glass", "ground glass",
"lead glass"
]
},
"fa-music": {
"name": "fa-music",
"keywords": ["song", "radio", "singing", "note", "musical", "sounds", "medicine", "euphony",
"musical", "musician", "musical", "musician", "musician", "musical", "penalisation",
"penalization", "punishment", "penalty", "sound", "auditory sensation",
"auditory communication", "activity", "sound", "auditory sensation",
"music of the spheres", "melody", "prelude", "monody", "monophonic music",
"monophony", "mozart", "popularism", "stravinsky", "haydn", "antiphony", "chorus",
"instrumental music", "section", "brahms", "rhapsody", "strain", "air", "line",
"refrain", "chopin", "melodic line", "melodic phrase", "composition",
"concerted music", "music genre", "musical composition", "musical genre",
"musical harmony", "bach", "dance music", "musical style", "ballet", "tune", "opus",
"polytonality", "overture", "ta'ziyeh", "part music", "polytonalism", "polyphony",
"polyphonic music", "pizzicato", "syncopation", "piece of music", "piece", "vocal",
"vocal music", "wagner", "serialism", "genre", "gilbert and sullivan",
"serial music", "beethoven", "subdivision", "handel", "harmony", "intonation",
"instrumental music", "percussion", "carillon", "vocal music", "carillon playing",
"bell ringing", "whistling", "piano music", "vocalizing", "singing"
]
},
"fa-search": {
"name": "fa-search",
"keywords": ["magnifying glass", "zoom", "find", "query", "explore", "research", "lookup",
"hunt", "hunting", "look", "look for", "seek", "searcher", "searcher", "searcher",
"searcher", "investigate", "look into", "operation", "activity", "examine", "see",
"investigation", "investigating", "examination", "scrutiny", "examine", "see",
"higher cognitive process", "prospect", "cast about", "mapquest", "google",
"beat about", "re-explore", "cast around", "shakedown", "exploration", "forage",
"foraging", "frisk", "frisking", "looking", "looking for", "manhunt", "quest",
"ransacking", "rummage", "scouring", "seeking", "poke", "pry", "prospect", "nose",
"intrude", "hunt", "horn in", "cruise", "grope", "browse", "go after", "pursue",
"quest after", "quest for", "gather", "fumble", "dredge", "divine", "fish", "scour",
"finger", "feel", "seek out", "shop", "drag", "surf", "hunt", "want", "angle",
"grub", "leave no stone unturned", "rummage", "scan", "go", "comb", "strip-search",
"raid", "ransack", "rifle", "frisk", "hunt", "quest", "pursuit", "pursuance"
]
},
"fa-envelope-o": {
"name": "fa-envelope-o",
"inherit": ["fa-outline"],
"keywords": ["mail", "email", "send", "postal", "notes"]
},
"fa-heart": {
"name": "fa-heart",
"keywords": ["love", "valentines", "kisses", "romance", "pump", "ticker", "mettle", "nerve",
"spunk", "center", "centre", "eye", "middle", "center", "centre", "core", "essence",
"gist", "heart and soul", "inwardness", "kernel", "marrow", "meat", "nitty-gritty",
"nub", "pith", "substance", "sum", "bosom", "affection", "affectionateness",
"fondness", "philia", "tenderness", "warmheartedness", "warmness", "spirit",
"hearty", "internal organ", "viscus", "courage", "braveness", "courageousness",
"bravery", "country", "area", "mental object", "cognitive content", "content",
"hunch", "intuition", "suspicion", "feeling", "temperament", "disposition",
"variety meat", "organs", "two-dimensional figure", "plane figure", "playing card",
"major suit", "biauriculate heart", "athlete's heart", "midfield", "medical center",
"storm centre", "storm center", "seat", "center stage", "central city",
"centre stage", "city center", "city centre", "financial center", "hub",
"inner city", "midstream", "quintessence", "bare bones", "haecceity", "hypostasis",
"quiddity", "stuff", "soft spot", "regard", "protectiveness", "fond regard",
"respect", "attachment"
]
},
"fa-star": {
"name": "fa-star",
"keywords": ["rating", "planet", "asterisk", "leading", "prima", "starring", "stellar",
"asterisk", "star topology", "ace", "adept", "champion", "genius", "hotshot",
"maven", "mavin", "sensation", "superstar", "virtuoso", "whizz", "whiz", "wiz",
"wizard", "lead", "principal", "headliner", "stardom", "starry", "starry", "mark",
"grapheme", "graphic symbol", "graph", "character", "network topology", "topology",
"expert", "histrion", "thespian", "player", "role player", "actor",
"performing artist", "performer", "heavenly body", "celestial body", "plane figure",
"two-dimensional figure", "celestial body", "heavenly body", "do", "perform",
"execute", "feature", "have", "major", "extragalactic nebula", "galaxy",
"constellation", "track star", "television star", "movie star", "idol",
"matinee idol", "tv star", "film star", "co-star", "starlet", "pentagram",
"pentacle", "pentangle", "asterism", "hexagram", "red giant star", "multiple star",
"giant", "white dwarf star", "binary star", "neutron star", "nova", "sun",
"supergiant", "supernova", "binary", "white dwarf", "variable star", "variable",
"loadstar", "double star", "lodestar", "fixed star", "giant star", "red dwarf",
"red dwarf star", "red giant", "co-star", "co-star", "uranology", "astronomy",
"dramatics", "dramaturgy", "theatre", "theater", "dramatic art"
]
},
"fa-star-o": {
"name": "fa-star-o",
"inherit": ["fa-outline"],
"keywords": ["rating", "planet"]
},
"fa-user": {
"name": "fa-user",
"keywords": ["client", "person", "body", "man", "human", "woman", "exploiter", "drug user",
"substance abuser", "use", "use", "use", "selfish person", "somebody", "individual",
"someone", "soul", "person", "mortal", "mortal", "somebody", "person", "soul",
"individual", "someone", "addict", "head", "tripper", "wearer", "consumer",
"end user", "usufructuary", "utiliser", "utilizer"
]
},
"fa-film": {
"name": "fa-film",
"keywords": ["filming", "strip", "photography", "negative", "camera", "picture", "image",
"shoot", "take", "flick", "motion-picture show", "motion picture", "movie",
"moving-picture show", "moving picture", "pic", "picture", "picture show",
"plastic film", "photographic film", "celluloid", "cinema", "filming", "filmy",
"filming", "put down", "record", "enter", "production", "product", "show",
"wrapping", "sheet", "flat solid", "wrap", "wrapper", "photographic paper",
"photographic material", "medium", "object", "physical object", "put down", "enter",
"create", "record", "make", "reshoot", "collage film", "cinema verite", "3d",
"musical comedy", "docudrama", "documentary", "documentary film", "musical",
"musical theater", "feature", "feature film", "three-d", "telefilm", "film noir",
"final cut", "talking picture", "talkie", "slow motion", "home movie",
"infotainment", "skin flick", "silents", "silent picture", "silent movie",
"rough cut", "3-d", "short subject", "shoot-'em-up", "coming attraction",
"polaroid", "shrink-wrap", "negative", "motion-picture film", "microfilm",
"roll film", "roll", "reel", "movie film", "positive", "footage", "film clip",
"panchromatic film", "orthochromatic film", "x-ray film", "episode", "cine-film",
"sequence", "silver screen", "soap film", "scum", "slick", "microfilm",
"cinematize", "cinematise", "flick", "picture show", "movie", "picture", "pic",
"moving picture", "motion-picture show", "moving-picture show", "motion picture",
"artistic creation", "art", "artistic production", "business enterprise",
"business", "commercial enterprise"
]
},
"fa-th-large": {
"name": "fa-th-large",
"keywords": ["windows", "fenestrations", "layout", "table", "grid", "column", "cells",
"rows", "td", "scaffolding", "big", "quad", "half"
]
},
"fa-th": {
"name": "fa-th",
"keywords": ["windows", "fenestrations", "layout", "table", "grid", "column", "cells",
"rows", "td", "scaffolding", "atomic number 90", "thorium", "thursday", "metal",
"metallic element", "weekday", "radiothorium", "thorium-228"
]
},
"fa-th-list": {
"name": "fa-th-list",
"keywords": ["items", "bullets", "layout", "table", "grid", "rows", "scaffolding", "ol",
"ul", "li"
]
},
"fa-check": {
"name": "fa-check",
"keywords": ["checkmark", "done", "completed", "checkbox", "ready", "assay", "check out",
"chink", "chip", "check into", "check out", "check over", "check up on", "go over",
"look into", "suss out", "condition", "discipline", "train", "break", "crack",
"contain", "control", "curb", "hold", "hold in", "moderate", "arrest", "halt",
"hitch", "stay", "stop", "stoppage", "ascertain", "determine", "find out", "learn",
"see", "watch", "delay", "retard", "bank check", "cheque", "ascertain", "assure",
"control", "ensure", "insure", "see", "see to it", "checker", "chequer",
"confirmation", "substantiation", "verification", "check mark", "tick",
"check-out procedure", "checkout", "balk", "baulk", "deterrent", "handicap",
"hinderance", "hindrance", "impediment", "chit", "tab", "check off", "mark",
"mark off", "tick", "tick off", "agree", "correspond", "fit", "gibe", "jibe",
"match", "tally", "arrest", "contain", "hold back", "stop", "turn back", "bridle",
"curb", "checker", "checker", "appraisal", "assessment", "crack", "mar", "defect",
"blemish", "examine", "study", "analyze", "analyse", "canvass", "make grow",
"develop", "change", "keep back", "restrain", "hold back", "keep", "inaction",
"inactivity", "inactiveness", "modify", "alter", "change", "order of payment",
"bill of exchange", "draft", "verify", "draw", "cogent evidence", "proof", "mark",
"review", "inspection", "difficulty", "invoice", "account", "bill", "verify",
"equal", "be", "defend", "restraint", "stop", "halt", "stop", "weave", "obstruct",
"stymy", "stymie", "embarrass", "hinder", "blockade", "block", "chess move",
"consign", "charge", "move", "go", "consign", "charge", "examine", "see",
"obstruction", "attack", "aggress", "stop", "halt", "stop", "halt", "verify", "cut",
"issue", "make out", "write out", "countercheck", "stress test", "double check",
"apgar score", "paternity test", "watch", "keep an eye on", "follow", "observe",
"watch over", "mortify", "crack", "counteract", "train", "mortify", "suppress",
"damp", "subdue", "abnegate", "countercheck", "thermostat", "conquer", "stamp down",
"catch", "bate", "crucify", "deny", "countercheck", "logjam", "test", "stay",
"delay", "detain", "dampen", "blank check", "kite", "cashier's cheque",
"blank cheque", "bad cheque", "giro", "giro cheque", "personal cheque",
"treasurer's cheque", "treasurer's check", "counter check", "medicare payment",
"personal check", "payroll check", "medicare check", "paycheck", "bad check",
"certified cheque", "certified check", "cashier's check", "proof", "spot-check",
"proofread", "card", "double-check", "cross-check", "cover", "control", "cinch",
"redundancy check", "checksum", "parity check", "bed check", "crosscheck",
"odd-even check", "spot check", "obstruction", "drag", "diriment impediment",
"bind", "obstacle", "straitjacket", "millstone", "albatross", "receipt", "square",
"accord", "adhere", "agree", "align", "answer", "bear out", "befit", "beseem",
"coincide", "concord", "consist", "consort", "correlate", "corroborate",
"duplicate", "fit in", "harmonise", "harmonize", "homologize", "look", "parallel",
"pattern", "resemble", "rhyme", "rime", "suit", "support", "twin", "underpin",
"cut down", "cut out", "halt", "stem", "staunch", "stanch", "dog's-tooth check",
"houndstooth check", "hound's-tooth check", "dogstooth check", "dogs-tooth check",
"discovered check", "breathalyze", "screen", "test", "countercheck", "breathalyse",
"poke check", "crosscheck", "falconry", "chess game", "chess", "card game", "cards",
"chess game", "chess"
]
},
"fa-times": {
"name": "fa-times",
"keywords": ["x", "multiply", "multiplication", "mathematics", "arithmetics", "exit",
"close", "no", "none", "crossed out", "zero", "letter", "multiplication",
"arithmetic operation", "time period", "period", "period of time", "modern world",
"roman times", "present times", "contemporary world", "modern times"
]
},
"fa-search-plus": {
"name": "fa-search-plus",
"keywords": ["magnifying glass", "zoom in"]
},
"fa-search-minus": {
"name": "fa-search-minus",
"keywords": ["magnifying glass", "zoom out"]
},
"fa-power-off": {
"name": "fa-power-off",
"keywords": []
},
"fa-signal": {
"name": "fa-signal",
"keywords": ["bespeak", "betoken", "indicate", "point", "sign", "signaling", "sign",
"signalise", "signalize", "signalize", "signaller", "signaler", "signaling", "tell",
"communication", "intercommunicate", "communicate", "electricity",
"electrical energy", "power", "incitement", "provocation", "incitation",
"impressive", "auspicate", "betoken", "bode", "augur", "foretell", "mark", "omen",
"portend", "predict", "prefigure", "presage", "prognosticate", "forecast",
"foreshadow", "distress call", "distress signal", "dog-ear", "drumbeat",
"electronic signal", "alarm", "indicator", "input", "input signal", "number",
"output", "output signal", "phone number", "radio beacon", "radio beam",
"radiotelegraphic signal", "recording", "retreat", "start", "starting signal",
"storm signal", "symbol", "telegraphic signal", "telephone number", "ticktack",
"time signal", "visual signal", "warning signal", "whistle", "whistling",
"high sign", "alarum", "alert", "all clear", "animal communication", "beam",
"bugle call", "curfew", "whistle", "heliograph", "wigwag", "flag", "semaphore",
"interrupt"
]
},
"fa-cog": {
"name": "fa-cog",
"keywords": ["gear", "settings", "sprocket", "tooth", "subordinate", "foot soldier",
"underling", "subsidiary", "join", "roll out", "roll"
]
},
"fa-trash-o": {
"name": "fa-trash-o",
"inherit": ["fa-outline"],
"keywords": []
},
"fa-home": {
"name": "fa-home",
"keywords": ["home base", "home plate", "plate", "nursing home", "rest home", "family",
"house", "household", "menage", "interior", "internal", "national", "place", "base",
"abode", "domicile", "dwelling", "dwelling house", "habitation", "homely", "homy",
"homey", "bag", "base", "institution", "unit", "social unit", "abode", "residence",
"location", "housing", "living accommodations", "lodging", "environment", "rootage",
"beginning", "source", "origin", "root", "house", "domiciliate", "put up", "return",
"location", "domestic", "conjugal family", "foster family", "nuclear family",
"extended family", "menage a trois", "broken home", "foster home",
"home away from home", "home from home", "condominium", "yurt", "condo", "messuage",
"lodge", "pile dwelling", "fireside", "fixer-upper", "cliff dwelling",
"lake dwelling", "vacation home", "hearth", "hermitage", "indian lodge",
"semi-detached house", "homestead", "house", "baseball game", "baseball", "ball",
"sport", "athletics"
]
},
"fa-file-o": {
"name": "fa-file-o",
"inherit": ["fa-outline"],
"keywords": []
},
"fa-clock-o": {
"name": "fa-clock-o",
"inherit": ["fa-outline"],
"keywords": []
},
"fa-road": {
"name": "fa-road",
"keywords": ["route", "way", "way", "means", "agency", "shortcut", "corduroy", "crosscut",
"cutoff", "detour", "drive", "driveway", "highway", "line", "main road", "parkway",
"post road", "private road", "rail line", "railway line", "roadway",
"roundabout way", "access road", "side road", "skid road", "slip road", "speedway",
"thoroughfare", "track", "turnoff", "bypath", "byroad", "byway", "cart track",
"cartroad", "causeway", "clearway", "royal road"
]
},
"fa-download": {
"name": "fa-download",
"keywords": ["transfer"]
},
"fa-arrow-circle-o-down": {
"name": "fa-arrow-circle-o-down",
"keywords": []
},
"fa-arrow-circle-o-up": {
"name": "fa-arrow-circle-o-up",
"keywords": []
},
"fa-inbox": {
"name": "fa-inbox",
"keywords": []
},
"fa-play-circle-o": {
"name": "fa-play-circle-o",
"inherit": ["fa-outline"],
"keywords": []
},
"fa-repeat": {
"name": "fa-repeat",
"keywords": ["ingeminate", "iterate", "reiterate", "restate", "retell", "double",
"duplicate", "reduplicate", "replicate", "recapitulate", "reprise", "reprize",
"take over", "echo", "repetition", "recur", "repetition", "repeater", "repetitive",
"repetition", "repeating", "repeater", "repetitive", "repetition", "repetitive",
"tell", "reproduce", "spiel", "play", "move", "act", "let loose", "emit", "utter",
"let out", "periodic event", "recurrent event", "hap", "come about", "fall out",
"go on", "happen", "occur", "pass", "pass off", "take place", "dwell", "render",
"rephrase", "paraphrase", "interpret", "summarise", "resume", "ditto", "harp",
"summarize", "sum up", "cite", "quote", "perseverate", "translate", "reword",
"recapitulate", "copy", "replicate", "reduplicate", "geminate", "recite", "parrot",
"reecho", "regurgitate", "reproduce", "cuckoo", "cycle", "recurrence", "return",
"sequence", "rematch", "replay", "iterate", "cycle", "music"
]
},
"fa-refresh": {
"name": "fa-refresh",
"keywords": ["freshen", "refreshen", "brush up", "review", "freshen", "freshen up",
"refreshen", "freshen", "refresher", "refreshment", "refresher", "refreshment",
"modify", "alter", "change", "remember", "call up", "retrieve", "think",
"call back", "recollect", "recall", "change", "renew", "regenerate", "wash up",
"lave", "air", "air out", "vent", "ventilate"
]
},
"fa-list-alt": {
"name": "fa-list-alt",
"keywords": []
},
"fa-lock": {
"name": "fa-lock",
"keywords": ["ignition lock", "lock away", "lock in", "lock up", "put away", "shut away",
"shut up", "lock chamber", "interlace", "interlock", "engage", "mesh", "operate",
"curl", "ringlet", "whorl", "interlock", "lockage", "locker", "lockage",
"restraint", "constraint", "confine", "enclosure", "take hold", "hold", "move",
"displace", "hair", "squeeze", "hug", "bosom", "embrace", "fixing", "fastening",
"holdfast", "fastener", "mechanism", "wrestling hold", "engage", "make", "build",
"construct", "fasten", "fix", "secure", "overcome", "overpower", "overtake",
"overwhelm", "whelm", "sweep over", "pass", "flip", "ride", "switch", "throw",
"dreadlock", "sausage curl", "crimp", "forelock", "cylinder lock", "lever lock",
"latch", "window lock", "combination lock", "door latch", "doorlock", "sash lock",
"sash fastener", "padlock", "hammerlock", "headlock", "bolt", "padlock"
]
},
"fa-flag": {
"name": "fa-flag",
"keywords": ["signal flag", "ease off", "ease up", "slacken off", "flagstone", "pin",
"masthead", "fleur-de-lis", "iris", "sword lily", "droop", "sag", "swag",
"visual signal", "diminish", "lessen", "fall", "decrease", "paving stone",
"golf equipment", "list", "listing", "iridaceous plant", "drop down", "drop",
"sink", "tail", "sign", "signalize", "signalise", "signal", "adorn", "beautify",
"decorate", "ornament", "grace", "embellish", "emblem", "mark", "genus iris",
"code flag", "nautical signal flag", "red flag", "pennant", "vernal iris",
"blue flag", "beardless iris", "yellow flag", "yellow iris", "bearded iris",
"yellow water flag", "iris xiphioides", "iris virginica", "iris versicolor",
"iris verna", "iris pseudacorus", "iris persica", "iris foetidissima",
"iris cristata", "roast beef plant", "southern blue flag", "dwarf iris",
"bulbous iris", "persian iris", "english iris", "gladdon iris", "gladdon",
"stinking gladwyn", "stinking iris", "bag", "slouch", "slump", "fanion", "banner",
"battle flag", "black flag", "blackjack", "colors", "colours", "confederate flag",
"ensign", "american flag", "flag of truce", "jack", "jolly roger", "national flag",
"old glory", "pennant", "pennon", "pirate flag", "standard", "star-spangled banner",
"stars and bars", "stars and stripes", "streamer", "tricolor", "tricolour",
"union flag", "union jack", "waft", "white flag", "yellow jack"
]
},
"fa-headphones": {
"name": "fa-headphones",
"keywords": []
},
"fa-volume-off": {
"name": "fa-volume-off",
"keywords": []
},
"fa-volume-down": {
"name": "fa-volume-down",
"keywords": []
},
"fa-volume-up": {
"name": "fa-volume-up",
"keywords": []
},
"fa-qrcode": {
"name": "fa-qrcode",
"keywords": []
},
"fa-barcode": {
"name": "fa-barcode",
"keywords": []
},
"fa-tag": {
"name": "fa-tag",
"keywords": ["ticket", "chase", "chase after", "dog", "give chase", "go after", "tail",
"track", "trail", "rag", "shred", "tag end", "tatter", "label", "mark", "label",
"follow", "pursue", "piece of cloth", "piece of material", "attach", "child's game",
"label", "call", "know as", "be known as", "name", "touching", "touch", "rhyme",
"rime", "touch", "name tag", "price tag", "dog tag", "tree", "trace", "run down",
"hound", "hunt", "quest", "pine-tar rag", "badge", "point", "code", "calibrate",
"brandmark", "trademark", "brand", "nab", "ball", "baseball game", "baseball",
"verse", "poetry", "poesy", "ball", "baseball game", "baseball"
]
},
"fa-tags": {
"name": "fa-tags",
"keywords": []
},
"fa-book": {
"name": "fa-book",
"keywords": ["volume", "account book", "book of account", "ledger", "leger", "al-qur'an",
"koran", "quran", "record", "record book", "playscript", "script", "bible",
"christian bible", "good book", "holy scripture", "holy writ", "scripture", "word",
"word of god", "rule book", "hold", "reserve", "booklet", "booklet", "bookable",
"booking", "booklet", "booker", "booking", "booking", "bookable", "product",
"production", "record", "fact", "dramatic work", "dramatic composition",
"religious writing", "sacred writing", "sacred text", "religious text",
"collection", "accumulation", "assemblage", "aggregation", "request", "bespeak",
"call for", "quest", "ask for", "collection", "assemblage", "accumulation",
"aggregation", "section", "subdivision", "production", "product", "publication",
"schedule", "record", "put down", "enter", "register", "order book", "sketchbook",
"journal", "softback book", "coffee-table book", "novel", "folio", "hardcover",
"notebook", "soft-cover", "hardback", "album", "soft-cover book", "softback",
"sketch pad", "picture book", "paperback book", "paperback", "sketch block",
"paper-back book", "journal", "general ledger", "daybook", "subsidiary ledger",
"cost ledger", "logbook", "card", "won-lost record", "scorecard", "libretto",
"dialogue", "dialog", "prompt copy", "continuity", "promptbook", "scenario",
"screenplay", "shooting script", "family bible", "hold open", "save", "keep open",
"keep", "epistle", "text", "storybook", "tome", "trade book", "trade edition",
"songbook", "leaflet", "authority", "workbook", "yearbook", "pamphlet",
"pharmacopeia", "phrase book", "playbook", "pop-up", "pop-up book", "prayer book",
"prayerbook", "appointment calendar", "reference", "reference book",
"reference work", "formulary", "folder", "review copy", "appointment book",
"schoolbook", "booklet", "brochure", "school text", "book of facts", "catalog",
"catalogue", "catechism", "bestiary", "text edition", "copybook", "textbook",
"curiosa", "ticket", "fine", "card game", "cards"
]
},
"fa-bookmark": {
"name": "fa-bookmark",
"keywords": ["bookmarker", "marker"]
},
"fa-print": {
"name": "fa-print",
"keywords": ["impress", "publish", "mark", "photographic print", "printer", "printing",
"printing", "printer", "write", "produce", "make", "create", "indicant",
"indication", "photo", "pic", "exposure", "picture", "photograph", "copy", "fabric",
"cloth", "textile", "material", "graphic art", "handiness", "availability",
"availableness", "accessibility", "reproduce", "written communication",
"written language", "black and white", "write", "print over", "boldface",
"cyclostyle", "italicise", "italicize", "letter", "offset", "overprint", "prove",
"set", "typeset", "gazette", "republish", "hoofprint", "trace", "line", "hoof mark",
"hoof-mark", "mintmark", "footprint", "footmark", "fingerprint", "step", "stroke",
"proof", "cutout", "surprint", "silkscreen", "silk screen print", "serigraph",
"linocut", "mezzotint", "monotype", "contact print", "copperplate", "engraving",
"gravure", "heliogravure", "photogravure", "overprint", "lithograph", "stencil",
"lithograph", "silkscreen", "engrave", "etch", "fine print", "small print",
"misprint"
]
},
"fa-camera": {
"name": "fa-camera",
"keywords": ["photographic camera", "television camera", "tv camera",
"photographic equipment", "video equipment", "television equipment",
"candid camera", "polaroid camera", "box kodak", "cine-camera",
"point-and-shoot camera", "motion-picture camera", "movie camera", "reflex camera",
"portrait camera", "digital camera", "box camera", "polaroid land camera",
"flash camera", "camcorder"
]
},
"fa-font": {
"name": "fa-font",
"keywords": ["case", "face", "fount", "typeface", "baptismal font", "baptistery",
"baptistry", "type", "basin", "type family", "bicameral script", "black letter",
"bold", "bold face", "boldface", "cartridge font", "constant-width font",
"fixed-width font", "font cartridge", "gothic", "helvetica", "italic",
"monospaced font", "proportional font", "raster font", "sans serif", "screen font",
"unicameral script", "typewriter font"
]
},
"fa-bold": {
"name": "fa-bold",
"keywords": ["bold face", "boldface", "bluff", "sheer", "boldness", "boldness", "face",
"typeface", "font", "fount", "case", "steep", "conspicuous", "vaulting",
"emboldened", "daredevil", "fearless", "foolhardy", "brave", "hardy", "heady",
"heroic", "heroical", "intrepid", "nervy", "overreaching", "overvaliant", "rash",
"reckless", "dauntless", "temerarious", "audacious", "unfearing"
]
},
"fa-italic": {
"name": "fa-italic",
"keywords": ["italic language", "italicize", "italicise", "italicise", "italicize",
"indo-european language", "indo-european", "indo-hittite", "cursive",
"cursive script", "running hand", "longhand", "typeface", "face", "font", "fount",
"case", "latin", "osco-umbrian"
]
},
"fa-text-height": {
"name": "fa-text-height",
"keywords": []
},
"fa-text-width": {
"name": "fa-text-width",
"keywords": []
},
"fa-align-left": {
"name": "fa-align-left",
"keywords": []
},
"fa-align-center": {
"name": "fa-align-center",
"keywords": []
},
"fa-align-right": {
"name": "fa-align-right",
"keywords": []
},
"fa-align-justify": {
"name": "fa-align-justify",
"keywords": []
},
"fa-list": {
"name": "fa-list",
"keywords": ["name", "listing", "inclination", "lean", "leaning", "tilt", "lean", "number",
"heel", "listing", "lister", "listing", "listing", "lister", "itemize", "itemise",
"enumerate", "recite", "database", "spatial relation", "position", "move",
"identify", "name", "lean", "tilt", "tip", "angle", "slant", "register", "agenda",
"agendum", "bibliography", "bill", "black book", "blacklist", "calendar",
"calorie chart", "canon", "catalog", "catalogue", "character set", "chart",
"checklist", "class list", "codex", "computer menu", "contents", "corrigenda",
"credits", "criminal record", "directory", "a-list", "enumeration", "faq", "flag",
"free list", "grocery list", "hit list", "hit parade", "honours list", "index",
"inventory", "distribution list", "mailing list", "masthead", "menu", "necrology",
"numbering", "order of business", "play list", "playlist", "portfolio", "posting",
"price list", "push-down list", "push-down stack", "queue", "record", "roll",
"roster", "schedule", "shitlist", "shopping list", "short list", "shortlist",
"sick list", "slate", "stack", "standing", "stock list", "table of contents",
"ticket", "wish list", "key", "itemize", "itemise", "impanel", "stock-take",
"take stock", "blacklist", "empanel", "index", "inventory", "post"
]
},
"fa-outdent": {
"name": "fa-outdent",
"keywords": []
},
"fa-indent": {
"name": "fa-indent",
"keywords": ["indentation", "indention", "indenture", "indenture", "dent", "indenture",
"indentation", "indentation", "indentation", "place", "space", "blank space",
"bind", "oblige", "obligate", "hold", "twist", "bend", "deform", "flex", "turn",
"order", "purchase order", "cut", "notch", "format", "arrange", "recess"
]
},
"fa-video-camera": {
"name": "fa-video-camera",
"keywords": []
},
"fa-picture-o": {
"name": "fa-picture-o",
"inherit": ["fa-outline"],
"keywords": []
},
"fa-pencil": {
"name": "fa-pencil",
"keywords": ["utensil", "writer", "written", "draw", "edit", "pen", "ink", "lead",
"sharpen", "literature", "artist", "sketch", "trace", "cosmetic", "figure",
"writing implement", "black lead", "graphite", "plumbago", "draw", "slate pencil",
"lead pencil", "natural philosophy", "physics", "geometry"
]
},
"fa-map-marker": {
"name": "fa-map-marker",
"keywords": []
},
"fa-adjust": {
"name": "fa-adjust",
"keywords": ["adapt", "conform", "align", "aline", "line up", "correct", "set", "adjustive",
"adjustment", "adjuster", "adjustive", "adjustment", "adjustable", "adjustment",
"adjustor", "adjustable", "adjustment", "get used to", "reorient", "alter",
"change", "modify", "adjudicate", "settle", "resolve", "decide", "accommodate",
"adapt", "match", "readapt", "acclimatise", "assimilate", "acclimatize", "readjust",
"square", "obey", "focalise", "acclimate", "focus", "focalize", "focalize",
"realign", "realine", "focus", "focalise", "concentre", "synchronise", "concenter",
"true", "synchronize", "true up", "address", "collimate", "zero in", "align",
"attune", "calibrate", "citify", "coordinate", "decompress", "depressurise",
"depressurize", "fine-tune", "fit", "focalise", "focalize", "proportion",
"readjust", "reconcile", "regulate", "reset", "set", "sharpen", "sync",
"synchronise", "synchronize", "temper", "time", "trim", "tune", "tune up", "zero",
"focus", "graduate", "harmonise", "harmonize", "justify", "linearise", "linearize",
"match", "modulate", "ordinate", "plumb", "pressurise", "pressurize"
]
},
"fa-tint": {
"name": "fa-tint",
"keywords": ["shade", "tincture", "tone", "hair coloring", "hair dye", "hint", "suggestion",
"trace", "tinct", "tinge", "touch", "tinter", "tinting", "color", "coloring",
"colour", "colouring", "dye", "dyestuff", "small indefinite amount",
"small indefinite quantity", "color", "color in", "colorise", "colorize", "colour",
"colour in", "colourise", "colourize", "tinge", "mellowness", "richness",
"undertone", "rinse", "henna", "spark", "complexion", "henna", "tincture"
]
},
"fa-pencil-square-o": {
"name": "fa-pencil-square-o",
"inherit": ["fa-pencil", "fa-square"],
"keywords": []
},
"fa-share-square-o": {
"name": "fa-share-square-o",
"inherit": ["fa-outline"],
"keywords": []
},
"fa-check-square-o": {
"name": "fa-check-square-o",
"inherit": ["fa-outline"],
"keywords": []
},
"fa-arrows": {
"name": "fa-arrows",
"keywords": ["point", "up", "down", "left", "right", "directions", "vertical", "horizontal"]
},
"fa-step-backward": {
"name": "fa-step-backward",
"keywords": []
},
"fa-fast-backward": {
"name": "fa-fast-backward",
"keywords": []
},
"fa-backward": {
"name": "fa-backward",
"keywords": ["backwards", "feebleminded", "half-witted", "slow-witted", "back", "back",
"backwards", "rearward", "rearwards", "backwardness", "retarded", "transposed",
"backswept", "sweptback", "self-referent", "cacuminal", "converse", "inverse",
"rearward", "receding", "reflexive", "regardant", "reversive", "retracted",
"retral", "retroflex", "retroflexed", "retrograde", "returning", "reverse",
"reversed", "undynamic", "adynamic", "blate", "bashful"
]
},
"fa-play": {
"name": "fa-play",
"keywords": ["encounter", "meet", "take on", "act", "act as", "diddle", "fiddle", "toy",
"drama", "dramatic play", "swordplay", "shimmer", "caper", "frolic", "gambol",
"romp", "child's play", "dally", "trifle", "bring", "make for", "work", "wreak",
"spiel", "turn", "act", "playact", "roleplay", "bet", "wager", "bid", "maneuver",
"manoeuvre", "recreate", "run", "looseness", "dally", "flirt", "toy", "free rein",
"toy", "gambling", "gaming", "fun", "sport", "period of play", "playing period",
"act", "represent", "playing", "playlet", "playing", "playing", "player", "playing",
"playing", "playing", "player", "playlet", "playing", "playing", "player",
"playing", "player", "playing", "act", "behave", "do", "manipulate",
"dramatic work", "dramatic composition", "action", "alteration", "modification",
"change", "recreation", "diversion", "diversion", "recreation", "consider", "deal",
"take", "look at", "make", "create", "re-create", "activity", "perform", "gamble",
"endeavour", "attempt", "effort", "endeavor", "try", "motion", "movement", "move",
"movableness", "movability", "act", "move", "freedom", "do", "act", "behave",
"recreation", "vice", "diversion", "humor", "humour", "wittiness", "witticism",
"wit", "amount", "measure", "quantity", "re-create", "move", "act",
"plan of action", "activeness", "action", "activity", "show", "act", "move", "act",
"gamble", "move", "displace", "discharge", "sound", "apply", "utilize", "utilise",
"use", "employ", "tucker", "exhaust", "beat", "tucker out", "wash up", "wager",
"bet", "go", "travel", "move", "locomote", "vie", "compete", "contend", "sound",
"perform", "perform", "sham", "simulate", "feign", "assume", "deploy", "hit",
"utilize", "employ", "apply", "use", "utilise", "exploit", "work", "use",
"employment", "utilization", "exercise", "utilisation", "usage", "replay",
"confront", "face", "put out", "retire", "theater of the absurd", "morality play",
"satyr play", "grand guignol", "passion play", "playlet", "miracle play",
"mystery play", "fencing", "indulgence", "dalliance", "teasing", "horseplay",
"lunacy", "craziness", "flirt", "flirtation", "flirting", "folly", "toying",
"foolery", "tomfoolery", "coquetry", "word play", "game", "doctor", "fireman",
"house", "reprise", "repeat", "replay", "rag", "prelude", "reprize", "riff",
"recapitulate", "bang out", "tongue", "modulate", "misplay", "slur", "jazz",
"bugle", "fiddle", "innings", "trick", "trumping", "move", "start", "down",
"starting", "at-bat", "lead", "bat", "ruff", "attack", "stooge", "mime", "overact",
"overplay", "pantomime", "underplay", "underact", "ham it up", "ham", "raise",
"see", "stake", "game", "gage", "punt", "bet on", "back", "trap play", "mousetrap",
"icing", "figure", "shot", "pass completion", "assist", "stroke", "obstruction",
"ball hawking", "baseball play", "takeaway", "blitz", "completion",
"linebacker blitzing", "jugglery", "icing the puck", "footwork", "safety blitz",
"slackness", "slack", "wiggliness", "wager", "gambling game", "throw",
"game of chance", "sporting life", "bet", "punning", "clowning", "comedy",
"waggery", "pun", "waggishness", "wordplay", "jocularity", "paronomasia",
"jocosity", "drollery", "funniness", "golf hole", "set", "hole", "emote", "act out",
"impersonate", "portray", "make believe", "parody", "support", "pretend", "enact",
"make", "reenact", "razzle-dazzle", "razzmatazz", "power play", "razmataz",
"football play", "basketball play", "razzle", "knock on", "musical theater",
"curtain raiser", "musical", "musical comedy", "frisk", "lark about", "lark",
"horse around", "dabble", "sport", "splash around", "gambol", "cavort",
"arse around", "skylark", "run around", "frolic", "paddle", "rollick", "disport",
"fool", "fool around", "roughhouse", "romp", "debut", "underplay", "line up", "die",
"play out", "teeter-totter", "bowl", "gamble", "bandy", "walk", "bid", "golf",
"teetertotter", "tee off", "curl", "croquet", "develop", "volley", "cricket",
"nail", "cradle", "quarterback", "seesaw", "putt", "put out", "complete", "unblock",
"revoke", "exit", "catch", "face off", "replay", "ace", "field", "call", "misplay",
"bully off", "foul", "snooker", "backstop", "fullback", "fumble", "start", "drum",
"register", "clarion", "chord", "fiddle", "harp", "beat", "trumpet", "skirl",
"pipe", "tweedle", "strike up", "accompany", "symphonize", "sound off",
"symphonise", "swing", "play along", "follow", "busk", "bow", "cover", "pitch",
"declare", "hook", "promote", "drama", "game", "theatre", "dramatic art",
"dramaturgy", "theater", "dramatics", "game", "performing arts", "performing arts",
"music", "performing arts", "music"
]
},
"fa-pause": {
"name": "fa-pause",
"keywords": ["hesitate", "break", "intermission", "interruption", "suspension", "break",
"intermit", "delay", "interval", "time interval", "cut off", "disrupt", "break up",
"interrupt", "inactivity", "hem and haw", "scruple", "caesura", "dead air", "delay",
"respite", "blackout", "time-out", "relief", "rest period", "rest", "halftime",
"wait", "hold", "time lag", "lapse", "letup", "lull", "postponement", "take ten",
"breathe", "catch one's breath", "rest", "take a breather", "take five", "freeze",
"faltering", "falter", "respite", "recess", "intermission", "hesitation",
"time out", "waver", "halt", "break"
]
},
"fa-stop": {
"name": "fa-stop",
"keywords": ["cease", "discontinue", "give up", "lay off", "quit", "block", "blockage",
"closure", "occlusion", "stoppage", "stoppage", "break", "break off", "discontinue",
"arrest", "check", "halt", "hitch", "stay", "stoppage", "block", "halt", "kibosh",
"bar", "barricade", "block", "block off", "block up", "blockade", "catch", "cease",
"end", "finish", "terminate", "hold on", "stop over", "intercept", "diaphragm",
"occlusive", "plosive", "plosive consonant", "plosive speech sound",
"stop consonant", "halt", "halt", "layover", "stopover", "full point", "full stop",
"period", "point", "arrest", "check", "contain", "hold back", "turn back",
"stoppage", "stopper", "stoppage", "stoppage", "obstructer", "obstructor",
"obstruction", "impediment", "impedimenta", "human action", "act", "deed",
"human activity", "end", "terminate", "inactiveness", "inactivity", "inaction",
"foreclose", "forbid", "forestall", "preclude", "prevent", "obstruct", "close up",
"impede", "jam", "occlude", "block", "obturate", "constraint", "restraint", "break",
"interrupt", "disrupt", "break up", "interrupt", "cut off", "grab", "catch",
"take hold of", "mechanical device", "obstruent", "finish", "ending", "conclusion",
"stay", "punctuation mark", "punctuation", "defend", "spot", "topographic point",
"place", "knob", "close off", "knock off", "cheese", "pull the plug",
"call it quits", "call it a day", "break", "drop", "shut off", "retire",
"leave off", "withdraw", "sign off", "plug", "breechblock", "breech closer",
"vapor lock", "vapour lock", "stopper", "stopple", "haemostasis", "hemostasis",
"hemostasia", "stand-down", "standdown", "haemostasia", "interrupt", "fracture",
"bog down", "bog", "disrupt", "break up", "cut off", "countercheck", "logjam",
"embargo", "stay", "close", "close off", "block off", "shut off", "detent", "click",
"dog", "doorstop", "doorstopper", "bench hook", "tripper", "trip", "pawl",
"discontinue", "disappear", "lapse", "run low", "run out", "run short", "turn out",
"vanish", "adjourn", "go out", "go away", "go", "come out", "break", "conclude",
"break up", "culminate", "climax", "close", "pass away", "cut out", "recess",
"call", "lay over", "stop over", "cut out", "cut off", "iris", "iris diaphragm",
"click", "labial stop", "suction stop", "glottal stop", "glottal plosive",
"glottal catch", "brake", "rein in", "stall", "rein", "draw up", "pull up",
"pull up short", "haul up", "conk", "check", "go off", "settle", "standstill",
"tie-up", "surcease", "cessation", "stand", "stand", "pit stop", "night-stop",
"suspension point", "cut down", "cut out", "stopover", "loading area", "bus stop",
"way station", "loading zone", "checkpoint", "cut", "stall", "rein in", "rein",
"pull up", "hold", "arrest", "halt", "brake", "flag down", "draw up", "bring up",
"check", "music"
]
},
"fa-forward": {
"name": "fa-forward",
"keywords": ["forth", "onward", "fore", "send on", "forrad", "forrard", "forwards",
"frontward", "frontwards", "ahead", "forrader", "forwards", "onward", "onwards",
"advancing", "forward-moving", "ahead", "forwarding", "forwardness", "forwardness",
"send", "transport", "ship", "position", "basketeer", "basketball player", "cager",
"progressive", "gardant", "guardant", "headfirst", "headlong", "full-face", "wise",
"assuming", "assumptive", "brash", "bumptious", "cheeky", "fresh", "impertinent",
"impudent", "nervy", "overbold", "overfamiliar", "presumptuous", "sassy", "saucy",
"self-assertive", "smart", "five", "basketball team"
]
},
"fa-fast-forward": {
"name": "fa-fast-forward",
"keywords": []
},
"fa-step-forward": {
"name": "fa-step-forward",
"keywords": []
},
"fa-eject": {
"name": "fa-eject",
"keywords": ["boot out", "chuck out", "exclude", "turf out", "turn out", "discharge",
"exhaust", "expel", "release", "force out", "squeeze out", "squirt", "ejection",
"ejector", "ejection", "ejection", "ejection", "throw out", "kick out", "expel",
"discharge", "get out", "leave", "exit", "go out", "evict", "exorcise", "exorcize",
"bounce", "force out", "show the door", "breathe", "cough out", "cough up", "egest",
"ejaculate", "eliminate", "emit", "eruct", "pass", "bleed", "blow", "excrete",
"expectorate", "fester", "hemorrhage", "maturate", "ovulate", "abort", "pass off",
"shed blood", "spew", "spew out", "spit out", "spit up", "suppurate", "spritz",
"extravasate"
]
},
"fa-chevron-left": {
"name": "fa-chevron-left",
"keywords": []
},
"fa-chevron-right": {
"name": "fa-chevron-right",
"keywords": []
},
"fa-plus-circle": {
"name": "fa-plus-circle",
"keywords": []
},
"fa-minus-circle": {
"name": "fa-minus-circle",
"keywords": []
},
"fa-times-circle": {
"name": "fa-times-circle",
"inherit": ["fa-times"],
"keywords": []
},
"fa-check-circle": {
"name": "fa-check-circle",
"keywords": []
},
"fa-question-circle": {
"name": "fa-question-circle",
"keywords": []
},
"fa-info-circle": {
"name": "fa-info-circle",
"keywords": []
},
"fa-crosshairs": {
"name": "fa-crosshairs",
"keywords": ["center", "center of attention", "centre", "centre of attention"]
},
"fa-times-circle-o": {
"name": "fa-times-circle-o",
"inherit": ["fa-times", "fa-circle"],
"keywords": []
},
"fa-check-circle-o": {
"name": "fa-check-circle-o",
"inherit": ["fa-check", "fa-circle"],
"keywords": []
},
"fa-ban": {
"name": "fa-ban",
"keywords": ["censor", "banish", "banning", "forbiddance", "forbidding", "prohibition",
"proscription", "bachelor of arts in nursing", "banish", "blackball", "cast out",
"ostracise", "ostracize", "shun", "criminalise", "criminalize", "illegalise",
"illegalize", "outlaw", "expel", "throw out", "kick out", "prohibition", "edict",
"order", "rescript", "decree", "fiat", "baccalaureate", "bachelor's degree",
"throw out", "expel", "kick out", "moldovan monetary unit",
"romanian monetary unit", "veto", "prohibit", "proscribe", "forbid", "disallow",
"nix", "interdict", "embargo", "rusticate", "test ban", "interdiction",
"cease and desist order", "banning-order", "enjoining", "enjoinment", "injunction",
"interdict", "medium"
]
},
"fa-arrow-left": {
"name": "fa-arrow-left",
"keywords": []
},
"fa-arrow-right": {
"name": "fa-arrow-right",
"keywords": []
},
"fa-arrow-up": {
"name": "fa-arrow-up",
"keywords": []
},
"fa-arrow-down": {
"name": "fa-arrow-down",
"keywords": []
},
"fa-share": {
"name": "fa-share",
"keywords": ["contribution", "part", "part", "percentage", "portion", "ploughshare",
"plowshare", "parcel", "portion", "apportion", "deal", "divvy up", "portion out",
"partake", "partake in", "sharer", "sharing", "sharer", "sharing", "sharing",
"sharing", "try", "endeavour", "endeavor", "effort", "attempt", "assets", "wedge",
"assignation", "parceling", "allocation", "allotment", "apportionment",
"apportioning", "parcelling", "distribute", "give out", "pass out", "hand out",
"acquire", "get", "stock certificate", "stock", "intercommunicate", "communicate",
"overlap", "employ", "utilize", "apply", "use", "utilise", "end", "cut",
"allotment", "allowance", "allocation", "dispensation", "dole", "interest", "piece",
"profit sharing", "ration", "slice", "split", "stake", "tranche", "way", "cut in",
"osculate", "partake", "double up", "communalize", "communalise", "pool"
]
},
"fa-expand": {
"name": "fa-expand",
"keywords": ["amplify", "blow up", "inflate", "dilate", "elaborate", "enlarge", "expatiate",
"exposit", "expound", "flesh out", "lucubrate", "extend", "spread out", "boom",
"flourish", "thrive", "expansive", "expansion", "expansive", "expandible",
"expandible", "expansible", "expansive", "expansible", "expandible", "expansible",
"expansive", "expansive", "expansible", "expandible", "increase", "clarify",
"elucidate", "clear up", "change", "alter", "modify", "grow", "grow", "grow",
"enlarge", "puff up", "instance", "specify", "specialize", "specialise",
"exemplify", "exposit", "expound", "set forth", "particularize", "particularise",
"illustrate", "detail", "bush out", "dispread", "luxuriate", "revive", "swell up",
"swell", "tumesce", "billow", "intumesce", "tumefy", "inflate", "balloon",
"develop", "blow up", "inflate"
]
},
"fa-compress": {
"name": "fa-compress",
"keywords": ["compact", "pack together", "compact", "constrict", "contract", "press",
"squeeze", "compressing", "compression", "compression", "compressible",
"compressor", "compressing", "wedge", "force", "squeeze", "tighten",
"medical dressing", "dressing", "tamp", "tamp down", "pack", "gag", "overbear",
"bear down", "prim", "scrag", "astringe", "strangle", "strangulate", "choke",
"convulse", "fret"
]
},
"fa-plus": {
"name": "fa-plus",
"keywords": ["positive", "asset", "addition", "summation", "quality",
"arithmetic operation", "advantageous", "favorable", "favourable", "nonnegative",
"positive", "forte", "long suit", "metier", "advantage", "speciality", "specialty",
"strength", "strong point", "strong suit", "vantage", "resource"
]
},
"fa-minus": {
"name": "fa-minus",
"keywords": ["subtraction", "negative", "arithmetic operation", "disadvantageous",
"unfavorable", "unfavourable", "negative"
]
},
"fa-asterisk": {
"name": "fa-asterisk",
"keywords": ["star", "star", "mark", "character", "graph", "grapheme", "graphic symbol"]
},
"fa-exclamation-circle": {
"name": "fa-exclamation-circle",
"keywords": []
},
"fa-gift": {
"name": "fa-gift",
"keywords": ["endowment", "natural endowment", "talent", "give", "present", "empower",
"endow", "endue", "indue", "invest", "giving", "natural ability", "enable",
"sharing", "share-out", "acquisition", "bent", "hang", "flair", "raw talent",
"knack", "genius", "raffle", "tip", "distribute", "donate", "dower", "endow", "fee",
"give away", "regift", "raffle off", "treat", "tender", "leave", "surrender",
"will", "hand out", "grant", "submit", "pass out", "render", "give up", "give out",
"bequeath", "bung", "cede", "deed over", "deliver", "cover", "offering", "oblation",
"accordance", "endowment", "donation", "contribution", "conferral", "conferment",
"charity", "bestowment", "bestowal", "almsgiving", "alms-giving",
"accordance of rights", "lagniappe", "aid", "assistance", "award", "bequest",
"bestowal", "bestowment", "bride price", "contribution", "devise", "donation",
"dower", "dowery", "dowry", "economic aid", "economic assistance", "enrichment",
"financial aid", "financial assistance", "free lunch", "freebee", "freebie",
"giveaway", "gift horse", "largess", "largesse", "legacy", "portion", "present",
"prize"
]
},
"fa-leaf": {
"name": "fa-leaf",
"keywords": ["flick", "flip", "riff", "riffle", "thumb", "foliage", "leafage", "folio",
"leaflet", "leafy", "leaflet", "leaflet", "leafage", "peruse", "plant organ",
"sheet of paper", "sheet", "piece of paper", "section", "segment", "acquire",
"grow", "get", "develop", "produce", "turn over", "turn", "parallel-veined leaf",
"parted leaf", "pitcher", "prickly-edged leaf", "rosette", "runcinate leaf",
"scale", "scale leaf", "serrate leaf", "simple leaf", "sporophyl", "sporophyll",
"verdure", "erose leaf", "betel", "betel leaf", "blade", "cataphyll",
"compound leaf", "crenate leaf", "dandelion green", "dentate leaf",
"emarginate leaf", "entire leaf", "amplexicaul leaf", "fig leaf", "floral leaf",
"frond", "greenery", "leaf blade", "leaflet", "lobed leaf", "pad", "interleaf",
"flyleaf", "page", "drop-leaf"
]
},
"fa-fire": {
"name": "fa-fire",
"keywords": ["arouse", "elicit", "enkindle", "evoke", "kindle", "provoke", "raise", "fuel",
"open fire", "discharge", "go off", "flame", "flaming", "ignite", "light", "ardor",
"ardour", "fervency", "fervidness", "fervor", "fervour", "flame up", "firing",
"attack", "blast", "flack", "flak", "can", "dismiss", "displace", "force out",
"give notice", "give the axe", "give the sack", "sack", "send away", "terminate",
"discharge", "burn", "burn down", "firing", "fiery", "fiery", "firing", "firing",
"create", "make", "furnish", "supply", "provide", "render", "blast", "shoot",
"burning", "combustion", "passion", "passionateness", "attack", "onslaught",
"onset", "onrush", "criticism", "unfavorable judgment", "remove", "destroy", "ruin",
"hearth", "open fireplace", "fireplace", "trial", "visitation", "tribulation",
"bake", "drive away", "dispel", "run off", "chase away", "turn back", "drive out",
"drive off", "fuel", "generate", "element", "happening", "occurrent", "occurrence",
"natural event", "rekindle", "anger", "wound", "whelm", "wake", "upset", "untune",
"touch a chord", "sweep over", "strike a chord", "stir up", "stir", "stimulate",
"spite", "shame", "shake up", "shake", "prick", "overwhelm", "overtake",
"overpower", "overcome", "offend", "invite", "interest", "injure", "inflame",
"infatuate", "ignite", "hurt", "heat", "fire up", "excite", "draw", "disconcert",
"discompose", "discomfit", "ask for", "bruise", "flare", "ignition", "blaze",
"blazing", "zeal", "registration fire", "radar fire", "preparation fire",
"barrage fire", "supporting fire", "searching fire", "battery", "observed fire",
"neutralization fire", "scheduled fire", "massed fire", "interdiction fire",
"suppressive fire", "indirect fire", "unobserved fire", "barrage", "hostile fire",