forked from LR-POR/PorGram
-
Notifications
You must be signed in to change notification settings - Fork 0
/
choices
2140 lines (2113 loc) · 72.4 KB
/
choices
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
version=34
section=general
language=Portuguese
iso-code=por
punctuation-chars=keep-list
punctuation-chars-list=-
archive=yes
email=leonel.de.alencar@ufc.br
affiliation=Federal University of Ceará
motivation=I hope using the system will reduce the effort of implementing a computational grammar for Brazilian Portuguese
comment=see https://github.com/LR-POR/PorGram
vcs=none
section=word-order
word-order=svo
has-dets=yes
noun-det-order=det-noun
has-aux=yes
aux-comp-order=before
aux-comp=vp
multiple-aux=yes
subord-word-order=same
section=number
number1_name=singular
number2_name=plural
section=person
person=1-2-3
first-person=none
section=gender
gender1_name=masculine
gender2_name=feminine
section=case
case-marking=nom-acc
nom-acc-nom-case-name=nom
nom-acc-acc-case-name=acc
section=adnom-poss
section=direct-inverse
section=tense-aspect-mood
tense-definition=choose
past=on
past-subtype1_name=perfect
past-subtype2_name=imperfect
past-subtype3_name=pluperfect
present=on
future=on
future-subtype1_name=present-future
future-subtype2_name=preterite-future
aspect1_name=perfective
aspect1_supertype1_name=aspect
aspect2_name=imperfective
aspect2_supertype1_name=aspect
aspect3_name=progressive
aspect3_supertype1_name=imperfective
subjind=on
section=evidentials
section=other-features
form-fin-nf=on
form-subtype1_name=present_participle
form-subtype1_supertype=nonfinite
form-subtype2_name=past_participle
form-subtype2_supertype=nonfinite
form-subtype3_name=infinitive
form-subtype3_supertype=nonfinite
form-subtype4_name=infl_infinitive
form-subtype4_supertype=nonfinite
form-subtype5_name=que
form-subtype5_supertype=form
form-subtype6_name=com_que
form-subtype6_supertype=form
form-subtype7_name=para_que
form-subtype7_supertype=form
form-subtype8_name=em_que
form-subtype8_supertype=form
feature1_name=dim
feature1_type=index
feature1_cat=noun
feature1_new=no
feature1_existing=bool
feature2_name=aug
feature2_type=index
feature2_cat=noun
feature2_new=no
feature2_existing=bool
feature3_name=abs
feature3_type=index
feature3_cat=noun
feature3_new=no
feature3_existing=bool
feature4_name=hum
feature4_type=index
feature4_cat=noun
feature4_new=no
feature4_existing=bool
section=sentential-negation
neg-exp=1
adv-neg=on
neg-mod=vp
neg-order=before
neg-adv-orth=não
section=coordination
section=matrix-yes-no
q-part=on
q-part-order=before
q-particle1_orth=será que
q-particle1_main=on
q-particle1_wh=imp
section=wh-q
front-matrix=single
matrix-front-opt=none-oblig
pied-pip=on
oblig-pied-pip-noun=on
pied-pip-adp=on
oblig-pied-pip-adp=on
section=info-str
section=arg-opt
subj-drop=subj-drop-all
subj-mark-drop=subj-mark-drop-not
subj-mark-no-drop=subj-mark-no-drop-not
subj-con=subj-con-always
section=nominalclause
ns1_name=PersonalInfinitive
ns1_level=high
ns1_nmzRel=no
section=clausal-comp
comps1_clause-pos-same=on
comps1_ques=prop
comps1_comp-pos-before=on
comps1_comp=oblig
comps1_stem1_orth=que
comps1_cformvalue=que
comps1_feat1_name=form
comps1_feat1_value=finite
comps3_clause-pos-same=on
comps3_ques=ques
comps3_comp-pos-before=on
comps3_comp=oblig
comps3_comp-q=on
comps3_stem1_orth=se
comps3_feat1_name=mood
comps3_feat1_value=indicative
comps3_feat2_name=form
comps3_feat2_value=finite
comps4_clause-pos-same=on
comps4_ques=prop
comps4_feat1_name=form
comps4_feat1_value=infl_infinitive
comps5_clause-pos-same=on
comps5_ques=prop
comps5_comp-pos-before=on
comps5_comp=oblig
comps5_stem1_orth=com que
comps5_cformvalue=com_que
comps5_feat1_name=form
comps5_feat1_value=finite
comps5_feat2_name=mood
comps5_feat2_value=subjunctive
comps6_clause-pos-same=on
comps6_ques=prop
comps6_comp-pos-before=on
comps6_comp=oblig
comps6_stem1_orth=para que
comps6_cformvalue=para_que
comps6_feat1_name=form
comps6_feat1_value=finite
comps6_feat2_name=mood
comps6_feat2_value=subjunctive
comps7_clause-pos-same=on
comps7_ques=prop
comps7_comp-pos-before=on
comps7_comp=oblig
comps7_stem1_orth=em que
comps7_cformvalue=em_que
comps7_feat1_name=form
comps7_feat1_value=finite
comps7_feat2_name=mood
comps7_feat2_value=subjunctive
section=clausalmods
cms1_position=either
cms1_modifier-attach=s
cms1_subordinator=free
cms1_subposition=before
cms1_subordinator-type=head
cms1_freemorph1_orth=quando
cms1_freemorph1_pred=_quando_subord_rel
cms1_feat1_name=form
cms1_feat1_value=finite
section=lexicon
noun2_name=pers-pron
noun2_pron=on
noun2_det=imp
noun3_name=nom-pers-pron-1s
noun3_supertypes=noun18, noun20, noun35
noun3_stem1_orth=eu
noun3_stem1_pred=_eu_n_rel
noun4_name=pers-pron-3pm
noun4_supertypes=noun17, noun21, noun24
noun4_stem1_orth=eles
noun4_stem1_pred=_ele_n_1_rel
noun5_name=common
noun5_det=opt
noun5_stem1_orth=artista
noun5_stem1_pred=_artista_n_rel
noun5_stem2_orth=dentista
noun5_stem2_pred=_dentista_n_rel
noun5_stem3_orth=estudante
noun5_stem3_pred=_estudante_n_rel
noun5_stem4_orth=cliente
noun5_stem4_pred=_cliente_n_rel
noun6_name=fem
noun6_supertypes=noun5
noun6_feat1_name=gender
noun6_feat1_value=feminine
noun6_det=opt
noun6_stem1_orth=ratazana
noun6_stem1_pred=_ratazana_n_rel
noun6_stem2_orth=porta
noun6_stem2_pred=_porta_n_rel
noun6_stem3_orth=bicicleta
noun6_stem3_pred=_bicicleta_n_rel
noun6_stem4_orth=cidade
noun6_stem4_pred=_cidade_n_rel
noun7_name=masc
noun7_supertypes=noun5
noun7_feat1_name=gender
noun7_feat1_value=masculine
noun7_det=opt
noun7_stem1_orth=gato
noun7_stem1_pred=_gato_n_rel
noun7_stem2_orth=cachorro
noun7_stem2_pred=_cachorro_n_rel
noun7_stem3_orth=tabaco
noun7_stem3_pred=_tabaco_n_rel
noun7_stem4_orth=jardim
noun7_stem4_pred=_jardim_n_rel
noun7_stem5_orth=dia
noun7_stem5_pred=_dia_n_rel
noun7_stem6_orth=minuto
noun7_stem6_pred=_minuto_n_rel
noun7_stem8_orth=junho
noun7_stem8_pred=_junho_n_rel
noun7_stem9_orth=cão
noun7_stem9_pred=_cão_n_rel
noun8_name=dim
noun8_supertypes=noun5
noun8_feat1_name=dim
noun8_feat1_value=+
noun8_det=opt
noun9_name=dim-masc
noun9_supertypes=noun8
noun9_det=opt
noun9_stem1_orth=cachorrinho
noun9_stem1_pred=_cachorro_n_rel
noun10_name=dim-fem
noun10_supertypes=noun6, noun8
noun10_det=opt
noun10_stem1_orth=lagartinha
noun10_stem1_pred=_lagarta_n_rel
noun11_name=aug
noun11_supertypes=noun5
noun11_feat1_name=aug
noun11_feat1_value=+
noun11_det=opt
noun12_name=aug-fem
noun12_supertypes=noun6, noun11
noun12_det=opt
noun12_stem1_orth=lagartona
noun12_stem1_pred=_lagarta_n_rel
noun13_name=aug-masc
noun13_supertypes=noun7, noun11
noun13_det=opt
noun13_stem1_orth=lagartão
noun13_stem1_pred=_lagarto_n_rel
noun14_name=inter-pron
noun14_inter=on
noun14_feat1_name=number
noun14_feat1_value=singular
noun14_feat2_name=person
noun14_feat2_value=3rd
noun14_det=imp
noun15_name=inter-pron-hum
noun15_supertypes=noun14
noun15_feat1_name=hum
noun15_feat1_value=+
noun15_stem1_orth=quem
noun15_stem1_pred=_quem_n_rel
noun16_name=inter-pron-non-hum
noun16_supertypes=noun14
noun16_stem1_orth=o que
noun16_stem1_pred=_o que_n_rel
noun16_stem2_orth=que
noun16_stem2_pred=_que_n_rel
noun17_name=pers-pron-3
noun17_supertypes=noun2
noun17_feat1_name=person
noun17_feat1_value=3rd
noun18_name=pers-pron-1
noun18_supertypes=noun2
noun18_feat1_name=person
noun18_feat1_value=1st
noun19_name=pers-pron-2
noun19_supertypes=noun2
noun19_feat1_name=person
noun19_feat1_value=2nd
noun20_name=pers-pron-sg
noun20_supertypes=noun2
noun21_name=pers-pron-pl
noun21_supertypes=noun2
noun22_name=nom-pers-pron-2s
noun22_supertypes=noun19, noun20, noun35
noun22_stem1_orth=tu
noun22_stem1_pred=_tu_n_rel
noun23_name=pers-pron-1p
noun23_supertypes=noun18, noun21
noun23_stem1_orth=nós
noun23_stem1_pred=_nós_n_rel
noun24_name=pers-pron-masc
noun24_supertypes=noun2
noun25_name=pers-pron-fem
noun26_name=pers-pron-3pf
noun26_supertypes=noun17, noun21, noun25
noun26_stem1_orth=elas
noun26_stem1_pred=_ele_n_2_rel
noun27_name=pers-pron-3sm
noun27_supertypes=noun17, noun20, noun24
noun27_stem1_orth=ele
noun27_stem1_pred=_ele_rel
noun28_name=pers-pron-3sf
noun28_supertypes=noun17, noun20, noun24
noun28_stem1_orth=ela
noun28_stem1_pred=_ele_n_rel
noun29_name=dim-aug
noun29_supertypes=noun8, noun11
noun29_det=opt
noun30_name=dim-aug-masc
noun30_supertypes=noun7, noun29
noun30_det=opt
noun30_stem1_orth=lagartãozinho
noun30_stem1_pred=_lagarto_n_rel
noun31_name=dim-aug-fem
noun31_supertypes=noun6, noun29
noun31_det=opt
noun31_stem1_orth=lagartonazinha
noun31_stem1_pred=_lagarto_n_rel
noun32_name=pers-pron-2pl
noun32_supertypes=noun19, noun21
noun32_stem1_orth=vós
noun32_stem1_pred=_vós_n_rel
noun33_name=proper-noun
noun33_feat1_name=number
noun33_feat1_value=singular
noun33_feat2_name=person
noun33_feat2_value=3rd
noun33_det=opt
noun33_stem1_orth=Abrams
noun33_stem1_pred=_Abrams_n_rel
noun33_stem2_orth=Browne
noun33_stem2_pred=_Browne_n_rel
noun33_stem3_orth=Chiang
noun33_stem3_pred=_Chiang_n_rel
noun33_stem4_orth=Devito
noun33_stem4_pred=_Devito_n_rel
noun33_stem5_orth=Kim
noun33_stem5_pred=_Kim_n_rel
noun33_stem6_orth=Lee
noun33_stem6_pred=_Lee_n_rel
noun33_stem7_orth=Sandy
noun33_stem7_pred=_Sandy_n_rel
noun33_stem8_orth=Sara
noun33_stem8_pred=_Sara_n_rel
noun35_name=nom-pers-pron
noun35_supertypes=noun2
noun35_feat1_name=case
noun35_feat1_value=nom
verb2_name=intrans
verb2_supertypes=verb23
verb2_valence=nom
verb11_name=vol
verb11_supertypes=verb34
verb11_stem1_orth=querer
verb11_stem1_pred=_querer_v_1_rel
verb11_stem2_orth=desejar
verb11_stem2_pred=_desejar_v_1_rel
verb11_stem3_orth=esperar
verb11_stem3_pred=_esperar_v_rel
verb11_stem5_orth=preferir
verb11_stem5_pred=_preferir_v_rel
verb11_stem6_orth=pretender
verb11_stem6_pred=_pretender_v_rel
verb11_stem7_orth=recear
verb11_stem7_pred=_recear_v_rel
verb11_stem8_orth=recusar
verb11_stem8_pred=_recusar_v_rel
verb11_stem9_orth=temer
verb11_stem9_pred=_temer_v_1_rel
verb20_name=quest
verb20_supertypes=verb26, verb36
verb20_stem1_orth=perguntar
verb20_stem1_pred=_perguntar_v_rel
verb20_stem2_orth=saber
verb20_stem2_pred=_saber_v_1_rel
verb20_stem3_orth=ignorar
verb20_stem3_pred=_ignorar_v_1_rel
verb21_name=refl-quest
verb21_supertypes=verb22, verb36
verb21_stem1_orth=perguntar
verb21_stem1_pred=se_perguntar_v_rel
verb22_name=inh-refl
verb22_supertypes=verb23
verb23_name=regular
verb24_name=trans
verb24_supertypes=verb26
verb24_valence=nom-acc
verb24_stem1_orth=matar
verb24_stem1_pred=_matar_v_rel
verb24_stem2_orth=amar
verb24_stem2_pred=_amar_v_rel
verb24_stem3_orth=admirar
verb24_stem3_pred=_admirar_v_rel
verb24_stem4_orth=imitar
verb24_stem4_pred=_imitar_v_rel
verb24_stem5_orth=adorar
verb24_stem5_pred=_adorar_v_rel
verb24_stem6_orth=vender
verb24_stem6_pred=_vender_v_rel
verb24_stem7_orth=perseguir
verb24_stem7_pred=_perseguir_v_2_rel
verb24_stem8_orth=temer
verb24_stem8_pred=_temer_v_2_rel
verb24_stem9_orth=socorrer
verb24_stem9_pred=_socorrer_v_rel
verb24_stem10_orth=doar
verb24_stem10_pred=_doar_v_rel
verb24_stem11_orth=aprovar
verb24_stem11_pred=_aprovar_v_1_rel
verb24_stem12_orth=contratar
verb24_stem12_pred=_contratar_v_rel
verb24_stem13_orth=entrevistar
verb24_stem13_pred=_entrevistar_v_rel
verb24_stem14_orth=administrar
verb24_stem14_pred=_administrar_v_rel
verb24_stem15_orth=gerenciar
verb24_stem15_pred=_gerenciar_v_rel
verb24_stem16_orth=avaliar
verb24_stem16_pred=_avaliar_v_rel
verb24_stem17_orth=dispensar
verb24_stem17_pred=_dispensar_v_rel
verb24_stem18_orth=receber
verb24_stem18_pred=_receber_v_rel
verb24_stem19_orth=convocar
verb24_stem19_pred=_convocar_v_rel
verb24_stem20_orth=ter
verb24_stem20_pred=_ter_v_1_rel
verb25_name=mental-act
verb25_supertypes=verb33
verb25_stem1_orth=acreditar
verb25_stem1_pred=_acreditar_v_1_rel
verb25_stem2_orth=aceitar
verb25_stem2_pred=_aceitar_v_rel
verb25_stem3_orth=achar
verb25_stem3_pred=_achar_v_rel
verb25_stem4_orth=admitir
verb25_stem4_pred=_admitir_v_1_rel
verb25_stem5_orth=calcular
verb25_stem5_pred=_calcular_v_rel
verb25_stem6_orth=compreender
verb25_stem6_pred=_compreender_v_rel
verb25_stem7_orth=considerar
verb25_stem7_pred=_considerar_v_rel
verb25_stem8_orth=certificar
verb25_stem8_pred=_certificar_v_rel
verb25_stem9_orth=crer
verb25_stem9_pred=_crer_v_rel
verb25_stem10_orth=descobrir
verb25_stem10_pred=_descobrir_v_rel
verb25_stem11_orth=duvidar
verb25_stem11_pred=_duvidar_v_rel
verb25_stem12_orth=entender
verb25_stem12_pred=_entender_v_rel
verb25_stem13_orth=fingir
verb25_stem13_pred=_fingir_v_rel
verb25_stem14_orth=ignorar
verb25_stem14_pred=_ignorar_v_2_rel
verb25_stem15_orth=imaginar
verb25_stem15_pred=_imaginar_v_rel
verb25_stem16_orth=pensar
verb25_stem16_pred=_pensar_v_rel
verb25_stem17_orth=prever
verb25_stem17_pred=_prever_v_rel
verb25_stem18_orth=reconhecer
verb25_stem18_pred=_reconhecer_v_rel
verb25_stem19_orth=supor
verb25_stem19_pred=_supor_v_rel
verb26_name=noninh-refl
verb26_supertypes=verb23
verb26_forbid1_others=verb-pc2_lrt5
verb27_name=declar
verb27_supertypes=verb35
verb27_stem1_orth=declarar
verb27_stem1_pred=_declarar_v_rel
verb27_stem2_orth=afirmar
verb27_stem2_pred=_afirmar_v_rel
verb27_stem3_orth=acrescentar
verb27_stem3_pred=_acrescentar_v_rel
verb27_stem4_orth=alegar
verb27_stem4_pred=_alegar_v_rel
verb27_stem5_orth=assegurar
verb27_stem5_pred=_assegurar_v_rel
verb27_stem6_orth=observar
verb27_stem6_pred=_observar_v_rel
verb27_stem7_orth=concluir
verb27_stem7_pred=_concluir_v_rel
verb27_stem8_orth=concordar
verb27_stem8_pred=_concordar_v_rel
verb27_stem9_orth=confessar
verb27_stem9_pred=_confessar_v_rel
verb27_stem10_orth=criticar
verb27_stem10_pred=_criticar_v_1_rel
verb27_stem11_orth=decidir
verb27_stem11_pred=_decidir_v_rel
verb27_stem12_orth=desculpar
verb27_stem12_pred=_desculpar_v_1_rel
verb27_stem13_orth=dizer
verb27_stem13_pred=_dizer_v_1_rel
verb27_stem14_orth=insinuar
verb27_stem14_pred=_insinuar_v_rel
verb27_stem15_orth=insistir
verb27_stem15_pred=_insistir_v_1_rel
verb27_stem16_orth=jurar
verb27_stem16_pred=_jurar_v_rel
verb27_stem17_orth=pregar
verb27_stem17_pred=_pregar_v_rel
verb27_stem18_orth=proclamar
verb27_stem18_pred=_proclamar_v_rel
verb27_stem19_orth=prometer
verb27_stem19_pred=_prometer_v_rel
verb27_stem20_orth=sugerir
verb27_stem20_pred=_sugerir_v_rel
verb28_name=refl-int
verb28_supertypes=verb2, verb22
verb28_stem1_orth=queixar
verb28_stem1_pred=_queixar-se_v_rel
verb29_name=inf-eval
verb29_supertypes=verb42
verb29_stem1_orth=lamentar
verb29_stem1_pred=_lamentar_v_1_rel
verb29_stem2_orth=detestar
verb29_stem2_pred=_detestar_v_1_rel
verb30_name=nonrefl-int
verb30_supertypes=verb2, verb26
verb30_stem1_orth=ladrar
verb30_stem1_pred=_ladrar_v_2_rel
verb30_stem2_orth=sorrir
verb30_stem2_pred=_sorrir_v_rel
verb30_stem3_orth=latir
verb30_stem3_pred=_latir_v_rel
verb30_stem4_orth=chegar
verb30_stem4_pred=_chegar_v_rel
verb30_stem5_orth=correr
verb30_stem5_pred=_correr_v_rel
verb30_stem6_orth=gemer
verb30_stem6_pred=_gemer_v_rel
verb30_stem7_orth=adoecer
verb30_stem7_pred=_adoecer_v_rel
verb30_stem8_orth=caminhar
verb30_stem8_pred=_caminhar_v_rel
verb30_stem9_orth=funcionar
verb30_stem9_pred=_funcionar_v_rel
verb30_stem10_orth=trabalhar
verb30_stem10_pred=_trabalhar_v_rel
verb31_name=fac-refl-int
verb31_supertypes=verb2
verb31_stem1_orth=abrir
verb31_stem1_pred=_abrir_v_rel
verb32_name=que-eval
verb32_supertypes=verb34
verb32_stem1_orth=detestar
verb32_stem1_pred=_detestar_v_2_rel
verb32_stem2_orth=lamentar
verb32_stem2_pred=_lamentar_v_2_rel
verb32_stem3_orth=criticar
verb32_stem3_pred=_criticar_v_2_rel
verb32_stem4_orth=deplorar
verb32_stem4_pred=_deplorar_v_rel
verb32_stem5_orth=desculpar
verb32_stem5_pred=_desculpar_v_2_rel
verb32_stem7_orth=gostar
verb32_stem7_pred=_gostar_v_rel
verb32_stem8_orth=reprovar
verb32_stem8_pred=_reprovar_v_2_rel
verb32_stem9_orth=suportar
verb32_stem9_pred=_suportar_v_rel
verb32_stem10_orth=tolerar
verb32_stem10_pred=_tolerar_v_rel
verb32_stem11_orth=odiar
verb32_stem11_pred=_odiar_v_rel
verb32_stem12_orth=aprovar
verb32_stem12_pred=_aprovar_v_2_rel
verb32_stem13_orth=desaprovar
verb32_stem13_pred=_desaprovar_v_2_rel
verb33_name=que-cl
verb33_supertypes=verb37
verb33_valence=nom,comps1
verb34_name=que-subj-cl
verb34_supertypes=verb33, verb45
verb34_stem1_orth=insistir
verb34_stem1_pred=_insistir_v_2_rel
verb34_stem2_orth=evitar
verb34_stem2_pred=_evitar_v_rel
verb34_stem3_orth=pedir
verb34_stem3_pred=_pedir_v_1_rel
verb35_name=ind-cl
verb35_supertypes=verb33
verb36_name=quest-cl
verb36_supertypes=verb23
verb36_valence=nom,comps3
verb37_name=fin-cl
verb37_supertypes=verb26
verb38_name=com-que-caus
verb38_supertypes=verb45
verb38_valence=nom,comps5
verb38_stem1_orth=fazer
verb38_stem1_pred=_fazer_v_1_rel
verb39_name=que-caus
verb39_supertypes=verb34
verb39_stem1_orth=fazer
verb39_stem1_pred=_fazer_v_2_rel
verb39_stem2_orth=mandar
verb39_stem2_pred=_mandar_v_1_rel
verb39_stem3_orth=deixar
verb39_stem3_pred=_deixar_v_1_rel
verb40_name=que-percep
verb40_supertypes=verb35
verb40_stem1_orth=ouvir
verb40_stem1_pred=_ouvir_v_1_rel
verb40_stem2_orth=sentir
verb40_stem2_pred=_sentir_v_1_rel
verb40_stem3_orth=ver
verb40_stem3_pred=_ver_v_1_rel
verb40_stem4_orth=perceber
verb40_stem4_pred=_perceber_v_rel
verb41_name=fact-mental-act
verb41_supertypes=verb35
verb41_stem1_orth=saber
verb41_stem1_pred=_saber_v_2_rel
verb42_name=inf-cl
verb42_supertypes=verb26
verb42_valence=nom,comps4
verb43_name=inf-caus
verb43_supertypes=verb42
verb43_stem1_orth=fazer
verb43_stem1_pred=_fazer_v_3_rel
verb43_stem2_orth=mandar
verb43_stem2_pred=_mandar_v_2_rel
verb43_stem3_orth=deixar
verb43_stem3_pred=_deixar_v_2_rel
verb44_name=inf-percep
verb44_supertypes=verb42
verb44_stem1_orth=ouvir
verb44_stem1_pred=_ouvir_v_2_rel
verb44_stem2_orth=ver
verb44_stem2_pred=_ver_v_2_rel
verb44_stem3_orth=sentir
verb44_stem3_pred=_sentir_v_2_rel
verb45_name=subj-cl
verb45_supertypes=verb37
verb46_name=para-que-cl
verb46_supertypes=verb45
verb46_valence=nom,comps6
verb46_stem1_orth=pedir
verb46_stem1_pred=_pedir_v_2_rel
verb47_name=em-que-cl
verb47_supertypes=verb45
verb47_valence=nom,comps7
verb47_stem1_orth=insistir
verb47_stem1_pred=_insistir_v_3_rel
verb48_name=dat-obj
verb48_supertypes=verb26, verb50
verb48_stem1_orth=obedecer
verb48_stem1_pred=_obedecer_v_rel
verb49_name=dir
verb49_supertypes=verb34
verb49_stem1_orth=dizer
verb49_stem1_pred=_dizer_v_2_rel
verb49_stem2_orth=admitir
verb49_stem2_pred=_admitir_v_2_rel
verb49_stem3_orth=consentir
verb49_stem3_pred=_consentir_v_rel
verb49_stem4_orth=exigir
verb49_stem4_pred=_exigir_v_rel
verb49_stem5_orth=ordenar
verb49_stem5_pred=_ordenar_v_rel
verb49_stem6_orth=permitir
verb49_stem6_pred=_permitir_v_rel
verb49_stem7_orth=autorizar
verb49_stem7_pred=_autorizar_v_rel
verb49_stem8_orth=aconselhar
verb49_stem8_pred=_aconselhar_v_rel
verb49_stem9_orth=obrigar
verb49_stem9_pred=_obrigar_v_rel
verb49_stem10_orth=determinar
verb49_stem10_pred=_determinar_v_rel
verb49_stem11_orth=proibir
verb49_stem11_pred=_proibir_v_rel
verb49_stem12_orth=impedir
verb49_stem12_pred=_impedir_v_rel
verb50_name=prep-obj
verb50_valence=trans
verb51_name=gen-obj
verb51_supertypes=verb50
verb52_name=refl-gen-obj
verb52_supertypes=verb22, verb51
verb52_stem1_orth=queixar
verb52_stem1_pred=_queixar_v_rel
verb53_name=nonrefl-gen-obj
verb53_supertypes=verb26, verb51
verb53_stem1_orth=depender
verb53_stem1_pred=_depender_v_rel
adj1_name=infl-form
adj1_mod=both
adj1_modpos=either
adj1_predcop=obl
adj1_stem1_orth=simples
adj1_stem1_pred=_simples_a_rel
adj10_name=non-infl-form
adj10_mod=both
adj10_modpos=either
adj10_predcop=obl
adj11_name=non-unif-dim
adj11_supertypes=adj15
adj11_feat1_name=dim
adj11_feat1_value=+
adj11_feat1_head=xarg
adj11_stem1_orth=amarelinho
adj11_stem1_pred=_amarelo_a_2_rel
adj12_name=aug
adj12_supertypes=adj15
adj12_feat1_name=aug
adj12_feat1_value=+
adj12_feat1_head=xarg
adj12_stem1_orth=amarelão
adj12_stem1_pred=_amarelo_a_3_rel
adj13_name=abs
adj13_supertypes=adj15
adj13_feat1_name=abs
adj13_feat1_value=+
adj13_feat1_head=xarg
adj13_stem1_orth=amarelíssimo
adj13_stem1_pred=_amarelo_a_4_rel
adj14_name=uniform
adj14_supertypes=adj10
adj14_stem1_orth=inteligente
adj14_stem1_pred=_inteligente_a_rel
adj14_stem2_orth=persa
adj14_stem2_pred=_persa_a_rel
adj14_stem3_orth=fiel
adj14_stem3_pred=_fiel_a_rel
adj14_stem4_orth=exemplar
adj14_stem4_pred=_exemplar_a_rel
adj14_stem5_orth=feroz
adj14_stem5_pred=_feroz_a_rel
adj14_stem6_orth=comum
adj14_stem6_pred=_comum_a_rel
adj14_stem7_orth=feliz
adj14_stem7_pred=_feliz_a_rel
adj14_stem8_orth=triste
adj14_stem8_pred=_triste_a_rel
adj14_forbid1_others=adj-pc1_lrt5
adj15_name=non-uniform
adj15_supertypes=adj10
adj15_stem1_orth=vermelho
adj15_stem1_pred=_vermelho_a_rel
adj15_stem2_orth=amarelo
adj15_stem2_pred=_amarelo_a_rel
adj15_stem3_orth=pequeno
adj15_stem3_pred=_pequeno_a_rel
adj15_stem4_orth=cru
adj15_stem4_pred=_cru_a_rel
adj15_stem5_orth=inglês
adj15_stem5_pred=_inglês_a_rel
adj15_stem6_orth=encantador
adj15_stem6_pred=_encantador_a_rel
adj15_stem7_orth=hebreu
adj15_stem7_pred=_hebreu_a_rel
adj15_stem9_orth=beirão
adj15_stem9_pred=_beirão_a_rel
adj15_stem10_orth=judeu
adj15_stem10_pred=_judeu_a_rel
adj15_stem11_orth=ilhéu
adj15_stem11_pred=_ilhéu_a_rel
adj15_stem12_orth=nu
adj15_stem12_pred=_nu_a_rel
adj15_stem13_orth=europeu
adj15_stem13_pred=_europeu_a_rel
adj15_stem14_orth=francês
adj15_stem14_pred=_francês_a_rel
adj15_forbid1_others=adj-pc1_lrt4
adj16_name=dim-aug
adj16_supertypes=adj11, adj12
adj16_stem1_orth=amarelãozinho
adj16_stem1_pred=_amarelo_a_6_rel
adj18_name=unif-dim
adj18_supertypes=adj14
adj18_feat1_name=dim
adj18_feat1_value=+
adj18_feat1_head=xarg
adj19_name=fem-dim
adj19_supertypes=adj14
adj19_feat1_name=gender
adj19_feat1_value=feminine
adj19_feat1_head=xarg
adj19_feat2_name=dim
adj19_feat2_value=+
adj19_feat2_head=xarg
adj20_name=masc-dim
adj20_supertypes=adj14
adj20_feat1_name=gender
adj20_feat1_value=masculine
adj20_feat1_head=xarg
adj20_feat2_name=dim
adj20_feat2_value=+
adj20_feat2_head=xarg
aux1_name=ter
aux1_sem=add-pred
aux1_subj=np-aux-case
aux1_subj_case=nom
aux1_compfeature1_name=form
aux1_compfeature1_value=past_participle
aux1_stem3_orth=ter
aux1_stem3_pred=_ter_v_rel
aux1_stem4_orth=haver
aux1_stem4_pred=_haver_v_rel
aux1_forbid1_others=verb-pc2_lrt5
aux2_name=estar
aux2_sem=add-pred
aux2_subj=np-aux-case
aux2_subj_case=nom
aux2_compfeature1_name=form
aux2_compfeature1_value=present_participle
aux2_stem1_orth=estar
aux2_stem1_pred=_estar_v_rel
aux2_forbid1_others=verb-pc2_lrt5
aux4_name=ir
aux4_sem=add-pred
aux4_subj=np-aux-case
aux4_subj_case=nom
aux4_compfeature1_name=form
aux4_compfeature1_value=infinitive
aux4_stem1_orth=ir
aux4_stem1_pred=_ir_v_rel
aux4_forbid1_others=verb-pc2_lrt5
aux5_name=bare-inf
aux5_sem=add-pred
aux5_subj=np-aux-case
aux5_subj_case=nom
aux5_compfeature1_name=form
aux5_compfeature1_value=infinitive
aux5_stem1_orth=poder
aux5_stem1_pred=_poder_v_rel
aux5_stem2_orth=dever
aux5_stem2_pred=_dever_v_rel
aux5_stem4_orth=parecer
aux5_stem4_pred=_parecer_v_rel
aux5_stem16_orth=precisar
aux5_stem16_pred=_precisar_v_rel
aux5_stem17_orth=costumar
aux5_stem17_pred=_costumar_v_rel
aux6_name=ger
aux6_sem=add-pred
aux6_subj=np-aux-case
aux6_subj_case=nom
aux6_compfeature1_name=form
aux6_compfeature1_value=present_participle
aux6_stem1_orth=continuar
aux6_stem1_pred=_continuar_v_rel
aux6_stem2_orth=andar
aux6_stem2_pred=_andar_v_rel
aux6_stem3_orth=ir
aux6_stem3_pred=_ir_v_2_rel
aux6_stem4_orth=vir
aux6_stem4_pred=_vir_v_rel
aux6_stem5_orth=viver
aux6_stem5_pred=_viver_v_rel
cop1_name=ser
cop1_comptype=ap
cop1_stem1_orth=ser
cop2_name=estar
cop2_comptype=ap
cop2_stem1_orth=estar
det1_name=def-art
det1_stem1_orth=o
det1_stem1_pred=_o_q_rel
det1_feat2_name=person
det1_feat2_value=3rd
det3_name=qual
det3_inter=on
det3_stem1_orth=qual
det3_stem1_pred=_qual_q_rel
det3_feat2_name=person
det3_feat2_value=3rd
det3_feat3_name=number
det3_feat3_value=singular
det5_name=que
det5_inter=on
det5_stem1_orth=que
det5_stem1_pred=_que_q_rel
det5_feat1_name=person
det5_feat1_value=3rd
det9_name=cada
det9_stem1_orth=cada
det9_stem1_pred=_cada_q_rel
det9_feat1_name=person
det9_feat1_value=3rd
det9_feat2_name=number
det9_feat2_value=singular
det10_name=todo
det10_stem1_orth=todo
det10_stem1_pred=_todo_q_1_rel
det10_feat3_name=person
det10_feat3_value=3rd
det18_name=indef-art
det18_stem1_orth=um
det18_stem1_pred=_um_q_rel
det18_feat1_name=person
det18_feat1_value=3rd
det19_name=algum
det19_stem1_orth=algum
det19_stem1_pred=_algum_q_rel
det20_name=dem-prox
det20_stem1_orth=este
det20_stem1_pred=_este_q_rel
det20_feat1_name=person
det20_feat1_value=3rd
det21_name=dem-med
det21_stem1_orth=esse
det21_stem1_pred=_esse_q_rel
det21_feat1_name=person
det21_feat1_value=3rd
det22_name=dem-dist
det22_stem1_orth=aquele
det22_stem1_pred=_aquele_q_rel
det22_feat1_name=person
det22_feat1_value=3rd
det23_name=outro
det23_stem1_orth=outro
det23_stem1_pred=_outro_q_rel
det23_feat1_name=person
det23_feat1_value=3rd
det24_name=pouco
det24_stem1_orth=pouco
det24_stem1_pred=_pouco_q_rel
det24_feat1_name=person
det24_feat1_value=3rd
det25_name=card-2
det25_stem1_orth=dois
det25_stem1_pred=_dois_q_rel
det25_feat1_name=number
det25_feat1_value=plural
det25_feat2_name=person
det25_feat2_value=3rd
det25_feat3_name=gender
det25_feat3_value=masculine
det26_name=card-3
det26_stem1_orth=três
det26_stem1_pred=_três_q_rel
det26_feat1_name=number
det26_feat1_value=plural
det26_feat2_name=person
det26_feat2_value=3rd
det27_name=quanto
det27_inter=on
det27_stem1_orth=quanto
det27_stem1_pred=_quanto_q_rel
det27_feat1_name=person
det27_feat1_value=3rd
det27_feat2_name=number
det27_feat2_value=singular
det27_feat3_name=gender
det27_feat3_value=masculine
det28_name=qualquer