summaryrefslogblamecommitdiffstats
path: root/vendor/github.com/peterhellberg/emojilib/generated.go
blob: 9bc3ea3bc3c3168e80fb707b9e792f6bf1fe7526 (plain) (tree)
1
2
3
4
5
3262
3263
3264
3265
3266
3267
3268
3269
3270
3271
3272
3273
3274
3275
3276
3277
3278
3279
3280
3281
3282
3283
3284
3285
3286
3287
3288
3289
3290
3291
3292
3293
3294
3295
3296
3297
3298
3299
3300
3301
3302
3303
3304
3305
3306
3307
3308
3309
3310
3311
3312
3313
3314
3315
3316
3317
3318
3319
3320
3321
3322
3323
3324
3325
3326
3327
3328
3329
3330
3331
3332
3333
3334
3335
3336
3337
3338
3339
3340
3341
3342
3343
3344
3345
3346
3347
3348
3349
3350
3351
3352
3353
3354
3355
3356
3357
3358
3359
3360
3361
3362
3363
3364
3365
3366
3367
3368
3369
3370
3371
3372
3373
3374
3375
3376
3377
3378
3379
3380
3381
3382
3383
3384
3385
3386
3387
3388
3389
3390
3391
3392
3393
3394
3395
3396
3397
3398
3399
3400
3401
3402
3403
3404
3405
3406
3407
3408
3409
3410
3411
3412
3413
3414
3415
3416
3417
3418
3419
3420
3421
3422
3423
3424
3425
3426
3427
3428
3429
3430
3431
3432
3433
3434
3435
3436
3437
3438
3439
3440
3441
3442
3443
3444
3445
3446
3447
3448
3449
3450
3451
3452
3453
3454
3455
3456
3457
3458
3459
3460
3461
3462
3463
3464
3465
3466
3467
3468
3469
3470
3471
3472
3473
3474
3475
3476
3477
3478
3479
3480
3481
3482
3483
3484
3485
3486
3487
3488
3489
3490
3491
3492
3493
3494
3495
3496
3497
3498
3499
3500
3501
3502
3503
3504
3505
3506
3507
3508
3509
3510
3511
3512
3513
3514
3515
3516
3517
3518
3519
3520
3521
3522
3523
3524
3525
3526
3527
3528
3529
3530
3531
3532
3533
3534
3535
3536
3537
3538
3539
3540
3541
3542
3543
3544
3545
3546
3547
3548
3549
3550
3551
3552
3553
3554
3555
3556
3557
3558
3559
3560
3561
3562
3563
3564
3565
3566
3567
3568
3569
3570
3571
3572
3573
3574
3575
3576
3577
3578
3579
3580
3581
3582
3583
3584
3585
3586
3587
3588
3589
3590
3591
3592
3593
3594
3595
3596
3597
3598
3599
3600
3601
3602
3603
3604
3605
3606
3607
3608
3609
3610
3611
3612
3613
3614
3615
3616
3617
3618
3619
3620
3621
3622
3623
3624
3625
3626
3627
3628
3629
3630
3631
3632
3633
3634
3635
3636
3637
3638
3639
3640
3641
3642
3643
3644
3645
3646
3647
3648
3649
3650
3651
3652
3653
3654
3655
3656
3657
3658
3659
3660
3661
3662
3663
3664
3665
3666
3667
3668
3669
3670
3671
3672
3673
3674
3675
3676
3677
3678
3679
3680
3681
3682
3683
3684
3685
3686
3687
3688
3689
3690
3691
3692
3693
3694
3695
3696
3697
3698
3699
3700
3701
3702
3703
3704
3705
3706
3707
3708
3709
3710
3711
3712
3713
3714
3715
3716
3717
3718
3719
3720
3721
3722
3723
3724
3725
3726
3727
3728
3729
3730
3731
3732
3733
3734
3735
3736
3737
3738
3739
3740
3741
3742
3743
3744
3745
3746
3747
3748
3749
3750
3751
3752
3753
3754
3755
3756
3757
3758
3759
3760
3761
8085
8086
8087
8088
8089
8090
8091
8092
8093
8094
8095
8096
8097
8098
8099
8100
8101
8102
8103
8104
8105
8106
8107
8108
8109
8110
8111
8112
8113
8114
8115
8116
8117
8118
8119
8120
8121
8122
8123
8124
8125
8126
8127
8128
8129
8130
8131
8132
8133
8134
8135
8136
8137
8138
8139
8140
8141
8142
8143
8144
8145
8146
8147
8148
8149
8150
8151
8152
8153
8154
8155
8156
8157
8158
8159
8160
8161
8162
8163
8164
8165
8166
8167
8168
8169
8170
8171
8172
8173
8174
8175
8176
8177
8178
8179
8180
8181
8182
8183
8184
8185
8186
8187
8188
8189
8190
8191
8192
8193
8194
8195
8196
8197
8198
8199
8200
8201
8202
8203
8204
8205
8206
8207
8208
8209
8210
8211
8212
8213
8214
8215
8216
8217
8218
8219
8220
8221
8222
8223
8224
8225
8226
8227
8228
8229
8230
8231
8232
8233
8234
8235
8236
8237
8238
8239
8240
8241
8242
8243
8244
8245
8246
8247
8248
8249
8250
8251
8252
8253
8254
8255
8256
8257
8258
8259
8260
8261
8262
8263
8264
8265
8266
8267
8268
8269
8270
8271
8272
8273
8274
8275
8276
8277
8278
8279
8280
8281
8282
8283
8284
8285
8286
8287
8288
8289
8290
8291
8292
8293
8294
8295
8296
8297
8298
8299
8300
8301
8302
8303
8304
8305
8306
8307
8308
8309
8310
8311
8312
8313
8314
8315
8316
8317
8318
8319
8320
8321
8322
8323
8324
8325
8326
8327
8328
8329
8330
8331
8332
8333
8334
8335
8336
8337
8338
8339
8340
8341
8342
8343
8344
8345
8346
8347
8348
8349
8350
8351
8352
8353
8354
8355
8356
8357
8358
8359
8360
8361
8362
8363
8364
8365
8366
8367
8368
8369
8370
8371
8372
8373
8374
8375
8376
8377
8378
8379
8380
8381
8382
8383
8384
8385
8386
8387
8388
8389
8390
8391
8392
8393
8394
8395
8396
8397
8398
8399
8400
8401
8402
8403
8404
8405
8406
8407
8408
9441
9442
9443
9444
9445
9446
9447
9448
9449
9450
9451
9452
9453
9454
9455
9456
9457
9458
9459
9460
9461
9462
9463
9464
9465
9466
9467
9468
9469
9470
9471
9472
9473
9474
9475
9476
9477
9478
9479
9480
9481
9482
9483
9484
9485
9486
9487
9488
9489
9490
9491
9492
9493
9494
9495
9496
9497
9498
9499
9500
9501
9502
9503
9504
9505
9506
9507
9508
9509
9510
9511
9512
9513
9514
9515
9516
9517
9518
9519
9520
9521
9522
9523
9524
9525
9526
9527
9528
9529
9530
9531
9532
9533
9534
9535
9536
9537
9538
9539
9540
9541
9542
9543
9544
9545
9546
9547
9548
9549
9550
9551
9552
9553
9554
9555
9556
9557
9558
9559
9560
9561
9562
9563
9564
9565
9566
9567
9568
9569
9570
9571
9572
9573
9574
9575
9576
9577
9578
9579
9580
9581
9582
9583
9584
9585
9586
9587
9588
9589
9590
9591
9592
9593
9594
9595
9596
9597
9598
9599
9600
9601
9602
9603
9604
9605
9606
9607
9608
9609
9610
9611
9612
9613
9614
9615
9616
9617
9618
9619
9620
9621
9622
9623
9624
9625
9626
9627
9628
9629
9630
9631
9632
9633
9634
9635
9636
9637
9638
9639
9640
9641
9642
9643
9644
9645
9646
9647
9648
9649
9650
9651
9652
9653
9654
9655
9656
9657
9658
9659
9660
9661
9662
9663
9664
9665
9666
9667
9668
9669
9670
9671
9672
9673
9674
9675
9676
9677
9678
9679
9680
9681
9682
9683
9684
9685
9686
9687
9688
9689
9690
9691
9692
9693
9694
9695
9696
9697
9698
9699
9700
9701
9702
9703
9704
9705
9706
9707
9708
9709
9710
9711
9712
9713
9714
9715
9716
9717
9718
9719
9720
9721
9722
9723
9724
9725
9726
9727
9728
9729
9730
9731
9732
9733
9734
9735
9736
9737
9738
9739
9740
9741
9742
9743
9744
9745
9746
9747
9748
9749
9750
9751
9752
9753
9754
9755
9756
9757
9758
9759
9760
9761
9762
9763
9764
9765
9766
9767
9768
9769
9770
9771
9772
9773
9774
9775
9776
9777
9778
9779
9780
9781
9782
9783
9784
9785
9786
9787
13526
13527
13528
13529
13530
13531
13532
13533
13534
13535
13536
13537
13538
13539
13540
13541
13542
13543
13544
13545
13546
13547
13548
13549
13550
13551
13552
13553
13554
13555
13556
13557
13558
13559
13560
13561
13562
13563
13564
13565
13566
13567
13568
13569
13570
13571
13572
13573
13574
13575
13576
13577
13578
13579
13580
13581
13582
13583
13584
13585
13586
13587
13588
13589
13590
13591
13592
13593
13594
13595
13596
13597
13598
13599
13600
13601
13602
13603
13604
13605
13606
13607
13608
13609
13610
13611
13612
13613
13614
13615
13616
13617
13618
13619
13620
13621
13622
13623
13624
13625
13626
13627
13628
13629
13630
13631
13632
13633
13634
13635
13636
13637
13638
13639
13640
13641
13642
13643
13644
13645
13646
13647
13648
13649
13650
13651
13652
13653
13654
13655
13656
13657
13658
13659
13660
13661
13662
13663
13664
13665
13666
13667
13668
13669
13670
13671
13672
13673
13674
13675
13676
13677
13678
13679
13680
13681
13682
13683
13684
13685
13686
13687
13688
13689
13690
13691
13692
13693
13694
13695
13696
13697
13698
13699
13700
13701
13702
13703
13704
13705
13706
13707
13708
13709
13710
13711
13712
13713
13714
13715
13716
13717
13718
13719
13720
13721
13722
13723
13724
13725
13726
13727
13728
13729
13730
13731
13732
13733
13734
13735
13736
13737
13738
13739
13740
13741
13742
13743
13744
13745
13746
13747
13748
13749
13750
13751
13752
13753
13754
13755
13756
13757
13758
13759
13760
13761
13762
13763
13764
13765
13766
13767
13768
13769
13770
13771
13772
13773
13774
13775
13776
13777
13778
13779
13780
13781
13782
13783
13784
13785
13786
13787
13788
13789
13790
13791
13792
13793
13794


                                    
                                          





































































                                                                                                                        



                                                               





























                                                                                               
                                                                                       























































































































































































































































                                                                                                      
                                                                      































































































































































































                                                                                                                



                                                            
























































































                                                                                                                        



                                                      













































































































































































                                                                                                              



                                                                                         



                                                            








                                                                     



                                                           








                                                                                



                                                      









                                                                                      
                                                                                                     











                                                                                                                     



                                                                 



































































































































































                                                                                                     



                                                   





































































































































                                                                                                                                               



                                                              


















                                                                                                       



                                           































































                                                                                                            








                                                                                 
                                  
                                                                                                                                 





















































































































































































                                                                                                      



                                             



                                                                                               



                                                                      









                                                                                                         
                                                                                                                                  





































































































































































































































































                                                                                                                                       



                                                    








                                                                                       



                                             
























                                                                            
                                                                                                                                                    










































                                                                                               
                                                                                

















































































































































































                                                                                                           
                                                                                 






                                                                          



                                                                                









































































                                                                                



                                                  























                                                                                            



                                                         


























































                                                                                                                    



                                                                       

































































































































































































                                                                                                                    
















































                                                                                   





























                                                                                                         
                                                                                                                                  


































































                                                                                      



                                                                       























                                                                           



                                                       


















































































































































































                                                                                                                   



                                                                          








                                                                                                      



                                                                 








                                                       























                                                                                   



                                                                 

























































































































































                                                                                                            



                                                                          







































































































                                                                                                                       



                                                                



























































































































                                                                                                  


















































































































































































































































































































































































































































































































                                                                                                                                   



                                                                 
































































































































                                                                                                     



                                                  








                                                                             



                                                  








                                                                          



                                                  



                                                                                                 








                                                                                                          














                                                                              
                                                                        















































                                                                                                    
                                                                                                                                     

                                        



                                                             








                                                                          



                                                                                       







































































































                                                                                                                                                          








                                                                           





























































































                                                                                                                



                                                                


















































































































































































                                                                                                                                           


























































































































































































































                                                                                                            
























                                                                                            
                                                                                
















                                                                                        



                                                                                 



















































































                                                                                                           



                                                                              































































                                                                                                                     



                                                                           













































































































                                                                                                     
                                                                        




































                                                                                       



                                                                

































































































































































































                                                                                                                  



                                                               





























































































                                                                                                  























                                                                                                                                                   



                                                                                                             



























































































































































































































































































                                                                                                                                         



                                                             


















                                                                                                     



                                                                                                                             



                                                                           



                                                                























                                                                                              



                                                         







































































































                                                                                                        


















                                                                           



                                                            







































                                                                                                                               
                                                                          


                                      
                                                                                                     

                                    



                                                                 




















































































































































                                                                                                                         



                                                           













                                                                                                



                                                                       













































































































































































                                                                                                                              



                                                                                  













                                                                          



                                                                                                 
































































































































                                                                                                                            





















































                                                                                                                   



                                                                                                       













                                                                                                                    



                                                                                               


















                                                                                                             



                                                        


































                                                                                                             
                                                                                     









































































































































































































                                                                                                














































































































































































                                                                                                                                                                                               
                                                                                                                                                      

























































































































                                                                                                          



                                                   








                                                                            



                                                         




























































































































































































                                                                                                                                



                                                                      




























                                                                        



                                                      








                                                                               



                                                      








                                                                            



                                                      



                                                                                                   








                                                                                                              









                                                                              
                                                                          















































                                                                                                      
                                                                                                                                       

                                        








                                                                            



                                                                                     



                                                                                









































































                                                                                                                                 



                                                             



                                                                                   



                                                                            













































































































































































































                                                                                
                               













































































































                                           



































                                  
                          
                          
                              



                                 
                           











                               
















                              
                           



                              








                                
                        








                                
                        















































                                       

                          























































                                       

                              











































                                  
                                


































































































































































































































































































































                                                       

                             








































































                                   

                                 

















































































                                        
                          
                                 






































                                                  
                               



































































































































                                            
                         
























                                      

                                  










                                 
                           




                               
                                  


































                                                 

                                 



















































                                            

                             















































































































                                             
                             



















                                      

                            



























                                    

                           

























































                                           

                                  







                              

                                   




























                                     


                              

















































































                                               

                              

                              

                         







































                                      















                                                 
























                                 

                         




















































































                                         
                                   
                        
                                     

























































































































































































































































































































































                                                       
                        



                                  

                          
















                                    

                              






































                                                  

                           








                                    

                                     

                            

                                     

                                   
                           
                        


















































































                                                
                                       





















































                                              










                                
                      








                                   











































                                     





                               


































                                          

                                 




                                  
                                 




























                                    

                                 



























































                                      




















                                   


                              
























                                   
                                 






































                                         

                            











































































                                             
                              



































                                        

                             
























                                      
                          









































































                                               
                                       































                                       

                                     









                                    


                            




                            

                              









                             









                                        
                                 








                                 
                                  












                                       
                          
                                 



                             
                                 



                            
                           







                                         
                              




                                               
                                     

                                   
                           


                          
                       









































                                                  































































                                       
                                 











                                            
                          









                                        
                            





                                          
                            
                                    


                                          
                                  
                                       
                                    
                               















































                                        
                           



























































































































                                                   
                          

























































































































                                              
                           


















































                                                       
                        









































































                                    
                                  
                        
                           
                          
                              



                                
                             






                            
                           



                                        
                                 















                               
                      




                                     
                          


                               
                           
                                      
                        




                                    
                              
















                                




















































                                              
                           
                           
                          

































                                  

                            














































































                                                  



                                   









                                                       
                           











































                                      



















































                                           

                          
































































                                              

                              












































































                                          
                           












                                                   
                         
                             
                           






































                                  
















































































                                           

                                       
































                                     
                                 



































































































































































                                                
                              


































                                          

                              
                                         




























































































                                                 
















                                      










                                   

                                







                                       







































































                                                       

                           










































































                                                  

                            































                                           

                             





































































































































                                            

                             









                                   
                                     











































































                                      

                              

































































































                                                
                               











































































































                                                
                               





































                                             

                         
                                     
                           


























                               
                       
                                     


                            


                              






















                                
                               




                                          
                          
                                  


                                        
                                
                              
                                      
                             

                              
                         






                                   
                         













                                   
                               




                                
                          
                                     
                            
                                  
                            
                                    
                                        








                                    
                              
                              
                         







                                   
                         






                                      

                                       































































                                                
                        








                             


                                          


                                 










                                 

                             



































                                          





                                          












































































































































































































                                               

                               











































































































































































































































































                                                       
                          























                                               
                          



                               
                           








































                                              
                           













                                
                        

















                                       
                        


                        

                         






                                


























































































































































                                                 

                                

                          

                                  















                                                 





















                                        
                          





                               
                              
                                         
















































































































                                                
                          









































































                                                   

                           

































































                                               
                                 









































































                                         

                              







                                   

                            














                                     
                            











                                
                                       









































































































































                                               




                                  

                           

                               















                                               
                           










































                                             

                                     

















                                        

                                 




















































































                                    
                           
















                                        










                                      

                            






































































































































































                                                 
                                 

















































































                                         


                           

































































                                                       


                                       


























                                       

                                 






































                                    
                            











                                

                             






































































                                       
                              

                              


                                          










































                                            

                         

                           
































                               




                                  



















































                                            


                             






































































                                          

                              








































                                               

                           


                         

                          












                                        
                              































                                               

                          














                                

                                 








                                     

                             













                               
                              















                                                       


                                       























































                                               

                           





















                                   
                                 
                          
                                





































                                           

                          






























                                   































                                        

                              








































                                             


                                       








                                

                              












                                            

                            




















                                                 

                           











                                           



























































                                           

                            


                                   
                                  
                              
                                 








                              

                                     




















                                        
                            

















































                                          

                           



























































































































                                                 

                                       




































































                                         
                                   





                                  

                             





































                                               

                            










































                                       
                                























































                                         

                           















































                                               

                            










                            




                                  





                                

                                









                                


                               











                                            

                                

















































































                                                
                               



























                                   
                           






















                                    
                                




































































































                                         


                                 




















































                                        

                            

















































                                                

                          



















                                 

                                  














                                  
                                   













                                               
                         
                                
                        















                                            

                            








                                   
                                 








                                            
                          








                                        
                            






                                       
                            
                                       
                              
                                    
                              
                                      
                                          








                                      
                                
                                    
                               






























































                                            


                                 





































































                                              





                                          







                              


                                          



















































                                        
                          





























































































                                                
                                   
















                                          
                               

































                                             
                                    
                            
                                 
                          
                               
                                  



                                                       
                             































                                             
                                

























                                                 
                          


                                      
                               











                                         
                                            



































                                                 
                         
                             
                            





















































                                                                  
                                   
                                
                                  


















































                                                    
                             













                                               
                                   



                                    
                                                    










                                          
                                   





































                                                                      








                                                 


















                                                 
                                  



                                   
                                   


































                                                    
                            
                                         
                           
                             



                                              
                                





























                                         
                                    



















                                             
                             























                                          


































































































                                                
                             
























                                              
                                     
                                              
                                       
                                           
                                       
                                               
                                                   












                                                    
                                         
                                        
                                        



















                                           
                                     

















                                     
                            


































                                                   










































                                                   







                                    
                                















                                        
                                 











                                                
                             




























                                            
                        





































                                         
                            

















                                            



                                           
                                   























































                                                     
                             


                                          
                             
                              
                          



                                   
                                                     



















                                        


                                  
                             








                                        
                         




























                                            
                          

                                        
                                       

































                                                             
                                

                                      
                          
























                                                 









                                            
                                       

                              
                          


                                   
                                














































                                              


























































                                              
                             
                                  
                                                  




































                                                     
                                    




                                                
                                       
                                                
                                         
                                             
                                         
                                                 
                                                     











                                                      
                                           
                                               
                                          













                                             
                         
                       
                          


















                                              
                           





























































































                                                 
                                    
















                                           
                                

































                                              
                                     
                             
                                  
                           
                                
                                   



                                                        
                              































                                              
                                 

























                                                  
                           


                                       
                                











                                          
                                             



































                                                  
                          
                              
                             





















































                                                                   
                                    
                                 
                                   


















































                                                     
                              













                                                
                                    



                                     
                                                     










                                           
                                    





































                                                                       








                                                  


















                                                  
                                   



                                    
                                    


































                                                     
                             
                                          
                            
                              



                                               
                                 





























                                          
                                     



















                                              
                              























                                           


































































































                                                 
                              
























                                               
                                      
                                               
                                        
                                            
                                        
                                                
                                                    












                                                     
                                          
                                         
                                         



















                                            
                                      

















                                      
                             


































                                                    










































                                                    







                                     
                                 















                                         
                                  











                                                 
                              




























                                             
                         





































                                          
                             

















                                             



                                            
                                    























































                                                      
                              


                                           
                              
                               
                           



                                    
                                                      



















                                         


                                   
                              








                                         
                          




























                                             
                           

                                         
                                        

































                                                              
                                 

                                       
                           
























                                                  









                                             
                                        

                               
                           


                                    
                                 














































                                               


























































                                               
                              
                                   
                                                   




































                                                      
                                     




                                                 
                                        
                                                 
                                          
                                              
                                          
                                                  
                                                      











                                                       
                                            
                                                
                                           













                                              
                          
                        
                           



                                       
// DO NOT EDIT THIS FILE!
//
// Update it by running: go generate
//
// Generated at: 2018-08-20 09:01:38 +0000

package emojilib

import "strings"

var emojis = Emojis{
	"+1": Emoji{
		Keywords: []string{"thumbsup", "yes", "awesome", "good", "agree", "accept", "cool", "hand", "like"},
		Char:     "👍",
		Category: "people",
	},
	"-1": Emoji{
		Keywords: []string{"thumbsdown", "no", "dislike", "hand"},
		Char:     "👎",
		Category: "people",
	},
	"100": Emoji{
		Keywords: []string{"score", "perfect", "numbers", "century", "exam", "quiz", "test", "pass", "hundred"},
		Char:     "💯",
		Category: "symbols",
	},
	"1234": Emoji{
		Keywords: []string{"numbers", "blue-square"},
		Char:     "🔢",
		Category: "symbols",
	},
	"1st_place_medal": Emoji{
		Keywords: []string{"award", "winning", "first"},
		Char:     "🥇",
		Category: "activity",
	},
	"2nd_place_medal": Emoji{
		Keywords: []string{"award", "second"},
		Char:     "🥈",
		Category: "activity",
	},
	"3rd_place_medal": Emoji{
		Keywords: []string{"award", "third"},
		Char:     "🥉",
		Category: "activity",
	},
	"8ball": Emoji{
		Keywords: []string{"pool", "hobby", "game", "luck", "magic"},
		Char:     "🎱",
		Category: "activity",
	},
	"a": Emoji{
		Keywords: []string{"red-square", "alphabet", "letter"},
		Char:     "🅰️",
		Category: "symbols",
	},
	"ab": Emoji{
		Keywords: []string{"red-square", "alphabet"},
		Char:     "🆎",
		Category: "symbols",
	},
	"abc": Emoji{
		Keywords: []string{"blue-square", "alphabet"},
		Char:     "🔤",
		Category: "symbols",
	},
	"abcd": Emoji{
		Keywords: []string{"blue-square", "alphabet"},
		Char:     "🔡",
		Category: "symbols",
	},
	"accept": Emoji{
		Keywords: []string{"ok", "good", "chinese", "kanji", "agree", "yes", "orange-circle"},
		Char:     "🉑",
		Category: "symbols",
	},
	"adult": Emoji{
		Keywords: []string{"gender-neutral", "person"},
		Char:     "🧑",
		Category: "people",
	},
	"aerial_tramway": Emoji{
		Keywords: []string{"transportation", "vehicle", "ski"},
		Char:     "🚡",
		Category: "travel_and_places",
	},
	"afghanistan": Emoji{
		Keywords: []string{"af", "flag", "nation", "country", "banner"},
		Char:     "🇦🇫",
		Category: "flags",
	},
	"airplane": Emoji{
		Keywords: []string{"vehicle", "transportation", "flight", "fly"},
		Char:     "✈️",
		Category: "travel_and_places",
	},
	"aland_islands": Emoji{
		Keywords: []string{"Åland", "islands", "flag", "nation", "country", "banner"},
		Char:     "🇦🇽",
		Category: "flags",
	},
	"alarm_clock": Emoji{
		Keywords: []string{"time", "wake"},
		Char:     "⏰",
		Category: "objects",
	},
	"albania": Emoji{
		Keywords: []string{"al", "flag", "nation", "country", "banner"},
		Char:     "🇦🇱",
		Category: "flags",
	},
	"alembic": Emoji{
		Keywords: []string{"distilling", "science", "experiment", "chemistry"},
		Char:     "⚗",
		Category: "objects",
	},
	"algeria": Emoji{
		Keywords: []string{"dz", "flag", "nation", "country", "banner"},
		Char:     "🇩🇿",
		Category: "flags",
	},
	"alien": Emoji{
		Keywords: []string{"UFO", "paul", "weird", "outer_space"},
		Char:     "👽",
		Category: "people",
	},
	"ambulance": Emoji{
		Keywords: []string{"health", "911", "hospital"},
		Char:     "🚑",
		Category: "travel_and_places",
	},
	"american_samoa": Emoji{
		Keywords: []string{"american", "ws", "flag", "nation", "country", "banner"},
		Char:     "🇦🇸",
		Category: "flags",
	},
	"amphora": Emoji{
		Keywords: []string{"vase", "jar"},
		Char:     "🏺",
		Category: "objects",
	},
	"anchor": Emoji{
		Keywords: []string{"ship", "ferry", "sea", "boat"},
		Char:     "⚓",
		Category: "travel_and_places",
	},
	"andorra": Emoji{
		Keywords: []string{"ad", "flag", "nation", "country", "banner"},
		Char:     "🇦🇩",
		Category: "flags",
	},
	"angel": Emoji{
		Keywords: []string{"heaven", "wings", "halo"},
		Char:     "👼",
		Category: "people",
	},
	"anger": Emoji{
		Keywords: []string{"angry", "mad"},
		Char:     "💢",
		Category: "symbols",
	},
	"angola": Emoji{
		Keywords: []string{"ao", "flag", "nation", "country", "banner"},
		Char:     "🇦🇴",
		Category: "flags",
	},
	"angry": Emoji{
		Keywords: []string{"mad", "face", "annoyed", "frustrated"},
		Char:     "😠",
		Category: "people",
	},
	"anguilla": Emoji{
		Keywords: []string{"ai", "flag", "nation", "country", "banner"},
		Char:     "🇦🇮",
		Category: "flags",
	},
	"anguished": Emoji{
		Keywords: []string{"face", "stunned", "nervous"},
		Char:     "😧",
		Category: "people",
	},
	"ant": Emoji{
		Keywords: []string{"animal", "insect", "nature", "bug"},
		Char:     "🐜",
		Category: "animals_and_nature",
	},
	"antarctica": Emoji{
		Keywords: []string{"aq", "flag", "nation", "country", "banner"},
		Char:     "🇦🇶",
		Category: "flags",
	},
	"antigua_barbuda": Emoji{
		Keywords: []string{"antigua", "barbuda", "flag", "nation", "country", "banner"},
		Char:     "🇦🇬",
		Category: "flags",
	},
	"apple": Emoji{
		Keywords: []string{"fruit", "mac", "school"},
		Char:     "🍎",
		Category: "food_and_drink",
	},
	"aquarius": Emoji{
		Keywords: []string{"sign", "purple-square", "zodiac", "astrology"},
		Char:     "♒",
		Category: "symbols",
	},
	"argentina": Emoji{
		Keywords: []string{"ar", "flag", "nation", "country", "banner"},
		Char:     "🇦🇷",
		Category: "flags",
	},
	"aries": Emoji{
		Keywords: []string{"sign", "purple-square", "zodiac", "astrology"},
		Char:     "♈",
		Category: "symbols",
	},
	"armenia": Emoji{
		Keywords: []string{"am", "flag", "nation", "country", "banner"},
		Char:     "🇦🇲",
		Category: "flags",
	},
	"arrow_backward": Emoji{
		Keywords: []string{"blue-square", "left", "direction"},
		Char:     "◀️",
		Category: "symbols",
	},
	"arrow_double_down": Emoji{
		Keywords: []string{"blue-square", "direction", "bottom"},
		Char:     "⏬",
		Category: "symbols",
	},
	"arrow_double_up": Emoji{
		Keywords: []string{"blue-square", "direction", "top"},
		Char:     "⏫",
		Category: "symbols",
	},
	"arrow_down": Emoji{
		Keywords: []string{"blue-square", "direction", "bottom"},
		Char:     "⬇️",
		Category: "symbols",
	},
	"arrow_down_small": Emoji{
		Keywords: []string{"blue-square", "direction", "bottom"},
		Char:     "🔽",
		Category: "symbols",
	},
	"arrow_forward": Emoji{
		Keywords: []string{"blue-square", "right", "direction", "play"},
		Char:     "▶️",
		Category: "symbols",
	},
	"arrow_heading_down": Emoji{
		Keywords: []string{"blue-square", "direction", "bottom"},
		Char:     "⤵️",
		Category: "symbols",
	},
	"arrow_heading_up": Emoji{
		Keywords: []string{"blue-square", "direction", "top"},
		Char:     "⤴️",
		Category: "symbols",
	},
	"arrow_left": Emoji{
		Keywords: []string{"blue-square", "previous", "back"},
		Char:     "⬅️",
		Category: "symbols",
	},
	"arrow_lower_left": Emoji{
		Keywords: []string{"blue-square", "direction", "diagonal", "southwest"},
		Char:     "↙️",
		Category: "symbols",
	},
	"arrow_lower_right": Emoji{
		Keywords: []string{"blue-square", "direction", "diagonal", "southeast"},
		Char:     "↘️",
		Category: "symbols",
	},
	"arrow_right": Emoji{
		Keywords: []string{"blue-square", "next"},
		Char:     "➡️",
		Category: "symbols",
	},
	"arrow_right_hook": Emoji{
		Keywords: []string{"blue-square", "return", "rotate", "direction"},
		Char:     "↪️",
		Category: "symbols",
	},
	"arrow_up": Emoji{
		Keywords: []string{"blue-square", "continue", "top", "direction"},
		Char:     "⬆️",
		Category: "symbols",
	},
	"arrow_up_down": Emoji{
		Keywords: []string{"blue-square", "direction", "way", "vertical"},
		Char:     "↕️",
		Category: "symbols",
	},
	"arrow_up_small": Emoji{
		Keywords: []string{"blue-square", "triangle", "direction", "point", "forward", "top"},
		Char:     "🔼",
		Category: "symbols",
	},
	"arrow_upper_left": Emoji{
		Keywords: []string{"blue-square", "point", "direction", "diagonal", "northwest"},
		Char:     "↖️",
		Category: "symbols",
	},
	"arrow_upper_right": Emoji{
		Keywords: []string{"blue-square", "point", "direction", "diagonal", "northeast"},
		Char:     "↗️",
		Category: "symbols",
	},
	"arrows_clockwise": Emoji{
		Keywords: []string{"sync", "cycle", "round", "repeat"},
		Char:     "🔃",
		Category: "symbols",
	},
	"arrows_counterclockwise": Emoji{
		Keywords: []string{"blue-square", "sync", "cycle"},
		Char:     "🔄",
		Category: "symbols",
	},
	"art": Emoji{
		Keywords: []string{"design", "paint", "draw", "colors"},
		Char:     "🎨",
		Category: "activity",
	},
	"articulated_lorry": Emoji{
		Keywords: []string{"vehicle", "cars", "transportation", "express"},
		Char:     "🚛",
		Category: "travel_and_places",
	},
	"artificial_satellite": Emoji{
		Keywords: []string{"communication", "gps", "orbit", "spaceflight", "NASA", "ISS"},
		Char:     "🛰",
		Category: "travel_and_places",
	},
	"aruba": Emoji{
		Keywords: []string{"aw", "flag", "nation", "country", "banner"},
		Char:     "🇦🇼",
		Category: "flags",
	},
	"asterisk": Emoji{
		Keywords: []string{"star", "keycap"},
		Char:     "*⃣",
		Category: "symbols",
	},
	"astonished": Emoji{
		Keywords: []string{"face", "xox", "surprised", "poisoned"},
		Char:     "😲",
		Category: "people",
	},
	"athletic_shoe": Emoji{
		Keywords: []string{"shoes", "sports", "sneakers"},
		Char:     "👟",
		Category: "people",
	},
	"atm": Emoji{
		Keywords: []string{"money", "sales", "cash", "blue-square", "payment", "bank"},
		Char:     "🏧",
		Category: "symbols",
	},
	"atom_symbol": Emoji{
		Keywords: []string{"science", "physics", "chemistry"},
		Char:     "⚛",
		Category: "symbols",
	},
	"australia": Emoji{
		Keywords: []string{"au", "flag", "nation", "country", "banner"},
		Char:     "🇦🇺",
		Category: "flags",
	},
	"austria": Emoji{
		Keywords: []string{"at", "flag", "nation", "country", "banner"},
		Char:     "🇦🇹",
		Category: "flags",
	},
	"avocado": Emoji{
		Keywords: []string{"fruit", "food"},
		Char:     "🥑",
		Category: "food_and_drink",
	},
	"azerbaijan": Emoji{
		Keywords: []string{"az", "flag", "nation", "country", "banner"},
		Char:     "🇦🇿",
		Category: "flags",
	},
	"b": Emoji{
		Keywords: []string{"red-square", "alphabet", "letter"},
		Char:     "🅱️",
		Category: "symbols",
	},
	"baby": Emoji{
		Keywords: []string{"child", "boy", "girl", "toddler"},
		Char:     "👶",
		Category: "people",
	},
	"baby_bottle": Emoji{
		Keywords: []string{"food", "container", "milk"},
		Char:     "🍼",
		Category: "food_and_drink",
	},
	"baby_chick": Emoji{
		Keywords: []string{"animal", "chicken", "bird"},
		Char:     "🐤",
		Category: "animals_and_nature",
	},
	"baby_symbol": Emoji{
		Keywords: []string{"orange-square", "child"},
		Char:     "🚼",
		Category: "symbols",
	},
	"back": Emoji{
		Keywords: []string{"arrow", "words", "return"},
		Char:     "🔙",
		Category: "symbols",
	},
	"bacon": Emoji{
		Keywords: []string{"food", "breakfast", "pork", "pig", "meat"},
		Char:     "🥓",
		Category: "food_and_drink",
	},
	"badminton": Emoji{
		Keywords: []string{"sports"},
		Char:     "🏸",
		Category: "activity",
	},
	"baggage_claim": Emoji{
		Keywords: []string{"blue-square", "airport", "transport"},
		Char:     "🛄",
		Category: "symbols",
	},
	"baguette_bread": Emoji{
		Keywords: []string{"food", "bread", "french"},
		Char:     "🥖",
		Category: "food_and_drink",
	},
	"bahamas": Emoji{
		Keywords: []string{"bs", "flag", "nation", "country", "banner"},
		Char:     "🇧🇸",
		Category: "flags",
	},
	"bahrain": Emoji{
		Keywords: []string{"bh", "flag", "nation", "country", "banner"},
		Char:     "🇧🇭",
		Category: "flags",
	},
	"balance_scale": Emoji{
		Keywords: []string{"law", "fairness", "weight"},
		Char:     "⚖",
		Category: "objects",
	},
	"balloon": Emoji{
		Keywords: []string{"party", "celebration", "birthday", "circus"},
		Char:     "🎈",
		Category: "objects",
	},
	"ballot_box": Emoji{
		Keywords: []string{"election", "vote"},
		Char:     "🗳",
		Category: "objects",
	},
	"ballot_box_with_check": Emoji{
		Keywords: []string{"ok", "agree", "confirm", "black-square", "vote", "election", "yes", "tick"},
		Char:     "☑️",
		Category: "symbols",
	},
	"bamboo": Emoji{
		Keywords: []string{"plant", "nature", "vegetable", "panda", "pine_decoration"},
		Char:     "🎍",
		Category: "animals_and_nature",
	},
	"banana": Emoji{
		Keywords: []string{"fruit", "food", "monkey"},
		Char:     "🍌",
		Category: "food_and_drink",
	},
	"bangbang": Emoji{
		Keywords: []string{"exclamation", "surprise"},
		Char:     "‼️",
		Category: "symbols",
	},
	"bangladesh": Emoji{
		Keywords: []string{"bd", "flag", "nation", "country", "banner"},
		Char:     "🇧🇩",
		Category: "flags",
	},
	"bank": Emoji{
		Keywords: []string{"building", "money", "sales", "cash", "business", "enterprise"},
		Char:     "🏦",
		Category: "travel_and_places",
	},
	"bar_chart": Emoji{
		Keywords: []string{"graph", "presentation", "stats"},
		Char:     "📊",
		Category: "objects",
	},
	"barbados": Emoji{
		Keywords: []string{"bb", "flag", "nation", "country", "banner"},
		Char:     "🇧🇧",
		Category: "flags",
	},
	"barber": Emoji{
		Keywords: []string{"hair", "salon", "style"},
		Char:     "💈",
		Category: "objects",
	},
	"baseball": Emoji{
		Keywords: []string{"sports", "balls"},
		Char:     "⚾",
		Category: "activity",
	},
	"basketball": Emoji{
		Keywords: []string{"sports", "balls", "NBA"},
		Char:     "🏀",
		Category: "activity",
	},
	"basketball_man": Emoji{
		Keywords: []string{"sports", "human"},
		Char:     "⛹",
		Category: "activity",
	},
	"basketball_woman": Emoji{
		Keywords: []string{"sports", "human", "woman", "female"},
		Char:     "⛹️‍♀️",
		Category: "activity",
	},
	"bat": Emoji{
		Keywords: []string{"animal", "nature", "blind", "vampire"},
		Char:     "🦇",
		Category: "animals_and_nature",
	},
	"bath": Emoji{
		Keywords: []string{"clean", "shower", "bathroom"},
		Char:     "🛀",
		Category: "activity",
	},
	"bathtub": Emoji{
		Keywords: []string{"clean", "shower", "bathroom"},
		Char:     "🛁",
		Category: "objects",
	},
	"battery": Emoji{
		Keywords: []string{"power", "energy", "sustain"},
		Char:     "🔋",
		Category: "objects",
	},
	"beach_umbrella": Emoji{
		Keywords: []string{"weather", "summer", "sunny", "sand", "mojito"},
		Char:     "🏖",
		Category: "travel_and_places",
	},
	"bear": Emoji{
		Keywords: []string{"animal", "nature", "wild"},
		Char:     "🐻",
		Category: "animals_and_nature",
	},
	"bearded_person": Emoji{
		Keywords: []string{"person", "bewhiskered"},
		Char:     "🧔",
		Category: "people",
	},
	"bed": Emoji{
		Keywords: []string{"sleep", "rest"},
		Char:     "🛏",
		Category: "objects",
	},
	"beer": Emoji{
		Keywords: []string{"relax", "beverage", "drink", "drunk", "party", "pub", "summer", "alcohol", "booze"},
		Char:     "🍺",
		Category: "food_and_drink",
	},
	"beers": Emoji{
		Keywords: []string{"relax", "beverage", "drink", "drunk", "party", "pub", "summer", "alcohol", "booze"},
		Char:     "🍻",
		Category: "food_and_drink",
	},
	"beetle": Emoji{
		Keywords: []string{"animal", "insect", "nature", "ladybug"},
		Char:     "🐞",
		Category: "animals_and_nature",
	},
	"beginner": Emoji{
		Keywords: []string{"badge", "shield"},
		Char:     "🔰",
		Category: "symbols",
	},
	"belarus": Emoji{
		Keywords: []string{"by", "flag", "nation", "country", "banner"},
		Char:     "🇧🇾",
		Category: "flags",
	},
	"belgium": Emoji{
		Keywords: []string{"be", "flag", "nation", "country", "banner"},
		Char:     "🇧🇪",
		Category: "flags",
	},
	"belize": Emoji{
		Keywords: []string{"bz", "flag", "nation", "country", "banner"},
		Char:     "🇧🇿",
		Category: "flags",
	},
	"bell": Emoji{
		Keywords: []string{"sound", "notification", "christmas", "xmas", "chime"},
		Char:     "🔔",
		Category: "symbols",
	},
	"bellhop_bell": Emoji{
		Keywords: []string{"service"},
		Char:     "🛎",
		Category: "objects",
	},
	"benin": Emoji{
		Keywords: []string{"bj", "flag", "nation", "country", "banner"},
		Char:     "🇧🇯",
		Category: "flags",
	},
	"bento": Emoji{
		Keywords: []string{"food", "japanese", "box"},
		Char:     "🍱",
		Category: "food_and_drink",
	},
	"bermuda": Emoji{
		Keywords: []string{"bm", "flag", "nation", "country", "banner"},
		Char:     "🇧🇲",
		Category: "flags",
	},
	"bhutan": Emoji{
		Keywords: []string{"bt", "flag", "nation", "country", "banner"},
		Char:     "🇧🇹",
		Category: "flags",
	},
	"bike": Emoji{
		Keywords: []string{"sports", "bicycle", "exercise", "hipster"},
		Char:     "🚲",
		Category: "travel_and_places",
	},
	"biking_man": Emoji{
		Keywords: []string{"sports", "bike", "exercise", "hipster"},
		Char:     "🚴",
		Category: "activity",
	},
	"biking_woman": Emoji{
		Keywords: []string{"sports", "bike", "exercise", "hipster", "woman", "female"},
		Char:     "🚴‍♀️",
		Category: "activity",
	},
	"bikini": Emoji{
		Keywords: []string{"swimming", "female", "woman", "girl", "fashion", "beach", "summer"},
		Char:     "👙",
		Category: "people",
	},
	"billed_hat": Emoji{
		Keywords: []string{"cap", "baseball"},
		Char:     "🧢",
		Category: "people",
	},
	"biohazard": Emoji{
		Keywords: []string{"danger"},
		Char:     "☣",
		Category: "symbols",
	},
	"bird": Emoji{
		Keywords: []string{"animal", "nature", "fly", "tweet", "spring"},
		Char:     "🐦",
		Category: "animals_and_nature",
	},
	"birthday": Emoji{
		Keywords: []string{"food", "dessert", "cake"},
		Char:     "🎂",
		Category: "food_and_drink",
	},
	"black_circle": Emoji{
		Keywords: []string{"shape", "button", "round"},
		Char:     "⚫",
		Category: "symbols",
	},
	"black_flag": Emoji{
		Keywords: []string{"pirate"},
		Char:     "🏴",
		Category: "objects",
	},
	"black_heart": Emoji{
		Keywords: []string{"evil"},
		Char:     "🖤",
		Category: "symbols",
	},
	"black_joker": Emoji{
		Keywords: []string{"poker", "cards", "game", "play", "magic"},
		Char:     "🃏",
		Category: "symbols",
	},
	"black_large_square": Emoji{
		Keywords: []string{"shape", "icon", "button"},
		Char:     "⬛",
		Category: "symbols",
	},
	"black_medium_small_square": Emoji{
		Keywords: []string{"icon", "shape", "button"},
		Char:     "◾",
		Category: "symbols",
	},
	"black_medium_square": Emoji{
		Keywords: []string{"shape", "button", "icon"},
		Char:     "◼️",
		Category: "symbols",
	},
	"black_nib": Emoji{
		Keywords: []string{"pen", "stationery", "writing", "write"},
		Char:     "✒️",
		Category: "objects",
	},
	"black_small_square": Emoji{
		Keywords: []string{"shape", "icon"},
		Char:     "▪️",
		Category: "symbols",
	},
	"black_square_button": Emoji{
		Keywords: []string{"shape", "input", "frame"},
		Char:     "🔲",
		Category: "symbols",
	},
	"blonde_man": Emoji{
		Keywords: []string{"man", "male", "boy", "blonde", "guy", "person"},
		Char:     "👱",
		Category: "people",
	},
	"blonde_woman": Emoji{
		Keywords: []string{"woman", "female", "girl", "blonde", "person"},
		Char:     "👱‍♀️",
		Category: "people",
	},
	"blossom": Emoji{
		Keywords: []string{"nature", "flowers", "yellow"},
		Char:     "🌼",
		Category: "animals_and_nature",
	},
	"blowfish": Emoji{
		Keywords: []string{"animal", "nature", "food", "sea", "ocean"},
		Char:     "🐡",
		Category: "animals_and_nature",
	},
	"blue_book": Emoji{
		Keywords: []string{"read", "library", "knowledge", "learn", "study"},
		Char:     "📘",
		Category: "objects",
	},
	"blue_car": Emoji{
		Keywords: []string{"transportation", "vehicle"},
		Char:     "🚙",
		Category: "travel_and_places",
	},
	"blue_heart": Emoji{
		Keywords: []string{"love", "like", "affection", "valentines"},
		Char:     "💙",
		Category: "symbols",
	},
	"blush": Emoji{
		Keywords: []string{"face", "smile", "happy", "flushed", "crush", "embarrassed", "shy", "joy"},
		Char:     "😊",
		Category: "people",
	},
	"boar": Emoji{
		Keywords: []string{"animal", "nature"},
		Char:     "🐗",
		Category: "animals_and_nature",
	},
	"bolivia": Emoji{
		Keywords: []string{"bo", "flag", "nation", "country", "banner"},
		Char:     "🇧🇴",
		Category: "flags",
	},
	"bomb": Emoji{
		Keywords: []string{"boom", "explode", "explosion", "terrorism"},
		Char:     "💣",
		Category: "objects",
	},
	"bookmark": Emoji{
		Keywords: []string{"favorite", "label", "save"},
		Char:     "🔖",
		Category: "objects",
	},
	"bookmark_tabs": Emoji{
		Keywords: []string{"favorite", "save", "order", "tidy"},
		Char:     "📑",
		Category: "objects",
	},
	"books": Emoji{
		Keywords: []string{"literature", "library", "study"},
		Char:     "📚",
		Category: "objects",
	},
	"boom": Emoji{
		Keywords: []string{"bomb", "explode", "explosion", "collision", "blown"},
		Char:     "💥",
		Category: "animals_and_nature",
	},
	"boot": Emoji{
		Keywords: []string{"shoes", "fashion"},
		Char:     "👢",
		Category: "people",
	},
	"bosnia_herzegovina": Emoji{
		Keywords: []string{"bosnia", "herzegovina", "flag", "nation", "country", "banner"},
		Char:     "🇧🇦",
		Category: "flags",
	},
	"botswana": Emoji{
		Keywords: []string{"bw", "flag", "nation", "country", "banner"},
		Char:     "🇧🇼",
		Category: "flags",
	},
	"bouquet": Emoji{
		Keywords: []string{"flowers", "nature", "spring"},
		Char:     "💐",
		Category: "animals_and_nature",
	},
	"bow_and_arrow": Emoji{
		Keywords: []string{"sports"},
		Char:     "🏹",
		Category: "activity",
	},
	"bowing_man": Emoji{
		Keywords: []string{"man", "male", "boy"},
		Char:     "🙇",
		Category: "people",
	},
	"bowing_woman": Emoji{
		Keywords: []string{"woman", "female", "girl"},
		Char:     "🙇‍♀️",
		Category: "people",
	},
	"bowl_with_spoon": Emoji{
		Keywords: []string{"food", "breakfast", "cereal", "oatmeal", "porridge"},
		Char:     "🥣",
		Category: "food_and_drink",
	},
	"bowling": Emoji{
		Keywords: []string{"sports", "fun", "play"},
		Char:     "🎳",
		Category: "activity",
	},
	"boxing_glove": Emoji{
		Keywords: []string{"sports", "fighting"},
		Char:     "🥊",
		Category: "activity",
	},
	"boy": Emoji{
		Keywords: []string{"man", "male", "guy", "teenager"},
		Char:     "👦",
		Category: "people",
	},
	"brain": Emoji{
		Keywords: []string{"smart", "intelligent"},
		Char:     "🧠",
		Category: "people",
	},
	"brazil": Emoji{
		Keywords: []string{"br", "flag", "nation", "country", "banner"},
		Char:     "🇧🇷",
		Category: "flags",
	},
	"bread": Emoji{
		Keywords: []string{"food", "wheat", "breakfast", "toast"},
		Char:     "🍞",
		Category: "food_and_drink",
	},
	"breastfeeding": Emoji{
		Keywords: []string{"nursing", "baby"},
		Char:     "🤱",
		Category: "people",
	},
	"bride_with_veil": Emoji{
		Keywords: []string{"couple", "marriage", "wedding", "woman", "bride"},
		Char:     "👰",
		Category: "people",
	},
	"bridge_at_night": Emoji{
		Keywords: []string{"photo", "sanfrancisco"},
		Char:     "🌉",
		Category: "travel_and_places",
	},
	"briefcase": Emoji{
		Keywords: []string{"business", "documents", "work", "law", "legal", "job", "career"},
		Char:     "💼",
		Category: "people",
	},
	"british_indian_ocean_territory": Emoji{
		Keywords: []string{"british", "indian", "ocean", "territory", "flag", "nation", "country", "banner"},
		Char:     "🇮🇴",
		Category: "flags",
	},
	"british_virgin_islands": Emoji{
		Keywords: []string{"british", "virgin", "islands", "bvi", "flag", "nation", "country", "banner"},
		Char:     "🇻🇬",
		Category: "flags",
	},
	"broccoli": Emoji{
		Keywords: []string{"fruit", "food", "vegetable"},
		Char:     "🥦",
		Category: "food_and_drink",
	},
	"broken_heart": Emoji{
		Keywords: []string{"sad", "sorry", "break", "heart", "heartbreak"},
		Char:     "💔",
		Category: "symbols",
	},
	"brunei": Emoji{
		Keywords: []string{"bn", "darussalam", "flag", "nation", "country", "banner"},
		Char:     "🇧🇳",
		Category: "flags",
	},
	"bug": Emoji{
		Keywords: []string{"animal", "insect", "nature", "worm"},
		Char:     "🐛",
		Category: "animals_and_nature",
	},
	"building_construction": Emoji{
		Keywords: []string{"wip", "working", "progress"},
		Char:     "🏗",
		Category: "travel_and_places",
	},
	"bulb": Emoji{
		Keywords: []string{"light", "electricity", "idea"},
		Char:     "💡",
		Category: "objects",
	},
	"bulgaria": Emoji{
		Keywords: []string{"bg", "flag", "nation", "country", "banner"},
		Char:     "🇧🇬",
		Category: "flags",
	},
	"bullettrain_front": Emoji{
		Keywords: []string{"transportation", "vehicle", "speed", "fast", "public", "travel"},
		Char:     "🚅",
		Category: "travel_and_places",
	},
	"bullettrain_side": Emoji{
		Keywords: []string{"transportation", "vehicle"},
		Char:     "🚄",
		Category: "travel_and_places",
	},
	"burkina_faso": Emoji{
		Keywords: []string{"burkina", "faso", "flag", "nation", "country", "banner"},
		Char:     "🇧🇫",
		Category: "flags",
	},
	"burrito": Emoji{
		Keywords: []string{"food", "mexican"},
		Char:     "🌯",
		Category: "food_and_drink",
	},
	"burundi": Emoji{
		Keywords: []string{"bi", "flag", "nation", "country", "banner"},
		Char:     "🇧🇮",
		Category: "flags",
	},
	"bus": Emoji{
		Keywords: []string{"car", "vehicle", "transportation"},
		Char:     "🚌",
		Category: "travel_and_places",
	},
	"business_suit_levitating": Emoji{
		Keywords: []string{"suit", "business", "levitate", "hover", "jump"},
		Char:     "🕴",
		Category: "activity",
	},
	"busstop": Emoji{
		Keywords: []string{"transportation", "wait"},
		Char:     "🚏",
		Category: "travel_and_places",
	},
	"bust_in_silhouette": Emoji{
		Keywords: []string{"user", "person", "human"},
		Char:     "👤",
		Category: "people",
	},
	"busts_in_silhouette": Emoji{
		Keywords: []string{"user", "person", "human", "group", "team"},
		Char:     "👥",
		Category: "people",
	},
	"butterfly": Emoji{
		Keywords: []string{"animal", "insect", "nature", "caterpillar"},
		Char:     "🦋",
		Category: "animals_and_nature",
	},
	"cactus": Emoji{
		Keywords: []string{"vegetable", "plant", "nature"},
		Char:     "🌵",
		Category: "animals_and_nature",
	},
	"cake": Emoji{
		Keywords: []string{"food", "dessert"},
		Char:     "🍰",
		Category: "food_and_drink",
	},
	"calendar": Emoji{
		Keywords: []string{"schedule", "date", "planning"},
		Char:     "📆",
		Category: "objects",
	},
	"call_me_hand": Emoji{
		Keywords: []string{"hands", "gesture"},
		Char:     "🤙",
		Category: "people",
	},
	"calling": Emoji{
		Keywords: []string{"iphone", "incoming"},
		Char:     "📲",
		Category: "objects",
	},
	"cambodia": Emoji{
		Keywords: []string{"kh", "flag", "nation", "country", "banner"},
		Char:     "🇰🇭",
		Category: "flags",
	},
	"camel": Emoji{
		Keywords: []string{"animal", "nature", "hot", "desert", "hump"},
		Char:     "🐫",
		Category: "animals_and_nature",
	},
	"camera": Emoji{
		Keywords: []string{"gadgets", "photography"},
		Char:     "📷",
		Category: "objects",
	},
	"camera_flash": Emoji{
		Keywords: []string{"photography", "gadgets"},
		Char:     "📸",
		Category: "objects",
	},
	"cameroon": Emoji{
		Keywords: []string{"cm", "flag", "nation", "country", "banner"},
		Char:     "🇨🇲",
		Category: "flags",
	},
	"camping": Emoji{
		Keywords: []string{"photo", "outdoors", "tent"},
		Char:     "🏕",
		Category: "travel_and_places",
	},
	"canada": Emoji{
		Keywords: []string{"ca", "flag", "nation", "country", "banner"},
		Char:     "🇨🇦",
		Category: "flags",
	},
	"canary_islands": Emoji{
		Keywords: []string{"canary", "islands", "flag", "nation", "country", "banner"},
		Char:     "🇮🇨",
		Category: "flags",
	},
	"cancer": Emoji{
		Keywords: []string{"sign", "zodiac", "purple-square", "astrology"},
		Char:     "♋",
		Category: "symbols",
	},
	"candle": Emoji{
		Keywords: []string{"fire", "wax"},
		Char:     "🕯",
		Category: "objects",
	},
	"candy": Emoji{
		Keywords: []string{"snack", "dessert", "sweet", "lolly"},
		Char:     "🍬",
		Category: "food_and_drink",
	},
	"canned_food": Emoji{
		Keywords: []string{"food", "soup"},
		Char:     "🥫",
		Category: "food_and_drink",
	},
	"canoe": Emoji{
		Keywords: []string{"boat", "paddle", "water", "ship"},
		Char:     "🛶",
		Category: "travel_and_places",
	},
	"cape_verde": Emoji{
		Keywords: []string{"cabo", "verde", "flag", "nation", "country", "banner"},
		Char:     "🇨🇻",
		Category: "flags",
	},
	"capital_abcd": Emoji{
		Keywords: []string{"alphabet", "words", "blue-square"},
		Char:     "🔠",
		Category: "symbols",
	},
	"capricorn": Emoji{
		Keywords: []string{"sign", "zodiac", "purple-square", "astrology"},
		Char:     "♑",
		Category: "symbols",
	},
	"card_file_box": Emoji{
		Keywords: []string{"business", "stationery"},
		Char:     "🗃",
		Category: "objects",
	},
	"card_index": Emoji{
		Keywords: []string{"business", "stationery"},
		Char:     "📇",
		Category: "objects",
	},
	"card_index_dividers": Emoji{
		Keywords: []string{"organizing", "business", "stationery"},
		Char:     "🗂",
		Category: "objects",
	},
	"caribbean_netherlands": Emoji{
		Keywords: []string{"bonaire", "flag", "nation", "country", "banner"},
		Char:     "🇧🇶",
		Category: "flags",
	},
	"carousel_horse": Emoji{
		Keywords: []string{"photo", "carnival"},
		Char:     "🎠",
		Category: "travel_and_places",
	},
	"carrot": Emoji{
		Keywords: []string{"vegetable", "food", "orange"},
		Char:     "🥕",
		Category: "food_and_drink",
	},
	"cat": Emoji{
		Keywords: []string{"animal", "meow", "nature", "pet", "kitten"},
		Char:     "🐱",
		Category: "animals_and_nature",
	},
	"cat2": Emoji{
		Keywords: []string{"animal", "meow", "pet", "cats"},
		Char:     "🐈",
		Category: "animals_and_nature",
	},
	"cayman_islands": Emoji{
		Keywords: []string{"cayman", "islands", "flag", "nation", "country", "banner"},
		Char:     "🇰🇾",
		Category: "flags",
	},
	"cd": Emoji{
		Keywords: []string{"technology", "dvd", "disk", "disc", "90s"},
		Char:     "💿",
		Category: "objects",
	},
	"central_african_republic": Emoji{
		Keywords: []string{"central", "african", "republic", "flag", "nation", "country", "banner"},
		Char:     "🇨🇫",
		Category: "flags",
	},
	"chad": Emoji{
		Keywords: []string{"td", "flag", "nation", "country", "banner"},
		Char:     "🇹🇩",
		Category: "flags",
	},
	"chains": Emoji{
		Keywords: []string{"lock", "arrest"},
		Char:     "⛓",
		Category: "objects",
	},
	"champagne": Emoji{
		Keywords: []string{"drink", "wine", "bottle", "celebration"},
		Char:     "🍾",
		Category: "food_and_drink",
	},
	"chart": Emoji{
		Keywords: []string{"green-square", "graph", "presentation", "stats"},
		Char:     "💹",
		Category: "symbols",
	},
	"chart_with_downwards_trend": Emoji{
		Keywords: []string{"graph", "presentation", "stats", "recession", "business", "economics", "money", "sales", "bad", "failure"},
		Char:     "📉",
		Category: "objects",
	},
	"chart_with_upwards_trend": Emoji{
		Keywords: []string{"graph", "presentation", "stats", "recovery", "business", "economics", "money", "sales", "good", "success"},
		Char:     "📈",
		Category: "objects",
	},
	"checkered_flag": Emoji{
		Keywords: []string{"contest", "finishline", "race", "gokart"},
		Char:     "🏁",
		Category: "travel_and_places",
	},
	"cheese": Emoji{
		Keywords: []string{"food", "chadder"},
		Char:     "🧀",
		Category: "food_and_drink",
	},
	"cherries": Emoji{
		Keywords: []string{"food", "fruit"},
		Char:     "🍒",
		Category: "food_and_drink",
	},
	"cherry_blossom": Emoji{
		Keywords: []string{"nature", "plant", "spring", "flower"},
		Char:     "🌸",
		Category: "animals_and_nature",
	},
	"chestnut": Emoji{
		Keywords: []string{"food", "squirrel"},
		Char:     "🌰",
		Category: "animals_and_nature",
	},
	"chicken": Emoji{
		Keywords: []string{"animal", "cluck", "nature", "bird"},
		Char:     "🐔",
		Category: "animals_and_nature",
	},
	"child": Emoji{
		Keywords: []string{"gender-neutral", "young"},
		Char:     "🧒",
		Category: "people",
	},
	"children_crossing": Emoji{
		Keywords: []string{"school", "warning", "danger", "sign", "driving", "yellow-diamond"},
		Char:     "🚸",
		Category: "symbols",
	},
	"chile": Emoji{
		Keywords: []string{"flag", "nation", "country", "banner"},
		Char:     "🇨🇱",
		Category: "flags",
	},
	"chipmunk": Emoji{
		Keywords: []string{"animal", "nature", "rodent", "squirrel"},
		Char:     "🐿",
		Category: "animals_and_nature",
	},
	"chocolate_bar": Emoji{
		Keywords: []string{"food", "snack", "dessert", "sweet"},
		Char:     "🍫",
		Category: "food_and_drink",
	},
	"chopsticks": Emoji{
		Keywords: []string{"food"},
		Char:     "🥢",
		Category: "food_and_drink",
	},
	"christmas_island": Emoji{
		Keywords: []string{"christmas", "island", "flag", "nation", "country", "banner"},
		Char:     "🇨🇽",
		Category: "flags",
	},
	"christmas_tree": Emoji{
		Keywords: []string{"festival", "vacation", "december", "xmas", "celebration"},
		Char:     "🎄",
		Category: "animals_and_nature",
	},
	"church": Emoji{
		Keywords: []string{"building", "religion", "christ"},
		Char:     "⛪",
		Category: "travel_and_places",
	},
	"cinema": Emoji{
		Keywords: []string{"blue-square", "record", "film", "movie", "curtain", "stage", "theater"},
		Char:     "🎦",
		Category: "symbols",
	},
	"circus_tent": Emoji{
		Keywords: []string{"festival", "carnival", "party"},
		Char:     "🎪",
		Category: "activity",
	},
	"city_sunrise": Emoji{
		Keywords: []string{"photo", "good morning", "dawn"},
		Char:     "🌇",
		Category: "travel_and_places",
	},
	"city_sunset": Emoji{
		Keywords: []string{"photo", "evening", "sky", "buildings"},
		Char:     "🌆",
		Category: "travel_and_places",
	},
	"cityscape": Emoji{
		Keywords: []string{"photo", "night life", "urban"},
		Char:     "🏙",
		Category: "travel_and_places",
	},
	"cl": Emoji{
		Keywords: []string{"alphabet", "words", "red-square"},
		Char:     "🆑",
		Category: "symbols",
	},
	"clamp": Emoji{
		Keywords: []string{"tool"},
		Char:     "🗜",
		Category: "objects",
	},
	"clap": Emoji{
		Keywords: []string{"hands", "praise", "applause", "congrats", "yay"},
		Char:     "👏",
		Category: "people",
	},
	"clapper": Emoji{
		Keywords: []string{"movie", "film", "record"},
		Char:     "🎬",
		Category: "activity",
	},
	"classical_building": Emoji{
		Keywords: []string{"art", "culture", "history"},
		Char:     "🏛",
		Category: "travel_and_places",
	},
	"climbing_man": Emoji{
		Keywords: []string{"sports", "hobby", "man", "male", "rock"},
		Char:     "🧗‍♂️",
		Category: "activity",
	},
	"climbing_woman": Emoji{
		Keywords: []string{"sports", "hobby", "woman", "female", "rock"},
		Char:     "🧗‍♀️",
		Category: "activity",
	},
	"clinking_glasses": Emoji{
		Keywords: []string{"beverage", "drink", "party", "alcohol", "celebrate", "cheers", "wine", "champagne", "toast"},
		Char:     "🥂",
		Category: "food_and_drink",
	},
	"clipboard": Emoji{
		Keywords: []string{"stationery", "documents"},
		Char:     "📋",
		Category: "objects",
	},
	"clock1": Emoji{
		Keywords: []string{"time", "late", "early", "schedule"},
		Char:     "🕐",
		Category: "symbols",
	},
	"clock10": Emoji{
		Keywords: []string{"time", "late", "early", "schedule"},
		Char:     "🕙",
		Category: "symbols",
	},
	"clock1030": Emoji{
		Keywords: []string{"time", "late", "early", "schedule"},
		Char:     "🕥",
		Category: "symbols",
	},
	"clock11": Emoji{
		Keywords: []string{"time", "late", "early", "schedule"},
		Char:     "🕚",
		Category: "symbols",
	},
	"clock1130": Emoji{
		Keywords: []string{"time", "late", "early", "schedule"},
		Char:     "🕦",
		Category: "symbols",
	},
	"clock12": Emoji{
		Keywords: []string{"time", "noon", "midnight", "midday", "late", "early", "schedule"},
		Char:     "🕛",
		Category: "symbols",
	},
	"clock1230": Emoji{
		Keywords: []string{"time", "late", "early", "schedule"},
		Char:     "🕧",
		Category: "symbols",
	},
	"clock130": Emoji{
		Keywords: []string{"time", "late", "early", "schedule"},
		Char:     "🕜",
		Category: "symbols",
	},
	"clock2": Emoji{
		Keywords: []string{"time", "late", "early", "schedule"},
		Char:     "🕑",
		Category: "symbols",
	},
	"clock230": Emoji{
		Keywords: []string{"time", "late", "early", "schedule"},
		Char:     "🕝",
		Category: "symbols",
	},
	"clock3": Emoji{
		Keywords: []string{"time", "late", "early", "schedule"},
		Char:     "🕒",
		Category: "symbols",
	},
	"clock330": Emoji{
		Keywords: []string{"time", "late", "early", "schedule"},
		Char:     "🕞",
		Category: "symbols",
	},
	"clock4": Emoji{
		Keywords: []string{"time", "late", "early", "schedule"},
		Char:     "🕓",
		Category: "symbols",
	},
	"clock430": Emoji{
		Keywords: []string{"time", "late", "early", "schedule"},
		Char:     "🕟",
		Category: "symbols",
	},
	"clock5": Emoji{
		Keywords: []string{"time", "late", "early", "schedule"},
		Char:     "🕔",
		Category: "symbols",
	},
	"clock530": Emoji{
		Keywords: []string{"time", "late", "early", "schedule"},
		Char:     "🕠",
		Category: "symbols",
	},
	"clock6": Emoji{
		Keywords: []string{"time", "late", "early", "schedule", "dawn", "dusk"},
		Char:     "🕕",
		Category: "symbols",
	},
	"clock630": Emoji{
		Keywords: []string{"time", "late", "early", "schedule"},
		Char:     "🕡",
		Category: "symbols",
	},
	"clock7": Emoji{
		Keywords: []string{"time", "late", "early", "schedule"},
		Char:     "🕖",
		Category: "symbols",
	},
	"clock730": Emoji{
		Keywords: []string{"time", "late", "early", "schedule"},
		Char:     "🕢",
		Category: "symbols",
	},
	"clock8": Emoji{
		Keywords: []string{"time", "late", "early", "schedule"},
		Char:     "🕗",
		Category: "symbols",
	},
	"clock830": Emoji{
		Keywords: []string{"time", "late", "early", "schedule"},
		Char:     "🕣",
		Category: "symbols",
	},
	"clock9": Emoji{
		Keywords: []string{"time", "late", "early", "schedule"},
		Char:     "🕘",
		Category: "symbols",
	},
	"clock930": Emoji{
		Keywords: []string{"time", "late", "early", "schedule"},
		Char:     "🕤",
		Category: "symbols",
	},
	"closed_book": Emoji{
		Keywords: []string{"read", "library", "knowledge", "textbook", "learn"},
		Char:     "📕",
		Category: "objects",
	},
	"closed_lock_with_key": Emoji{
		Keywords: []string{"security", "privacy"},
		Char:     "🔐",
		Category: "objects",
	},
	"closed_umbrella": Emoji{
		Keywords: []string{"weather", "rain", "drizzle"},
		Char:     "🌂",
		Category: "people",
	},
	"cloud": Emoji{
		Keywords: []string{"weather", "sky"},
		Char:     "☁️",
		Category: "animals_and_nature",
	},
	"cloud_with_lightning": Emoji{
		Keywords: []string{"weather", "thunder"},
		Char:     "🌩",
		Category: "animals_and_nature",
	},
	"cloud_with_lightning_and_rain": Emoji{
		Keywords: []string{"weather", "lightning"},
		Char:     "⛈",
		Category: "animals_and_nature",
	},
	"cloud_with_rain": Emoji{
		Keywords: []string{"weather"},
		Char:     "🌧",
		Category: "animals_and_nature",
	},
	"cloud_with_snow": Emoji{
		Keywords: []string{"weather"},
		Char:     "🌨",
		Category: "animals_and_nature",
	},
	"clown_face": Emoji{
		Keywords: []string{"face"},
		Char:     "🤡",
		Category: "people",
	},
	"clubs": Emoji{
		Keywords: []string{"poker", "cards", "magic", "suits"},
		Char:     "♣️",
		Category: "symbols",
	},
	"cn": Emoji{
		Keywords: []string{"china", "chinese", "prc", "flag", "country", "nation", "banner"},
		Char:     "🇨🇳",
		Category: "flags",
	},
	"coat": Emoji{
		Keywords: []string{"jacket"},
		Char:     "🧥",
		Category: "people",
	},
	"cocktail": Emoji{
		Keywords: []string{"drink", "drunk", "alcohol", "beverage", "booze", "mojito"},
		Char:     "🍸",
		Category: "food_and_drink",
	},
	"coconut": Emoji{
		Keywords: []string{"fruit", "nature", "food", "palm"},
		Char:     "🥥",
		Category: "food_and_drink",
	},
	"cocos_islands": Emoji{
		Keywords: []string{"cocos", "keeling", "islands", "flag", "nation", "country", "banner"},
		Char:     "🇨🇨",
		Category: "flags",
	},
	"coffee": Emoji{
		Keywords: []string{"beverage", "caffeine", "latte", "espresso"},
		Char:     "☕",
		Category: "food_and_drink",
	},
	"coffin": Emoji{
		Keywords: []string{"vampire", "dead", "die", "death", "rip", "graveyard", "cemetery", "casket", "funeral", "box"},
		Char:     "⚰",
		Category: "objects",
	},
	"cold_sweat": Emoji{
		Keywords: []string{"face", "nervous", "sweat"},
		Char:     "😰",
		Category: "people",
	},
	"colombia": Emoji{
		Keywords: []string{"co", "flag", "nation", "country", "banner"},
		Char:     "🇨🇴",
		Category: "flags",
	},
	"comet": Emoji{
		Keywords: []string{"space"},
		Char:     "☄",
		Category: "animals_and_nature",
	},
	"comoros": Emoji{
		Keywords: []string{"km", "flag", "nation", "country", "banner"},
		Char:     "🇰🇲",
		Category: "flags",
	},
	"computer": Emoji{
		Keywords: []string{"technology", "laptop", "screen", "display", "monitor"},
		Char:     "💻",
		Category: "objects",
	},
	"computer_mouse": Emoji{
		Keywords: []string{"click"},
		Char:     "🖱",
		Category: "objects",
	},
	"confetti_ball": Emoji{
		Keywords: []string{"festival", "party", "birthday", "circus"},
		Char:     "🎊",
		Category: "objects",
	},
	"confounded": Emoji{
		Keywords: []string{"face", "confused", "sick", "unwell", "oops", ":S"},
		Char:     "😖",
		Category: "people",
	},
	"confused": Emoji{
		Keywords: []string{"face", "indifference", "huh", "weird", "hmmm", ":/"},
		Char:     "😕",
		Category: "people",
	},
	"congo_brazzaville": Emoji{
		Keywords: []string{"congo", "flag", "nation", "country", "banner"},
		Char:     "🇨🇬",
		Category: "flags",
	},
	"congo_kinshasa": Emoji{
		Keywords: []string{"congo", "democratic", "republic", "flag", "nation", "country", "banner"},
		Char:     "🇨🇩",
		Category: "flags",
	},
	"congratulations": Emoji{
		Keywords: []string{"chinese", "kanji", "japanese", "red-circle"},
		Char:     "㊗️",
		Category: "symbols",
	},
	"construction": Emoji{
		Keywords: []string{"wip", "progress", "caution", "warning"},
		Char:     "🚧",
		Category: "travel_and_places",
	},
	"construction_worker_man": Emoji{
		Keywords: []string{"male", "human", "wip", "guy", "build", "construction", "worker", "labor"},
		Char:     "👷",
		Category: "people",
	},
	"construction_worker_woman": Emoji{
		Keywords: []string{"female", "human", "wip", "build", "construction", "worker", "labor", "woman"},
		Char:     "👷‍♀️",
		Category: "people",
	},
	"control_knobs": Emoji{
		Keywords: []string{"dial"},
		Char:     "🎛",
		Category: "objects",
	},
	"convenience_store": Emoji{
		Keywords: []string{"building", "shopping", "groceries"},
		Char:     "🏪",
		Category: "travel_and_places",
	},
	"cook_islands": Emoji{
		Keywords: []string{"cook", "islands", "flag", "nation", "country", "banner"},
		Char:     "🇨🇰",
		Category: "flags",
	},
	"cookie": Emoji{
		Keywords: []string{"food", "snack", "oreo", "chocolate", "sweet", "dessert"},
		Char:     "🍪",
		Category: "food_and_drink",
	},
	"cool": Emoji{
		Keywords: []string{"words", "blue-square"},
		Char:     "🆒",
		Category: "symbols",
	},
	"copyright": Emoji{
		Keywords: []string{"ip", "license", "circle", "law", "legal"},
		Char:     "©️",
		Category: "symbols",
	},
	"corn": Emoji{
		Keywords: []string{"food", "vegetable", "plant"},
		Char:     "🌽",
		Category: "food_and_drink",
	},
	"costa_rica": Emoji{
		Keywords: []string{"costa", "rica", "flag", "nation", "country", "banner"},
		Char:     "🇨🇷",
		Category: "flags",
	},
	"cote_divoire": Emoji{
		Keywords: []string{"ivory", "coast", "flag", "nation", "country", "banner"},
		Char:     "🇨🇮",
		Category: "flags",
	},
	"couch_and_lamp": Emoji{
		Keywords: []string{"read", "chill"},
		Char:     "🛋",
		Category: "objects",
	},
	"couple": Emoji{
		Keywords: []string{"pair", "people", "human", "love", "date", "dating", "like", "affection", "valentines", "marriage"},
		Char:     "👫",
		Category: "people",
	},
	"couple_with_heart_man_man": Emoji{
		Keywords: []string{"pair", "love", "like", "affection", "human", "dating", "valentines", "marriage"},
		Char:     "👨‍❤️‍👨",
		Category: "people",
	},
	"couple_with_heart_woman_man": Emoji{
		Keywords: []string{"pair", "love", "like", "affection", "human", "dating", "valentines", "marriage"},
		Char:     "💑",
		Category: "people",
	},
	"couple_with_heart_woman_woman": Emoji{
		Keywords: []string{"pair", "love", "like", "affection", "human", "dating", "valentines", "marriage"},
		Char:     "👩‍❤️‍👩",
		Category: "people",
	},
	"couplekiss_man_man": Emoji{
		Keywords: []string{"pair", "valentines", "love", "like", "dating", "marriage"},
		Char:     "👨‍❤️‍💋‍👨",
		Category: "people",
	},
	"couplekiss_man_woman": Emoji{
		Keywords: []string{"pair", "valentines", "love", "like", "dating", "marriage"},
		Char:     "💏",
		Category: "people",
	},
	"couplekiss_woman_woman": Emoji{
		Keywords: []string{"pair", "valentines", "love", "like", "dating", "marriage"},
		Char:     "👩‍❤️‍💋‍👩",
		Category: "people",
	},
	"cow": Emoji{
		Keywords: []string{"beef", "ox", "animal", "nature", "moo", "milk"},
		Char:     "🐮",
		Category: "animals_and_nature",
	},
	"cow2": Emoji{
		Keywords: []string{"beef", "ox", "animal", "nature", "moo", "milk"},
		Char:     "🐄",
		Category: "animals_and_nature",
	},
	"cowboy_hat_face": Emoji{
		Keywords: []string{"face", "cowgirl", "hat"},
		Char:     "🤠",
		Category: "people",
	},
	"crab": Emoji{
		Keywords: []string{"animal", "crustacean"},
		Char:     "🦀",
		Category: "animals_and_nature",
	},
	"crayon": Emoji{
		Keywords: []string{"drawing", "creativity"},
		Char:     "🖍",
		Category: "objects",
	},
	"credit_card": Emoji{
		Keywords: []string{"money", "sales", "dollar", "bill", "payment", "shopping"},
		Char:     "💳",
		Category: "objects",
	},
	"crescent_moon": Emoji{
		Keywords: []string{"night", "sleep", "sky", "evening", "magic"},
		Char:     "🌙",
		Category: "animals_and_nature",
	},
	"cricket": Emoji{
		Keywords: []string{"sports"},
		Char:     "🏏",
		Category: "activity",
	},
	"croatia": Emoji{
		Keywords: []string{"hr", "flag", "nation", "country", "banner"},
		Char:     "🇭🇷",
		Category: "flags",
	},
	"crocodile": Emoji{
		Keywords: []string{"animal", "nature", "reptile", "lizard", "alligator"},
		Char:     "🐊",
		Category: "animals_and_nature",
	},
	"croissant": Emoji{
		Keywords: []string{"food", "bread", "french"},
		Char:     "🥐",
		Category: "food_and_drink",
	},
	"crossed_fingers": Emoji{
		Keywords: []string{"good", "lucky"},
		Char:     "🤞",
		Category: "people",
	},
	"crossed_flags": Emoji{
		Keywords: []string{"japanese", "nation", "country", "border"},
		Char:     "🎌",
		Category: "objects",
	},
	"crossed_swords": Emoji{
		Keywords: []string{"weapon"},
		Char:     "⚔",
		Category: "objects",
	},
	"crown": Emoji{
		Keywords: []string{"king", "kod", "leader", "royalty", "lord"},
		Char:     "👑",
		Category: "people",
	},
	"cry": Emoji{
		Keywords: []string{"face", "tears", "sad", "depressed", "upset", ":'("},
		Char:     "😢",
		Category: "people",
	},
	"crying_cat_face": Emoji{
		Keywords: []string{"animal", "tears", "weep", "sad", "cats", "upset", "cry"},
		Char:     "😿",
		Category: "people",
	},
	"crystal_ball": Emoji{
		Keywords: []string{"disco", "party", "magic", "circus", "fortune_teller"},
		Char:     "🔮",
		Category: "objects",
	},
	"cuba": Emoji{
		Keywords: []string{"cu", "flag", "nation", "country", "banner"},
		Char:     "🇨🇺",
		Category: "flags",
	},
	"cucumber": Emoji{
		Keywords: []string{"fruit", "food", "pickle"},
		Char:     "🥒",
		Category: "food_and_drink",
	},
	"cup_with_straw": Emoji{
		Keywords: []string{"drink", "soda"},
		Char:     "🥤",
		Category: "food_and_drink",
	},
	"cupid": Emoji{
		Keywords: []string{"love", "like", "heart", "affection", "valentines"},
		Char:     "💘",
		Category: "symbols",
	},
	"curacao": Emoji{
		Keywords: []string{"curaçao", "flag", "nation", "country", "banner"},
		Char:     "🇨🇼",
		Category: "flags",
	},
	"curling_stone": Emoji{
		Keywords: []string{"sports"},
		Char:     "🥌",
		Category: "activity",
	},
	"curly_loop": Emoji{
		Keywords: []string{"scribble", "draw", "shape", "squiggle"},
		Char:     "➰",
		Category: "symbols",
	},
	"currency_exchange": Emoji{
		Keywords: []string{"money", "sales", "dollar", "travel"},
		Char:     "💱",
		Category: "symbols",
	},
	"curry": Emoji{
		Keywords: []string{"food", "spicy", "hot", "indian"},
		Char:     "🍛",
		Category: "food_and_drink",
	},
	"custard": Emoji{
		Keywords: []string{"dessert", "food"},
		Char:     "🍮",
		Category: "food_and_drink",
	},
	"customs": Emoji{
		Keywords: []string{"passport", "border", "blue-square"},
		Char:     "🛃",
		Category: "symbols",
	},
	"cyclone": Emoji{
		Keywords: []string{"weather", "swirl", "blue", "cloud", "vortex", "spiral", "whirlpool", "spin", "tornado", "hurricane", "typhoon"},
		Char:     "🌀",
		Category: "symbols",
	},
	"cyprus": Emoji{
		Keywords: []string{"cy", "flag", "nation", "country", "banner"},
		Char:     "🇨🇾",
		Category: "flags",
	},
	"czech_republic": Emoji{
		Keywords: []string{"cz", "flag", "nation", "country", "banner"},
		Char:     "🇨🇿",
		Category: "flags",
	},
	"dagger": Emoji{
		Keywords: []string{"weapon"},
		Char:     "🗡",
		Category: "objects",
	},
	"dancer": Emoji{
		Keywords: []string{"female", "girl", "woman", "fun"},
		Char:     "💃",
		Category: "people",
	},
	"dancing_men": Emoji{
		Keywords: []string{"male", "bunny", "men", "boys"},
		Char:     "👯‍♂️",
		Category: "people",
	},
	"dancing_women": Emoji{
		Keywords: []string{"female", "bunny", "women", "girls"},
		Char:     "👯",
		Category: "people",
	},
	"dango": Emoji{
		Keywords: []string{"food", "dessert", "sweet", "japanese", "barbecue", "meat"},
		Char:     "🍡",
		Category: "food_and_drink",
	},
	"dark_sunglasses": Emoji{
		Keywords: []string{"face", "cool", "accessories"},
		Char:     "🕶",
		Category: "people",
	},
	"dart": Emoji{
		Keywords: []string{"game", "play", "bar", "target", "bullseye"},
		Char:     "🎯",
		Category: "activity",
	},
	"dash": Emoji{
		Keywords: []string{"wind", "air", "fast", "shoo", "fart", "smoke", "puff"},
		Char:     "💨",
		Category: "animals_and_nature",
	},
	"date": Emoji{
		Keywords: []string{"calendar", "schedule"},
		Char:     "📅",
		Category: "objects",
	},
	"de": Emoji{
		Keywords: []string{"german", "nation", "flag", "country", "banner"},
		Char:     "🇩🇪",
		Category: "flags",
	},
	"deciduous_tree": Emoji{
		Keywords: []string{"plant", "nature"},
		Char:     "🌳",
		Category: "animals_and_nature",
	},
	"deer": Emoji{
		Keywords: []string{"animal", "nature", "horns", "venison"},
		Char:     "🦌",
		Category: "animals_and_nature",
	},
	"denmark": Emoji{
		Keywords: []string{"dk", "flag", "nation", "country", "banner"},
		Char:     "🇩🇰",
		Category: "flags",
	},
	"department_store": Emoji{
		Keywords: []string{"building", "shopping", "mall"},
		Char:     "🏬",
		Category: "travel_and_places",
	},
	"derelict_house": Emoji{
		Keywords: []string{"abandon", "evict", "broken", "building"},
		Char:     "🏚",
		Category: "travel_and_places",
	},
	"desert": Emoji{
		Keywords: []string{"photo", "warm", "saharah"},
		Char:     "🏜",
		Category: "travel_and_places",
	},
	"desert_island": Emoji{
		Keywords: []string{"photo", "tropical", "mojito"},
		Char:     "🏝",
		Category: "travel_and_places",
	},
	"desktop_computer": Emoji{
		Keywords: []string{"technology", "computing", "screen"},
		Char:     "🖥",
		Category: "objects",
	},
	"diamond_shape_with_a_dot_inside": Emoji{
		Keywords: []string{"jewel", "blue", "gem", "crystal", "fancy"},
		Char:     "💠",
		Category: "symbols",
	},
	"diamonds": Emoji{
		Keywords: []string{"poker", "cards", "magic", "suits"},
		Char:     "♦️",
		Category: "symbols",
	},
	"disappointed": Emoji{
		Keywords: []string{"face", "sad", "upset", "depressed", ":("},
		Char:     "😞",
		Category: "people",
	},
	"disappointed_relieved": Emoji{
		Keywords: []string{"face", "phew", "sweat", "nervous"},
		Char:     "😥",
		Category: "people",
	},
	"dizzy": Emoji{
		Keywords: []string{"star", "sparkle", "shoot", "magic"},
		Char:     "💫",
		Category: "animals_and_nature",
	},
	"dizzy_face": Emoji{
		Keywords: []string{"spent", "unconscious", "xox", "dizzy"},
		Char:     "😵",
		Category: "people",
	},
	"djibouti": Emoji{
		Keywords: []string{"dj", "flag", "nation", "country", "banner"},
		Char:     "🇩🇯",
		Category: "flags",
	},
	"do_not_litter": Emoji{
		Keywords: []string{"trash", "bin", "garbage", "circle"},
		Char:     "🚯",
		Category: "symbols",
	},
	"dog": Emoji{
		Keywords: []string{"animal", "friend", "nature", "woof", "puppy", "pet", "faithful"},
		Char:     "🐶",
		Category: "animals_and_nature",
	},
	"dog2": Emoji{
		Keywords: []string{"animal", "nature", "friend", "doge", "pet", "faithful"},
		Char:     "🐕",
		Category: "animals_and_nature",
	},
	"dollar": Emoji{
		Keywords: []string{"money", "sales", "bill", "currency"},
		Char:     "💵",
		Category: "objects",
	},
	"dolls": Emoji{
		Keywords: []string{"japanese", "toy", "kimono"},
		Char:     "🎎",
		Category: "objects",
	},
	"dolphin": Emoji{
		Keywords: []string{"animal", "nature", "fish", "sea", "ocean", "flipper", "fins", "beach"},
		Char:     "🐬",
		Category: "animals_and_nature",
	},
	"dominica": Emoji{
		Keywords: []string{"dm", "flag", "nation", "country", "banner"},
		Char:     "🇩🇲",
		Category: "flags",
	},
	"dominican_republic": Emoji{
		Keywords: []string{"dominican", "republic", "flag", "nation", "country", "banner"},
		Char:     "🇩🇴",
		Category: "flags",
	},
	"door": Emoji{
		Keywords: []string{"house", "entry", "exit"},
		Char:     "🚪",
		Category: "objects",
	},
	"doughnut": Emoji{
		Keywords: []string{"food", "dessert", "snack", "sweet", "donut"},
		Char:     "🍩",
		Category: "food_and_drink",
	},
	"dove": Emoji{
		Keywords: []string{"animal", "bird"},
		Char:     "🕊",
		Category: "animals_and_nature",
	},
	"dragon": Emoji{
		Keywords: []string{"animal", "myth", "nature", "chinese", "green"},
		Char:     "🐉",
		Category: "animals_and_nature",
	},
	"dragon_face": Emoji{
		Keywords: []string{"animal", "myth", "nature", "chinese", "green"},
		Char:     "🐲",
		Category: "animals_and_nature",
	},
	"dress": Emoji{
		Keywords: []string{"clothes", "fashion", "shopping"},
		Char:     "👗",
		Category: "people",
	},
	"dromedary_camel": Emoji{
		Keywords: []string{"animal", "hot", "desert", "hump"},
		Char:     "🐪",
		Category: "animals_and_nature",
	},
	"drooling_face": Emoji{
		Keywords: []string{"face"},
		Char:     "🤤",
		Category: "people",
	},
	"droplet": Emoji{
		Keywords: []string{"water", "drip", "faucet", "spring"},
		Char:     "💧",
		Category: "animals_and_nature",
	},
	"drum": Emoji{
		Keywords: []string{"music", "instrument", "drumsticks", "snare"},
		Char:     "🥁",
		Category: "activity",
	},
	"duck": Emoji{
		Keywords: []string{"animal", "nature", "bird", "mallard"},
		Char:     "🦆",
		Category: "animals_and_nature",
	},
	"dumpling": Emoji{
		Keywords: []string{"food", "empanada", "pierogi", "potsticker"},
		Char:     "🥟",
		Category: "food_and_drink",
	},
	"dvd": Emoji{
		Keywords: []string{"cd", "disk", "disc"},
		Char:     "📀",
		Category: "objects",
	},
	"e-mail": Emoji{
		Keywords: []string{"communication", "inbox"},
		Char:     "📧",
		Category: "objects",
	},
	"eagle": Emoji{
		Keywords: []string{"animal", "nature", "bird"},
		Char:     "🦅",
		Category: "animals_and_nature",
	},
	"ear": Emoji{
		Keywords: []string{"face", "hear", "sound", "listen"},
		Char:     "👂",
		Category: "people",
	},
	"ear_of_rice": Emoji{
		Keywords: []string{"nature", "plant"},
		Char:     "🌾",
		Category: "animals_and_nature",
	},
	"earth_africa": Emoji{
		Keywords: []string{"globe", "world", "international"},
		Char:     "🌍",
		Category: "animals_and_nature",
	},
	"earth_americas": Emoji{
		Keywords: []string{"globe", "world", "USA", "international"},
		Char:     "🌎",
		Category: "animals_and_nature",
	},
	"earth_asia": Emoji{
		Keywords: []string{"globe", "world", "east", "international"},
		Char:     "🌏",
		Category: "animals_and_nature",
	},
	"ecuador": Emoji{
		Keywords: []string{"ec", "flag", "nation", "country", "banner"},
		Char:     "🇪🇨",
		Category: "flags",
	},
	"egg": Emoji{
		Keywords: []string{"food", "chicken", "breakfast"},
		Char:     "🥚",
		Category: "food_and_drink",
	},
	"eggplant": Emoji{
		Keywords: []string{"vegetable", "nature", "food", "aubergine"},
		Char:     "🍆",
		Category: "food_and_drink",
	},
	"egypt": Emoji{
		Keywords: []string{"eg", "flag", "nation", "country", "banner"},
		Char:     "🇪🇬",
		Category: "flags",
	},
	"eight": Emoji{
		Keywords: []string{"8", "blue-square", "numbers"},
		Char:     "8️⃣",
		Category: "symbols",
	},
	"eight_pointed_black_star": Emoji{
		Keywords: []string{"orange-square", "shape", "polygon"},
		Char:     "✴️",
		Category: "symbols",
	},
	"eight_spoked_asterisk": Emoji{
		Keywords: []string{"star", "sparkle", "green-square"},
		Char:     "✳️",
		Category: "symbols",
	},
	"eject_button": Emoji{
		Keywords: []string{"blue-square"},
		Char:     "⏏️",
		Category: "symbols",
	},
	"el_salvador": Emoji{
		Keywords: []string{"el", "salvador", "flag", "nation", "country", "banner"},
		Char:     "🇸🇻",
		Category: "flags",
	},
	"electric_plug": Emoji{
		Keywords: []string{"charger", "power"},
		Char:     "🔌",
		Category: "objects",
	},
	"elephant": Emoji{
		Keywords: []string{"animal", "nature", "nose", "th", "circus"},
		Char:     "🐘",
		Category: "animals_and_nature",
	},
	"email": Emoji{
		Keywords: []string{"letter", "postal", "inbox", "communication"},
		Char:     "✉️",
		Category: "objects",
	},
	"end": Emoji{
		Keywords: []string{"words", "arrow"},
		Char:     "🔚",
		Category: "symbols",
	},
	"england": Emoji{
		Keywords: []string{"flag", "english"},
		Char:     "🏴󠁧󠁢󠁥󠁮󠁧󠁿",
		Category: "flags",
	},
	"envelope_with_arrow": Emoji{
		Keywords: []string{"email", "communication"},
		Char:     "📩",
		Category: "objects",
	},
	"equatorial_guinea": Emoji{
		Keywords: []string{"equatorial", "gn", "flag", "nation", "country", "banner"},
		Char:     "🇬🇶",
		Category: "flags",
	},
	"eritrea": Emoji{
		Keywords: []string{"er", "flag", "nation", "country", "banner"},
		Char:     "🇪🇷",
		Category: "flags",
	},
	"es": Emoji{
		Keywords: []string{"spain", "flag", "nation", "country", "banner"},
		Char:     "🇪🇸",
		Category: "flags",
	},
	"estonia": Emoji{
		Keywords: []string{"ee", "flag", "nation", "country", "banner"},
		Char:     "🇪🇪",
		Category: "flags",
	},
	"ethiopia": Emoji{
		Keywords: []string{"et", "flag", "nation", "country", "banner"},
		Char:     "🇪🇹",
		Category: "flags",
	},
	"eu": Emoji{
		Keywords: []string{"european", "union", "flag", "banner"},
		Char:     "🇪🇺",
		Category: "flags",
	},
	"euro": Emoji{
		Keywords: []string{"money", "sales", "dollar", "currency"},
		Char:     "💶",
		Category: "objects",
	},
	"european_castle": Emoji{
		Keywords: []string{"building", "royalty", "history"},
		Char:     "🏰",
		Category: "travel_and_places",
	},
	"european_post_office": Emoji{
		Keywords: []string{"building", "email"},
		Char:     "🏤",
		Category: "travel_and_places",
	},
	"evergreen_tree": Emoji{
		Keywords: []string{"plant", "nature"},
		Char:     "🌲",
		Category: "animals_and_nature",
	},
	"exclamation": Emoji{
		Keywords: []string{"heavy_exclamation_mark", "danger", "surprise", "punctuation", "wow", "warning"},
		Char:     "❗",
		Category: "symbols",
	},
	"exploding_head": Emoji{
		Keywords: []string{"face", "shocked", "mind", "blown"},
		Char:     "🤯",
		Category: "people",
	},
	"expressionless": Emoji{
		Keywords: []string{"face", "indifferent", "-_-", "meh", "deadpan"},
		Char:     "😑",
		Category: "people",
	},
	"eye": Emoji{
		Keywords: []string{"face", "look", "see", "watch", "stare"},
		Char:     "👁",
		Category: "people",
	},
	"eyeglasses": Emoji{
		Keywords: []string{"fashion", "accessories", "eyesight", "nerdy", "dork", "geek"},
		Char:     "👓",
		Category: "people",
	},
	"eyes": Emoji{
		Keywords: []string{"look", "watch", "stalk", "peek", "see"},
		Char:     "👀",
		Category: "people",
	},
	"face_with_head_bandage": Emoji{
		Keywords: []string{"injured", "clumsy", "bandage", "hurt"},
		Char:     "🤕",
		Category: "people",
	},
	"face_with_thermometer": Emoji{
		Keywords: []string{"sick", "temperature", "thermometer", "cold", "fever"},
		Char:     "🤒",
		Category: "people",
	},
	"facepunch": Emoji{
		Keywords: []string{"angry", "violence", "fist", "hit", "attack", "hand"},
		Char:     "👊",
		Category: "people",
	},
	"factory": Emoji{
		Keywords: []string{"building", "industry", "pollution", "smoke"},
		Char:     "🏭",
		Category: "travel_and_places",
	},
	"falkland_islands": Emoji{
		Keywords: []string{"falkland", "islands", "malvinas", "flag", "nation", "country", "banner"},
		Char:     "🇫🇰",
		Category: "flags",
	},
	"fallen_leaf": Emoji{
		Keywords: []string{"nature", "plant", "vegetable", "leaves"},
		Char:     "🍂",
		Category: "animals_and_nature",
	},
	"family_man_boy": Emoji{
		Keywords: []string{"home", "parent", "people", "human", "child"},
		Char:     "👨‍👦",
		Category: "people",
	},
	"family_man_boy_boy": Emoji{
		Keywords: []string{"home", "parent", "people", "human", "children"},
		Char:     "👨‍👦‍👦",
		Category: "people",
	},
	"family_man_girl": Emoji{
		Keywords: []string{"home", "parent", "people", "human", "child"},
		Char:     "👨‍👧",
		Category: "people",
	},
	"family_man_girl_boy": Emoji{
		Keywords: []string{"home", "parent", "people", "human", "children"},
		Char:     "👨‍👧‍👦",
		Category: "people",
	},
	"family_man_girl_girl": Emoji{
		Keywords: []string{"home", "parent", "people", "human", "children"},
		Char:     "👨‍👧‍👧",
		Category: "people",
	},
	"family_man_man_boy": Emoji{
		Keywords: []string{"home", "parents", "people", "human", "children"},
		Char:     "👨‍👨‍👦",
		Category: "people",
	},
	"family_man_man_boy_boy": Emoji{
		Keywords: []string{"home", "parents", "people", "human", "children"},
		Char:     "👨‍👨‍👦‍👦",
		Category: "people",
	},
	"family_man_man_girl": Emoji{
		Keywords: []string{"home", "parents", "people", "human", "children"},
		Char:     "👨‍👨‍👧",
		Category: "people",
	},
	"family_man_man_girl_boy": Emoji{
		Keywords: []string{"home", "parents", "people", "human", "children"},
		Char:     "👨‍👨‍👧‍👦",
		Category: "people",
	},
	"family_man_man_girl_girl": Emoji{
		Keywords: []string{"home", "parents", "people", "human", "children"},
		Char:     "👨‍👨‍👧‍👧",
		Category: "people",
	},
	"family_man_woman_boy": Emoji{
		Keywords: []string{"home", "parents", "child", "mom", "dad", "father", "mother", "people", "human"},
		Char:     "👪",
		Category: "people",
	},
	"family_man_woman_boy_boy": Emoji{
		Keywords: []string{"home", "parents", "people", "human", "children"},
		Char:     "👨‍👩‍👦‍👦",
		Category: "people",
	},
	"family_man_woman_girl": Emoji{
		Keywords: []string{"home", "parents", "people", "human", "child"},
		Char:     "👨‍👩‍👧",
		Category: "people",
	},
	"family_man_woman_girl_boy": Emoji{
		Keywords: []string{"home", "parents", "people", "human", "children"},
		Char:     "👨‍👩‍👧‍👦",
		Category: "people",
	},
	"family_man_woman_girl_girl": Emoji{
		Keywords: []string{"home", "parents", "people", "human", "children"},
		Char:     "👨‍👩‍👧‍👧",
		Category: "people",
	},
	"family_woman_boy": Emoji{
		Keywords: []string{"home", "parent", "people", "human", "child"},
		Char:     "👩‍👦",
		Category: "people",
	},
	"family_woman_boy_boy": Emoji{
		Keywords: []string{"home", "parent", "people", "human", "children"},
		Char:     "👩‍👦‍👦",
		Category: "people",
	},
	"family_woman_girl": Emoji{
		Keywords: []string{"home", "parent", "people", "human", "child"},
		Char:     "👩‍👧",
		Category: "people",
	},
	"family_woman_girl_boy": Emoji{
		Keywords: []string{"home", "parent", "people", "human", "children"},
		Char:     "👩‍👧‍👦",
		Category: "people",
	},
	"family_woman_girl_girl": Emoji{
		Keywords: []string{"home", "parent", "people", "human", "children"},
		Char:     "👩‍👧‍👧",
		Category: "people",
	},
	"family_woman_woman_boy": Emoji{
		Keywords: []string{"home", "parents", "people", "human", "children"},
		Char:     "👩‍👩‍👦",
		Category: "people",
	},
	"family_woman_woman_boy_boy": Emoji{
		Keywords: []string{"home", "parents", "people", "human", "children"},
		Char:     "👩‍👩‍👦‍👦",
		Category: "people",
	},
	"family_woman_woman_girl": Emoji{
		Keywords: []string{"home", "parents", "people", "human", "children"},
		Char:     "👩‍👩‍👧",
		Category: "people",
	},
	"family_woman_woman_girl_boy": Emoji{
		Keywords: []string{"home", "parents", "people", "human", "children"},
		Char:     "👩‍👩‍👧‍👦",
		Category: "people",
	},
	"family_woman_woman_girl_girl": Emoji{
		Keywords: []string{"home", "parents", "people", "human", "children"},
		Char:     "👩‍👩‍👧‍👧",
		Category: "people",
	},
	"faroe_islands": Emoji{
		Keywords: []string{"faroe", "islands", "flag", "nation", "country", "banner"},
		Char:     "🇫🇴",
		Category: "flags",
	},
	"fast_forward": Emoji{
		Keywords: []string{"blue-square", "play", "speed", "continue"},
		Char:     "⏩",
		Category: "symbols",
	},
	"fax": Emoji{
		Keywords: []string{"communication", "technology"},
		Char:     "📠",
		Category: "objects",
	},
	"fearful": Emoji{
		Keywords: []string{"face", "scared", "terrified", "nervous", "oops", "huh"},
		Char:     "😨",
		Category: "people",
	},
	"female_detective": Emoji{
		Keywords: []string{"human", "spy", "detective", "female", "woman"},
		Char:     "🕵️‍♀️",
		Category: "people",
	},
	"ferris_wheel": Emoji{
		Keywords: []string{"photo", "carnival", "londoneye"},
		Char:     "🎡",
		Category: "travel_and_places",
	},
	"ferry": Emoji{
		Keywords: []string{"boat", "ship", "yacht"},
		Char:     "⛴",
		Category: "travel_and_places",
	},
	"field_hockey": Emoji{
		Keywords: []string{"sports"},
		Char:     "🏑",
		Category: "activity",
	},
	"fiji": Emoji{
		Keywords: []string{"fj", "flag", "nation", "country", "banner"},
		Char:     "🇫🇯",
		Category: "flags",
	},
	"file_cabinet": Emoji{
		Keywords: []string{"filing", "organizing"},
		Char:     "🗄",
		Category: "objects",
	},
	"file_folder": Emoji{
		Keywords: []string{"documents", "business", "office"},
		Char:     "📁",
		Category: "objects",
	},
	"film_projector": Emoji{
		Keywords: []string{"video", "tape", "record", "movie"},
		Char:     "📽",
		Category: "objects",
	},
	"film_strip": Emoji{
		Keywords: []string{"movie"},
		Char:     "🎞",
		Category: "objects",
	},
	"finland": Emoji{
		Keywords: []string{"fi", "flag", "nation", "country", "banner"},
		Char:     "🇫🇮",
		Category: "flags",
	},
	"fire": Emoji{
		Keywords: []string{"hot", "cook", "flame"},
		Char:     "🔥",
		Category: "animals_and_nature",
	},
	"fire_engine": Emoji{
		Keywords: []string{"transportation", "cars", "vehicle"},
		Char:     "🚒",
		Category: "travel_and_places",
	},
	"fireworks": Emoji{
		Keywords: []string{"photo", "festival", "carnival", "congratulations"},
		Char:     "🎆",
		Category: "travel_and_places",
	},
	"first_quarter_moon": Emoji{
		Keywords: []string{"nature", "twilight", "planet", "space", "night", "evening", "sleep"},
		Char:     "🌓",
		Category: "animals_and_nature",
	},
	"first_quarter_moon_with_face": Emoji{
		Keywords: []string{"nature", "twilight", "planet", "space", "night", "evening", "sleep"},
		Char:     "🌛",
		Category: "animals_and_nature",
	},
	"fish": Emoji{
		Keywords: []string{"animal", "food", "nature"},
		Char:     "🐟",
		Category: "animals_and_nature",
	},
	"fish_cake": Emoji{
		Keywords: []string{"food", "japan", "sea", "beach", "narutomaki", "pink", "swirl", "kamaboko", "surimi", "ramen"},
		Char:     "🍥",
		Category: "food_and_drink",
	},
	"fishing_pole_and_fish": Emoji{
		Keywords: []string{"food", "hobby", "summer"},
		Char:     "🎣",
		Category: "activity",
	},
	"fist": Emoji{
		Keywords: []string{"fingers", "hand", "grasp"},
		Char:     "✊",
		Category: "people",
	},
	"fist_left": Emoji{
		Keywords: []string{"hand", "fistbump"},
		Char:     "🤛",
		Category: "people",
	},
	"fist_right": Emoji{
		Keywords: []string{"hand", "fistbump"},
		Char:     "🤜",
		Category: "people",
	},
	"five": Emoji{
		Keywords: []string{"5", "numbers", "blue-square", "prime"},
		Char:     "5️⃣",
		Category: "symbols",
	},
	"flags": Emoji{
		Keywords: []string{"fish", "japanese", "koinobori", "carp", "banner"},
		Char:     "🎏",
		Category: "objects",
	},
	"flashlight": Emoji{
		Keywords: []string{"dark", "camping", "sight", "night"},
		Char:     "🔦",
		Category: "objects",
	},
	"fleur_de_lis": Emoji{
		Keywords: []string{"decorative", "scout"},
		Char:     "⚜",
		Category: "symbols",
	},
	"flight_arrival": Emoji{
		Keywords: []string{"airport", "flight", "boarding"},
		Char:     "🛬",
		Category: "travel_and_places",
	},
	"flight_departure": Emoji{
		Keywords: []string{"airport", "flight", "landing"},
		Char:     "🛫",
		Category: "travel_and_places",
	},
	"floppy_disk": Emoji{
		Keywords: []string{"oldschool", "technology", "save", "90s", "80s"},
		Char:     "💾",
		Category: "objects",
	},
	"flower_playing_cards": Emoji{
		Keywords: []string{"game", "sunset", "red"},
		Char:     "🎴",
		Category: "symbols",
	},
	"flushed": Emoji{
		Keywords: []string{"face", "blush", "shy", "flattered"},
		Char:     "😳",
		Category: "people",
	},
	"flying_saucer": Emoji{
		Keywords: []string{"transportation", "vehicle", "ufo"},
		Char:     "🛸",
		Category: "travel_and_places",
	},
	"fog": Emoji{
		Keywords: []string{"weather"},
		Char:     "🌫",
		Category: "animals_and_nature",
	},
	"foggy": Emoji{
		Keywords: []string{"photo", "mountain"},
		Char:     "🌁",
		Category: "travel_and_places",
	},
	"football": Emoji{
		Keywords: []string{"sports", "balls", "NFL"},
		Char:     "🏈",
		Category: "activity",
	},
	"footprints": Emoji{
		Keywords: []string{"feet", "tracking", "walking", "beach"},
		Char:     "👣",
		Category: "people",
	},
	"fork_and_knife": Emoji{
		Keywords: []string{"cutlery", "kitchen"},
		Char:     "🍴",
		Category: "food_and_drink",
	},
	"fortune_cookie": Emoji{
		Keywords: []string{"food", "prophecy"},
		Char:     "🥠",
		Category: "food_and_drink",
	},
	"fountain": Emoji{
		Keywords: []string{"photo", "summer", "water", "fresh"},
		Char:     "⛲",
		Category: "travel_and_places",
	},
	"fountain_pen": Emoji{
		Keywords: []string{"stationery", "writing", "write"},
		Char:     "🖋",
		Category: "objects",
	},
	"four": Emoji{
		Keywords: []string{"4", "numbers", "blue-square"},
		Char:     "4️⃣",
		Category: "symbols",
	},
	"four_leaf_clover": Emoji{
		Keywords: []string{"vegetable", "plant", "nature", "lucky", "irish"},
		Char:     "🍀",
		Category: "animals_and_nature",
	},
	"fox_face": Emoji{
		Keywords: []string{"animal", "nature", "face"},
		Char:     "🦊",
		Category: "animals_and_nature",
	},
	"fr": Emoji{
		Keywords: []string{"banner", "flag", "nation", "france", "french", "country"},
		Char:     "🇫🇷",
		Category: "flags",
	},
	"framed_picture": Emoji{
		Keywords: []string{"photography"},
		Char:     "🖼",
		Category: "objects",
	},
	"free": Emoji{
		Keywords: []string{"blue-square", "words"},
		Char:     "🆓",
		Category: "symbols",
	},
	"french_guiana": Emoji{
		Keywords: []string{"french", "guiana", "flag", "nation", "country", "banner"},
		Char:     "🇬🇫",
		Category: "flags",
	},
	"french_polynesia": Emoji{
		Keywords: []string{"french", "polynesia", "flag", "nation", "country", "banner"},
		Char:     "🇵🇫",
		Category: "flags",
	},
	"french_southern_territories": Emoji{
		Keywords: []string{"french", "southern", "territories", "flag", "nation", "country", "banner"},
		Char:     "🇹🇫",
		Category: "flags",
	},
	"fried_egg": Emoji{
		Keywords: []string{"food", "breakfast", "kitchen", "egg"},
		Char:     "🍳",
		Category: "food_and_drink",
	},
	"fried_shrimp": Emoji{
		Keywords: []string{"food", "animal", "appetizer", "summer"},
		Char:     "🍤",
		Category: "food_and_drink",
	},
	"fries": Emoji{
		Keywords: []string{"chips", "snack", "fast food"},
		Char:     "🍟",
		Category: "food_and_drink",
	},
	"frog": Emoji{
		Keywords: []string{"animal", "nature", "croak", "toad"},
		Char:     "🐸",
		Category: "animals_and_nature",
	},
	"frowning": Emoji{
		Keywords: []string{"face", "aw", "what"},
		Char:     "😦",
		Category: "people",
	},
	"frowning_face": Emoji{
		Keywords: []string{"face", "sad", "upset", "frown"},
		Char:     "☹",
		Category: "people",
	},
	"frowning_man": Emoji{
		Keywords: []string{"male", "boy", "man", "sad", "depressed", "discouraged", "unhappy"},
		Char:     "🙍‍♂️",
		Category: "people",
	},
	"frowning_woman": Emoji{
		Keywords: []string{"female", "girl", "woman", "sad", "depressed", "discouraged", "unhappy"},
		Char:     "🙍",
		Category: "people",
	},
	"fu": Emoji{
		Keywords: []string{"hand", "fingers", "rude", "middle", "flipping"},
		Char:     "🖕",
		Category: "people",
	},
	"fuelpump": Emoji{
		Keywords: []string{"gas station", "petroleum"},
		Char:     "⛽",
		Category: "travel_and_places",
	},
	"full_moon": Emoji{
		Keywords: []string{"nature", "yellow", "twilight", "planet", "space", "night", "evening", "sleep"},
		Char:     "🌕",
		Category: "animals_and_nature",
	},
	"full_moon_with_face": Emoji{
		Keywords: []string{"nature", "twilight", "planet", "space", "night", "evening", "sleep"},
		Char:     "🌝",
		Category: "animals_and_nature",
	},
	"funeral_urn": Emoji{
		Keywords: []string{"dead", "die", "death", "rip", "ashes"},
		Char:     "⚱",
		Category: "objects",
	},
	"gabon": Emoji{
		Keywords: []string{"ga", "flag", "nation", "country", "banner"},
		Char:     "🇬🇦",
		Category: "flags",
	},
	"gambia": Emoji{
		Keywords: []string{"gm", "flag", "nation", "country", "banner"},
		Char:     "🇬🇲",
		Category: "flags",
	},
	"game_die": Emoji{
		Keywords: []string{"dice", "random", "tabletop", "play", "luck"},
		Char:     "🎲",
		Category: "activity",
	},
	"gear": Emoji{
		Keywords: []string{"cog"},
		Char:     "⚙",
		Category: "objects",
	},
	"gem": Emoji{
		Keywords: []string{"blue", "ruby", "diamond", "jewelry"},
		Char:     "💎",
		Category: "objects",
	},
	"gemini": Emoji{
		Keywords: []string{"sign", "zodiac", "purple-square", "astrology"},
		Char:     "♊",
		Category: "symbols",
	},
	"georgia": Emoji{
		Keywords: []string{"ge", "flag", "nation", "country", "banner"},
		Char:     "🇬🇪",
		Category: "flags",
	},
	"ghana": Emoji{
		Keywords: []string{"gh", "flag", "nation", "country", "banner"},
		Char:     "🇬🇭",
		Category: "flags",
	},
	"ghost": Emoji{
		Keywords: []string{"halloween", "spooky", "scary"},
		Char:     "👻",
		Category: "people",
	},
	"gibraltar": Emoji{
		Keywords: []string{"gi", "flag", "nation", "country", "banner"},
		Char:     "🇬🇮",
		Category: "flags",
	},
	"gift": Emoji{
		Keywords: []string{"present", "birthday", "christmas", "xmas"},
		Char:     "🎁",
		Category: "objects",
	},
	"gift_heart": Emoji{
		Keywords: []string{"love", "valentines"},
		Char:     "💝",
		Category: "symbols",
	},
	"giraffe": Emoji{
		Keywords: []string{"animal", "nature", "spots", "safari"},
		Char:     "🦒",
		Category: "animals_and_nature",
	},
	"girl": Emoji{
		Keywords: []string{"female", "woman", "teenager"},
		Char:     "👧",
		Category: "people",
	},
	"globe_with_meridians": Emoji{
		Keywords: []string{"earth", "international", "world", "internet", "interweb", "i18n"},
		Char:     "🌐",
		Category: "symbols",
	},
	"gloves": Emoji{
		Keywords: []string{"hands", "winter", "clothes"},
		Char:     "🧤",
		Category: "people",
	},
	"goal_net": Emoji{
		Keywords: []string{"sports"},
		Char:     "🥅",
		Category: "activity",
	},
	"goat": Emoji{
		Keywords: []string{"animal", "nature"},
		Char:     "🐐",
		Category: "animals_and_nature",
	},
	"golf": Emoji{
		Keywords: []string{"sports", "business", "flag", "hole", "summer"},
		Char:     "⛳",
		Category: "activity",
	},
	"golfing_man": Emoji{
		Keywords: []string{"sports", "business"},
		Char:     "🏌",
		Category: "activity",
	},
	"golfing_woman": Emoji{
		Keywords: []string{"sports", "business", "woman", "female"},
		Char:     "🏌️‍♀️",
		Category: "activity",
	},
	"gorilla": Emoji{
		Keywords: []string{"animal", "nature", "circus"},
		Char:     "🦍",
		Category: "animals_and_nature",
	},
	"grapes": Emoji{
		Keywords: []string{"fruit", "food", "wine"},
		Char:     "🍇",
		Category: "food_and_drink",
	},
	"grasshopper": Emoji{
		Keywords: []string{"animal", "cricket", "chirp"},
		Char:     "🦗",
		Category: "animals_and_nature",
	},
	"greece": Emoji{
		Keywords: []string{"gr", "flag", "nation", "country", "banner"},
		Char:     "🇬🇷",
		Category: "flags",
	},
	"green_apple": Emoji{
		Keywords: []string{"fruit", "nature"},
		Char:     "🍏",
		Category: "food_and_drink",
	},
	"green_book": Emoji{
		Keywords: []string{"read", "library", "knowledge", "study"},
		Char:     "📗",
		Category: "objects",
	},
	"green_heart": Emoji{
		Keywords: []string{"love", "like", "affection", "valentines"},
		Char:     "💚",
		Category: "symbols",
	},
	"green_salad": Emoji{
		Keywords: []string{"food", "healthy", "lettuce"},
		Char:     "🥗",
		Category: "food_and_drink",
	},
	"greenland": Emoji{
		Keywords: []string{"gl", "flag", "nation", "country", "banner"},
		Char:     "🇬🇱",
		Category: "flags",
	},
	"grenada": Emoji{
		Keywords: []string{"gd", "flag", "nation", "country", "banner"},
		Char:     "🇬🇩",
		Category: "flags",
	},
	"grey_exclamation": Emoji{
		Keywords: []string{"surprise", "punctuation", "gray", "wow", "warning"},
		Char:     "❕",
		Category: "symbols",
	},
	"grey_question": Emoji{
		Keywords: []string{"doubts", "gray", "huh", "confused"},
		Char:     "❔",
		Category: "symbols",
	},
	"grimacing": Emoji{
		Keywords: []string{"face", "grimace", "teeth"},
		Char:     "😬",
		Category: "people",
	},
	"grin": Emoji{
		Keywords: []string{"face", "happy", "smile", "joy", "kawaii"},
		Char:     "😁",
		Category: "people",
	},
	"grinning": Emoji{
		Keywords: []string{"face", "smile", "happy", "joy", ":D", "grin"},
		Char:     "😀",
		Category: "people",
	},
	"guadeloupe": Emoji{
		Keywords: []string{"gp", "flag", "nation", "country", "banner"},
		Char:     "🇬🇵",
		Category: "flags",
	},
	"guam": Emoji{
		Keywords: []string{"gu", "flag", "nation", "country", "banner"},
		Char:     "🇬🇺",
		Category: "flags",
	},
	"guardsman": Emoji{
		Keywords: []string{"uk", "gb", "british", "male", "guy", "royal"},
		Char:     "💂",
		Category: "people",
	},
	"guardswoman": Emoji{
		Keywords: []string{"uk", "gb", "british", "female", "royal", "woman"},
		Char:     "💂‍♀️",
		Category: "people",
	},
	"guatemala": Emoji{
		Keywords: []string{"gt", "flag", "nation", "country", "banner"},
		Char:     "🇬🇹",
		Category: "flags",
	},
	"guernsey": Emoji{
		Keywords: []string{"gg", "flag", "nation", "country", "banner"},
		Char:     "🇬🇬",
		Category: "flags",
	},
	"guinea": Emoji{
		Keywords: []string{"gn", "flag", "nation", "country", "banner"},
		Char:     "🇬🇳",
		Category: "flags",
	},
	"guinea_bissau": Emoji{
		Keywords: []string{"gw", "bissau", "flag", "nation", "country", "banner"},
		Char:     "🇬🇼",
		Category: "flags",
	},
	"guitar": Emoji{
		Keywords: []string{"music", "instrument"},
		Char:     "🎸",
		Category: "activity",
	},
	"gun": Emoji{
		Keywords: []string{"violence", "weapon", "pistol", "revolver"},
		Char:     "🔫",
		Category: "objects",
	},
	"guyana": Emoji{
		Keywords: []string{"gy", "flag", "nation", "country", "banner"},
		Char:     "🇬🇾",
		Category: "flags",
	},
	"haircut_man": Emoji{
		Keywords: []string{"male", "boy", "man"},
		Char:     "💇‍♂️",
		Category: "people",
	},
	"haircut_woman": Emoji{
		Keywords: []string{"female", "girl", "woman"},
		Char:     "💇",
		Category: "people",
	},
	"haiti": Emoji{
		Keywords: []string{"ht", "flag", "nation", "country", "banner"},
		Char:     "🇭🇹",
		Category: "flags",
	},
	"hamburger": Emoji{
		Keywords: []string{"meat", "fast food", "beef", "cheeseburger", "mcdonalds", "burger king"},
		Char:     "🍔",
		Category: "food_and_drink",
	},
	"hammer": Emoji{
		Keywords: []string{"tools", "build", "create"},
		Char:     "🔨",
		Category: "objects",
	},
	"hammer_and_pick": Emoji{
		Keywords: []string{"tools", "build", "create"},
		Char:     "⚒",
		Category: "objects",
	},
	"hammer_and_wrench": Emoji{
		Keywords: []string{"tools", "build", "create"},
		Char:     "🛠",
		Category: "objects",
	},
	"hamster": Emoji{
		Keywords: []string{"animal", "nature"},
		Char:     "🐹",
		Category: "animals_and_nature",
	},
	"hand_over_mouth": Emoji{
		Keywords: []string{"face", "whoops", "shock", "surprise"},
		Char:     "🤭",
		Category: "people",
	},
	"handbag": Emoji{
		Keywords: []string{"fashion", "accessory", "accessories", "shopping"},
		Char:     "👜",
		Category: "people",
	},
	"handshake": Emoji{
		Keywords: []string{"agreement", "shake"},
		Char:     "🤝",
		Category: "people",
	},
	"hash": Emoji{
		Keywords: []string{"symbol", "blue-square", "twitter"},
		Char:     "#️⃣",
		Category: "symbols",
	},
	"hatched_chick": Emoji{
		Keywords: []string{"animal", "chicken", "baby", "bird"},
		Char:     "🐥",
		Category: "animals_and_nature",
	},
	"hatching_chick": Emoji{
		Keywords: []string{"animal", "chicken", "egg", "born", "baby", "bird"},
		Char:     "🐣",
		Category: "animals_and_nature",
	},
	"headphones": Emoji{
		Keywords: []string{"music", "score", "gadgets"},
		Char:     "🎧",
		Category: "activity",
	},
	"hear_no_evil": Emoji{
		Keywords: []string{"animal", "monkey", "nature"},
		Char:     "🙉",
		Category: "animals_and_nature",
	},
	"heart": Emoji{
		Keywords: []string{"love", "like", "valentines"},
		Char:     "❤️",
		Category: "symbols",
	},
	"heart_decoration": Emoji{
		Keywords: []string{"purple-square", "love", "like"},
		Char:     "💟",
		Category: "symbols",
	},
	"heart_eyes": Emoji{
		Keywords: []string{"face", "love", "like", "affection", "valentines", "infatuation", "crush", "heart"},
		Char:     "😍",
		Category: "people",
	},
	"heart_eyes_cat": Emoji{
		Keywords: []string{"animal", "love", "like", "affection", "cats", "valentines", "heart"},
		Char:     "😻",
		Category: "people",
	},
	"heartbeat": Emoji{
		Keywords: []string{"love", "like", "affection", "valentines", "pink", "heart"},
		Char:     "💓",
		Category: "symbols",
	},
	"heartpulse": Emoji{
		Keywords: []string{"like", "love", "affection", "valentines", "pink"},
		Char:     "💗",
		Category: "symbols",
	},
	"hearts": Emoji{
		Keywords: []string{"poker", "cards", "magic", "suits"},
		Char:     "♥️",
		Category: "symbols",
	},
	"heavy_check_mark": Emoji{
		Keywords: []string{"ok", "nike", "answer", "yes", "tick"},
		Char:     "✔️",
		Category: "symbols",
	},
	"heavy_division_sign": Emoji{
		Keywords: []string{"divide", "math", "calculation"},
		Char:     "➗",
		Category: "symbols",
	},
	"heavy_dollar_sign": Emoji{
		Keywords: []string{"money", "sales", "payment", "currency", "buck"},
		Char:     "💲",
		Category: "symbols",
	},
	"heavy_heart_exclamation": Emoji{
		Keywords: []string{"decoration", "love"},
		Char:     "❣",
		Category: "symbols",
	},
	"heavy_minus_sign": Emoji{
		Keywords: []string{"math", "calculation", "subtract", "less"},
		Char:     "➖",
		Category: "symbols",
	},
	"heavy_multiplication_x": Emoji{
		Keywords: []string{"math", "calculation"},
		Char:     "✖️",
		Category: "symbols",
	},
	"heavy_plus_sign": Emoji{
		Keywords: []string{"math", "calculation", "addition", "more", "increase"},
		Char:     "➕",
		Category: "symbols",
	},
	"hedgehog": Emoji{
		Keywords: []string{"animal", "nature", "spiny"},
		Char:     "🦔",
		Category: "animals_and_nature",
	},
	"helicopter": Emoji{
		Keywords: []string{"transportation", "vehicle", "fly"},
		Char:     "🚁",
		Category: "travel_and_places",
	},
	"herb": Emoji{
		Keywords: []string{"vegetable", "plant", "medicine", "weed", "grass", "lawn"},
		Char:     "🌿",
		Category: "animals_and_nature",
	},
	"hibiscus": Emoji{
		Keywords: []string{"plant", "vegetable", "flowers", "beach"},
		Char:     "🌺",
		Category: "animals_and_nature",
	},
	"high_brightness": Emoji{
		Keywords: []string{"sun", "light"},
		Char:     "🔆",
		Category: "symbols",
	},
	"high_heel": Emoji{
		Keywords: []string{"fashion", "shoes", "female", "pumps", "stiletto"},
		Char:     "👠",
		Category: "people",
	},
	"hocho": Emoji{
		Keywords: []string{"knife", "blade", "cutlery", "kitchen", "weapon"},
		Char:     "🔪",
		Category: "objects",
	},
	"hole": Emoji{
		Keywords: []string{"embarrassing"},
		Char:     "🕳",
		Category: "objects",
	},
	"honduras": Emoji{
		Keywords: []string{"hn", "flag", "nation", "country", "banner"},
		Char:     "🇭🇳",
		Category: "flags",
	},
	"honey_pot": Emoji{
		Keywords: []string{"bees", "sweet", "kitchen"},
		Char:     "🍯",
		Category: "food_and_drink",
	},
	"honeybee": Emoji{
		Keywords: []string{"animal", "insect", "nature", "bug", "spring", "honey"},
		Char:     "🐝",
		Category: "animals_and_nature",
	},
	"hong_kong": Emoji{
		Keywords: []string{"hong", "kong", "flag", "nation", "country", "banner"},
		Char:     "🇭🇰",
		Category: "flags",
	},
	"horse": Emoji{
		Keywords: []string{"animal", "brown", "nature"},
		Char:     "🐴",
		Category: "animals_and_nature",
	},
	"horse_racing": Emoji{
		Keywords: []string{"animal", "betting", "competition", "gambling", "luck"},
		Char:     "🏇",
		Category: "activity",
	},
	"hospital": Emoji{
		Keywords: []string{"building", "health", "surgery", "doctor"},
		Char:     "🏥",
		Category: "travel_and_places",
	},
	"hot_pepper": Emoji{
		Keywords: []string{"food", "spicy", "chilli", "chili"},
		Char:     "🌶",
		Category: "food_and_drink",
	},
	"hotdog": Emoji{
		Keywords: []string{"food", "frankfurter"},
		Char:     "🌭",
		Category: "food_and_drink",
	},
	"hotel": Emoji{
		Keywords: []string{"building", "accomodation", "checkin"},
		Char:     "🏨",
		Category: "travel_and_places",
	},
	"hotsprings": Emoji{
		Keywords: []string{"bath", "warm", "relax"},
		Char:     "♨️",
		Category: "symbols",
	},
	"hourglass": Emoji{
		Keywords: []string{"time", "clock", "oldschool", "limit", "exam", "quiz", "test"},
		Char:     "⌛",
		Category: "objects",
	},
	"hourglass_flowing_sand": Emoji{
		Keywords: []string{"oldschool", "time", "countdown"},
		Char:     "⏳",
		Category: "objects",
	},
	"house": Emoji{
		Keywords: []string{"building", "home"},
		Char:     "🏠",
		Category: "travel_and_places",
	},
	"house_with_garden": Emoji{
		Keywords: []string{"home", "plant", "nature"},
		Char:     "🏡",
		Category: "travel_and_places",
	},
	"houses": Emoji{
		Keywords: []string{"buildings", "photo"},
		Char:     "🏘",
		Category: "travel_and_places",
	},
	"hugs": Emoji{
		Keywords: []string{"face", "smile", "hug"},
		Char:     "🤗",
		Category: "people",
	},
	"hungary": Emoji{
		Keywords: []string{"hu", "flag", "nation", "country", "banner"},
		Char:     "🇭🇺",
		Category: "flags",
	},
	"hushed": Emoji{
		Keywords: []string{"face", "woo", "shh"},
		Char:     "😯",
		Category: "people",
	},
	"ice_cream": Emoji{
		Keywords: []string{"food", "hot", "dessert"},
		Char:     "🍨",
		Category: "food_and_drink",
	},
	"ice_hockey": Emoji{
		Keywords: []string{"sports"},
		Char:     "🏒",
		Category: "activity",
	},
	"ice_skate": Emoji{
		Keywords: []string{"sports"},
		Char:     "⛸",
		Category: "activity",
	},
	"icecream": Emoji{
		Keywords: []string{"food", "hot", "dessert", "summer"},
		Char:     "🍦",
		Category: "food_and_drink",
	},
	"iceland": Emoji{
		Keywords: []string{"is", "flag", "nation", "country", "banner"},
		Char:     "🇮🇸",
		Category: "flags",
	},
	"id": Emoji{
		Keywords: []string{"purple-square", "words"},
		Char:     "🆔",
		Category: "symbols",
	},
	"ideograph_advantage": Emoji{
		Keywords: []string{"chinese", "kanji", "obtain", "get", "circle"},
		Char:     "🉐",
		Category: "symbols",
	},
	"imp": Emoji{
		Keywords: []string{"devil", "angry", "horns"},
		Char:     "👿",
		Category: "people",
	},
	"inbox_tray": Emoji{
		Keywords: []string{"email", "documents"},
		Char:     "📥",
		Category: "objects",
	},
	"incoming_envelope": Emoji{
		Keywords: []string{"email", "inbox"},
		Char:     "📨",
		Category: "objects",
	},
	"india": Emoji{
		Keywords: []string{"in", "flag", "nation", "country", "banner"},
		Char:     "🇮🇳",
		Category: "flags",
	},
	"indonesia": Emoji{
		Keywords: []string{"flag", "nation", "country", "banner"},
		Char:     "🇮🇩",
		Category: "flags",
	},
	"information_source": Emoji{
		Keywords: []string{"blue-square", "alphabet", "letter"},
		Char:     "ℹ️",
		Category: "symbols",
	},
	"innocent": Emoji{
		Keywords: []string{"face", "angel", "heaven", "halo"},
		Char:     "😇",
		Category: "people",
	},
	"interrobang": Emoji{
		Keywords: []string{"wat", "punctuation", "surprise"},
		Char:     "⁉️",
		Category: "symbols",
	},
	"iphone": Emoji{
		Keywords: []string{"technology", "apple", "gadgets", "dial"},
		Char:     "📱",
		Category: "objects",
	},
	"iran": Emoji{
		Keywords: []string{"iran,", "islamic", "republic", "flag", "nation", "country", "banner"},
		Char:     "🇮🇷",
		Category: "flags",
	},
	"iraq": Emoji{
		Keywords: []string{"iq", "flag", "nation", "country", "banner"},
		Char:     "🇮🇶",
		Category: "flags",
	},
	"ireland": Emoji{
		Keywords: []string{"ie", "flag", "nation", "country", "banner"},
		Char:     "🇮🇪",
		Category: "flags",
	},
	"isle_of_man": Emoji{
		Keywords: []string{"isle", "man", "flag", "nation", "country", "banner"},
		Char:     "🇮🇲",
		Category: "flags",
	},
	"israel": Emoji{
		Keywords: []string{"il", "flag", "nation", "country", "banner"},
		Char:     "🇮🇱",
		Category: "flags",
	},
	"it": Emoji{
		Keywords: []string{"italy", "flag", "nation", "country", "banner"},
		Char:     "🇮🇹",
		Category: "flags",
	},
	"izakaya_lantern": Emoji{
		Keywords: []string{"light", "paper", "halloween", "spooky"},
		Char:     "🏮",
		Category: "objects",
	},
	"jack_o_lantern": Emoji{
		Keywords: []string{"halloween", "light", "pumpkin", "creepy", "fall"},
		Char:     "🎃",
		Category: "animals_and_nature",
	},
	"jamaica": Emoji{
		Keywords: []string{"jm", "flag", "nation", "country", "banner"},
		Char:     "🇯🇲",
		Category: "flags",
	},
	"japan": Emoji{
		Keywords: []string{"nation", "country", "japanese", "asia"},
		Char:     "🗾",
		Category: "travel_and_places",
	},
	"japanese_castle": Emoji{
		Keywords: []string{"photo", "building"},
		Char:     "🏯",
		Category: "travel_and_places",
	},
	"japanese_goblin": Emoji{
		Keywords: []string{"red", "evil", "mask", "monster", "scary", "creepy", "japanese", "goblin"},
		Char:     "👺",
		Category: "people",
	},
	"japanese_ogre": Emoji{
		Keywords: []string{"monster", "red", "mask", "halloween", "scary", "creepy", "devil", "demon", "japanese", "ogre"},
		Char:     "👹",
		Category: "people",
	},
	"jeans": Emoji{
		Keywords: []string{"fashion", "shopping"},
		Char:     "👖",
		Category: "people",
	},
	"jersey": Emoji{
		Keywords: []string{"je", "flag", "nation", "country", "banner"},
		Char:     "🇯🇪",
		Category: "flags",
	},
	"jordan": Emoji{
		Keywords: []string{"jo", "flag", "nation", "country", "banner"},
		Char:     "🇯🇴",
		Category: "flags",
	},
	"joy": Emoji{
		Keywords: []string{"face", "cry", "tears", "weep", "happy", "happytears", "haha"},
		Char:     "😂",
		Category: "people",
	},
	"joy_cat": Emoji{
		Keywords: []string{"animal", "cats", "haha", "happy", "tears"},
		Char:     "😹",
		Category: "people",
	},
	"joystick": Emoji{
		Keywords: []string{"game", "play"},
		Char:     "🕹",
		Category: "objects",
	},
	"jp": Emoji{
		Keywords: []string{"japanese", "nation", "flag", "country", "banner"},
		Char:     "🇯🇵",
		Category: "flags",
	},
	"kaaba": Emoji{
		Keywords: []string{"mecca", "mosque", "islam"},
		Char:     "🕋",
		Category: "travel_and_places",
	},
	"kazakhstan": Emoji{
		Keywords: []string{"kz", "flag", "nation", "country", "banner"},
		Char:     "🇰🇿",
		Category: "flags",
	},
	"kenya": Emoji{
		Keywords: []string{"ke", "flag", "nation", "country", "banner"},
		Char:     "🇰🇪",
		Category: "flags",
	},
	"key": Emoji{
		Keywords: []string{"lock", "door", "password"},
		Char:     "🔑",
		Category: "objects",
	},
	"keyboard": Emoji{
		Keywords: []string{"technology", "computer", "type", "input", "text"},
		Char:     "⌨",
		Category: "objects",
	},
	"keycap_ten": Emoji{
		Keywords: []string{"numbers", "10", "blue-square"},
		Char:     "🔟",
		Category: "symbols",
	},
	"kick_scooter": Emoji{
		Keywords: []string{"vehicle", "kick", "razor"},
		Char:     "🛴",
		Category: "travel_and_places",
	},
	"kimono": Emoji{
		Keywords: []string{"dress", "fashion", "women", "female", "japanese"},
		Char:     "👘",
		Category: "people",
	},
	"kiribati": Emoji{
		Keywords: []string{"ki", "flag", "nation", "country", "banner"},
		Char:     "🇰🇮",
		Category: "flags",
	},
	"kiss": Emoji{
		Keywords: []string{"face", "lips", "love", "like", "affection", "valentines"},
		Char:     "💋",
		Category: "people",
	},
	"kissing": Emoji{
		Keywords: []string{"love", "like", "face", "3", "valentines", "infatuation", "kiss"},
		Char:     "😗",
		Category: "people",
	},
	"kissing_cat": Emoji{
		Keywords: []string{"animal", "cats", "kiss"},
		Char:     "😽",
		Category: "people",
	},
	"kissing_closed_eyes": Emoji{
		Keywords: []string{"face", "love", "like", "affection", "valentines", "infatuation", "kiss"},
		Char:     "😚",
		Category: "people",
	},
	"kissing_heart": Emoji{
		Keywords: []string{"face", "love", "like", "affection", "valentines", "infatuation", "kiss"},
		Char:     "😘",
		Category: "people",
	},
	"kissing_smiling_eyes": Emoji{
		Keywords: []string{"face", "affection", "valentines", "infatuation", "kiss"},
		Char:     "😙",
		Category: "people",
	},
	"kiwi_fruit": Emoji{
		Keywords: []string{"fruit", "food"},
		Char:     "🥝",
		Category: "food_and_drink",
	},
	"koala": Emoji{
		Keywords: []string{"animal", "nature"},
		Char:     "🐨",
		Category: "animals_and_nature",
	},
	"koko": Emoji{
		Keywords: []string{"blue-square", "here", "katakana", "japanese", "destination"},
		Char:     "🈁",
		Category: "symbols",
	},
	"kosovo": Emoji{
		Keywords: []string{"xk", "flag", "nation", "country", "banner"},
		Char:     "🇽🇰",
		Category: "flags",
	},
	"kr": Emoji{
		Keywords: []string{"south", "korea", "nation", "flag", "country", "banner"},
		Char:     "🇰🇷",
		Category: "flags",
	},
	"kuwait": Emoji{
		Keywords: []string{"kw", "flag", "nation", "country", "banner"},
		Char:     "🇰🇼",
		Category: "flags",
	},
	"kyrgyzstan": Emoji{
		Keywords: []string{"kg", "flag", "nation", "country", "banner"},
		Char:     "🇰🇬",
		Category: "flags",
	},
	"label": Emoji{
		Keywords: []string{"sale", "tag"},
		Char:     "🏷",
		Category: "objects",
	},
	"laos": Emoji{
		Keywords: []string{"lao", "democratic", "republic", "flag", "nation", "country", "banner"},
		Char:     "🇱🇦",
		Category: "flags",
	},
	"large_blue_circle": Emoji{
		Keywords: []string{"shape", "icon", "button"},
		Char:     "🔵",
		Category: "symbols",
	},
	"large_blue_diamond": Emoji{
		Keywords: []string{"shape", "jewel", "gem"},
		Char:     "🔷",
		Category: "symbols",
	},
	"large_orange_diamond": Emoji{
		Keywords: []string{"shape", "jewel", "gem"},
		Char:     "🔶",
		Category: "symbols",
	},
	"last_quarter_moon": Emoji{
		Keywords: []string{"nature", "twilight", "planet", "space", "night", "evening", "sleep"},
		Char:     "🌗",
		Category: "animals_and_nature",
	},
	"last_quarter_moon_with_face": Emoji{
		Keywords: []string{"nature", "twilight", "planet", "space", "night", "evening", "sleep"},
		Char:     "🌜",
		Category: "animals_and_nature",
	},
	"latin_cross": Emoji{
		Keywords: []string{"christianity"},
		Char:     "✝",
		Category: "symbols",
	},
	"latvia": Emoji{
		Keywords: []string{"lv", "flag", "nation", "country", "banner"},
		Char:     "🇱🇻",
		Category: "flags",
	},
	"laughing": Emoji{
		Keywords: []string{"happy", "joy", "lol", "satisfied", "haha", "face", "glad", "XD", "laugh"},
		Char:     "😆",
		Category: "people",
	},
	"leaves": Emoji{
		Keywords: []string{"nature", "plant", "tree", "vegetable", "grass", "lawn", "spring"},
		Char:     "🍃",
		Category: "animals_and_nature",
	},
	"lebanon": Emoji{
		Keywords: []string{"lb", "flag", "nation", "country", "banner"},
		Char:     "🇱🇧",
		Category: "flags",
	},
	"ledger": Emoji{
		Keywords: []string{"notes", "paper"},
		Char:     "📒",
		Category: "objects",
	},
	"left_luggage": Emoji{
		Keywords: []string{"blue-square", "travel"},
		Char:     "🛅",
		Category: "symbols",
	},
	"left_right_arrow": Emoji{
		Keywords: []string{"shape", "direction", "horizontal", "sideways"},
		Char:     "↔️",
		Category: "symbols",
	},
	"left_speech_bubble": Emoji{
		Keywords: []string{"words", "message", "talk", "chatting"},
		Char:     "🗨",
		Category: "symbols",
	},
	"leftwards_arrow_with_hook": Emoji{
		Keywords: []string{"back", "return", "blue-square", "undo", "enter"},
		Char:     "↩️",
		Category: "symbols",
	},
	"lemon": Emoji{
		Keywords: []string{"fruit", "nature"},
		Char:     "🍋",
		Category: "food_and_drink",
	},
	"leo": Emoji{
		Keywords: []string{"sign", "purple-square", "zodiac", "astrology"},
		Char:     "♌",
		Category: "symbols",
	},
	"leopard": Emoji{
		Keywords: []string{"animal", "nature"},
		Char:     "🐆",
		Category: "animals_and_nature",
	},
	"lesotho": Emoji{
		Keywords: []string{"ls", "flag", "nation", "country", "banner"},
		Char:     "🇱🇸",
		Category: "flags",
	},
	"level_slider": Emoji{
		Keywords: []string{"scale"},
		Char:     "🎚",
		Category: "objects",
	},
	"liberia": Emoji{
		Keywords: []string{"lr", "flag", "nation", "country", "banner"},
		Char:     "🇱🇷",
		Category: "flags",
	},
	"libra": Emoji{
		Keywords: []string{"sign", "purple-square", "zodiac", "astrology"},
		Char:     "♎",
		Category: "symbols",
	},
	"libya": Emoji{
		Keywords: []string{"ly", "flag", "nation", "country", "banner"},
		Char:     "🇱🇾",
		Category: "flags",
	},
	"liechtenstein": Emoji{
		Keywords: []string{"li", "flag", "nation", "country", "banner"},
		Char:     "🇱🇮",
		Category: "flags",
	},
	"light_rail": Emoji{
		Keywords: []string{"transportation", "vehicle"},
		Char:     "🚈",
		Category: "travel_and_places",
	},
	"link": Emoji{
		Keywords: []string{"rings", "url"},
		Char:     "🔗",
		Category: "objects",
	},
	"lion": Emoji{
		Keywords: []string{"animal", "nature"},
		Char:     "🦁",
		Category: "animals_and_nature",
	},
	"lips": Emoji{
		Keywords: []string{"mouth", "kiss"},
		Char:     "👄",
		Category: "people",
	},
	"lipstick": Emoji{
		Keywords: []string{"female", "girl", "fashion", "woman"},
		Char:     "💄",
		Category: "people",
	},
	"lithuania": Emoji{
		Keywords: []string{"lt", "flag", "nation", "country", "banner"},
		Char:     "🇱🇹",
		Category: "flags",
	},
	"lizard": Emoji{
		Keywords: []string{"animal", "nature", "reptile"},
		Char:     "🦎",
		Category: "animals_and_nature",
	},
	"lock": Emoji{
		Keywords: []string{"security", "password", "padlock"},
		Char:     "🔒",
		Category: "objects",
	},
	"lock_with_ink_pen": Emoji{
		Keywords: []string{"security", "secret"},
		Char:     "🔏",
		Category: "objects",
	},
	"lollipop": Emoji{
		Keywords: []string{"food", "snack", "candy", "sweet"},
		Char:     "🍭",
		Category: "food_and_drink",
	},
	"loop": Emoji{
		Keywords: []string{"tape", "cassette"},
		Char:     "➿",
		Category: "symbols",
	},
	"loud_sound": Emoji{
		Keywords: []string{"volume", "noise", "noisy", "speaker", "broadcast"},
		Char:     "🔊",
		Category: "symbols",
	},
	"loudspeaker": Emoji{
		Keywords: []string{"volume", "sound"},
		Char:     "📢",
		Category: "symbols",
	},
	"love_hotel": Emoji{
		Keywords: []string{"like", "affection", "dating"},
		Char:     "🏩",
		Category: "travel_and_places",
	},
	"love_letter": Emoji{
		Keywords: []string{"email", "like", "affection", "envelope", "valentines"},
		Char:     "💌",
		Category: "objects",
	},
	"love_you": Emoji{
		Keywords: []string{"hand", "fingers", "gesture"},
		Char:     "🤟",
		Category: "people",
	},
	"low_brightness": Emoji{
		Keywords: []string{"sun", "afternoon", "warm", "summer"},
		Char:     "🔅",
		Category: "symbols",
	},
	"luxembourg": Emoji{
		Keywords: []string{"lu", "flag", "nation", "country", "banner"},
		Char:     "🇱🇺",
		Category: "flags",
	},
	"lying_face": Emoji{
		Keywords: []string{"face", "lie", "pinocchio"},
		Char:     "🤥",
		Category: "people",
	},
	"m": Emoji{
		Keywords: []string{"alphabet", "blue-circle", "letter"},
		Char:     "Ⓜ️",
		Category: "symbols",
	},
	"macau": Emoji{
		Keywords: []string{"macao", "flag", "nation", "country", "banner"},
		Char:     "🇲🇴",
		Category: "flags",
	},
	"macedonia": Emoji{
		Keywords: []string{"macedonia,", "flag", "nation", "country", "banner"},
		Char:     "🇲🇰",
		Category: "flags",
	},
	"madagascar": Emoji{
		Keywords: []string{"mg", "flag", "nation", "country", "banner"},
		Char:     "🇲🇬",
		Category: "flags",
	},
	"mag": Emoji{
		Keywords: []string{"search", "zoom", "find", "detective"},
		Char:     "🔍",
		Category: "objects",
	},
	"mag_right": Emoji{
		Keywords: []string{"search", "zoom", "find", "detective"},
		Char:     "🔎",
		Category: "objects",
	},
	"mahjong": Emoji{
		Keywords: []string{"game", "play", "chinese", "kanji"},
		Char:     "🀄",
		Category: "symbols",
	},
	"mailbox": Emoji{
		Keywords: []string{"email", "inbox", "communication"},
		Char:     "📫",
		Category: "objects",
	},
	"mailbox_closed": Emoji{
		Keywords: []string{"email", "communication", "inbox"},
		Char:     "📪",
		Category: "objects",
	},
	"mailbox_with_mail": Emoji{
		Keywords: []string{"email", "inbox", "communication"},
		Char:     "📬",
		Category: "objects",
	},
	"mailbox_with_no_mail": Emoji{
		Keywords: []string{"email", "inbox"},
		Char:     "📭",
		Category: "objects",
	},
	"malawi": Emoji{
		Keywords: []string{"mw", "flag", "nation", "country", "banner"},
		Char:     "🇲🇼",
		Category: "flags",
	},
	"malaysia": Emoji{
		Keywords: []string{"my", "flag", "nation", "country", "banner"},
		Char:     "🇲🇾",
		Category: "flags",
	},
	"maldives": Emoji{
		Keywords: []string{"mv", "flag", "nation", "country", "banner"},
		Char:     "🇲🇻",
		Category: "flags",
	},
	"male_detective": Emoji{
		Keywords: []string{"human", "spy", "detective"},
		Char:     "🕵",
		Category: "people",
	},
	"mali": Emoji{
		Keywords: []string{"ml", "flag", "nation", "country", "banner"},
		Char:     "🇲🇱",
		Category: "flags",
	},
	"malta": Emoji{
		Keywords: []string{"mt", "flag", "nation", "country", "banner"},
		Char:     "🇲🇹",
		Category: "flags",
	},
	"man": Emoji{
		Keywords: []string{"mustache", "father", "dad", "guy", "classy", "sir", "moustache"},
		Char:     "👨",
		Category: "people",
	},
	"man_artist": Emoji{
		Keywords: []string{"painter", "man", "human"},
		Char:     "👨‍🎨",
		Category: "people",
	},
	"man_astronaut": Emoji{
		Keywords: []string{"space", "rocket", "man", "human"},
		Char:     "👨‍🚀",
		Category: "people",
	},
	"man_cartwheeling": Emoji{
		Keywords: []string{"gymnastics"},
		Char:     "🤸‍♂️",
		Category: "activity",
	},
	"man_cook": Emoji{
		Keywords: []string{"chef", "man", "human"},
		Char:     "👨‍🍳",
		Category: "people",
	},
	"man_dancing": Emoji{
		Keywords: []string{"male", "boy", "fun", "dancer"},
		Char:     "🕺",
		Category: "people",
	},
	"man_elf": Emoji{
		Keywords: []string{"man", "male"},
		Char:     "🧝‍♂️",
		Category: "people",
	},
	"man_facepalming": Emoji{
		Keywords: []string{"man", "male", "boy", "disbelief"},
		Char:     "🤦",
		Category: "people",
	},
	"man_factory_worker": Emoji{
		Keywords: []string{"assembly", "industrial", "man", "human"},
		Char:     "👨‍🏭",
		Category: "people",
	},
	"man_fairy": Emoji{
		Keywords: []string{"man", "male"},
		Char:     "🧚‍♂️",
		Category: "people",
	},
	"man_farmer": Emoji{
		Keywords: []string{"rancher", "gardener", "man", "human"},
		Char:     "👨‍🌾",
		Category: "people",
	},
	"man_firefighter": Emoji{
		Keywords: []string{"fireman", "man", "human"},
		Char:     "👨‍🚒",
		Category: "people",
	},
	"man_genie": Emoji{
		Keywords: []string{"man", "male"},
		Char:     "🧞‍♂️",
		Category: "people",
	},
	"man_health_worker": Emoji{
		Keywords: []string{"doctor", "nurse", "therapist", "healthcare", "man", "human"},
		Char:     "👨‍⚕️",
		Category: "people",
	},
	"man_in_lotus_position": Emoji{
		Keywords: []string{"man", "male", "meditation", "yoga", "serenity", "zen", "mindfulness"},
		Char:     "🧘‍♂️",
		Category: "activity",
	},
	"man_in_steamy_room": Emoji{
		Keywords: []string{"male", "man", "spa", "steamroom", "sauna"},
		Char:     "🧖‍♂️",
		Category: "people",
	},
	"man_in_tuxedo": Emoji{
		Keywords: []string{"couple", "marriage", "wedding", "groom"},
		Char:     "🤵",
		Category: "people",
	},
	"man_judge": Emoji{
		Keywords: []string{"justice", "court", "man", "human"},
		Char:     "👨‍⚖️",
		Category: "people",
	},
	"man_juggling": Emoji{
		Keywords: []string{"juggle", "balance", "skill", "multitask"},
		Char:     "🤹‍♂️",
		Category: "activity",
	},
	"man_mechanic": Emoji{
		Keywords: []string{"plumber", "man", "human", "wrench"},
		Char:     "👨‍🔧",
		Category: "people",
	},
	"man_office_worker": Emoji{
		Keywords: []string{"business", "manager", "man", "human"},
		Char:     "👨‍💼",
		Category: "people",
	},
	"man_pilot": Emoji{
		Keywords: []string{"aviator", "plane", "man", "human"},
		Char:     "👨‍✈️",
		Category: "people",
	},
	"man_playing_handball": Emoji{
		Keywords: []string{"sports"},
		Char:     "🤾‍♂️",
		Category: "activity",
	},
	"man_playing_water_polo": Emoji{
		Keywords: []string{"sports", "pool"},
		Char:     "🤽‍♂️",
		Category: "activity",
	},
	"man_scientist": Emoji{
		Keywords: []string{"biologist", "chemist", "engineer", "physicist", "man", "human"},
		Char:     "👨‍🔬",
		Category: "people",
	},
	"man_shrugging": Emoji{
		Keywords: []string{"man", "male", "boy", "confused", "indifferent", "doubt"},
		Char:     "🤷‍♂️",
		Category: "people",
	},
	"man_singer": Emoji{
		Keywords: []string{"rockstar", "entertainer", "man", "human"},
		Char:     "👨‍🎤",
		Category: "people",
	},
	"man_student": Emoji{
		Keywords: []string{"graduate", "man", "human"},
		Char:     "👨‍🎓",
		Category: "people",
	},
	"man_teacher": Emoji{
		Keywords: []string{"instructor", "professor", "man", "human"},
		Char:     "👨‍🏫",
		Category: "people",
	},
	"man_technologist": Emoji{
		Keywords: []string{"coder", "developer", "engineer", "programmer", "software", "man", "human", "laptop", "computer"},
		Char:     "👨‍💻",
		Category: "people",
	},
	"man_vampire": Emoji{
		Keywords: []string{"man", "male", "dracula"},
		Char:     "🧛‍♂️",
		Category: "people",
	},
	"man_with_gua_pi_mao": Emoji{
		Keywords: []string{"male", "boy", "chinese"},
		Char:     "👲",
		Category: "people",
	},
	"man_with_turban": Emoji{
		Keywords: []string{"male", "indian", "hinduism", "arabs"},
		Char:     "👳",
		Category: "people",
	},
	"man_zombie": Emoji{
		Keywords: []string{"man", "male", "dracula", "undead", "walking dead"},
		Char:     "🧟‍♂️",
		Category: "people",
	},
	"mans_shoe": Emoji{
		Keywords: []string{"fashion", "male"},
		Char:     "👞",
		Category: "people",
	},
	"mantelpiece_clock": Emoji{
		Keywords: []string{"time"},
		Char:     "🕰",
		Category: "objects",
	},
	"maple_leaf": Emoji{
		Keywords: []string{"nature", "plant", "vegetable", "ca", "fall"},
		Char:     "🍁",
		Category: "animals_and_nature",
	},
	"marshall_islands": Emoji{
		Keywords: []string{"marshall", "islands", "flag", "nation", "country", "banner"},
		Char:     "🇲🇭",
		Category: "flags",
	},
	"martial_arts_uniform": Emoji{
		Keywords: []string{"judo", "karate", "taekwondo"},
		Char:     "🥋",
		Category: "activity",
	},
	"martinique": Emoji{
		Keywords: []string{"mq", "flag", "nation", "country", "banner"},
		Char:     "🇲🇶",
		Category: "flags",
	},
	"mask": Emoji{
		Keywords: []string{"face", "sick", "ill", "disease"},
		Char:     "😷",
		Category: "people",
	},
	"massage_man": Emoji{
		Keywords: []string{"male", "boy", "man", "head"},
		Char:     "💆‍♂️",
		Category: "people",
	},
	"massage_woman": Emoji{
		Keywords: []string{"female", "girl", "woman", "head"},
		Char:     "💆",
		Category: "people",
	},
	"mauritania": Emoji{
		Keywords: []string{"mr", "flag", "nation", "country", "banner"},
		Char:     "🇲🇷",
		Category: "flags",
	},
	"mauritius": Emoji{
		Keywords: []string{"mu", "flag", "nation", "country", "banner"},
		Char:     "🇲🇺",
		Category: "flags",
	},
	"mayotte": Emoji{
		Keywords: []string{"yt", "flag", "nation", "country", "banner"},
		Char:     "🇾🇹",
		Category: "flags",
	},
	"meat_on_bone": Emoji{
		Keywords: []string{"good", "food", "drumstick"},
		Char:     "🍖",
		Category: "food_and_drink",
	},
	"medal_military": Emoji{
		Keywords: []string{"award", "winning", "army"},
		Char:     "🎖",
		Category: "activity",
	},
	"medal_sports": Emoji{
		Keywords: []string{"award", "winning"},
		Char:     "🏅",
		Category: "activity",
	},
	"mega": Emoji{
		Keywords: []string{"sound", "speaker", "volume"},
		Char:     "📣",
		Category: "symbols",
	},
	"melon": Emoji{
		Keywords: []string{"fruit", "nature", "food"},
		Char:     "🍈",
		Category: "food_and_drink",
	},
	"memo": Emoji{
		Keywords: []string{"write", "documents", "stationery", "pencil", "paper", "writing", "legal", "exam", "quiz", "test", "study", "compose"},
		Char:     "📝",
		Category: "objects",
	},
	"men_wrestling": Emoji{
		Keywords: []string{"sports", "wrestlers"},
		Char:     "🤼‍♂️",
		Category: "activity",
	},
	"menorah": Emoji{
		Keywords: []string{"hanukkah", "candles", "jewish"},
		Char:     "🕎",
		Category: "symbols",
	},
	"mens": Emoji{
		Keywords: []string{"toilet", "restroom", "wc", "blue-square", "gender", "male"},
		Char:     "🚹",
		Category: "symbols",
	},
	"mermaid": Emoji{
		Keywords: []string{"woman", "female", "merwoman", "ariel"},
		Char:     "🧜‍♀️",
		Category: "people",
	},
	"merman": Emoji{
		Keywords: []string{"man", "male", "triton"},
		Char:     "🧜‍♂️",
		Category: "people",
	},
	"metal": Emoji{
		Keywords: []string{"hand", "fingers", "evil_eye", "sign_of_horns", "rock_on"},
		Char:     "🤘",
		Category: "people",
	},
	"metro": Emoji{
		Keywords: []string{"transportation", "blue-square", "mrt", "underground", "tube"},
		Char:     "🚇",
		Category: "travel_and_places",
	},
	"mexico": Emoji{
		Keywords: []string{"mx", "flag", "nation", "country", "banner"},
		Char:     "🇲🇽",
		Category: "flags",
	},
	"micronesia": Emoji{
		Keywords: []string{"micronesia,", "federated", "states", "flag", "nation", "country", "banner"},
		Char:     "🇫🇲",
		Category: "flags",
	},
	"microphone": Emoji{
		Keywords: []string{"sound", "music", "PA", "sing", "talkshow"},
		Char:     "🎤",
		Category: "activity",
	},
	"microscope": Emoji{
		Keywords: []string{"laboratory", "experiment", "zoomin", "science", "study"},
		Char:     "🔬",
		Category: "objects",
	},
	"milk_glass": Emoji{
		Keywords: []string{"beverage", "drink", "cow"},
		Char:     "🥛",
		Category: "food_and_drink",
	},
	"milky_way": Emoji{
		Keywords: []string{"photo", "space", "stars"},
		Char:     "🌌",
		Category: "travel_and_places",
	},
	"minibus": Emoji{
		Keywords: []string{"vehicle", "car", "transportation"},
		Char:     "🚐",
		Category: "travel_and_places",
	},
	"minidisc": Emoji{
		Keywords: []string{"technology", "record", "data", "disk", "90s"},
		Char:     "💽",
		Category: "objects",
	},
	"mobile_phone_off": Emoji{
		Keywords: []string{"mute", "orange-square", "silence", "quiet"},
		Char:     "📴",
		Category: "symbols",
	},
	"moldova": Emoji{
		Keywords: []string{"moldova,", "republic", "flag", "nation", "country", "banner"},
		Char:     "🇲🇩",
		Category: "flags",
	},
	"monaco": Emoji{
		Keywords: []string{"mc", "flag", "nation", "country", "banner"},
		Char:     "🇲🇨",
		Category: "flags",
	},
	"money_mouth_face": Emoji{
		Keywords: []string{"face", "rich", "dollar", "money"},
		Char:     "🤑",
		Category: "people",
	},
	"money_with_wings": Emoji{
		Keywords: []string{"dollar", "bills", "payment", "sale"},
		Char:     "💸",
		Category: "objects",
	},
	"moneybag": Emoji{
		Keywords: []string{"dollar", "payment", "coins", "sale"},
		Char:     "💰",
		Category: "objects",
	},
	"mongolia": Emoji{
		Keywords: []string{"mn", "flag", "nation", "country", "banner"},
		Char:     "🇲🇳",
		Category: "flags",
	},
	"monkey": Emoji{
		Keywords: []string{"animal", "nature", "banana", "circus"},
		Char:     "🐒",
		Category: "animals_and_nature",
	},
	"monkey_face": Emoji{
		Keywords: []string{"animal", "nature", "circus"},
		Char:     "🐵",
		Category: "animals_and_nature",
	},
	"monocle": Emoji{
		Keywords: []string{"face", "stuffy", "wealthy"},
		Char:     "🧐",
		Category: "people",
	},
	"monorail": Emoji{
		Keywords: []string{"transportation", "vehicle"},
		Char:     "🚝",
		Category: "travel_and_places",
	},
	"montenegro": Emoji{
		Keywords: []string{"me", "flag", "nation", "country", "banner"},
		Char:     "🇲🇪",
		Category: "flags",
	},
	"montserrat": Emoji{
		Keywords: []string{"ms", "flag", "nation", "country", "banner"},
		Char:     "🇲🇸",
		Category: "flags",
	},
	"morocco": Emoji{
		Keywords: []string{"ma", "flag", "nation", "country", "banner"},
		Char:     "🇲🇦",
		Category: "flags",
	},
	"mortar_board": Emoji{
		Keywords: []string{"school", "college", "degree", "university", "graduation", "cap", "hat", "legal", "learn", "education"},
		Char:     "🎓",
		Category: "people",
	},
	"mosque": Emoji{
		Keywords: []string{"islam", "worship", "minaret"},
		Char:     "🕌",
		Category: "travel_and_places",
	},
	"motor_boat": Emoji{
		Keywords: []string{"ship"},
		Char:     "🛥",
		Category: "travel_and_places",
	},
	"motor_scooter": Emoji{
		Keywords: []string{"vehicle", "vespa", "sasha"},
		Char:     "🛵",
		Category: "travel_and_places",
	},
	"motorcycle": Emoji{
		Keywords: []string{"race", "sports", "fast"},
		Char:     "🏍",
		Category: "travel_and_places",
	},
	"motorway": Emoji{
		Keywords: []string{"road", "cupertino", "interstate", "highway"},
		Char:     "🛣",
		Category: "travel_and_places",
	},
	"mount_fuji": Emoji{
		Keywords: []string{"photo", "mountain", "nature", "japanese"},
		Char:     "🗻",
		Category: "travel_and_places",
	},
	"mountain": Emoji{
		Keywords: []string{"photo", "nature", "environment"},
		Char:     "⛰",
		Category: "travel_and_places",
	},
	"mountain_biking_man": Emoji{
		Keywords: []string{"transportation", "sports", "human", "race", "bike"},
		Char:     "🚵",
		Category: "activity",
	},
	"mountain_biking_woman": Emoji{
		Keywords: []string{"transportation", "sports", "human", "race", "bike", "woman", "female"},
		Char:     "🚵‍♀️",
		Category: "activity",
	},
	"mountain_cableway": Emoji{
		Keywords: []string{"transportation", "vehicle", "ski"},
		Char:     "🚠",
		Category: "travel_and_places",
	},
	"mountain_railway": Emoji{
		Keywords: []string{"transportation", "vehicle"},
		Char:     "🚞",
		Category: "travel_and_places",
	},
	"mountain_snow": Emoji{
		Keywords: []string{"photo", "nature", "environment", "winter", "cold"},
		Char:     "🏔",
		Category: "travel_and_places",
	},
	"mouse": Emoji{
		Keywords: []string{"animal", "nature", "cheese_wedge", "rodent"},
		Char:     "🐭",
		Category: "animals_and_nature",
	},
	"mouse2": Emoji{
		Keywords: []string{"animal", "nature", "rodent"},
		Char:     "🐁",
		Category: "animals_and_nature",
	},
	"movie_camera": Emoji{
		Keywords: []string{"film", "record"},
		Char:     "🎥",
		Category: "objects",
	},
	"moyai": Emoji{
		Keywords: []string{"rock", "easter island", "moai"},
		Char:     "🗿",
		Category: "objects",
	},
	"mozambique": Emoji{
		Keywords: []string{"mz", "flag", "nation", "country", "banner"},
		Char:     "🇲🇿",
		Category: "flags",
	},
	"mrs_claus": Emoji{
		Keywords: []string{"woman", "female", "xmas", "mother christmas"},
		Char:     "🤶",
		Category: "people",
	},
	"muscle": Emoji{
		Keywords: []string{"arm", "flex", "hand", "summer", "strong", "biceps"},
		Char:     "💪",
		Category: "people",
	},
	"mushroom": Emoji{
		Keywords: []string{"plant", "vegetable"},
		Char:     "🍄",
		Category: "animals_and_nature",
	},
	"musical_keyboard": Emoji{
		Keywords: []string{"piano", "instrument", "compose"},
		Char:     "🎹",
		Category: "activity",
	},
	"musical_note": Emoji{
		Keywords: []string{"score", "tone", "sound"},
		Char:     "🎵",
		Category: "symbols",
	},
	"musical_score": Emoji{
		Keywords: []string{"treble", "clef", "compose"},
		Char:     "🎼",
		Category: "activity",
	},
	"mute": Emoji{
		Keywords: []string{"sound", "volume", "silence", "quiet"},
		Char:     "🔇",
		Category: "symbols",
	},
	"myanmar": Emoji{
		Keywords: []string{"mm", "flag", "nation", "country", "banner"},
		Char:     "🇲🇲",
		Category: "flags",
	},
	"nail_care": Emoji{
		Keywords: []string{"beauty", "manicure", "finger", "fashion", "nail"},
		Char:     "💅",
		Category: "people",
	},
	"name_badge": Emoji{
		Keywords: []string{"fire", "forbid"},
		Char:     "📛",
		Category: "symbols",
	},
	"namibia": Emoji{
		Keywords: []string{"na", "flag", "nation", "country", "banner"},
		Char:     "🇳🇦",
		Category: "flags",
	},
	"national_park": Emoji{
		Keywords: []string{"photo", "environment", "nature"},
		Char:     "🏞",
		Category: "travel_and_places",
	},
	"nauru": Emoji{
		Keywords: []string{"nr", "flag", "nation", "country", "banner"},
		Char:     "🇳🇷",
		Category: "flags",
	},
	"nauseated_face": Emoji{
		Keywords: []string{"face", "vomit", "gross", "green", "sick", "throw up", "ill"},
		Char:     "🤢",
		Category: "people",
	},
	"necktie": Emoji{
		Keywords: []string{"shirt", "suitup", "formal", "fashion", "cloth", "business"},
		Char:     "👔",
		Category: "people",
	},
	"negative_squared_cross_mark": Emoji{
		Keywords: []string{"x", "green-square", "no", "deny"},
		Char:     "❎",
		Category: "symbols",
	},
	"nepal": Emoji{
		Keywords: []string{"np", "flag", "nation", "country", "banner"},
		Char:     "🇳🇵",
		Category: "flags",
	},
	"nerd_face": Emoji{
		Keywords: []string{"face", "nerdy", "geek", "dork"},
		Char:     "🤓",
		Category: "people",
	},
	"netherlands": Emoji{
		Keywords: []string{"nl", "flag", "nation", "country", "banner"},
		Char:     "🇳🇱",
		Category: "flags",
	},
	"neutral_face": Emoji{
		Keywords: []string{"indifference", "meh", ":|", "neutral"},
		Char:     "😐",
		Category: "people",
	},
	"new": Emoji{
		Keywords: []string{"blue-square", "words", "start"},
		Char:     "🆕",
		Category: "symbols",
	},
	"new_caledonia": Emoji{
		Keywords: []string{"new", "caledonia", "flag", "nation", "country", "banner"},
		Char:     "🇳🇨",
		Category: "flags",
	},
	"new_moon": Emoji{
		Keywords: []string{"nature", "twilight", "planet", "space", "night", "evening", "sleep"},
		Char:     "🌑",
		Category: "animals_and_nature",
	},
	"new_moon_with_face": Emoji{
		Keywords: []string{"nature", "twilight", "planet", "space", "night", "evening", "sleep"},
		Char:     "🌚",
		Category: "animals_and_nature",
	},
	"new_zealand": Emoji{
		Keywords: []string{"new", "zealand", "flag", "nation", "country", "banner"},
		Char:     "🇳🇿",
		Category: "flags",
	},
	"newspaper": Emoji{
		Keywords: []string{"press", "headline"},
		Char:     "📰",
		Category: "objects",
	},
	"newspaper_roll": Emoji{
		Keywords: []string{"press", "headline"},
		Char:     "🗞",
		Category: "objects",
	},
	"next_track_button": Emoji{
		Keywords: []string{"forward", "next", "blue-square"},
		Char:     "⏭",
		Category: "symbols",
	},
	"ng": Emoji{
		Keywords: []string{"blue-square", "words", "shape", "icon"},
		Char:     "🆖",
		Category: "symbols",
	},
	"nicaragua": Emoji{
		Keywords: []string{"ni", "flag", "nation", "country", "banner"},
		Char:     "🇳🇮",
		Category: "flags",
	},
	"niger": Emoji{
		Keywords: []string{"ne", "flag", "nation", "country", "banner"},
		Char:     "🇳🇪",
		Category: "flags",
	},
	"nigeria": Emoji{
		Keywords: []string{"flag", "nation", "country", "banner"},
		Char:     "🇳🇬",
		Category: "flags",
	},
	"night_with_stars": Emoji{
		Keywords: []string{"evening", "city", "downtown"},
		Char:     "🌃",
		Category: "travel_and_places",
	},
	"nine": Emoji{
		Keywords: []string{"blue-square", "numbers", "9"},
		Char:     "9️⃣",
		Category: "symbols",
	},
	"niue": Emoji{
		Keywords: []string{"nu", "flag", "nation", "country", "banner"},
		Char:     "🇳🇺",
		Category: "flags",
	},
	"no_bell": Emoji{
		Keywords: []string{"sound", "volume", "mute", "quiet", "silent"},
		Char:     "🔕",
		Category: "symbols",
	},
	"no_bicycles": Emoji{
		Keywords: []string{"cyclist", "prohibited", "circle"},
		Char:     "🚳",
		Category: "symbols",
	},
	"no_entry": Emoji{
		Keywords: []string{"limit", "security", "privacy", "bad", "denied", "stop", "circle"},
		Char:     "⛔",
		Category: "symbols",
	},
	"no_entry_sign": Emoji{
		Keywords: []string{"forbid", "stop", "limit", "denied", "disallow", "circle"},
		Char:     "🚫",
		Category: "symbols",
	},
	"no_good_man": Emoji{
		Keywords: []string{"male", "boy", "man", "nope"},
		Char:     "🙅‍♂️",
		Category: "people",
	},
	"no_good_woman": Emoji{
		Keywords: []string{"female", "girl", "woman", "nope"},
		Char:     "🙅",
		Category: "people",
	},
	"no_mobile_phones": Emoji{
		Keywords: []string{"iphone", "mute", "circle"},
		Char:     "📵",
		Category: "symbols",
	},
	"no_mouth": Emoji{
		Keywords: []string{"face", "hellokitty"},
		Char:     "😶",
		Category: "people",
	},
	"no_pedestrians": Emoji{
		Keywords: []string{"rules", "crossing", "walking", "circle"},
		Char:     "🚷",
		Category: "symbols",
	},
	"no_smoking": Emoji{
		Keywords: []string{"cigarette", "blue-square", "smell", "smoke"},
		Char:     "🚭",
		Category: "symbols",
	},
	"non-potable_water": Emoji{
		Keywords: []string{"drink", "faucet", "tap", "circle"},
		Char:     "🚱",
		Category: "symbols",
	},
	"norfolk_island": Emoji{
		Keywords: []string{"norfolk", "island", "flag", "nation", "country", "banner"},
		Char:     "🇳🇫",
		Category: "flags",
	},
	"north_korea": Emoji{
		Keywords: []string{"north", "korea", "nation", "flag", "country", "banner"},
		Char:     "🇰🇵",
		Category: "flags",
	},
	"northern_mariana_islands": Emoji{
		Keywords: []string{"northern", "mariana", "islands", "flag", "nation", "country", "banner"},
		Char:     "🇲🇵",
		Category: "flags",
	},
	"norway": Emoji{
		Keywords: []string{"no", "flag", "nation", "country", "banner"},
		Char:     "🇳🇴",
		Category: "flags",
	},
	"nose": Emoji{
		Keywords: []string{"smell", "sniff"},
		Char:     "👃",
		Category: "people",
	},
	"notebook": Emoji{
		Keywords: []string{"stationery", "record", "notes", "paper", "study"},
		Char:     "📓",
		Category: "objects",
	},
	"notebook_with_decorative_cover": Emoji{
		Keywords: []string{"classroom", "notes", "record", "paper", "study"},
		Char:     "📔",
		Category: "objects",
	},
	"notes": Emoji{
		Keywords: []string{"music", "score"},
		Char:     "🎶",
		Category: "symbols",
	},
	"nut_and_bolt": Emoji{
		Keywords: []string{"handy", "tools", "fix"},
		Char:     "🔩",
		Category: "objects",
	},
	"o": Emoji{
		Keywords: []string{"circle", "round"},
		Char:     "⭕",
		Category: "symbols",
	},
	"o2": Emoji{
		Keywords: []string{"alphabet", "red-square", "letter"},
		Char:     "🅾️",
		Category: "symbols",
	},
	"ocean": Emoji{
		Keywords: []string{"sea", "water", "wave", "nature", "tsunami", "disaster"},
		Char:     "🌊",
		Category: "animals_and_nature",
	},
	"octopus": Emoji{
		Keywords: []string{"animal", "creature", "ocean", "sea", "nature", "beach"},
		Char:     "🐙",
		Category: "animals_and_nature",
	},
	"oden": Emoji{
		Keywords: []string{"food", "japanese"},
		Char:     "🍢",
		Category: "food_and_drink",
	},
	"office": Emoji{
		Keywords: []string{"building", "bureau", "work"},
		Char:     "🏢",
		Category: "travel_and_places",
	},
	"oil_drum": Emoji{
		Keywords: []string{"barrell"},
		Char:     "🛢",
		Category: "objects",
	},
	"ok": Emoji{
		Keywords: []string{"good", "agree", "yes", "blue-square"},
		Char:     "🆗",
		Category: "symbols",
	},
	"ok_hand": Emoji{
		Keywords: []string{"fingers", "limbs", "perfect", "ok", "okay"},
		Char:     "👌",
		Category: "people",
	},
	"ok_man": Emoji{
		Keywords: []string{"men", "boy", "male", "blue", "human", "man"},
		Char:     "🙆‍♂️",
		Category: "people",
	},
	"ok_woman": Emoji{
		Keywords: []string{"women", "girl", "female", "pink", "human", "woman"},
		Char:     "🙆",
		Category: "people",
	},
	"old_key": Emoji{
		Keywords: []string{"lock", "door", "password"},
		Char:     "🗝",
		Category: "objects",
	},
	"older_adult": Emoji{
		Keywords: []string{"human", "elder", "senior", "gender-neutral"},
		Char:     "🧓",
		Category: "people",
	},
	"older_man": Emoji{
		Keywords: []string{"human", "male", "men", "old", "elder", "senior"},
		Char:     "👴",
		Category: "people",
	},
	"older_woman": Emoji{
		Keywords: []string{"human", "female", "women", "lady", "old", "elder", "senior"},
		Char:     "👵",
		Category: "people",
	},
	"om": Emoji{
		Keywords: []string{"hinduism", "buddhism", "sikhism", "jainism"},
		Char:     "🕉",
		Category: "symbols",
	},
	"oman": Emoji{
		Keywords: []string{"om_symbol", "flag", "nation", "country", "banner"},
		Char:     "🇴🇲",
		Category: "flags",
	},
	"on": Emoji{
		Keywords: []string{"arrow", "words"},
		Char:     "🔛",
		Category: "symbols",
	},
	"oncoming_automobile": Emoji{
		Keywords: []string{"car", "vehicle", "transportation"},
		Char:     "🚘",
		Category: "travel_and_places",
	},
	"oncoming_bus": Emoji{
		Keywords: []string{"vehicle", "transportation"},
		Char:     "🚍",
		Category: "travel_and_places",
	},
	"oncoming_police_car": Emoji{
		Keywords: []string{"vehicle", "law", "legal", "enforcement", "911"},
		Char:     "🚔",
		Category: "travel_and_places",
	},
	"oncoming_taxi": Emoji{
		Keywords: []string{"vehicle", "cars", "uber"},
		Char:     "🚖",
		Category: "travel_and_places",
	},
	"one": Emoji{
		Keywords: []string{"blue-square", "numbers", "1"},
		Char:     "1️⃣",
		Category: "symbols",
	},
	"open_book": Emoji{
		Keywords: []string{"book", "read", "library", "knowledge", "literature", "learn", "study"},
		Char:     "📖",
		Category: "objects",
	},
	"open_file_folder": Emoji{
		Keywords: []string{"documents", "load"},
		Char:     "📂",
		Category: "objects",
	},
	"open_hands": Emoji{
		Keywords: []string{"fingers", "butterfly", "hands", "open"},
		Char:     "👐",
		Category: "people",
	},
	"open_mouth": Emoji{
		Keywords: []string{"face", "surprise", "impressed", "wow", "whoa", ":O"},
		Char:     "😮",
		Category: "people",
	},
	"open_umbrella": Emoji{
		Keywords: []string{"weather", "spring"},
		Char:     "☂",
		Category: "animals_and_nature",
	},
	"ophiuchus": Emoji{
		Keywords: []string{"sign", "purple-square", "constellation", "astrology"},
		Char:     "⛎",
		Category: "symbols",
	},
	"orange_book": Emoji{
		Keywords: []string{"read", "library", "knowledge", "textbook", "study"},
		Char:     "📙",
		Category: "objects",
	},
	"orange_heart": Emoji{
		Keywords: []string{"love", "like", "affection", "valentines"},
		Char:     "🧡",
		Category: "symbols",
	},
	"orthodox_cross": Emoji{
		Keywords: []string{"suppedaneum", "religion"},
		Char:     "☦",
		Category: "symbols",
	},
	"outbox_tray": Emoji{
		Keywords: []string{"inbox", "email"},
		Char:     "📤",
		Category: "objects",
	},
	"owl": Emoji{
		Keywords: []string{"animal", "nature", "bird", "hoot"},
		Char:     "🦉",
		Category: "animals_and_nature",
	},
	"ox": Emoji{
		Keywords: []string{"animal", "cow", "beef"},
		Char:     "🐂",
		Category: "animals_and_nature",
	},
	"package": Emoji{
		Keywords: []string{"mail", "gift", "cardboard", "box", "moving"},
		Char:     "📦",
		Category: "objects",
	},
	"page_facing_up": Emoji{
		Keywords: []string{"documents", "office", "paper", "information"},
		Char:     "📄",
		Category: "objects",
	},
	"page_with_curl": Emoji{
		Keywords: []string{"documents", "office", "paper"},
		Char:     "📃",
		Category: "objects",
	},
	"pager": Emoji{
		Keywords: []string{"bbcall", "oldschool", "90s"},
		Char:     "📟",
		Category: "objects",
	},
	"paintbrush": Emoji{
		Keywords: []string{"drawing", "creativity", "art"},
		Char:     "🖌",
		Category: "objects",
	},
	"pakistan": Emoji{
		Keywords: []string{"pk", "flag", "nation", "country", "banner"},
		Char:     "🇵🇰",
		Category: "flags",
	},
	"palau": Emoji{
		Keywords: []string{"pw", "flag", "nation", "country", "banner"},
		Char:     "🇵🇼",
		Category: "flags",
	},
	"palestinian_territories": Emoji{
		Keywords: []string{"palestine", "palestinian", "territories", "flag", "nation", "country", "banner"},
		Char:     "🇵🇸",
		Category: "flags",
	},
	"palm_tree": Emoji{
		Keywords: []string{"plant", "vegetable", "nature", "summer", "beach", "mojito", "tropical"},
		Char:     "🌴",
		Category: "animals_and_nature",
	},
	"palms_up": Emoji{
		Keywords: []string{"hands", "gesture", "cupped", "prayer"},
		Char:     "🤲",
		Category: "people",
	},
	"panama": Emoji{
		Keywords: []string{"pa", "flag", "nation", "country", "banner"},
		Char:     "🇵🇦",
		Category: "flags",
	},
	"pancakes": Emoji{
		Keywords: []string{"food", "breakfast", "flapjacks", "hotcakes"},
		Char:     "🥞",
		Category: "food_and_drink",
	},
	"panda_face": Emoji{
		Keywords: []string{"animal", "nature", "panda"},
		Char:     "🐼",
		Category: "animals_and_nature",
	},
	"paperclip": Emoji{
		Keywords: []string{"documents", "stationery"},
		Char:     "📎",
		Category: "objects",
	},
	"paperclips": Emoji{
		Keywords: []string{"documents", "stationery"},
		Char:     "🖇",
		Category: "objects",
	},
	"papua_new_guinea": Emoji{
		Keywords: []string{"papua", "new", "guinea", "flag", "nation", "country", "banner"},
		Char:     "🇵🇬",
		Category: "flags",
	},
	"paraguay": Emoji{
		Keywords: []string{"py", "flag", "nation", "country", "banner"},
		Char:     "🇵🇾",
		Category: "flags",
	},
	"parasol_on_ground": Emoji{
		Keywords: []string{"weather", "summer"},
		Char:     "⛱",
		Category: "objects",
	},
	"parking": Emoji{
		Keywords: []string{"cars", "blue-square", "alphabet", "letter"},
		Char:     "🅿️",
		Category: "symbols",
	},
	"part_alternation_mark": Emoji{
		Keywords: []string{"graph", "presentation", "stats", "business", "economics", "bad"},
		Char:     "〽️",
		Category: "symbols",
	},
	"partly_sunny": Emoji{
		Keywords: []string{"weather", "nature", "cloudy", "morning", "fall", "spring"},
		Char:     "⛅",
		Category: "animals_and_nature",
	},
	"passenger_ship": Emoji{
		Keywords: []string{"yacht", "cruise", "ferry"},
		Char:     "🛳",
		Category: "travel_and_places",
	},
	"passport_control": Emoji{
		Keywords: []string{"custom", "blue-square"},
		Char:     "🛂",
		Category: "symbols",
	},
	"pause_button": Emoji{
		Keywords: []string{"pause", "blue-square"},
		Char:     "⏸",
		Category: "symbols",
	},
	"paw_prints": Emoji{
		Keywords: []string{"animal", "tracking", "footprints", "dog", "cat", "pet", "feet"},
		Char:     "🐾",
		Category: "animals_and_nature",
	},
	"peace_symbol": Emoji{
		Keywords: []string{"hippie"},
		Char:     "☮",
		Category: "symbols",
	},
	"peach": Emoji{
		Keywords: []string{"fruit", "nature", "food"},
		Char:     "🍑",
		Category: "food_and_drink",
	},
	"peanuts": Emoji{
		Keywords: []string{"food", "nut"},
		Char:     "🥜",
		Category: "food_and_drink",
	},
	"pear": Emoji{
		Keywords: []string{"fruit", "nature", "food"},
		Char:     "🍐",
		Category: "food_and_drink",
	},
	"pen": Emoji{
		Keywords: []string{"stationery", "writing", "write"},
		Char:     "🖊",
		Category: "objects",
	},
	"pencil2": Emoji{
		Keywords: []string{"stationery", "write", "paper", "writing", "school", "study"},
		Char:     "✏️",
		Category: "objects",
	},
	"penguin": Emoji{
		Keywords: []string{"animal", "nature"},
		Char:     "🐧",
		Category: "animals_and_nature",
	},
	"pensive": Emoji{
		Keywords: []string{"face", "sad", "depressed", "upset"},
		Char:     "😔",
		Category: "people",
	},
	"performing_arts": Emoji{
		Keywords: []string{"acting", "theater", "drama"},
		Char:     "🎭",
		Category: "activity",
	},
	"persevere": Emoji{
		Keywords: []string{"face", "sick", "no", "upset", "oops"},
		Char:     "😣",
		Category: "people",
	},
	"person_fencing": Emoji{
		Keywords: []string{"sports", "fencing", "sword"},
		Char:     "🤺",
		Category: "activity",
	},
	"peru": Emoji{
		Keywords: []string{"pe", "flag", "nation", "country", "banner"},
		Char:     "🇵🇪",
		Category: "flags",
	},
	"philippines": Emoji{
		Keywords: []string{"ph", "flag", "nation", "country", "banner"},
		Char:     "🇵🇭",
		Category: "flags",
	},
	"phone": Emoji{
		Keywords: []string{"technology", "communication", "dial", "telephone"},
		Char:     "☎️",
		Category: "objects",
	},
	"pick": Emoji{
		Keywords: []string{"tools", "dig"},
		Char:     "⛏",
		Category: "objects",
	},
	"pie": Emoji{
		Keywords: []string{"food", "dessert", "pastry"},
		Char:     "🥧",
		Category: "food_and_drink",
	},
	"pig": Emoji{
		Keywords: []string{"animal", "oink", "nature"},
		Char:     "🐷",
		Category: "animals_and_nature",
	},
	"pig2": Emoji{
		Keywords: []string{"animal", "nature"},
		Char:     "🐖",
		Category: "animals_and_nature",
	},
	"pig_nose": Emoji{
		Keywords: []string{"animal", "oink"},
		Char:     "🐽",
		Category: "animals_and_nature",
	},
	"pill": Emoji{
		Keywords: []string{"health", "medicine", "doctor", "pharmacy", "drug"},
		Char:     "💊",
		Category: "objects",
	},
	"pineapple": Emoji{
		Keywords: []string{"fruit", "nature", "food"},
		Char:     "🍍",
		Category: "food_and_drink",
	},
	"ping_pong": Emoji{
		Keywords: []string{"sports", "pingpong"},
		Char:     "🏓",
		Category: "activity",
	},
	"pisces": Emoji{
		Keywords: []string{"purple-square", "sign", "zodiac", "astrology"},
		Char:     "♓",
		Category: "symbols",
	},
	"pitcairn_islands": Emoji{
		Keywords: []string{"pitcairn", "flag", "nation", "country", "banner"},
		Char:     "🇵🇳",
		Category: "flags",
	},
	"pizza": Emoji{
		Keywords: []string{"food", "party"},
		Char:     "🍕",
		Category: "food_and_drink",
	},
	"place_of_worship": Emoji{
		Keywords: []string{"religion", "church", "temple", "prayer"},
		Char:     "🛐",
		Category: "symbols",
	},
	"plate_with_cutlery": Emoji{
		Keywords: []string{"food", "eat", "meal", "lunch", "dinner", "restaurant"},
		Char:     "🍽",
		Category: "food_and_drink",
	},
	"play_or_pause_button": Emoji{
		Keywords: []string{"blue-square", "play", "pause"},
		Char:     "⏯",
		Category: "symbols",
	},
	"point_down": Emoji{
		Keywords: []string{"fingers", "hand", "direction", "down"},
		Char:     "👇",
		Category: "people",
	},
	"point_left": Emoji{
		Keywords: []string{"direction", "fingers", "hand", "left"},
		Char:     "👈",
		Category: "people",
	},
	"point_right": Emoji{
		Keywords: []string{"fingers", "hand", "direction", "right"},
		Char:     "👉",
		Category: "people",
	},
	"point_up": Emoji{
		Keywords: []string{"hand", "fingers", "direction", "up"},
		Char:     "☝",
		Category: "people",
	},
	"point_up_2": Emoji{
		Keywords: []string{"fingers", "hand", "direction", "up"},
		Char:     "👆",
		Category: "people",
	},
	"poland": Emoji{
		Keywords: []string{"pl", "flag", "nation", "country", "banner"},
		Char:     "🇵🇱",
		Category: "flags",
	},
	"police_car": Emoji{
		Keywords: []string{"vehicle", "cars", "transportation", "law", "legal", "enforcement"},
		Char:     "🚓",
		Category: "travel_and_places",
	},
	"policeman": Emoji{
		Keywords: []string{"man", "police", "law", "legal", "enforcement", "arrest", "911"},
		Char:     "👮",
		Category: "people",
	},
	"policewoman": Emoji{
		Keywords: []string{"woman", "police", "law", "legal", "enforcement", "arrest", "911", "female"},
		Char:     "👮‍♀️",
		Category: "people",
	},
	"poodle": Emoji{
		Keywords: []string{"dog", "animal", "101", "nature", "pet"},
		Char:     "🐩",
		Category: "animals_and_nature",
	},
	"poop": Emoji{
		Keywords: []string{"hankey", "shitface", "fail", "turd", "shit"},
		Char:     "💩",
		Category: "people",
	},
	"popcorn": Emoji{
		Keywords: []string{"food", "movie theater", "films", "snack"},
		Char:     "🍿",
		Category: "food_and_drink",
	},
	"portugal": Emoji{
		Keywords: []string{"pt", "flag", "nation", "country", "banner"},
		Char:     "🇵🇹",
		Category: "flags",
	},
	"post_office": Emoji{
		Keywords: []string{"building", "envelope", "communication"},
		Char:     "🏣",
		Category: "travel_and_places",
	},
	"postal_horn": Emoji{
		Keywords: []string{"instrument", "music"},
		Char:     "📯",
		Category: "objects",
	},
	"postbox": Emoji{
		Keywords: []string{"email", "letter", "envelope"},
		Char:     "📮",
		Category: "objects",
	},
	"potable_water": Emoji{
		Keywords: []string{"blue-square", "liquid", "restroom", "cleaning", "faucet"},
		Char:     "🚰",
		Category: "symbols",
	},
	"potato": Emoji{
		Keywords: []string{"food", "tuber", "vegatable", "starch"},
		Char:     "🥔",
		Category: "food_and_drink",
	},
	"pouch": Emoji{
		Keywords: []string{"bag", "accessories", "shopping"},
		Char:     "👝",
		Category: "people",
	},
	"poultry_leg": Emoji{
		Keywords: []string{"food", "meat", "drumstick", "bird", "chicken", "turkey"},
		Char:     "🍗",
		Category: "food_and_drink",
	},
	"pound": Emoji{
		Keywords: []string{"british", "sterling", "money", "sales", "bills", "uk", "england", "currency"},
		Char:     "💷",
		Category: "objects",
	},
	"pouting_cat": Emoji{
		Keywords: []string{"animal", "cats"},
		Char:     "😾",
		Category: "people",
	},
	"pouting_man": Emoji{
		Keywords: []string{"male", "boy", "man"},
		Char:     "🙎‍♂️",
		Category: "people",
	},
	"pouting_woman": Emoji{
		Keywords: []string{"female", "girl", "woman"},
		Char:     "🙎",
		Category: "people",
	},
	"pray": Emoji{
		Keywords: []string{"please", "hope", "wish", "namaste", "highfive"},
		Char:     "🙏",
		Category: "people",
	},
	"prayer_beads": Emoji{
		Keywords: []string{"dhikr", "religious"},
		Char:     "📿",
		Category: "objects",
	},
	"pregnant_woman": Emoji{
		Keywords: []string{"baby"},
		Char:     "🤰",
		Category: "people",
	},
	"pretzel": Emoji{
		Keywords: []string{"food", "bread", "twisted"},
		Char:     "🥨",
		Category: "food_and_drink",
	},
	"previous_track_button": Emoji{
		Keywords: []string{"backward"},
		Char:     "⏮",
		Category: "symbols",
	},
	"prince": Emoji{
		Keywords: []string{"boy", "man", "male", "crown", "royal", "king"},
		Char:     "🤴",
		Category: "people",
	},
	"princess": Emoji{
		Keywords: []string{"girl", "woman", "female", "blond", "crown", "royal", "queen"},
		Char:     "👸",
		Category: "people",
	},
	"printer": Emoji{
		Keywords: []string{"paper", "ink"},
		Char:     "🖨",
		Category: "objects",
	},
	"puerto_rico": Emoji{
		Keywords: []string{"puerto", "rico", "flag", "nation", "country", "banner"},
		Char:     "🇵🇷",
		Category: "flags",
	},
	"purple_heart": Emoji{
		Keywords: []string{"love", "like", "affection", "valentines"},
		Char:     "💜",
		Category: "symbols",
	},
	"purse": Emoji{
		Keywords: []string{"fashion", "accessories", "money", "sales", "shopping"},
		Char:     "👛",
		Category: "people",
	},
	"pushpin": Emoji{
		Keywords: []string{"stationery", "mark", "here"},
		Char:     "📌",
		Category: "objects",
	},
	"put_litter_in_its_place": Emoji{
		Keywords: []string{"blue-square", "sign", "human", "info"},
		Char:     "🚮",
		Category: "symbols",
	},
	"qatar": Emoji{
		Keywords: []string{"qa", "flag", "nation", "country", "banner"},
		Char:     "🇶🇦",
		Category: "flags",
	},
	"question": Emoji{
		Keywords: []string{"doubt", "confused"},
		Char:     "❓",
		Category: "symbols",
	},
	"rabbit": Emoji{
		Keywords: []string{"animal", "nature", "pet", "spring", "magic", "bunny"},
		Char:     "🐰",
		Category: "animals_and_nature",
	},
	"rabbit2": Emoji{
		Keywords: []string{"animal", "nature", "pet", "magic", "spring"},
		Char:     "🐇",
		Category: "animals_and_nature",
	},
	"racehorse": Emoji{
		Keywords: []string{"animal", "gamble", "luck"},
		Char:     "🐎",
		Category: "animals_and_nature",
	},
	"racing_car": Emoji{
		Keywords: []string{"sports", "race", "fast", "formula", "f1"},
		Char:     "🏎",
		Category: "travel_and_places",
	},
	"radio": Emoji{
		Keywords: []string{"communication", "music", "podcast", "program"},
		Char:     "📻",
		Category: "objects",
	},
	"radio_button": Emoji{
		Keywords: []string{"input", "old", "music", "circle"},
		Char:     "🔘",
		Category: "symbols",
	},
	"radioactive": Emoji{
		Keywords: []string{"nuclear", "danger"},
		Char:     "☢",
		Category: "symbols",
	},
	"rage": Emoji{
		Keywords: []string{"angry", "mad", "hate", "despise"},
		Char:     "😡",
		Category: "people",
	},
	"railway_car": Emoji{
		Keywords: []string{"transportation", "vehicle"},
		Char:     "🚃",
		Category: "travel_and_places",
	},
	"railway_track": Emoji{
		Keywords: []string{"train", "transportation"},
		Char:     "🛤",
		Category: "travel_and_places",
	},
	"rainbow": Emoji{
		Keywords: []string{"nature", "happy", "unicorn_face", "photo", "sky", "spring"},
		Char:     "🌈",
		Category: "travel_and_places",
	},
	"rainbow_flag": Emoji{
		Keywords: []string{"flag", "rainbow", "pride", "gay", "lgbt", "glbt", "queer", "homosexual", "lesbian", "bisexual", "transgender"},
		Char:     "🏳️‍🌈",
		Category: "objects",
	},
	"raised_back_of_hand": Emoji{
		Keywords: []string{"fingers", "raised", "backhand"},
		Char:     "🤚",
		Category: "people",
	},
	"raised_eyebrow": Emoji{
		Keywords: []string{"face", "distrust", "scepticism", "disapproval", "disbelief", "surprise"},
		Char:     "🤨",
		Category: "people",
	},
	"raised_hand": Emoji{
		Keywords: []string{"fingers", "stop", "highfive", "palm", "ban"},
		Char:     "✋",
		Category: "people",
	},
	"raised_hand_with_fingers_splayed": Emoji{
		Keywords: []string{"hand", "fingers", "palm"},
		Char:     "🖐",
		Category: "people",
	},
	"raised_hands": Emoji{
		Keywords: []string{"gesture", "hooray", "yea", "celebration", "hands"},
		Char:     "🙌",
		Category: "people",
	},
	"raising_hand_man": Emoji{
		Keywords: []string{"male", "boy", "man"},
		Char:     "🙋‍♂️",
		Category: "people",
	},
	"raising_hand_woman": Emoji{
		Keywords: []string{"female", "girl", "woman"},
		Char:     "🙋",
		Category: "people",
	},
	"ram": Emoji{
		Keywords: []string{"animal", "sheep", "nature"},
		Char:     "🐏",
		Category: "animals_and_nature",
	},
	"ramen": Emoji{
		Keywords: []string{"food", "japanese", "noodle", "chopsticks"},
		Char:     "🍜",
		Category: "food_and_drink",
	},
	"rat": Emoji{
		Keywords: []string{"animal", "mouse", "rodent"},
		Char:     "🐀",
		Category: "animals_and_nature",
	},
	"record_button": Emoji{
		Keywords: []string{"blue-square"},
		Char:     "⏺",
		Category: "symbols",
	},
	"recycle": Emoji{
		Keywords: []string{"arrow", "environment", "garbage", "trash"},
		Char:     "♻️",
		Category: "symbols",
	},
	"red_car": Emoji{
		Keywords: []string{"red", "transportation", "vehicle"},
		Char:     "🚗",
		Category: "travel_and_places",
	},
	"red_circle": Emoji{
		Keywords: []string{"shape", "error", "danger"},
		Char:     "🔴",
		Category: "symbols",
	},
	"registered": Emoji{
		Keywords: []string{"alphabet", "circle"},
		Char:     "®️",
		Category: "symbols",
	},
	"relaxed": Emoji{
		Keywords: []string{"face", "blush", "massage", "happiness"},
		Char:     "☺️",
		Category: "people",
	},
	"relieved": Emoji{
		Keywords: []string{"face", "relaxed", "phew", "massage", "happiness"},
		Char:     "😌",
		Category: "people",
	},
	"reminder_ribbon": Emoji{
		Keywords: []string{"sports", "cause", "support", "awareness"},
		Char:     "🎗",
		Category: "activity",
	},
	"repeat": Emoji{
		Keywords: []string{"loop", "record"},
		Char:     "🔁",
		Category: "symbols",
	},
	"repeat_one": Emoji{
		Keywords: []string{"blue-square", "loop"},
		Char:     "🔂",
		Category: "symbols",
	},
	"rescue_worker_helmet": Emoji{
		Keywords: []string{"construction", "build"},
		Char:     "⛑",
		Category: "people",
	},
	"restroom": Emoji{
		Keywords: []string{"blue-square", "toilet", "refresh", "wc", "gender"},
		Char:     "🚻",
		Category: "symbols",
	},
	"reunion": Emoji{
		Keywords: []string{"réunion", "flag", "nation", "country", "banner"},
		Char:     "🇷🇪",
		Category: "flags",
	},
	"revolving_hearts": Emoji{
		Keywords: []string{"love", "like", "affection", "valentines"},
		Char:     "💞",
		Category: "symbols",
	},
	"rewind": Emoji{
		Keywords: []string{"play", "blue-square"},
		Char:     "⏪",
		Category: "symbols",
	},
	"rhinoceros": Emoji{
		Keywords: []string{"animal", "nature", "horn"},
		Char:     "🦏",
		Category: "animals_and_nature",
	},
	"ribbon": Emoji{
		Keywords: []string{"decoration", "pink", "girl", "bowtie"},
		Char:     "🎀",
		Category: "objects",
	},
	"rice": Emoji{
		Keywords: []string{"food", "china", "asian"},
		Char:     "🍚",
		Category: "food_and_drink",
	},
	"rice_ball": Emoji{
		Keywords: []string{"food", "japanese"},
		Char:     "🍙",
		Category: "food_and_drink",
	},
	"rice_cracker": Emoji{
		Keywords: []string{"food", "japanese"},
		Char:     "🍘",
		Category: "food_and_drink",
	},
	"rice_scene": Emoji{
		Keywords: []string{"photo", "japan", "asia", "tsukimi"},
		Char:     "🎑",
		Category: "travel_and_places",
	},
	"right_anger_bubble": Emoji{
		Keywords: []string{"caption", "speech", "thinking", "mad"},
		Char:     "🗯",
		Category: "symbols",
	},
	"ring": Emoji{
		Keywords: []string{"wedding", "propose", "marriage", "valentines", "diamond", "fashion", "jewelry", "gem", "engagement"},
		Char:     "💍",
		Category: "people",
	},
	"robot": Emoji{
		Keywords: []string{"computer", "machine", "bot"},
		Char:     "🤖",
		Category: "people",
	},
	"rocket": Emoji{
		Keywords: []string{"launch", "ship", "staffmode", "NASA", "outer space", "outer_space", "fly"},
		Char:     "🚀",
		Category: "travel_and_places",
	},
	"rofl": Emoji{
		Keywords: []string{"face", "rolling", "floor", "laughing", "lol", "haha"},
		Char:     "🤣",
		Category: "people",
	},
	"roll_eyes": Emoji{
		Keywords: []string{"face", "eyeroll", "frustrated"},
		Char:     "🙄",
		Category: "people",
	},
	"roller_coaster": Emoji{
		Keywords: []string{"carnival", "playground", "photo", "fun"},
		Char:     "🎢",
		Category: "travel_and_places",
	},
	"romania": Emoji{
		Keywords: []string{"ro", "flag", "nation", "country", "banner"},
		Char:     "🇷🇴",
		Category: "flags",
	},
	"rooster": Emoji{
		Keywords: []string{"animal", "nature", "chicken"},
		Char:     "🐓",
		Category: "animals_and_nature",
	},
	"rose": Emoji{
		Keywords: []string{"flowers", "valentines", "love", "spring"},
		Char:     "🌹",
		Category: "animals_and_nature",
	},
	"rosette": Emoji{
		Keywords: []string{"flower", "decoration", "military"},
		Char:     "🏵",
		Category: "activity",
	},
	"rotating_light": Emoji{
		Keywords: []string{"police", "ambulance", "911", "emergency", "alert", "error", "pinged", "law", "legal"},
		Char:     "🚨",
		Category: "travel_and_places",
	},
	"round_pushpin": Emoji{
		Keywords: []string{"stationery", "location", "map", "here"},
		Char:     "📍",
		Category: "objects",
	},
	"rowing_man": Emoji{
		Keywords: []string{"sports", "hobby", "water", "ship"},
		Char:     "🚣",
		Category: "activity",
	},
	"rowing_woman": Emoji{
		Keywords: []string{"sports", "hobby", "water", "ship", "woman", "female"},
		Char:     "🚣‍♀️",
		Category: "activity",
	},
	"ru": Emoji{
		Keywords: []string{"russian", "federation", "flag", "nation", "country", "banner"},
		Char:     "🇷🇺",
		Category: "flags",
	},
	"rugby_football": Emoji{
		Keywords: []string{"sports", "team"},
		Char:     "🏉",
		Category: "activity",
	},
	"running_man": Emoji{
		Keywords: []string{"man", "walking", "exercise", "race", "running"},
		Char:     "🏃",
		Category: "people",
	},
	"running_shirt_with_sash": Emoji{
		Keywords: []string{"play", "pageant"},
		Char:     "🎽",
		Category: "activity",
	},
	"running_woman": Emoji{
		Keywords: []string{"woman", "walking", "exercise", "race", "running", "female"},
		Char:     "🏃‍♀️",
		Category: "people",
	},
	"rwanda": Emoji{
		Keywords: []string{"rw", "flag", "nation", "country", "banner"},
		Char:     "🇷🇼",
		Category: "flags",
	},
	"sa": Emoji{
		Keywords: []string{"japanese", "blue-square", "katakana"},
		Char:     "🈂️",
		Category: "symbols",
	},
	"sagittarius": Emoji{
		Keywords: []string{"sign", "zodiac", "purple-square", "astrology"},
		Char:     "♐",
		Category: "symbols",
	},
	"sailboat": Emoji{
		Keywords: []string{"ship", "summer", "transportation", "water", "sailing"},
		Char:     "⛵",
		Category: "travel_and_places",
	},
	"sake": Emoji{
		Keywords: []string{"wine", "drink", "drunk", "beverage", "japanese", "alcohol", "booze"},
		Char:     "🍶",
		Category: "food_and_drink",
	},
	"samoa": Emoji{
		Keywords: []string{"ws", "flag", "nation", "country", "banner"},
		Char:     "🇼🇸",
		Category: "flags",
	},
	"san_marino": Emoji{
		Keywords: []string{"san", "marino", "flag", "nation", "country", "banner"},
		Char:     "🇸🇲",
		Category: "flags",
	},
	"sandal": Emoji{
		Keywords: []string{"shoes", "fashion", "flip flops"},
		Char:     "👡",
		Category: "people",
	},
	"sandwich": Emoji{
		Keywords: []string{"food", "lunch", "bread"},
		Char:     "🥪",
		Category: "food_and_drink",
	},
	"santa": Emoji{
		Keywords: []string{"festival", "man", "male", "xmas", "father christmas"},
		Char:     "🎅",
		Category: "people",
	},
	"sao_tome_principe": Emoji{
		Keywords: []string{"sao", "tome", "principe", "flag", "nation", "country", "banner"},
		Char:     "🇸🇹",
		Category: "flags",
	},
	"satellite": Emoji{
		Keywords: []string{"communication", "future", "radio", "space"},
		Char:     "📡",
		Category: "objects",
	},
	"saudi_arabia": Emoji{
		Keywords: []string{"flag", "nation", "country", "banner"},
		Char:     "🇸🇦",
		Category: "flags",
	},
	"sauropod": Emoji{
		Keywords: []string{"animal", "nature", "dinosaur", "brachiosaurus", "brontosaurus", "diplodocus", "extinct"},
		Char:     "🦕",
		Category: "animals_and_nature",
	},
	"saxophone": Emoji{
		Keywords: []string{"music", "instrument", "jazz", "blues"},
		Char:     "🎷",
		Category: "activity",
	},
	"scarf": Emoji{
		Keywords: []string{"neck", "winter", "clothes"},
		Char:     "🧣",
		Category: "people",
	},
	"school": Emoji{
		Keywords: []string{"building", "student", "education", "learn", "teach"},
		Char:     "🏫",
		Category: "travel_and_places",
	},
	"school_satchel": Emoji{
		Keywords: []string{"student", "education", "bag", "backpack"},
		Char:     "🎒",
		Category: "people",
	},
	"scissors": Emoji{
		Keywords: []string{"stationery", "cut"},
		Char:     "✂️",
		Category: "objects",
	},
	"scorpion": Emoji{
		Keywords: []string{"animal", "arachnid"},
		Char:     "🦂",
		Category: "animals_and_nature",
	},
	"scorpius": Emoji{
		Keywords: []string{"sign", "zodiac", "purple-square", "astrology", "scorpio"},
		Char:     "♏",
		Category: "symbols",
	},
	"scotland": Emoji{
		Keywords: []string{"flag", "scottish"},
		Char:     "🏴󠁧󠁢󠁳󠁣󠁴󠁿",
		Category: "flags",
	},
	"scream": Emoji{
		Keywords: []string{"face", "munch", "scared", "omg"},
		Char:     "😱",
		Category: "people",
	},
	"scream_cat": Emoji{
		Keywords: []string{"animal", "cats", "munch", "scared", "scream"},
		Char:     "🙀",
		Category: "people",
	},
	"scroll": Emoji{
		Keywords: []string{"documents", "ancient", "history", "paper"},
		Char:     "📜",
		Category: "objects",
	},
	"seat": Emoji{
		Keywords: []string{"sit", "airplane", "transport", "bus", "flight", "fly"},
		Char:     "💺",
		Category: "travel_and_places",
	},
	"secret": Emoji{
		Keywords: []string{"privacy", "chinese", "sshh", "kanji", "red-circle"},
		Char:     "㊙️",
		Category: "symbols",
	},
	"see_no_evil": Emoji{
		Keywords: []string{"monkey", "animal", "nature", "haha"},
		Char:     "🙈",
		Category: "animals_and_nature",
	},
	"seedling": Emoji{
		Keywords: []string{"plant", "nature", "grass", "lawn", "spring"},
		Char:     "🌱",
		Category: "animals_and_nature",
	},
	"selfie": Emoji{
		Keywords: []string{"camera", "phone"},
		Char:     "🤳",
		Category: "people",
	},
	"senegal": Emoji{
		Keywords: []string{"sn", "flag", "nation", "country", "banner"},
		Char:     "🇸🇳",
		Category: "flags",
	},
	"serbia": Emoji{
		Keywords: []string{"rs", "flag", "nation", "country", "banner"},
		Char:     "🇷🇸",
		Category: "flags",
	},
	"seven": Emoji{
		Keywords: []string{"7", "numbers", "blue-square", "prime"},
		Char:     "7️⃣",
		Category: "symbols",
	},
	"seychelles": Emoji{
		Keywords: []string{"sc", "flag", "nation", "country", "banner"},
		Char:     "🇸🇨",
		Category: "flags",
	},
	"shallow_pan_of_food": Emoji{
		Keywords: []string{"food", "cooking", "casserole", "paella"},
		Char:     "🥘",
		Category: "food_and_drink",
	},
	"shamrock": Emoji{
		Keywords: []string{"vegetable", "plant", "nature", "irish", "clover"},
		Char:     "☘",
		Category: "animals_and_nature",
	},
	"shark": Emoji{
		Keywords: []string{"animal", "nature", "fish", "sea", "ocean", "jaws", "fins", "beach"},
		Char:     "🦈",
		Category: "animals_and_nature",
	},
	"shaved_ice": Emoji{
		Keywords: []string{"hot", "dessert", "summer"},
		Char:     "🍧",
		Category: "food_and_drink",
	},
	"sheep": Emoji{
		Keywords: []string{"animal", "nature", "wool", "shipit"},
		Char:     "🐑",
		Category: "animals_and_nature",
	},
	"shell": Emoji{
		Keywords: []string{"nature", "sea", "beach"},
		Char:     "🐚",
		Category: "animals_and_nature",
	},
	"shield": Emoji{
		Keywords: []string{"protection", "security"},
		Char:     "🛡",
		Category: "objects",
	},
	"shinto_shrine": Emoji{
		Keywords: []string{"temple", "japan", "kyoto"},
		Char:     "⛩",
		Category: "travel_and_places",
	},
	"ship": Emoji{
		Keywords: []string{"transportation", "titanic", "deploy"},
		Char:     "🚢",
		Category: "travel_and_places",
	},
	"shopping": Emoji{
		Keywords: []string{"mall", "buy", "purchase"},
		Char:     "🛍",
		Category: "objects",
	},
	"shopping_cart": Emoji{
		Keywords: []string{"trolley"},
		Char:     "🛒",
		Category: "objects",
	},
	"shower": Emoji{
		Keywords: []string{"clean", "water", "bathroom"},
		Char:     "🚿",
		Category: "objects",
	},
	"shrimp": Emoji{
		Keywords: []string{"animal", "ocean", "nature", "seafood"},
		Char:     "🦐",
		Category: "animals_and_nature",
	},
	"shushing": Emoji{
		Keywords: []string{"face", "quiet", "shhh"},
		Char:     "🤫",
		Category: "people",
	},
	"sierra_leone": Emoji{
		Keywords: []string{"sierra", "leone", "flag", "nation", "country", "banner"},
		Char:     "🇸🇱",
		Category: "flags",
	},
	"signal_strength": Emoji{
		Keywords: []string{"blue-square", "reception", "phone", "internet", "connection", "wifi", "bluetooth", "bars"},
		Char:     "📶",
		Category: "symbols",
	},
	"singapore": Emoji{
		Keywords: []string{"sg", "flag", "nation", "country", "banner"},
		Char:     "🇸🇬",
		Category: "flags",
	},
	"sint_maarten": Emoji{
		Keywords: []string{"sint", "maarten", "dutch", "flag", "nation", "country", "banner"},
		Char:     "🇸🇽",
		Category: "flags",
	},
	"six": Emoji{
		Keywords: []string{"6", "numbers", "blue-square"},
		Char:     "6️⃣",
		Category: "symbols",
	},
	"six_pointed_star": Emoji{
		Keywords: []string{"purple-square", "religion", "jewish", "hexagram"},
		Char:     "🔯",
		Category: "symbols",
	},
	"ski": Emoji{
		Keywords: []string{"sports", "winter", "cold", "snow"},
		Char:     "🎿",
		Category: "activity",
	},
	"skier": Emoji{
		Keywords: []string{"sports", "winter", "snow"},
		Char:     "⛷",
		Category: "activity",
	},
	"skull": Emoji{
		Keywords: []string{"dead", "skeleton", "creepy", "death"},
		Char:     "💀",
		Category: "people",
	},
	"skull_and_crossbones": Emoji{
		Keywords: []string{"poison", "danger", "deadly", "scary", "death", "pirate", "evil"},
		Char:     "☠",
		Category: "objects",
	},
	"sled": Emoji{
		Keywords: []string{"sleigh", "luge", "toboggan"},
		Char:     "🛷",
		Category: "activity",
	},
	"sleeping": Emoji{
		Keywords: []string{"face", "tired", "sleepy", "night", "zzz"},
		Char:     "😴",
		Category: "people",
	},
	"sleeping_bed": Emoji{
		Keywords: []string{"bed", "rest"},
		Char:     "🛌",
		Category: "objects",
	},
	"sleepy": Emoji{
		Keywords: []string{"face", "tired", "rest", "nap"},
		Char:     "😪",
		Category: "people",
	},
	"slightly_frowning_face": Emoji{
		Keywords: []string{"face", "frowning", "disappointed", "sad", "upset"},
		Char:     "🙁",
		Category: "people",
	},
	"slightly_smiling_face": Emoji{
		Keywords: []string{"face", "smile"},
		Char:     "🙂",
		Category: "people",
	},
	"slot_machine": Emoji{
		Keywords: []string{"bet", "gamble", "vegas", "fruit machine", "luck", "casino"},
		Char:     "🎰",
		Category: "activity",
	},
	"slovakia": Emoji{
		Keywords: []string{"sk", "flag", "nation", "country", "banner"},
		Char:     "🇸🇰",
		Category: "flags",
	},
	"slovenia": Emoji{
		Keywords: []string{"si", "flag", "nation", "country", "banner"},
		Char:     "🇸🇮",
		Category: "flags",
	},
	"small_airplane": Emoji{
		Keywords: []string{"flight", "transportation", "fly", "vehicle"},
		Char:     "🛩",
		Category: "travel_and_places",
	},
	"small_blue_diamond": Emoji{
		Keywords: []string{"shape", "jewel", "gem"},
		Char:     "🔹",
		Category: "symbols",
	},
	"small_orange_diamond": Emoji{
		Keywords: []string{"shape", "jewel", "gem"},
		Char:     "🔸",
		Category: "symbols",
	},
	"small_red_triangle": Emoji{
		Keywords: []string{"shape", "direction", "up", "top"},
		Char:     "🔺",
		Category: "symbols",
	},
	"small_red_triangle_down": Emoji{
		Keywords: []string{"shape", "direction", "bottom"},
		Char:     "🔻",
		Category: "symbols",
	},
	"smile": Emoji{
		Keywords: []string{"face", "happy", "joy", "funny", "haha", "laugh", "like", ":D", ":)"},
		Char:     "😄",
		Category: "people",
	},
	"smile_cat": Emoji{
		Keywords: []string{"animal", "cats", "smile"},
		Char:     "😸",
		Category: "people",
	},
	"smiley": Emoji{
		Keywords: []string{"face", "happy", "joy", "haha", ":D", ":)", "smile", "funny"},
		Char:     "😃",
		Category: "people",
	},
	"smiley_cat": Emoji{
		Keywords: []string{"animal", "cats", "happy", "smile"},
		Char:     "😺",
		Category: "people",
	},
	"smiling_imp": Emoji{
		Keywords: []string{"devil", "horns"},
		Char:     "😈",
		Category: "people",
	},
	"smirk": Emoji{
		Keywords: []string{"face", "smile", "mean", "prank", "smug", "sarcasm"},
		Char:     "😏",
		Category: "people",
	},
	"smirk_cat": Emoji{
		Keywords: []string{"animal", "cats", "smirk"},
		Char:     "😼",
		Category: "people",
	},
	"smoking": Emoji{
		Keywords: []string{"kills", "tobacco", "cigarette", "joint", "smoke"},
		Char:     "🚬",
		Category: "objects",
	},
	"snail": Emoji{
		Keywords: []string{"slow", "animal", "shell"},
		Char:     "🐌",
		Category: "animals_and_nature",
	},
	"snake": Emoji{
		Keywords: []string{"animal", "evil", "nature", "hiss", "python"},
		Char:     "🐍",
		Category: "animals_and_nature",
	},
	"sneezing_face": Emoji{
		Keywords: []string{"face", "gesundheit", "sneeze", "sick", "allergy"},
		Char:     "🤧",
		Category: "people",
	},
	"snowboarder": Emoji{
		Keywords: []string{"sports", "winter"},
		Char:     "🏂",
		Category: "activity",
	},
	"snowflake": Emoji{
		Keywords: []string{"winter", "season", "cold", "weather", "christmas", "xmas"},
		Char:     "❄️",
		Category: "animals_and_nature",
	},
	"snowman": Emoji{
		Keywords: []string{"winter", "season", "cold", "weather", "christmas", "xmas", "frozen", "without_snow"},
		Char:     "⛄",
		Category: "animals_and_nature",
	},
	"snowman_with_snow": Emoji{
		Keywords: []string{"winter", "season", "cold", "weather", "christmas", "xmas", "frozen"},
		Char:     "☃",
		Category: "animals_and_nature",
	},
	"sob": Emoji{
		Keywords: []string{"face", "cry", "tears", "sad", "upset", "depressed"},
		Char:     "😭",
		Category: "people",
	},
	"soccer": Emoji{
		Keywords: []string{"sports", "football"},
		Char:     "⚽",
		Category: "activity",
	},
	"socks": Emoji{
		Keywords: []string{"stockings", "clothes"},
		Char:     "🧦",
		Category: "people",
	},
	"solomon_islands": Emoji{
		Keywords: []string{"solomon", "islands", "flag", "nation", "country", "banner"},
		Char:     "🇸🇧",
		Category: "flags",
	},
	"somalia": Emoji{
		Keywords: []string{"so", "flag", "nation", "country", "banner"},
		Char:     "🇸🇴",
		Category: "flags",
	},
	"soon": Emoji{
		Keywords: []string{"arrow", "words"},
		Char:     "🔜",
		Category: "symbols",
	},
	"sorceress": Emoji{
		Keywords: []string{"woman", "female", "mage", "witch"},
		Char:     "🧙‍♀️",
		Category: "people",
	},
	"sos": Emoji{
		Keywords: []string{"help", "red-square", "words", "emergency", "911"},
		Char:     "🆘",
		Category: "symbols",
	},
	"sound": Emoji{
		Keywords: []string{"volume", "speaker", "broadcast"},
		Char:     "🔉",
		Category: "symbols",
	},
	"south_africa": Emoji{
		Keywords: []string{"south", "africa", "flag", "nation", "country", "banner"},
		Char:     "🇿🇦",
		Category: "flags",
	},
	"south_georgia_south_sandwich_islands": Emoji{
		Keywords: []string{"south", "georgia", "sandwich", "islands", "flag", "nation", "country", "banner"},
		Char:     "🇬🇸",
		Category: "flags",
	},
	"south_sudan": Emoji{
		Keywords: []string{"south", "sd", "flag", "nation", "country", "banner"},
		Char:     "🇸🇸",
		Category: "flags",
	},
	"space_invader": Emoji{
		Keywords: []string{"game", "arcade", "play"},
		Char:     "👾",
		Category: "activity",
	},
	"spades": Emoji{
		Keywords: []string{"poker", "cards", "suits", "magic"},
		Char:     "♠️",
		Category: "symbols",
	},
	"spaghetti": Emoji{
		Keywords: []string{"food", "italian", "noodle"},
		Char:     "🍝",
		Category: "food_and_drink",
	},
	"sparkle": Emoji{
		Keywords: []string{"stars", "green-square", "awesome", "good", "fireworks"},
		Char:     "❇️",
		Category: "symbols",
	},
	"sparkler": Emoji{
		Keywords: []string{"stars", "night", "shine"},
		Char:     "🎇",
		Category: "travel_and_places",
	},
	"sparkles": Emoji{
		Keywords: []string{"stars", "shine", "shiny", "cool", "awesome", "good", "magic"},
		Char:     "✨",
		Category: "animals_and_nature",
	},
	"sparkling_heart": Emoji{
		Keywords: []string{"love", "like", "affection", "valentines"},
		Char:     "💖",
		Category: "symbols",
	},
	"speak_no_evil": Emoji{
		Keywords: []string{"monkey", "animal", "nature", "omg"},
		Char:     "🙊",
		Category: "animals_and_nature",
	},
	"speaker": Emoji{
		Keywords: []string{"sound", "volume", "silence", "broadcast"},
		Char:     "🔈",
		Category: "symbols",
	},
	"speaking_head": Emoji{
		Keywords: []string{"user", "person", "human", "sing", "say", "talk"},
		Char:     "🗣",
		Category: "people",
	},
	"speech_balloon": Emoji{
		Keywords: []string{"bubble", "words", "message", "talk", "chatting"},
		Char:     "💬",
		Category: "symbols",
	},
	"speedboat": Emoji{
		Keywords: []string{"ship", "transportation", "vehicle", "summer"},
		Char:     "🚤",
		Category: "travel_and_places",
	},
	"spider": Emoji{
		Keywords: []string{"animal", "arachnid"},
		Char:     "🕷",
		Category: "animals_and_nature",
	},
	"spider_web": Emoji{
		Keywords: []string{"animal", "insect", "arachnid", "silk"},
		Char:     "🕸",
		Category: "animals_and_nature",
	},
	"spiral_calendar": Emoji{
		Keywords: []string{"date", "schedule", "planning"},
		Char:     "🗓",
		Category: "objects",
	},
	"spiral_notepad": Emoji{
		Keywords: []string{"memo", "stationery"},
		Char:     "🗒",
		Category: "objects",
	},
	"spoon": Emoji{
		Keywords: []string{"cutlery", "kitchen", "tableware"},
		Char:     "🥄",
		Category: "food_and_drink",
	},
	"squid": Emoji{
		Keywords: []string{"animal", "nature", "ocean", "sea"},
		Char:     "🦑",
		Category: "animals_and_nature",
	},
	"sri_lanka": Emoji{
		Keywords: []string{"sri", "lanka", "flag", "nation", "country", "banner"},
		Char:     "🇱🇰",
		Category: "flags",
	},
	"st_barthelemy": Emoji{
		Keywords: []string{"saint", "barthélemy", "flag", "nation", "country", "banner"},
		Char:     "🇧🇱",
		Category: "flags",
	},
	"st_helena": Emoji{
		Keywords: []string{"saint", "helena", "ascension", "tristan", "cunha", "flag", "nation", "country", "banner"},
		Char:     "🇸🇭",
		Category: "flags",
	},
	"st_kitts_nevis": Emoji{
		Keywords: []string{"saint", "kitts", "nevis", "flag", "nation", "country", "banner"},
		Char:     "🇰🇳",
		Category: "flags",
	},
	"st_lucia": Emoji{
		Keywords: []string{"saint", "lucia", "flag", "nation", "country", "banner"},
		Char:     "🇱🇨",
		Category: "flags",
	},
	"st_pierre_miquelon": Emoji{
		Keywords: []string{"saint", "pierre", "miquelon", "flag", "nation", "country", "banner"},
		Char:     "🇵🇲",
		Category: "flags",
	},
	"st_vincent_grenadines": Emoji{
		Keywords: []string{"saint", "vincent", "grenadines", "flag", "nation", "country", "banner"},
		Char:     "🇻🇨",
		Category: "flags",
	},
	"stadium": Emoji{
		Keywords: []string{"photo", "place", "sports", "concert", "venue"},
		Char:     "🏟",
		Category: "travel_and_places",
	},
	"star": Emoji{
		Keywords: []string{"night", "yellow"},
		Char:     "⭐",
		Category: "animals_and_nature",
	},
	"star2": Emoji{
		Keywords: []string{"night", "sparkle", "awesome", "good", "magic"},
		Char:     "🌟",
		Category: "animals_and_nature",
	},
	"star_and_crescent": Emoji{
		Keywords: []string{"islam"},
		Char:     "☪",
		Category: "symbols",
	},
	"star_of_david": Emoji{
		Keywords: []string{"judaism"},
		Char:     "✡",
		Category: "symbols",
	},
	"star_struck": Emoji{
		Keywords: []string{"face", "smile", "starry", "eyes", "grinning"},
		Char:     "🤩",
		Category: "people",
	},
	"stars": Emoji{
		Keywords: []string{"night", "photo"},
		Char:     "🌠",
		Category: "travel_and_places",
	},
	"station": Emoji{
		Keywords: []string{"transportation", "vehicle", "public"},
		Char:     "🚉",
		Category: "travel_and_places",
	},
	"statue_of_liberty": Emoji{
		Keywords: []string{"american", "newyork"},
		Char:     "🗽",
		Category: "travel_and_places",
	},
	"steak": Emoji{
		Keywords: []string{"food", "cow", "meat", "cut", "chop", "lambchop", "porkchop"},
		Char:     "🥩",
		Category: "food_and_drink",
	},
	"steam_locomotive": Emoji{
		Keywords: []string{"transportation", "vehicle", "train"},
		Char:     "🚂",
		Category: "travel_and_places",
	},
	"stew": Emoji{
		Keywords: []string{"food", "meat", "soup"},
		Char:     "🍲",
		Category: "food_and_drink",
	},
	"stop_button": Emoji{
		Keywords: []string{"blue-square"},
		Char:     "⏹",
		Category: "symbols",
	},
	"stop_sign": Emoji{
		Keywords: []string{"stop"},
		Char:     "🛑",
		Category: "symbols",
	},
	"stopwatch": Emoji{
		Keywords: []string{"time", "deadline"},
		Char:     "⏱",
		Category: "objects",
	},
	"straight_ruler": Emoji{
		Keywords: []string{"stationery", "calculate", "length", "math", "school", "drawing", "architect", "sketch"},
		Char:     "📏",
		Category: "objects",
	},
	"strawberry": Emoji{
		Keywords: []string{"fruit", "food", "nature"},
		Char:     "🍓",
		Category: "food_and_drink",
	},
	"stuck_out_tongue": Emoji{
		Keywords: []string{"face", "prank", "childish", "playful", "mischievous", "smile", "tongue"},
		Char:     "😛",
		Category: "people",
	},
	"stuck_out_tongue_closed_eyes": Emoji{
		Keywords: []string{"face", "prank", "playful", "mischievous", "smile", "tongue"},
		Char:     "😝",
		Category: "people",
	},
	"stuck_out_tongue_winking_eye": Emoji{
		Keywords: []string{"face", "prank", "childish", "playful", "mischievous", "smile", "wink", "tongue"},
		Char:     "😜",
		Category: "people",
	},
	"studio_microphone": Emoji{
		Keywords: []string{"sing", "recording", "artist", "talkshow"},
		Char:     "🎙",
		Category: "objects",
	},
	"stuffed_flatbread": Emoji{
		Keywords: []string{"food", "flatbread", "stuffed", "gyro"},
		Char:     "🥙",
		Category: "food_and_drink",
	},
	"sudan": Emoji{
		Keywords: []string{"sd", "flag", "nation", "country", "banner"},
		Char:     "🇸🇩",
		Category: "flags",
	},
	"sun_behind_large_cloud": Emoji{
		Keywords: []string{"weather"},
		Char:     "🌥",
		Category: "animals_and_nature",
	},
	"sun_behind_rain_cloud": Emoji{
		Keywords: []string{"weather"},
		Char:     "🌦",
		Category: "animals_and_nature",
	},
	"sun_behind_small_cloud": Emoji{
		Keywords: []string{"weather"},
		Char:     "🌤",
		Category: "animals_and_nature",
	},
	"sun_with_face": Emoji{
		Keywords: []string{"nature", "morning", "sky"},
		Char:     "🌞",
		Category: "animals_and_nature",
	},
	"sunflower": Emoji{
		Keywords: []string{"nature", "plant", "fall"},
		Char:     "🌻",
		Category: "animals_and_nature",
	},
	"sunglasses": Emoji{
		Keywords: []string{"face", "cool", "smile", "summer", "beach", "sunglass"},
		Char:     "😎",
		Category: "people",
	},
	"sunny": Emoji{
		Keywords: []string{"weather", "nature", "brightness", "summer", "beach", "spring"},
		Char:     "☀️",
		Category: "animals_and_nature",
	},
	"sunrise": Emoji{
		Keywords: []string{"morning", "view", "vacation", "photo"},
		Char:     "🌅",
		Category: "travel_and_places",
	},
	"sunrise_over_mountains": Emoji{
		Keywords: []string{"view", "vacation", "photo"},
		Char:     "🌄",
		Category: "travel_and_places",
	},
	"surfing_man": Emoji{
		Keywords: []string{"sports", "ocean", "sea", "summer", "beach"},
		Char:     "🏄",
		Category: "activity",
	},
	"surfing_woman": Emoji{
		Keywords: []string{"sports", "ocean", "sea", "summer", "beach", "woman", "female"},
		Char:     "🏄‍♀️",
		Category: "activity",
	},
	"suriname": Emoji{
		Keywords: []string{"sr", "flag", "nation", "country", "banner"},
		Char:     "🇸🇷",
		Category: "flags",
	},
	"sushi": Emoji{
		Keywords: []string{"food", "fish", "japanese", "rice"},
		Char:     "🍣",
		Category: "food_and_drink",
	},
	"suspension_railway": Emoji{
		Keywords: []string{"vehicle", "transportation"},
		Char:     "🚟",
		Category: "travel_and_places",
	},
	"swaziland": Emoji{
		Keywords: []string{"sz", "flag", "nation", "country", "banner"},
		Char:     "🇸🇿",
		Category: "flags",
	},
	"sweat": Emoji{
		Keywords: []string{"face", "hot", "sad", "tired", "exercise"},
		Char:     "😓",
		Category: "people",
	},
	"sweat_drops": Emoji{
		Keywords: []string{"water", "drip", "oops"},
		Char:     "💦",
		Category: "animals_and_nature",
	},
	"sweat_smile": Emoji{
		Keywords: []string{"face", "hot", "happy", "laugh", "sweat", "smile", "relief"},
		Char:     "😅",
		Category: "people",
	},
	"sweden": Emoji{
		Keywords: []string{"se", "flag", "nation", "country", "banner"},
		Char:     "🇸🇪",
		Category: "flags",
	},
	"sweet_potato": Emoji{
		Keywords: []string{"food", "nature"},
		Char:     "🍠",
		Category: "food_and_drink",
	},
	"swimming_man": Emoji{
		Keywords: []string{"sports", "exercise", "human", "athlete", "water", "summer"},
		Char:     "🏊",
		Category: "activity",
	},
	"swimming_woman": Emoji{
		Keywords: []string{"sports", "exercise", "human", "athlete", "water", "summer", "woman", "female"},
		Char:     "🏊‍♀️",
		Category: "activity",
	},
	"switzerland": Emoji{
		Keywords: []string{"ch", "flag", "nation", "country", "banner"},
		Char:     "🇨🇭",
		Category: "flags",
	},
	"symbols": Emoji{
		Keywords: []string{"blue-square", "music", "note", "ampersand", "percent", "glyphs", "characters"},
		Char:     "🔣",
		Category: "symbols",
	},
	"symbols_over_mouth": Emoji{
		Keywords: []string{"face", "swearing", "cursing", "cussing", "profanity", "expletive"},
		Char:     "🤬",
		Category: "people",
	},
	"synagogue": Emoji{
		Keywords: []string{"judaism", "worship", "temple", "jewish"},
		Char:     "🕍",
		Category: "travel_and_places",
	},
	"syria": Emoji{
		Keywords: []string{"syrian", "arab", "republic", "flag", "nation", "country", "banner"},
		Char:     "🇸🇾",
		Category: "flags",
	},
	"syringe": Emoji{
		Keywords: []string{"health", "hospital", "drugs", "blood", "medicine", "needle", "doctor", "nurse"},
		Char:     "💉",
		Category: "objects",
	},
	"t-rex": Emoji{
		Keywords: []string{"animal", "nature", "dinosaur", "tyrannosaurus", "extinct"},
		Char:     "🦖",
		Category: "animals_and_nature",
	},
	"taco": Emoji{
		Keywords: []string{"food", "mexican"},
		Char:     "🌮",
		Category: "food_and_drink",
	},
	"tada": Emoji{
		Keywords: []string{"party", "congratulations", "birthday", "magic", "circus", "celebration"},
		Char:     "🎉",
		Category: "objects",
	},
	"taiwan": Emoji{
		Keywords: []string{"tw", "flag", "nation", "country", "banner"},
		Char:     "🇹🇼",
		Category: "flags",
	},
	"tajikistan": Emoji{
		Keywords: []string{"tj", "flag", "nation", "country", "banner"},
		Char:     "🇹🇯",
		Category: "flags",
	},
	"takeout_box": Emoji{
		Keywords: []string{"food", "leftovers"},
		Char:     "🥡",
		Category: "food_and_drink",
	},
	"tanabata_tree": Emoji{
		Keywords: []string{"plant", "nature", "branch", "summer"},
		Char:     "🎋",
		Category: "animals_and_nature",
	},
	"tangerine": Emoji{
		Keywords: []string{"food", "fruit", "nature", "orange"},
		Char:     "🍊",
		Category: "food_and_drink",
	},
	"tanzania": Emoji{
		Keywords: []string{"tanzania,", "united", "republic", "flag", "nation", "country", "banner"},
		Char:     "🇹🇿",
		Category: "flags",
	},
	"taurus": Emoji{
		Keywords: []string{"purple-square", "sign", "zodiac", "astrology"},
		Char:     "♉",
		Category: "symbols",
	},
	"taxi": Emoji{
		Keywords: []string{"uber", "vehicle", "cars", "transportation"},
		Char:     "🚕",
		Category: "travel_and_places",
	},
	"tea": Emoji{
		Keywords: []string{"drink", "bowl", "breakfast", "green", "british"},
		Char:     "🍵",
		Category: "food_and_drink",
	},
	"telephone_receiver": Emoji{
		Keywords: []string{"technology", "communication", "dial"},
		Char:     "📞",
		Category: "objects",
	},
	"telescope": Emoji{
		Keywords: []string{"stars", "space", "zoom", "science", "astronomy"},
		Char:     "🔭",
		Category: "objects",
	},
	"tennis": Emoji{
		Keywords: []string{"sports", "balls", "green"},
		Char:     "🎾",
		Category: "activity",
	},
	"tent": Emoji{
		Keywords: []string{"photo", "camping", "outdoors"},
		Char:     "⛺",
		Category: "travel_and_places",
	},
	"thailand": Emoji{
		Keywords: []string{"th", "flag", "nation", "country", "banner"},
		Char:     "🇹🇭",
		Category: "flags",
	},
	"thermometer": Emoji{
		Keywords: []string{"weather", "temperature", "hot", "cold"},
		Char:     "🌡",
		Category: "objects",
	},
	"thinking": Emoji{
		Keywords: []string{"face", "hmmm", "think", "consider"},
		Char:     "🤔",
		Category: "people",
	},
	"thought_balloon": Emoji{
		Keywords: []string{"bubble", "cloud", "speech", "thinking", "dream"},
		Char:     "💭",
		Category: "symbols",
	},
	"three": Emoji{
		Keywords: []string{"3", "numbers", "prime", "blue-square"},
		Char:     "3️⃣",
		Category: "symbols",
	},
	"ticket": Emoji{
		Keywords: []string{"event", "concert", "pass"},
		Char:     "🎫",
		Category: "activity",
	},
	"tickets": Emoji{
		Keywords: []string{"sports", "concert", "entrance"},
		Char:     "🎟",
		Category: "activity",
	},
	"tiger": Emoji{
		Keywords: []string{"animal", "cat", "danger", "wild", "nature", "roar"},
		Char:     "🐯",
		Category: "animals_and_nature",
	},
	"tiger2": Emoji{
		Keywords: []string{"animal", "nature", "roar"},
		Char:     "🐅",
		Category: "animals_and_nature",
	},
	"timer_clock": Emoji{
		Keywords: []string{"alarm"},
		Char:     "⏲",
		Category: "objects",
	},
	"timor_leste": Emoji{
		Keywords: []string{"timor", "leste", "flag", "nation", "country", "banner"},
		Char:     "🇹🇱",
		Category: "flags",
	},
	"tipping_hand_man": Emoji{
		Keywords: []string{"male", "boy", "man", "human", "information"},
		Char:     "💁‍♂️",
		Category: "people",
	},
	"tipping_hand_woman": Emoji{
		Keywords: []string{"female", "girl", "woman", "human", "information"},
		Char:     "💁",
		Category: "people",
	},
	"tired_face": Emoji{
		Keywords: []string{"sick", "whine", "upset", "frustrated"},
		Char:     "😫",
		Category: "people",
	},
	"tm": Emoji{
		Keywords: []string{"trademark", "brand", "law", "legal"},
		Char:     "™️",
		Category: "symbols",
	},
	"togo": Emoji{
		Keywords: []string{"tg", "flag", "nation", "country", "banner"},
		Char:     "🇹🇬",
		Category: "flags",
	},
	"toilet": Emoji{
		Keywords: []string{"restroom", "wc", "washroom", "bathroom", "potty"},
		Char:     "🚽",
		Category: "objects",
	},
	"tokelau": Emoji{
		Keywords: []string{"tk", "flag", "nation", "country", "banner"},
		Char:     "🇹🇰",
		Category: "flags",
	},
	"tokyo_tower": Emoji{
		Keywords: []string{"photo", "japanese"},
		Char:     "🗼",
		Category: "travel_and_places",
	},
	"tomato": Emoji{
		Keywords: []string{"fruit", "vegetable", "nature", "food"},
		Char:     "🍅",
		Category: "food_and_drink",
	},
	"tonga": Emoji{
		Keywords: []string{"to", "flag", "nation", "country", "banner"},
		Char:     "🇹🇴",
		Category: "flags",
	},
	"tongue": Emoji{
		Keywords: []string{"mouth", "playful"},
		Char:     "👅",
		Category: "people",
	},
	"top": Emoji{
		Keywords: []string{"words", "blue-square"},
		Char:     "🔝",
		Category: "symbols",
	},
	"tophat": Emoji{
		Keywords: []string{"magic", "gentleman", "classy", "circus"},
		Char:     "🎩",
		Category: "people",
	},
	"tornado": Emoji{
		Keywords: []string{"weather", "cyclone", "twister"},
		Char:     "🌪",
		Category: "animals_and_nature",
	},
	"tr": Emoji{
		Keywords: []string{"turkey", "flag", "nation", "country", "banner"},
		Char:     "🇹🇷",
		Category: "flags",
	},
	"trackball": Emoji{
		Keywords: []string{"technology", "trackpad"},
		Char:     "🖲",
		Category: "objects",
	},
	"tractor": Emoji{
		Keywords: []string{"vehicle", "car", "farming", "agriculture"},
		Char:     "🚜",
		Category: "travel_and_places",
	},
	"traffic_light": Emoji{
		Keywords: []string{"transportation", "signal"},
		Char:     "🚥",
		Category: "travel_and_places",
	},
	"train": Emoji{
		Keywords: []string{"transportation", "vehicle", "carriage", "public", "travel"},
		Char:     "🚋",
		Category: "travel_and_places",
	},
	"train2": Emoji{
		Keywords: []string{"transportation", "vehicle"},
		Char:     "🚆",
		Category: "travel_and_places",
	},
	"tram": Emoji{
		Keywords: []string{"transportation", "vehicle"},
		Char:     "🚊",
		Category: "travel_and_places",
	},
	"triangular_flag_on_post": Emoji{
		Keywords: []string{"mark", "milestone", "place"},
		Char:     "🚩",
		Category: "objects",
	},
	"triangular_ruler": Emoji{
		Keywords: []string{"stationery", "math", "architect", "sketch"},
		Char:     "📐",
		Category: "objects",
	},
	"trident": Emoji{
		Keywords: []string{"weapon", "spear"},
		Char:     "🔱",
		Category: "symbols",
	},
	"trinidad_tobago": Emoji{
		Keywords: []string{"trinidad", "tobago", "flag", "nation", "country", "banner"},
		Char:     "🇹🇹",
		Category: "flags",
	},
	"triumph": Emoji{
		Keywords: []string{"face", "gas", "phew", "proud", "pride"},
		Char:     "😤",
		Category: "people",
	},
	"trolleybus": Emoji{
		Keywords: []string{"bart", "transportation", "vehicle"},
		Char:     "🚎",
		Category: "travel_and_places",
	},
	"trophy": Emoji{
		Keywords: []string{"win", "award", "contest", "place", "ftw", "ceremony"},
		Char:     "🏆",
		Category: "activity",
	},
	"tropical_drink": Emoji{
		Keywords: []string{"beverage", "cocktail", "summer", "beach", "alcohol", "booze", "mojito"},
		Char:     "🍹",
		Category: "food_and_drink",
	},
	"tropical_fish": Emoji{
		Keywords: []string{"animal", "swim", "ocean", "beach", "nemo"},
		Char:     "🐠",
		Category: "animals_and_nature",
	},
	"truck": Emoji{
		Keywords: []string{"cars", "transportation"},
		Char:     "🚚",
		Category: "travel_and_places",
	},
	"trumpet": Emoji{
		Keywords: []string{"music", "brass"},
		Char:     "🎺",
		Category: "activity",
	},
	"tshirt": Emoji{
		Keywords: []string{"fashion", "cloth", "casual", "shirt", "tee"},
		Char:     "👕",
		Category: "people",
	},
	"tulip": Emoji{
		Keywords: []string{"flowers", "plant", "nature", "summer", "spring"},
		Char:     "🌷",
		Category: "animals_and_nature",
	},
	"tumbler_glass": Emoji{
		Keywords: []string{"drink", "beverage", "drunk", "alcohol", "liquor", "booze", "bourbon", "scotch", "whisky", "glass", "shot"},
		Char:     "🥃",
		Category: "food_and_drink",
	},
	"tunisia": Emoji{
		Keywords: []string{"tn", "flag", "nation", "country", "banner"},
		Char:     "🇹🇳",
		Category: "flags",
	},
	"turkey": Emoji{
		Keywords: []string{"animal", "bird"},
		Char:     "🦃",
		Category: "animals_and_nature",
	},
	"turkmenistan": Emoji{
		Keywords: []string{"flag", "nation", "country", "banner"},
		Char:     "🇹🇲",
		Category: "flags",
	},
	"turks_caicos_islands": Emoji{
		Keywords: []string{"turks", "caicos", "islands", "flag", "nation", "country", "banner"},
		Char:     "🇹🇨",
		Category: "flags",
	},
	"turtle": Emoji{
		Keywords: []string{"animal", "slow", "nature", "tortoise"},
		Char:     "🐢",
		Category: "animals_and_nature",
	},
	"tuvalu": Emoji{
		Keywords: []string{"flag", "nation", "country", "banner"},
		Char:     "🇹🇻",
		Category: "flags",
	},
	"tv": Emoji{
		Keywords: []string{"technology", "program", "oldschool", "show", "television"},
		Char:     "📺",
		Category: "objects",
	},
	"twisted_rightwards_arrows": Emoji{
		Keywords: []string{"blue-square", "shuffle", "music", "random"},
		Char:     "🔀",
		Category: "symbols",
	},
	"two": Emoji{
		Keywords: []string{"numbers", "2", "prime", "blue-square"},
		Char:     "2️⃣",
		Category: "symbols",
	},
	"two_hearts": Emoji{
		Keywords: []string{"love", "like", "affection", "valentines", "heart"},
		Char:     "💕",
		Category: "symbols",
	},
	"two_men_holding_hands": Emoji{
		Keywords: []string{"pair", "couple", "love", "like", "bromance", "friendship", "people", "human"},
		Char:     "👬",
		Category: "people",
	},
	"two_women_holding_hands": Emoji{
		Keywords: []string{"pair", "friendship", "couple", "love", "like", "female", "people", "human"},
		Char:     "👭",
		Category: "people",
	},
	"u5272": Emoji{
		Keywords: []string{"cut", "divide", "chinese", "kanji", "pink-square"},
		Char:     "🈹",
		Category: "symbols",
	},
	"u5408": Emoji{
		Keywords: []string{"japanese", "chinese", "join", "kanji", "red-square"},
		Char:     "🈴",
		Category: "symbols",
	},
	"u55b6": Emoji{
		Keywords: []string{"japanese", "opening hours", "orange-square"},
		Char:     "🈺",
		Category: "symbols",
	},
	"u6307": Emoji{
		Keywords: []string{"chinese", "point", "green-square", "kanji"},
		Char:     "🈯",
		Category: "symbols",
	},
	"u6708": Emoji{
		Keywords: []string{"chinese", "month", "moon", "japanese", "orange-square", "kanji"},
		Char:     "🈷️",
		Category: "symbols",
	},
	"u6709": Emoji{
		Keywords: []string{"orange-square", "chinese", "have", "kanji"},
		Char:     "🈶",
		Category: "symbols",
	},
	"u6e80": Emoji{
		Keywords: []string{"full", "chinese", "japanese", "red-square", "kanji"},
		Char:     "🈵",
		Category: "symbols",
	},
	"u7121": Emoji{
		Keywords: []string{"nothing", "chinese", "kanji", "japanese", "orange-square"},
		Char:     "🈚",
		Category: "symbols",
	},
	"u7533": Emoji{
		Keywords: []string{"chinese", "japanese", "kanji", "orange-square"},
		Char:     "🈸",
		Category: "symbols",
	},
	"u7981": Emoji{
		Keywords: []string{"kanji", "japanese", "chinese", "forbidden", "limit", "restricted", "red-square"},
		Char:     "🈲",
		Category: "symbols",
	},
	"u7a7a": Emoji{
		Keywords: []string{"kanji", "japanese", "chinese", "empty", "sky", "blue-square"},
		Char:     "🈳",
		Category: "symbols",
	},
	"uganda": Emoji{
		Keywords: []string{"ug", "flag", "nation", "country", "banner"},
		Char:     "🇺🇬",
		Category: "flags",
	},
	"uk": Emoji{
		Keywords: []string{"united", "kingdom", "great", "britain", "northern", "ireland", "flag", "nation", "country", "banner", "british", "UK", "english", "england", "union jack"},
		Char:     "🇬🇧",
		Category: "flags",
	},
	"ukraine": Emoji{
		Keywords: []string{"ua", "flag", "nation", "country", "banner"},
		Char:     "🇺🇦",
		Category: "flags",
	},
	"umbrella": Emoji{
		Keywords: []string{"rainy", "weather", "spring"},
		Char:     "☔",
		Category: "animals_and_nature",
	},
	"unamused": Emoji{
		Keywords: []string{"indifference", "bored", "straight face", "serious", "sarcasm", "unimpressed", "skeptical", "dubious", "side_eye"},
		Char:     "😒",
		Category: "people",
	},
	"underage": Emoji{
		Keywords: []string{"18", "drink", "pub", "night", "minor", "circle"},
		Char:     "🔞",
		Category: "symbols",
	},
	"unicorn": Emoji{
		Keywords: []string{"animal", "nature", "mystical"},
		Char:     "🦄",
		Category: "animals_and_nature",
	},
	"united_arab_emirates": Emoji{
		Keywords: []string{"united", "arab", "emirates", "flag", "nation", "country", "banner"},
		Char:     "🇦🇪",
		Category: "flags",
	},
	"unlock": Emoji{
		Keywords: []string{"privacy", "security"},
		Char:     "🔓",
		Category: "objects",
	},
	"up": Emoji{
		Keywords: []string{"blue-square", "above", "high"},
		Char:     "🆙",
		Category: "symbols",
	},
	"upside_down_face": Emoji{
		Keywords: []string{"face", "flipped", "silly", "smile"},
		Char:     "🙃",
		Category: "people",
	},
	"uruguay": Emoji{
		Keywords: []string{"uy", "flag", "nation", "country", "banner"},
		Char:     "🇺🇾",
		Category: "flags",
	},
	"us": Emoji{
		Keywords: []string{"united", "states", "america", "flag", "nation", "country", "banner"},
		Char:     "🇺🇸",
		Category: "flags",
	},
	"us_virgin_islands": Emoji{
		Keywords: []string{"virgin", "islands", "us", "flag", "nation", "country", "banner"},
		Char:     "🇻🇮",
		Category: "flags",
	},
	"uzbekistan": Emoji{
		Keywords: []string{"uz", "flag", "nation", "country", "banner"},
		Char:     "🇺🇿",
		Category: "flags",
	},
	"v": Emoji{
		Keywords: []string{"fingers", "ohyeah", "hand", "peace", "victory", "two"},
		Char:     "✌",
		Category: "people",
	},
	"vanuatu": Emoji{
		Keywords: []string{"vu", "flag", "nation", "country", "banner"},
		Char:     "🇻🇺",
		Category: "flags",
	},
	"vatican_city": Emoji{
		Keywords: []string{"vatican", "city", "flag", "nation", "country", "banner"},
		Char:     "🇻🇦",
		Category: "flags",
	},
	"venezuela": Emoji{
		Keywords: []string{"ve", "bolivarian", "republic", "flag", "nation", "country", "banner"},
		Char:     "🇻🇪",
		Category: "flags",
	},
	"vertical_traffic_light": Emoji{
		Keywords: []string{"transportation", "driving"},
		Char:     "🚦",
		Category: "travel_and_places",
	},
	"vhs": Emoji{
		Keywords: []string{"record", "video", "oldschool", "90s", "80s"},
		Char:     "📼",
		Category: "objects",
	},
	"vibration_mode": Emoji{
		Keywords: []string{"orange-square", "phone"},
		Char:     "📳",
		Category: "symbols",
	},
	"video_camera": Emoji{
		Keywords: []string{"film", "record"},
		Char:     "📹",
		Category: "objects",
	},
	"video_game": Emoji{
		Keywords: []string{"play", "console", "PS4", "controller"},
		Char:     "🎮",
		Category: "activity",
	},
	"vietnam": Emoji{
		Keywords: []string{"viet", "nam", "flag", "nation", "country", "banner"},
		Char:     "🇻🇳",
		Category: "flags",
	},
	"violin": Emoji{
		Keywords: []string{"music", "instrument", "orchestra", "symphony"},
		Char:     "🎻",
		Category: "activity",
	},
	"virgo": Emoji{
		Keywords: []string{"sign", "zodiac", "purple-square", "astrology"},
		Char:     "♍",
		Category: "symbols",
	},
	"volcano": Emoji{
		Keywords: []string{"photo", "nature", "disaster"},
		Char:     "🌋",
		Category: "travel_and_places",
	},
	"volleyball": Emoji{
		Keywords: []string{"sports", "balls"},
		Char:     "🏐",
		Category: "activity",
	},
	"vomiting": Emoji{
		Keywords: []string{"face", "sick"},
		Char:     "🤮",
		Category: "people",
	},
	"vs": Emoji{
		Keywords: []string{"words", "orange-square"},
		Char:     "🆚",
		Category: "symbols",
	},
	"vulcan_salute": Emoji{
		Keywords: []string{"hand", "fingers", "spock", "star trek"},
		Char:     "🖖",
		Category: "people",
	},
	"wales": Emoji{
		Keywords: []string{"flag", "welsh"},
		Char:     "🏴󠁧󠁢󠁷󠁬󠁳󠁿",
		Category: "flags",
	},
	"walking_man": Emoji{
		Keywords: []string{"human", "feet", "steps"},
		Char:     "🚶",
		Category: "people",
	},
	"walking_woman": Emoji{
		Keywords: []string{"human", "feet", "steps", "woman", "female"},
		Char:     "🚶‍♀️",
		Category: "people",
	},
	"wallis_futuna": Emoji{
		Keywords: []string{"wallis", "futuna", "flag", "nation", "country", "banner"},
		Char:     "🇼🇫",
		Category: "flags",
	},
	"waning_crescent_moon": Emoji{
		Keywords: []string{"nature", "twilight", "planet", "space", "night", "evening", "sleep"},
		Char:     "🌘",
		Category: "animals_and_nature",
	},
	"waning_gibbous_moon": Emoji{
		Keywords: []string{"nature", "twilight", "planet", "space", "night", "evening", "sleep", "waxing_gibbous_moon"},
		Char:     "🌖",
		Category: "animals_and_nature",
	},
	"warning": Emoji{
		Keywords: []string{"exclamation", "wip", "alert", "error", "problem", "issue"},
		Char:     "⚠️",
		Category: "symbols",
	},
	"wastebasket": Emoji{
		Keywords: []string{"bin", "trash", "rubbish", "garbage", "toss"},
		Char:     "🗑",
		Category: "objects",
	},
	"watch": Emoji{
		Keywords: []string{"time", "accessories"},
		Char:     "⌚",
		Category: "objects",
	},
	"water_buffalo": Emoji{
		Keywords: []string{"animal", "nature", "ox", "cow"},
		Char:     "🐃",
		Category: "animals_and_nature",
	},
	"watermelon": Emoji{
		Keywords: []string{"fruit", "food", "picnic", "summer"},
		Char:     "🍉",
		Category: "food_and_drink",
	},
	"wave": Emoji{
		Keywords: []string{"hands", "gesture", "goodbye", "solong", "farewell", "hello", "hi", "palm"},
		Char:     "👋",
		Category: "people",
	},
	"wavy_dash": Emoji{
		Keywords: []string{"draw", "line", "moustache", "mustache", "squiggle", "scribble"},
		Char:     "〰️",
		Category: "symbols",
	},
	"waxing_crescent_moon": Emoji{
		Keywords: []string{"nature", "twilight", "planet", "space", "night", "evening", "sleep"},
		Char:     "🌒",
		Category: "animals_and_nature",
	},
	"waxing_gibbous_moon": Emoji{
		Keywords: []string{"nature", "night", "sky", "gray", "twilight", "planet", "space", "evening", "sleep"},
		Char:     "🌔",
		Category: "animals_and_nature",
	},
	"wc": Emoji{
		Keywords: []string{"toilet", "restroom", "blue-square"},
		Char:     "🚾",
		Category: "symbols",
	},
	"weary": Emoji{
		Keywords: []string{"face", "tired", "sleepy", "sad", "frustrated", "upset"},
		Char:     "😩",
		Category: "people",
	},
	"wedding": Emoji{
		Keywords: []string{"love", "like", "affection", "couple", "marriage", "bride", "groom"},
		Char:     "💒",
		Category: "travel_and_places",
	},
	"weight_lifting_man": Emoji{
		Keywords: []string{"sports", "training", "exercise"},
		Char:     "🏋",
		Category: "activity",
	},
	"weight_lifting_woman": Emoji{
		Keywords: []string{"sports", "training", "exercise", "woman", "female"},
		Char:     "🏋️‍♀️",
		Category: "activity",
	},
	"western_sahara": Emoji{
		Keywords: []string{"western", "sahara", "flag", "nation", "country", "banner"},
		Char:     "🇪🇭",
		Category: "flags",
	},
	"whale": Emoji{
		Keywords: []string{"animal", "nature", "sea", "ocean"},
		Char:     "🐳",
		Category: "animals_and_nature",
	},
	"whale2": Emoji{
		Keywords: []string{"animal", "nature", "sea", "ocean"},
		Char:     "🐋",
		Category: "animals_and_nature",
	},
	"wheel_of_dharma": Emoji{
		Keywords: []string{"hinduism", "buddhism", "sikhism", "jainism"},
		Char:     "☸",
		Category: "symbols",
	},
	"wheelchair": Emoji{
		Keywords: []string{"blue-square", "disabled", "a11y", "accessibility"},
		Char:     "♿",
		Category: "symbols",
	},
	"white_check_mark": Emoji{
		Keywords: []string{"green-square", "ok", "agree", "vote", "election", "answer", "tick"},
		Char:     "✅",
		Category: "symbols",
	},
	"white_circle": Emoji{
		Keywords: []string{"shape", "round"},
		Char:     "⚪",
		Category: "symbols",
	},
	"white_flag": Emoji{
		Keywords: []string{"losing", "loser", "lost", "surrender", "give up", "fail"},
		Char:     "🏳",
		Category: "objects",
	},
	"white_flower": Emoji{
		Keywords: []string{"japanese", "spring"},
		Char:     "💮",
		Category: "symbols",
	},
	"white_large_square": Emoji{
		Keywords: []string{"shape", "icon", "stone", "button"},
		Char:     "⬜",
		Category: "symbols",
	},
	"white_medium_small_square": Emoji{
		Keywords: []string{"shape", "stone", "icon", "button"},
		Char:     "◽",
		Category: "symbols",
	},
	"white_medium_square": Emoji{
		Keywords: []string{"shape", "stone", "icon"},
		Char:     "◻️",
		Category: "symbols",
	},
	"white_small_square": Emoji{
		Keywords: []string{"shape", "icon"},
		Char:     "▫️",
		Category: "symbols",
	},
	"white_square_button": Emoji{
		Keywords: []string{"shape", "input"},
		Char:     "🔳",
		Category: "symbols",
	},
	"wilted_flower": Emoji{
		Keywords: []string{"plant", "nature", "flower"},
		Char:     "🥀",
		Category: "animals_and_nature",
	},
	"wind_chime": Emoji{
		Keywords: []string{"nature", "ding", "spring", "bell"},
		Char:     "🎐",
		Category: "objects",
	},
	"wind_face": Emoji{
		Keywords: []string{"gust", "air"},
		Char:     "🌬",
		Category: "animals_and_nature",
	},
	"wine_glass": Emoji{
		Keywords: []string{"drink", "beverage", "drunk", "alcohol", "booze"},
		Char:     "🍷",
		Category: "food_and_drink",
	},
	"wink": Emoji{
		Keywords: []string{"face", "happy", "mischievous", "secret", ";)", "smile", "eye"},
		Char:     "😉",
		Category: "people",
	},
	"wizard": Emoji{
		Keywords: []string{"man", "male", "mage", "sorcerer"},
		Char:     "🧙‍♂️",
		Category: "people",
	},
	"wolf": Emoji{
		Keywords: []string{"animal", "nature", "wild"},
		Char:     "🐺",
		Category: "animals_and_nature",
	},
	"woman": Emoji{
		Keywords: []string{"female", "girls", "lady"},
		Char:     "👩",
		Category: "people",
	},
	"woman_artist": Emoji{
		Keywords: []string{"painter", "woman", "human"},
		Char:     "👩‍🎨",
		Category: "people",
	},
	"woman_astronaut": Emoji{
		Keywords: []string{"space", "rocket", "woman", "human"},
		Char:     "👩‍🚀",
		Category: "people",
	},
	"woman_cartwheeling": Emoji{
		Keywords: []string{"gymnastics"},
		Char:     "🤸‍♀️",
		Category: "activity",
	},
	"woman_cook": Emoji{
		Keywords: []string{"chef", "woman", "human"},
		Char:     "👩‍🍳",
		Category: "people",
	},
	"woman_elf": Emoji{
		Keywords: []string{"woman", "female"},
		Char:     "🧝‍♀️",
		Category: "people",
	},
	"woman_facepalming": Emoji{
		Keywords: []string{"woman", "female", "girl", "disbelief"},
		Char:     "🤦‍♀️",
		Category: "people",
	},
	"woman_factory_worker": Emoji{
		Keywords: []string{"assembly", "industrial", "woman", "human"},
		Char:     "👩‍🏭",
		Category: "people",
	},
	"woman_fairy": Emoji{
		Keywords: []string{"woman", "female"},
		Char:     "🧚‍♀️",
		Category: "people",
	},
	"woman_farmer": Emoji{
		Keywords: []string{"rancher", "gardener", "woman", "human"},
		Char:     "👩‍🌾",
		Category: "people",
	},
	"woman_firefighter": Emoji{
		Keywords: []string{"fireman", "woman", "human"},
		Char:     "👩‍🚒",
		Category: "people",
	},
	"woman_genie": Emoji{
		Keywords: []string{"woman", "female"},
		Char:     "🧞‍♀️",
		Category: "people",
	},
	"woman_health_worker": Emoji{
		Keywords: []string{"doctor", "nurse", "therapist", "healthcare", "woman", "human"},
		Char:     "👩‍⚕️",
		Category: "people",
	},
	"woman_in_lotus_position": Emoji{
		Keywords: []string{"woman", "female", "meditation", "yoga", "serenity", "zen", "mindfulness"},
		Char:     "🧘‍♀️",
		Category: "activity",
	},
	"woman_in_steamy_room": Emoji{
		Keywords: []string{"female", "woman", "spa", "steamroom", "sauna"},
		Char:     "🧖‍♀️",
		Category: "people",
	},
	"woman_judge": Emoji{
		Keywords: []string{"justice", "court", "woman", "human"},
		Char:     "👩‍⚖️",
		Category: "people",
	},
	"woman_juggling": Emoji{
		Keywords: []string{"juggle", "balance", "skill", "multitask"},
		Char:     "🤹‍♀️",
		Category: "activity",
	},
	"woman_mechanic": Emoji{
		Keywords: []string{"plumber", "woman", "human", "wrench"},
		Char:     "👩‍🔧",
		Category: "people",
	},
	"woman_office_worker": Emoji{
		Keywords: []string{"business", "manager", "woman", "human"},
		Char:     "👩‍💼",
		Category: "people",
	},
	"woman_pilot": Emoji{
		Keywords: []string{"aviator", "plane", "woman", "human"},
		Char:     "👩‍✈️",
		Category: "people",
	},
	"woman_playing_handball": Emoji{
		Keywords: []string{"sports"},
		Char:     "🤾‍♀️",
		Category: "activity",
	},
	"woman_playing_water_polo": Emoji{
		Keywords: []string{"sports", "pool"},
		Char:     "🤽‍♀️",
		Category: "activity",
	},
	"woman_scientist": Emoji{
		Keywords: []string{"biologist", "chemist", "engineer", "physicist", "woman", "human"},
		Char:     "👩‍🔬",
		Category: "people",
	},
	"woman_shrugging": Emoji{
		Keywords: []string{"woman", "female", "girl", "confused", "indifferent", "doubt"},
		Char:     "🤷",
		Category: "people",
	},
	"woman_singer": Emoji{
		Keywords: []string{"rockstar", "entertainer", "woman", "human"},
		Char:     "👩‍🎤",
		Category: "people",
	},
	"woman_student": Emoji{
		Keywords: []string{"graduate", "woman", "human"},
		Char:     "👩‍🎓",
		Category: "people",
	},
	"woman_teacher": Emoji{
		Keywords: []string{"instructor", "professor", "woman", "human"},
		Char:     "👩‍🏫",
		Category: "people",
	},
	"woman_technologist": Emoji{
		Keywords: []string{"coder", "developer", "engineer", "programmer", "software", "woman", "human", "laptop", "computer"},
		Char:     "👩‍💻",
		Category: "people",
	},
	"woman_vampire": Emoji{
		Keywords: []string{"woman", "female"},
		Char:     "🧛‍♀️",
		Category: "people",
	},
	"woman_with_headscarf": Emoji{
		Keywords: []string{"female", "hijab", "mantilla", "tichel"},
		Char:     "🧕",
		Category: "people",
	},
	"woman_with_turban": Emoji{
		Keywords: []string{"female", "indian", "hinduism", "arabs", "woman"},
		Char:     "👳‍♀️",
		Category: "people",
	},
	"woman_zombie": Emoji{
		Keywords: []string{"woman", "female", "undead", "walking dead"},
		Char:     "🧟‍♀️",
		Category: "people",
	},
	"womans_clothes": Emoji{
		Keywords: []string{"fashion", "shopping_bags", "female"},
		Char:     "👚",
		Category: "people",
	},
	"womans_hat": Emoji{
		Keywords: []string{"fashion", "accessories", "female", "lady", "spring"},
		Char:     "👒",
		Category: "people",
	},
	"women_wrestling": Emoji{
		Keywords: []string{"sports", "wrestlers"},
		Char:     "🤼‍♀️",
		Category: "activity",
	},
	"womens": Emoji{
		Keywords: []string{"purple-square", "woman", "female", "toilet", "loo", "restroom", "gender"},
		Char:     "🚺",
		Category: "symbols",
	},
	"world_map": Emoji{
		Keywords: []string{"location", "direction"},
		Char:     "🗺",
		Category: "objects",
	},
	"worried": Emoji{
		Keywords: []string{"face", "concern", "nervous", ":("},
		Char:     "😟",
		Category: "people",
	},
	"wrench": Emoji{
		Keywords: []string{"tools", "diy", "ikea", "fix", "maintainer"},
		Char:     "🔧",
		Category: "objects",
	},
	"writing_hand": Emoji{
		Keywords: []string{"lower_left_ballpoint_pen", "stationery", "write", "compose"},
		Char:     "✍",
		Category: "people",
	},
	"x": Emoji{
		Keywords: []string{"no", "delete", "remove", "cancel"},
		Char:     "❌",
		Category: "symbols",
	},
	"yellow_heart": Emoji{
		Keywords: []string{"love", "like", "affection", "valentines"},
		Char:     "💛",
		Category: "symbols",
	},
	"yemen": Emoji{
		Keywords: []string{"ye", "flag", "nation", "country", "banner"},
		Char:     "🇾🇪",
		Category: "flags",
	},
	"yen": Emoji{
		Keywords: []string{"money", "sales", "japanese", "dollar", "currency"},
		Char:     "💴",
		Category: "objects",
	},
	"yin_yang": Emoji{
		Keywords: []string{"balance"},
		Char:     "☯",
		Category: "symbols",
	},
	"yum": Emoji{
		Keywords: []string{"happy", "joy", "tongue", "smile", "face", "silly", "yummy", "nom", "delicious", "savouring"},
		Char:     "😋",
		Category: "people",
	},
	"zambia": Emoji{
		Keywords: []string{"zm", "flag", "nation", "country", "banner"},
		Char:     "🇿🇲",
		Category: "flags",
	},
	"zany": Emoji{
		Keywords: []string{"face", "goofy", "crazy"},
		Char:     "🤪",
		Category: "people",
	},
	"zap": Emoji{
		Keywords: []string{"thunder", "weather", "lightning bolt", "fast"},
		Char:     "⚡",
		Category: "animals_and_nature",
	},
	"zebra": Emoji{
		Keywords: []string{"animal", "nature", "stripes", "safari"},
		Char:     "🦓",
		Category: "animals_and_nature",
	},
	"zero": Emoji{
		Keywords: []string{"0", "numbers", "blue-square", "null"},
		Char:     "0️⃣",
		Category: "symbols",
	},
	"zimbabwe": Emoji{
		Keywords: []string{"zw", "flag", "nation", "country", "banner"},
		Char:     "🇿🇼",
		Category: "flags",
	},
	"zipper_mouth_face": Emoji{
		Keywords: []string{"face", "sealed", "zipper", "secret"},
		Char:     "🤐",
		Category: "people",
	},
	"zzz": Emoji{
		Keywords: []string{"sleepy", "tired", "dream"},
		Char:     "💤",
		Category: "people",
	},
}

var keywordLookup = map[string][]string{
	"-_-": []string{
		"expressionless",
	},
	"0": []string{
		"zero",
	},
	"1": []string{
		"one",
	},
	"10": []string{
		"keycap_ten",
	},
	"101": []string{
		"poodle",
	},
	"18": []string{
		"underage",
	},
	"2": []string{
		"two",
	},
	"3": []string{
		"kissing",
		"three",
	},
	"4": []string{
		"four",
	},
	"5": []string{
		"five",
	},
	"6": []string{
		"six",
	},
	"7": []string{
		"seven",
	},
	"8": []string{
		"eight",
	},
	"80s": []string{
		"floppy_disk",
		"vhs",
	},
	"9": []string{
		"nine",
	},
	"90s": []string{
		"cd",
		"floppy_disk",
		"minidisc",
		"pager",
		"vhs",
	},
	"911": []string{
		"ambulance",
		"oncoming_police_car",
		"policeman",
		"policewoman",
		"rotating_light",
		"sos",
	},
	":'(": []string{
		"cry",
	},
	":(": []string{
		"disappointed",
		"worried",
	},
	":)": []string{
		"smile",
		"smiley",
	},
	":/": []string{
		"confused",
	},
	":D": []string{
		"grinning",
		"smile",
		"smiley",
	},
	":O": []string{
		"open_mouth",
	},
	":S": []string{
		"confounded",
	},
	":|": []string{
		"neutral_face",
	},
	";)": []string{
		"wink",
	},
	"ISS": []string{
		"artificial_satellite",
	},
	"NASA": []string{
		"artificial_satellite",
		"rocket",
	},
	"NBA": []string{
		"basketball",
	},
	"NFL": []string{
		"football",
	},
	"PA": []string{
		"microphone",
	},
	"PS4": []string{
		"video_game",
	},
	"UFO": []string{
		"alien",
	},
	"UK": []string{
		"uk",
	},
	"USA": []string{
		"earth_americas",
	},
	"XD": []string{
		"laughing",
	},
	"a11y": []string{
		"wheelchair",
	},
	"abandon": []string{
		"derelict_house",
	},
	"above": []string{
		"up",
	},
	"accept": []string{
		"+1",
	},
	"accessibility": []string{
		"wheelchair",
	},
	"accessories": []string{
		"dark_sunglasses",
		"eyeglasses",
		"handbag",
		"pouch",
		"purse",
		"watch",
		"womans_hat",
	},
	"accessory": []string{
		"handbag",
	},
	"accomodation": []string{
		"hotel",
	},
	"acting": []string{
		"performing_arts",
	},
	"ad": []string{
		"andorra",
	},
	"addition": []string{
		"heavy_plus_sign",
	},
	"af": []string{
		"afghanistan",
	},
	"affection": []string{
		"blue_heart",
		"couple",
		"couple_with_heart_man_man",
		"couple_with_heart_woman_man",
		"couple_with_heart_woman_woman",
		"cupid",
		"green_heart",
		"heart_eyes",
		"heart_eyes_cat",
		"heartbeat",
		"heartpulse",
		"kiss",
		"kissing_closed_eyes",
		"kissing_heart",
		"kissing_smiling_eyes",
		"love_hotel",
		"love_letter",
		"orange_heart",
		"purple_heart",
		"revolving_hearts",
		"sparkling_heart",
		"two_hearts",
		"wedding",
		"yellow_heart",
	},
	"africa": []string{
		"south_africa",
	},
	"african": []string{
		"central_african_republic",
	},
	"afternoon": []string{
		"low_brightness",
	},
	"agree": []string{
		"+1",
		"accept",
		"ballot_box_with_check",
		"ok",
		"white_check_mark",
	},
	"agreement": []string{
		"handshake",
	},
	"agriculture": []string{
		"tractor",
	},
	"ai": []string{
		"anguilla",
	},
	"air": []string{
		"dash",
		"wind_face",
	},
	"airplane": []string{
		"seat",
	},
	"airport": []string{
		"baggage_claim",
		"flight_arrival",
		"flight_departure",
	},
	"al": []string{
		"albania",
	},
	"alarm": []string{
		"timer_clock",
	},
	"alcohol": []string{
		"beer",
		"beers",
		"clinking_glasses",
		"cocktail",
		"sake",
		"tropical_drink",
		"tumbler_glass",
		"wine_glass",
	},
	"alert": []string{
		"rotating_light",
		"warning",
	},
	"allergy": []string{
		"sneezing_face",
	},
	"alligator": []string{
		"crocodile",
	},
	"alphabet": []string{
		"a",
		"ab",
		"abc",
		"abcd",
		"b",
		"capital_abcd",
		"cl",
		"information_source",
		"m",
		"o2",
		"parking",
		"registered",
	},
	"am": []string{
		"armenia",
	},
	"ambulance": []string{
		"rotating_light",
	},
	"america": []string{
		"us",
	},
	"american": []string{
		"american_samoa",
		"statue_of_liberty",
	},
	"ampersand": []string{
		"symbols",
	},
	"ancient": []string{
		"scroll",
	},
	"angel": []string{
		"innocent",
	},
	"angry": []string{
		"anger",
		"facepunch",
		"imp",
		"rage",
	},
	"animal": []string{
		"ant",
		"baby_chick",
		"bat",
		"bear",
		"beetle",
		"bird",
		"blowfish",
		"boar",
		"bug",
		"butterfly",
		"camel",
		"cat",
		"cat2",
		"chicken",
		"chipmunk",
		"cow",
		"cow2",
		"crab",
		"crocodile",
		"crying_cat_face",
		"deer",
		"dog",
		"dog2",
		"dolphin",
		"dove",
		"dragon",
		"dragon_face",
		"dromedary_camel",
		"duck",
		"eagle",
		"elephant",
		"fish",
		"fox_face",
		"fried_shrimp",
		"frog",
		"giraffe",
		"goat",
		"gorilla",
		"grasshopper",
		"hamster",
		"hatched_chick",
		"hatching_chick",
		"hear_no_evil",
		"heart_eyes_cat",
		"hedgehog",
		"honeybee",
		"horse",
		"horse_racing",
		"joy_cat",
		"kissing_cat",
		"koala",
		"leopard",
		"lion",
		"lizard",
		"monkey",
		"monkey_face",
		"mouse",
		"mouse2",
		"octopus",
		"owl",
		"ox",
		"panda_face",
		"paw_prints",
		"penguin",
		"pig",
		"pig2",
		"pig_nose",
		"poodle",
		"pouting_cat",
		"rabbit",
		"rabbit2",
		"racehorse",
		"ram",
		"rat",
		"rhinoceros",
		"rooster",
		"sauropod",
		"scorpion",
		"scream_cat",
		"see_no_evil",
		"shark",
		"sheep",
		"shrimp",
		"smile_cat",
		"smiley_cat",
		"smirk_cat",
		"snail",
		"snake",
		"speak_no_evil",
		"spider",
		"spider_web",
		"squid",
		"t-rex",
		"tiger",
		"tiger2",
		"tropical_fish",
		"turkey",
		"turtle",
		"unicorn",
		"water_buffalo",
		"whale",
		"whale2",
		"wolf",
		"zebra",
	},
	"annoyed": []string{
		"angry",
	},
	"answer": []string{
		"heavy_check_mark",
		"white_check_mark",
	},
	"antigua": []string{
		"antigua_barbuda",
	},
	"ao": []string{
		"angola",
	},
	"appetizer": []string{
		"fried_shrimp",
	},
	"applause": []string{
		"clap",
	},
	"apple": []string{
		"iphone",
	},
	"aq": []string{
		"antarctica",
	},
	"ar": []string{
		"argentina",
	},
	"arab": []string{
		"syria",
		"united_arab_emirates",
	},
	"arabs": []string{
		"man_with_turban",
		"woman_with_turban",
	},
	"arachnid": []string{
		"scorpion",
		"spider",
		"spider_web",
	},
	"arcade": []string{
		"space_invader",
	},
	"architect": []string{
		"straight_ruler",
		"triangular_ruler",
	},
	"ariel": []string{
		"mermaid",
	},
	"arm": []string{
		"muscle",
	},
	"army": []string{
		"medal_military",
	},
	"arrest": []string{
		"chains",
		"policeman",
		"policewoman",
	},
	"arrow": []string{
		"back",
		"end",
		"on",
		"recycle",
		"soon",
	},
	"art": []string{
		"classical_building",
		"paintbrush",
	},
	"artist": []string{
		"studio_microphone",
	},
	"ascension": []string{
		"st_helena",
	},
	"ashes": []string{
		"funeral_urn",
	},
	"asia": []string{
		"japan",
		"rice_scene",
	},
	"asian": []string{
		"rice",
	},
	"assembly": []string{
		"man_factory_worker",
		"woman_factory_worker",
	},
	"astrology": []string{
		"aquarius",
		"aries",
		"cancer",
		"capricorn",
		"gemini",
		"leo",
		"libra",
		"ophiuchus",
		"pisces",
		"sagittarius",
		"scorpius",
		"taurus",
		"virgo",
	},
	"astronomy": []string{
		"telescope",
	},
	"at": []string{
		"austria",
	},
	"athlete": []string{
		"swimming_man",
		"swimming_woman",
	},
	"attack": []string{
		"facepunch",
	},
	"au": []string{
		"australia",
	},
	"aubergine": []string{
		"eggplant",
	},
	"aviator": []string{
		"man_pilot",
		"woman_pilot",
	},
	"aw": []string{
		"aruba",
		"frowning",
	},
	"award": []string{
		"1st_place_medal",
		"2nd_place_medal",
		"3rd_place_medal",
		"medal_military",
		"medal_sports",
		"trophy",
	},
	"awareness": []string{
		"reminder_ribbon",
	},
	"awesome": []string{
		"+1",
		"sparkle",
		"sparkles",
		"star2",
	},
	"az": []string{
		"azerbaijan",
	},
	"baby": []string{
		"breastfeeding",
		"hatched_chick",
		"hatching_chick",
		"pregnant_woman",
	},
	"back": []string{
		"arrow_left",
		"leftwards_arrow_with_hook",
	},
	"backhand": []string{
		"raised_back_of_hand",
	},
	"backpack": []string{
		"school_satchel",
	},
	"backward": []string{
		"previous_track_button",
	},
	"bad": []string{
		"chart_with_downwards_trend",
		"no_entry",
		"part_alternation_mark",
	},
	"badge": []string{
		"beginner",
	},
	"bag": []string{
		"pouch",
		"school_satchel",
	},
	"balance": []string{
		"man_juggling",
		"woman_juggling",
		"yin_yang",
	},
	"balls": []string{
		"baseball",
		"basketball",
		"football",
		"tennis",
		"volleyball",
	},
	"ban": []string{
		"raised_hand",
	},
	"banana": []string{
		"monkey",
	},
	"bandage": []string{
		"face_with_head_bandage",
	},
	"bank": []string{
		"atm",
	},
	"banner": []string{
		"afghanistan",
		"aland_islands",
		"albania",
		"algeria",
		"american_samoa",
		"andorra",
		"angola",
		"anguilla",
		"antarctica",
		"antigua_barbuda",
		"argentina",
		"armenia",
		"aruba",
		"australia",
		"austria",
		"azerbaijan",
		"bahamas",
		"bahrain",
		"bangladesh",
		"barbados",
		"belarus",
		"belgium",
		"belize",
		"benin",
		"bermuda",
		"bhutan",
		"bolivia",
		"bosnia_herzegovina",
		"botswana",
		"brazil",
		"british_indian_ocean_territory",
		"british_virgin_islands",
		"brunei",
		"bulgaria",
		"burkina_faso",
		"burundi",
		"cambodia",
		"cameroon",
		"canada",
		"canary_islands",
		"cape_verde",
		"caribbean_netherlands",
		"cayman_islands",
		"central_african_republic",
		"chad",
		"chile",
		"christmas_island",
		"cn",
		"cocos_islands",
		"colombia",
		"comoros",
		"congo_brazzaville",
		"congo_kinshasa",
		"cook_islands",
		"costa_rica",
		"cote_divoire",
		"croatia",
		"cuba",
		"curacao",
		"cyprus",
		"czech_republic",
		"de",
		"denmark",
		"djibouti",
		"dominica",
		"dominican_republic",
		"ecuador",
		"egypt",
		"el_salvador",
		"equatorial_guinea",
		"eritrea",
		"es",
		"estonia",
		"ethiopia",
		"eu",
		"falkland_islands",
		"faroe_islands",
		"fiji",
		"finland",
		"flags",
		"fr",
		"french_guiana",
		"french_polynesia",
		"french_southern_territories",
		"gabon",
		"gambia",
		"georgia",
		"ghana",
		"gibraltar",
		"greece",
		"greenland",
		"grenada",
		"guadeloupe",
		"guam",
		"guatemala",
		"guernsey",
		"guinea",
		"guinea_bissau",
		"guyana",
		"haiti",
		"honduras",
		"hong_kong",
		"hungary",
		"iceland",
		"india",
		"indonesia",
		"iran",
		"iraq",
		"ireland",
		"isle_of_man",
		"israel",
		"it",
		"jamaica",
		"jersey",
		"jordan",
		"jp",
		"kazakhstan",
		"kenya",
		"kiribati",
		"kosovo",
		"kr",
		"kuwait",
		"kyrgyzstan",
		"laos",
		"latvia",
		"lebanon",
		"lesotho",
		"liberia",
		"libya",
		"liechtenstein",
		"lithuania",
		"luxembourg",
		"macau",
		"macedonia",
		"madagascar",
		"malawi",
		"malaysia",
		"maldives",
		"mali",
		"malta",
		"marshall_islands",
		"martinique",
		"mauritania",
		"mauritius",
		"mayotte",
		"mexico",
		"micronesia",
		"moldova",
		"monaco",
		"mongolia",
		"montenegro",
		"montserrat",
		"morocco",
		"mozambique",
		"myanmar",
		"namibia",
		"nauru",
		"nepal",
		"netherlands",
		"new_caledonia",
		"new_zealand",
		"nicaragua",
		"niger",
		"nigeria",
		"niue",
		"norfolk_island",
		"north_korea",
		"northern_mariana_islands",
		"norway",
		"oman",
		"pakistan",
		"palau",
		"palestinian_territories",
		"panama",
		"papua_new_guinea",
		"paraguay",
		"peru",
		"philippines",
		"pitcairn_islands",
		"poland",
		"portugal",
		"puerto_rico",
		"qatar",
		"reunion",
		"romania",
		"ru",
		"rwanda",
		"samoa",
		"san_marino",
		"sao_tome_principe",
		"saudi_arabia",
		"senegal",
		"serbia",
		"seychelles",
		"sierra_leone",
		"singapore",
		"sint_maarten",
		"slovakia",
		"slovenia",
		"solomon_islands",
		"somalia",
		"south_africa",
		"south_georgia_south_sandwich_islands",
		"south_sudan",
		"sri_lanka",
		"st_barthelemy",
		"st_helena",
		"st_kitts_nevis",
		"st_lucia",
		"st_pierre_miquelon",
		"st_vincent_grenadines",
		"sudan",
		"suriname",
		"swaziland",
		"sweden",
		"switzerland",
		"syria",
		"taiwan",
		"tajikistan",
		"tanzania",
		"thailand",
		"timor_leste",
		"togo",
		"tokelau",
		"tonga",
		"tr",
		"trinidad_tobago",
		"tunisia",
		"turkmenistan",
		"turks_caicos_islands",
		"tuvalu",
		"uganda",
		"uk",
		"ukraine",
		"united_arab_emirates",
		"uruguay",
		"us",
		"us_virgin_islands",
		"uzbekistan",
		"vanuatu",
		"vatican_city",
		"venezuela",
		"vietnam",
		"wallis_futuna",
		"western_sahara",
		"yemen",
		"zambia",
		"zimbabwe",
	},
	"bar": []string{
		"dart",
	},
	"barbecue": []string{
		"dango",
	},
	"barbuda": []string{
		"antigua_barbuda",
	},
	"barrell": []string{
		"oil_drum",
	},
	"bars": []string{
		"signal_strength",
	},
	"bart": []string{
		"trolleybus",
	},
	"barthélemy": []string{
		"st_barthelemy",
	},
	"baseball": []string{
		"billed_hat",
	},
	"bath": []string{
		"hotsprings",
	},
	"bathroom": []string{
		"bath",
		"bathtub",
		"shower",
		"toilet",
	},
	"bb": []string{
		"barbados",
	},
	"bbcall": []string{
		"pager",
	},
	"bd": []string{
		"bangladesh",
	},
	"be": []string{
		"belgium",
	},
	"beach": []string{
		"bikini",
		"dolphin",
		"fish_cake",
		"footprints",
		"hibiscus",
		"octopus",
		"palm_tree",
		"shark",
		"shell",
		"sunglasses",
		"sunny",
		"surfing_man",
		"surfing_woman",
		"tropical_drink",
		"tropical_fish",
	},
	"beauty": []string{
		"nail_care",
	},
	"bed": []string{
		"sleeping_bed",
	},
	"beef": []string{
		"cow",
		"cow2",
		"hamburger",
		"ox",
	},
	"bees": []string{
		"honey_pot",
	},
	"bell": []string{
		"wind_chime",
	},
	"bet": []string{
		"slot_machine",
	},
	"betting": []string{
		"horse_racing",
	},
	"beverage": []string{
		"beer",
		"beers",
		"clinking_glasses",
		"cocktail",
		"coffee",
		"milk_glass",
		"sake",
		"tropical_drink",
		"tumbler_glass",
		"wine_glass",
	},
	"bewhiskered": []string{
		"bearded_person",
	},
	"bg": []string{
		"bulgaria",
	},
	"bh": []string{
		"bahrain",
	},
	"bi": []string{
		"burundi",
	},
	"biceps": []string{
		"muscle",
	},
	"bicycle": []string{
		"bike",
	},
	"bike": []string{
		"biking_man",
		"biking_woman",
		"mountain_biking_man",
		"mountain_biking_woman",
	},
	"bill": []string{
		"credit_card",
		"dollar",
	},
	"bills": []string{
		"money_with_wings",
		"pound",
	},
	"bin": []string{
		"do_not_litter",
		"wastebasket",
	},
	"biologist": []string{
		"man_scientist",
		"woman_scientist",
	},
	"bird": []string{
		"baby_chick",
		"chicken",
		"dove",
		"duck",
		"eagle",
		"hatched_chick",
		"hatching_chick",
		"owl",
		"poultry_leg",
		"turkey",
	},
	"birthday": []string{
		"balloon",
		"confetti_ball",
		"gift",
		"tada",
	},
	"bisexual": []string{
		"rainbow_flag",
	},
	"bissau": []string{
		"guinea_bissau",
	},
	"bj": []string{
		"benin",
	},
	"black-square": []string{
		"ballot_box_with_check",
	},
	"blade": []string{
		"hocho",
	},
	"blind": []string{
		"bat",
	},
	"blond": []string{
		"princess",
	},
	"blonde": []string{
		"blonde_man",
		"blonde_woman",
	},
	"blood": []string{
		"syringe",
	},
	"blown": []string{
		"boom",
		"exploding_head",
	},
	"blue": []string{
		"cyclone",
		"diamond_shape_with_a_dot_inside",
		"gem",
		"ok_man",
	},
	"blue-circle": []string{
		"m",
	},
	"blue-square": []string{
		"1234",
		"abc",
		"abcd",
		"arrow_backward",
		"arrow_double_down",
		"arrow_double_up",
		"arrow_down",
		"arrow_down_small",
		"arrow_forward",
		"arrow_heading_down",
		"arrow_heading_up",
		"arrow_left",
		"arrow_lower_left",
		"arrow_lower_right",
		"arrow_right",
		"arrow_right_hook",
		"arrow_up",
		"arrow_up_down",
		"arrow_up_small",
		"arrow_upper_left",
		"arrow_upper_right",
		"arrows_counterclockwise",
		"atm",
		"baggage_claim",
		"capital_abcd",
		"cinema",
		"cool",
		"customs",
		"eight",
		"eject_button",
		"fast_forward",
		"five",
		"four",
		"free",
		"hash",
		"information_source",
		"keycap_ten",
		"koko",
		"left_luggage",
		"leftwards_arrow_with_hook",
		"mens",
		"metro",
		"new",
		"next_track_button",
		"ng",
		"nine",
		"no_smoking",
		"ok",
		"one",
		"parking",
		"passport_control",
		"pause_button",
		"play_or_pause_button",
		"potable_water",
		"put_litter_in_its_place",
		"record_button",
		"repeat_one",
		"restroom",
		"rewind",
		"sa",
		"seven",
		"signal_strength",
		"six",
		"stop_button",
		"symbols",
		"three",
		"top",
		"twisted_rightwards_arrows",
		"two",
		"u7a7a",
		"up",
		"wc",
		"wheelchair",
		"zero",
	},
	"blues": []string{
		"saxophone",
	},
	"bluetooth": []string{
		"signal_strength",
	},
	"blush": []string{
		"flushed",
		"relaxed",
	},
	"bm": []string{
		"bermuda",
	},
	"bn": []string{
		"brunei",
	},
	"bo": []string{
		"bolivia",
	},
	"boarding": []string{
		"flight_arrival",
	},
	"boat": []string{
		"anchor",
		"canoe",
		"ferry",
	},
	"bolivarian": []string{
		"venezuela",
	},
	"bomb": []string{
		"boom",
	},
	"bonaire": []string{
		"caribbean_netherlands",
	},
	"book": []string{
		"open_book",
	},
	"boom": []string{
		"bomb",
	},
	"booze": []string{
		"beer",
		"beers",
		"cocktail",
		"sake",
		"tropical_drink",
		"tumbler_glass",
		"wine_glass",
	},
	"border": []string{
		"crossed_flags",
		"customs",
	},
	"bored": []string{
		"unamused",
	},
	"born": []string{
		"hatching_chick",
	},
	"bosnia": []string{
		"bosnia_herzegovina",
	},
	"bot": []string{
		"robot",
	},
	"bottle": []string{
		"champagne",
	},
	"bottom": []string{
		"arrow_double_down",
		"arrow_down",
		"arrow_down_small",
		"arrow_heading_down",
		"small_red_triangle_down",
	},
	"bourbon": []string{
		"tumbler_glass",
	},
	"bowl": []string{
		"tea",
	},
	"bowtie": []string{
		"ribbon",
	},
	"box": []string{
		"bento",
		"coffin",
		"package",
	},
	"boy": []string{
		"baby",
		"blonde_man",
		"bowing_man",
		"frowning_man",
		"haircut_man",
		"man_dancing",
		"man_facepalming",
		"man_shrugging",
		"man_with_gua_pi_mao",
		"massage_man",
		"no_good_man",
		"ok_man",
		"pouting_man",
		"prince",
		"raising_hand_man",
		"tipping_hand_man",
	},
	"boys": []string{
		"dancing_men",
	},
	"br": []string{
		"brazil",
	},
	"brachiosaurus": []string{
		"sauropod",
	},
	"branch": []string{
		"tanabata_tree",
	},
	"brand": []string{
		"tm",
	},
	"brass": []string{
		"trumpet",
	},
	"bread": []string{
		"baguette_bread",
		"croissant",
		"pretzel",
		"sandwich",
	},
	"break": []string{
		"broken_heart",
	},
	"breakfast": []string{
		"bacon",
		"bowl_with_spoon",
		"bread",
		"egg",
		"fried_egg",
		"pancakes",
		"tea",
	},
	"bride": []string{
		"bride_with_veil",
		"wedding",
	},
	"brightness": []string{
		"sunny",
	},
	"britain": []string{
		"uk",
	},
	"british": []string{
		"british_indian_ocean_territory",
		"british_virgin_islands",
		"guardsman",
		"guardswoman",
		"pound",
		"tea",
		"uk",
	},
	"broadcast": []string{
		"loud_sound",
		"sound",
		"speaker",
	},
	"broken": []string{
		"derelict_house",
	},
	"bromance": []string{
		"two_men_holding_hands",
	},
	"brontosaurus": []string{
		"sauropod",
	},
	"brown": []string{
		"horse",
	},
	"bs": []string{
		"bahamas",
	},
	"bt": []string{
		"bhutan",
	},
	"bubble": []string{
		"speech_balloon",
		"thought_balloon",
	},
	"buck": []string{
		"heavy_dollar_sign",
	},
	"buddhism": []string{
		"om",
		"wheel_of_dharma",
	},
	"bug": []string{
		"ant",
		"honeybee",
	},
	"build": []string{
		"construction_worker_man",
		"construction_worker_woman",
		"hammer",
		"hammer_and_pick",
		"hammer_and_wrench",
		"rescue_worker_helmet",
	},
	"building": []string{
		"bank",
		"church",
		"convenience_store",
		"department_store",
		"derelict_house",
		"european_castle",
		"european_post_office",
		"factory",
		"hospital",
		"hotel",
		"house",
		"japanese_castle",
		"office",
		"post_office",
		"school",
	},
	"buildings": []string{
		"city_sunset",
		"houses",
	},
	"bullseye": []string{
		"dart",
	},
	"bunny": []string{
		"dancing_men",
		"dancing_women",
		"rabbit",
	},
	"bureau": []string{
		"office",
	},
	"burger king": []string{
		"hamburger",
	},
	"burkina": []string{
		"burkina_faso",
	},
	"bus": []string{
		"seat",
	},
	"business": []string{
		"bank",
		"briefcase",
		"business_suit_levitating",
		"card_file_box",
		"card_index",
		"card_index_dividers",
		"chart_with_downwards_trend",
		"chart_with_upwards_trend",
		"file_folder",
		"golf",
		"golfing_man",
		"golfing_woman",
		"man_office_worker",
		"necktie",
		"part_alternation_mark",
		"woman_office_worker",
	},
	"butterfly": []string{
		"open_hands",
	},
	"button": []string{
		"black_circle",
		"black_large_square",
		"black_medium_small_square",
		"black_medium_square",
		"large_blue_circle",
		"white_large_square",
		"white_medium_small_square",
	},
	"buy": []string{
		"shopping",
	},
	"bvi": []string{
		"british_virgin_islands",
	},
	"bw": []string{
		"botswana",
	},
	"by": []string{
		"belarus",
	},
	"bz": []string{
		"belize",
	},
	"ca": []string{
		"canada",
		"maple_leaf",
	},
	"cabo": []string{
		"cape_verde",
	},
	"caffeine": []string{
		"coffee",
	},
	"caicos": []string{
		"turks_caicos_islands",
	},
	"cake": []string{
		"birthday",
	},
	"calculate": []string{
		"straight_ruler",
	},
	"calculation": []string{
		"heavy_division_sign",
		"heavy_minus_sign",
		"heavy_multiplication_x",
		"heavy_plus_sign",
	},
	"caledonia": []string{
		"new_caledonia",
	},
	"calendar": []string{
		"date",
	},
	"camera": []string{
		"selfie",
	},
	"camping": []string{
		"flashlight",
		"tent",
	},
	"canary": []string{
		"canary_islands",
	},
	"cancel": []string{
		"x",
	},
	"candles": []string{
		"menorah",
	},
	"candy": []string{
		"lollipop",
	},
	"cap": []string{
		"billed_hat",
		"mortar_board",
	},
	"caption": []string{
		"right_anger_bubble",
	},
	"car": []string{
		"bus",
		"minibus",
		"oncoming_automobile",
		"tractor",
	},
	"cardboard": []string{
		"package",
	},
	"cards": []string{
		"black_joker",
		"clubs",
		"diamonds",
		"hearts",
		"spades",
	},
	"career": []string{
		"briefcase",
	},
	"carnival": []string{
		"carousel_horse",
		"circus_tent",
		"ferris_wheel",
		"fireworks",
		"roller_coaster",
	},
	"carp": []string{
		"flags",
	},
	"carriage": []string{
		"train",
	},
	"cars": []string{
		"articulated_lorry",
		"fire_engine",
		"oncoming_taxi",
		"parking",
		"police_car",
		"taxi",
		"truck",
	},
	"cash": []string{
		"atm",
		"bank",
	},
	"casino": []string{
		"slot_machine",
	},
	"casket": []string{
		"coffin",
	},
	"casserole": []string{
		"shallow_pan_of_food",
	},
	"cassette": []string{
		"loop",
	},
	"casual": []string{
		"tshirt",
	},
	"cat": []string{
		"paw_prints",
		"tiger",
	},
	"caterpillar": []string{
		"butterfly",
	},
	"cats": []string{
		"cat2",
		"crying_cat_face",
		"heart_eyes_cat",
		"joy_cat",
		"kissing_cat",
		"pouting_cat",
		"scream_cat",
		"smile_cat",
		"smiley_cat",
		"smirk_cat",
	},
	"cause": []string{
		"reminder_ribbon",
	},
	"caution": []string{
		"construction",
	},
	"cayman": []string{
		"cayman_islands",
	},
	"cd": []string{
		"dvd",
	},
	"celebrate": []string{
		"clinking_glasses",
	},
	"celebration": []string{
		"balloon",
		"champagne",
		"christmas_tree",
		"raised_hands",
		"tada",
	},
	"cemetery": []string{
		"coffin",
	},
	"central": []string{
		"central_african_republic",
	},
	"century": []string{
		"100",
	},
	"cereal": []string{
		"bowl_with_spoon",
	},
	"ceremony": []string{
		"trophy",
	},
	"ch": []string{
		"switzerland",
	},
	"chadder": []string{
		"cheese",
	},
	"champagne": []string{
		"clinking_glasses",
	},
	"characters": []string{
		"symbols",
	},
	"charger": []string{
		"electric_plug",
	},
	"chatting": []string{
		"left_speech_bubble",
		"speech_balloon",
	},
	"checkin": []string{
		"hotel",
	},
	"cheers": []string{
		"clinking_glasses",
	},
	"cheese_wedge": []string{
		"mouse",
	},
	"cheeseburger": []string{
		"hamburger",
	},
	"chef": []string{
		"man_cook",
		"woman_cook",
	},
	"chemist": []string{
		"man_scientist",
		"woman_scientist",
	},
	"chemistry": []string{
		"alembic",
		"atom_symbol",
	},
	"chicken": []string{
		"baby_chick",
		"egg",
		"hatched_chick",
		"hatching_chick",
		"poultry_leg",
		"rooster",
	},
	"child": []string{
		"baby",
		"baby_symbol",
		"family_man_boy",
		"family_man_girl",
		"family_man_woman_boy",
		"family_man_woman_girl",
		"family_woman_boy",
		"family_woman_girl",
	},
	"childish": []string{
		"stuck_out_tongue",
		"stuck_out_tongue_winking_eye",
	},
	"children": []string{
		"family_man_boy_boy",
		"family_man_girl_boy",
		"family_man_girl_girl",
		"family_man_man_boy",
		"family_man_man_boy_boy",
		"family_man_man_girl",
		"family_man_man_girl_boy",
		"family_man_man_girl_girl",
		"family_man_woman_boy_boy",
		"family_man_woman_girl_boy",
		"family_man_woman_girl_girl",
		"family_woman_boy_boy",
		"family_woman_girl_boy",
		"family_woman_girl_girl",
		"family_woman_woman_boy",
		"family_woman_woman_boy_boy",
		"family_woman_woman_girl",
		"family_woman_woman_girl_boy",
		"family_woman_woman_girl_girl",
	},
	"chili": []string{
		"hot_pepper",
	},
	"chill": []string{
		"couch_and_lamp",
	},
	"chilli": []string{
		"hot_pepper",
	},
	"chime": []string{
		"bell",
	},
	"china": []string{
		"cn",
		"rice",
	},
	"chinese": []string{
		"accept",
		"cn",
		"congratulations",
		"dragon",
		"dragon_face",
		"ideograph_advantage",
		"mahjong",
		"man_with_gua_pi_mao",
		"secret",
		"u5272",
		"u5408",
		"u6307",
		"u6708",
		"u6709",
		"u6e80",
		"u7121",
		"u7533",
		"u7981",
		"u7a7a",
	},
	"chips": []string{
		"fries",
	},
	"chirp": []string{
		"grasshopper",
	},
	"chocolate": []string{
		"cookie",
	},
	"chop": []string{
		"steak",
	},
	"chopsticks": []string{
		"ramen",
	},
	"christ": []string{
		"church",
	},
	"christianity": []string{
		"latin_cross",
	},
	"christmas": []string{
		"bell",
		"christmas_island",
		"gift",
		"snowflake",
		"snowman",
		"snowman_with_snow",
	},
	"church": []string{
		"place_of_worship",
	},
	"cigarette": []string{
		"no_smoking",
		"smoking",
	},
	"circle": []string{
		"copyright",
		"do_not_litter",
		"ideograph_advantage",
		"no_bicycles",
		"no_entry",
		"no_entry_sign",
		"no_mobile_phones",
		"no_pedestrians",
		"non-potable_water",
		"o",
		"radio_button",
		"registered",
		"underage",
	},
	"circus": []string{
		"balloon",
		"confetti_ball",
		"crystal_ball",
		"elephant",
		"gorilla",
		"monkey",
		"monkey_face",
		"tada",
		"tophat",
	},
	"city": []string{
		"night_with_stars",
		"vatican_city",
	},
	"classroom": []string{
		"notebook_with_decorative_cover",
	},
	"classy": []string{
		"man",
		"tophat",
	},
	"clean": []string{
		"bath",
		"bathtub",
		"shower",
	},
	"cleaning": []string{
		"potable_water",
	},
	"clef": []string{
		"musical_score",
	},
	"click": []string{
		"computer_mouse",
	},
	"clock": []string{
		"hourglass",
	},
	"cloth": []string{
		"necktie",
		"tshirt",
	},
	"clothes": []string{
		"dress",
		"gloves",
		"scarf",
		"socks",
	},
	"cloud": []string{
		"cyclone",
		"thought_balloon",
	},
	"cloudy": []string{
		"partly_sunny",
	},
	"clover": []string{
		"shamrock",
	},
	"cluck": []string{
		"chicken",
	},
	"clumsy": []string{
		"face_with_head_bandage",
	},
	"cm": []string{
		"cameroon",
	},
	"co": []string{
		"colombia",
	},
	"coast": []string{
		"cote_divoire",
	},
	"cocktail": []string{
		"tropical_drink",
	},
	"cocos": []string{
		"cocos_islands",
	},
	"coder": []string{
		"man_technologist",
		"woman_technologist",
	},
	"cog": []string{
		"gear",
	},
	"coins": []string{
		"moneybag",
	},
	"cold": []string{
		"face_with_thermometer",
		"mountain_snow",
		"ski",
		"snowflake",
		"snowman",
		"snowman_with_snow",
		"thermometer",
	},
	"college": []string{
		"mortar_board",
	},
	"collision": []string{
		"boom",
	},
	"colors": []string{
		"art",
	},
	"communication": []string{
		"artificial_satellite",
		"e-mail",
		"email",
		"envelope_with_arrow",
		"fax",
		"mailbox",
		"mailbox_closed",
		"mailbox_with_mail",
		"phone",
		"post_office",
		"radio",
		"satellite",
		"telephone_receiver",
	},
	"competition": []string{
		"horse_racing",
	},
	"compose": []string{
		"memo",
		"musical_keyboard",
		"musical_score",
		"writing_hand",
	},
	"computer": []string{
		"keyboard",
		"man_technologist",
		"robot",
		"woman_technologist",
	},
	"computing": []string{
		"desktop_computer",
	},
	"concern": []string{
		"worried",
	},
	"concert": []string{
		"stadium",
		"ticket",
		"tickets",
	},
	"confirm": []string{
		"ballot_box_with_check",
	},
	"confused": []string{
		"confounded",
		"grey_question",
		"man_shrugging",
		"question",
		"woman_shrugging",
	},
	"congo": []string{
		"congo_brazzaville",
		"congo_kinshasa",
	},
	"congrats": []string{
		"clap",
	},
	"congratulations": []string{
		"fireworks",
		"tada",
	},
	"connection": []string{
		"signal_strength",
	},
	"consider": []string{
		"thinking",
	},
	"console": []string{
		"video_game",
	},
	"constellation": []string{
		"ophiuchus",
	},
	"construction": []string{
		"construction_worker_man",
		"construction_worker_woman",
		"rescue_worker_helmet",
	},
	"container": []string{
		"baby_bottle",
	},
	"contest": []string{
		"checkered_flag",
		"trophy",
	},
	"continue": []string{
		"arrow_up",
		"fast_forward",
	},
	"controller": []string{
		"video_game",
	},
	"cook": []string{
		"cook_islands",
		"fire",
	},
	"cooking": []string{
		"shallow_pan_of_food",
	},
	"cool": []string{
		"+1",
		"dark_sunglasses",
		"sparkles",
		"sunglasses",
	},
	"costa": []string{
		"costa_rica",
	},
	"countdown": []string{
		"hourglass_flowing_sand",
	},
	"country": []string{
		"afghanistan",
		"aland_islands",
		"albania",
		"algeria",
		"american_samoa",
		"andorra",
		"angola",
		"anguilla",
		"antarctica",
		"antigua_barbuda",
		"argentina",
		"armenia",
		"aruba",
		"australia",
		"austria",
		"azerbaijan",
		"bahamas",
		"bahrain",
		"bangladesh",
		"barbados",
		"belarus",
		"belgium",
		"belize",
		"benin",
		"bermuda",
		"bhutan",
		"bolivia",
		"bosnia_herzegovina",
		"botswana",
		"brazil",
		"british_indian_ocean_territory",
		"british_virgin_islands",
		"brunei",
		"bulgaria",
		"burkina_faso",
		"burundi",
		"cambodia",
		"cameroon",
		"canada",
		"canary_islands",
		"cape_verde",
		"caribbean_netherlands",
		"cayman_islands",
		"central_african_republic",
		"chad",
		"chile",
		"christmas_island",
		"cn",
		"cocos_islands",
		"colombia",
		"comoros",
		"congo_brazzaville",
		"congo_kinshasa",
		"cook_islands",
		"costa_rica",
		"cote_divoire",
		"croatia",
		"crossed_flags",
		"cuba",
		"curacao",
		"cyprus",
		"czech_republic",
		"de",
		"denmark",
		"djibouti",
		"dominica",
		"dominican_republic",
		"ecuador",
		"egypt",
		"el_salvador",
		"equatorial_guinea",
		"eritrea",
		"es",
		"estonia",
		"ethiopia",
		"falkland_islands",
		"faroe_islands",
		"fiji",
		"finland",
		"fr",
		"french_guiana",
		"french_polynesia",
		"french_southern_territories",
		"gabon",
		"gambia",
		"georgia",
		"ghana",
		"gibraltar",
		"greece",
		"greenland",
		"grenada",
		"guadeloupe",
		"guam",
		"guatemala",
		"guernsey",
		"guinea",
		"guinea_bissau",
		"guyana",
		"haiti",
		"honduras",
		"hong_kong",
		"hungary",
		"iceland",
		"india",
		"indonesia",
		"iran",
		"iraq",
		"ireland",
		"isle_of_man",
		"israel",
		"it",
		"jamaica",
		"japan",
		"jersey",
		"jordan",
		"jp",
		"kazakhstan",
		"kenya",
		"kiribati",
		"kosovo",
		"kr",
		"kuwait",
		"kyrgyzstan",
		"laos",
		"latvia",
		"lebanon",
		"lesotho",
		"liberia",
		"libya",
		"liechtenstein",
		"lithuania",
		"luxembourg",
		"macau",
		"macedonia",
		"madagascar",
		"malawi",
		"malaysia",
		"maldives",
		"mali",
		"malta",
		"marshall_islands",
		"martinique",
		"mauritania",
		"mauritius",
		"mayotte",
		"mexico",
		"micronesia",
		"moldova",
		"monaco",
		"mongolia",
		"montenegro",
		"montserrat",
		"morocco",
		"mozambique",
		"myanmar",
		"namibia",
		"nauru",
		"nepal",
		"netherlands",
		"new_caledonia",
		"new_zealand",
		"nicaragua",
		"niger",
		"nigeria",
		"niue",
		"norfolk_island",
		"north_korea",
		"northern_mariana_islands",
		"norway",
		"oman",
		"pakistan",
		"palau",
		"palestinian_territories",
		"panama",
		"papua_new_guinea",
		"paraguay",
		"peru",
		"philippines",
		"pitcairn_islands",
		"poland",
		"portugal",
		"puerto_rico",
		"qatar",
		"reunion",
		"romania",
		"ru",
		"rwanda",
		"samoa",
		"san_marino",
		"sao_tome_principe",
		"saudi_arabia",
		"senegal",
		"serbia",
		"seychelles",
		"sierra_leone",
		"singapore",
		"sint_maarten",
		"slovakia",
		"slovenia",
		"solomon_islands",
		"somalia",
		"south_africa",
		"south_georgia_south_sandwich_islands",
		"south_sudan",
		"sri_lanka",
		"st_barthelemy",
		"st_helena",
		"st_kitts_nevis",
		"st_lucia",
		"st_pierre_miquelon",
		"st_vincent_grenadines",
		"sudan",
		"suriname",
		"swaziland",
		"sweden",
		"switzerland",
		"syria",
		"taiwan",
		"tajikistan",
		"tanzania",
		"thailand",
		"timor_leste",
		"togo",
		"tokelau",
		"tonga",
		"tr",
		"trinidad_tobago",
		"tunisia",
		"turkmenistan",
		"turks_caicos_islands",
		"tuvalu",
		"uganda",
		"uk",
		"ukraine",
		"united_arab_emirates",
		"uruguay",
		"us",
		"us_virgin_islands",
		"uzbekistan",
		"vanuatu",
		"vatican_city",
		"venezuela",
		"vietnam",
		"wallis_futuna",
		"western_sahara",
		"yemen",
		"zambia",
		"zimbabwe",
	},
	"couple": []string{
		"bride_with_veil",
		"man_in_tuxedo",
		"two_men_holding_hands",
		"two_women_holding_hands",
		"wedding",
	},
	"court": []string{
		"man_judge",
		"woman_judge",
	},
	"cow": []string{
		"milk_glass",
		"ox",
		"steak",
		"water_buffalo",
	},
	"cowgirl": []string{
		"cowboy_hat_face",
	},
	"crazy": []string{
		"zany",
	},
	"create": []string{
		"hammer",
		"hammer_and_pick",
		"hammer_and_wrench",
	},
	"creativity": []string{
		"crayon",
		"paintbrush",
	},
	"creature": []string{
		"octopus",
	},
	"creepy": []string{
		"jack_o_lantern",
		"japanese_goblin",
		"japanese_ogre",
		"skull",
	},
	"cricket": []string{
		"grasshopper",
	},
	"croak": []string{
		"frog",
	},
	"crossing": []string{
		"no_pedestrians",
	},
	"crown": []string{
		"prince",
		"princess",
	},
	"cruise": []string{
		"passenger_ship",
	},
	"crush": []string{
		"blush",
		"heart_eyes",
	},
	"crustacean": []string{
		"crab",
	},
	"cry": []string{
		"crying_cat_face",
		"joy",
		"sob",
	},
	"crystal": []string{
		"diamond_shape_with_a_dot_inside",
	},
	"cu": []string{
		"cuba",
	},
	"culture": []string{
		"classical_building",
	},
	"cunha": []string{
		"st_helena",
	},
	"cupertino": []string{
		"motorway",
	},
	"cupped": []string{
		"palms_up",
	},
	"curaçao": []string{
		"curacao",
	},
	"currency": []string{
		"dollar",
		"euro",
		"heavy_dollar_sign",
		"pound",
		"yen",
	},
	"cursing": []string{
		"symbols_over_mouth",
	},
	"curtain": []string{
		"cinema",
	},
	"cussing": []string{
		"symbols_over_mouth",
	},
	"custom": []string{
		"passport_control",
	},
	"cut": []string{
		"scissors",
		"steak",
		"u5272",
	},
	"cutlery": []string{
		"fork_and_knife",
		"hocho",
		"spoon",
	},
	"cy": []string{
		"cyprus",
	},
	"cycle": []string{
		"arrows_clockwise",
		"arrows_counterclockwise",
	},
	"cyclist": []string{
		"no_bicycles",
	},
	"cyclone": []string{
		"tornado",
	},
	"cz": []string{
		"czech_republic",
	},
	"dad": []string{
		"family_man_woman_boy",
		"man",
	},
	"dancer": []string{
		"man_dancing",
	},
	"danger": []string{
		"biohazard",
		"children_crossing",
		"exclamation",
		"radioactive",
		"red_circle",
		"skull_and_crossbones",
		"tiger",
	},
	"dark": []string{
		"flashlight",
	},
	"darussalam": []string{
		"brunei",
	},
	"data": []string{
		"minidisc",
	},
	"date": []string{
		"calendar",
		"couple",
		"spiral_calendar",
	},
	"dating": []string{
		"couple",
		"couple_with_heart_man_man",
		"couple_with_heart_woman_man",
		"couple_with_heart_woman_woman",
		"couplekiss_man_man",
		"couplekiss_man_woman",
		"couplekiss_woman_woman",
		"love_hotel",
	},
	"dawn": []string{
		"city_sunrise",
		"clock6",
	},
	"dead": []string{
		"coffin",
		"funeral_urn",
		"skull",
	},
	"deadline": []string{
		"stopwatch",
	},
	"deadly": []string{
		"skull_and_crossbones",
	},
	"deadpan": []string{
		"expressionless",
	},
	"death": []string{
		"coffin",
		"funeral_urn",
		"skull",
		"skull_and_crossbones",
	},
	"december": []string{
		"christmas_tree",
	},
	"decoration": []string{
		"heavy_heart_exclamation",
		"ribbon",
		"rosette",
	},
	"decorative": []string{
		"fleur_de_lis",
	},
	"degree": []string{
		"mortar_board",
	},
	"delete": []string{
		"x",
	},
	"delicious": []string{
		"yum",
	},
	"democratic": []string{
		"congo_kinshasa",
		"laos",
	},
	"demon": []string{
		"japanese_ogre",
	},
	"denied": []string{
		"no_entry",
		"no_entry_sign",
	},
	"deny": []string{
		"negative_squared_cross_mark",
	},
	"deploy": []string{
		"ship",
	},
	"depressed": []string{
		"cry",
		"disappointed",
		"frowning_man",
		"frowning_woman",
		"pensive",
		"sob",
	},
	"desert": []string{
		"camel",
		"dromedary_camel",
	},
	"design": []string{
		"art",
	},
	"despise": []string{
		"rage",
	},
	"dessert": []string{
		"birthday",
		"cake",
		"candy",
		"chocolate_bar",
		"cookie",
		"custard",
		"dango",
		"doughnut",
		"ice_cream",
		"icecream",
		"pie",
		"shaved_ice",
	},
	"destination": []string{
		"koko",
	},
	"detective": []string{
		"female_detective",
		"mag",
		"mag_right",
		"male_detective",
	},
	"developer": []string{
		"man_technologist",
		"woman_technologist",
	},
	"devil": []string{
		"imp",
		"japanese_ogre",
		"smiling_imp",
	},
	"dhikr": []string{
		"prayer_beads",
	},
	"diagonal": []string{
		"arrow_lower_left",
		"arrow_lower_right",
		"arrow_upper_left",
		"arrow_upper_right",
	},
	"dial": []string{
		"control_knobs",
		"iphone",
		"phone",
		"telephone_receiver",
	},
	"diamond": []string{
		"gem",
		"ring",
	},
	"dice": []string{
		"game_die",
	},
	"die": []string{
		"coffin",
		"funeral_urn",
	},
	"dig": []string{
		"pick",
	},
	"ding": []string{
		"wind_chime",
	},
	"dinner": []string{
		"plate_with_cutlery",
	},
	"dinosaur": []string{
		"sauropod",
		"t-rex",
	},
	"diplodocus": []string{
		"sauropod",
	},
	"direction": []string{
		"arrow_backward",
		"arrow_double_down",
		"arrow_double_up",
		"arrow_down",
		"arrow_down_small",
		"arrow_forward",
		"arrow_heading_down",
		"arrow_heading_up",
		"arrow_lower_left",
		"arrow_lower_right",
		"arrow_right_hook",
		"arrow_up",
		"arrow_up_down",
		"arrow_up_small",
		"arrow_upper_left",
		"arrow_upper_right",
		"left_right_arrow",
		"point_down",
		"point_left",
		"point_right",
		"point_up",
		"point_up_2",
		"small_red_triangle",
		"small_red_triangle_down",
		"world_map",
	},
	"disabled": []string{
		"wheelchair",
	},
	"disallow": []string{
		"no_entry_sign",
	},
	"disappointed": []string{
		"slightly_frowning_face",
	},
	"disapproval": []string{
		"raised_eyebrow",
	},
	"disaster": []string{
		"ocean",
		"volcano",
	},
	"disbelief": []string{
		"man_facepalming",
		"raised_eyebrow",
		"woman_facepalming",
	},
	"disc": []string{
		"cd",
		"dvd",
	},
	"disco": []string{
		"crystal_ball",
	},
	"discouraged": []string{
		"frowning_man",
		"frowning_woman",
	},
	"disease": []string{
		"mask",
	},
	"disk": []string{
		"cd",
		"dvd",
		"minidisc",
	},
	"dislike": []string{
		"-1",
	},
	"display": []string{
		"computer",
	},
	"distilling": []string{
		"alembic",
	},
	"distrust": []string{
		"raised_eyebrow",
	},
	"divide": []string{
		"heavy_division_sign",
		"u5272",
	},
	"diy": []string{
		"wrench",
	},
	"dizzy": []string{
		"dizzy_face",
	},
	"dj": []string{
		"djibouti",
	},
	"dk": []string{
		"denmark",
	},
	"dm": []string{
		"dominica",
	},
	"doctor": []string{
		"hospital",
		"man_health_worker",
		"pill",
		"syringe",
		"woman_health_worker",
	},
	"documents": []string{
		"briefcase",
		"clipboard",
		"file_folder",
		"inbox_tray",
		"memo",
		"open_file_folder",
		"page_facing_up",
		"page_with_curl",
		"paperclip",
		"paperclips",
		"scroll",
	},
	"dog": []string{
		"paw_prints",
		"poodle",
	},
	"doge": []string{
		"dog2",
	},
	"dollar": []string{
		"credit_card",
		"currency_exchange",
		"euro",
		"money_mouth_face",
		"money_with_wings",
		"moneybag",
		"yen",
	},
	"dominican": []string{
		"dominican_republic",
	},
	"donut": []string{
		"doughnut",
	},
	"door": []string{
		"key",
		"old_key",
	},
	"dork": []string{
		"eyeglasses",
		"nerd_face",
	},
	"doubt": []string{
		"man_shrugging",
		"question",
		"woman_shrugging",
	},
	"doubts": []string{
		"grey_question",
	},
	"down": []string{
		"point_down",
	},
	"downtown": []string{
		"night_with_stars",
	},
	"dracula": []string{
		"man_vampire",
		"man_zombie",
	},
	"drama": []string{
		"performing_arts",
	},
	"draw": []string{
		"art",
		"curly_loop",
		"wavy_dash",
	},
	"drawing": []string{
		"crayon",
		"paintbrush",
		"straight_ruler",
	},
	"dream": []string{
		"thought_balloon",
		"zzz",
	},
	"dress": []string{
		"kimono",
	},
	"drink": []string{
		"beer",
		"beers",
		"champagne",
		"clinking_glasses",
		"cocktail",
		"cup_with_straw",
		"milk_glass",
		"non-potable_water",
		"sake",
		"tea",
		"tumbler_glass",
		"underage",
		"wine_glass",
	},
	"drip": []string{
		"droplet",
		"sweat_drops",
	},
	"driving": []string{
		"children_crossing",
		"vertical_traffic_light",
	},
	"drizzle": []string{
		"closed_umbrella",
	},
	"drug": []string{
		"pill",
	},
	"drugs": []string{
		"syringe",
	},
	"drumstick": []string{
		"meat_on_bone",
		"poultry_leg",
	},
	"drumsticks": []string{
		"drum",
	},
	"drunk": []string{
		"beer",
		"beers",
		"cocktail",
		"sake",
		"tumbler_glass",
		"wine_glass",
	},
	"dubious": []string{
		"unamused",
	},
	"dusk": []string{
		"clock6",
	},
	"dutch": []string{
		"sint_maarten",
	},
	"dvd": []string{
		"cd",
	},
	"dz": []string{
		"algeria",
	},
	"early": []string{
		"clock1",
		"clock10",
		"clock1030",
		"clock11",
		"clock1130",
		"clock12",
		"clock1230",
		"clock130",
		"clock2",
		"clock230",
		"clock3",
		"clock330",
		"clock4",
		"clock430",
		"clock5",
		"clock530",
		"clock6",
		"clock630",
		"clock7",
		"clock730",
		"clock8",
		"clock830",
		"clock9",
		"clock930",
	},
	"earth": []string{
		"globe_with_meridians",
	},
	"east": []string{
		"earth_asia",
	},
	"easter island": []string{
		"moyai",
	},
	"eat": []string{
		"plate_with_cutlery",
	},
	"ec": []string{
		"ecuador",
	},
	"economics": []string{
		"chart_with_downwards_trend",
		"chart_with_upwards_trend",
		"part_alternation_mark",
	},
	"education": []string{
		"mortar_board",
		"school",
		"school_satchel",
	},
	"ee": []string{
		"estonia",
	},
	"eg": []string{
		"egypt",
	},
	"egg": []string{
		"fried_egg",
		"hatching_chick",
	},
	"el": []string{
		"el_salvador",
	},
	"elder": []string{
		"older_adult",
		"older_man",
		"older_woman",
	},
	"election": []string{
		"ballot_box",
		"ballot_box_with_check",
		"white_check_mark",
	},
	"electricity": []string{
		"bulb",
	},
	"email": []string{
		"envelope_with_arrow",
		"european_post_office",
		"inbox_tray",
		"incoming_envelope",
		"love_letter",
		"mailbox",
		"mailbox_closed",
		"mailbox_with_mail",
		"mailbox_with_no_mail",
		"outbox_tray",
		"postbox",
	},
	"embarrassed": []string{
		"blush",
	},
	"embarrassing": []string{
		"hole",
	},
	"emergency": []string{
		"rotating_light",
		"sos",
	},
	"emirates": []string{
		"united_arab_emirates",
	},
	"empanada": []string{
		"dumpling",
	},
	"empty": []string{
		"u7a7a",
	},
	"energy": []string{
		"battery",
	},
	"enforcement": []string{
		"oncoming_police_car",
		"police_car",
		"policeman",
		"policewoman",
	},
	"engagement": []string{
		"ring",
	},
	"engineer": []string{
		"man_scientist",
		"man_technologist",
		"woman_scientist",
		"woman_technologist",
	},
	"england": []string{
		"pound",
		"uk",
	},
	"english": []string{
		"england",
		"uk",
	},
	"enter": []string{
		"leftwards_arrow_with_hook",
	},
	"enterprise": []string{
		"bank",
	},
	"entertainer": []string{
		"man_singer",
		"woman_singer",
	},
	"entrance": []string{
		"tickets",
	},
	"entry": []string{
		"door",
	},
	"envelope": []string{
		"love_letter",
		"post_office",
		"postbox",
	},
	"environment": []string{
		"mountain",
		"mountain_snow",
		"national_park",
		"recycle",
	},
	"equatorial": []string{
		"equatorial_guinea",
	},
	"er": []string{
		"eritrea",
	},
	"error": []string{
		"red_circle",
		"rotating_light",
		"warning",
	},
	"espresso": []string{
		"coffee",
	},
	"et": []string{
		"ethiopia",
	},
	"european": []string{
		"eu",
	},
	"evening": []string{
		"city_sunset",
		"crescent_moon",
		"first_quarter_moon",
		"first_quarter_moon_with_face",
		"full_moon",
		"full_moon_with_face",
		"last_quarter_moon",
		"last_quarter_moon_with_face",
		"new_moon",
		"new_moon_with_face",
		"night_with_stars",
		"waning_crescent_moon",
		"waning_gibbous_moon",
		"waxing_crescent_moon",
		"waxing_gibbous_moon",
	},
	"event": []string{
		"ticket",
	},
	"evict": []string{
		"derelict_house",
	},
	"evil": []string{
		"black_heart",
		"japanese_goblin",
		"skull_and_crossbones",
		"snake",
	},
	"evil_eye": []string{
		"metal",
	},
	"exam": []string{
		"100",
		"hourglass",
		"memo",
	},
	"exclamation": []string{
		"bangbang",
		"warning",
	},
	"exercise": []string{
		"bike",
		"biking_man",
		"biking_woman",
		"running_man",
		"running_woman",
		"sweat",
		"swimming_man",
		"swimming_woman",
		"weight_lifting_man",
		"weight_lifting_woman",
	},
	"exit": []string{
		"door",
	},
	"experiment": []string{
		"alembic",
		"microscope",
	},
	"expletive": []string{
		"symbols_over_mouth",
	},
	"explode": []string{
		"bomb",
		"boom",
	},
	"explosion": []string{
		"bomb",
		"boom",
	},
	"express": []string{
		"articulated_lorry",
	},
	"extinct": []string{
		"sauropod",
		"t-rex",
	},
	"eye": []string{
		"wink",
	},
	"eyeroll": []string{
		"roll_eyes",
	},
	"eyes": []string{
		"star_struck",
	},
	"eyesight": []string{
		"eyeglasses",
	},
	"f1": []string{
		"racing_car",
	},
	"face": []string{
		"angry",
		"anguished",
		"astonished",
		"blush",
		"clown_face",
		"cold_sweat",
		"confounded",
		"confused",
		"cowboy_hat_face",
		"cry",
		"dark_sunglasses",
		"disappointed",
		"disappointed_relieved",
		"drooling_face",
		"ear",
		"exploding_head",
		"expressionless",
		"eye",
		"fearful",
		"flushed",
		"fox_face",
		"frowning",
		"frowning_face",
		"grimacing",
		"grin",
		"grinning",
		"hand_over_mouth",
		"heart_eyes",
		"hugs",
		"hushed",
		"innocent",
		"joy",
		"kiss",
		"kissing",
		"kissing_closed_eyes",
		"kissing_heart",
		"kissing_smiling_eyes",
		"laughing",
		"lying_face",
		"mask",
		"money_mouth_face",
		"monocle",
		"nauseated_face",
		"nerd_face",
		"no_mouth",
		"open_mouth",
		"pensive",
		"persevere",
		"raised_eyebrow",
		"relaxed",
		"relieved",
		"rofl",
		"roll_eyes",
		"scream",
		"shushing",
		"sleeping",
		"sleepy",
		"slightly_frowning_face",
		"slightly_smiling_face",
		"smile",
		"smiley",
		"smirk",
		"sneezing_face",
		"sob",
		"star_struck",
		"stuck_out_tongue",
		"stuck_out_tongue_closed_eyes",
		"stuck_out_tongue_winking_eye",
		"sunglasses",
		"sweat",
		"sweat_smile",
		"symbols_over_mouth",
		"thinking",
		"triumph",
		"upside_down_face",
		"vomiting",
		"weary",
		"wink",
		"worried",
		"yum",
		"zany",
		"zipper_mouth_face",
	},
	"fail": []string{
		"poop",
		"white_flag",
	},
	"failure": []string{
		"chart_with_downwards_trend",
	},
	"fairness": []string{
		"balance_scale",
	},
	"faithful": []string{
		"dog",
		"dog2",
	},
	"falkland": []string{
		"falkland_islands",
	},
	"fall": []string{
		"jack_o_lantern",
		"maple_leaf",
		"partly_sunny",
		"sunflower",
	},
	"fancy": []string{
		"diamond_shape_with_a_dot_inside",
	},
	"farewell": []string{
		"wave",
	},
	"farming": []string{
		"tractor",
	},
	"faroe": []string{
		"faroe_islands",
	},
	"fart": []string{
		"dash",
	},
	"fashion": []string{
		"bikini",
		"boot",
		"dress",
		"eyeglasses",
		"handbag",
		"high_heel",
		"jeans",
		"kimono",
		"lipstick",
		"mans_shoe",
		"nail_care",
		"necktie",
		"purse",
		"ring",
		"sandal",
		"tshirt",
		"womans_clothes",
		"womans_hat",
	},
	"faso": []string{
		"burkina_faso",
	},
	"fast": []string{
		"bullettrain_front",
		"dash",
		"motorcycle",
		"racing_car",
		"zap",
	},
	"fast food": []string{
		"fries",
		"hamburger",
	},
	"father": []string{
		"family_man_woman_boy",
		"man",
	},
	"father christmas": []string{
		"santa",
	},
	"faucet": []string{
		"droplet",
		"non-potable_water",
		"potable_water",
	},
	"favorite": []string{
		"bookmark",
		"bookmark_tabs",
	},
	"federated": []string{
		"micronesia",
	},
	"federation": []string{
		"ru",
	},
	"feet": []string{
		"footprints",
		"paw_prints",
		"walking_man",
		"walking_woman",
	},
	"female": []string{
		"basketball_woman",
		"biking_woman",
		"bikini",
		"blonde_woman",
		"bowing_woman",
		"climbing_woman",
		"construction_worker_woman",
		"dancer",
		"dancing_women",
		"female_detective",
		"frowning_woman",
		"girl",
		"golfing_woman",
		"guardswoman",
		"haircut_woman",
		"high_heel",
		"kimono",
		"lipstick",
		"massage_woman",
		"mermaid",
		"mountain_biking_woman",
		"mrs_claus",
		"no_good_woman",
		"ok_woman",
		"older_woman",
		"policewoman",
		"pouting_woman",
		"princess",
		"raising_hand_woman",
		"rowing_woman",
		"running_woman",
		"sorceress",
		"surfing_woman",
		"swimming_woman",
		"tipping_hand_woman",
		"two_women_holding_hands",
		"walking_woman",
		"weight_lifting_woman",
		"woman",
		"woman_elf",
		"woman_facepalming",
		"woman_fairy",
		"woman_genie",
		"woman_in_lotus_position",
		"woman_in_steamy_room",
		"woman_shrugging",
		"woman_vampire",
		"woman_with_headscarf",
		"woman_with_turban",
		"woman_zombie",
		"womans_clothes",
		"womans_hat",
		"womens",
	},
	"fencing": []string{
		"person_fencing",
	},
	"ferry": []string{
		"anchor",
		"passenger_ship",
	},
	"festival": []string{
		"christmas_tree",
		"circus_tent",
		"confetti_ball",
		"fireworks",
		"santa",
	},
	"fever": []string{
		"face_with_thermometer",
	},
	"fi": []string{
		"finland",
	},
	"fighting": []string{
		"boxing_glove",
	},
	"filing": []string{
		"file_cabinet",
	},
	"film": []string{
		"cinema",
		"clapper",
		"movie_camera",
		"video_camera",
	},
	"films": []string{
		"popcorn",
	},
	"find": []string{
		"mag",
		"mag_right",
	},
	"finger": []string{
		"nail_care",
	},
	"fingers": []string{
		"fist",
		"fu",
		"love_you",
		"metal",
		"ok_hand",
		"open_hands",
		"point_down",
		"point_left",
		"point_right",
		"point_up",
		"point_up_2",
		"raised_back_of_hand",
		"raised_hand",
		"raised_hand_with_fingers_splayed",
		"v",
		"vulcan_salute",
	},
	"finishline": []string{
		"checkered_flag",
	},
	"fins": []string{
		"dolphin",
		"shark",
	},
	"fire": []string{
		"candle",
		"name_badge",
	},
	"fireman": []string{
		"man_firefighter",
		"woman_firefighter",
	},
	"fireworks": []string{
		"sparkle",
	},
	"first": []string{
		"1st_place_medal",
	},
	"fish": []string{
		"dolphin",
		"flags",
		"shark",
		"sushi",
	},
	"fist": []string{
		"facepunch",
	},
	"fistbump": []string{
		"fist_left",
		"fist_right",
	},
	"fix": []string{
		"nut_and_bolt",
		"wrench",
	},
	"fj": []string{
		"fiji",
	},
	"flag": []string{
		"afghanistan",
		"aland_islands",
		"albania",
		"algeria",
		"american_samoa",
		"andorra",
		"angola",
		"anguilla",
		"antarctica",
		"antigua_barbuda",
		"argentina",
		"armenia",
		"aruba",
		"australia",
		"austria",
		"azerbaijan",
		"bahamas",
		"bahrain",
		"bangladesh",
		"barbados",
		"belarus",
		"belgium",
		"belize",
		"benin",
		"bermuda",
		"bhutan",
		"bolivia",
		"bosnia_herzegovina",
		"botswana",
		"brazil",
		"british_indian_ocean_territory",
		"british_virgin_islands",
		"brunei",
		"bulgaria",
		"burkina_faso",
		"burundi",
		"cambodia",
		"cameroon",
		"canada",
		"canary_islands",
		"cape_verde",
		"caribbean_netherlands",
		"cayman_islands",
		"central_african_republic",
		"chad",
		"chile",
		"christmas_island",
		"cn",
		"cocos_islands",
		"colombia",
		"comoros",
		"congo_brazzaville",
		"congo_kinshasa",
		"cook_islands",
		"costa_rica",
		"cote_divoire",
		"croatia",
		"cuba",
		"curacao",
		"cyprus",
		"czech_republic",
		"de",
		"denmark",
		"djibouti",
		"dominica",
		"dominican_republic",
		"ecuador",
		"egypt",
		"el_salvador",
		"england",
		"equatorial_guinea",
		"eritrea",
		"es",
		"estonia",
		"ethiopia",
		"eu",
		"falkland_islands",
		"faroe_islands",
		"fiji",
		"finland",
		"fr",
		"french_guiana",
		"french_polynesia",
		"french_southern_territories",
		"gabon",
		"gambia",
		"georgia",
		"ghana",
		"gibraltar",
		"golf",
		"greece",
		"greenland",
		"grenada",
		"guadeloupe",
		"guam",
		"guatemala",
		"guernsey",
		"guinea",
		"guinea_bissau",
		"guyana",
		"haiti",
		"honduras",
		"hong_kong",
		"hungary",
		"iceland",
		"india",
		"indonesia",
		"iran",
		"iraq",
		"ireland",
		"isle_of_man",
		"israel",
		"it",
		"jamaica",
		"jersey",
		"jordan",
		"jp",
		"kazakhstan",
		"kenya",
		"kiribati",
		"kosovo",
		"kr",
		"kuwait",
		"kyrgyzstan",
		"laos",
		"latvia",
		"lebanon",
		"lesotho",
		"liberia",
		"libya",
		"liechtenstein",
		"lithuania",
		"luxembourg",
		"macau",
		"macedonia",
		"madagascar",
		"malawi",
		"malaysia",
		"maldives",
		"mali",
		"malta",
		"marshall_islands",
		"martinique",
		"mauritania",
		"mauritius",
		"mayotte",
		"mexico",
		"micronesia",
		"moldova",
		"monaco",
		"mongolia",
		"montenegro",
		"montserrat",
		"morocco",
		"mozambique",
		"myanmar",
		"namibia",
		"nauru",
		"nepal",
		"netherlands",
		"new_caledonia",
		"new_zealand",
		"nicaragua",
		"niger",
		"nigeria",
		"niue",
		"norfolk_island",
		"north_korea",
		"northern_mariana_islands",
		"norway",
		"oman",
		"pakistan",
		"palau",
		"palestinian_territories",
		"panama",
		"papua_new_guinea",
		"paraguay",
		"peru",
		"philippines",
		"pitcairn_islands",
		"poland",
		"portugal",
		"puerto_rico",
		"qatar",
		"rainbow_flag",
		"reunion",
		"romania",
		"ru",
		"rwanda",
		"samoa",
		"san_marino",
		"sao_tome_principe",
		"saudi_arabia",
		"scotland",
		"senegal",
		"serbia",
		"seychelles",
		"sierra_leone",
		"singapore",
		"sint_maarten",
		"slovakia",
		"slovenia",
		"solomon_islands",
		"somalia",
		"south_africa",
		"south_georgia_south_sandwich_islands",
		"south_sudan",
		"sri_lanka",
		"st_barthelemy",
		"st_helena",
		"st_kitts_nevis",
		"st_lucia",
		"st_pierre_miquelon",
		"st_vincent_grenadines",
		"sudan",
		"suriname",
		"swaziland",
		"sweden",
		"switzerland",
		"syria",
		"taiwan",
		"tajikistan",
		"tanzania",
		"thailand",
		"timor_leste",
		"togo",
		"tokelau",
		"tonga",
		"tr",
		"trinidad_tobago",
		"tunisia",
		"turkmenistan",
		"turks_caicos_islands",
		"tuvalu",
		"uganda",
		"uk",
		"ukraine",
		"united_arab_emirates",
		"uruguay",
		"us",
		"us_virgin_islands",
		"uzbekistan",
		"vanuatu",
		"vatican_city",
		"venezuela",
		"vietnam",
		"wales",
		"wallis_futuna",
		"western_sahara",
		"yemen",
		"zambia",
		"zimbabwe",
	},
	"flame": []string{
		"fire",
	},
	"flapjacks": []string{
		"pancakes",
	},
	"flatbread": []string{
		"stuffed_flatbread",
	},
	"flattered": []string{
		"flushed",
	},
	"flex": []string{
		"muscle",
	},
	"flight": []string{
		"airplane",
		"flight_arrival",
		"flight_departure",
		"seat",
		"small_airplane",
	},
	"flip flops": []string{
		"sandal",
	},
	"flipped": []string{
		"upside_down_face",
	},
	"flipper": []string{
		"dolphin",
	},
	"flipping": []string{
		"fu",
	},
	"floor": []string{
		"rofl",
	},
	"flower": []string{
		"cherry_blossom",
		"rosette",
		"wilted_flower",
	},
	"flowers": []string{
		"blossom",
		"bouquet",
		"hibiscus",
		"rose",
		"tulip",
	},
	"flushed": []string{
		"blush",
	},
	"fly": []string{
		"airplane",
		"bird",
		"helicopter",
		"rocket",
		"seat",
		"small_airplane",
	},
	"food": []string{
		"avocado",
		"baby_bottle",
		"bacon",
		"baguette_bread",
		"banana",
		"bento",
		"birthday",
		"blowfish",
		"bowl_with_spoon",
		"bread",
		"broccoli",
		"burrito",
		"cake",
		"canned_food",
		"carrot",
		"cheese",
		"cherries",
		"chestnut",
		"chocolate_bar",
		"chopsticks",
		"coconut",
		"cookie",
		"corn",
		"croissant",
		"cucumber",
		"curry",
		"custard",
		"dango",
		"doughnut",
		"dumpling",
		"egg",
		"eggplant",
		"fish",
		"fish_cake",
		"fishing_pole_and_fish",
		"fortune_cookie",
		"fried_egg",
		"fried_shrimp",
		"grapes",
		"green_salad",
		"hot_pepper",
		"hotdog",
		"ice_cream",
		"icecream",
		"kiwi_fruit",
		"lollipop",
		"meat_on_bone",
		"melon",
		"oden",
		"pancakes",
		"peach",
		"peanuts",
		"pear",
		"pie",
		"pineapple",
		"pizza",
		"plate_with_cutlery",
		"popcorn",
		"potato",
		"poultry_leg",
		"pretzel",
		"ramen",
		"rice",
		"rice_ball",
		"rice_cracker",
		"sandwich",
		"shallow_pan_of_food",
		"spaghetti",
		"steak",
		"stew",
		"strawberry",
		"stuffed_flatbread",
		"sushi",
		"sweet_potato",
		"taco",
		"takeout_box",
		"tangerine",
		"tomato",
		"watermelon",
	},
	"football": []string{
		"soccer",
	},
	"footprints": []string{
		"paw_prints",
	},
	"forbid": []string{
		"name_badge",
		"no_entry_sign",
	},
	"forbidden": []string{
		"u7981",
	},
	"formal": []string{
		"necktie",
	},
	"formula": []string{
		"racing_car",
	},
	"fortune_teller": []string{
		"crystal_ball",
	},
	"forward": []string{
		"arrow_up_small",
		"next_track_button",
	},
	"frame": []string{
		"black_square_button",
	},
	"france": []string{
		"fr",
	},
	"frankfurter": []string{
		"hotdog",
	},
	"french": []string{
		"baguette_bread",
		"croissant",
		"fr",
		"french_guiana",
		"french_polynesia",
		"french_southern_territories",
	},
	"fresh": []string{
		"fountain",
	},
	"friend": []string{
		"dog",
		"dog2",
	},
	"friendship": []string{
		"two_men_holding_hands",
		"two_women_holding_hands",
	},
	"frown": []string{
		"frowning_face",
	},
	"frowning": []string{
		"slightly_frowning_face",
	},
	"frozen": []string{
		"snowman",
		"snowman_with_snow",
	},
	"fruit": []string{
		"apple",
		"avocado",
		"banana",
		"broccoli",
		"cherries",
		"coconut",
		"cucumber",
		"grapes",
		"green_apple",
		"kiwi_fruit",
		"lemon",
		"melon",
		"peach",
		"pear",
		"pineapple",
		"strawberry",
		"tangerine",
		"tomato",
		"watermelon",
	},
	"fruit machine": []string{
		"slot_machine",
	},
	"frustrated": []string{
		"angry",
		"roll_eyes",
		"tired_face",
		"weary",
	},
	"ftw": []string{
		"trophy",
	},
	"full": []string{
		"u6e80",
	},
	"fun": []string{
		"bowling",
		"dancer",
		"man_dancing",
		"roller_coaster",
	},
	"funeral": []string{
		"coffin",
	},
	"funny": []string{
		"smile",
		"smiley",
	},
	"futuna": []string{
		"wallis_futuna",
	},
	"future": []string{
		"satellite",
	},
	"ga": []string{
		"gabon",
	},
	"gadgets": []string{
		"camera",
		"camera_flash",
		"headphones",
		"iphone",
	},
	"gamble": []string{
		"racehorse",
		"slot_machine",
	},
	"gambling": []string{
		"horse_racing",
	},
	"game": []string{
		"8ball",
		"black_joker",
		"dart",
		"flower_playing_cards",
		"joystick",
		"mahjong",
		"space_invader",
	},
	"garbage": []string{
		"do_not_litter",
		"recycle",
		"wastebasket",
	},
	"gardener": []string{
		"man_farmer",
		"woman_farmer",
	},
	"gas": []string{
		"triumph",
	},
	"gas station": []string{
		"fuelpump",
	},
	"gay": []string{
		"rainbow_flag",
	},
	"gb": []string{
		"guardsman",
		"guardswoman",
	},
	"gd": []string{
		"grenada",
	},
	"ge": []string{
		"georgia",
	},
	"geek": []string{
		"eyeglasses",
		"nerd_face",
	},
	"gem": []string{
		"diamond_shape_with_a_dot_inside",
		"large_blue_diamond",
		"large_orange_diamond",
		"ring",
		"small_blue_diamond",
		"small_orange_diamond",
	},
	"gender": []string{
		"mens",
		"restroom",
		"womens",
	},
	"gender-neutral": []string{
		"adult",
		"child",
		"older_adult",
	},
	"gentleman": []string{
		"tophat",
	},
	"georgia": []string{
		"south_georgia_south_sandwich_islands",
	},
	"german": []string{
		"de",
	},
	"gesture": []string{
		"call_me_hand",
		"love_you",
		"palms_up",
		"raised_hands",
		"wave",
	},
	"gesundheit": []string{
		"sneezing_face",
	},
	"get": []string{
		"ideograph_advantage",
	},
	"gg": []string{
		"guernsey",
	},
	"gh": []string{
		"ghana",
	},
	"gi": []string{
		"gibraltar",
	},
	"gift": []string{
		"package",
	},
	"girl": []string{
		"baby",
		"bikini",
		"blonde_woman",
		"bowing_woman",
		"dancer",
		"frowning_woman",
		"haircut_woman",
		"lipstick",
		"massage_woman",
		"no_good_woman",
		"ok_woman",
		"pouting_woman",
		"princess",
		"raising_hand_woman",
		"ribbon",
		"tipping_hand_woman",
		"woman_facepalming",
		"woman_shrugging",
	},
	"girls": []string{
		"dancing_women",
		"woman",
	},
	"give up": []string{
		"white_flag",
	},
	"gl": []string{
		"greenland",
	},
	"glad": []string{
		"laughing",
	},
	"glass": []string{
		"tumbler_glass",
	},
	"glbt": []string{
		"rainbow_flag",
	},
	"globe": []string{
		"earth_africa",
		"earth_americas",
		"earth_asia",
	},
	"glyphs": []string{
		"symbols",
	},
	"gm": []string{
		"gambia",
	},
	"gn": []string{
		"equatorial_guinea",
		"guinea",
	},
	"goblin": []string{
		"japanese_goblin",
	},
	"gokart": []string{
		"checkered_flag",
	},
	"good": []string{
		"+1",
		"accept",
		"chart_with_upwards_trend",
		"crossed_fingers",
		"meat_on_bone",
		"ok",
		"sparkle",
		"sparkles",
		"star2",
	},
	"good morning": []string{
		"city_sunrise",
	},
	"goodbye": []string{
		"wave",
	},
	"goofy": []string{
		"zany",
	},
	"gp": []string{
		"guadeloupe",
	},
	"gps": []string{
		"artificial_satellite",
	},
	"gr": []string{
		"greece",
	},
	"graduate": []string{
		"man_student",
		"woman_student",
	},
	"graduation": []string{
		"mortar_board",
	},
	"graph": []string{
		"bar_chart",
		"chart",
		"chart_with_downwards_trend",
		"chart_with_upwards_trend",
		"part_alternation_mark",
	},
	"grasp": []string{
		"fist",
	},
	"grass": []string{
		"herb",
		"leaves",
		"seedling",
	},
	"graveyard": []string{
		"coffin",
	},
	"gray": []string{
		"grey_exclamation",
		"grey_question",
		"waxing_gibbous_moon",
	},
	"great": []string{
		"uk",
	},
	"green": []string{
		"dragon",
		"dragon_face",
		"nauseated_face",
		"tea",
		"tennis",
	},
	"green-square": []string{
		"chart",
		"eight_spoked_asterisk",
		"negative_squared_cross_mark",
		"sparkle",
		"u6307",
		"white_check_mark",
	},
	"grenadines": []string{
		"st_vincent_grenadines",
	},
	"grimace": []string{
		"grimacing",
	},
	"grin": []string{
		"grinning",
	},
	"grinning": []string{
		"star_struck",
	},
	"groceries": []string{
		"convenience_store",
	},
	"groom": []string{
		"man_in_tuxedo",
		"wedding",
	},
	"gross": []string{
		"nauseated_face",
	},
	"group": []string{
		"busts_in_silhouette",
	},
	"gt": []string{
		"guatemala",
	},
	"gu": []string{
		"guam",
	},
	"guiana": []string{
		"french_guiana",
	},
	"guinea": []string{
		"papua_new_guinea",
	},
	"gust": []string{
		"wind_face",
	},
	"guy": []string{
		"blonde_man",
		"boy",
		"construction_worker_man",
		"guardsman",
		"man",
	},
	"gw": []string{
		"guinea_bissau",
	},
	"gy": []string{
		"guyana",
	},
	"gymnastics": []string{
		"man_cartwheeling",
		"woman_cartwheeling",
	},
	"gyro": []string{
		"stuffed_flatbread",
	},
	"haha": []string{
		"joy",
		"joy_cat",
		"laughing",
		"rofl",
		"see_no_evil",
		"smile",
		"smiley",
	},
	"hair": []string{
		"barber",
	},
	"halloween": []string{
		"ghost",
		"izakaya_lantern",
		"jack_o_lantern",
		"japanese_ogre",
	},
	"halo": []string{
		"angel",
		"innocent",
	},
	"hand": []string{
		"+1",
		"-1",
		"facepunch",
		"fist",
		"fist_left",
		"fist_right",
		"fu",
		"love_you",
		"metal",
		"muscle",
		"point_down",
		"point_left",
		"point_right",
		"point_up",
		"point_up_2",
		"raised_hand_with_fingers_splayed",
		"v",
		"vulcan_salute",
	},
	"hands": []string{
		"call_me_hand",
		"clap",
		"gloves",
		"open_hands",
		"palms_up",
		"raised_hands",
		"wave",
	},
	"handy": []string{
		"nut_and_bolt",
	},
	"hankey": []string{
		"poop",
	},
	"hanukkah": []string{
		"menorah",
	},
	"happiness": []string{
		"relaxed",
		"relieved",
	},
	"happy": []string{
		"blush",
		"grin",
		"grinning",
		"joy",
		"joy_cat",
		"laughing",
		"rainbow",
		"smile",
		"smiley",
		"smiley_cat",
		"sweat_smile",
		"wink",
		"yum",
	},
	"happytears": []string{
		"joy",
	},
	"hat": []string{
		"cowboy_hat_face",
		"mortar_board",
	},
	"hate": []string{
		"rage",
	},
	"have": []string{
		"u6709",
	},
	"head": []string{
		"massage_man",
		"massage_woman",
	},
	"headline": []string{
		"newspaper",
		"newspaper_roll",
	},
	"health": []string{
		"ambulance",
		"hospital",
		"pill",
		"syringe",
	},
	"healthcare": []string{
		"man_health_worker",
		"woman_health_worker",
	},
	"healthy": []string{
		"green_salad",
	},
	"hear": []string{
		"ear",
	},
	"heart": []string{
		"broken_heart",
		"cupid",
		"heart_eyes",
		"heart_eyes_cat",
		"heartbeat",
		"two_hearts",
	},
	"heartbreak": []string{
		"broken_heart",
	},
	"heaven": []string{
		"angel",
		"innocent",
	},
	"heavy_exclamation_mark": []string{
		"exclamation",
	},
	"helena": []string{
		"st_helena",
	},
	"hello": []string{
		"wave",
	},
	"hellokitty": []string{
		"no_mouth",
	},
	"help": []string{
		"sos",
	},
	"here": []string{
		"koko",
		"pushpin",
		"round_pushpin",
	},
	"herzegovina": []string{
		"bosnia_herzegovina",
	},
	"hexagram": []string{
		"six_pointed_star",
	},
	"hi": []string{
		"wave",
	},
	"high": []string{
		"up",
	},
	"highfive": []string{
		"pray",
		"raised_hand",
	},
	"highway": []string{
		"motorway",
	},
	"hijab": []string{
		"woman_with_headscarf",
	},
	"hinduism": []string{
		"man_with_turban",
		"om",
		"wheel_of_dharma",
		"woman_with_turban",
	},
	"hippie": []string{
		"peace_symbol",
	},
	"hipster": []string{
		"bike",
		"biking_man",
		"biking_woman",
	},
	"hiss": []string{
		"snake",
	},
	"history": []string{
		"classical_building",
		"european_castle",
		"scroll",
	},
	"hit": []string{
		"facepunch",
	},
	"hmmm": []string{
		"confused",
		"thinking",
	},
	"hn": []string{
		"honduras",
	},
	"hobby": []string{
		"8ball",
		"climbing_man",
		"climbing_woman",
		"fishing_pole_and_fish",
		"rowing_man",
		"rowing_woman",
	},
	"hole": []string{
		"golf",
	},
	"home": []string{
		"family_man_boy",
		"family_man_boy_boy",
		"family_man_girl",
		"family_man_girl_boy",
		"family_man_girl_girl",
		"family_man_man_boy",
		"family_man_man_boy_boy",
		"family_man_man_girl",
		"family_man_man_girl_boy",
		"family_man_man_girl_girl",
		"family_man_woman_boy",
		"family_man_woman_boy_boy",
		"family_man_woman_girl",
		"family_man_woman_girl_boy",
		"family_man_woman_girl_girl",
		"family_woman_boy",
		"family_woman_boy_boy",
		"family_woman_girl",
		"family_woman_girl_boy",
		"family_woman_girl_girl",
		"family_woman_woman_boy",
		"family_woman_woman_boy_boy",
		"family_woman_woman_girl",
		"family_woman_woman_girl_boy",
		"family_woman_woman_girl_girl",
		"house",
		"house_with_garden",
	},
	"homosexual": []string{
		"rainbow_flag",
	},
	"honey": []string{
		"honeybee",
	},
	"hong": []string{
		"hong_kong",
	},
	"hooray": []string{
		"raised_hands",
	},
	"hoot": []string{
		"owl",
	},
	"hope": []string{
		"pray",
	},
	"horizontal": []string{
		"left_right_arrow",
	},
	"horn": []string{
		"rhinoceros",
	},
	"horns": []string{
		"deer",
		"imp",
		"smiling_imp",
	},
	"hospital": []string{
		"ambulance",
		"syringe",
	},
	"hot": []string{
		"camel",
		"curry",
		"dromedary_camel",
		"fire",
		"ice_cream",
		"icecream",
		"shaved_ice",
		"sweat",
		"sweat_smile",
		"thermometer",
	},
	"hotcakes": []string{
		"pancakes",
	},
	"house": []string{
		"door",
	},
	"hover": []string{
		"business_suit_levitating",
	},
	"hr": []string{
		"croatia",
	},
	"ht": []string{
		"haiti",
	},
	"hu": []string{
		"hungary",
	},
	"hug": []string{
		"hugs",
	},
	"huh": []string{
		"confused",
		"fearful",
		"grey_question",
	},
	"human": []string{
		"basketball_man",
		"basketball_woman",
		"bust_in_silhouette",
		"busts_in_silhouette",
		"construction_worker_man",
		"construction_worker_woman",
		"couple",
		"couple_with_heart_man_man",
		"couple_with_heart_woman_man",
		"couple_with_heart_woman_woman",
		"family_man_boy",
		"family_man_boy_boy",
		"family_man_girl",
		"family_man_girl_boy",
		"family_man_girl_girl",
		"family_man_man_boy",
		"family_man_man_boy_boy",
		"family_man_man_girl",
		"family_man_man_girl_boy",
		"family_man_man_girl_girl",
		"family_man_woman_boy",
		"family_man_woman_boy_boy",
		"family_man_woman_girl",
		"family_man_woman_girl_boy",
		"family_man_woman_girl_girl",
		"family_woman_boy",
		"family_woman_boy_boy",
		"family_woman_girl",
		"family_woman_girl_boy",
		"family_woman_girl_girl",
		"family_woman_woman_boy",
		"family_woman_woman_boy_boy",
		"family_woman_woman_girl",
		"family_woman_woman_girl_boy",
		"family_woman_woman_girl_girl",
		"female_detective",
		"male_detective",
		"man_artist",
		"man_astronaut",
		"man_cook",
		"man_factory_worker",
		"man_farmer",
		"man_firefighter",
		"man_health_worker",
		"man_judge",
		"man_mechanic",
		"man_office_worker",
		"man_pilot",
		"man_scientist",
		"man_singer",
		"man_student",
		"man_teacher",
		"man_technologist",
		"mountain_biking_man",
		"mountain_biking_woman",
		"ok_man",
		"ok_woman",
		"older_adult",
		"older_man",
		"older_woman",
		"put_litter_in_its_place",
		"speaking_head",
		"swimming_man",
		"swimming_woman",
		"tipping_hand_man",
		"tipping_hand_woman",
		"two_men_holding_hands",
		"two_women_holding_hands",
		"walking_man",
		"walking_woman",
		"woman_artist",
		"woman_astronaut",
		"woman_cook",
		"woman_factory_worker",
		"woman_farmer",
		"woman_firefighter",
		"woman_health_worker",
		"woman_judge",
		"woman_mechanic",
		"woman_office_worker",
		"woman_pilot",
		"woman_scientist",
		"woman_singer",
		"woman_student",
		"woman_teacher",
		"woman_technologist",
	},
	"hump": []string{
		"camel",
		"dromedary_camel",
	},
	"hundred": []string{
		"100",
	},
	"hurricane": []string{
		"cyclone",
	},
	"hurt": []string{
		"face_with_head_bandage",
	},
	"i18n": []string{
		"globe_with_meridians",
	},
	"icon": []string{
		"black_large_square",
		"black_medium_small_square",
		"black_medium_square",
		"black_small_square",
		"large_blue_circle",
		"ng",
		"white_large_square",
		"white_medium_small_square",
		"white_medium_square",
		"white_small_square",
	},
	"idea": []string{
		"bulb",
	},
	"ie": []string{
		"ireland",
	},
	"ikea": []string{
		"wrench",
	},
	"il": []string{
		"israel",
	},
	"ill": []string{
		"mask",
		"nauseated_face",
	},
	"impressed": []string{
		"open_mouth",
	},
	"in": []string{
		"india",
	},
	"inbox": []string{
		"e-mail",
		"email",
		"incoming_envelope",
		"mailbox",
		"mailbox_closed",
		"mailbox_with_mail",
		"mailbox_with_no_mail",
		"outbox_tray",
	},
	"incoming": []string{
		"calling",
	},
	"increase": []string{
		"heavy_plus_sign",
	},
	"indian": []string{
		"british_indian_ocean_territory",
		"curry",
		"man_with_turban",
		"woman_with_turban",
	},
	"indifference": []string{
		"confused",
		"neutral_face",
		"unamused",
	},
	"indifferent": []string{
		"expressionless",
		"man_shrugging",
		"woman_shrugging",
	},
	"industrial": []string{
		"man_factory_worker",
		"woman_factory_worker",
	},
	"industry": []string{
		"factory",
	},
	"infatuation": []string{
		"heart_eyes",
		"kissing",
		"kissing_closed_eyes",
		"kissing_heart",
		"kissing_smiling_eyes",
	},
	"info": []string{
		"put_litter_in_its_place",
	},
	"information": []string{
		"page_facing_up",
		"tipping_hand_man",
		"tipping_hand_woman",
	},
	"injured": []string{
		"face_with_head_bandage",
	},
	"ink": []string{
		"printer",
	},
	"input": []string{
		"black_square_button",
		"keyboard",
		"radio_button",
		"white_square_button",
	},
	"insect": []string{
		"ant",
		"beetle",
		"bug",
		"butterfly",
		"honeybee",
		"spider_web",
	},
	"instructor": []string{
		"man_teacher",
		"woman_teacher",
	},
	"instrument": []string{
		"drum",
		"guitar",
		"musical_keyboard",
		"postal_horn",
		"saxophone",
		"violin",
	},
	"intelligent": []string{
		"brain",
	},
	"international": []string{
		"earth_africa",
		"earth_americas",
		"earth_asia",
		"globe_with_meridians",
	},
	"internet": []string{
		"globe_with_meridians",
		"signal_strength",
	},
	"interstate": []string{
		"motorway",
	},
	"interweb": []string{
		"globe_with_meridians",
	},
	"ip": []string{
		"copyright",
	},
	"iphone": []string{
		"calling",
		"no_mobile_phones",
	},
	"iq": []string{
		"iraq",
	},
	"iran,": []string{
		"iran",
	},
	"ireland": []string{
		"uk",
	},
	"irish": []string{
		"four_leaf_clover",
		"shamrock",
	},
	"is": []string{
		"iceland",
	},
	"islam": []string{
		"kaaba",
		"mosque",
		"star_and_crescent",
	},
	"islamic": []string{
		"iran",
	},
	"island": []string{
		"christmas_island",
		"norfolk_island",
	},
	"islands": []string{
		"aland_islands",
		"british_virgin_islands",
		"canary_islands",
		"cayman_islands",
		"cocos_islands",
		"cook_islands",
		"falkland_islands",
		"faroe_islands",
		"marshall_islands",
		"northern_mariana_islands",
		"solomon_islands",
		"south_georgia_south_sandwich_islands",
		"turks_caicos_islands",
		"us_virgin_islands",
	},
	"isle": []string{
		"isle_of_man",
	},
	"issue": []string{
		"warning",
	},
	"italian": []string{
		"spaghetti",
	},
	"italy": []string{
		"it",
	},
	"ivory": []string{
		"cote_divoire",
	},
	"jacket": []string{
		"coat",
	},
	"jainism": []string{
		"om",
		"wheel_of_dharma",
	},
	"japan": []string{
		"fish_cake",
		"rice_scene",
		"shinto_shrine",
	},
	"japanese": []string{
		"bento",
		"congratulations",
		"crossed_flags",
		"dango",
		"dolls",
		"flags",
		"japan",
		"japanese_goblin",
		"japanese_ogre",
		"jp",
		"kimono",
		"koko",
		"mount_fuji",
		"oden",
		"ramen",
		"rice_ball",
		"rice_cracker",
		"sa",
		"sake",
		"sushi",
		"tokyo_tower",
		"u5408",
		"u55b6",
		"u6708",
		"u6e80",
		"u7121",
		"u7533",
		"u7981",
		"u7a7a",
		"white_flower",
		"yen",
	},
	"jar": []string{
		"amphora",
	},
	"jaws": []string{
		"shark",
	},
	"jazz": []string{
		"saxophone",
	},
	"je": []string{
		"jersey",
	},
	"jewel": []string{
		"diamond_shape_with_a_dot_inside",
		"large_blue_diamond",
		"large_orange_diamond",
		"small_blue_diamond",
		"small_orange_diamond",
	},
	"jewelry": []string{
		"gem",
		"ring",
	},
	"jewish": []string{
		"menorah",
		"six_pointed_star",
		"synagogue",
	},
	"jm": []string{
		"jamaica",
	},
	"jo": []string{
		"jordan",
	},
	"job": []string{
		"briefcase",
	},
	"join": []string{
		"u5408",
	},
	"joint": []string{
		"smoking",
	},
	"joy": []string{
		"blush",
		"grin",
		"grinning",
		"laughing",
		"smile",
		"smiley",
		"yum",
	},
	"judaism": []string{
		"star_of_david",
		"synagogue",
	},
	"judo": []string{
		"martial_arts_uniform",
	},
	"juggle": []string{
		"man_juggling",
		"woman_juggling",
	},
	"jump": []string{
		"business_suit_levitating",
	},
	"justice": []string{
		"man_judge",
		"woman_judge",
	},
	"kamaboko": []string{
		"fish_cake",
	},
	"kanji": []string{
		"accept",
		"congratulations",
		"ideograph_advantage",
		"mahjong",
		"secret",
		"u5272",
		"u5408",
		"u6307",
		"u6708",
		"u6709",
		"u6e80",
		"u7121",
		"u7533",
		"u7981",
		"u7a7a",
	},
	"karate": []string{
		"martial_arts_uniform",
	},
	"katakana": []string{
		"koko",
		"sa",
	},
	"kawaii": []string{
		"grin",
	},
	"ke": []string{
		"kenya",
	},
	"keeling": []string{
		"cocos_islands",
	},
	"keycap": []string{
		"asterisk",
	},
	"kg": []string{
		"kyrgyzstan",
	},
	"kh": []string{
		"cambodia",
	},
	"ki": []string{
		"kiribati",
	},
	"kick": []string{
		"kick_scooter",
	},
	"kills": []string{
		"smoking",
	},
	"kimono": []string{
		"dolls",
	},
	"king": []string{
		"crown",
		"prince",
	},
	"kingdom": []string{
		"uk",
	},
	"kiss": []string{
		"kissing",
		"kissing_cat",
		"kissing_closed_eyes",
		"kissing_heart",
		"kissing_smiling_eyes",
		"lips",
	},
	"kitchen": []string{
		"fork_and_knife",
		"fried_egg",
		"hocho",
		"honey_pot",
		"spoon",
	},
	"kitten": []string{
		"cat",
	},
	"kitts": []string{
		"st_kitts_nevis",
	},
	"km": []string{
		"comoros",
	},
	"knife": []string{
		"hocho",
	},
	"knowledge": []string{
		"blue_book",
		"closed_book",
		"green_book",
		"open_book",
		"orange_book",
	},
	"kod": []string{
		"crown",
	},
	"koinobori": []string{
		"flags",
	},
	"kong": []string{
		"hong_kong",
	},
	"korea": []string{
		"kr",
		"north_korea",
	},
	"kw": []string{
		"kuwait",
	},
	"kyoto": []string{
		"shinto_shrine",
	},
	"kz": []string{
		"kazakhstan",
	},
	"label": []string{
		"bookmark",
	},
	"labor": []string{
		"construction_worker_man",
		"construction_worker_woman",
	},
	"laboratory": []string{
		"microscope",
	},
	"lady": []string{
		"older_woman",
		"woman",
		"womans_hat",
	},
	"ladybug": []string{
		"beetle",
	},
	"lambchop": []string{
		"steak",
	},
	"landing": []string{
		"flight_departure",
	},
	"lanka": []string{
		"sri_lanka",
	},
	"lao": []string{
		"laos",
	},
	"laptop": []string{
		"computer",
		"man_technologist",
		"woman_technologist",
	},
	"late": []string{
		"clock1",
		"clock10",
		"clock1030",
		"clock11",
		"clock1130",
		"clock12",
		"clock1230",
		"clock130",
		"clock2",
		"clock230",
		"clock3",
		"clock330",
		"clock4",
		"clock430",
		"clock5",
		"clock530",
		"clock6",
		"clock630",
		"clock7",
		"clock730",
		"clock8",
		"clock830",
		"clock9",
		"clock930",
	},
	"latte": []string{
		"coffee",
	},
	"laugh": []string{
		"laughing",
		"smile",
		"sweat_smile",
	},
	"laughing": []string{
		"rofl",
	},
	"launch": []string{
		"rocket",
	},
	"law": []string{
		"balance_scale",
		"briefcase",
		"copyright",
		"oncoming_police_car",
		"police_car",
		"policeman",
		"policewoman",
		"rotating_light",
		"tm",
	},
	"lawn": []string{
		"herb",
		"leaves",
		"seedling",
	},
	"lb": []string{
		"lebanon",
	},
	"leader": []string{
		"crown",
	},
	"learn": []string{
		"blue_book",
		"closed_book",
		"mortar_board",
		"open_book",
		"school",
	},
	"leaves": []string{
		"fallen_leaf",
	},
	"left": []string{
		"arrow_backward",
		"point_left",
	},
	"leftovers": []string{
		"takeout_box",
	},
	"legal": []string{
		"briefcase",
		"copyright",
		"memo",
		"mortar_board",
		"oncoming_police_car",
		"police_car",
		"policeman",
		"policewoman",
		"rotating_light",
		"tm",
	},
	"length": []string{
		"straight_ruler",
	},
	"leone": []string{
		"sierra_leone",
	},
	"lesbian": []string{
		"rainbow_flag",
	},
	"less": []string{
		"heavy_minus_sign",
	},
	"leste": []string{
		"timor_leste",
	},
	"letter": []string{
		"a",
		"b",
		"email",
		"information_source",
		"m",
		"o2",
		"parking",
		"postbox",
	},
	"lettuce": []string{
		"green_salad",
	},
	"levitate": []string{
		"business_suit_levitating",
	},
	"lgbt": []string{
		"rainbow_flag",
	},
	"li": []string{
		"liechtenstein",
	},
	"library": []string{
		"blue_book",
		"books",
		"closed_book",
		"green_book",
		"open_book",
		"orange_book",
	},
	"license": []string{
		"copyright",
	},
	"lie": []string{
		"lying_face",
	},
	"light": []string{
		"bulb",
		"high_brightness",
		"izakaya_lantern",
		"jack_o_lantern",
	},
	"lightning": []string{
		"cloud_with_lightning_and_rain",
	},
	"lightning bolt": []string{
		"zap",
	},
	"like": []string{
		"+1",
		"blue_heart",
		"couple",
		"couple_with_heart_man_man",
		"couple_with_heart_woman_man",
		"couple_with_heart_woman_woman",
		"couplekiss_man_man",
		"couplekiss_man_woman",
		"couplekiss_woman_woman",
		"cupid",
		"green_heart",
		"heart",
		"heart_decoration",
		"heart_eyes",
		"heart_eyes_cat",
		"heartbeat",
		"heartpulse",
		"kiss",
		"kissing",
		"kissing_closed_eyes",
		"kissing_heart",
		"love_hotel",
		"love_letter",
		"orange_heart",
		"purple_heart",
		"revolving_hearts",
		"smile",
		"sparkling_heart",
		"two_hearts",
		"two_men_holding_hands",
		"two_women_holding_hands",
		"wedding",
		"yellow_heart",
	},
	"limbs": []string{
		"ok_hand",
	},
	"limit": []string{
		"hourglass",
		"no_entry",
		"no_entry_sign",
		"u7981",
	},
	"line": []string{
		"wavy_dash",
	},
	"lips": []string{
		"kiss",
	},
	"liquid": []string{
		"potable_water",
	},
	"liquor": []string{
		"tumbler_glass",
	},
	"listen": []string{
		"ear",
	},
	"literature": []string{
		"books",
		"open_book",
	},
	"lizard": []string{
		"crocodile",
	},
	"load": []string{
		"open_file_folder",
	},
	"location": []string{
		"round_pushpin",
		"world_map",
	},
	"lock": []string{
		"chains",
		"key",
		"old_key",
	},
	"lol": []string{
		"laughing",
		"rofl",
	},
	"lolly": []string{
		"candy",
	},
	"londoneye": []string{
		"ferris_wheel",
	},
	"loo": []string{
		"womens",
	},
	"look": []string{
		"eye",
		"eyes",
	},
	"loop": []string{
		"repeat",
		"repeat_one",
	},
	"lord": []string{
		"crown",
	},
	"loser": []string{
		"white_flag",
	},
	"losing": []string{
		"white_flag",
	},
	"lost": []string{
		"white_flag",
	},
	"love": []string{
		"blue_heart",
		"couple",
		"couple_with_heart_man_man",
		"couple_with_heart_woman_man",
		"couple_with_heart_woman_woman",
		"couplekiss_man_man",
		"couplekiss_man_woman",
		"couplekiss_woman_woman",
		"cupid",
		"gift_heart",
		"green_heart",
		"heart",
		"heart_decoration",
		"heart_eyes",
		"heart_eyes_cat",
		"heartbeat",
		"heartpulse",
		"heavy_heart_exclamation",
		"kiss",
		"kissing",
		"kissing_closed_eyes",
		"kissing_heart",
		"orange_heart",
		"purple_heart",
		"revolving_hearts",
		"rose",
		"sparkling_heart",
		"two_hearts",
		"two_men_holding_hands",
		"two_women_holding_hands",
		"wedding",
		"yellow_heart",
	},
	"lower_left_ballpoint_pen": []string{
		"writing_hand",
	},
	"lr": []string{
		"liberia",
	},
	"ls": []string{
		"lesotho",
	},
	"lt": []string{
		"lithuania",
	},
	"lu": []string{
		"luxembourg",
	},
	"lucia": []string{
		"st_lucia",
	},
	"luck": []string{
		"8ball",
		"game_die",
		"horse_racing",
		"racehorse",
		"slot_machine",
	},
	"lucky": []string{
		"crossed_fingers",
		"four_leaf_clover",
	},
	"luge": []string{
		"sled",
	},
	"lunch": []string{
		"plate_with_cutlery",
		"sandwich",
	},
	"lv": []string{
		"latvia",
	},
	"ly": []string{
		"libya",
	},
	"ma": []string{
		"morocco",
	},
	"maarten": []string{
		"sint_maarten",
	},
	"mac": []string{
		"apple",
	},
	"macao": []string{
		"macau",
	},
	"macedonia,": []string{
		"macedonia",
	},
	"machine": []string{
		"robot",
	},
	"mad": []string{
		"anger",
		"angry",
		"rage",
		"right_anger_bubble",
	},
	"mage": []string{
		"sorceress",
		"wizard",
	},
	"magic": []string{
		"8ball",
		"black_joker",
		"clubs",
		"crescent_moon",
		"crystal_ball",
		"diamonds",
		"dizzy",
		"hearts",
		"rabbit",
		"rabbit2",
		"spades",
		"sparkles",
		"star2",
		"tada",
		"tophat",
	},
	"mail": []string{
		"package",
	},
	"maintainer": []string{
		"wrench",
	},
	"male": []string{
		"blonde_man",
		"bowing_man",
		"boy",
		"climbing_man",
		"construction_worker_man",
		"dancing_men",
		"frowning_man",
		"guardsman",
		"haircut_man",
		"man_dancing",
		"man_elf",
		"man_facepalming",
		"man_fairy",
		"man_genie",
		"man_in_lotus_position",
		"man_in_steamy_room",
		"man_shrugging",
		"man_vampire",
		"man_with_gua_pi_mao",
		"man_with_turban",
		"man_zombie",
		"mans_shoe",
		"massage_man",
		"mens",
		"merman",
		"no_good_man",
		"ok_man",
		"older_man",
		"pouting_man",
		"prince",
		"raising_hand_man",
		"santa",
		"tipping_hand_man",
		"wizard",
	},
	"mall": []string{
		"department_store",
		"shopping",
	},
	"mallard": []string{
		"duck",
	},
	"malvinas": []string{
		"falkland_islands",
	},
	"man": []string{
		"blonde_man",
		"bowing_man",
		"boy",
		"climbing_man",
		"frowning_man",
		"haircut_man",
		"isle_of_man",
		"man_artist",
		"man_astronaut",
		"man_cook",
		"man_elf",
		"man_facepalming",
		"man_factory_worker",
		"man_fairy",
		"man_farmer",
		"man_firefighter",
		"man_genie",
		"man_health_worker",
		"man_in_lotus_position",
		"man_in_steamy_room",
		"man_judge",
		"man_mechanic",
		"man_office_worker",
		"man_pilot",
		"man_scientist",
		"man_shrugging",
		"man_singer",
		"man_student",
		"man_teacher",
		"man_technologist",
		"man_vampire",
		"man_zombie",
		"massage_man",
		"merman",
		"no_good_man",
		"ok_man",
		"policeman",
		"pouting_man",
		"prince",
		"raising_hand_man",
		"running_man",
		"santa",
		"tipping_hand_man",
		"wizard",
	},
	"manager": []string{
		"man_office_worker",
		"woman_office_worker",
	},
	"manicure": []string{
		"nail_care",
	},
	"mantilla": []string{
		"woman_with_headscarf",
	},
	"map": []string{
		"round_pushpin",
	},
	"mariana": []string{
		"northern_mariana_islands",
	},
	"marino": []string{
		"san_marino",
	},
	"mark": []string{
		"pushpin",
		"triangular_flag_on_post",
	},
	"marriage": []string{
		"bride_with_veil",
		"couple",
		"couple_with_heart_man_man",
		"couple_with_heart_woman_man",
		"couple_with_heart_woman_woman",
		"couplekiss_man_man",
		"couplekiss_man_woman",
		"couplekiss_woman_woman",
		"man_in_tuxedo",
		"ring",
		"wedding",
	},
	"marshall": []string{
		"marshall_islands",
	},
	"mask": []string{
		"japanese_goblin",
		"japanese_ogre",
	},
	"massage": []string{
		"relaxed",
		"relieved",
	},
	"math": []string{
		"heavy_division_sign",
		"heavy_minus_sign",
		"heavy_multiplication_x",
		"heavy_plus_sign",
		"straight_ruler",
		"triangular_ruler",
	},
	"mc": []string{
		"monaco",
	},
	"mcdonalds": []string{
		"hamburger",
	},
	"me": []string{
		"montenegro",
	},
	"meal": []string{
		"plate_with_cutlery",
	},
	"mean": []string{
		"smirk",
	},
	"meat": []string{
		"bacon",
		"dango",
		"hamburger",
		"poultry_leg",
		"steak",
		"stew",
	},
	"mecca": []string{
		"kaaba",
	},
	"medicine": []string{
		"herb",
		"pill",
		"syringe",
	},
	"meditation": []string{
		"man_in_lotus_position",
		"woman_in_lotus_position",
	},
	"meh": []string{
		"expressionless",
		"neutral_face",
	},
	"memo": []string{
		"spiral_notepad",
	},
	"men": []string{
		"dancing_men",
		"ok_man",
		"older_man",
	},
	"meow": []string{
		"cat",
		"cat2",
	},
	"merwoman": []string{
		"mermaid",
	},
	"message": []string{
		"left_speech_bubble",
		"speech_balloon",
	},
	"mexican": []string{
		"burrito",
		"taco",
	},
	"mg": []string{
		"madagascar",
	},
	"micronesia,": []string{
		"micronesia",
	},
	"midday": []string{
		"clock12",
	},
	"middle": []string{
		"fu",
	},
	"midnight": []string{
		"clock12",
	},
	"milestone": []string{
		"triangular_flag_on_post",
	},
	"military": []string{
		"rosette",
	},
	"milk": []string{
		"baby_bottle",
		"cow",
		"cow2",
	},
	"minaret": []string{
		"mosque",
	},
	"mind": []string{
		"exploding_head",
	},
	"mindfulness": []string{
		"man_in_lotus_position",
		"woman_in_lotus_position",
	},
	"minor": []string{
		"underage",
	},
	"miquelon": []string{
		"st_pierre_miquelon",
	},
	"mischievous": []string{
		"stuck_out_tongue",
		"stuck_out_tongue_closed_eyes",
		"stuck_out_tongue_winking_eye",
		"wink",
	},
	"ml": []string{
		"mali",
	},
	"mm": []string{
		"myanmar",
	},
	"mn": []string{
		"mongolia",
	},
	"moai": []string{
		"moyai",
	},
	"mojito": []string{
		"beach_umbrella",
		"cocktail",
		"desert_island",
		"palm_tree",
		"tropical_drink",
	},
	"moldova,": []string{
		"moldova",
	},
	"mom": []string{
		"family_man_woman_boy",
	},
	"money": []string{
		"atm",
		"bank",
		"chart_with_downwards_trend",
		"chart_with_upwards_trend",
		"credit_card",
		"currency_exchange",
		"dollar",
		"euro",
		"heavy_dollar_sign",
		"money_mouth_face",
		"pound",
		"purse",
		"yen",
	},
	"monitor": []string{
		"computer",
	},
	"monkey": []string{
		"banana",
		"hear_no_evil",
		"see_no_evil",
		"speak_no_evil",
	},
	"monster": []string{
		"japanese_goblin",
		"japanese_ogre",
	},
	"month": []string{
		"u6708",
	},
	"moo": []string{
		"cow",
		"cow2",
	},
	"moon": []string{
		"u6708",
	},
	"more": []string{
		"heavy_plus_sign",
	},
	"morning": []string{
		"partly_sunny",
		"sun_with_face",
		"sunrise",
	},
	"mosque": []string{
		"kaaba",
	},
	"mother": []string{
		"family_man_woman_boy",
	},
	"mother christmas": []string{
		"mrs_claus",
	},
	"mountain": []string{
		"foggy",
		"mount_fuji",
	},
	"mouse": []string{
		"rat",
	},
	"moustache": []string{
		"man",
		"wavy_dash",
	},
	"mouth": []string{
		"lips",
		"tongue",
	},
	"movie": []string{
		"cinema",
		"clapper",
		"film_projector",
		"film_strip",
	},
	"movie theater": []string{
		"popcorn",
	},
	"moving": []string{
		"package",
	},
	"mq": []string{
		"martinique",
	},
	"mr": []string{
		"mauritania",
	},
	"mrt": []string{
		"metro",
	},
	"ms": []string{
		"montserrat",
	},
	"mt": []string{
		"malta",
	},
	"mu": []string{
		"mauritius",
	},
	"multitask": []string{
		"man_juggling",
		"woman_juggling",
	},
	"munch": []string{
		"scream",
		"scream_cat",
	},
	"music": []string{
		"drum",
		"guitar",
		"headphones",
		"microphone",
		"notes",
		"postal_horn",
		"radio",
		"radio_button",
		"saxophone",
		"symbols",
		"trumpet",
		"twisted_rightwards_arrows",
		"violin",
	},
	"mustache": []string{
		"man",
		"wavy_dash",
	},
	"mute": []string{
		"mobile_phone_off",
		"no_bell",
		"no_mobile_phones",
	},
	"mv": []string{
		"maldives",
	},
	"mw": []string{
		"malawi",
	},
	"mx": []string{
		"mexico",
	},
	"my": []string{
		"malaysia",
	},
	"mystical": []string{
		"unicorn",
	},
	"myth": []string{
		"dragon",
		"dragon_face",
	},
	"mz": []string{
		"mozambique",
	},
	"na": []string{
		"namibia",
	},
	"nail": []string{
		"nail_care",
	},
	"nam": []string{
		"vietnam",
	},
	"namaste": []string{
		"pray",
	},
	"nap": []string{
		"sleepy",
	},
	"narutomaki": []string{
		"fish_cake",
	},
	"nation": []string{
		"afghanistan",
		"aland_islands",
		"albania",
		"algeria",
		"american_samoa",
		"andorra",
		"angola",
		"anguilla",
		"antarctica",
		"antigua_barbuda",
		"argentina",
		"armenia",
		"aruba",
		"australia",
		"austria",
		"azerbaijan",
		"bahamas",
		"bahrain",
		"bangladesh",
		"barbados",
		"belarus",
		"belgium",
		"belize",
		"benin",
		"bermuda",
		"bhutan",
		"bolivia",
		"bosnia_herzegovina",
		"botswana",
		"brazil",
		"british_indian_ocean_territory",
		"british_virgin_islands",
		"brunei",
		"bulgaria",
		"burkina_faso",
		"burundi",
		"cambodia",
		"cameroon",
		"canada",
		"canary_islands",
		"cape_verde",
		"caribbean_netherlands",
		"cayman_islands",
		"central_african_republic",
		"chad",
		"chile",
		"christmas_island",
		"cn",
		"cocos_islands",
		"colombia",
		"comoros",
		"congo_brazzaville",
		"congo_kinshasa",
		"cook_islands",
		"costa_rica",
		"cote_divoire",
		"croatia",
		"crossed_flags",
		"cuba",
		"curacao",
		"cyprus",
		"czech_republic",
		"de",
		"denmark",
		"djibouti",
		"dominica",
		"dominican_republic",
		"ecuador",
		"egypt",
		"el_salvador",
		"equatorial_guinea",
		"eritrea",
		"es",
		"estonia",
		"ethiopia",
		"falkland_islands",
		"faroe_islands",
		"fiji",
		"finland",
		"fr",
		"french_guiana",
		"french_polynesia",
		"french_southern_territories",
		"gabon",
		"gambia",
		"georgia",
		"ghana",
		"gibraltar",
		"greece",
		"greenland",
		"grenada",
		"guadeloupe",
		"guam",
		"guatemala",
		"guernsey",
		"guinea",
		"guinea_bissau",
		"guyana",
		"haiti",
		"honduras",
		"hong_kong",
		"hungary",
		"iceland",
		"india",
		"indonesia",
		"iran",
		"iraq",
		"ireland",
		"isle_of_man",
		"israel",
		"it",
		"jamaica",
		"japan",
		"jersey",
		"jordan",
		"jp",
		"kazakhstan",
		"kenya",
		"kiribati",
		"kosovo",
		"kr",
		"kuwait",
		"kyrgyzstan",
		"laos",
		"latvia",
		"lebanon",
		"lesotho",
		"liberia",
		"libya",
		"liechtenstein",
		"lithuania",
		"luxembourg",
		"macau",
		"macedonia",
		"madagascar",
		"malawi",
		"malaysia",
		"maldives",
		"mali",
		"malta",
		"marshall_islands",
		"martinique",
		"mauritania",
		"mauritius",
		"mayotte",
		"mexico",
		"micronesia",
		"moldova",
		"monaco",
		"mongolia",
		"montenegro",
		"montserrat",
		"morocco",
		"mozambique",
		"myanmar",
		"namibia",
		"nauru",
		"nepal",
		"netherlands",
		"new_caledonia",
		"new_zealand",
		"nicaragua",
		"niger",
		"nigeria",
		"niue",
		"norfolk_island",
		"north_korea",
		"northern_mariana_islands",
		"norway",
		"oman",
		"pakistan",
		"palau",
		"palestinian_territories",
		"panama",
		"papua_new_guinea",
		"paraguay",
		"peru",
		"philippines",
		"pitcairn_islands",
		"poland",
		"portugal",
		"puerto_rico",
		"qatar",
		"reunion",
		"romania",
		"ru",
		"rwanda",
		"samoa",
		"san_marino",
		"sao_tome_principe",
		"saudi_arabia",
		"senegal",
		"serbia",
		"seychelles",
		"sierra_leone",
		"singapore",
		"sint_maarten",
		"slovakia",
		"slovenia",
		"solomon_islands",
		"somalia",
		"south_africa",
		"south_georgia_south_sandwich_islands",
		"south_sudan",
		"sri_lanka",
		"st_barthelemy",
		"st_helena",
		"st_kitts_nevis",
		"st_lucia",
		"st_pierre_miquelon",
		"st_vincent_grenadines",
		"sudan",
		"suriname",
		"swaziland",
		"sweden",
		"switzerland",
		"syria",
		"taiwan",
		"tajikistan",
		"tanzania",
		"thailand",
		"timor_leste",
		"togo",
		"tokelau",
		"tonga",
		"tr",
		"trinidad_tobago",
		"tunisia",
		"turkmenistan",
		"turks_caicos_islands",
		"tuvalu",
		"uganda",
		"uk",
		"ukraine",
		"united_arab_emirates",
		"uruguay",
		"us",
		"us_virgin_islands",
		"uzbekistan",
		"vanuatu",
		"vatican_city",
		"venezuela",
		"vietnam",
		"wallis_futuna",
		"western_sahara",
		"yemen",
		"zambia",
		"zimbabwe",
	},
	"nature": []string{
		"ant",
		"bamboo",
		"bat",
		"bear",
		"beetle",
		"bird",
		"blossom",
		"blowfish",
		"boar",
		"bouquet",
		"bug",
		"butterfly",
		"cactus",
		"camel",
		"cat",
		"cherry_blossom",
		"chicken",
		"chipmunk",
		"coconut",
		"cow",
		"cow2",
		"crocodile",
		"deciduous_tree",
		"deer",
		"dog",
		"dog2",
		"dolphin",
		"dragon",
		"dragon_face",
		"duck",
		"eagle",
		"ear_of_rice",
		"eggplant",
		"elephant",
		"evergreen_tree",
		"fallen_leaf",
		"first_quarter_moon",
		"first_quarter_moon_with_face",
		"fish",
		"four_leaf_clover",
		"fox_face",
		"frog",
		"full_moon",
		"full_moon_with_face",
		"giraffe",
		"goat",
		"gorilla",
		"green_apple",
		"hamster",
		"hear_no_evil",
		"hedgehog",
		"honeybee",
		"horse",
		"house_with_garden",
		"koala",
		"last_quarter_moon",
		"last_quarter_moon_with_face",
		"leaves",
		"lemon",
		"leopard",
		"lion",
		"lizard",
		"maple_leaf",
		"melon",
		"monkey",
		"monkey_face",
		"mount_fuji",
		"mountain",
		"mountain_snow",
		"mouse",
		"mouse2",
		"national_park",
		"new_moon",
		"new_moon_with_face",
		"ocean",
		"octopus",
		"owl",
		"palm_tree",
		"panda_face",
		"partly_sunny",
		"peach",
		"pear",
		"penguin",
		"pig",
		"pig2",
		"pineapple",
		"poodle",
		"rabbit",
		"rabbit2",
		"rainbow",
		"ram",
		"rhinoceros",
		"rooster",
		"sauropod",
		"see_no_evil",
		"seedling",
		"shamrock",
		"shark",
		"sheep",
		"shell",
		"shrimp",
		"snake",
		"speak_no_evil",
		"squid",
		"strawberry",
		"sun_with_face",
		"sunflower",
		"sunny",
		"sweet_potato",
		"t-rex",
		"tanabata_tree",
		"tangerine",
		"tiger",
		"tiger2",
		"tomato",
		"tulip",
		"turtle",
		"unicorn",
		"volcano",
		"waning_crescent_moon",
		"waning_gibbous_moon",
		"water_buffalo",
		"waxing_crescent_moon",
		"waxing_gibbous_moon",
		"whale",
		"whale2",
		"wilted_flower",
		"wind_chime",
		"wolf",
		"zebra",
	},
	"ne": []string{
		"niger",
	},
	"neck": []string{
		"scarf",
	},
	"needle": []string{
		"syringe",
	},
	"nemo": []string{
		"tropical_fish",
	},
	"nerdy": []string{
		"eyeglasses",
		"nerd_face",
	},
	"nervous": []string{
		"anguished",
		"cold_sweat",
		"disappointed_relieved",
		"fearful",
		"worried",
	},
	"neutral": []string{
		"neutral_face",
	},
	"nevis": []string{
		"st_kitts_nevis",
	},
	"new": []string{
		"new_caledonia",
		"new_zealand",
		"papua_new_guinea",
	},
	"newyork": []string{
		"statue_of_liberty",
	},
	"next": []string{
		"arrow_right",
		"next_track_button",
	},
	"ni": []string{
		"nicaragua",
	},
	"night": []string{
		"crescent_moon",
		"first_quarter_moon",
		"first_quarter_moon_with_face",
		"flashlight",
		"full_moon",
		"full_moon_with_face",
		"last_quarter_moon",
		"last_quarter_moon_with_face",
		"new_moon",
		"new_moon_with_face",
		"sleeping",
		"sparkler",
		"star",
		"star2",
		"stars",
		"underage",
		"waning_crescent_moon",
		"waning_gibbous_moon",
		"waxing_crescent_moon",
		"waxing_gibbous_moon",
	},
	"night life": []string{
		"cityscape",
	},
	"nike": []string{
		"heavy_check_mark",
	},
	"nl": []string{
		"netherlands",
	},
	"no": []string{
		"-1",
		"negative_squared_cross_mark",
		"norway",
		"persevere",
		"x",
	},
	"noise": []string{
		"loud_sound",
	},
	"noisy": []string{
		"loud_sound",
	},
	"nom": []string{
		"yum",
	},
	"noodle": []string{
		"ramen",
		"spaghetti",
	},
	"noon": []string{
		"clock12",
	},
	"nope": []string{
		"no_good_man",
		"no_good_woman",
	},
	"norfolk": []string{
		"norfolk_island",
	},
	"north": []string{
		"north_korea",
	},
	"northeast": []string{
		"arrow_upper_right",
	},
	"northern": []string{
		"northern_mariana_islands",
		"uk",
	},
	"northwest": []string{
		"arrow_upper_left",
	},
	"nose": []string{
		"elephant",
	},
	"note": []string{
		"symbols",
	},
	"notes": []string{
		"ledger",
		"notebook",
		"notebook_with_decorative_cover",
	},
	"nothing": []string{
		"u7121",
	},
	"notification": []string{
		"bell",
	},
	"np": []string{
		"nepal",
	},
	"nr": []string{
		"nauru",
	},
	"nu": []string{
		"niue",
	},
	"nuclear": []string{
		"radioactive",
	},
	"null": []string{
		"zero",
	},
	"numbers": []string{
		"100",
		"1234",
		"eight",
		"five",
		"four",
		"keycap_ten",
		"nine",
		"one",
		"seven",
		"six",
		"three",
		"two",
		"zero",
	},
	"nurse": []string{
		"man_health_worker",
		"syringe",
		"woman_health_worker",
	},
	"nursing": []string{
		"breastfeeding",
	},
	"nut": []string{
		"peanuts",
	},
	"oatmeal": []string{
		"bowl_with_spoon",
	},
	"obtain": []string{
		"ideograph_advantage",
	},
	"ocean": []string{
		"blowfish",
		"british_indian_ocean_territory",
		"dolphin",
		"octopus",
		"shark",
		"shrimp",
		"squid",
		"surfing_man",
		"surfing_woman",
		"tropical_fish",
		"whale",
		"whale2",
	},
	"office": []string{
		"file_folder",
		"page_facing_up",
		"page_with_curl",
	},
	"ogre": []string{
		"japanese_ogre",
	},
	"ohyeah": []string{
		"v",
	},
	"oink": []string{
		"pig",
		"pig_nose",
	},
	"ok": []string{
		"accept",
		"ballot_box_with_check",
		"heavy_check_mark",
		"ok_hand",
		"white_check_mark",
	},
	"okay": []string{
		"ok_hand",
	},
	"old": []string{
		"older_man",
		"older_woman",
		"radio_button",
	},
	"oldschool": []string{
		"floppy_disk",
		"hourglass",
		"hourglass_flowing_sand",
		"pager",
		"tv",
		"vhs",
	},
	"om_symbol": []string{
		"oman",
	},
	"omg": []string{
		"scream",
		"speak_no_evil",
	},
	"oops": []string{
		"confounded",
		"fearful",
		"persevere",
		"sweat_drops",
	},
	"open": []string{
		"open_hands",
	},
	"opening hours": []string{
		"u55b6",
	},
	"orange": []string{
		"carrot",
		"tangerine",
	},
	"orange-circle": []string{
		"accept",
	},
	"orange-square": []string{
		"baby_symbol",
		"eight_pointed_black_star",
		"mobile_phone_off",
		"u55b6",
		"u6708",
		"u6709",
		"u7121",
		"u7533",
		"vibration_mode",
		"vs",
	},
	"orbit": []string{
		"artificial_satellite",
	},
	"orchestra": []string{
		"violin",
	},
	"order": []string{
		"bookmark_tabs",
	},
	"oreo": []string{
		"cookie",
	},
	"organizing": []string{
		"card_index_dividers",
		"file_cabinet",
	},
	"outdoors": []string{
		"camping",
		"tent",
	},
	"outer space": []string{
		"rocket",
	},
	"outer_space": []string{
		"alien",
		"rocket",
	},
	"ox": []string{
		"cow",
		"cow2",
		"water_buffalo",
	},
	"pa": []string{
		"panama",
	},
	"paddle": []string{
		"canoe",
	},
	"padlock": []string{
		"lock",
	},
	"paella": []string{
		"shallow_pan_of_food",
	},
	"pageant": []string{
		"running_shirt_with_sash",
	},
	"paint": []string{
		"art",
	},
	"painter": []string{
		"man_artist",
		"woman_artist",
	},
	"pair": []string{
		"couple",
		"couple_with_heart_man_man",
		"couple_with_heart_woman_man",
		"couple_with_heart_woman_woman",
		"couplekiss_man_man",
		"couplekiss_man_woman",
		"couplekiss_woman_woman",
		"two_men_holding_hands",
		"two_women_holding_hands",
	},
	"palestine": []string{
		"palestinian_territories",
	},
	"palestinian": []string{
		"palestinian_territories",
	},
	"palm": []string{
		"coconut",
		"raised_hand",
		"raised_hand_with_fingers_splayed",
		"wave",
	},
	"panda": []string{
		"bamboo",
		"panda_face",
	},
	"paper": []string{
		"izakaya_lantern",
		"ledger",
		"memo",
		"notebook",
		"notebook_with_decorative_cover",
		"page_facing_up",
		"page_with_curl",
		"pencil2",
		"printer",
		"scroll",
	},
	"papua": []string{
		"papua_new_guinea",
	},
	"parent": []string{
		"family_man_boy",
		"family_man_boy_boy",
		"family_man_girl",
		"family_man_girl_boy",
		"family_man_girl_girl",
		"family_woman_boy",
		"family_woman_boy_boy",
		"family_woman_girl",
		"family_woman_girl_boy",
		"family_woman_girl_girl",
	},
	"parents": []string{
		"family_man_man_boy",
		"family_man_man_boy_boy",
		"family_man_man_girl",
		"family_man_man_girl_boy",
		"family_man_man_girl_girl",
		"family_man_woman_boy",
		"family_man_woman_boy_boy",
		"family_man_woman_girl",
		"family_man_woman_girl_boy",
		"family_man_woman_girl_girl",
		"family_woman_woman_boy",
		"family_woman_woman_boy_boy",
		"family_woman_woman_girl",
		"family_woman_woman_girl_boy",
		"family_woman_woman_girl_girl",
	},
	"party": []string{
		"balloon",
		"beer",
		"beers",
		"circus_tent",
		"clinking_glasses",
		"confetti_ball",
		"crystal_ball",
		"pizza",
		"tada",
	},
	"pass": []string{
		"100",
		"ticket",
	},
	"passport": []string{
		"customs",
	},
	"password": []string{
		"key",
		"lock",
		"old_key",
	},
	"pastry": []string{
		"pie",
	},
	"paul": []string{
		"alien",
	},
	"pause": []string{
		"pause_button",
		"play_or_pause_button",
	},
	"payment": []string{
		"atm",
		"credit_card",
		"heavy_dollar_sign",
		"money_with_wings",
		"moneybag",
	},
	"pe": []string{
		"peru",
	},
	"peace": []string{
		"v",
	},
	"peek": []string{
		"eyes",
	},
	"pen": []string{
		"black_nib",
	},
	"pencil": []string{
		"memo",
	},
	"people": []string{
		"couple",
		"family_man_boy",
		"family_man_boy_boy",
		"family_man_girl",
		"family_man_girl_boy",
		"family_man_girl_girl",
		"family_man_man_boy",
		"family_man_man_boy_boy",
		"family_man_man_girl",
		"family_man_man_girl_boy",
		"family_man_man_girl_girl",
		"family_man_woman_boy",
		"family_man_woman_boy_boy",
		"family_man_woman_girl",
		"family_man_woman_girl_boy",
		"family_man_woman_girl_girl",
		"family_woman_boy",
		"family_woman_boy_boy",
		"family_woman_girl",
		"family_woman_girl_boy",
		"family_woman_girl_girl",
		"family_woman_woman_boy",
		"family_woman_woman_boy_boy",
		"family_woman_woman_girl",
		"family_woman_woman_girl_boy",
		"family_woman_woman_girl_girl",
		"two_men_holding_hands",
		"two_women_holding_hands",
	},
	"percent": []string{
		"symbols",
	},
	"perfect": []string{
		"100",
		"ok_hand",
	},
	"person": []string{
		"adult",
		"bearded_person",
		"blonde_man",
		"blonde_woman",
		"bust_in_silhouette",
		"busts_in_silhouette",
		"speaking_head",
	},
	"pet": []string{
		"cat",
		"cat2",
		"dog",
		"dog2",
		"paw_prints",
		"poodle",
		"rabbit",
		"rabbit2",
	},
	"petroleum": []string{
		"fuelpump",
	},
	"ph": []string{
		"philippines",
	},
	"pharmacy": []string{
		"pill",
	},
	"phew": []string{
		"disappointed_relieved",
		"relieved",
		"triumph",
	},
	"phone": []string{
		"selfie",
		"signal_strength",
		"vibration_mode",
	},
	"photo": []string{
		"bridge_at_night",
		"camping",
		"carousel_horse",
		"city_sunrise",
		"city_sunset",
		"cityscape",
		"desert",
		"desert_island",
		"ferris_wheel",
		"fireworks",
		"foggy",
		"fountain",
		"houses",
		"japanese_castle",
		"milky_way",
		"mount_fuji",
		"mountain",
		"mountain_snow",
		"national_park",
		"rainbow",
		"rice_scene",
		"roller_coaster",
		"stadium",
		"stars",
		"sunrise",
		"sunrise_over_mountains",
		"tent",
		"tokyo_tower",
		"volcano",
	},
	"photography": []string{
		"camera",
		"camera_flash",
		"framed_picture",
	},
	"physicist": []string{
		"man_scientist",
		"woman_scientist",
	},
	"physics": []string{
		"atom_symbol",
	},
	"piano": []string{
		"musical_keyboard",
	},
	"pickle": []string{
		"cucumber",
	},
	"picnic": []string{
		"watermelon",
	},
	"pierogi": []string{
		"dumpling",
	},
	"pierre": []string{
		"st_pierre_miquelon",
	},
	"pig": []string{
		"bacon",
	},
	"pine_decoration": []string{
		"bamboo",
	},
	"pinged": []string{
		"rotating_light",
	},
	"pingpong": []string{
		"ping_pong",
	},
	"pink": []string{
		"fish_cake",
		"heartbeat",
		"heartpulse",
		"ok_woman",
		"ribbon",
	},
	"pink-square": []string{
		"u5272",
	},
	"pinocchio": []string{
		"lying_face",
	},
	"pirate": []string{
		"black_flag",
		"skull_and_crossbones",
	},
	"pistol": []string{
		"gun",
	},
	"pitcairn": []string{
		"pitcairn_islands",
	},
	"pk": []string{
		"pakistan",
	},
	"pl": []string{
		"poland",
	},
	"place": []string{
		"stadium",
		"triangular_flag_on_post",
		"trophy",
	},
	"plane": []string{
		"man_pilot",
		"woman_pilot",
	},
	"planet": []string{
		"first_quarter_moon",
		"first_quarter_moon_with_face",
		"full_moon",
		"full_moon_with_face",
		"last_quarter_moon",
		"last_quarter_moon_with_face",
		"new_moon",
		"new_moon_with_face",
		"waning_crescent_moon",
		"waning_gibbous_moon",
		"waxing_crescent_moon",
		"waxing_gibbous_moon",
	},
	"planning": []string{
		"calendar",
		"spiral_calendar",
	},
	"plant": []string{
		"bamboo",
		"cactus",
		"cherry_blossom",
		"corn",
		"deciduous_tree",
		"ear_of_rice",
		"evergreen_tree",
		"fallen_leaf",
		"four_leaf_clover",
		"herb",
		"hibiscus",
		"house_with_garden",
		"leaves",
		"maple_leaf",
		"mushroom",
		"palm_tree",
		"seedling",
		"shamrock",
		"sunflower",
		"tanabata_tree",
		"tulip",
		"wilted_flower",
	},
	"play": []string{
		"arrow_forward",
		"black_joker",
		"bowling",
		"dart",
		"fast_forward",
		"game_die",
		"joystick",
		"mahjong",
		"play_or_pause_button",
		"rewind",
		"running_shirt_with_sash",
		"space_invader",
		"video_game",
	},
	"playful": []string{
		"stuck_out_tongue",
		"stuck_out_tongue_closed_eyes",
		"stuck_out_tongue_winking_eye",
		"tongue",
	},
	"playground": []string{
		"roller_coaster",
	},
	"please": []string{
		"pray",
	},
	"plumber": []string{
		"man_mechanic",
		"woman_mechanic",
	},
	"podcast": []string{
		"radio",
	},
	"point": []string{
		"arrow_up_small",
		"arrow_upper_left",
		"arrow_upper_right",
		"u6307",
	},
	"poison": []string{
		"skull_and_crossbones",
	},
	"poisoned": []string{
		"astonished",
	},
	"poker": []string{
		"black_joker",
		"clubs",
		"diamonds",
		"hearts",
		"spades",
	},
	"police": []string{
		"policeman",
		"policewoman",
		"rotating_light",
	},
	"pollution": []string{
		"factory",
	},
	"polygon": []string{
		"eight_pointed_black_star",
	},
	"polynesia": []string{
		"french_polynesia",
	},
	"pool": []string{
		"8ball",
		"man_playing_water_polo",
		"woman_playing_water_polo",
	},
	"pork": []string{
		"bacon",
	},
	"porkchop": []string{
		"steak",
	},
	"porridge": []string{
		"bowl_with_spoon",
	},
	"postal": []string{
		"email",
	},
	"potsticker": []string{
		"dumpling",
	},
	"potty": []string{
		"toilet",
	},
	"power": []string{
		"battery",
		"electric_plug",
	},
	"praise": []string{
		"clap",
	},
	"prank": []string{
		"smirk",
		"stuck_out_tongue",
		"stuck_out_tongue_closed_eyes",
		"stuck_out_tongue_winking_eye",
	},
	"prayer": []string{
		"palms_up",
		"place_of_worship",
	},
	"prc": []string{
		"cn",
	},
	"present": []string{
		"gift",
	},
	"presentation": []string{
		"bar_chart",
		"chart",
		"chart_with_downwards_trend",
		"chart_with_upwards_trend",
		"part_alternation_mark",
	},
	"press": []string{
		"newspaper",
		"newspaper_roll",
	},
	"previous": []string{
		"arrow_left",
	},
	"pride": []string{
		"rainbow_flag",
		"triumph",
	},
	"prime": []string{
		"five",
		"seven",
		"three",
		"two",
	},
	"principe": []string{
		"sao_tome_principe",
	},
	"privacy": []string{
		"closed_lock_with_key",
		"no_entry",
		"secret",
		"unlock",
	},
	"problem": []string{
		"warning",
	},
	"profanity": []string{
		"symbols_over_mouth",
	},
	"professor": []string{
		"man_teacher",
		"woman_teacher",
	},
	"program": []string{
		"radio",
		"tv",
	},
	"programmer": []string{
		"man_technologist",
		"woman_technologist",
	},
	"progress": []string{
		"building_construction",
		"construction",
	},
	"prohibited": []string{
		"no_bicycles",
	},
	"prophecy": []string{
		"fortune_cookie",
	},
	"propose": []string{
		"ring",
	},
	"protection": []string{
		"shield",
	},
	"proud": []string{
		"triumph",
	},
	"pt": []string{
		"portugal",
	},
	"pub": []string{
		"beer",
		"beers",
		"underage",
	},
	"public": []string{
		"bullettrain_front",
		"station",
		"train",
	},
	"puerto": []string{
		"puerto_rico",
	},
	"puff": []string{
		"dash",
	},
	"pumpkin": []string{
		"jack_o_lantern",
	},
	"pumps": []string{
		"high_heel",
	},
	"punctuation": []string{
		"exclamation",
		"grey_exclamation",
		"interrobang",
	},
	"puppy": []string{
		"dog",
	},
	"purchase": []string{
		"shopping",
	},
	"purple-square": []string{
		"aquarius",
		"aries",
		"cancer",
		"capricorn",
		"gemini",
		"heart_decoration",
		"id",
		"leo",
		"libra",
		"ophiuchus",
		"pisces",
		"sagittarius",
		"scorpius",
		"six_pointed_star",
		"taurus",
		"virgo",
		"womens",
	},
	"pw": []string{
		"palau",
	},
	"py": []string{
		"paraguay",
	},
	"python": []string{
		"snake",
	},
	"qa": []string{
		"qatar",
	},
	"queen": []string{
		"princess",
	},
	"queer": []string{
		"rainbow_flag",
	},
	"quiet": []string{
		"mobile_phone_off",
		"mute",
		"no_bell",
		"shushing",
	},
	"quiz": []string{
		"100",
		"hourglass",
		"memo",
	},
	"race": []string{
		"checkered_flag",
		"motorcycle",
		"mountain_biking_man",
		"mountain_biking_woman",
		"racing_car",
		"running_man",
		"running_woman",
	},
	"radio": []string{
		"satellite",
	},
	"rain": []string{
		"closed_umbrella",
	},
	"rainbow": []string{
		"rainbow_flag",
	},
	"rainy": []string{
		"umbrella",
	},
	"raised": []string{
		"raised_back_of_hand",
	},
	"ramen": []string{
		"fish_cake",
	},
	"rancher": []string{
		"man_farmer",
		"woman_farmer",
	},
	"random": []string{
		"game_die",
		"twisted_rightwards_arrows",
	},
	"razor": []string{
		"kick_scooter",
	},
	"read": []string{
		"blue_book",
		"closed_book",
		"couch_and_lamp",
		"green_book",
		"open_book",
		"orange_book",
	},
	"reception": []string{
		"signal_strength",
	},
	"recession": []string{
		"chart_with_downwards_trend",
	},
	"record": []string{
		"cinema",
		"clapper",
		"film_projector",
		"minidisc",
		"movie_camera",
		"notebook",
		"notebook_with_decorative_cover",
		"repeat",
		"vhs",
		"video_camera",
	},
	"recording": []string{
		"studio_microphone",
	},
	"recovery": []string{
		"chart_with_upwards_trend",
	},
	"red": []string{
		"flower_playing_cards",
		"japanese_goblin",
		"japanese_ogre",
		"red_car",
	},
	"red-circle": []string{
		"congratulations",
		"secret",
	},
	"red-square": []string{
		"a",
		"ab",
		"b",
		"cl",
		"o2",
		"sos",
		"u5408",
		"u6e80",
		"u7981",
	},
	"refresh": []string{
		"restroom",
	},
	"relax": []string{
		"beer",
		"beers",
		"hotsprings",
	},
	"relaxed": []string{
		"relieved",
	},
	"relief": []string{
		"sweat_smile",
	},
	"religion": []string{
		"church",
		"orthodox_cross",
		"place_of_worship",
		"six_pointed_star",
	},
	"religious": []string{
		"prayer_beads",
	},
	"remove": []string{
		"x",
	},
	"repeat": []string{
		"arrows_clockwise",
	},
	"reptile": []string{
		"crocodile",
		"lizard",
	},
	"republic": []string{
		"central_african_republic",
		"congo_kinshasa",
		"dominican_republic",
		"iran",
		"laos",
		"moldova",
		"syria",
		"tanzania",
		"venezuela",
	},
	"rest": []string{
		"bed",
		"sleeping_bed",
		"sleepy",
	},
	"restaurant": []string{
		"plate_with_cutlery",
	},
	"restricted": []string{
		"u7981",
	},
	"restroom": []string{
		"mens",
		"potable_water",
		"toilet",
		"wc",
		"womens",
	},
	"return": []string{
		"arrow_right_hook",
		"back",
		"leftwards_arrow_with_hook",
	},
	"revolver": []string{
		"gun",
	},
	"rica": []string{
		"costa_rica",
	},
	"rice": []string{
		"sushi",
	},
	"rich": []string{
		"money_mouth_face",
	},
	"rico": []string{
		"puerto_rico",
	},
	"right": []string{
		"arrow_forward",
		"point_right",
	},
	"rings": []string{
		"link",
	},
	"rip": []string{
		"coffin",
		"funeral_urn",
	},
	"ro": []string{
		"romania",
	},
	"road": []string{
		"motorway",
	},
	"roar": []string{
		"tiger",
		"tiger2",
	},
	"rock": []string{
		"climbing_man",
		"climbing_woman",
		"moyai",
	},
	"rock_on": []string{
		"metal",
	},
	"rocket": []string{
		"man_astronaut",
		"woman_astronaut",
	},
	"rockstar": []string{
		"man_singer",
		"woman_singer",
	},
	"rodent": []string{
		"chipmunk",
		"mouse",
		"mouse2",
		"rat",
	},
	"rolling": []string{
		"rofl",
	},
	"rotate": []string{
		"arrow_right_hook",
	},
	"round": []string{
		"arrows_clockwise",
		"black_circle",
		"o",
		"white_circle",
	},
	"royal": []string{
		"guardsman",
		"guardswoman",
		"prince",
		"princess",
	},
	"royalty": []string{
		"crown",
		"european_castle",
	},
	"rs": []string{
		"serbia",
	},
	"rubbish": []string{
		"wastebasket",
	},
	"ruby": []string{
		"gem",
	},
	"rude": []string{
		"fu",
	},
	"rules": []string{
		"no_pedestrians",
	},
	"running": []string{
		"running_man",
		"running_woman",
	},
	"russian": []string{
		"ru",
	},
	"rw": []string{
		"rwanda",
	},
	"réunion": []string{
		"reunion",
	},
	"sad": []string{
		"broken_heart",
		"cry",
		"crying_cat_face",
		"disappointed",
		"frowning_face",
		"frowning_man",
		"frowning_woman",
		"pensive",
		"slightly_frowning_face",
		"sob",
		"sweat",
		"weary",
	},
	"safari": []string{
		"giraffe",
		"zebra",
	},
	"sahara": []string{
		"western_sahara",
	},
	"saharah": []string{
		"desert",
	},
	"sailing": []string{
		"sailboat",
	},
	"saint": []string{
		"st_barthelemy",
		"st_helena",
		"st_kitts_nevis",
		"st_lucia",
		"st_pierre_miquelon",
		"st_vincent_grenadines",
	},
	"sale": []string{
		"label",
		"money_with_wings",
		"moneybag",
	},
	"sales": []string{
		"atm",
		"bank",
		"chart_with_downwards_trend",
		"chart_with_upwards_trend",
		"credit_card",
		"currency_exchange",
		"dollar",
		"euro",
		"heavy_dollar_sign",
		"pound",
		"purse",
		"yen",
	},
	"salon": []string{
		"barber",
	},
	"salvador": []string{
		"el_salvador",
	},
	"san": []string{
		"san_marino",
	},
	"sand": []string{
		"beach_umbrella",
	},
	"sandwich": []string{
		"south_georgia_south_sandwich_islands",
	},
	"sanfrancisco": []string{
		"bridge_at_night",
	},
	"sao": []string{
		"sao_tome_principe",
	},
	"sarcasm": []string{
		"smirk",
		"unamused",
	},
	"sasha": []string{
		"motor_scooter",
	},
	"satisfied": []string{
		"laughing",
	},
	"sauna": []string{
		"man_in_steamy_room",
		"woman_in_steamy_room",
	},
	"save": []string{
		"bookmark",
		"bookmark_tabs",
		"floppy_disk",
	},
	"savouring": []string{
		"yum",
	},
	"say": []string{
		"speaking_head",
	},
	"sc": []string{
		"seychelles",
	},
	"scale": []string{
		"level_slider",
	},
	"scared": []string{
		"fearful",
		"scream",
		"scream_cat",
	},
	"scary": []string{
		"ghost",
		"japanese_goblin",
		"japanese_ogre",
		"skull_and_crossbones",
	},
	"scepticism": []string{
		"raised_eyebrow",
	},
	"schedule": []string{
		"calendar",
		"clock1",
		"clock10",
		"clock1030",
		"clock11",
		"clock1130",
		"clock12",
		"clock1230",
		"clock130",
		"clock2",
		"clock230",
		"clock3",
		"clock330",
		"clock4",
		"clock430",
		"clock5",
		"clock530",
		"clock6",
		"clock630",
		"clock7",
		"clock730",
		"clock8",
		"clock830",
		"clock9",
		"clock930",
		"date",
		"spiral_calendar",
	},
	"school": []string{
		"apple",
		"children_crossing",
		"mortar_board",
		"pencil2",
		"straight_ruler",
	},
	"science": []string{
		"alembic",
		"atom_symbol",
		"microscope",
		"telescope",
	},
	"score": []string{
		"100",
		"headphones",
		"musical_note",
		"notes",
	},
	"scorpio": []string{
		"scorpius",
	},
	"scotch": []string{
		"tumbler_glass",
	},
	"scottish": []string{
		"scotland",
	},
	"scout": []string{
		"fleur_de_lis",
	},
	"scream": []string{
		"scream_cat",
	},
	"screen": []string{
		"computer",
		"desktop_computer",
	},
	"scribble": []string{
		"curly_loop",
		"wavy_dash",
	},
	"sd": []string{
		"south_sudan",
		"sudan",
	},
	"se": []string{
		"sweden",
	},
	"sea": []string{
		"anchor",
		"blowfish",
		"dolphin",
		"fish_cake",
		"ocean",
		"octopus",
		"shark",
		"shell",
		"squid",
		"surfing_man",
		"surfing_woman",
		"whale",
		"whale2",
	},
	"seafood": []string{
		"shrimp",
	},
	"sealed": []string{
		"zipper_mouth_face",
	},
	"search": []string{
		"mag",
		"mag_right",
	},
	"season": []string{
		"snowflake",
		"snowman",
		"snowman_with_snow",
	},
	"second": []string{
		"2nd_place_medal",
	},
	"secret": []string{
		"lock_with_ink_pen",
		"wink",
		"zipper_mouth_face",
	},
	"security": []string{
		"closed_lock_with_key",
		"lock",
		"lock_with_ink_pen",
		"no_entry",
		"shield",
		"unlock",
	},
	"see": []string{
		"eye",
		"eyes",
	},
	"senior": []string{
		"older_adult",
		"older_man",
		"older_woman",
	},
	"serenity": []string{
		"man_in_lotus_position",
		"woman_in_lotus_position",
	},
	"serious": []string{
		"unamused",
	},
	"service": []string{
		"bellhop_bell",
	},
	"sg": []string{
		"singapore",
	},
	"shake": []string{
		"handshake",
	},
	"shape": []string{
		"black_circle",
		"black_large_square",
		"black_medium_small_square",
		"black_medium_square",
		"black_small_square",
		"black_square_button",
		"curly_loop",
		"eight_pointed_black_star",
		"large_blue_circle",
		"large_blue_diamond",
		"large_orange_diamond",
		"left_right_arrow",
		"ng",
		"red_circle",
		"small_blue_diamond",
		"small_orange_diamond",
		"small_red_triangle",
		"small_red_triangle_down",
		"white_circle",
		"white_large_square",
		"white_medium_small_square",
		"white_medium_square",
		"white_small_square",
		"white_square_button",
	},
	"sheep": []string{
		"ram",
	},
	"shell": []string{
		"snail",
	},
	"shh": []string{
		"hushed",
	},
	"shhh": []string{
		"shushing",
	},
	"shield": []string{
		"beginner",
	},
	"shine": []string{
		"sparkler",
		"sparkles",
	},
	"shiny": []string{
		"sparkles",
	},
	"ship": []string{
		"anchor",
		"canoe",
		"ferry",
		"motor_boat",
		"rocket",
		"rowing_man",
		"rowing_woman",
		"sailboat",
		"speedboat",
	},
	"shipit": []string{
		"sheep",
	},
	"shirt": []string{
		"necktie",
		"tshirt",
	},
	"shit": []string{
		"poop",
	},
	"shitface": []string{
		"poop",
	},
	"shock": []string{
		"hand_over_mouth",
	},
	"shocked": []string{
		"exploding_head",
	},
	"shoes": []string{
		"athletic_shoe",
		"boot",
		"high_heel",
		"sandal",
	},
	"shoo": []string{
		"dash",
	},
	"shoot": []string{
		"dizzy",
	},
	"shopping": []string{
		"convenience_store",
		"credit_card",
		"department_store",
		"dress",
		"handbag",
		"jeans",
		"pouch",
		"purse",
	},
	"shopping_bags": []string{
		"womans_clothes",
	},
	"shot": []string{
		"tumbler_glass",
	},
	"show": []string{
		"tv",
	},
	"shower": []string{
		"bath",
		"bathtub",
	},
	"shuffle": []string{
		"twisted_rightwards_arrows",
	},
	"shy": []string{
		"blush",
		"flushed",
	},
	"si": []string{
		"slovenia",
	},
	"sick": []string{
		"confounded",
		"face_with_thermometer",
		"mask",
		"nauseated_face",
		"persevere",
		"sneezing_face",
		"tired_face",
		"vomiting",
	},
	"side_eye": []string{
		"unamused",
	},
	"sideways": []string{
		"left_right_arrow",
	},
	"sierra": []string{
		"sierra_leone",
	},
	"sight": []string{
		"flashlight",
	},
	"sign": []string{
		"aquarius",
		"aries",
		"cancer",
		"capricorn",
		"children_crossing",
		"gemini",
		"leo",
		"libra",
		"ophiuchus",
		"pisces",
		"put_litter_in_its_place",
		"sagittarius",
		"scorpius",
		"taurus",
		"virgo",
	},
	"sign_of_horns": []string{
		"metal",
	},
	"signal": []string{
		"traffic_light",
	},
	"sikhism": []string{
		"om",
		"wheel_of_dharma",
	},
	"silence": []string{
		"mobile_phone_off",
		"mute",
		"speaker",
	},
	"silent": []string{
		"no_bell",
	},
	"silk": []string{
		"spider_web",
	},
	"silly": []string{
		"upside_down_face",
		"yum",
	},
	"sing": []string{
		"microphone",
		"speaking_head",
		"studio_microphone",
	},
	"sint": []string{
		"sint_maarten",
	},
	"sir": []string{
		"man",
	},
	"sit": []string{
		"seat",
	},
	"sk": []string{
		"slovakia",
	},
	"skeleton": []string{
		"skull",
	},
	"skeptical": []string{
		"unamused",
	},
	"sketch": []string{
		"straight_ruler",
		"triangular_ruler",
	},
	"ski": []string{
		"aerial_tramway",
		"mountain_cableway",
	},
	"skill": []string{
		"man_juggling",
		"woman_juggling",
	},
	"sky": []string{
		"city_sunset",
		"cloud",
		"crescent_moon",
		"rainbow",
		"sun_with_face",
		"u7a7a",
		"waxing_gibbous_moon",
	},
	"sleep": []string{
		"bed",
		"crescent_moon",
		"first_quarter_moon",
		"first_quarter_moon_with_face",
		"full_moon",
		"full_moon_with_face",
		"last_quarter_moon",
		"last_quarter_moon_with_face",
		"new_moon",
		"new_moon_with_face",
		"waning_crescent_moon",
		"waning_gibbous_moon",
		"waxing_crescent_moon",
		"waxing_gibbous_moon",
	},
	"sleepy": []string{
		"sleeping",
		"weary",
		"zzz",
	},
	"sleigh": []string{
		"sled",
	},
	"slow": []string{
		"snail",
		"turtle",
	},
	"smart": []string{
		"brain",
	},
	"smell": []string{
		"no_smoking",
		"nose",
	},
	"smile": []string{
		"blush",
		"grin",
		"grinning",
		"hugs",
		"slightly_smiling_face",
		"smile_cat",
		"smiley",
		"smiley_cat",
		"smirk",
		"star_struck",
		"stuck_out_tongue",
		"stuck_out_tongue_closed_eyes",
		"stuck_out_tongue_winking_eye",
		"sunglasses",
		"sweat_smile",
		"upside_down_face",
		"wink",
		"yum",
	},
	"smirk": []string{
		"smirk_cat",
	},
	"smoke": []string{
		"dash",
		"factory",
		"no_smoking",
		"smoking",
	},
	"smug": []string{
		"smirk",
	},
	"sn": []string{
		"senegal",
	},
	"snack": []string{
		"candy",
		"chocolate_bar",
		"cookie",
		"doughnut",
		"fries",
		"lollipop",
		"popcorn",
	},
	"snare": []string{
		"drum",
	},
	"sneakers": []string{
		"athletic_shoe",
	},
	"sneeze": []string{
		"sneezing_face",
	},
	"sniff": []string{
		"nose",
	},
	"snow": []string{
		"ski",
		"skier",
	},
	"so": []string{
		"somalia",
	},
	"soda": []string{
		"cup_with_straw",
	},
	"software": []string{
		"man_technologist",
		"woman_technologist",
	},
	"solomon": []string{
		"solomon_islands",
	},
	"solong": []string{
		"wave",
	},
	"sorcerer": []string{
		"wizard",
	},
	"sorry": []string{
		"broken_heart",
	},
	"sound": []string{
		"bell",
		"ear",
		"loudspeaker",
		"mega",
		"microphone",
		"musical_note",
		"mute",
		"no_bell",
		"speaker",
	},
	"soup": []string{
		"canned_food",
		"stew",
	},
	"south": []string{
		"kr",
		"south_africa",
		"south_georgia_south_sandwich_islands",
		"south_sudan",
	},
	"southeast": []string{
		"arrow_lower_right",
	},
	"southern": []string{
		"french_southern_territories",
	},
	"southwest": []string{
		"arrow_lower_left",
	},
	"spa": []string{
		"man_in_steamy_room",
		"woman_in_steamy_room",
	},
	"space": []string{
		"comet",
		"first_quarter_moon",
		"first_quarter_moon_with_face",
		"full_moon",
		"full_moon_with_face",
		"last_quarter_moon",
		"last_quarter_moon_with_face",
		"man_astronaut",
		"milky_way",
		"new_moon",
		"new_moon_with_face",
		"satellite",
		"telescope",
		"waning_crescent_moon",
		"waning_gibbous_moon",
		"waxing_crescent_moon",
		"waxing_gibbous_moon",
		"woman_astronaut",
	},
	"spaceflight": []string{
		"artificial_satellite",
	},
	"spain": []string{
		"es",
	},
	"sparkle": []string{
		"dizzy",
		"eight_spoked_asterisk",
		"star2",
	},
	"speaker": []string{
		"loud_sound",
		"mega",
		"sound",
	},
	"spear": []string{
		"trident",
	},
	"speech": []string{
		"right_anger_bubble",
		"thought_balloon",
	},
	"speed": []string{
		"bullettrain_front",
		"fast_forward",
	},
	"spent": []string{
		"dizzy_face",
	},
	"spicy": []string{
		"curry",
		"hot_pepper",
	},
	"spin": []string{
		"cyclone",
	},
	"spiny": []string{
		"hedgehog",
	},
	"spiral": []string{
		"cyclone",
	},
	"spock": []string{
		"vulcan_salute",
	},
	"spooky": []string{
		"ghost",
		"izakaya_lantern",
	},
	"sports": []string{
		"athletic_shoe",
		"badminton",
		"baseball",
		"basketball",
		"basketball_man",
		"basketball_woman",
		"bike",
		"biking_man",
		"biking_woman",
		"bow_and_arrow",
		"bowling",
		"boxing_glove",
		"climbing_man",
		"climbing_woman",
		"cricket",
		"curling_stone",
		"field_hockey",
		"football",
		"goal_net",
		"golf",
		"golfing_man",
		"golfing_woman",
		"ice_hockey",
		"ice_skate",
		"man_playing_handball",
		"man_playing_water_polo",
		"men_wrestling",
		"motorcycle",
		"mountain_biking_man",
		"mountain_biking_woman",
		"person_fencing",
		"ping_pong",
		"racing_car",
		"reminder_ribbon",
		"rowing_man",
		"rowing_woman",
		"rugby_football",
		"ski",
		"skier",
		"snowboarder",
		"soccer",
		"stadium",
		"surfing_man",
		"surfing_woman",
		"swimming_man",
		"swimming_woman",
		"tennis",
		"tickets",
		"volleyball",
		"weight_lifting_man",
		"weight_lifting_woman",
		"woman_playing_handball",
		"woman_playing_water_polo",
		"women_wrestling",
	},
	"spots": []string{
		"giraffe",
	},
	"spring": []string{
		"bird",
		"bouquet",
		"cherry_blossom",
		"droplet",
		"honeybee",
		"leaves",
		"open_umbrella",
		"partly_sunny",
		"rabbit",
		"rabbit2",
		"rainbow",
		"rose",
		"seedling",
		"sunny",
		"tulip",
		"umbrella",
		"white_flower",
		"wind_chime",
		"womans_hat",
	},
	"spy": []string{
		"female_detective",
		"male_detective",
	},
	"squiggle": []string{
		"curly_loop",
		"wavy_dash",
	},
	"squirrel": []string{
		"chestnut",
		"chipmunk",
	},
	"sr": []string{
		"suriname",
	},
	"sri": []string{
		"sri_lanka",
	},
	"sshh": []string{
		"secret",
	},
	"staffmode": []string{
		"rocket",
	},
	"stage": []string{
		"cinema",
	},
	"stalk": []string{
		"eyes",
	},
	"star": []string{
		"asterisk",
		"dizzy",
		"eight_spoked_asterisk",
	},
	"star trek": []string{
		"vulcan_salute",
	},
	"starch": []string{
		"potato",
	},
	"stare": []string{
		"eye",
	},
	"starry": []string{
		"star_struck",
	},
	"stars": []string{
		"milky_way",
		"sparkle",
		"sparkler",
		"sparkles",
		"telescope",
	},
	"start": []string{
		"new",
	},
	"states": []string{
		"micronesia",
		"us",
	},
	"stationery": []string{
		"black_nib",
		"card_file_box",
		"card_index",
		"card_index_dividers",
		"clipboard",
		"fountain_pen",
		"memo",
		"notebook",
		"paperclip",
		"paperclips",
		"pen",
		"pencil2",
		"pushpin",
		"round_pushpin",
		"scissors",
		"spiral_notepad",
		"straight_ruler",
		"triangular_ruler",
		"writing_hand",
	},
	"stats": []string{
		"bar_chart",
		"chart",
		"chart_with_downwards_trend",
		"chart_with_upwards_trend",
		"part_alternation_mark",
	},
	"steamroom": []string{
		"man_in_steamy_room",
		"woman_in_steamy_room",
	},
	"steps": []string{
		"walking_man",
		"walking_woman",
	},
	"sterling": []string{
		"pound",
	},
	"stiletto": []string{
		"high_heel",
	},
	"stockings": []string{
		"socks",
	},
	"stone": []string{
		"white_large_square",
		"white_medium_small_square",
		"white_medium_square",
	},
	"stop": []string{
		"no_entry",
		"no_entry_sign",
		"raised_hand",
		"stop_sign",
	},
	"straight face": []string{
		"unamused",
	},
	"stripes": []string{
		"zebra",
	},
	"strong": []string{
		"muscle",
	},
	"student": []string{
		"school",
		"school_satchel",
	},
	"study": []string{
		"blue_book",
		"books",
		"green_book",
		"memo",
		"microscope",
		"notebook",
		"notebook_with_decorative_cover",
		"open_book",
		"orange_book",
		"pencil2",
	},
	"stuffed": []string{
		"stuffed_flatbread",
	},
	"stuffy": []string{
		"monocle",
	},
	"stunned": []string{
		"anguished",
	},
	"style": []string{
		"barber",
	},
	"subtract": []string{
		"heavy_minus_sign",
	},
	"success": []string{
		"chart_with_upwards_trend",
	},
	"suit": []string{
		"business_suit_levitating",
	},
	"suits": []string{
		"clubs",
		"diamonds",
		"hearts",
		"spades",
	},
	"suitup": []string{
		"necktie",
	},
	"summer": []string{
		"beach_umbrella",
		"beer",
		"beers",
		"bikini",
		"fishing_pole_and_fish",
		"fountain",
		"fried_shrimp",
		"golf",
		"icecream",
		"low_brightness",
		"muscle",
		"palm_tree",
		"parasol_on_ground",
		"sailboat",
		"shaved_ice",
		"speedboat",
		"sunglasses",
		"sunny",
		"surfing_man",
		"surfing_woman",
		"swimming_man",
		"swimming_woman",
		"tanabata_tree",
		"tropical_drink",
		"tulip",
		"watermelon",
	},
	"sun": []string{
		"high_brightness",
		"low_brightness",
	},
	"sunglass": []string{
		"sunglasses",
	},
	"sunny": []string{
		"beach_umbrella",
	},
	"sunset": []string{
		"flower_playing_cards",
	},
	"suppedaneum": []string{
		"orthodox_cross",
	},
	"support": []string{
		"reminder_ribbon",
	},
	"surgery": []string{
		"hospital",
	},
	"surimi": []string{
		"fish_cake",
	},
	"surprise": []string{
		"bangbang",
		"exclamation",
		"grey_exclamation",
		"hand_over_mouth",
		"interrobang",
		"open_mouth",
		"raised_eyebrow",
	},
	"surprised": []string{
		"astonished",
	},
	"surrender": []string{
		"white_flag",
	},
	"sustain": []string{
		"battery",
	},
	"swearing": []string{
		"symbols_over_mouth",
	},
	"sweat": []string{
		"cold_sweat",
		"disappointed_relieved",
		"sweat_smile",
	},
	"sweet": []string{
		"candy",
		"chocolate_bar",
		"cookie",
		"dango",
		"doughnut",
		"honey_pot",
		"lollipop",
	},
	"swim": []string{
		"tropical_fish",
	},
	"swimming": []string{
		"bikini",
	},
	"swirl": []string{
		"cyclone",
		"fish_cake",
	},
	"sword": []string{
		"person_fencing",
	},
	"symbol": []string{
		"hash",
	},
	"symphony": []string{
		"violin",
	},
	"sync": []string{
		"arrows_clockwise",
		"arrows_counterclockwise",
	},
	"syrian": []string{
		"syria",
	},
	"sz": []string{
		"swaziland",
	},
	"tabletop": []string{
		"game_die",
	},
	"tableware": []string{
		"spoon",
	},
	"taekwondo": []string{
		"martial_arts_uniform",
	},
	"tag": []string{
		"label",
	},
	"talk": []string{
		"left_speech_bubble",
		"speaking_head",
		"speech_balloon",
	},
	"talkshow": []string{
		"microphone",
		"studio_microphone",
	},
	"tanzania,": []string{
		"tanzania",
	},
	"tap": []string{
		"non-potable_water",
	},
	"tape": []string{
		"film_projector",
		"loop",
	},
	"target": []string{
		"dart",
	},
	"td": []string{
		"chad",
	},
	"teach": []string{
		"school",
	},
	"team": []string{
		"busts_in_silhouette",
		"rugby_football",
	},
	"tears": []string{
		"cry",
		"crying_cat_face",
		"joy",
		"joy_cat",
		"sob",
	},
	"technology": []string{
		"cd",
		"computer",
		"desktop_computer",
		"fax",
		"floppy_disk",
		"iphone",
		"keyboard",
		"minidisc",
		"phone",
		"telephone_receiver",
		"trackball",
		"tv",
	},
	"tee": []string{
		"tshirt",
	},
	"teenager": []string{
		"boy",
		"girl",
	},
	"teeth": []string{
		"grimacing",
	},
	"telephone": []string{
		"phone",
	},
	"television": []string{
		"tv",
	},
	"temperature": []string{
		"face_with_thermometer",
		"thermometer",
	},
	"temple": []string{
		"place_of_worship",
		"shinto_shrine",
		"synagogue",
	},
	"tent": []string{
		"camping",
	},
	"terrified": []string{
		"fearful",
	},
	"territories": []string{
		"french_southern_territories",
		"palestinian_territories",
	},
	"territory": []string{
		"british_indian_ocean_territory",
	},
	"terrorism": []string{
		"bomb",
	},
	"test": []string{
		"100",
		"hourglass",
		"memo",
	},
	"text": []string{
		"keyboard",
	},
	"textbook": []string{
		"closed_book",
		"orange_book",
	},
	"tg": []string{
		"togo",
	},
	"th": []string{
		"elephant",
		"thailand",
	},
	"theater": []string{
		"cinema",
		"performing_arts",
	},
	"therapist": []string{
		"man_health_worker",
		"woman_health_worker",
	},
	"thermometer": []string{
		"face_with_thermometer",
	},
	"think": []string{
		"thinking",
	},
	"thinking": []string{
		"right_anger_bubble",
		"thought_balloon",
	},
	"third": []string{
		"3rd_place_medal",
	},
	"throw up": []string{
		"nauseated_face",
	},
	"thumbsdown": []string{
		"-1",
	},
	"thumbsup": []string{
		"+1",
	},
	"thunder": []string{
		"cloud_with_lightning",
		"zap",
	},
	"tichel": []string{
		"woman_with_headscarf",
	},
	"tick": []string{
		"ballot_box_with_check",
		"heavy_check_mark",
		"white_check_mark",
	},
	"tidy": []string{
		"bookmark_tabs",
	},
	"time": []string{
		"alarm_clock",
		"clock1",
		"clock10",
		"clock1030",
		"clock11",
		"clock1130",
		"clock12",
		"clock1230",
		"clock130",
		"clock2",
		"clock230",
		"clock3",
		"clock330",
		"clock4",
		"clock430",
		"clock5",
		"clock530",
		"clock6",
		"clock630",
		"clock7",
		"clock730",
		"clock8",
		"clock830",
		"clock9",
		"clock930",
		"hourglass",
		"hourglass_flowing_sand",
		"mantelpiece_clock",
		"stopwatch",
		"watch",
	},
	"timor": []string{
		"timor_leste",
	},
	"tired": []string{
		"sleeping",
		"sleepy",
		"sweat",
		"weary",
		"zzz",
	},
	"titanic": []string{
		"ship",
	},
	"tj": []string{
		"tajikistan",
	},
	"tk": []string{
		"tokelau",
	},
	"tn": []string{
		"tunisia",
	},
	"to": []string{
		"tonga",
	},
	"toad": []string{
		"frog",
	},
	"toast": []string{
		"bread",
		"clinking_glasses",
	},
	"tobacco": []string{
		"smoking",
	},
	"tobago": []string{
		"trinidad_tobago",
	},
	"toboggan": []string{
		"sled",
	},
	"toddler": []string{
		"baby",
	},
	"toilet": []string{
		"mens",
		"restroom",
		"wc",
		"womens",
	},
	"tome": []string{
		"sao_tome_principe",
	},
	"tone": []string{
		"musical_note",
	},
	"tongue": []string{
		"stuck_out_tongue",
		"stuck_out_tongue_closed_eyes",
		"stuck_out_tongue_winking_eye",
		"yum",
	},
	"tool": []string{
		"clamp",
	},
	"tools": []string{
		"hammer",
		"hammer_and_pick",
		"hammer_and_wrench",
		"nut_and_bolt",
		"pick",
		"wrench",
	},
	"top": []string{
		"arrow_double_up",
		"arrow_heading_up",
		"arrow_up",
		"arrow_up_small",
		"small_red_triangle",
	},
	"tornado": []string{
		"cyclone",
	},
	"tortoise": []string{
		"turtle",
	},
	"toss": []string{
		"wastebasket",
	},
	"toy": []string{
		"dolls",
	},
	"tracking": []string{
		"footprints",
		"paw_prints",
	},
	"trackpad": []string{
		"trackball",
	},
	"trademark": []string{
		"tm",
	},
	"train": []string{
		"railway_track",
		"steam_locomotive",
	},
	"training": []string{
		"weight_lifting_man",
		"weight_lifting_woman",
	},
	"transgender": []string{
		"rainbow_flag",
	},
	"transport": []string{
		"baggage_claim",
		"seat",
	},
	"transportation": []string{
		"aerial_tramway",
		"airplane",
		"articulated_lorry",
		"blue_car",
		"bullettrain_front",
		"bullettrain_side",
		"bus",
		"busstop",
		"fire_engine",
		"flying_saucer",
		"helicopter",
		"light_rail",
		"metro",
		"minibus",
		"monorail",
		"mountain_biking_man",
		"mountain_biking_woman",
		"mountain_cableway",
		"mountain_railway",
		"oncoming_automobile",
		"oncoming_bus",
		"police_car",
		"railway_car",
		"railway_track",
		"red_car",
		"sailboat",
		"ship",
		"small_airplane",
		"speedboat",
		"station",
		"steam_locomotive",
		"suspension_railway",
		"taxi",
		"traffic_light",
		"train",
		"train2",
		"tram",
		"trolleybus",
		"truck",
		"vertical_traffic_light",
	},
	"trash": []string{
		"do_not_litter",
		"recycle",
		"wastebasket",
	},
	"travel": []string{
		"bullettrain_front",
		"currency_exchange",
		"left_luggage",
		"train",
	},
	"treble": []string{
		"musical_score",
	},
	"tree": []string{
		"leaves",
	},
	"triangle": []string{
		"arrow_up_small",
	},
	"trinidad": []string{
		"trinidad_tobago",
	},
	"tristan": []string{
		"st_helena",
	},
	"triton": []string{
		"merman",
	},
	"trolley": []string{
		"shopping_cart",
	},
	"tropical": []string{
		"desert_island",
		"palm_tree",
	},
	"tsukimi": []string{
		"rice_scene",
	},
	"tsunami": []string{
		"ocean",
	},
	"tube": []string{
		"metro",
	},
	"tuber": []string{
		"potato",
	},
	"turd": []string{
		"poop",
	},
	"turkey": []string{
		"poultry_leg",
		"tr",
	},
	"turks": []string{
		"turks_caicos_islands",
	},
	"tw": []string{
		"taiwan",
	},
	"tweet": []string{
		"bird",
	},
	"twilight": []string{
		"first_quarter_moon",
		"first_quarter_moon_with_face",
		"full_moon",
		"full_moon_with_face",
		"last_quarter_moon",
		"last_quarter_moon_with_face",
		"new_moon",
		"new_moon_with_face",
		"waning_crescent_moon",
		"waning_gibbous_moon",
		"waxing_crescent_moon",
		"waxing_gibbous_moon",
	},
	"twisted": []string{
		"pretzel",
	},
	"twister": []string{
		"tornado",
	},
	"twitter": []string{
		"hash",
	},
	"two": []string{
		"v",
	},
	"type": []string{
		"keyboard",
	},
	"typhoon": []string{
		"cyclone",
	},
	"tyrannosaurus": []string{
		"t-rex",
	},
	"ua": []string{
		"ukraine",
	},
	"uber": []string{
		"oncoming_taxi",
		"taxi",
	},
	"ufo": []string{
		"flying_saucer",
	},
	"ug": []string{
		"uganda",
	},
	"uk": []string{
		"guardsman",
		"guardswoman",
		"pound",
	},
	"unconscious": []string{
		"dizzy_face",
	},
	"undead": []string{
		"man_zombie",
		"woman_zombie",
	},
	"underground": []string{
		"metro",
	},
	"undo": []string{
		"leftwards_arrow_with_hook",
	},
	"unhappy": []string{
		"frowning_man",
		"frowning_woman",
	},
	"unicorn_face": []string{
		"rainbow",
	},
	"unimpressed": []string{
		"unamused",
	},
	"union": []string{
		"eu",
	},
	"union jack": []string{
		"uk",
	},
	"united": []string{
		"tanzania",
		"uk",
		"united_arab_emirates",
		"us",
	},
	"university": []string{
		"mortar_board",
	},
	"unwell": []string{
		"confounded",
	},
	"up": []string{
		"point_up",
		"point_up_2",
		"small_red_triangle",
	},
	"upset": []string{
		"cry",
		"crying_cat_face",
		"disappointed",
		"frowning_face",
		"pensive",
		"persevere",
		"slightly_frowning_face",
		"sob",
		"tired_face",
		"weary",
	},
	"urban": []string{
		"cityscape",
	},
	"url": []string{
		"link",
	},
	"us": []string{
		"us_virgin_islands",
	},
	"user": []string{
		"bust_in_silhouette",
		"busts_in_silhouette",
		"speaking_head",
	},
	"uy": []string{
		"uruguay",
	},
	"uz": []string{
		"uzbekistan",
	},
	"vacation": []string{
		"christmas_tree",
		"sunrise",
		"sunrise_over_mountains",
	},
	"valentines": []string{
		"blue_heart",
		"couple",
		"couple_with_heart_man_man",
		"couple_with_heart_woman_man",
		"couple_with_heart_woman_woman",
		"couplekiss_man_man",
		"couplekiss_man_woman",
		"couplekiss_woman_woman",
		"cupid",
		"gift_heart",
		"green_heart",
		"heart",
		"heart_eyes",
		"heart_eyes_cat",
		"heartbeat",
		"heartpulse",
		"kiss",
		"kissing",
		"kissing_closed_eyes",
		"kissing_heart",
		"kissing_smiling_eyes",
		"love_letter",
		"orange_heart",
		"purple_heart",
		"revolving_hearts",
		"ring",
		"rose",
		"sparkling_heart",
		"two_hearts",
		"yellow_heart",
	},
	"vampire": []string{
		"bat",
		"coffin",
	},
	"vase": []string{
		"amphora",
	},
	"vatican": []string{
		"vatican_city",
	},
	"ve": []string{
		"venezuela",
	},
	"vegas": []string{
		"slot_machine",
	},
	"vegatable": []string{
		"potato",
	},
	"vegetable": []string{
		"bamboo",
		"broccoli",
		"cactus",
		"carrot",
		"corn",
		"eggplant",
		"fallen_leaf",
		"four_leaf_clover",
		"herb",
		"hibiscus",
		"leaves",
		"maple_leaf",
		"mushroom",
		"palm_tree",
		"shamrock",
		"tomato",
	},
	"vehicle": []string{
		"aerial_tramway",
		"airplane",
		"articulated_lorry",
		"blue_car",
		"bullettrain_front",
		"bullettrain_side",
		"bus",
		"fire_engine",
		"flying_saucer",
		"helicopter",
		"kick_scooter",
		"light_rail",
		"minibus",
		"monorail",
		"motor_scooter",
		"mountain_cableway",
		"mountain_railway",
		"oncoming_automobile",
		"oncoming_bus",
		"oncoming_police_car",
		"oncoming_taxi",
		"police_car",
		"railway_car",
		"red_car",
		"small_airplane",
		"speedboat",
		"station",
		"steam_locomotive",
		"suspension_railway",
		"taxi",
		"tractor",
		"train",
		"train2",
		"tram",
		"trolleybus",
	},
	"venison": []string{
		"deer",
	},
	"venue": []string{
		"stadium",
	},
	"verde": []string{
		"cape_verde",
	},
	"vertical": []string{
		"arrow_up_down",
	},
	"vespa": []string{
		"motor_scooter",
	},
	"victory": []string{
		"v",
	},
	"video": []string{
		"film_projector",
		"vhs",
	},
	"viet": []string{
		"vietnam",
	},
	"view": []string{
		"sunrise",
		"sunrise_over_mountains",
	},
	"vincent": []string{
		"st_vincent_grenadines",
	},
	"violence": []string{
		"facepunch",
		"gun",
	},
	"virgin": []string{
		"british_virgin_islands",
		"us_virgin_islands",
	},
	"volume": []string{
		"loud_sound",
		"loudspeaker",
		"mega",
		"mute",
		"no_bell",
		"sound",
		"speaker",
	},
	"vomit": []string{
		"nauseated_face",
	},
	"vortex": []string{
		"cyclone",
	},
	"vote": []string{
		"ballot_box",
		"ballot_box_with_check",
		"white_check_mark",
	},
	"vu": []string{
		"vanuatu",
	},
	"wait": []string{
		"busstop",
	},
	"wake": []string{
		"alarm_clock",
	},
	"walking": []string{
		"footprints",
		"no_pedestrians",
		"running_man",
		"running_woman",
	},
	"walking dead": []string{
		"man_zombie",
		"woman_zombie",
	},
	"wallis": []string{
		"wallis_futuna",
	},
	"warm": []string{
		"desert",
		"hotsprings",
		"low_brightness",
	},
	"warning": []string{
		"children_crossing",
		"construction",
		"exclamation",
		"grey_exclamation",
	},
	"washroom": []string{
		"toilet",
	},
	"wat": []string{
		"interrobang",
	},
	"watch": []string{
		"eye",
		"eyes",
	},
	"water": []string{
		"canoe",
		"droplet",
		"fountain",
		"ocean",
		"rowing_man",
		"rowing_woman",
		"sailboat",
		"shower",
		"sweat_drops",
		"swimming_man",
		"swimming_woman",
	},
	"wave": []string{
		"ocean",
	},
	"wax": []string{
		"candle",
	},
	"waxing_gibbous_moon": []string{
		"waning_gibbous_moon",
	},
	"way": []string{
		"arrow_up_down",
	},
	"wc": []string{
		"mens",
		"restroom",
		"toilet",
	},
	"wealthy": []string{
		"monocle",
	},
	"weapon": []string{
		"crossed_swords",
		"dagger",
		"gun",
		"hocho",
		"trident",
	},
	"weather": []string{
		"beach_umbrella",
		"closed_umbrella",
		"cloud",
		"cloud_with_lightning",
		"cloud_with_lightning_and_rain",
		"cloud_with_rain",
		"cloud_with_snow",
		"cyclone",
		"fog",
		"open_umbrella",
		"parasol_on_ground",
		"partly_sunny",
		"snowflake",
		"snowman",
		"snowman_with_snow",
		"sun_behind_large_cloud",
		"sun_behind_rain_cloud",
		"sun_behind_small_cloud",
		"sunny",
		"thermometer",
		"tornado",
		"umbrella",
		"zap",
	},
	"wedding": []string{
		"bride_with_veil",
		"man_in_tuxedo",
		"ring",
	},
	"weed": []string{
		"herb",
	},
	"weep": []string{
		"crying_cat_face",
		"joy",
	},
	"weight": []string{
		"balance_scale",
	},
	"weird": []string{
		"alien",
		"confused",
	},
	"welsh": []string{
		"wales",
	},
	"western": []string{
		"western_sahara",
	},
	"what": []string{
		"frowning",
	},
	"wheat": []string{
		"bread",
	},
	"whine": []string{
		"tired_face",
	},
	"whirlpool": []string{
		"cyclone",
	},
	"whisky": []string{
		"tumbler_glass",
	},
	"whoa": []string{
		"open_mouth",
	},
	"whoops": []string{
		"hand_over_mouth",
	},
	"wifi": []string{
		"signal_strength",
	},
	"wild": []string{
		"bear",
		"tiger",
		"wolf",
	},
	"win": []string{
		"trophy",
	},
	"wind": []string{
		"dash",
	},
	"wine": []string{
		"champagne",
		"clinking_glasses",
		"grapes",
		"sake",
	},
	"wings": []string{
		"angel",
	},
	"wink": []string{
		"stuck_out_tongue_winking_eye",
	},
	"winning": []string{
		"1st_place_medal",
		"medal_military",
		"medal_sports",
	},
	"winter": []string{
		"gloves",
		"mountain_snow",
		"scarf",
		"ski",
		"skier",
		"snowboarder",
		"snowflake",
		"snowman",
		"snowman_with_snow",
	},
	"wip": []string{
		"building_construction",
		"construction",
		"construction_worker_man",
		"construction_worker_woman",
		"warning",
	},
	"wish": []string{
		"pray",
	},
	"witch": []string{
		"sorceress",
	},
	"without_snow": []string{
		"snowman",
	},
	"woman": []string{
		"basketball_woman",
		"biking_woman",
		"bikini",
		"blonde_woman",
		"bowing_woman",
		"bride_with_veil",
		"climbing_woman",
		"construction_worker_woman",
		"dancer",
		"female_detective",
		"frowning_woman",
		"girl",
		"golfing_woman",
		"guardswoman",
		"haircut_woman",
		"lipstick",
		"massage_woman",
		"mermaid",
		"mountain_biking_woman",
		"mrs_claus",
		"no_good_woman",
		"ok_woman",
		"policewoman",
		"pouting_woman",
		"princess",
		"raising_hand_woman",
		"rowing_woman",
		"running_woman",
		"sorceress",
		"surfing_woman",
		"swimming_woman",
		"tipping_hand_woman",
		"walking_woman",
		"weight_lifting_woman",
		"woman_artist",
		"woman_astronaut",
		"woman_cook",
		"woman_elf",
		"woman_facepalming",
		"woman_factory_worker",
		"woman_fairy",
		"woman_farmer",
		"woman_firefighter",
		"woman_genie",
		"woman_health_worker",
		"woman_in_lotus_position",
		"woman_in_steamy_room",
		"woman_judge",
		"woman_mechanic",
		"woman_office_worker",
		"woman_pilot",
		"woman_scientist",
		"woman_shrugging",
		"woman_singer",
		"woman_student",
		"woman_teacher",
		"woman_technologist",
		"woman_vampire",
		"woman_with_turban",
		"woman_zombie",
		"womens",
	},
	"women": []string{
		"dancing_women",
		"kimono",
		"ok_woman",
		"older_woman",
	},
	"woo": []string{
		"hushed",
	},
	"woof": []string{
		"dog",
	},
	"wool": []string{
		"sheep",
	},
	"words": []string{
		"back",
		"capital_abcd",
		"cl",
		"cool",
		"end",
		"free",
		"id",
		"left_speech_bubble",
		"new",
		"ng",
		"on",
		"soon",
		"sos",
		"speech_balloon",
		"top",
		"vs",
	},
	"work": []string{
		"briefcase",
		"office",
	},
	"worker": []string{
		"construction_worker_man",
		"construction_worker_woman",
	},
	"working": []string{
		"building_construction",
	},
	"world": []string{
		"earth_africa",
		"earth_americas",
		"earth_asia",
		"globe_with_meridians",
	},
	"worm": []string{
		"bug",
	},
	"worship": []string{
		"mosque",
		"synagogue",
	},
	"wow": []string{
		"exclamation",
		"grey_exclamation",
		"open_mouth",
	},
	"wrench": []string{
		"man_mechanic",
		"woman_mechanic",
	},
	"wrestlers": []string{
		"men_wrestling",
		"women_wrestling",
	},
	"write": []string{
		"black_nib",
		"fountain_pen",
		"memo",
		"pen",
		"pencil2",
		"writing_hand",
	},
	"writing": []string{
		"black_nib",
		"fountain_pen",
		"memo",
		"pen",
		"pencil2",
	},
	"ws": []string{
		"american_samoa",
		"samoa",
	},
	"x": []string{
		"negative_squared_cross_mark",
	},
	"xk": []string{
		"kosovo",
	},
	"xmas": []string{
		"bell",
		"christmas_tree",
		"gift",
		"mrs_claus",
		"santa",
		"snowflake",
		"snowman",
		"snowman_with_snow",
	},
	"xox": []string{
		"astonished",
		"dizzy_face",
	},
	"yacht": []string{
		"ferry",
		"passenger_ship",
	},
	"yay": []string{
		"clap",
	},
	"ye": []string{
		"yemen",
	},
	"yea": []string{
		"raised_hands",
	},
	"yellow": []string{
		"blossom",
		"full_moon",
		"star",
	},
	"yellow-diamond": []string{
		"children_crossing",
	},
	"yes": []string{
		"+1",
		"accept",
		"ballot_box_with_check",
		"heavy_check_mark",
		"ok",
	},
	"yoga": []string{
		"man_in_lotus_position",
		"woman_in_lotus_position",
	},
	"young": []string{
		"child",
	},
	"yt": []string{
		"mayotte",
	},
	"yummy": []string{
		"yum",
	},
	"zealand": []string{
		"new_zealand",
	},
	"zen": []string{
		"man_in_lotus_position",
		"woman_in_lotus_position",
	},
	"zipper": []string{
		"zipper_mouth_face",
	},
	"zm": []string{
		"zambia",
	},
	"zodiac": []string{
		"aquarius",
		"aries",
		"cancer",
		"capricorn",
		"gemini",
		"leo",
		"libra",
		"pisces",
		"sagittarius",
		"scorpius",
		"taurus",
		"virgo",
	},
	"zoom": []string{
		"mag",
		"mag_right",
		"telescope",
	},
	"zoomin": []string{
		"microscope",
	},
	"zw": []string{
		"zimbabwe",
	},
	"zzz": []string{
		"sleeping",
	},
	"Åland": []string{
		"aland_islands",
	},
}

var emojiReplacer = strings.NewReplacer(
	":+1:", "👍",
	":-1:", "👎",
	":100:", "💯",
	":1234:", "🔢",
	":1st_place_medal:", "🥇",
	":2nd_place_medal:", "🥈",
	":3rd_place_medal:", "🥉",
	":8ball:", "🎱",
	":a:", "🅰️",
	":ab:", "🆎",
	":abc:", "🔤",
	":abcd:", "🔡",
	":accept:", "🉑",
	":adult:", "🧑",
	":aerial_tramway:", "🚡",
	":afghanistan:", "🇦🇫",
	":airplane:", "✈️",
	":aland_islands:", "🇦🇽",
	":alarm_clock:", "⏰",
	":albania:", "🇦🇱",
	":alembic:", "⚗",
	":algeria:", "🇩🇿",
	":alien:", "👽",
	":ambulance:", "🚑",
	":american_samoa:", "🇦🇸",
	":amphora:", "🏺",
	":anchor:", "⚓",
	":andorra:", "🇦🇩",
	":angel:", "👼",
	":anger:", "💢",
	":angola:", "🇦🇴",
	":angry:", "😠",
	":anguilla:", "🇦🇮",
	":anguished:", "😧",
	":ant:", "🐜",
	":antarctica:", "🇦🇶",
	":antigua_barbuda:", "🇦🇬",
	":apple:", "🍎",
	":aquarius:", "♒",
	":argentina:", "🇦🇷",
	":aries:", "♈",
	":armenia:", "🇦🇲",
	":arrow_backward:", "◀️",
	":arrow_double_down:", "⏬",
	":arrow_double_up:", "⏫",
	":arrow_down:", "⬇️",
	":arrow_down_small:", "🔽",
	":arrow_forward:", "▶️",
	":arrow_heading_down:", "⤵️",
	":arrow_heading_up:", "⤴️",
	":arrow_left:", "⬅️",
	":arrow_lower_left:", "↙️",
	":arrow_lower_right:", "↘️",
	":arrow_right:", "➡️",
	":arrow_right_hook:", "↪️",
	":arrow_up:", "⬆️",
	":arrow_up_down:", "↕️",
	":arrow_up_small:", "🔼",
	":arrow_upper_left:", "↖️",
	":arrow_upper_right:", "↗️",
	":arrows_clockwise:", "🔃",
	":arrows_counterclockwise:", "🔄",
	":art:", "🎨",
	":articulated_lorry:", "🚛",
	":artificial_satellite:", "🛰",
	":aruba:", "🇦🇼",
	":asterisk:", "*⃣",
	":astonished:", "😲",
	":athletic_shoe:", "👟",
	":atm:", "🏧",
	":atom_symbol:", "⚛",
	":australia:", "🇦🇺",
	":austria:", "🇦🇹",
	":avocado:", "🥑",
	":azerbaijan:", "🇦🇿",
	":b:", "🅱️",
	":baby:", "👶",
	":baby_bottle:", "🍼",
	":baby_chick:", "🐤",
	":baby_symbol:", "🚼",
	":back:", "🔙",
	":bacon:", "🥓",
	":badminton:", "🏸",
	":baggage_claim:", "🛄",
	":baguette_bread:", "🥖",
	":bahamas:", "🇧🇸",
	":bahrain:", "🇧🇭",
	":balance_scale:", "⚖",
	":balloon:", "🎈",
	":ballot_box:", "🗳",
	":ballot_box_with_check:", "☑️",
	":bamboo:", "🎍",
	":banana:", "🍌",
	":bangbang:", "‼️",
	":bangladesh:", "🇧🇩",
	":bank:", "🏦",
	":bar_chart:", "📊",
	":barbados:", "🇧🇧",
	":barber:", "💈",
	":baseball:", "⚾",
	":basketball:", "🏀",
	":basketball_man:", "⛹",
	":basketball_woman:", "⛹️‍♀️",
	":bat:", "🦇",
	":bath:", "🛀",
	":bathtub:", "🛁",
	":battery:", "🔋",
	":beach_umbrella:", "🏖",
	":bear:", "🐻",
	":bearded_person:", "🧔",
	":bed:", "🛏",
	":beer:", "🍺",
	":beers:", "🍻",
	":beetle:", "🐞",
	":beginner:", "🔰",
	":belarus:", "🇧🇾",
	":belgium:", "🇧🇪",
	":belize:", "🇧🇿",
	":bell:", "🔔",
	":bellhop_bell:", "🛎",
	":benin:", "🇧🇯",
	":bento:", "🍱",
	":bermuda:", "🇧🇲",
	":bhutan:", "🇧🇹",
	":bike:", "🚲",
	":biking_man:", "🚴",
	":biking_woman:", "🚴‍♀️",
	":bikini:", "👙",
	":billed_hat:", "🧢",
	":biohazard:", "☣",
	":bird:", "🐦",
	":birthday:", "🎂",
	":black_circle:", "⚫",
	":black_flag:", "🏴",
	":black_heart:", "🖤",
	":black_joker:", "🃏",
	":black_large_square:", "⬛",
	":black_medium_small_square:", "◾",
	":black_medium_square:", "◼️",
	":black_nib:", "✒️",
	":black_small_square:", "▪️",
	":black_square_button:", "🔲",
	":blonde_man:", "👱",
	":blonde_woman:", "👱‍♀️",
	":blossom:", "🌼",
	":blowfish:", "🐡",
	":blue_book:", "📘",
	":blue_car:", "🚙",
	":blue_heart:", "💙",
	":blush:", "😊",
	":boar:", "🐗",
	":bolivia:", "🇧🇴",
	":bomb:", "💣",
	":bookmark:", "🔖",
	":bookmark_tabs:", "📑",
	":books:", "📚",
	":boom:", "💥",
	":boot:", "👢",
	":bosnia_herzegovina:", "🇧🇦",
	":botswana:", "🇧🇼",
	":bouquet:", "💐",
	":bow_and_arrow:", "🏹",
	":bowing_man:", "🙇",
	":bowing_woman:", "🙇‍♀️",
	":bowl_with_spoon:", "🥣",
	":bowling:", "🎳",
	":boxing_glove:", "🥊",
	":boy:", "👦",
	":brain:", "🧠",
	":brazil:", "🇧🇷",
	":bread:", "🍞",
	":breastfeeding:", "🤱",
	":bride_with_veil:", "👰",
	":bridge_at_night:", "🌉",
	":briefcase:", "💼",
	":british_indian_ocean_territory:", "🇮🇴",
	":british_virgin_islands:", "🇻🇬",
	":broccoli:", "🥦",
	":broken_heart:", "💔",
	":brunei:", "🇧🇳",
	":bug:", "🐛",
	":building_construction:", "🏗",
	":bulb:", "💡",
	":bulgaria:", "🇧🇬",
	":bullettrain_front:", "🚅",
	":bullettrain_side:", "🚄",
	":burkina_faso:", "🇧🇫",
	":burrito:", "🌯",
	":burundi:", "🇧🇮",
	":bus:", "🚌",
	":business_suit_levitating:", "🕴",
	":busstop:", "🚏",
	":bust_in_silhouette:", "👤",
	":busts_in_silhouette:", "👥",
	":butterfly:", "🦋",
	":cactus:", "🌵",
	":cake:", "🍰",
	":calendar:", "📆",
	":call_me_hand:", "🤙",
	":calling:", "📲",
	":cambodia:", "🇰🇭",
	":camel:", "🐫",
	":camera:", "📷",
	":camera_flash:", "📸",
	":cameroon:", "🇨🇲",
	":camping:", "🏕",
	":canada:", "🇨🇦",
	":canary_islands:", "🇮🇨",
	":cancer:", "♋",
	":candle:", "🕯",
	":candy:", "🍬",
	":canned_food:", "🥫",
	":canoe:", "🛶",
	":cape_verde:", "🇨🇻",
	":capital_abcd:", "🔠",
	":capricorn:", "♑",
	":card_file_box:", "🗃",
	":card_index:", "📇",
	":card_index_dividers:", "🗂",
	":caribbean_netherlands:", "🇧🇶",
	":carousel_horse:", "🎠",
	":carrot:", "🥕",
	":cat:", "🐱",
	":cat2:", "🐈",
	":cayman_islands:", "🇰🇾",
	":cd:", "💿",
	":central_african_republic:", "🇨🇫",
	":chad:", "🇹🇩",
	":chains:", "⛓",
	":champagne:", "🍾",
	":chart:", "💹",
	":chart_with_downwards_trend:", "📉",
	":chart_with_upwards_trend:", "📈",
	":checkered_flag:", "🏁",
	":cheese:", "🧀",
	":cherries:", "🍒",
	":cherry_blossom:", "🌸",
	":chestnut:", "🌰",
	":chicken:", "🐔",
	":child:", "🧒",
	":children_crossing:", "🚸",
	":chile:", "🇨🇱",
	":chipmunk:", "🐿",
	":chocolate_bar:", "🍫",
	":chopsticks:", "🥢",
	":christmas_island:", "🇨🇽",
	":christmas_tree:", "🎄",
	":church:", "⛪",
	":cinema:", "🎦",
	":circus_tent:", "🎪",
	":city_sunrise:", "🌇",
	":city_sunset:", "🌆",
	":cityscape:", "🏙",
	":cl:", "🆑",
	":clamp:", "🗜",
	":clap:", "👏",
	":clapper:", "🎬",
	":classical_building:", "🏛",
	":climbing_man:", "🧗‍♂️",
	":climbing_woman:", "🧗‍♀️",
	":clinking_glasses:", "🥂",
	":clipboard:", "📋",
	":clock1:", "🕐",
	":clock10:", "🕙",
	":clock1030:", "🕥",
	":clock11:", "🕚",
	":clock1130:", "🕦",
	":clock12:", "🕛",
	":clock1230:", "🕧",
	":clock130:", "🕜",
	":clock2:", "🕑",
	":clock230:", "🕝",
	":clock3:", "🕒",
	":clock330:", "🕞",
	":clock4:", "🕓",
	":clock430:", "🕟",
	":clock5:", "🕔",
	":clock530:", "🕠",
	":clock6:", "🕕",
	":clock630:", "🕡",
	":clock7:", "🕖",
	":clock730:", "🕢",
	":clock8:", "🕗",
	":clock830:", "🕣",
	":clock9:", "🕘",
	":clock930:", "🕤",
	":closed_book:", "📕",
	":closed_lock_with_key:", "🔐",
	":closed_umbrella:", "🌂",
	":cloud:", "☁️",
	":cloud_with_lightning:", "🌩",
	":cloud_with_lightning_and_rain:", "⛈",
	":cloud_with_rain:", "🌧",
	":cloud_with_snow:", "🌨",
	":clown_face:", "🤡",
	":clubs:", "♣️",
	":cn:", "🇨🇳",
	":coat:", "🧥",
	":cocktail:", "🍸",
	":coconut:", "🥥",
	":cocos_islands:", "🇨🇨",
	":coffee:", "☕",
	":coffin:", "⚰",
	":cold_sweat:", "😰",
	":colombia:", "🇨🇴",
	":comet:", "☄",
	":comoros:", "🇰🇲",
	":computer:", "💻",
	":computer_mouse:", "🖱",
	":confetti_ball:", "🎊",
	":confounded:", "😖",
	":confused:", "😕",
	":congo_brazzaville:", "🇨🇬",
	":congo_kinshasa:", "🇨🇩",
	":congratulations:", "㊗️",
	":construction:", "🚧",
	":construction_worker_man:", "👷",
	":construction_worker_woman:", "👷‍♀️",
	":control_knobs:", "🎛",
	":convenience_store:", "🏪",
	":cook_islands:", "🇨🇰",
	":cookie:", "🍪",
	":cool:", "🆒",
	":copyright:", "©️",
	":corn:", "🌽",
	":costa_rica:", "🇨🇷",
	":cote_divoire:", "🇨🇮",
	":couch_and_lamp:", "🛋",
	":couple:", "👫",
	":couple_with_heart_man_man:", "👨‍❤️‍👨",
	":couple_with_heart_woman_man:", "💑",
	":couple_with_heart_woman_woman:", "👩‍❤️‍👩",
	":couplekiss_man_man:", "👨‍❤️‍💋‍👨",
	":couplekiss_man_woman:", "💏",
	":couplekiss_woman_woman:", "👩‍❤️‍💋‍👩",
	":cow:", "🐮",
	":cow2:", "🐄",
	":cowboy_hat_face:", "🤠",
	":crab:", "🦀",
	":crayon:", "🖍",
	":credit_card:", "💳",
	":crescent_moon:", "🌙",
	":cricket:", "🏏",
	":croatia:", "🇭🇷",
	":crocodile:", "🐊",
	":croissant:", "🥐",
	":crossed_fingers:", "🤞",
	":crossed_flags:", "🎌",
	":crossed_swords:", "⚔",
	":crown:", "👑",
	":cry:", "😢",
	":crying_cat_face:", "😿",
	":crystal_ball:", "🔮",
	":cuba:", "🇨🇺",
	":cucumber:", "🥒",
	":cup_with_straw:", "🥤",
	":cupid:", "💘",
	":curacao:", "🇨🇼",
	":curling_stone:", "🥌",
	":curly_loop:", "➰",
	":currency_exchange:", "💱",
	":curry:", "🍛",
	":custard:", "🍮",
	":customs:", "🛃",
	":cyclone:", "🌀",
	":cyprus:", "🇨🇾",
	":czech_republic:", "🇨🇿",
	":dagger:", "🗡",
	":dancer:", "💃",
	":dancing_men:", "👯‍♂️",
	":dancing_women:", "👯",
	":dango:", "🍡",
	":dark_sunglasses:", "🕶",
	":dart:", "🎯",
	":dash:", "💨",
	":date:", "📅",
	":de:", "🇩🇪",
	":deciduous_tree:", "🌳",
	":deer:", "🦌",
	":denmark:", "🇩🇰",
	":department_store:", "🏬",
	":derelict_house:", "🏚",
	":desert:", "🏜",
	":desert_island:", "🏝",
	":desktop_computer:", "🖥",
	":diamond_shape_with_a_dot_inside:", "💠",
	":diamonds:", "♦️",
	":disappointed:", "😞",
	":disappointed_relieved:", "😥",
	":dizzy:", "💫",
	":dizzy_face:", "😵",
	":djibouti:", "🇩🇯",
	":do_not_litter:", "🚯",
	":dog:", "🐶",
	":dog2:", "🐕",
	":dollar:", "💵",
	":dolls:", "🎎",
	":dolphin:", "🐬",
	":dominica:", "🇩🇲",
	":dominican_republic:", "🇩🇴",
	":door:", "🚪",
	":doughnut:", "🍩",
	":dove:", "🕊",
	":dragon:", "🐉",
	":dragon_face:", "🐲",
	":dress:", "👗",
	":dromedary_camel:", "🐪",
	":drooling_face:", "🤤",
	":droplet:", "💧",
	":drum:", "🥁",
	":duck:", "🦆",
	":dumpling:", "🥟",
	":dvd:", "📀",
	":e-mail:", "📧",
	":eagle:", "🦅",
	":ear:", "👂",
	":ear_of_rice:", "🌾",
	":earth_africa:", "🌍",
	":earth_americas:", "🌎",
	":earth_asia:", "🌏",
	":ecuador:", "🇪🇨",
	":egg:", "🥚",
	":eggplant:", "🍆",
	":egypt:", "🇪🇬",
	":eight:", "8️⃣",
	":eight_pointed_black_star:", "✴️",
	":eight_spoked_asterisk:", "✳️",
	":eject_button:", "⏏️",
	":el_salvador:", "🇸🇻",
	":electric_plug:", "🔌",
	":elephant:", "🐘",
	":email:", "✉️",
	":end:", "🔚",
	":england:", "🏴󠁧󠁢󠁥󠁮󠁧󠁿",
	":envelope_with_arrow:", "📩",
	":equatorial_guinea:", "🇬🇶",
	":eritrea:", "🇪🇷",
	":es:", "🇪🇸",
	":estonia:", "🇪🇪",
	":ethiopia:", "🇪🇹",
	":eu:", "🇪🇺",
	":euro:", "💶",
	":european_castle:", "🏰",
	":european_post_office:", "🏤",
	":evergreen_tree:", "🌲",
	":exclamation:", "❗",
	":exploding_head:", "🤯",
	":expressionless:", "😑",
	":eye:", "👁",
	":eyeglasses:", "👓",
	":eyes:", "👀",
	":face_with_head_bandage:", "🤕",
	":face_with_thermometer:", "🤒",
	":facepunch:", "👊",
	":factory:", "🏭",
	":falkland_islands:", "🇫🇰",
	":fallen_leaf:", "🍂",
	":family_man_boy:", "👨‍👦",
	":family_man_boy_boy:", "👨‍👦‍👦",
	":family_man_girl:", "👨‍👧",
	":family_man_girl_boy:", "👨‍👧‍👦",
	":family_man_girl_girl:", "👨‍👧‍👧",
	":family_man_man_boy:", "👨‍👨‍👦",
	":family_man_man_boy_boy:", "👨‍👨‍👦‍👦",
	":family_man_man_girl:", "👨‍👨‍👧",
	":family_man_man_girl_boy:", "👨‍👨‍👧‍👦",
	":family_man_man_girl_girl:", "👨‍👨‍👧‍👧",
	":family_man_woman_boy:", "👪",
	":family_man_woman_boy_boy:", "👨‍👩‍👦‍👦",
	":family_man_woman_girl:", "👨‍👩‍👧",
	":family_man_woman_girl_boy:", "👨‍👩‍👧‍👦",
	":family_man_woman_girl_girl:", "👨‍👩‍👧‍👧",
	":family_woman_boy:", "👩‍👦",
	":family_woman_boy_boy:", "👩‍👦‍👦",
	":family_woman_girl:", "👩‍👧",
	":family_woman_girl_boy:", "👩‍👧‍👦",
	":family_woman_girl_girl:", "👩‍👧‍👧",
	":family_woman_woman_boy:", "👩‍👩‍👦",
	":family_woman_woman_boy_boy:", "👩‍👩‍👦‍👦",
	":family_woman_woman_girl:", "👩‍👩‍👧",
	":family_woman_woman_girl_boy:", "👩‍👩‍👧‍👦",
	":family_woman_woman_girl_girl:", "👩‍👩‍👧‍👧",
	":faroe_islands:", "🇫🇴",
	":fast_forward:", "⏩",
	":fax:", "📠",
	":fearful:", "😨",
	":female_detective:", "🕵️‍♀️",
	":ferris_wheel:", "🎡",
	":ferry:", "⛴",
	":field_hockey:", "🏑",
	":fiji:", "🇫🇯",
	":file_cabinet:", "🗄",
	":file_folder:", "📁",
	":film_projector:", "📽",
	":film_strip:", "🎞",
	":finland:", "🇫🇮",
	":fire:", "🔥",
	":fire_engine:", "🚒",
	":fireworks:", "🎆",
	":first_quarter_moon:", "🌓",
	":first_quarter_moon_with_face:", "🌛",
	":fish:", "🐟",
	":fish_cake:", "🍥",
	":fishing_pole_and_fish:", "🎣",
	":fist:", "✊",
	":fist_left:", "🤛",
	":fist_right:", "🤜",
	":five:", "5️⃣",
	":flags:", "🎏",
	":flashlight:", "🔦",
	":fleur_de_lis:", "⚜",
	":flight_arrival:", "🛬",
	":flight_departure:", "🛫",
	":floppy_disk:", "💾",
	":flower_playing_cards:", "🎴",
	":flushed:", "😳",
	":flying_saucer:", "🛸",
	":fog:", "🌫",
	":foggy:", "🌁",
	":football:", "🏈",
	":footprints:", "👣",
	":fork_and_knife:", "🍴",
	":fortune_cookie:", "🥠",
	":fountain:", "⛲",
	":fountain_pen:", "🖋",
	":four:", "4️⃣",
	":four_leaf_clover:", "🍀",
	":fox_face:", "🦊",
	":fr:", "🇫🇷",
	":framed_picture:", "🖼",
	":free:", "🆓",
	":french_guiana:", "🇬🇫",
	":french_polynesia:", "🇵🇫",
	":french_southern_territories:", "🇹🇫",
	":fried_egg:", "🍳",
	":fried_shrimp:", "🍤",
	":fries:", "🍟",
	":frog:", "🐸",
	":frowning:", "😦",
	":frowning_face:", "☹",
	":frowning_man:", "🙍‍♂️",
	":frowning_woman:", "🙍",
	":fu:", "🖕",
	":fuelpump:", "⛽",
	":full_moon:", "🌕",
	":full_moon_with_face:", "🌝",
	":funeral_urn:", "⚱",
	":gabon:", "🇬🇦",
	":gambia:", "🇬🇲",
	":game_die:", "🎲",
	":gear:", "⚙",
	":gem:", "💎",
	":gemini:", "♊",
	":georgia:", "🇬🇪",
	":ghana:", "🇬🇭",
	":ghost:", "👻",
	":gibraltar:", "🇬🇮",
	":gift:", "🎁",
	":gift_heart:", "💝",
	":giraffe:", "🦒",
	":girl:", "👧",
	":globe_with_meridians:", "🌐",
	":gloves:", "🧤",
	":goal_net:", "🥅",
	":goat:", "🐐",
	":golf:", "⛳",
	":golfing_man:", "🏌",
	":golfing_woman:", "🏌️‍♀️",
	":gorilla:", "🦍",
	":grapes:", "🍇",
	":grasshopper:", "🦗",
	":greece:", "🇬🇷",
	":green_apple:", "🍏",
	":green_book:", "📗",
	":green_heart:", "💚",
	":green_salad:", "🥗",
	":greenland:", "🇬🇱",
	":grenada:", "🇬🇩",
	":grey_exclamation:", "❕",
	":grey_question:", "❔",
	":grimacing:", "😬",
	":grin:", "😁",
	":grinning:", "😀",
	":guadeloupe:", "🇬🇵",
	":guam:", "🇬🇺",
	":guardsman:", "💂",
	":guardswoman:", "💂‍♀️",
	":guatemala:", "🇬🇹",
	":guernsey:", "🇬🇬",
	":guinea:", "🇬🇳",
	":guinea_bissau:", "🇬🇼",
	":guitar:", "🎸",
	":gun:", "🔫",
	":guyana:", "🇬🇾",
	":haircut_man:", "💇‍♂️",
	":haircut_woman:", "💇",
	":haiti:", "🇭🇹",
	":hamburger:", "🍔",
	":hammer:", "🔨",
	":hammer_and_pick:", "⚒",
	":hammer_and_wrench:", "🛠",
	":hamster:", "🐹",
	":hand_over_mouth:", "🤭",
	":handbag:", "👜",
	":handshake:", "🤝",
	":hash:", "#️⃣",
	":hatched_chick:", "🐥",
	":hatching_chick:", "🐣",
	":headphones:", "🎧",
	":hear_no_evil:", "🙉",
	":heart:", "❤️",
	":heart_decoration:", "💟",
	":heart_eyes:", "😍",
	":heart_eyes_cat:", "😻",
	":heartbeat:", "💓",
	":heartpulse:", "💗",
	":hearts:", "♥️",
	":heavy_check_mark:", "✔️",
	":heavy_division_sign:", "➗",
	":heavy_dollar_sign:", "💲",
	":heavy_heart_exclamation:", "❣",
	":heavy_minus_sign:", "➖",
	":heavy_multiplication_x:", "✖️",
	":heavy_plus_sign:", "➕",
	":hedgehog:", "🦔",
	":helicopter:", "🚁",
	":herb:", "🌿",
	":hibiscus:", "🌺",
	":high_brightness:", "🔆",
	":high_heel:", "👠",
	":hocho:", "🔪",
	":hole:", "🕳",
	":honduras:", "🇭🇳",
	":honey_pot:", "🍯",
	":honeybee:", "🐝",
	":hong_kong:", "🇭🇰",
	":horse:", "🐴",
	":horse_racing:", "🏇",
	":hospital:", "🏥",
	":hot_pepper:", "🌶",
	":hotdog:", "🌭",
	":hotel:", "🏨",
	":hotsprings:", "♨️",
	":hourglass:", "⌛",
	":hourglass_flowing_sand:", "⏳",
	":house:", "🏠",
	":house_with_garden:", "🏡",
	":houses:", "🏘",
	":hugs:", "🤗",
	":hungary:", "🇭🇺",
	":hushed:", "😯",
	":ice_cream:", "🍨",
	":ice_hockey:", "🏒",
	":ice_skate:", "⛸",
	":icecream:", "🍦",
	":iceland:", "🇮🇸",
	":id:", "🆔",
	":ideograph_advantage:", "🉐",
	":imp:", "👿",
	":inbox_tray:", "📥",
	":incoming_envelope:", "📨",
	":india:", "🇮🇳",
	":indonesia:", "🇮🇩",
	":information_source:", "ℹ️",
	":innocent:", "😇",
	":interrobang:", "⁉️",
	":iphone:", "📱",
	":iran:", "🇮🇷",
	":iraq:", "🇮🇶",
	":ireland:", "🇮🇪",
	":isle_of_man:", "🇮🇲",
	":israel:", "🇮🇱",
	":it:", "🇮🇹",
	":izakaya_lantern:", "🏮",
	":jack_o_lantern:", "🎃",
	":jamaica:", "🇯🇲",
	":japan:", "🗾",
	":japanese_castle:", "🏯",
	":japanese_goblin:", "👺",
	":japanese_ogre:", "👹",
	":jeans:", "👖",
	":jersey:", "🇯🇪",
	":jordan:", "🇯🇴",
	":joy:", "😂",
	":joy_cat:", "😹",
	":joystick:", "🕹",
	":jp:", "🇯🇵",
	":kaaba:", "🕋",
	":kazakhstan:", "🇰🇿",
	":kenya:", "🇰🇪",
	":key:", "🔑",
	":keyboard:", "⌨",
	":keycap_ten:", "🔟",
	":kick_scooter:", "🛴",
	":kimono:", "👘",
	":kiribati:", "🇰🇮",
	":kiss:", "💋",
	":kissing:", "😗",
	":kissing_cat:", "😽",
	":kissing_closed_eyes:", "😚",
	":kissing_heart:", "😘",
	":kissing_smiling_eyes:", "😙",
	":kiwi_fruit:", "🥝",
	":koala:", "🐨",
	":koko:", "🈁",
	":kosovo:", "🇽🇰",
	":kr:", "🇰🇷",
	":kuwait:", "🇰🇼",
	":kyrgyzstan:", "🇰🇬",
	":label:", "🏷",
	":laos:", "🇱🇦",
	":large_blue_circle:", "🔵",
	":large_blue_diamond:", "🔷",
	":large_orange_diamond:", "🔶",
	":last_quarter_moon:", "🌗",
	":last_quarter_moon_with_face:", "🌜",
	":latin_cross:", "✝",
	":latvia:", "🇱🇻",
	":laughing:", "😆",
	":leaves:", "🍃",
	":lebanon:", "🇱🇧",
	":ledger:", "📒",
	":left_luggage:", "🛅",
	":left_right_arrow:", "↔️",
	":left_speech_bubble:", "🗨",
	":leftwards_arrow_with_hook:", "↩️",
	":lemon:", "🍋",
	":leo:", "♌",
	":leopard:", "🐆",
	":lesotho:", "🇱🇸",
	":level_slider:", "🎚",
	":liberia:", "🇱🇷",
	":libra:", "♎",
	":libya:", "🇱🇾",
	":liechtenstein:", "🇱🇮",
	":light_rail:", "🚈",
	":link:", "🔗",
	":lion:", "🦁",
	":lips:", "👄",
	":lipstick:", "💄",
	":lithuania:", "🇱🇹",
	":lizard:", "🦎",
	":lock:", "🔒",
	":lock_with_ink_pen:", "🔏",
	":lollipop:", "🍭",
	":loop:", "➿",
	":loud_sound:", "🔊",
	":loudspeaker:", "📢",
	":love_hotel:", "🏩",
	":love_letter:", "💌",
	":love_you:", "🤟",
	":low_brightness:", "🔅",
	":luxembourg:", "🇱🇺",
	":lying_face:", "🤥",
	":m:", "Ⓜ️",
	":macau:", "🇲🇴",
	":macedonia:", "🇲🇰",
	":madagascar:", "🇲🇬",
	":mag:", "🔍",
	":mag_right:", "🔎",
	":mahjong:", "🀄",
	":mailbox:", "📫",
	":mailbox_closed:", "📪",
	":mailbox_with_mail:", "📬",
	":mailbox_with_no_mail:", "📭",
	":malawi:", "🇲🇼",
	":malaysia:", "🇲🇾",
	":maldives:", "🇲🇻",
	":male_detective:", "🕵",
	":mali:", "🇲🇱",
	":malta:", "🇲🇹",
	":man:", "👨",
	":man_artist:", "👨‍🎨",
	":man_astronaut:", "👨‍🚀",
	":man_cartwheeling:", "🤸‍♂️",
	":man_cook:", "👨‍🍳",
	":man_dancing:", "🕺",
	":man_elf:", "🧝‍♂️",
	":man_facepalming:", "🤦",
	":man_factory_worker:", "👨‍🏭",
	":man_fairy:", "🧚‍♂️",
	":man_farmer:", "👨‍🌾",
	":man_firefighter:", "👨‍🚒",
	":man_genie:", "🧞‍♂️",
	":man_health_worker:", "👨‍⚕️",
	":man_in_lotus_position:", "🧘‍♂️",
	":man_in_steamy_room:", "🧖‍♂️",
	":man_in_tuxedo:", "🤵",
	":man_judge:", "👨‍⚖️",
	":man_juggling:", "🤹‍♂️",
	":man_mechanic:", "👨‍🔧",
	":man_office_worker:", "👨‍💼",
	":man_pilot:", "👨‍✈️",
	":man_playing_handball:", "🤾‍♂️",
	":man_playing_water_polo:", "🤽‍♂️",
	":man_scientist:", "👨‍🔬",
	":man_shrugging:", "🤷‍♂️",
	":man_singer:", "👨‍🎤",
	":man_student:", "👨‍🎓",
	":man_teacher:", "👨‍🏫",
	":man_technologist:", "👨‍💻",
	":man_vampire:", "🧛‍♂️",
	":man_with_gua_pi_mao:", "👲",
	":man_with_turban:", "👳",
	":man_zombie:", "🧟‍♂️",
	":mans_shoe:", "👞",
	":mantelpiece_clock:", "🕰",
	":maple_leaf:", "🍁",
	":marshall_islands:", "🇲🇭",
	":martial_arts_uniform:", "🥋",
	":martinique:", "🇲🇶",
	":mask:", "😷",
	":massage_man:", "💆‍♂️",
	":massage_woman:", "💆",
	":mauritania:", "🇲🇷",
	":mauritius:", "🇲🇺",
	":mayotte:", "🇾🇹",
	":meat_on_bone:", "🍖",
	":medal_military:", "🎖",
	":medal_sports:", "🏅",
	":mega:", "📣",
	":melon:", "🍈",
	":memo:", "📝",
	":men_wrestling:", "🤼‍♂️",
	":menorah:", "🕎",
	":mens:", "🚹",
	":mermaid:", "🧜‍♀️",
	":merman:", "🧜‍♂️",
	":metal:", "🤘",
	":metro:", "🚇",
	":mexico:", "🇲🇽",
	":micronesia:", "🇫🇲",
	":microphone:", "🎤",
	":microscope:", "🔬",
	":milk_glass:", "🥛",
	":milky_way:", "🌌",
	":minibus:", "🚐",
	":minidisc:", "💽",
	":mobile_phone_off:", "📴",
	":moldova:", "🇲🇩",
	":monaco:", "🇲🇨",
	":money_mouth_face:", "🤑",
	":money_with_wings:", "💸",
	":moneybag:", "💰",
	":mongolia:", "🇲🇳",
	":monkey:", "🐒",
	":monkey_face:", "🐵",
	":monocle:", "🧐",
	":monorail:", "🚝",
	":montenegro:", "🇲🇪",
	":montserrat:", "🇲🇸",
	":morocco:", "🇲🇦",
	":mortar_board:", "🎓",
	":mosque:", "🕌",
	":motor_boat:", "🛥",
	":motor_scooter:", "🛵",
	":motorcycle:", "🏍",
	":motorway:", "🛣",
	":mount_fuji:", "🗻",
	":mountain:", "⛰",
	":mountain_biking_man:", "🚵",
	":mountain_biking_woman:", "🚵‍♀️",
	":mountain_cableway:", "🚠",
	":mountain_railway:", "🚞",
	":mountain_snow:", "🏔",
	":mouse:", "🐭",
	":mouse2:", "🐁",
	":movie_camera:", "🎥",
	":moyai:", "🗿",
	":mozambique:", "🇲🇿",
	":mrs_claus:", "🤶",
	":muscle:", "💪",
	":mushroom:", "🍄",
	":musical_keyboard:", "🎹",
	":musical_note:", "🎵",
	":musical_score:", "🎼",
	":mute:", "🔇",
	":myanmar:", "🇲🇲",
	":nail_care:", "💅",
	":name_badge:", "📛",
	":namibia:", "🇳🇦",
	":national_park:", "🏞",
	":nauru:", "🇳🇷",
	":nauseated_face:", "🤢",
	":necktie:", "👔",
	":negative_squared_cross_mark:", "❎",
	":nepal:", "🇳🇵",
	":nerd_face:", "🤓",
	":netherlands:", "🇳🇱",
	":neutral_face:", "😐",
	":new:", "🆕",
	":new_caledonia:", "🇳🇨",
	":new_moon:", "🌑",
	":new_moon_with_face:", "🌚",
	":new_zealand:", "🇳🇿",
	":newspaper:", "📰",
	":newspaper_roll:", "🗞",
	":next_track_button:", "⏭",
	":ng:", "🆖",
	":nicaragua:", "🇳🇮",
	":niger:", "🇳🇪",
	":nigeria:", "🇳🇬",
	":night_with_stars:", "🌃",
	":nine:", "9️⃣",
	":niue:", "🇳🇺",
	":no_bell:", "🔕",
	":no_bicycles:", "🚳",
	":no_entry:", "⛔",
	":no_entry_sign:", "🚫",
	":no_good_man:", "🙅‍♂️",
	":no_good_woman:", "🙅",
	":no_mobile_phones:", "📵",
	":no_mouth:", "😶",
	":no_pedestrians:", "🚷",
	":no_smoking:", "🚭",
	":non-potable_water:", "🚱",
	":norfolk_island:", "🇳🇫",
	":north_korea:", "🇰🇵",
	":northern_mariana_islands:", "🇲🇵",
	":norway:", "🇳🇴",
	":nose:", "👃",
	":notebook:", "📓",
	":notebook_with_decorative_cover:", "📔",
	":notes:", "🎶",
	":nut_and_bolt:", "🔩",
	":o:", "⭕",
	":o2:", "🅾️",
	":ocean:", "🌊",
	":octopus:", "🐙",
	":oden:", "🍢",
	":office:", "🏢",
	":oil_drum:", "🛢",
	":ok:", "🆗",
	":ok_hand:", "👌",
	":ok_man:", "🙆‍♂️",
	":ok_woman:", "🙆",
	":old_key:", "🗝",
	":older_adult:", "🧓",
	":older_man:", "👴",
	":older_woman:", "👵",
	":om:", "🕉",
	":oman:", "🇴🇲",
	":on:", "🔛",
	":oncoming_automobile:", "🚘",
	":oncoming_bus:", "🚍",
	":oncoming_police_car:", "🚔",
	":oncoming_taxi:", "🚖",
	":one:", "1️⃣",
	":open_book:", "📖",
	":open_file_folder:", "📂",
	":open_hands:", "👐",
	":open_mouth:", "😮",
	":open_umbrella:", "☂",
	":ophiuchus:", "⛎",
	":orange_book:", "📙",
	":orange_heart:", "🧡",
	":orthodox_cross:", "☦",
	":outbox_tray:", "📤",
	":owl:", "🦉",
	":ox:", "🐂",
	":package:", "📦",
	":page_facing_up:", "📄",
	":page_with_curl:", "📃",
	":pager:", "📟",
	":paintbrush:", "🖌",
	":pakistan:", "🇵🇰",
	":palau:", "🇵🇼",
	":palestinian_territories:", "🇵🇸",
	":palm_tree:", "🌴",
	":palms_up:", "🤲",
	":panama:", "🇵🇦",
	":pancakes:", "🥞",
	":panda_face:", "🐼",
	":paperclip:", "📎",
	":paperclips:", "🖇",
	":papua_new_guinea:", "🇵🇬",
	":paraguay:", "🇵🇾",
	":parasol_on_ground:", "⛱",
	":parking:", "🅿️",
	":part_alternation_mark:", "〽️",
	":partly_sunny:", "⛅",
	":passenger_ship:", "🛳",
	":passport_control:", "🛂",
	":pause_button:", "⏸",
	":paw_prints:", "🐾",
	":peace_symbol:", "☮",
	":peach:", "🍑",
	":peanuts:", "🥜",
	":pear:", "🍐",
	":pen:", "🖊",
	":pencil2:", "✏️",
	":penguin:", "🐧",
	":pensive:", "😔",
	":performing_arts:", "🎭",
	":persevere:", "😣",
	":person_fencing:", "🤺",
	":peru:", "🇵🇪",
	":philippines:", "🇵🇭",
	":phone:", "☎️",
	":pick:", "⛏",
	":pie:", "🥧",
	":pig:", "🐷",
	":pig2:", "🐖",
	":pig_nose:", "🐽",
	":pill:", "💊",
	":pineapple:", "🍍",
	":ping_pong:", "🏓",
	":pisces:", "♓",
	":pitcairn_islands:", "🇵🇳",
	":pizza:", "🍕",
	":place_of_worship:", "🛐",
	":plate_with_cutlery:", "🍽",
	":play_or_pause_button:", "⏯",
	":point_down:", "👇",
	":point_left:", "👈",
	":point_right:", "👉",
	":point_up:", "☝",
	":point_up_2:", "👆",
	":poland:", "🇵🇱",
	":police_car:", "🚓",
	":policeman:", "👮",
	":policewoman:", "👮‍♀️",
	":poodle:", "🐩",
	":poop:", "💩",
	":popcorn:", "🍿",
	":portugal:", "🇵🇹",
	":post_office:", "🏣",
	":postal_horn:", "📯",
	":postbox:", "📮",
	":potable_water:", "🚰",
	":potato:", "🥔",
	":pouch:", "👝",
	":poultry_leg:", "🍗",
	":pound:", "💷",
	":pouting_cat:", "😾",
	":pouting_man:", "🙎‍♂️",
	":pouting_woman:", "🙎",
	":pray:", "🙏",
	":prayer_beads:", "📿",
	":pregnant_woman:", "🤰",
	":pretzel:", "🥨",
	":previous_track_button:", "⏮",
	":prince:", "🤴",
	":princess:", "👸",
	":printer:", "🖨",
	":puerto_rico:", "🇵🇷",
	":purple_heart:", "💜",
	":purse:", "👛",
	":pushpin:", "📌",
	":put_litter_in_its_place:", "🚮",
	":qatar:", "🇶🇦",
	":question:", "❓",
	":rabbit:", "🐰",
	":rabbit2:", "🐇",
	":racehorse:", "🐎",
	":racing_car:", "🏎",
	":radio:", "📻",
	":radio_button:", "🔘",
	":radioactive:", "☢",
	":rage:", "😡",
	":railway_car:", "🚃",
	":railway_track:", "🛤",
	":rainbow:", "🌈",
	":rainbow_flag:", "🏳️‍🌈",
	":raised_back_of_hand:", "🤚",
	":raised_eyebrow:", "🤨",
	":raised_hand:", "✋",
	":raised_hand_with_fingers_splayed:", "🖐",
	":raised_hands:", "🙌",
	":raising_hand_man:", "🙋‍♂️",
	":raising_hand_woman:", "🙋",
	":ram:", "🐏",
	":ramen:", "🍜",
	":rat:", "🐀",
	":record_button:", "⏺",
	":recycle:", "♻️",
	":red_car:", "🚗",
	":red_circle:", "🔴",
	":registered:", "®️",
	":relaxed:", "☺️",
	":relieved:", "😌",
	":reminder_ribbon:", "🎗",
	":repeat:", "🔁",
	":repeat_one:", "🔂",
	":rescue_worker_helmet:", "⛑",
	":restroom:", "🚻",
	":reunion:", "🇷🇪",
	":revolving_hearts:", "💞",
	":rewind:", "⏪",
	":rhinoceros:", "🦏",
	":ribbon:", "🎀",
	":rice:", "🍚",
	":rice_ball:", "🍙",
	":rice_cracker:", "🍘",
	":rice_scene:", "🎑",
	":right_anger_bubble:", "🗯",
	":ring:", "💍",
	":robot:", "🤖",
	":rocket:", "🚀",
	":rofl:", "🤣",
	":roll_eyes:", "🙄",
	":roller_coaster:", "🎢",
	":romania:", "🇷🇴",
	":rooster:", "🐓",
	":rose:", "🌹",
	":rosette:", "🏵",
	":rotating_light:", "🚨",
	":round_pushpin:", "📍",
	":rowing_man:", "🚣",
	":rowing_woman:", "🚣‍♀️",
	":ru:", "🇷🇺",
	":rugby_football:", "🏉",
	":running_man:", "🏃",
	":running_shirt_with_sash:", "🎽",
	":running_woman:", "🏃‍♀️",
	":rwanda:", "🇷🇼",
	":sa:", "🈂️",
	":sagittarius:", "♐",
	":sailboat:", "⛵",
	":sake:", "🍶",
	":samoa:", "🇼🇸",
	":san_marino:", "🇸🇲",
	":sandal:", "👡",
	":sandwich:", "🥪",
	":santa:", "🎅",
	":sao_tome_principe:", "🇸🇹",
	":satellite:", "📡",
	":saudi_arabia:", "🇸🇦",
	":sauropod:", "🦕",
	":saxophone:", "🎷",
	":scarf:", "🧣",
	":school:", "🏫",
	":school_satchel:", "🎒",
	":scissors:", "✂️",
	":scorpion:", "🦂",
	":scorpius:", "♏",
	":scotland:", "🏴󠁧󠁢󠁳󠁣󠁴󠁿",
	":scream:", "😱",
	":scream_cat:", "🙀",
	":scroll:", "📜",
	":seat:", "💺",
	":secret:", "㊙️",
	":see_no_evil:", "🙈",
	":seedling:", "🌱",
	":selfie:", "🤳",
	":senegal:", "🇸🇳",
	":serbia:", "🇷🇸",
	":seven:", "7️⃣",
	":seychelles:", "🇸🇨",
	":shallow_pan_of_food:", "🥘",
	":shamrock:", "☘",
	":shark:", "🦈",
	":shaved_ice:", "🍧",
	":sheep:", "🐑",
	":shell:", "🐚",
	":shield:", "🛡",
	":shinto_shrine:", "⛩",
	":ship:", "🚢",
	":shopping:", "🛍",
	":shopping_cart:", "🛒",
	":shower:", "🚿",
	":shrimp:", "🦐",
	":shushing:", "🤫",
	":sierra_leone:", "🇸🇱",
	":signal_strength:", "📶",
	":singapore:", "🇸🇬",
	":sint_maarten:", "🇸🇽",
	":six:", "6️⃣",
	":six_pointed_star:", "🔯",
	":ski:", "🎿",
	":skier:", "⛷",
	":skull:", "💀",
	":skull_and_crossbones:", "☠",
	":sled:", "🛷",
	":sleeping:", "😴",
	":sleeping_bed:", "🛌",
	":sleepy:", "😪",
	":slightly_frowning_face:", "🙁",
	":slightly_smiling_face:", "🙂",
	":slot_machine:", "🎰",
	":slovakia:", "🇸🇰",
	":slovenia:", "🇸🇮",
	":small_airplane:", "🛩",
	":small_blue_diamond:", "🔹",
	":small_orange_diamond:", "🔸",
	":small_red_triangle:", "🔺",
	":small_red_triangle_down:", "🔻",
	":smile:", "😄",
	":smile_cat:", "😸",
	":smiley:", "😃",
	":smiley_cat:", "😺",
	":smiling_imp:", "😈",
	":smirk:", "😏",
	":smirk_cat:", "😼",
	":smoking:", "🚬",
	":snail:", "🐌",
	":snake:", "🐍",
	":sneezing_face:", "🤧",
	":snowboarder:", "🏂",
	":snowflake:", "❄️",
	":snowman:", "⛄",
	":snowman_with_snow:", "☃",
	":sob:", "😭",
	":soccer:", "⚽",
	":socks:", "🧦",
	":solomon_islands:", "🇸🇧",
	":somalia:", "🇸🇴",
	":soon:", "🔜",
	":sorceress:", "🧙‍♀️",
	":sos:", "🆘",
	":sound:", "🔉",
	":south_africa:", "🇿🇦",
	":south_georgia_south_sandwich_islands:", "🇬🇸",
	":south_sudan:", "🇸🇸",
	":space_invader:", "👾",
	":spades:", "♠️",
	":spaghetti:", "🍝",
	":sparkle:", "❇️",
	":sparkler:", "🎇",
	":sparkles:", "✨",
	":sparkling_heart:", "💖",
	":speak_no_evil:", "🙊",
	":speaker:", "🔈",
	":speaking_head:", "🗣",
	":speech_balloon:", "💬",
	":speedboat:", "🚤",
	":spider:", "🕷",
	":spider_web:", "🕸",
	":spiral_calendar:", "🗓",
	":spiral_notepad:", "🗒",
	":spoon:", "🥄",
	":squid:", "🦑",
	":sri_lanka:", "🇱🇰",
	":st_barthelemy:", "🇧🇱",
	":st_helena:", "🇸🇭",
	":st_kitts_nevis:", "🇰🇳",
	":st_lucia:", "🇱🇨",
	":st_pierre_miquelon:", "🇵🇲",
	":st_vincent_grenadines:", "🇻🇨",
	":stadium:", "🏟",
	":star:", "⭐",
	":star2:", "🌟",
	":star_and_crescent:", "☪",
	":star_of_david:", "✡",
	":star_struck:", "🤩",
	":stars:", "🌠",
	":station:", "🚉",
	":statue_of_liberty:", "🗽",
	":steak:", "🥩",
	":steam_locomotive:", "🚂",
	":stew:", "🍲",
	":stop_button:", "⏹",
	":stop_sign:", "🛑",
	":stopwatch:", "⏱",
	":straight_ruler:", "📏",
	":strawberry:", "🍓",
	":stuck_out_tongue:", "😛",
	":stuck_out_tongue_closed_eyes:", "😝",
	":stuck_out_tongue_winking_eye:", "😜",
	":studio_microphone:", "🎙",
	":stuffed_flatbread:", "🥙",
	":sudan:", "🇸🇩",
	":sun_behind_large_cloud:", "🌥",
	":sun_behind_rain_cloud:", "🌦",
	":sun_behind_small_cloud:", "🌤",
	":sun_with_face:", "🌞",
	":sunflower:", "🌻",
	":sunglasses:", "😎",
	":sunny:", "☀️",
	":sunrise:", "🌅",
	":sunrise_over_mountains:", "🌄",
	":surfing_man:", "🏄",
	":surfing_woman:", "🏄‍♀️",
	":suriname:", "🇸🇷",
	":sushi:", "🍣",
	":suspension_railway:", "🚟",
	":swaziland:", "🇸🇿",
	":sweat:", "😓",
	":sweat_drops:", "💦",
	":sweat_smile:", "😅",
	":sweden:", "🇸🇪",
	":sweet_potato:", "🍠",
	":swimming_man:", "🏊",
	":swimming_woman:", "🏊‍♀️",
	":switzerland:", "🇨🇭",
	":symbols:", "🔣",
	":symbols_over_mouth:", "🤬",
	":synagogue:", "🕍",
	":syria:", "🇸🇾",
	":syringe:", "💉",
	":t-rex:", "🦖",
	":taco:", "🌮",
	":tada:", "🎉",
	":taiwan:", "🇹🇼",
	":tajikistan:", "🇹🇯",
	":takeout_box:", "🥡",
	":tanabata_tree:", "🎋",
	":tangerine:", "🍊",
	":tanzania:", "🇹🇿",
	":taurus:", "♉",
	":taxi:", "🚕",
	":tea:", "🍵",
	":telephone_receiver:", "📞",
	":telescope:", "🔭",
	":tennis:", "🎾",
	":tent:", "⛺",
	":thailand:", "🇹🇭",
	":thermometer:", "🌡",
	":thinking:", "🤔",
	":thought_balloon:", "💭",
	":three:", "3️⃣",
	":ticket:", "🎫",
	":tickets:", "🎟",
	":tiger:", "🐯",
	":tiger2:", "🐅",
	":timer_clock:", "⏲",
	":timor_leste:", "🇹🇱",
	":tipping_hand_man:", "💁‍♂️",
	":tipping_hand_woman:", "💁",
	":tired_face:", "😫",
	":tm:", "™️",
	":togo:", "🇹🇬",
	":toilet:", "🚽",
	":tokelau:", "🇹🇰",
	":tokyo_tower:", "🗼",
	":tomato:", "🍅",
	":tonga:", "🇹🇴",
	":tongue:", "👅",
	":top:", "🔝",
	":tophat:", "🎩",
	":tornado:", "🌪",
	":tr:", "🇹🇷",
	":trackball:", "🖲",
	":tractor:", "🚜",
	":traffic_light:", "🚥",
	":train:", "🚋",
	":train2:", "🚆",
	":tram:", "🚊",
	":triangular_flag_on_post:", "🚩",
	":triangular_ruler:", "📐",
	":trident:", "🔱",
	":trinidad_tobago:", "🇹🇹",
	":triumph:", "😤",
	":trolleybus:", "🚎",
	":trophy:", "🏆",
	":tropical_drink:", "🍹",
	":tropical_fish:", "🐠",
	":truck:", "🚚",
	":trumpet:", "🎺",
	":tshirt:", "👕",
	":tulip:", "🌷",
	":tumbler_glass:", "🥃",
	":tunisia:", "🇹🇳",
	":turkey:", "🦃",
	":turkmenistan:", "🇹🇲",
	":turks_caicos_islands:", "🇹🇨",
	":turtle:", "🐢",
	":tuvalu:", "🇹🇻",
	":tv:", "📺",
	":twisted_rightwards_arrows:", "🔀",
	":two:", "2️⃣",
	":two_hearts:", "💕",
	":two_men_holding_hands:", "👬",
	":two_women_holding_hands:", "👭",
	":u5272:", "🈹",
	":u5408:", "🈴",
	":u55b6:", "🈺",
	":u6307:", "🈯",
	":u6708:", "🈷️",
	":u6709:", "🈶",
	":u6e80:", "🈵",
	":u7121:", "🈚",
	":u7533:", "🈸",
	":u7981:", "🈲",
	":u7a7a:", "🈳",
	":uganda:", "🇺🇬",
	":uk:", "🇬🇧",
	":ukraine:", "🇺🇦",
	":umbrella:", "☔",
	":unamused:", "😒",
	":underage:", "🔞",
	":unicorn:", "🦄",
	":united_arab_emirates:", "🇦🇪",
	":unlock:", "🔓",
	":up:", "🆙",
	":upside_down_face:", "🙃",
	":uruguay:", "🇺🇾",
	":us:", "🇺🇸",
	":us_virgin_islands:", "🇻🇮",
	":uzbekistan:", "🇺🇿",
	":v:", "✌",
	":vanuatu:", "🇻🇺",
	":vatican_city:", "🇻🇦",
	":venezuela:", "🇻🇪",
	":vertical_traffic_light:", "🚦",
	":vhs:", "📼",
	":vibration_mode:", "📳",
	":video_camera:", "📹",
	":video_game:", "🎮",
	":vietnam:", "🇻🇳",
	":violin:", "🎻",
	":virgo:", "♍",
	":volcano:", "🌋",
	":volleyball:", "🏐",
	":vomiting:", "🤮",
	":vs:", "🆚",
	":vulcan_salute:", "🖖",
	":wales:", "🏴󠁧󠁢󠁷󠁬󠁳󠁿",
	":walking_man:", "🚶",
	":walking_woman:", "🚶‍♀️",
	":wallis_futuna:", "🇼🇫",
	":waning_crescent_moon:", "🌘",
	":waning_gibbous_moon:", "🌖",
	":warning:", "⚠️",
	":wastebasket:", "🗑",
	":watch:", "⌚",
	":water_buffalo:", "🐃",
	":watermelon:", "🍉",
	":wave:", "👋",
	":wavy_dash:", "〰️",
	":waxing_crescent_moon:", "🌒",
	":waxing_gibbous_moon:", "🌔",
	":wc:", "🚾",
	":weary:", "😩",
	":wedding:", "💒",
	":weight_lifting_man:", "🏋",
	":weight_lifting_woman:", "🏋️‍♀️",
	":western_sahara:", "🇪🇭",
	":whale:", "🐳",
	":whale2:", "🐋",
	":wheel_of_dharma:", "☸",
	":wheelchair:", "♿",
	":white_check_mark:", "✅",
	":white_circle:", "⚪",
	":white_flag:", "🏳",
	":white_flower:", "💮",
	":white_large_square:", "⬜",
	":white_medium_small_square:", "◽",
	":white_medium_square:", "◻️",
	":white_small_square:", "▫️",
	":white_square_button:", "🔳",
	":wilted_flower:", "🥀",
	":wind_chime:", "🎐",
	":wind_face:", "🌬",
	":wine_glass:", "🍷",
	":wink:", "😉",
	":wizard:", "🧙‍♂️",
	":wolf:", "🐺",
	":woman:", "👩",
	":woman_artist:", "👩‍🎨",
	":woman_astronaut:", "👩‍🚀",
	":woman_cartwheeling:", "🤸‍♀️",
	":woman_cook:", "👩‍🍳",
	":woman_elf:", "🧝‍♀️",
	":woman_facepalming:", "🤦‍♀️",
	":woman_factory_worker:", "👩‍🏭",
	":woman_fairy:", "🧚‍♀️",
	":woman_farmer:", "👩‍🌾",
	":woman_firefighter:", "👩‍🚒",
	":woman_genie:", "🧞‍♀️",
	":woman_health_worker:", "👩‍⚕️",
	":woman_in_lotus_position:", "🧘‍♀️",
	":woman_in_steamy_room:", "🧖‍♀️",
	":woman_judge:", "👩‍⚖️",
	":woman_juggling:", "🤹‍♀️",
	":woman_mechanic:", "👩‍🔧",
	":woman_office_worker:", "👩‍💼",
	":woman_pilot:", "👩‍✈️",
	":woman_playing_handball:", "🤾‍♀️",
	":woman_playing_water_polo:", "🤽‍♀️",
	":woman_scientist:", "👩‍🔬",
	":woman_shrugging:", "🤷",
	":woman_singer:", "👩‍🎤",
	":woman_student:", "👩‍🎓",
	":woman_teacher:", "👩‍🏫",
	":woman_technologist:", "👩‍💻",
	":woman_vampire:", "🧛‍♀️",
	":woman_with_headscarf:", "🧕",
	":woman_with_turban:", "👳‍♀️",
	":woman_zombie:", "🧟‍♀️",
	":womans_clothes:", "👚",
	":womans_hat:", "👒",
	":women_wrestling:", "🤼‍♀️",
	":womens:", "🚺",
	":world_map:", "🗺",
	":worried:", "😟",
	":wrench:", "🔧",
	":writing_hand:", "✍",
	":x:", "❌",
	":yellow_heart:", "💛",
	":yemen:", "🇾🇪",
	":yen:", "💴",
	":yin_yang:", "☯",
	":yum:", "😋",
	":zambia:", "🇿🇲",
	":zany:", "🤪",
	":zap:", "⚡",
	":zebra:", "🦓",
	":zero:", "0️⃣",
	":zimbabwe:", "🇿🇼",
	":zipper_mouth_face:", "🤐",
	":zzz:", "💤",
)

var emojiPaddedReplacer = strings.NewReplacer(
	":+1:", "👍 ",
	":-1:", "👎 ",
	":100:", "💯 ",
	":1234:", "🔢 ",
	":1st_place_medal:", "🥇 ",
	":2nd_place_medal:", "🥈 ",
	":3rd_place_medal:", "🥉 ",
	":8ball:", "🎱 ",
	":a:", "🅰️ ",
	":ab:", "🆎 ",
	":abc:", "🔤 ",
	":abcd:", "🔡 ",
	":accept:", "🉑 ",
	":adult:", "🧑 ",
	":aerial_tramway:", "🚡 ",
	":afghanistan:", "🇦🇫 ",
	":airplane:", "✈️ ",
	":aland_islands:", "🇦🇽 ",
	":alarm_clock:", "⏰ ",
	":albania:", "🇦🇱 ",
	":alembic:", "⚗ ",
	":algeria:", "🇩🇿 ",
	":alien:", "👽 ",
	":ambulance:", "🚑 ",
	":american_samoa:", "🇦🇸 ",
	":amphora:", "🏺 ",
	":anchor:", "⚓ ",
	":andorra:", "🇦🇩 ",
	":angel:", "👼 ",
	":anger:", "💢 ",
	":angola:", "🇦🇴 ",
	":angry:", "😠 ",
	":anguilla:", "🇦🇮 ",
	":anguished:", "😧 ",
	":ant:", "🐜 ",
	":antarctica:", "🇦🇶 ",
	":antigua_barbuda:", "🇦🇬 ",
	":apple:", "🍎 ",
	":aquarius:", "♒ ",
	":argentina:", "🇦🇷 ",
	":aries:", "♈ ",
	":armenia:", "🇦🇲 ",
	":arrow_backward:", "◀️ ",
	":arrow_double_down:", "⏬ ",
	":arrow_double_up:", "⏫ ",
	":arrow_down:", "⬇️ ",
	":arrow_down_small:", "🔽 ",
	":arrow_forward:", "▶️ ",
	":arrow_heading_down:", "⤵️ ",
	":arrow_heading_up:", "⤴️ ",
	":arrow_left:", "⬅️ ",
	":arrow_lower_left:", "↙️ ",
	":arrow_lower_right:", "↘️ ",
	":arrow_right:", "➡️ ",
	":arrow_right_hook:", "↪️ ",
	":arrow_up:", "⬆️ ",
	":arrow_up_down:", "↕️ ",
	":arrow_up_small:", "🔼 ",
	":arrow_upper_left:", "↖️ ",
	":arrow_upper_right:", "↗️ ",
	":arrows_clockwise:", "🔃 ",
	":arrows_counterclockwise:", "🔄 ",
	":art:", "🎨 ",
	":articulated_lorry:", "🚛 ",
	":artificial_satellite:", "🛰 ",
	":aruba:", "🇦🇼 ",
	":asterisk:", "*⃣ ",
	":astonished:", "😲 ",
	":athletic_shoe:", "👟 ",
	":atm:", "🏧 ",
	":atom_symbol:", "⚛ ",
	":australia:", "🇦🇺 ",
	":austria:", "🇦🇹 ",
	":avocado:", "🥑 ",
	":azerbaijan:", "🇦🇿 ",
	":b:", "🅱️ ",
	":baby:", "👶 ",
	":baby_bottle:", "🍼 ",
	":baby_chick:", "🐤 ",
	":baby_symbol:", "🚼 ",
	":back:", "🔙 ",
	":bacon:", "🥓 ",
	":badminton:", "🏸 ",
	":baggage_claim:", "🛄 ",
	":baguette_bread:", "🥖 ",
	":bahamas:", "🇧🇸 ",
	":bahrain:", "🇧🇭 ",
	":balance_scale:", "⚖ ",
	":balloon:", "🎈 ",
	":ballot_box:", "🗳 ",
	":ballot_box_with_check:", "☑️ ",
	":bamboo:", "🎍 ",
	":banana:", "🍌 ",
	":bangbang:", "‼️ ",
	":bangladesh:", "🇧🇩 ",
	":bank:", "🏦 ",
	":bar_chart:", "📊 ",
	":barbados:", "🇧🇧 ",
	":barber:", "💈 ",
	":baseball:", "⚾ ",
	":basketball:", "🏀 ",
	":basketball_man:", "⛹ ",
	":basketball_woman:", "⛹️‍♀️ ",
	":bat:", "🦇 ",
	":bath:", "🛀 ",
	":bathtub:", "🛁 ",
	":battery:", "🔋 ",
	":beach_umbrella:", "🏖 ",
	":bear:", "🐻 ",
	":bearded_person:", "🧔 ",
	":bed:", "🛏 ",
	":beer:", "🍺 ",
	":beers:", "🍻 ",
	":beetle:", "🐞 ",
	":beginner:", "🔰 ",
	":belarus:", "🇧🇾 ",
	":belgium:", "🇧🇪 ",
	":belize:", "🇧🇿 ",
	":bell:", "🔔 ",
	":bellhop_bell:", "🛎 ",
	":benin:", "🇧🇯 ",
	":bento:", "🍱 ",
	":bermuda:", "🇧🇲 ",
	":bhutan:", "🇧🇹 ",
	":bike:", "🚲 ",
	":biking_man:", "🚴 ",
	":biking_woman:", "🚴‍♀️ ",
	":bikini:", "👙 ",
	":billed_hat:", "🧢 ",
	":biohazard:", "☣ ",
	":bird:", "🐦 ",
	":birthday:", "🎂 ",
	":black_circle:", "⚫ ",
	":black_flag:", "🏴 ",
	":black_heart:", "🖤 ",
	":black_joker:", "🃏 ",
	":black_large_square:", "⬛ ",
	":black_medium_small_square:", "◾ ",
	":black_medium_square:", "◼️ ",
	":black_nib:", "✒️ ",
	":black_small_square:", "▪️ ",
	":black_square_button:", "🔲 ",
	":blonde_man:", "👱 ",
	":blonde_woman:", "👱‍♀️ ",
	":blossom:", "🌼 ",
	":blowfish:", "🐡 ",
	":blue_book:", "📘 ",
	":blue_car:", "🚙 ",
	":blue_heart:", "💙 ",
	":blush:", "😊 ",
	":boar:", "🐗 ",
	":bolivia:", "🇧🇴 ",
	":bomb:", "💣 ",
	":bookmark:", "🔖 ",
	":bookmark_tabs:", "📑 ",
	":books:", "📚 ",
	":boom:", "💥 ",
	":boot:", "👢 ",
	":bosnia_herzegovina:", "🇧🇦 ",
	":botswana:", "🇧🇼 ",
	":bouquet:", "💐 ",
	":bow_and_arrow:", "🏹 ",
	":bowing_man:", "🙇 ",
	":bowing_woman:", "🙇‍♀️ ",
	":bowl_with_spoon:", "🥣 ",
	":bowling:", "🎳 ",
	":boxing_glove:", "🥊 ",
	":boy:", "👦 ",
	":brain:", "🧠 ",
	":brazil:", "🇧🇷 ",
	":bread:", "🍞 ",
	":breastfeeding:", "🤱 ",
	":bride_with_veil:", "👰 ",
	":bridge_at_night:", "🌉 ",
	":briefcase:", "💼 ",
	":british_indian_ocean_territory:", "🇮🇴 ",
	":british_virgin_islands:", "🇻🇬 ",
	":broccoli:", "🥦 ",
	":broken_heart:", "💔 ",
	":brunei:", "🇧🇳 ",
	":bug:", "🐛 ",
	":building_construction:", "🏗 ",
	":bulb:", "💡 ",
	":bulgaria:", "🇧🇬 ",
	":bullettrain_front:", "🚅 ",
	":bullettrain_side:", "🚄 ",
	":burkina_faso:", "🇧🇫 ",
	":burrito:", "🌯 ",
	":burundi:", "🇧🇮 ",
	":bus:", "🚌 ",
	":business_suit_levitating:", "🕴 ",
	":busstop:", "🚏 ",
	":bust_in_silhouette:", "👤 ",
	":busts_in_silhouette:", "👥 ",
	":butterfly:", "🦋 ",
	":cactus:", "🌵 ",
	":cake:", "🍰 ",
	":calendar:", "📆 ",
	":call_me_hand:", "🤙 ",
	":calling:", "📲 ",
	":cambodia:", "🇰🇭 ",
	":camel:", "🐫 ",
	":camera:", "📷 ",
	":camera_flash:", "📸 ",
	":cameroon:", "🇨🇲 ",
	":camping:", "🏕 ",
	":canada:", "🇨🇦 ",
	":canary_islands:", "🇮🇨 ",
	":cancer:", "♋ ",
	":candle:", "🕯 ",
	":candy:", "🍬 ",
	":canned_food:", "🥫 ",
	":canoe:", "🛶 ",
	":cape_verde:", "🇨🇻 ",
	":capital_abcd:", "🔠 ",
	":capricorn:", "♑ ",
	":card_file_box:", "🗃 ",
	":card_index:", "📇 ",
	":card_index_dividers:", "🗂 ",
	":caribbean_netherlands:", "🇧🇶 ",
	":carousel_horse:", "🎠 ",
	":carrot:", "🥕 ",
	":cat:", "🐱 ",
	":cat2:", "🐈 ",
	":cayman_islands:", "🇰🇾 ",
	":cd:", "💿 ",
	":central_african_republic:", "🇨🇫 ",
	":chad:", "🇹🇩 ",
	":chains:", "⛓ ",
	":champagne:", "🍾 ",
	":chart:", "💹 ",
	":chart_with_downwards_trend:", "📉 ",
	":chart_with_upwards_trend:", "📈 ",
	":checkered_flag:", "🏁 ",
	":cheese:", "🧀 ",
	":cherries:", "🍒 ",
	":cherry_blossom:", "🌸 ",
	":chestnut:", "🌰 ",
	":chicken:", "🐔 ",
	":child:", "🧒 ",
	":children_crossing:", "🚸 ",
	":chile:", "🇨🇱 ",
	":chipmunk:", "🐿 ",
	":chocolate_bar:", "🍫 ",
	":chopsticks:", "🥢 ",
	":christmas_island:", "🇨🇽 ",
	":christmas_tree:", "🎄 ",
	":church:", "⛪ ",
	":cinema:", "🎦 ",
	":circus_tent:", "🎪 ",
	":city_sunrise:", "🌇 ",
	":city_sunset:", "🌆 ",
	":cityscape:", "🏙 ",
	":cl:", "🆑 ",
	":clamp:", "🗜 ",
	":clap:", "👏 ",
	":clapper:", "🎬 ",
	":classical_building:", "🏛 ",
	":climbing_man:", "🧗‍♂️ ",
	":climbing_woman:", "🧗‍♀️ ",
	":clinking_glasses:", "🥂 ",
	":clipboard:", "📋 ",
	":clock1:", "🕐 ",
	":clock10:", "🕙 ",
	":clock1030:", "🕥 ",
	":clock11:", "🕚 ",
	":clock1130:", "🕦 ",
	":clock12:", "🕛 ",
	":clock1230:", "🕧 ",
	":clock130:", "🕜 ",
	":clock2:", "🕑 ",
	":clock230:", "🕝 ",
	":clock3:", "🕒 ",
	":clock330:", "🕞 ",
	":clock4:", "🕓 ",
	":clock430:", "🕟 ",
	":clock5:", "🕔 ",
	":clock530:", "🕠 ",
	":clock6:", "🕕 ",
	":clock630:", "🕡 ",
	":clock7:", "🕖 ",
	":clock730:", "🕢 ",
	":clock8:", "🕗 ",
	":clock830:", "🕣 ",
	":clock9:", "🕘 ",
	":clock930:", "🕤 ",
	":closed_book:", "📕 ",
	":closed_lock_with_key:", "🔐 ",
	":closed_umbrella:", "🌂 ",
	":cloud:", "☁️ ",
	":cloud_with_lightning:", "🌩 ",
	":cloud_with_lightning_and_rain:", "⛈ ",
	":cloud_with_rain:", "🌧 ",
	":cloud_with_snow:", "🌨 ",
	":clown_face:", "🤡 ",
	":clubs:", "♣️ ",
	":cn:", "🇨🇳 ",
	":coat:", "🧥 ",
	":cocktail:", "🍸 ",
	":coconut:", "🥥 ",
	":cocos_islands:", "🇨🇨 ",
	":coffee:", "☕ ",
	":coffin:", "⚰ ",
	":cold_sweat:", "😰 ",
	":colombia:", "🇨🇴 ",
	":comet:", "☄ ",
	":comoros:", "🇰🇲 ",
	":computer:", "💻 ",
	":computer_mouse:", "🖱 ",
	":confetti_ball:", "🎊 ",
	":confounded:", "😖 ",
	":confused:", "😕 ",
	":congo_brazzaville:", "🇨🇬 ",
	":congo_kinshasa:", "🇨🇩 ",
	":congratulations:", "㊗️ ",
	":construction:", "🚧 ",
	":construction_worker_man:", "👷 ",
	":construction_worker_woman:", "👷‍♀️ ",
	":control_knobs:", "🎛 ",
	":convenience_store:", "🏪 ",
	":cook_islands:", "🇨🇰 ",
	":cookie:", "🍪 ",
	":cool:", "🆒 ",
	":copyright:", "©️ ",
	":corn:", "🌽 ",
	":costa_rica:", "🇨🇷 ",
	":cote_divoire:", "🇨🇮 ",
	":couch_and_lamp:", "🛋 ",
	":couple:", "👫 ",
	":couple_with_heart_man_man:", "👨‍❤️‍👨 ",
	":couple_with_heart_woman_man:", "💑 ",
	":couple_with_heart_woman_woman:", "👩‍❤️‍👩 ",
	":couplekiss_man_man:", "👨‍❤️‍💋‍👨 ",
	":couplekiss_man_woman:", "💏 ",
	":couplekiss_woman_woman:", "👩‍❤️‍💋‍👩 ",
	":cow:", "🐮 ",
	":cow2:", "🐄 ",
	":cowboy_hat_face:", "🤠 ",
	":crab:", "🦀 ",
	":crayon:", "🖍 ",
	":credit_card:", "💳 ",
	":crescent_moon:", "🌙 ",
	":cricket:", "🏏 ",
	":croatia:", "🇭🇷 ",
	":crocodile:", "🐊 ",
	":croissant:", "🥐 ",
	":crossed_fingers:", "🤞 ",
	":crossed_flags:", "🎌 ",
	":crossed_swords:", "⚔ ",
	":crown:", "👑 ",
	":cry:", "😢 ",
	":crying_cat_face:", "😿 ",
	":crystal_ball:", "🔮 ",
	":cuba:", "🇨🇺 ",
	":cucumber:", "🥒 ",
	":cup_with_straw:", "🥤 ",
	":cupid:", "💘 ",
	":curacao:", "🇨🇼 ",
	":curling_stone:", "🥌 ",
	":curly_loop:", "➰ ",
	":currency_exchange:", "💱 ",
	":curry:", "🍛 ",
	":custard:", "🍮 ",
	":customs:", "🛃 ",
	":cyclone:", "🌀 ",
	":cyprus:", "🇨🇾 ",
	":czech_republic:", "🇨🇿 ",
	":dagger:", "🗡 ",
	":dancer:", "💃 ",
	":dancing_men:", "👯‍♂️ ",
	":dancing_women:", "👯 ",
	":dango:", "🍡 ",
	":dark_sunglasses:", "🕶 ",
	":dart:", "🎯 ",
	":dash:", "💨 ",
	":date:", "📅 ",
	":de:", "🇩🇪 ",
	":deciduous_tree:", "🌳 ",
	":deer:", "🦌 ",
	":denmark:", "🇩🇰 ",
	":department_store:", "🏬 ",
	":derelict_house:", "🏚 ",
	":desert:", "🏜 ",
	":desert_island:", "🏝 ",
	":desktop_computer:", "🖥 ",
	":diamond_shape_with_a_dot_inside:", "💠 ",
	":diamonds:", "♦️ ",
	":disappointed:", "😞 ",
	":disappointed_relieved:", "😥 ",
	":dizzy:", "💫 ",
	":dizzy_face:", "😵 ",
	":djibouti:", "🇩🇯 ",
	":do_not_litter:", "🚯 ",
	":dog:", "🐶 ",
	":dog2:", "🐕 ",
	":dollar:", "💵 ",
	":dolls:", "🎎 ",
	":dolphin:", "🐬 ",
	":dominica:", "🇩🇲 ",
	":dominican_republic:", "🇩🇴 ",
	":door:", "🚪 ",
	":doughnut:", "🍩 ",
	":dove:", "🕊 ",
	":dragon:", "🐉 ",
	":dragon_face:", "🐲 ",
	":dress:", "👗 ",
	":dromedary_camel:", "🐪 ",
	":drooling_face:", "🤤 ",
	":droplet:", "💧 ",
	":drum:", "🥁 ",
	":duck:", "🦆 ",
	":dumpling:", "🥟 ",
	":dvd:", "📀 ",
	":e-mail:", "📧 ",
	":eagle:", "🦅 ",
	":ear:", "👂 ",
	":ear_of_rice:", "🌾 ",
	":earth_africa:", "🌍 ",
	":earth_americas:", "🌎 ",
	":earth_asia:", "🌏 ",
	":ecuador:", "🇪🇨 ",
	":egg:", "🥚 ",
	":eggplant:", "🍆 ",
	":egypt:", "🇪🇬 ",
	":eight:", "8️⃣ ",
	":eight_pointed_black_star:", "✴️ ",
	":eight_spoked_asterisk:", "✳️ ",
	":eject_button:", "⏏️ ",
	":el_salvador:", "🇸🇻 ",
	":electric_plug:", "🔌 ",
	":elephant:", "🐘 ",
	":email:", "✉️ ",
	":end:", "🔚 ",
	":england:", "🏴󠁧󠁢󠁥󠁮󠁧󠁿 ",
	":envelope_with_arrow:", "📩 ",
	":equatorial_guinea:", "🇬🇶 ",
	":eritrea:", "🇪🇷 ",
	":es:", "🇪🇸 ",
	":estonia:", "🇪🇪 ",
	":ethiopia:", "🇪🇹 ",
	":eu:", "🇪🇺 ",
	":euro:", "💶 ",
	":european_castle:", "🏰 ",
	":european_post_office:", "🏤 ",
	":evergreen_tree:", "🌲 ",
	":exclamation:", "❗ ",
	":exploding_head:", "🤯 ",
	":expressionless:", "😑 ",
	":eye:", "👁 ",
	":eyeglasses:", "👓 ",
	":eyes:", "👀 ",
	":face_with_head_bandage:", "🤕 ",
	":face_with_thermometer:", "🤒 ",
	":facepunch:", "👊 ",
	":factory:", "🏭 ",
	":falkland_islands:", "🇫🇰 ",
	":fallen_leaf:", "🍂 ",
	":family_man_boy:", "👨‍👦 ",
	":family_man_boy_boy:", "👨‍👦‍👦 ",
	":family_man_girl:", "👨‍👧 ",
	":family_man_girl_boy:", "👨‍👧‍👦 ",
	":family_man_girl_girl:", "👨‍👧‍👧 ",
	":family_man_man_boy:", "👨‍👨‍👦 ",
	":family_man_man_boy_boy:", "👨‍👨‍👦‍👦 ",
	":family_man_man_girl:", "👨‍👨‍👧 ",
	":family_man_man_girl_boy:", "👨‍👨‍👧‍👦 ",
	":family_man_man_girl_girl:", "👨‍👨‍👧‍👧 ",
	":family_man_woman_boy:", "👪 ",
	":family_man_woman_boy_boy:", "👨‍👩‍👦‍👦 ",
	":family_man_woman_girl:", "👨‍👩‍👧 ",
	":family_man_woman_girl_boy:", "👨‍👩‍👧‍👦 ",
	":family_man_woman_girl_girl:", "👨‍👩‍👧‍👧 ",
	":family_woman_boy:", "👩‍👦 ",
	":family_woman_boy_boy:", "👩‍👦‍👦 ",
	":family_woman_girl:", "👩‍👧 ",
	":family_woman_girl_boy:", "👩‍👧‍👦 ",
	":family_woman_girl_girl:", "👩‍👧‍👧 ",
	":family_woman_woman_boy:", "👩‍👩‍👦 ",
	":family_woman_woman_boy_boy:", "👩‍👩‍👦‍👦 ",
	":family_woman_woman_girl:", "👩‍👩‍👧 ",
	":family_woman_woman_girl_boy:", "👩‍👩‍👧‍👦 ",
	":family_woman_woman_girl_girl:", "👩‍👩‍👧‍👧 ",
	":faroe_islands:", "🇫🇴 ",
	":fast_forward:", "⏩ ",
	":fax:", "📠 ",
	":fearful:", "😨 ",
	":female_detective:", "🕵️‍♀️ ",
	":ferris_wheel:", "🎡 ",
	":ferry:", "⛴ ",
	":field_hockey:", "🏑 ",
	":fiji:", "🇫🇯 ",
	":file_cabinet:", "🗄 ",
	":file_folder:", "📁 ",
	":film_projector:", "📽 ",
	":film_strip:", "🎞 ",
	":finland:", "🇫🇮 ",
	":fire:", "🔥 ",
	":fire_engine:", "🚒 ",
	":fireworks:", "🎆 ",
	":first_quarter_moon:", "🌓 ",
	":first_quarter_moon_with_face:", "🌛 ",
	":fish:", "🐟 ",
	":fish_cake:", "🍥 ",
	":fishing_pole_and_fish:", "🎣 ",
	":fist:", "✊ ",
	":fist_left:", "🤛 ",
	":fist_right:", "🤜 ",
	":five:", "5️⃣ ",
	":flags:", "🎏 ",
	":flashlight:", "🔦 ",
	":fleur_de_lis:", "⚜ ",
	":flight_arrival:", "🛬 ",
	":flight_departure:", "🛫 ",
	":floppy_disk:", "💾 ",
	":flower_playing_cards:", "🎴 ",
	":flushed:", "😳 ",
	":flying_saucer:", "🛸 ",
	":fog:", "🌫 ",
	":foggy:", "🌁 ",
	":football:", "🏈 ",
	":footprints:", "👣 ",
	":fork_and_knife:", "🍴 ",
	":fortune_cookie:", "🥠 ",
	":fountain:", "⛲ ",
	":fountain_pen:", "🖋 ",
	":four:", "4️⃣ ",
	":four_leaf_clover:", "🍀 ",
	":fox_face:", "🦊 ",
	":fr:", "🇫🇷 ",
	":framed_picture:", "🖼 ",
	":free:", "🆓 ",
	":french_guiana:", "🇬🇫 ",
	":french_polynesia:", "🇵🇫 ",
	":french_southern_territories:", "🇹🇫 ",
	":fried_egg:", "🍳 ",
	":fried_shrimp:", "🍤 ",
	":fries:", "🍟 ",
	":frog:", "🐸 ",
	":frowning:", "😦 ",
	":frowning_face:", "☹ ",
	":frowning_man:", "🙍‍♂️ ",
	":frowning_woman:", "🙍 ",
	":fu:", "🖕 ",
	":fuelpump:", "⛽ ",
	":full_moon:", "🌕 ",
	":full_moon_with_face:", "🌝 ",
	":funeral_urn:", "⚱ ",
	":gabon:", "🇬🇦 ",
	":gambia:", "🇬🇲 ",
	":game_die:", "🎲 ",
	":gear:", "⚙ ",
	":gem:", "💎 ",
	":gemini:", "♊ ",
	":georgia:", "🇬🇪 ",
	":ghana:", "🇬🇭 ",
	":ghost:", "👻 ",
	":gibraltar:", "🇬🇮 ",
	":gift:", "🎁 ",
	":gift_heart:", "💝 ",
	":giraffe:", "🦒 ",
	":girl:", "👧 ",
	":globe_with_meridians:", "🌐 ",
	":gloves:", "🧤 ",
	":goal_net:", "🥅 ",
	":goat:", "🐐 ",
	":golf:", "⛳ ",
	":golfing_man:", "🏌 ",
	":golfing_woman:", "🏌️‍♀️ ",
	":gorilla:", "🦍 ",
	":grapes:", "🍇 ",
	":grasshopper:", "🦗 ",
	":greece:", "🇬🇷 ",
	":green_apple:", "🍏 ",
	":green_book:", "📗 ",
	":green_heart:", "💚 ",
	":green_salad:", "🥗 ",
	":greenland:", "🇬🇱 ",
	":grenada:", "🇬🇩 ",
	":grey_exclamation:", "❕ ",
	":grey_question:", "❔ ",
	":grimacing:", "😬 ",
	":grin:", "😁 ",
	":grinning:", "😀 ",
	":guadeloupe:", "🇬🇵 ",
	":guam:", "🇬🇺 ",
	":guardsman:", "💂 ",
	":guardswoman:", "💂‍♀️ ",
	":guatemala:", "🇬🇹 ",
	":guernsey:", "🇬🇬 ",
	":guinea:", "🇬🇳 ",
	":guinea_bissau:", "🇬🇼 ",
	":guitar:", "🎸 ",
	":gun:", "🔫 ",
	":guyana:", "🇬🇾 ",
	":haircut_man:", "💇‍♂️ ",
	":haircut_woman:", "💇 ",
	":haiti:", "🇭🇹 ",
	":hamburger:", "🍔 ",
	":hammer:", "🔨 ",
	":hammer_and_pick:", "⚒ ",
	":hammer_and_wrench:", "🛠 ",
	":hamster:", "🐹 ",
	":hand_over_mouth:", "🤭 ",
	":handbag:", "👜 ",
	":handshake:", "🤝 ",
	":hash:", "#️⃣ ",
	":hatched_chick:", "🐥 ",
	":hatching_chick:", "🐣 ",
	":headphones:", "🎧 ",
	":hear_no_evil:", "🙉 ",
	":heart:", "❤️ ",
	":heart_decoration:", "💟 ",
	":heart_eyes:", "😍 ",
	":heart_eyes_cat:", "😻 ",
	":heartbeat:", "💓 ",
	":heartpulse:", "💗 ",
	":hearts:", "♥️ ",
	":heavy_check_mark:", "✔️ ",
	":heavy_division_sign:", "➗ ",
	":heavy_dollar_sign:", "💲 ",
	":heavy_heart_exclamation:", "❣ ",
	":heavy_minus_sign:", "➖ ",
	":heavy_multiplication_x:", "✖️ ",
	":heavy_plus_sign:", "➕ ",
	":hedgehog:", "🦔 ",
	":helicopter:", "🚁 ",
	":herb:", "🌿 ",
	":hibiscus:", "🌺 ",
	":high_brightness:", "🔆 ",
	":high_heel:", "👠 ",
	":hocho:", "🔪 ",
	":hole:", "🕳 ",
	":honduras:", "🇭🇳 ",
	":honey_pot:", "🍯 ",
	":honeybee:", "🐝 ",
	":hong_kong:", "🇭🇰 ",
	":horse:", "🐴 ",
	":horse_racing:", "🏇 ",
	":hospital:", "🏥 ",
	":hot_pepper:", "🌶 ",
	":hotdog:", "🌭 ",
	":hotel:", "🏨 ",
	":hotsprings:", "♨️ ",
	":hourglass:", "⌛ ",
	":hourglass_flowing_sand:", "⏳ ",
	":house:", "🏠 ",
	":house_with_garden:", "🏡 ",
	":houses:", "🏘 ",
	":hugs:", "🤗 ",
	":hungary:", "🇭🇺 ",
	":hushed:", "😯 ",
	":ice_cream:", "🍨 ",
	":ice_hockey:", "🏒 ",
	":ice_skate:", "⛸ ",
	":icecream:", "🍦 ",
	":iceland:", "🇮🇸 ",
	":id:", "🆔 ",
	":ideograph_advantage:", "🉐 ",
	":imp:", "👿 ",
	":inbox_tray:", "📥 ",
	":incoming_envelope:", "📨 ",
	":india:", "🇮🇳 ",
	":indonesia:", "🇮🇩 ",
	":information_source:", "ℹ️ ",
	":innocent:", "😇 ",
	":interrobang:", "⁉️ ",
	":iphone:", "📱 ",
	":iran:", "🇮🇷 ",
	":iraq:", "🇮🇶 ",
	":ireland:", "🇮🇪 ",
	":isle_of_man:", "🇮🇲 ",
	":israel:", "🇮🇱 ",
	":it:", "🇮🇹 ",
	":izakaya_lantern:", "🏮 ",
	":jack_o_lantern:", "🎃 ",
	":jamaica:", "🇯🇲 ",
	":japan:", "🗾 ",
	":japanese_castle:", "🏯 ",
	":japanese_goblin:", "👺 ",
	":japanese_ogre:", "👹 ",
	":jeans:", "👖 ",
	":jersey:", "🇯🇪 ",
	":jordan:", "🇯🇴 ",
	":joy:", "😂 ",
	":joy_cat:", "😹 ",
	":joystick:", "🕹 ",
	":jp:", "🇯🇵 ",
	":kaaba:", "🕋 ",
	":kazakhstan:", "🇰🇿 ",
	":kenya:", "🇰🇪 ",
	":key:", "🔑 ",
	":keyboard:", "⌨ ",
	":keycap_ten:", "🔟 ",
	":kick_scooter:", "🛴 ",
	":kimono:", "👘 ",
	":kiribati:", "🇰🇮 ",
	":kiss:", "💋 ",
	":kissing:", "😗 ",
	":kissing_cat:", "😽 ",
	":kissing_closed_eyes:", "😚 ",
	":kissing_heart:", "😘 ",
	":kissing_smiling_eyes:", "😙 ",
	":kiwi_fruit:", "🥝 ",
	":koala:", "🐨 ",
	":koko:", "🈁 ",
	":kosovo:", "🇽🇰 ",
	":kr:", "🇰🇷 ",
	":kuwait:", "🇰🇼 ",
	":kyrgyzstan:", "🇰🇬 ",
	":label:", "🏷 ",
	":laos:", "🇱🇦 ",
	":large_blue_circle:", "🔵 ",
	":large_blue_diamond:", "🔷 ",
	":large_orange_diamond:", "🔶 ",
	":last_quarter_moon:", "🌗 ",
	":last_quarter_moon_with_face:", "🌜 ",
	":latin_cross:", "✝ ",
	":latvia:", "🇱🇻 ",
	":laughing:", "😆 ",
	":leaves:", "🍃 ",
	":lebanon:", "🇱🇧 ",
	":ledger:", "📒 ",
	":left_luggage:", "🛅 ",
	":left_right_arrow:", "↔️ ",
	":left_speech_bubble:", "🗨 ",
	":leftwards_arrow_with_hook:", "↩️ ",
	":lemon:", "🍋 ",
	":leo:", "♌ ",
	":leopard:", "🐆 ",
	":lesotho:", "🇱🇸 ",
	":level_slider:", "🎚 ",
	":liberia:", "🇱🇷 ",
	":libra:", "♎ ",
	":libya:", "🇱🇾 ",
	":liechtenstein:", "🇱🇮 ",
	":light_rail:", "🚈 ",
	":link:", "🔗 ",
	":lion:", "🦁 ",
	":lips:", "👄 ",
	":lipstick:", "💄 ",
	":lithuania:", "🇱🇹 ",
	":lizard:", "🦎 ",
	":lock:", "🔒 ",
	":lock_with_ink_pen:", "🔏 ",
	":lollipop:", "🍭 ",
	":loop:", "➿ ",
	":loud_sound:", "🔊 ",
	":loudspeaker:", "📢 ",
	":love_hotel:", "🏩 ",
	":love_letter:", "💌 ",
	":love_you:", "🤟 ",
	":low_brightness:", "🔅 ",
	":luxembourg:", "🇱🇺 ",
	":lying_face:", "🤥 ",
	":m:", "Ⓜ️ ",
	":macau:", "🇲🇴 ",
	":macedonia:", "🇲🇰 ",
	":madagascar:", "🇲🇬 ",
	":mag:", "🔍 ",
	":mag_right:", "🔎 ",
	":mahjong:", "🀄 ",
	":mailbox:", "📫 ",
	":mailbox_closed:", "📪 ",
	":mailbox_with_mail:", "📬 ",
	":mailbox_with_no_mail:", "📭 ",
	":malawi:", "🇲🇼 ",
	":malaysia:", "🇲🇾 ",
	":maldives:", "🇲🇻 ",
	":male_detective:", "🕵 ",
	":mali:", "🇲🇱 ",
	":malta:", "🇲🇹 ",
	":man:", "👨 ",
	":man_artist:", "👨‍🎨 ",
	":man_astronaut:", "👨‍🚀 ",
	":man_cartwheeling:", "🤸‍♂️ ",
	":man_cook:", "👨‍🍳 ",
	":man_dancing:", "🕺 ",
	":man_elf:", "🧝‍♂️ ",
	":man_facepalming:", "🤦 ",
	":man_factory_worker:", "👨‍🏭 ",
	":man_fairy:", "🧚‍♂️ ",
	":man_farmer:", "👨‍🌾 ",
	":man_firefighter:", "👨‍🚒 ",
	":man_genie:", "🧞‍♂️ ",
	":man_health_worker:", "👨‍⚕️ ",
	":man_in_lotus_position:", "🧘‍♂️ ",
	":man_in_steamy_room:", "🧖‍♂️ ",
	":man_in_tuxedo:", "🤵 ",
	":man_judge:", "👨‍⚖️ ",
	":man_juggling:", "🤹‍♂️ ",
	":man_mechanic:", "👨‍🔧 ",
	":man_office_worker:", "👨‍💼 ",
	":man_pilot:", "👨‍✈️ ",
	":man_playing_handball:", "🤾‍♂️ ",
	":man_playing_water_polo:", "🤽‍♂️ ",
	":man_scientist:", "👨‍🔬 ",
	":man_shrugging:", "🤷‍♂️ ",
	":man_singer:", "👨‍🎤 ",
	":man_student:", "👨‍🎓 ",
	":man_teacher:", "👨‍🏫 ",
	":man_technologist:", "👨‍💻 ",
	":man_vampire:", "🧛‍♂️ ",
	":man_with_gua_pi_mao:", "👲 ",
	":man_with_turban:", "👳 ",
	":man_zombie:", "🧟‍♂️ ",
	":mans_shoe:", "👞 ",
	":mantelpiece_clock:", "🕰 ",
	":maple_leaf:", "🍁 ",
	":marshall_islands:", "🇲🇭 ",
	":martial_arts_uniform:", "🥋 ",
	":martinique:", "🇲🇶 ",
	":mask:", "😷 ",
	":massage_man:", "💆‍♂️ ",
	":massage_woman:", "💆 ",
	":mauritania:", "🇲🇷 ",
	":mauritius:", "🇲🇺 ",
	":mayotte:", "🇾🇹 ",
	":meat_on_bone:", "🍖 ",
	":medal_military:", "🎖 ",
	":medal_sports:", "🏅 ",
	":mega:", "📣 ",
	":melon:", "🍈 ",
	":memo:", "📝 ",
	":men_wrestling:", "🤼‍♂️ ",
	":menorah:", "🕎 ",
	":mens:", "🚹 ",
	":mermaid:", "🧜‍♀️ ",
	":merman:", "🧜‍♂️ ",
	":metal:", "🤘 ",
	":metro:", "🚇 ",
	":mexico:", "🇲🇽 ",
	":micronesia:", "🇫🇲 ",
	":microphone:", "🎤 ",
	":microscope:", "🔬 ",
	":milk_glass:", "🥛 ",
	":milky_way:", "🌌 ",
	":minibus:", "🚐 ",
	":minidisc:", "💽 ",
	":mobile_phone_off:", "📴 ",
	":moldova:", "🇲🇩 ",
	":monaco:", "🇲🇨 ",
	":money_mouth_face:", "🤑 ",
	":money_with_wings:", "💸 ",
	":moneybag:", "💰 ",
	":mongolia:", "🇲🇳 ",
	":monkey:", "🐒 ",
	":monkey_face:", "🐵 ",
	":monocle:", "🧐 ",
	":monorail:", "🚝 ",
	":montenegro:", "🇲🇪 ",
	":montserrat:", "🇲🇸 ",
	":morocco:", "🇲🇦 ",
	":mortar_board:", "🎓 ",
	":mosque:", "🕌 ",
	":motor_boat:", "🛥 ",
	":motor_scooter:", "🛵 ",
	":motorcycle:", "🏍 ",
	":motorway:", "🛣 ",
	":mount_fuji:", "🗻 ",
	":mountain:", "⛰ ",
	":mountain_biking_man:", "🚵 ",
	":mountain_biking_woman:", "🚵‍♀️ ",
	":mountain_cableway:", "🚠 ",
	":mountain_railway:", "🚞 ",
	":mountain_snow:", "🏔 ",
	":mouse:", "🐭 ",
	":mouse2:", "🐁 ",
	":movie_camera:", "🎥 ",
	":moyai:", "🗿 ",
	":mozambique:", "🇲🇿 ",
	":mrs_claus:", "🤶 ",
	":muscle:", "💪 ",
	":mushroom:", "🍄 ",
	":musical_keyboard:", "🎹 ",
	":musical_note:", "🎵 ",
	":musical_score:", "🎼 ",
	":mute:", "🔇 ",
	":myanmar:", "🇲🇲 ",
	":nail_care:", "💅 ",
	":name_badge:", "📛 ",
	":namibia:", "🇳🇦 ",
	":national_park:", "🏞 ",
	":nauru:", "🇳🇷 ",
	":nauseated_face:", "🤢 ",
	":necktie:", "👔 ",
	":negative_squared_cross_mark:", "❎ ",
	":nepal:", "🇳🇵 ",
	":nerd_face:", "🤓 ",
	":netherlands:", "🇳🇱 ",
	":neutral_face:", "😐 ",
	":new:", "🆕 ",
	":new_caledonia:", "🇳🇨 ",
	":new_moon:", "🌑 ",
	":new_moon_with_face:", "🌚 ",
	":new_zealand:", "🇳🇿 ",
	":newspaper:", "📰 ",
	":newspaper_roll:", "🗞 ",
	":next_track_button:", "⏭ ",
	":ng:", "🆖 ",
	":nicaragua:", "🇳🇮 ",
	":niger:", "🇳🇪 ",
	":nigeria:", "🇳🇬 ",
	":night_with_stars:", "🌃 ",
	":nine:", "9️⃣ ",
	":niue:", "🇳🇺 ",
	":no_bell:", "🔕 ",
	":no_bicycles:", "🚳 ",
	":no_entry:", "⛔ ",
	":no_entry_sign:", "🚫 ",
	":no_good_man:", "🙅‍♂️ ",
	":no_good_woman:", "🙅 ",
	":no_mobile_phones:", "📵 ",
	":no_mouth:", "😶 ",
	":no_pedestrians:", "🚷 ",
	":no_smoking:", "🚭 ",
	":non-potable_water:", "🚱 ",
	":norfolk_island:", "🇳🇫 ",
	":north_korea:", "🇰🇵 ",
	":northern_mariana_islands:", "🇲🇵 ",
	":norway:", "🇳🇴 ",
	":nose:", "👃 ",
	":notebook:", "📓 ",
	":notebook_with_decorative_cover:", "📔 ",
	":notes:", "🎶 ",
	":nut_and_bolt:", "🔩 ",
	":o:", "⭕ ",
	":o2:", "🅾️ ",
	":ocean:", "🌊 ",
	":octopus:", "🐙 ",
	":oden:", "🍢 ",
	":office:", "🏢 ",
	":oil_drum:", "🛢 ",
	":ok:", "🆗 ",
	":ok_hand:", "👌 ",
	":ok_man:", "🙆‍♂️ ",
	":ok_woman:", "🙆 ",
	":old_key:", "🗝 ",
	":older_adult:", "🧓 ",
	":older_man:", "👴 ",
	":older_woman:", "👵 ",
	":om:", "🕉 ",
	":oman:", "🇴🇲 ",
	":on:", "🔛 ",
	":oncoming_automobile:", "🚘 ",
	":oncoming_bus:", "🚍 ",
	":oncoming_police_car:", "🚔 ",
	":oncoming_taxi:", "🚖 ",
	":one:", "1️⃣ ",
	":open_book:", "📖 ",
	":open_file_folder:", "📂 ",
	":open_hands:", "👐 ",
	":open_mouth:", "😮 ",
	":open_umbrella:", "☂ ",
	":ophiuchus:", "⛎ ",
	":orange_book:", "📙 ",
	":orange_heart:", "🧡 ",
	":orthodox_cross:", "☦ ",
	":outbox_tray:", "📤 ",
	":owl:", "🦉 ",
	":ox:", "🐂 ",
	":package:", "📦 ",
	":page_facing_up:", "📄 ",
	":page_with_curl:", "📃 ",
	":pager:", "📟 ",
	":paintbrush:", "🖌 ",
	":pakistan:", "🇵🇰 ",
	":palau:", "🇵🇼 ",
	":palestinian_territories:", "🇵🇸 ",
	":palm_tree:", "🌴 ",
	":palms_up:", "🤲 ",
	":panama:", "🇵🇦 ",
	":pancakes:", "🥞 ",
	":panda_face:", "🐼 ",
	":paperclip:", "📎 ",
	":paperclips:", "🖇 ",
	":papua_new_guinea:", "🇵🇬 ",
	":paraguay:", "🇵🇾 ",
	":parasol_on_ground:", "⛱ ",
	":parking:", "🅿️ ",
	":part_alternation_mark:", "〽️ ",
	":partly_sunny:", "⛅ ",
	":passenger_ship:", "🛳 ",
	":passport_control:", "🛂 ",
	":pause_button:", "⏸ ",
	":paw_prints:", "🐾 ",
	":peace_symbol:", "☮ ",
	":peach:", "🍑 ",
	":peanuts:", "🥜 ",
	":pear:", "🍐 ",
	":pen:", "🖊 ",
	":pencil2:", "✏️ ",
	":penguin:", "🐧 ",
	":pensive:", "😔 ",
	":performing_arts:", "🎭 ",
	":persevere:", "😣 ",
	":person_fencing:", "🤺 ",
	":peru:", "🇵🇪 ",
	":philippines:", "🇵🇭 ",
	":phone:", "☎️ ",
	":pick:", "⛏ ",
	":pie:", "🥧 ",
	":pig:", "🐷 ",
	":pig2:", "🐖 ",
	":pig_nose:", "🐽 ",
	":pill:", "💊 ",
	":pineapple:", "🍍 ",
	":ping_pong:", "🏓 ",
	":pisces:", "♓ ",
	":pitcairn_islands:", "🇵🇳 ",
	":pizza:", "🍕 ",
	":place_of_worship:", "🛐 ",
	":plate_with_cutlery:", "🍽 ",
	":play_or_pause_button:", "⏯ ",
	":point_down:", "👇 ",
	":point_left:", "👈 ",
	":point_right:", "👉 ",
	":point_up:", "☝ ",
	":point_up_2:", "👆 ",
	":poland:", "🇵🇱 ",
	":police_car:", "🚓 ",
	":policeman:", "👮 ",
	":policewoman:", "👮‍♀️ ",
	":poodle:", "🐩 ",
	":poop:", "💩 ",
	":popcorn:", "🍿 ",
	":portugal:", "🇵🇹 ",
	":post_office:", "🏣 ",
	":postal_horn:", "📯 ",
	":postbox:", "📮 ",
	":potable_water:", "🚰 ",
	":potato:", "🥔 ",
	":pouch:", "👝 ",
	":poultry_leg:", "🍗 ",
	":pound:", "💷 ",
	":pouting_cat:", "😾 ",
	":pouting_man:", "🙎‍♂️ ",
	":pouting_woman:", "🙎 ",
	":pray:", "🙏 ",
	":prayer_beads:", "📿 ",
	":pregnant_woman:", "🤰 ",
	":pretzel:", "🥨 ",
	":previous_track_button:", "⏮ ",
	":prince:", "🤴 ",
	":princess:", "👸 ",
	":printer:", "🖨 ",
	":puerto_rico:", "🇵🇷 ",
	":purple_heart:", "💜 ",
	":purse:", "👛 ",
	":pushpin:", "📌 ",
	":put_litter_in_its_place:", "🚮 ",
	":qatar:", "🇶🇦 ",
	":question:", "❓ ",
	":rabbit:", "🐰 ",
	":rabbit2:", "🐇 ",
	":racehorse:", "🐎 ",
	":racing_car:", "🏎 ",
	":radio:", "📻 ",
	":radio_button:", "🔘 ",
	":radioactive:", "☢ ",
	":rage:", "😡 ",
	":railway_car:", "🚃 ",
	":railway_track:", "🛤 ",
	":rainbow:", "🌈 ",
	":rainbow_flag:", "🏳️‍🌈 ",
	":raised_back_of_hand:", "🤚 ",
	":raised_eyebrow:", "🤨 ",
	":raised_hand:", "✋ ",
	":raised_hand_with_fingers_splayed:", "🖐 ",
	":raised_hands:", "🙌 ",
	":raising_hand_man:", "🙋‍♂️ ",
	":raising_hand_woman:", "🙋 ",
	":ram:", "🐏 ",
	":ramen:", "🍜 ",
	":rat:", "🐀 ",
	":record_button:", "⏺ ",
	":recycle:", "♻️ ",
	":red_car:", "🚗 ",
	":red_circle:", "🔴 ",
	":registered:", "®️ ",
	":relaxed:", "☺️ ",
	":relieved:", "😌 ",
	":reminder_ribbon:", "🎗 ",
	":repeat:", "🔁 ",
	":repeat_one:", "🔂 ",
	":rescue_worker_helmet:", "⛑ ",
	":restroom:", "🚻 ",
	":reunion:", "🇷🇪 ",
	":revolving_hearts:", "💞 ",
	":rewind:", "⏪ ",
	":rhinoceros:", "🦏 ",
	":ribbon:", "🎀 ",
	":rice:", "🍚 ",
	":rice_ball:", "🍙 ",
	":rice_cracker:", "🍘 ",
	":rice_scene:", "🎑 ",
	":right_anger_bubble:", "🗯 ",
	":ring:", "💍 ",
	":robot:", "🤖 ",
	":rocket:", "🚀 ",
	":rofl:", "🤣 ",
	":roll_eyes:", "🙄 ",
	":roller_coaster:", "🎢 ",
	":romania:", "🇷🇴 ",
	":rooster:", "🐓 ",
	":rose:", "🌹 ",
	":rosette:", "🏵 ",
	":rotating_light:", "🚨 ",
	":round_pushpin:", "📍 ",
	":rowing_man:", "🚣 ",
	":rowing_woman:", "🚣‍♀️ ",
	":ru:", "🇷🇺 ",
	":rugby_football:", "🏉 ",
	":running_man:", "🏃 ",
	":running_shirt_with_sash:", "🎽 ",
	":running_woman:", "🏃‍♀️ ",
	":rwanda:", "🇷🇼 ",
	":sa:", "🈂️ ",
	":sagittarius:", "♐ ",
	":sailboat:", "⛵ ",
	":sake:", "🍶 ",
	":samoa:", "🇼🇸 ",
	":san_marino:", "🇸🇲 ",
	":sandal:", "👡 ",
	":sandwich:", "🥪 ",
	":santa:", "🎅 ",
	":sao_tome_principe:", "🇸🇹 ",
	":satellite:", "📡 ",
	":saudi_arabia:", "🇸🇦 ",
	":sauropod:", "🦕 ",
	":saxophone:", "🎷 ",
	":scarf:", "🧣 ",
	":school:", "🏫 ",
	":school_satchel:", "🎒 ",
	":scissors:", "✂️ ",
	":scorpion:", "🦂 ",
	":scorpius:", "♏ ",
	":scotland:", "🏴󠁧󠁢󠁳󠁣󠁴󠁿 ",
	":scream:", "😱 ",
	":scream_cat:", "🙀 ",
	":scroll:", "📜 ",
	":seat:", "💺 ",
	":secret:", "㊙️ ",
	":see_no_evil:", "🙈 ",
	":seedling:", "🌱 ",
	":selfie:", "🤳 ",
	":senegal:", "🇸🇳 ",
	":serbia:", "🇷🇸 ",
	":seven:", "7️⃣ ",
	":seychelles:", "🇸🇨 ",
	":shallow_pan_of_food:", "🥘 ",
	":shamrock:", "☘ ",
	":shark:", "🦈 ",
	":shaved_ice:", "🍧 ",
	":sheep:", "🐑 ",
	":shell:", "🐚 ",
	":shield:", "🛡 ",
	":shinto_shrine:", "⛩ ",
	":ship:", "🚢 ",
	":shopping:", "🛍 ",
	":shopping_cart:", "🛒 ",
	":shower:", "🚿 ",
	":shrimp:", "🦐 ",
	":shushing:", "🤫 ",
	":sierra_leone:", "🇸🇱 ",
	":signal_strength:", "📶 ",
	":singapore:", "🇸🇬 ",
	":sint_maarten:", "🇸🇽 ",
	":six:", "6️⃣ ",
	":six_pointed_star:", "🔯 ",
	":ski:", "🎿 ",
	":skier:", "⛷ ",
	":skull:", "💀 ",
	":skull_and_crossbones:", "☠ ",
	":sled:", "🛷 ",
	":sleeping:", "😴 ",
	":sleeping_bed:", "🛌 ",
	":sleepy:", "😪 ",
	":slightly_frowning_face:", "🙁 ",
	":slightly_smiling_face:", "🙂 ",
	":slot_machine:", "🎰 ",
	":slovakia:", "🇸🇰 ",
	":slovenia:", "🇸🇮 ",
	":small_airplane:", "🛩 ",
	":small_blue_diamond:", "🔹 ",
	":small_orange_diamond:", "🔸 ",
	":small_red_triangle:", "🔺 ",
	":small_red_triangle_down:", "🔻 ",
	":smile:", "😄 ",
	":smile_cat:", "😸 ",
	":smiley:", "😃 ",
	":smiley_cat:", "😺 ",
	":smiling_imp:", "😈 ",
	":smirk:", "😏 ",
	":smirk_cat:", "😼 ",
	":smoking:", "🚬 ",
	":snail:", "🐌 ",
	":snake:", "🐍 ",
	":sneezing_face:", "🤧 ",
	":snowboarder:", "🏂 ",
	":snowflake:", "❄️ ",
	":snowman:", "⛄ ",
	":snowman_with_snow:", "☃ ",
	":sob:", "😭 ",
	":soccer:", "⚽ ",
	":socks:", "🧦 ",
	":solomon_islands:", "🇸🇧 ",
	":somalia:", "🇸🇴 ",
	":soon:", "🔜 ",
	":sorceress:", "🧙‍♀️ ",
	":sos:", "🆘 ",
	":sound:", "🔉 ",
	":south_africa:", "🇿🇦 ",
	":south_georgia_south_sandwich_islands:", "🇬🇸 ",
	":south_sudan:", "🇸🇸 ",
	":space_invader:", "👾 ",
	":spades:", "♠️ ",
	":spaghetti:", "🍝 ",
	":sparkle:", "❇️ ",
	":sparkler:", "🎇 ",
	":sparkles:", "✨ ",
	":sparkling_heart:", "💖 ",
	":speak_no_evil:", "🙊 ",
	":speaker:", "🔈 ",
	":speaking_head:", "🗣 ",
	":speech_balloon:", "💬 ",
	":speedboat:", "🚤 ",
	":spider:", "🕷 ",
	":spider_web:", "🕸 ",
	":spiral_calendar:", "🗓 ",
	":spiral_notepad:", "🗒 ",
	":spoon:", "🥄 ",
	":squid:", "🦑 ",
	":sri_lanka:", "🇱🇰 ",
	":st_barthelemy:", "🇧🇱 ",
	":st_helena:", "🇸🇭 ",
	":st_kitts_nevis:", "🇰🇳 ",
	":st_lucia:", "🇱🇨 ",
	":st_pierre_miquelon:", "🇵🇲 ",
	":st_vincent_grenadines:", "🇻🇨 ",
	":stadium:", "🏟 ",
	":star:", "⭐ ",
	":star2:", "🌟 ",
	":star_and_crescent:", "☪ ",
	":star_of_david:", "✡ ",
	":star_struck:", "🤩 ",
	":stars:", "🌠 ",
	":station:", "🚉 ",
	":statue_of_liberty:", "🗽 ",
	":steak:", "🥩 ",
	":steam_locomotive:", "🚂 ",
	":stew:", "🍲 ",
	":stop_button:", "⏹ ",
	":stop_sign:", "🛑 ",
	":stopwatch:", "⏱ ",
	":straight_ruler:", "📏 ",
	":strawberry:", "🍓 ",
	":stuck_out_tongue:", "😛 ",
	":stuck_out_tongue_closed_eyes:", "😝 ",
	":stuck_out_tongue_winking_eye:", "😜 ",
	":studio_microphone:", "🎙 ",
	":stuffed_flatbread:", "🥙 ",
	":sudan:", "🇸🇩 ",
	":sun_behind_large_cloud:", "🌥 ",
	":sun_behind_rain_cloud:", "🌦 ",
	":sun_behind_small_cloud:", "🌤 ",
	":sun_with_face:", "🌞 ",
	":sunflower:", "🌻 ",
	":sunglasses:", "😎 ",
	":sunny:", "☀️ ",
	":sunrise:", "🌅 ",
	":sunrise_over_mountains:", "🌄 ",
	":surfing_man:", "🏄 ",
	":surfing_woman:", "🏄‍♀️ ",
	":suriname:", "🇸🇷 ",
	":sushi:", "🍣 ",
	":suspension_railway:", "🚟 ",
	":swaziland:", "🇸🇿 ",
	":sweat:", "😓 ",
	":sweat_drops:", "💦 ",
	":sweat_smile:", "😅 ",
	":sweden:", "🇸🇪 ",
	":sweet_potato:", "🍠 ",
	":swimming_man:", "🏊 ",
	":swimming_woman:", "🏊‍♀️ ",
	":switzerland:", "🇨🇭 ",
	":symbols:", "🔣 ",
	":symbols_over_mouth:", "🤬 ",
	":synagogue:", "🕍 ",
	":syria:", "🇸🇾 ",
	":syringe:", "💉 ",
	":t-rex:", "🦖 ",
	":taco:", "🌮 ",
	":tada:", "🎉 ",
	":taiwan:", "🇹🇼 ",
	":tajikistan:", "🇹🇯 ",
	":takeout_box:", "🥡 ",
	":tanabata_tree:", "🎋 ",
	":tangerine:", "🍊 ",
	":tanzania:", "🇹🇿 ",
	":taurus:", "♉ ",
	":taxi:", "🚕 ",
	":tea:", "🍵 ",
	":telephone_receiver:", "📞 ",
	":telescope:", "🔭 ",
	":tennis:", "🎾 ",
	":tent:", "⛺ ",
	":thailand:", "🇹🇭 ",
	":thermometer:", "🌡 ",
	":thinking:", "🤔 ",
	":thought_balloon:", "💭 ",
	":three:", "3️⃣ ",
	":ticket:", "🎫 ",
	":tickets:", "🎟 ",
	":tiger:", "🐯 ",
	":tiger2:", "🐅 ",
	":timer_clock:", "⏲ ",
	":timor_leste:", "🇹🇱 ",
	":tipping_hand_man:", "💁‍♂️ ",
	":tipping_hand_woman:", "💁 ",
	":tired_face:", "😫 ",
	":tm:", "™️ ",
	":togo:", "🇹🇬 ",
	":toilet:", "🚽 ",
	":tokelau:", "🇹🇰 ",
	":tokyo_tower:", "🗼 ",
	":tomato:", "🍅 ",
	":tonga:", "🇹🇴 ",
	":tongue:", "👅 ",
	":top:", "🔝 ",
	":tophat:", "🎩 ",
	":tornado:", "🌪 ",
	":tr:", "🇹🇷 ",
	":trackball:", "🖲 ",
	":tractor:", "🚜 ",
	":traffic_light:", "🚥 ",
	":train:", "🚋 ",
	":train2:", "🚆 ",
	":tram:", "🚊 ",
	":triangular_flag_on_post:", "🚩 ",
	":triangular_ruler:", "📐 ",
	":trident:", "🔱 ",
	":trinidad_tobago:", "🇹🇹 ",
	":triumph:", "😤 ",
	":trolleybus:", "🚎 ",
	":trophy:", "🏆 ",
	":tropical_drink:", "🍹 ",
	":tropical_fish:", "🐠 ",
	":truck:", "🚚 ",
	":trumpet:", "🎺 ",
	":tshirt:", "👕 ",
	":tulip:", "🌷 ",
	":tumbler_glass:", "🥃 ",
	":tunisia:", "🇹🇳 ",
	":turkey:", "🦃 ",
	":turkmenistan:", "🇹🇲 ",
	":turks_caicos_islands:", "🇹🇨 ",
	":turtle:", "🐢 ",
	":tuvalu:", "🇹🇻 ",
	":tv:", "📺 ",
	":twisted_rightwards_arrows:", "🔀 ",
	":two:", "2️⃣ ",
	":two_hearts:", "💕 ",
	":two_men_holding_hands:", "👬 ",
	":two_women_holding_hands:", "👭 ",
	":u5272:", "🈹 ",
	":u5408:", "🈴 ",
	":u55b6:", "🈺 ",
	":u6307:", "🈯 ",
	":u6708:", "🈷️ ",
	":u6709:", "🈶 ",
	":u6e80:", "🈵 ",
	":u7121:", "🈚 ",
	":u7533:", "🈸 ",
	":u7981:", "🈲 ",
	":u7a7a:", "🈳 ",
	":uganda:", "🇺🇬 ",
	":uk:", "🇬🇧 ",
	":ukraine:", "🇺🇦 ",
	":umbrella:", "☔ ",
	":unamused:", "😒 ",
	":underage:", "🔞 ",
	":unicorn:", "🦄 ",
	":united_arab_emirates:", "🇦🇪 ",
	":unlock:", "🔓 ",
	":up:", "🆙 ",
	":upside_down_face:", "🙃 ",
	":uruguay:", "🇺🇾 ",
	":us:", "🇺🇸 ",
	":us_virgin_islands:", "🇻🇮 ",
	":uzbekistan:", "🇺🇿 ",
	":v:", "✌ ",
	":vanuatu:", "🇻🇺 ",
	":vatican_city:", "🇻🇦 ",
	":venezuela:", "🇻🇪 ",
	":vertical_traffic_light:", "🚦 ",
	":vhs:", "📼 ",
	":vibration_mode:", "📳 ",
	":video_camera:", "📹 ",
	":video_game:", "🎮 ",
	":vietnam:", "🇻🇳 ",
	":violin:", "🎻 ",
	":virgo:", "♍ ",
	":volcano:", "🌋 ",
	":volleyball:", "🏐 ",
	":vomiting:", "🤮 ",
	":vs:", "🆚 ",
	":vulcan_salute:", "🖖 ",
	":wales:", "🏴󠁧󠁢󠁷󠁬󠁳󠁿 ",
	":walking_man:", "🚶 ",
	":walking_woman:", "🚶‍♀️ ",
	":wallis_futuna:", "🇼🇫 ",
	":waning_crescent_moon:", "🌘 ",
	":waning_gibbous_moon:", "🌖 ",
	":warning:", "⚠️ ",
	":wastebasket:", "🗑 ",
	":watch:", "⌚ ",
	":water_buffalo:", "🐃 ",
	":watermelon:", "🍉 ",
	":wave:", "👋 ",
	":wavy_dash:", "〰️ ",
	":waxing_crescent_moon:", "🌒 ",
	":waxing_gibbous_moon:", "🌔 ",
	":wc:", "🚾 ",
	":weary:", "😩 ",
	":wedding:", "💒 ",
	":weight_lifting_man:", "🏋 ",
	":weight_lifting_woman:", "🏋️‍♀️ ",
	":western_sahara:", "🇪🇭 ",
	":whale:", "🐳 ",
	":whale2:", "🐋 ",
	":wheel_of_dharma:", "☸ ",
	":wheelchair:", "♿ ",
	":white_check_mark:", "✅ ",
	":white_circle:", "⚪ ",
	":white_flag:", "🏳 ",
	":white_flower:", "💮 ",
	":white_large_square:", "⬜ ",
	":white_medium_small_square:", "◽ ",
	":white_medium_square:", "◻️ ",
	":white_small_square:", "▫️ ",
	":white_square_button:", "🔳 ",
	":wilted_flower:", "🥀 ",
	":wind_chime:", "🎐 ",
	":wind_face:", "🌬 ",
	":wine_glass:", "🍷 ",
	":wink:", "😉 ",
	":wizard:", "🧙‍♂️ ",
	":wolf:", "🐺 ",
	":woman:", "👩 ",
	":woman_artist:", "👩‍🎨 ",
	":woman_astronaut:", "👩‍🚀 ",
	":woman_cartwheeling:", "🤸‍♀️ ",
	":woman_cook:", "👩‍🍳 ",
	":woman_elf:", "🧝‍♀️ ",
	":woman_facepalming:", "🤦‍♀️ ",
	":woman_factory_worker:", "👩‍🏭 ",
	":woman_fairy:", "🧚‍♀️ ",
	":woman_farmer:", "👩‍🌾 ",
	":woman_firefighter:", "👩‍🚒 ",
	":woman_genie:", "🧞‍♀️ ",
	":woman_health_worker:", "👩‍⚕️ ",
	":woman_in_lotus_position:", "🧘‍♀️ ",
	":woman_in_steamy_room:", "🧖‍♀️ ",
	":woman_judge:", "👩‍⚖️ ",
	":woman_juggling:", "🤹‍♀️ ",
	":woman_mechanic:", "👩‍🔧 ",
	":woman_office_worker:", "👩‍💼 ",
	":woman_pilot:", "👩‍✈️ ",
	":woman_playing_handball:", "🤾‍♀️ ",
	":woman_playing_water_polo:", "🤽‍♀️ ",
	":woman_scientist:", "👩‍🔬 ",
	":woman_shrugging:", "🤷 ",
	":woman_singer:", "👩‍🎤 ",
	":woman_student:", "👩‍🎓 ",
	":woman_teacher:", "👩‍🏫 ",
	":woman_technologist:", "👩‍💻 ",
	":woman_vampire:", "🧛‍♀️ ",
	":woman_with_headscarf:", "🧕 ",
	":woman_with_turban:", "👳‍♀️ ",
	":woman_zombie:", "🧟‍♀️ ",
	":womans_clothes:", "👚 ",
	":womans_hat:", "👒 ",
	":women_wrestling:", "🤼‍♀️ ",
	":womens:", "🚺 ",
	":world_map:", "🗺 ",
	":worried:", "😟 ",
	":wrench:", "🔧 ",
	":writing_hand:", "✍ ",
	":x:", "❌ ",
	":yellow_heart:", "💛 ",
	":yemen:", "🇾🇪 ",
	":yen:", "💴 ",
	":yin_yang:", "☯ ",
	":yum:", "😋 ",
	":zambia:", "🇿🇲 ",
	":zany:", "🤪 ",
	":zap:", "⚡ ",
	":zebra:", "🦓 ",
	":zero:", "0️⃣ ",
	":zimbabwe:", "🇿🇼 ",
	":zipper_mouth_face:", "🤐 ",
	":zzz:", "💤 ",
)