Blame view

bower_components/prism/tests/languages/gherkin/atrule_feature.test 24.1 KB
eb240478   Luigi Serra   public room cards...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
  Scenario: foo

  	'ach foobar

  	'a foobar

  	'ej foobar

  	7 foobar

  	a foobar

  	A také foobar

  	A taktiež foobar

  	A tiež foobar

  	A zároveň foobar

  	Aber foobar

  	Ac foobar

  	Adott foobar

  	Akkor foobar

  	Ak foobar

  	Aleshores foobar

  	Ale foobar

  	Ali foobar

  	Allora foobar

  	Alors foobar

  	Als foobar

  	Ama foobar

  	Amennyiben foobar

  	Amikor foobar

  	Ampak foobar

  	an foobar

  	AN foobar

  	Ananging foobar

  	And y'all foobar

  	And foobar

  	Angenommen foobar

  	Anrhegedig a foobar

  	An foobar

  	Apabila foobar

  	Atès foobar

  	Atesa foobar

  	Atunci foobar

  	Avast! foobar

  	Aye foobar

  	A foobar

  	awer foobar

  	Bagi foobar

  	Banjur foobar

  	Bet foobar

  	Biết foobar

  	Blimey! foobar

  	Buh foobar

  	But at the end of the day I reckon foobar

  	But y'all foobar

  	But foobar

  	BUT foobar

  	Cal foobar

  	Când foobar

  	Cando foobar

  	Cand foobar

  	Ce foobar

  	Cuando foobar

  	Če foobar

  	Ða ðe foobar

  	Ða foobar

  	Dadas foobar

  	Dada foobar

  	Dados foobar

  	Dado foobar

  	DaH ghu' bejlu' foobar

  	dann foobar

  	Dann foobar

  	Dano foobar

  	Dan foobar

  	Dar foobar

  	Dat fiind foobar

  	Data foobar

  	Date fiind foobar

  	Date foobar

  	Dati fiind foobar

  	Dati foobar

  	Daţi fiind foobar

  	Dați fiind foobar

  	Dato foobar

  	DEN foobar

  	Den youse gotta foobar

  	Dengan foobar

  	De foobar

  	Diberi foobar

  	Diyelim ki foobar

  	Donada foobar

  	Donat foobar

  	Donitaĵo foobar

  	Do foobar

  	Dun foobar

  	Duota foobar

  	Ðurh foobar

  	Eeldades foobar

  	Ef foobar

  	Eğer ki foobar

  	Entao foobar

  	Então foobar

  	Entón foobar

  	Entonces foobar

  	En foobar

  	Epi foobar

  	E foobar

  	És foobar

  	Etant donnée foobar

  	Etant donné foobar

  	Et foobar

  	Étant données foobar

  	Étant donnée foobar

  	Étant donné foobar

  	Etant données foobar

  	Etant donnés foobar

  	Étant donnés foobar

  	Fakat foobar

  	Gangway! foobar

  	Gdy foobar

  	Gegeben seien foobar

  	Gegeben sei foobar

  	Gegeven foobar

  	Gegewe foobar

  	ghu' noblu' foobar

  	Gitt foobar

  	Given y'all foobar

  	Given foobar

  	Givet foobar

  	Givun foobar

  	Ha foobar

  	Cho foobar

  	I CAN HAZ foobar

  	In foobar

  	Ir foobar

  	It's just unbelievable foobar

  	I foobar

  	Ja foobar

  	Jeśli foobar

  	Jeżeli foobar

  	Kadar foobar

  	Kada foobar

  	Kad foobar

  	Kai foobar

  	Kaj foobar

  	Když foobar

  	Keď foobar

  	Kemudian foobar

  	Ketika foobar

  	Khi foobar

  	Kiedy foobar

  	Ko foobar

  	Kuid foobar

  	Kui foobar

  	Kun foobar

  	Lan foobar

  	latlh foobar

  	Le sa a foobar

  	Let go and haul foobar

  	Le foobar

  	Lè sa a foobar

  	Lè foobar

  	Logo foobar

  	Lorsqu'< foobar

  	Lorsque foobar

  	mä foobar

  	Maar foobar

  	Mais foobar

  	Mając foobar

  	Majd foobar

  	Maka foobar

  	Manawa foobar

  	Mas foobar

  	Ma foobar

  	Menawa foobar

  	Men foobar

  	Mutta foobar

  	Nalikaning foobar

  	Nalika foobar

  	Nanging foobar

  	Når foobar

  	När foobar

  	Nato foobar

  	Nhưng foobar

  	Niin foobar

  	Njuk foobar

  	O zaman foobar

  	Og foobar

  	Och foobar

  	Oletetaan foobar

  	Onda foobar

  	Ond foobar

  	Oraz foobar

  	Pak foobar

  	Pero foobar

  	Però foobar

  	Podano foobar

  	Pokiaľ foobar

  	Pokud foobar

  	Potem foobar

  	Potom foobar

  	Privzeto foobar

  	Pryd foobar

  	qaSDI' foobar

  	Quando foobar

  	Quand foobar

  	Quan foobar

  	Så foobar

  	Sed foobar

  	Se foobar

  	Siis foobar

  	Sipoze ke foobar

  	Sipoze Ke foobar

  	Sipoze foobar

  	Si foobar

  	Şi foobar

  	Și foobar

  	Soit foobar

  	Stel foobar

  	Tada foobar

  	Tad foobar

  	Takrat foobar

  	Tak foobar

  	Tapi foobar

  	Ter foobar

  	Tetapi foobar

  	Tha the foobar

  	Tha foobar

  	Then y'all foobar

  	Then foobar

  	Thì foobar

  	Thurh foobar

  	Toda foobar

  	Too right foobar

  	ugeholl foobar

  	Und foobar

  	Un foobar

  	Và foobar

  	vaj foobar

  	Vendar foobar

  	Ve foobar

  	wann foobar

  	Wanneer foobar

  	WEN foobar

  	Wenn foobar

  	When y'all foobar

  	When foobar

  	Wtedy foobar

  	Wun foobar

  	Y'know foobar

  	Yeah nah foobar

  	Yna foobar

  	Youse know like when foobar

  	Youse know when youse got foobar

  	Y foobar

  	Za predpokladu foobar

  	Za předpokladu foobar

  	Zadani foobar

  	Zadano foobar

  	Zadan foobar

  	Zadate foobar

  	Zadato foobar

  	Zakładając foobar

  	Zaradi foobar

  	Zatati foobar

  	Þa foobar

  	Þá foobar

  	Þa þe foobar

  	Þegar foobar

  	Þurh foobar

  	Αλλά foobar

  	Δεδομένου foobar

  	Και foobar

  	Όταν foobar

  	Τότε foobar

  	А також foobar

  	Агар foobar

  	Але foobar

  	Али foobar

  	Аммо foobar

  	А foobar

  	Әгәр foobar

  	Әйтик foobar

  	Әмма foobar

  	Бирок foobar

  	Ва foobar

  	Вә foobar

  	Дадено foobar

  	Дано foobar

  	Допустим foobar

  	Если foobar

  	Задате foobar

  	Задати foobar

  	Задато foobar

  	И foobar

  	І foobar

  	К тому же foobar

  	Када foobar

  	Кад foobar

  	Когато foobar

  	Когда foobar

  	Коли foobar

  	Ләкин foobar

  	Лекин foobar

  	Нәтиҗәдә foobar

  	Нехай foobar

  	Но foobar

  	Онда foobar

  	Припустимо, що foobar

  	Припустимо foobar

  	Пусть foobar

  	Также foobar

  	Та foobar

  	Тогда foobar

  	Тоді foobar

  	То foobar

  	Унда foobar

  	Һәм foobar

  	Якщо foobar

  	אבל foobar

  	אזי foobar

  	אז foobar

  	בהינתן foobar

  	וגם foobar

  	כאשר foobar

  	آنگاه foobar

  	اذاً foobar

  	اگر foobar

  	اما foobar

  	اور foobar

  	با فرض foobar

  	بالفرض foobar

  	بفرض foobar

  	پھر foobar

  	تب foobar

  	ثم foobar

  	جب foobar

  	عندما foobar

  	فرض کیا foobar

  	لكن foobar

  	لیکن foobar

  	متى foobar

  	هنگامی foobar

  	و foobar

  	अगर foobar

  	और foobar

  	कदा foobar

  	किन्तु foobar

  	चूंकि foobar

  	जब foobar

  	तथा foobar

  	तदा foobar

  	तब foobar

  	परन्तु foobar

  	पर foobar

  	यदि foobar

  	ਅਤੇ foobar

  	ਜਦੋਂ foobar

  	ਜਿਵੇਂ ਕਿ foobar

  	ਜੇਕਰ foobar

  	ਤਦ foobar

  	ਪਰ foobar

  	అప్పుడు foobar

  	ఈ పరిస్థితిలో foobar

  	కాని foobar

  	చెప్పబడినది foobar

  	మరియు foobar

  	ಆದರೆ foobar

  	ನಂತರ foobar

  	ನೀಡಿದ foobar

  	ಮತ್ತು foobar

  	ಸ್ಥಿತಿಯನ್ನು foobar

  	กำหนดให้ foobar

  	ดังนั้น foobar

  	แต่ foobar

  	เมื่อ foobar

  	และ foobar

  	그러면< foobar

  	그리고< foobar

  < foobar

  	만약< foobar

  	만일< foobar

  	먼저< foobar

  	조건< foobar

  	하지만< foobar

  	かつ< foobar

  	しかし< foobar

  	ただし< foobar

  	ならば< foobar

  	もし< foobar

  	並且< foobar

  	但し< foobar

  	但是< foobar

  	假如< foobar

  	假定< foobar

  	假設< foobar

  	假设< foobar

  	前提< foobar

  	同时< foobar

  	同時< foobar

  	并且< foobar

  < foobar

  < foobar

  	而且< foobar

  	那么< foobar

  	那麼< foobar

  

  ----------------------------------------------------

  

  [

  	["scenario", [["keyword", "Scenario:"], ["important", " foo"]]],

  	["atrule", "'ach"],

  	" foobar\r\n\t",

  	["atrule", "'a"],

  	" foobar\r\n\t",

  	["atrule", "'ej"],

  	" foobar\r\n\t",

  	["atrule", "7"],

  	" foobar\r\n\t",

  	["atrule", "a"],

  	" foobar\r\n\t",

  	["atrule", "A také"],

  	" foobar\r\n\t",

  	["atrule", "A taktiež"],

  	" foobar\r\n\t",

  	["atrule", "A tiež"],

  	" foobar\r\n\t",

  	["atrule", "A zároveň"],

  	" foobar\r\n\t",

  	["atrule", "Aber"],

  	" foobar\r\n\t",

  	["atrule", "Ac"],

  	" foobar\r\n\t",

  	["atrule", "Adott"],

  	" foobar\r\n\t",

  	["atrule", "Akkor"],

  	" foobar\r\n\t",

  	["atrule", "Ak"],

  	" foobar\r\n\t",

  	["atrule", "Aleshores"],

  	" foobar\r\n\t",

  	["atrule", "Ale"],

  	" foobar\r\n\t",

  	["atrule", "Ali"],

  	" foobar\r\n\t",

  	["atrule", "Allora"],

  	" foobar\r\n\t",

  	["atrule", "Alors"],

  	" foobar\r\n\t",

  	["atrule", "Als"],

  	" foobar\r\n\t",

  	["atrule", "Ama"],

  	" foobar\r\n\t",

  	["atrule", "Amennyiben"],

  	" foobar\r\n\t",

  	["atrule", "Amikor"],

  	" foobar\r\n\t",

  	["atrule", "Ampak"],

  	" foobar\r\n\t",

  	["atrule", "an"],

  	" foobar\r\n\t",

  	["atrule", "AN"],

  	" foobar\r\n\t",

  	["atrule", "Ananging"],

  	" foobar\r\n\t",

  	["atrule", "And y'all"],

  	" foobar\r\n\t",

  	["atrule", "And"],

  	" foobar\r\n\t",

  	["atrule", "Angenommen"],

  	" foobar\r\n\t",

  	["atrule", "Anrhegedig a"],

  	" foobar\r\n\t",

  	["atrule", "An"],

  	" foobar\r\n\t",

  	["atrule", "Apabila"],

  	" foobar\r\n\t",

  	["atrule", "Atès"],

  	" foobar\r\n\t",

  	["atrule", "Atesa"],

  	" foobar\r\n\t",

  	["atrule", "Atunci"],

  	" foobar\r\n\t",

  	["atrule", "Avast!"],

  	" foobar\r\n\t",

  	["atrule", "Aye"],

  	" foobar\r\n\t",

  	["atrule", "A"],

  	" foobar\r\n\t",

  	["atrule", "awer"],

  	" foobar\r\n\t",

  	["atrule", "Bagi"],

  	" foobar\r\n\t",

  	["atrule", "Banjur"],

  	" foobar\r\n\t",

  	["atrule", "Bet"],

  	" foobar\r\n\t",

  	["atrule", "Biết"],

  	" foobar\r\n\t",

  	["atrule", "Blimey!"],

  	" foobar\r\n\t",

  	["atrule", "Buh"],

  	" foobar\r\n\t",

  	["atrule", "But at the end of the day I reckon"],

  	" foobar\r\n\t",

  	["atrule", "But y'all"],

  	" foobar\r\n\t",

  	["atrule", "But"],

  	" foobar\r\n\t",

  	["atrule", "BUT"],

  	" foobar\r\n\t",

  	["atrule", "Cal"],

  	" foobar\r\n\t",

  	["atrule", "Când"],

  	" foobar\r\n\t",

  	["atrule", "Cando"],

  	" foobar\r\n\t",

  	["atrule", "Cand"],

  	" foobar\r\n\t",

  	["atrule", "Ce"],

  	" foobar\r\n\t",

  	["atrule", "Cuando"],

  	" foobar\r\n\t",

  	["atrule", "Če"],

  	" foobar\r\n\t",

  	["atrule", "Ða ðe"],

  	" foobar\r\n\t",

  	["atrule", "Ða"],

  	" foobar\r\n\t",

  	["atrule", "Dadas"],

  	" foobar\r\n\t",

  	["atrule", "Dada"],

  	" foobar\r\n\t",

  	["atrule", "Dados"],

  	" foobar\r\n\t",

  	["atrule", "Dado"],

  	" foobar\r\n\t",

  	["atrule", "DaH ghu' bejlu'"],

  	" foobar\r\n\t",

  	["atrule", "dann"],

  	" foobar\r\n\t",

  	["atrule", "Dann"],

  	" foobar\r\n\t",

  	["atrule", "Dano"],

  	" foobar\r\n\t",

  	["atrule", "Dan"],

  	" foobar\r\n\t",

  	["atrule", "Dar"],

  	" foobar\r\n\t",

  	["atrule", "Dat fiind"],

  	" foobar\r\n\t",

  	["atrule", "Data"],

  	" foobar\r\n\t",

  	["atrule", "Date fiind"],

  	" foobar\r\n\t",

  	["atrule", "Date"],

  	" foobar\r\n\t",

  	["atrule", "Dati fiind"],

  	" foobar\r\n\t",

  	["atrule", "Dati"],

  	" foobar\r\n\t",

  	["atrule", "Daţi fiind"],

  	" foobar\r\n\t",

  	["atrule", "Dați fiind"],

  	" foobar\r\n\t",

  	["atrule", "Dato"],

  	" foobar\r\n\t",

  	["atrule", "DEN"],

  	" foobar\r\n\t",

  	["atrule", "Den youse gotta"],

  	" foobar\r\n\t",

  	["atrule", "Dengan"],

  	" foobar\r\n\t",

  	["atrule", "De"],

  	" foobar\r\n\t",

  	["atrule", "Diberi"],

  	" foobar\r\n\t",

  	["atrule", "Diyelim ki"],

  	" foobar\r\n\t",

  	["atrule", "Donada"],

  	" foobar\r\n\t",

  	["atrule", "Donat"],

  	" foobar\r\n\t",

  	["atrule", "Donitaĵo"],

  	" foobar\r\n\t",

  	["atrule", "Do"],

  	" foobar\r\n\t",

  	["atrule", "Dun"],

  	" foobar\r\n\t",

  	["atrule", "Duota"],

  	" foobar\r\n\t",

  	["atrule", "Ðurh"],

  	" foobar\r\n\t",

  	["atrule", "Eeldades"],

  	" foobar\r\n\t",

  	["atrule", "Ef"],

  	" foobar\r\n\t",

  	["atrule", "Eğer ki"],

  	" foobar\r\n\t",

  	["atrule", "Entao"],

  	" foobar\r\n\t",

  	["atrule", "Então"],

  	" foobar\r\n\t",

  	["atrule", "Entón"],

  	" foobar\r\n\t",

  	["atrule", "Entonces"],

  	" foobar\r\n\t",

  	["atrule", "En"],

  	" foobar\r\n\t",

  	["atrule", "Epi"],

  	" foobar\r\n\t",

  	["atrule", "E"],

  	" foobar\r\n\t",

  	["atrule", "És"],

  	" foobar\r\n\t",

  	["atrule", "Etant donnée"],

  	" foobar\r\n\t",

  	["atrule", "Etant donné"],

  	" foobar\r\n\t",

  	["atrule", "Et"],

  	" foobar\r\n\t",

  	["atrule", "Étant données"],

  	" foobar\r\n\t",

  	["atrule", "Étant donnée"],

  	" foobar\r\n\t",

  	["atrule", "Étant donné"],

  	" foobar\r\n\t",

  	["atrule", "Etant données"],

  	" foobar\r\n\t",

  	["atrule", "Etant donnés"],

  	" foobar\r\n\t",

  	["atrule", "Étant donnés"],

  	" foobar\r\n\t",

  	["atrule", "Fakat"],

  	" foobar\r\n\t",

  	["atrule", "Gangway!"],

  	" foobar\r\n\t",

  	["atrule", "Gdy"],

  	" foobar\r\n\t",

  	["atrule", "Gegeben seien"],

  	" foobar\r\n\t",

  	["atrule", "Gegeben sei"],

  	" foobar\r\n\t",

  	["atrule", "Gegeven"],

  	" foobar\r\n\t",

  	["atrule", "Gegewe"],

  	" foobar\r\n\t",

  	["atrule", "ghu' noblu'"],

  	" foobar\r\n\t",

  	["atrule", "Gitt"],

  	" foobar\r\n\t",

  	["atrule", "Given y'all"],

  	" foobar\r\n\t",

  	["atrule", "Given"],

  	" foobar\r\n\t",

  	["atrule", "Givet"],

  	" foobar\r\n\t",

  	["atrule", "Givun"],

  	" foobar\r\n\t",

  	["atrule", "Ha"],

  	" foobar\r\n\t",

  	["atrule", "Cho"],

  	" foobar\r\n\t",

  	["atrule", "I CAN HAZ"],

  	" foobar\r\n\t",

  	["atrule", "In"],

  	" foobar\r\n\t",

  	["atrule", "Ir"],

  	" foobar\r\n\t",

  	["atrule", "It's just unbelievable"],

  	" foobar\r\n\t",

  	["atrule", "I"],

  	" foobar\r\n\t",

  	["atrule", "Ja"],

  	" foobar\r\n\t",

  	["atrule", "Jeśli"],

  	" foobar\r\n\t",

  	["atrule", "Jeżeli"],

  	" foobar\r\n\t",

  	["atrule", "Kadar"],

  	" foobar\r\n\t",

  	["atrule", "Kada"],

  	" foobar\r\n\t",

  	["atrule", "Kad"],

  	" foobar\r\n\t",

  	["atrule", "Kai"],

  	" foobar\r\n\t",

  	["atrule", "Kaj"],

  	" foobar\r\n\t",

  	["atrule", "Když"],

  	" foobar\r\n\t",

  	["atrule", "Keď"],

  	" foobar\r\n\t",

  	["atrule", "Kemudian"],

  	" foobar\r\n\t",

  	["atrule", "Ketika"],

  	" foobar\r\n\t",

  	["atrule", "Khi"],

  	" foobar\r\n\t",

  	["atrule", "Kiedy"],

  	" foobar\r\n\t",

  	["atrule", "Ko"],

  	" foobar\r\n\t",

  	["atrule", "Kuid"],

  	" foobar\r\n\t",

  	["atrule", "Kui"],

  	" foobar\r\n\t",

  	["atrule", "Kun"],

  	" foobar\r\n\t",

  	["atrule", "Lan"],

  	" foobar\r\n\t",

  	["atrule", "latlh"],

  	" foobar\r\n\t",

  	["atrule", "Le sa a"],

  	" foobar\r\n\t",

  	["atrule", "Let go and haul"],

  	" foobar\r\n\t",

  	["atrule", "Le"],

  	" foobar\r\n\t",

  	["atrule", "Lè sa a"],

  	" foobar\r\n\t",

  	["atrule", "Lè"],

  	" foobar\r\n\t",

  	["atrule", "Logo"],

  	" foobar\r\n\t",

  	["atrule", "Lorsqu'<"],

  	" foobar\r\n\t",

  	["atrule", "Lorsque"],

  	" foobar\r\n\t",

  	["atrule", "mä"],

  	" foobar\r\n\t",

  	["atrule", "Maar"],

  	" foobar\r\n\t",

  	["atrule", "Mais"],

  	" foobar\r\n\t",

  	["atrule", "Mając"],

  	" foobar\r\n\t",

  	["atrule", "Majd"],

  	" foobar\r\n\t",

  	["atrule", "Maka"],

  	" foobar\r\n\t",

  	["atrule", "Manawa"],

  	" foobar\r\n\t",

  	["atrule", "Mas"],

  	" foobar\r\n\t",

  	["atrule", "Ma"],

  	" foobar\r\n\t",

  	["atrule", "Menawa"],

  	" foobar\r\n\t",

  	["atrule", "Men"],

  	" foobar\r\n\t",

  	["atrule", "Mutta"],

  	" foobar\r\n\t",

  	["atrule", "Nalikaning"],

  	" foobar\r\n\t",

  	["atrule", "Nalika"],

  	" foobar\r\n\t",

  	["atrule", "Nanging"],

  	" foobar\r\n\t",

  	["atrule", "Når"],

  	" foobar\r\n\t",

  	["atrule", "När"],

  	" foobar\r\n\t",

  	["atrule", "Nato"],

  	" foobar\r\n\t",

  	["atrule", "Nhưng"],

  	" foobar\r\n\t",

  	["atrule", "Niin"],

  	" foobar\r\n\t",

  	["atrule", "Njuk"],

  	" foobar\r\n\t",

  	["atrule", "O zaman"],

  	" foobar\r\n\t",

  	["atrule", "Og"],

  	" foobar\r\n\t",

  	["atrule", "Och"],

  	" foobar\r\n\t",

  	["atrule", "Oletetaan"],

  	" foobar\r\n\t",

  	["atrule", "Onda"],

  	" foobar\r\n\t",

  	["atrule", "Ond"],

  	" foobar\r\n\t",

  	["atrule", "Oraz"],

  	" foobar\r\n\t",

  	["atrule", "Pak"],

  	" foobar\r\n\t",

  	["atrule", "Pero"],

  	" foobar\r\n\t",

  	["atrule", "Però"],

  	" foobar\r\n\t",

  	["atrule", "Podano"],

  	" foobar\r\n\t",

  	["atrule", "Pokiaľ"],

  	" foobar\r\n\t",

  	["atrule", "Pokud"],

  	" foobar\r\n\t",

  	["atrule", "Potem"],

  	" foobar\r\n\t",

  	["atrule", "Potom"],

  	" foobar\r\n\t",

  	["atrule", "Privzeto"],

  	" foobar\r\n\t",

  	["atrule", "Pryd"],

  	" foobar\r\n\t",

  	["atrule", "qaSDI'"],

  	" foobar\r\n\t",

  	["atrule", "Quando"],

  	" foobar\r\n\t",

  	["atrule", "Quand"],

  	" foobar\r\n\t",

  	["atrule", "Quan"],

  	" foobar\r\n\t",

  	["atrule", "Så"],

  	" foobar\r\n\t",

  	["atrule", "Sed"],

  	" foobar\r\n\t",

  	["atrule", "Se"],

  	" foobar\r\n\t",

  	["atrule", "Siis"],

  	" foobar\r\n\t",

  	["atrule", "Sipoze ke"],

  	" foobar\r\n\t",

  	["atrule", "Sipoze Ke"],

  	" foobar\r\n\t",

  	["atrule", "Sipoze"],

  	" foobar\r\n\t",

  	["atrule", "Si"],

  	" foobar\r\n\t",

  	["atrule", "Şi"],

  	" foobar\r\n\t",

  	["atrule", "Și"],

  	" foobar\r\n\t",

  	["atrule", "Soit"],

  	" foobar\r\n\t",

  	["atrule", "Stel"],

  	" foobar\r\n\t",

  	["atrule", "Tada"],

  	" foobar\r\n\t",

  	["atrule", "Tad"],

  	" foobar\r\n\t",

  	["atrule", "Takrat"],

  	" foobar\r\n\t",

  	["atrule", "Tak"],

  	" foobar\r\n\t",

  	["atrule", "Tapi"],

  	" foobar\r\n\t",

  	["atrule", "Ter"],

  	" foobar\r\n\t",

  	["atrule", "Tetapi"],

  	" foobar\r\n\t",

  	["atrule", "Tha the"],

  	" foobar\r\n\t",

  	["atrule", "Tha"],

  	" foobar\r\n\t",

  	["atrule", "Then y'all"],

  	" foobar\r\n\t",

  	["atrule", "Then"],

  	" foobar\r\n\t",

  	["atrule", "Thì"],

  	" foobar\r\n\t",

  	["atrule", "Thurh"],

  	" foobar\r\n\t",

  	["atrule", "Toda"],

  	" foobar\r\n\t",

  	["atrule", "Too right"],

  	" foobar\r\n\t",

  	["atrule", "ugeholl"],

  	" foobar\r\n\t",

  	["atrule", "Und"],

  	" foobar\r\n\t",

  	["atrule", "Un"],

  	" foobar\r\n\t",

  	["atrule", "Và"],

  	" foobar\r\n\t",

  	["atrule", "vaj"],

  	" foobar\r\n\t",

  	["atrule", "Vendar"],

  	" foobar\r\n\t",

  	["atrule", "Ve"],

  	" foobar\r\n\t",

  	["atrule", "wann"],

  	" foobar\r\n\t",

  	["atrule", "Wanneer"],

  	" foobar\r\n\t",

  	["atrule", "WEN"],

  	" foobar\r\n\t",

  	["atrule", "Wenn"],

  	" foobar\r\n\t",

  	["atrule", "When y'all"],

  	" foobar\r\n\t",

  	["atrule", "When"],

  	" foobar\r\n\t",

  	["atrule", "Wtedy"],

  	" foobar\r\n\t",

  	["atrule", "Wun"],

  	" foobar\r\n\t",

  	["atrule", "Y'know"],

  	" foobar\r\n\t",

  	["atrule", "Yeah nah"],

  	" foobar\r\n\t",

  	["atrule", "Yna"],

  	" foobar\r\n\t",

  	["atrule", "Youse know like when"],

  	" foobar\r\n\t",

  	["atrule", "Youse know when youse got"],

  	" foobar\r\n\t",

  	["atrule", "Y"],

  	" foobar\r\n\t",

  	["atrule", "Za predpokladu"],

  	" foobar\r\n\t",

  	["atrule", "Za předpokladu"],

  	" foobar\r\n\t",

  	["atrule", "Zadani"],

  	" foobar\r\n\t",

  	["atrule", "Zadano"],

  	" foobar\r\n\t",

  	["atrule", "Zadan"],

  	" foobar\r\n\t",

  	["atrule", "Zadate"],

  	" foobar\r\n\t",

  	["atrule", "Zadato"],

  	" foobar\r\n\t",

  	["atrule", "Zakładając"],

  	" foobar\r\n\t",

  	["atrule", "Zaradi"],

  	" foobar\r\n\t",

  	["atrule", "Zatati"],

  	" foobar\r\n\t",

  	["atrule", "Þa"],

  	" foobar\r\n\t",

  	["atrule", "Þá"],

  	" foobar\r\n\t",

  	["atrule", "Þa þe"],

  	" foobar\r\n\t",

  	["atrule", "Þegar"],

  	" foobar\r\n\t",

  	["atrule", "Þurh"],

  	" foobar\r\n\t",

  	["atrule", "Αλλά"],

  	" foobar\r\n\t",

  	["atrule", "Δεδομένου"],

  	" foobar\r\n\t",

  	["atrule", "Και"],

  	" foobar\r\n\t",

  	["atrule", "Όταν"],

  	" foobar\r\n\t",

  	["atrule", "Τότε"],

  	" foobar\r\n\t",

  	["atrule", "А також"],

  	" foobar\r\n\t",

  	["atrule", "Агар"],

  	" foobar\r\n\t",

  	["atrule", "Але"],

  	" foobar\r\n\t",

  	["atrule", "Али"],

  	" foobar\r\n\t",

  	["atrule", "Аммо"],

  	" foobar\r\n\t",

  	["atrule", "А"],

  	" foobar\r\n\t",

  	["atrule", "Әгәр"],

  	" foobar\r\n\t",

  	["atrule", "Әйтик"],

  	" foobar\r\n\t",

  	["atrule", "Әмма"],

  	" foobar\r\n\t",

  	["atrule", "Бирок"],

  	" foobar\r\n\t",

  	["atrule", "Ва"],

  	" foobar\r\n\t",

  	["atrule", "Вә"],

  	" foobar\r\n\t",

  	["atrule", "Дадено"],

  	" foobar\r\n\t",

  	["atrule", "Дано"],

  	" foobar\r\n\t",

  	["atrule", "Допустим"],

  	" foobar\r\n\t",

  	["atrule", "Если"],

  	" foobar\r\n\t",

  	["atrule", "Задате"],

  	" foobar\r\n\t",

  	["atrule", "Задати"],

  	" foobar\r\n\t",

  	["atrule", "Задато"],

  	" foobar\r\n\t",

  	["atrule", "И"],

  	" foobar\r\n\t",

  	["atrule", "І"],

  	" foobar\r\n\t",

  	["atrule", "К тому же"],

  	" foobar\r\n\t",

  	["atrule", "Када"],

  	" foobar\r\n\t",

  	["atrule", "Кад"],

  	" foobar\r\n\t",

  	["atrule", "Когато"],

  	" foobar\r\n\t",

  	["atrule", "Когда"],

  	" foobar\r\n\t",

  	["atrule", "Коли"],

  	" foobar\r\n\t",

  	["atrule", "Ләкин"],

  	" foobar\r\n\t",

  	["atrule", "Лекин"],

  	" foobar\r\n\t",

  	["atrule", "Нәтиҗәдә"],

  	" foobar\r\n\t",

  	["atrule", "Нехай"],

  	" foobar\r\n\t",

  	["atrule", "Но"],

  	" foobar\r\n\t",

  	["atrule", "Онда"],

  	" foobar\r\n\t",

  	["atrule", "Припустимо, що"],

  	" foobar\r\n\t",

  	["atrule", "Припустимо"],

  	" foobar\r\n\t",

  	["atrule", "Пусть"],

  	" foobar\r\n\t",

  	["atrule", "Также"],

  	" foobar\r\n\t",

  	["atrule", "Та"],

  	" foobar\r\n\t",

  	["atrule", "Тогда"],

  	" foobar\r\n\t",

  	["atrule", "Тоді"],

  	" foobar\r\n\t",

  	["atrule", "То"],

  	" foobar\r\n\t",

  	["atrule", "Унда"],

  	" foobar\r\n\t",

  	["atrule", "Һәм"],

  	" foobar\r\n\t",

  	["atrule", "Якщо"],

  	" foobar\r\n\t",

  	["atrule", "אבל"],

  	" foobar\r\n\t",

  	["atrule", "אזי"],

  	" foobar\r\n\t",

  	["atrule", "אז"],

  	" foobar\r\n\t",

  	["atrule", "בהינתן"],

  	" foobar\r\n\t",

  	["atrule", "וגם"],

  	" foobar\r\n\t",

  	["atrule", "כאשר"],

  	" foobar\r\n\t",

  	["atrule", "آنگاه"],

  	" foobar\r\n\t",

  	["atrule", "اذاً"],

  	" foobar\r\n\t",

  	["atrule", "اگر"],

  	" foobar\r\n\t",

  	["atrule", "اما"],

  	" foobar\r\n\t",

  	["atrule", "اور"],

  	" foobar\r\n\t",

  	["atrule", "با فرض"],

  	" foobar\r\n\t",

  	["atrule", "بالفرض"],

  	" foobar\r\n\t",

  	["atrule", "بفرض"],

  	" foobar\r\n\t",

  	["atrule", "پھر"],

  	" foobar\r\n\t",

  	["atrule", "تب"],

  	" foobar\r\n\t",

  	["atrule", "ثم"],

  	" foobar\r\n\t",

  	["atrule", "جب"],

  	" foobar\r\n\t",

  	["atrule", "عندما"],

  	" foobar\r\n\t",

  	["atrule", "فرض کیا"],

  	" foobar\r\n\t",

  	["atrule", "لكن"],

  	" foobar\r\n\t",

  	["atrule", "لیکن"],

  	" foobar\r\n\t",

  	["atrule", "متى"],

  	" foobar\r\n\t",

  	["atrule", "هنگامی"],

  	" foobar\r\n\t",

  	["atrule", "و"],

  	" foobar\r\n\t",

  	["atrule", "अगर"],

  	" foobar\r\n\t",

  	["atrule", "और"],

  	" foobar\r\n\t",

  	["atrule", "कदा"],

  	" foobar\r\n\t",

  	["atrule", "किन्तु"],

  	" foobar\r\n\t",

  	["atrule", "चूंकि"],

  	" foobar\r\n\t",

  	["atrule", "जब"],

  	" foobar\r\n\t",

  	["atrule", "तथा"],

  	" foobar\r\n\t",

  	["atrule", "तदा"],

  	" foobar\r\n\t",

  	["atrule", "तब"],

  	" foobar\r\n\t",

  	["atrule", "परन्तु"],

  	" foobar\r\n\t",

  	["atrule", "पर"],

  	" foobar\r\n\t",

  	["atrule", "यदि"],

  	" foobar\r\n\t",

  	["atrule", "ਅਤੇ"],

  	" foobar\r\n\t",

  	["atrule", "ਜਦੋਂ"],

  	" foobar\r\n\t",

  	["atrule", "ਜਿਵੇਂ ਕਿ"],

  	" foobar\r\n\t",

  	["atrule", "ਜੇਕਰ"],

  	" foobar\r\n\t",

  	["atrule", "ਤਦ"],

  	" foobar\r\n\t",

  	["atrule", "ਪਰ"],

  	" foobar\r\n\t",

  	["atrule", "అప్పుడు"],

  	" foobar\r\n\t",

  	["atrule", "ఈ పరిస్థితిలో"],

  	" foobar\r\n\t",

  	["atrule", "కాని"],

  	" foobar\r\n\t",

  	["atrule", "చెప్పబడినది"],

  	" foobar\r\n\t",

  	["atrule", "మరియు"],

  	" foobar\r\n\t",

  	["atrule", "ಆದರೆ"],

  	" foobar\r\n\t",

  	["atrule", "ನಂತರ"],

  	" foobar\r\n\t",

  	["atrule", "ನೀಡಿದ"],

  	" foobar\r\n\t",

  	["atrule", "ಮತ್ತು"],

  	" foobar\r\n\t",

  	["atrule", "ಸ್ಥಿತಿಯನ್ನು"],

  	" foobar\r\n\t",

  	["atrule", "กำหนดให้"],

  	" foobar\r\n\t",

  	["atrule", "ดังนั้น"],

  	" foobar\r\n\t",

  	["atrule", "แต่"],

  	" foobar\r\n\t",

  	["atrule", "เมื่อ"],

  	" foobar\r\n\t",

  	["atrule", "และ"],

  	" foobar\r\n\t",

  	["atrule", "그러면<"],

  	" foobar\r\n\t",

  	["atrule", "그리고<"],

  	" foobar\r\n\t",

  	["atrule", "단<"],

  	" foobar\r\n\t",

  	["atrule", "만약<"],

  	" foobar\r\n\t",

  	["atrule", "만일<"],

  	" foobar\r\n\t",

  	["atrule", "먼저<"],

  	" foobar\r\n\t",

  	["atrule", "조건<"],

  	" foobar\r\n\t",

  	["atrule", "하지만<"],

  	" foobar\r\n\t",

  	["atrule", "かつ<"],

  	" foobar\r\n\t",

  	["atrule", "しかし<"],

  	" foobar\r\n\t",

  	["atrule", "ただし<"],

  	" foobar\r\n\t",

  	["atrule", "ならば<"],

  	" foobar\r\n\t",

  	["atrule", "もし<"],

  	" foobar\r\n\t",

  	["atrule", "並且<"],

  	" foobar\r\n\t",

  	["atrule", "但し<"],

  	" foobar\r\n\t",

  	["atrule", "但是<"],

  	" foobar\r\n\t",

  	["atrule", "假如<"],

  	" foobar\r\n\t",

  	["atrule", "假定<"],

  	" foobar\r\n\t",

  	["atrule", "假設<"],

  	" foobar\r\n\t",

  	["atrule", "假设<"],

  	" foobar\r\n\t",

  	["atrule", "前提<"],

  	" foobar\r\n\t",

  	["atrule", "同时<"],

  	" foobar\r\n\t",

  	["atrule", "同時<"],

  	" foobar\r\n\t",

  	["atrule", "并且<"],

  	" foobar\r\n\t",

  	["atrule", "当<"],

  	" foobar\r\n\t",

  	["atrule", "當<"],

  	" foobar\r\n\t",

  	["atrule", "而且<"],

  	" foobar\r\n\t",

  	["atrule", "那么<"],

  	" foobar\r\n\t",

  	["atrule", "那麼<"],

  	" foobar"

  ]

  

  ----------------------------------------------------

  

  Checks for at-rules in all languages.