-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathapertium-qve.qve.lexc
7355 lines (7091 loc) · 274 KB
/
apertium-qve.qve.lexc
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
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
! LEXC - PARA ANALIZADOR MORFOLÓGICO Y GENERADOR !
! DEL QUECHUA DEL ESTE DE APURÍMAC !
! !
! Vlastimil Rataj !
! Hugo David Calderon Vilca !
! Flor Cagniy Cárdenas Mariño !
! Calip Sierra Peña !
! !
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
Multichar_Symbols
! escaped symbols
%' ! apóstrofe de las consnantes glotalizadas (p', t', ch', k', q')
%> ! Morpheme boundary
%
%-
%/
! morfofonémica
%{M%} ! m/n en evidencial (-mi/-n) (M + bI)
%{P%} ! p/q en genitivo (-pa/-q) (P + bA)
%{bA%} ! buffer A (en genitivo)
%{bI%} ! buffer I (en evidenciales)
%{bnI%} ! buffer I (en -ni)
%{bN%} ! buffer N en-ni delante de ciertos sufijos desp. de consonante (N + bI)
%{bK%} ! buffer "k" que puede desaparecer: -yku > -yu
%{bQ%} ! buffer "q" que puede desaparecer: -rqu > -ru
%{bU%} ! buffer "u" que desaparece delante de -mu (mu + pu > mpu)
%{U%} ! U que puede cambiar en "a": -yku > -yka
! clases de palabra, subtipos
%<n%> ! nombre
%<np%> ! nombre propio
%<ant%> ! antropónimo (np)
%<top%> ! topónimo
%<al%> ! no otro (altre)
%<prn%> ! pronombre
%<adj%> ! adjetivo
%<preadj%> ! preadjetivo
%<adv%> ! adverbio
%<num%> ! numeral
%<numM%> ! numeral (múltiplos: 10, 100, 1000 ...)
%<ord%> ! numeral ordinal
%<post%> ! posposición
%<cnjcoo%> ! -wan, -piwan, -puwan como conjunción "y", "con"
%<cnjadv%> ! conjunción adverbial
%<ij%> ! interjeción
%<pr%> ! preposición (hispanismos)
%<det%> ! determinante
%<def%> ! determinante definido (hisp.)
%<ind%> ! prn/det indefinido (de los interrogativos y lo de Pron)
%<qnt%> ! prn/det cuantitativo (de los preadjetivos)
%<neg%> ! prn/det negativo (de los interrogativos)
%<pers%> ! personal (pronombre)
%<itg%> ! interrogativo (pronombre, adverbio)
%<dem%> ! demostrativo (pronombre, adjetivo)
%<subst%> ! substantival (adverbio: toma casos)
%<temp%> ! temporal (adverbio: no toma -pi <loc>)
%<vblex%> ! verbo
%<vbex%> ! verbo existencial (kay: kan)
%<vbcop%> ! verbo - cópula (kay: 0/formas)
%<vbmod%> ! verbo modal
%<vbaux%> ! verbo auxiliar
%<tv%> ! verbo transitivo
%<iv%> ! verbo intransitivo
%<vm%> ! verbo de movimiento
%<vcm%> ! verbo de comuncación (decir, preguntar)
%<vimp%> ! verbo impersonal (llover, dar ganas)
! género, número
%<m%> ! masculino
%<f%> ! femenino
%<mf%> ! masculino-femenino (apellidos, hispanismos)
%<GD%> ! género no definido
%<sg%> ! singular - tal vez no usar, sólo <ND>
%<pl%> ! plural
%<sp%> ! singular/plural - con <p3> (3sp>2pl, 3sp>1in, 3sp>1ex)
%<ND%> ! ND número no definido
! talvez ND sólo en t1x, u otra cadena para plural explícito desde N-Flex-POS Obl/PL
! sufijos nominales
%<pond%> ! ponderativo -sapa
%<poss%> ! posesivo -yuq
%<dim%> ! diminutivo -cha (y otros?)
%<incl%> ! inclusivo -nti-(n)
%<px1sg%> ! posesivo 1a persona singular
%<px2sg%> ! posesivo 2a persona singular
%<px3sg%> ! posesivo 3a persona singular
%<px1in%> ! posesivo 1a persona inclusiva (yo + tú)
%<px1ex%> ! posesivo 1a persona exclusiva (yo + él (no tú))
%<px2pl%> ! posesivo 2a persona plural
%<px3pl%> ! posesivo 3a persona plural
%<xrel%> ! relativo -n (allin, hatunnin, sapa killan, chawpin); en turco <rel> = -spa
! <honorífico><voc>:%>%{ni%}ll{a}y # ; + tayta + y > taytáy! (ver N-Flex)
%<inter%> ! interactivo (reciprocativo) -pura (recip = prn)
! casos
%<nom%> ! nominativo (nada)
%<gen%> ! genitivo -q/pa
! %<gen2%> ! segundo genitivo: <gen><gen2> = de + <art> + de +
%<ben%> ! benefactivo -paq
%<acc%> ! acusativo -ta
%<dat%> ! dativo - ilativo -man
%<ter%> ! terminativo (limitativo) -kama
%<per%> ! perlativo -nta
%<abl%> ! ablativo -manta
%<loc%> ! locativo -pi ------- změnit, protože loc je místo ve šp. (Location) !!!!!!!!!
%<ins%> ! instrumental (comitativo) -wan (-puwan, -piwan: ver tb. <conjcoo>)
%<csal%> ! causal (causativo) -rayku ( × <caus> causativo, sufijo verbal)
%<dis%> ! distributivo -nka
%<prox%> ! proximativo -niq
%<posic%> ! posicional -npa
! %<cmpr%> ! comparativo -hina (<=> partícula hina???) (× <comp> = gradación)
! %<sim%> ! similativo -niraq, -niray
! sufijos verbales
%<p1%> ! primera persona
%<p2%> ! segunda persona
%<p3%> ! tercera persona
%<p1in%> ! primera persona plural inclusiva (yo + tú)
%<p1ex%> ! primera persona plural exclusiva (yo + él (no tú))
%<po1sg%> ! primera persona singular objeto
%<po1in%> ! primera persona plural inclusiva objeto
%<po1ex%> ! primera persona plural exclusiva objeto
%<po1sp%> ! persona persona singular/plural objeto (sólo 1sg o 1ex)
%<po2sg%> ! segunda persona singular objeto
%<po2pl%> ! segunda persona plural objeto
%<po2sp%> ! segunda persona singular/plural objeto
%<po3sp%> ! tercera persona singular/plural objeto
%<po3sg%> ! con -q (-n) ?
%<po3pl%> ! con -q (-nku)
%<cont%> ! progresivo (continuativo) -sha
%<caus%> ! causativo -chi
%<bn%> ! benefactivo -pu (aplicativo?)
%<rec%> ! recíproco (-na + -ku / -chi / -pu) (recip = prn)
%<refl%> ! reflexivo -ku (ref = reflexivo - pronombre, etc.)
%<inc%> ! inceptivo (incoativo) -ri
%<rpnt%> ! acción repentina (imprevisiva, puntual, urgente, ~ perfectiva) -r(q)U
%<int%> ! intensivo -y(k)U
%<ctl%> ! cis/translocativo -mu (-mu + -pu > -mpu)
%<coop%> ! asistivo (cooperativo) -ysi
%<osc%> ! oscilativo (iterativo) -ykacha
%<frec%> ! frecuentativo (participativo) -paya
%<rpt%> ! repetivo -pa
%<dur%> ! durativo -raya
%<simul%> ! simulativo -tiya (!= similativo -niraq)
%<compl%> ! completivo -rpari
%<desid%> ! desiderativo -naya
%<trns%> ! transformativo -ya
%<fct%> ! factitivo -cha (pero mejor en dix)
! -ymana "insistencial", -na "reubicativo" para dix
%<pri%> ! presente
%<past%> ! pasado -rqa
! %<cond%> ! condicional (pot - potencial) - cni ? - pot ?
%<cni%> ! condicional/potencial (-man)
%<cni_pas%> ! condicional/potencial pasado (-man karqan) - no usado
%<evid%> ! pasado evidencial -sqa
%<imp%> ! imperativo
%<fti%> ! futuro
%<hab%> ! habitual (-q + AUX ka-)
%<inf%> ! infinitivo -y
%<pp%> ! participio pasado -sqa
%<pf%> ! participio futuro/obligativo -na (oblig = tense)
%<ag%> ! agentivo -q
%<ger%> ! gerundio -spa = de sujetos idénticos
%<ger2%> ! gerundio -qti = de sujetos diferentes (<sub> ?)
%<cons%> ! consecutivo -sti (pero AyQ gerundio... = subordinador simultáneo de sujetos idénticos)
! clíticos
%<lim%> ! limitativo -lla
%<dfnt%> ! definitivo -puni
%<cnti%> ! continuativo -raq
! %<cnt%> ! continuativo -raq (cnt = countable)
%<dcnt%> ! discontinuativo -ña
%<adit%> ! aditivo -pas, -pis
%<topi%> ! tópico, tema -qa
%<rnd%> ! reanudador -ri
%<qst%> ! interrogativo/negativo -chu = no-asertivo
%<contr%> ! contrastivo -taq
%<af%> ! evidencial directo "afirmativo" -mi/-n
%<rep%> ! reportativo -si
%<cnj%> ! conjetural -chá
%<enf%> ! enfático -yá
%<dub%> ! dubitativo -chus
%<excl%> ! exclamativo (ari, á o acento)
! Puntuación
%<sent%> ! Sentence marker
%<guio%> ! Hyphen
%<cm%> ! Comma
%<apos%> ! Apostrophe
%<rquot%> ! Quote marker (right hand side)
%<lquot%> ! Quote marker (left hand side)
%<rpar%> ! Parenthetical marker (right hand side)
%<lpar%> ! Parenthetical marker (left hand side)
! FLAG DIACRITICS
@P.lim.pres@ ! para controlar que el limitativo salga sólo una vez (en la primera posición)
@D.lim@ ! aunque eso probablemente no aparecerá en quechua y traduciendo del esp. se controlará por reglas
@R.lim.pres@ ! sólo para las subordinaciones (por ahora?)
! y en las subordinaciones, para que salga la etiqueta después de las de persona
@P.gen.pres@ ! para controlar que no salga <gen><nom>
@D.gen@
@R.gen.pres@
@P.wa.pres@ ! para controlar la persona del sujeto en la forma -wa-nchis (3>12)
@D.wa@
@R.wa.pres@
@P.su.pres@ ! para la formas con -su (-su-SUB-yki × -SUB-su-yki, etc.)
@D.su@
@R.su.pres@
@P.qti.pres@ ! para controlar que salga sólo -su-qti-yki(chis/ku), y no -qti-suyki (pero sí spa-suyki)
@D.qti@
@R.qti.pres@ ! no usado
@P.POS.oblig@ ! posesivo (sg y pl) obligatorio para la pronombres sapa- y kiki-
@D.POS@
@R.POS.oblig@ ! no usado
@P.POSpl.opc@ ! posesivo plural (y -n) opcional para los pronombres sapanka, wakiq, wakin, waki(cha)lla
@D.POSpl@ ! no usado
@R.POSpl.opc@
@P.NUMxrel.pres@ ! con los numerales, para poner la etiqueta del relativo después de la del ordinal
@P.NUMxrel.tag@
@D.NUMxrel@
@D.NUMxrel.pres@
@R.NUMxrel.pres@
LEXICON Root
Nombres ; ! 1
NombresGeneroM ;!2
NombresGeneroF ;!3
NombresHisp ; !4
NombresDerivados ;!5
NombresPropios ; !6
NombresPropOtros ;!7
Topónimos ; !8
Adjetivos ; !9
AdjetivosHisp ; ! 10
AdjetivosGenero ; ! 11
AdjetivosDerivados ; ! 12
Adverbios ; !13
Adverbios-Subst ; !14
Adverbios-Temp ; !15
Conjunciones ; ! 16
Interjeciones ; ! 17
Det-Cuantitativos; ! 18
Det-Indefinidos; !19
Det-Interrogativos; ! 20
Det-Hispanos ; ! 21
Numerales ; ! 22
Preadjetivos ; !23
Postposiciones ; ! 24
PronombresOtros ; ! 25
PronombresDemostrativos; !26
PronombresInterrogativos; ! 27
PronombresIndefinidos ; ! 28
PronombresPersonales ; ! 29 NO LEXC esta encima de lemas raices
PreposicionesHispanos ; ! 30
Verbos ; ! 30
!VerbosTrans ;
!VerbosIntrans ;
!VerbosMov ;
!VerbosCom ;
!VerbosImpers ;
Puntuación ;
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!! M O R P H O T A C T I C S !!
!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!!
!!!!! C L Í T I C O S
LEXICON CLIT-Final
%<topi%>:%>qa # ;
%<topi%>%<excl%>:%>qá # ;
%<rnd%>:%>ri # ;
%<rnd%>%<excl%>:%>rí # ;
%<af%>:%>%{M%}%{bI%} # ;
%<af%>:%>min # ; ! Dir/LR
%<af%>%<excl%>:%>m%>á # ;
%<af%>%<excl%>:%>m%>ari # ; ! Dir/LR
%<rep%>:%>s%{bI%} # ;
%<rep%>:%>sis # ; ! Dir/LR
%<rep%>%<excl%>:%>s%>yá # ;
%<rep%>%<excl%>:%>s%>ari # ; ! Dir/LR
%<cnj%>:%>chá # ; ! forma (casi) siempre enfática en el cuzqueño (-cha más bien dim)
! talvez -cha con itg
%<cnj%>%<excl%>:%>ch%>ari # ; ! Dir/LR
%<enf%>:%>ya # ;
%<enf%>%<excl%>:%>y%>á # ;
%<enf%>%<excl%>:%>y%>ari # ; ! Dir/LR
%<dub%>:%>chus # ;
%<dub%>:%>chusuna # ;
%<dub%>:%>chusina # ;
%<dub%>0:chus%>mi # ;
%<dub%>:%>chus% hina # ;
! suna, sina - dub
!! (sá), ari, á,
# ;
LEXICON CLIT-chu
%<qst%>:%>chu # ;
! -chu-qa(ya), -chu-ri ??? (ayacuchano?)
CLIT-Final ;
LEXICON CLIT-taq
%<contr%>:%>taq CLIT-chu ;
%<contr%>%<excl%>:%>táq # ;
CLIT-chu ;
LEXICON CLIT-pas
%<adit%>:%>pas CLIT-taq ;
%<adit%>:%>pis CLIT-taq ; ! Dir/LR
CLIT-taq ;
LEXICON CLIT-raq-na
%<cnti%>:%>raq CLIT-pas ;
%<dcnt%>:%>ña CLIT-pas ;
%<adit%>%<cnti%>:%>pas%>raq CLIT-taq ; ! Dir/LR
CLIT-pas ;
LEXICON CLIT-puni
%<dfnt%>:%>puni CLIT-raq-na ;
CLIT-raq-na ;
LEXICON CLIT-lla
! sólo para los verbos y "partículas" (el limitativo de los nombres entra en la flexión nominal)
%<lim%>:%>lla CLIT-puni ;
CLIT-puni ;
!!!!! F L E X I Ó N N O M I N A L
LEXICON N-POSTcaso-kama
! kama - <ter>×<distrib> - otro significado, distributivo: "todos así" o sin trad.
! kama-lla
CLIT-puni ;
LEXICON N-POSTcaso-wan
%<cnjcoo%>:%>wan CLIT-puni ; ! otra etiqueta?, -wan-kama ??
%<cnjcoo%>:%>puwan CLIT-puni ; ! como conjunción "y", "con" - Dir/LR
%<cnjcoo%>:%>piwan CLIT-puni ; ! talvez otra etiqueta (ins-coord) - Dir/LR
CLIT-puni ;
LEXICON N-POSTcaso
N-POSTcaso-wan ;
N-POSTcaso-kama ;
LEXICON N-lla-POSTcaso
%<lim%>:%>lla N-POSTcaso-wan ;
N-POSTcaso-kama ;
LEXICON N-FLEX-Caso-lla
%<ter%>:%>kama N-lla-POSTcaso ;
!! %<prox%>%<ter%>:%>niqkama N-lla-POSTcaso ; ! ni-lla-q-kama??? niq-kama-lla???
%<csal%>:%>rayku N-lla-POSTcaso ;
%<dis%>:%>%{bN%}%{bnI%}nka N-lla-POSTcaso ; ! sólo en oraciones distributivas, con numerales...
!! combinaciones: rayku(lla)wan, rayku(lla)pi, rayku(lla)paq
LEXICON N-FLEX-lla-Caso
%<nom%>@D.gen@:@D.gen@ N-POSTcaso ;
@R.gen.pres@:@R.gen.pres@ N-POSTcaso ;
!! %<gen2%>@R.gen.pres@:%>%{P%}%{bA%}@R.gen.pres@ ! segundo genitivo
%<acc%>:%>ta N-POSTcaso ;
%<ben%>:%>paq N-POSTcaso ;
%<dat%>:%>man N-POSTcaso ;
%<abl%>:%>manta N-POSTcaso ;
%<loc%>:%>pi N-POSTcaso ;
%<ins%>:%>wan N-POSTcaso-kama ;
!! <posic> - posicional
!! ni-(lla)-npa ! - ojo, tb. pos3-gen
!! ni-(lla)-npa-manta
!! <prox> - proximativo -niq (-ni-lla-q????) - puesto como postposición
!! -niq-ni-(lla)-nta - diccionario ?
!! -(lla)-niq + manta, -man, -pi, -ta - diccionario ?
LEXICON N-FLEX-Caso
%<lim%>:%>lla N-FLEX-lla-Caso ;
%<per%>:%>%{bN%}%{bnI%}nta N-POSTcaso ; ! - ojo, tb. pos3-acc (<per> con ciertos verbos: mov., mirar, etc.)
%<lim%>%<per%>:%>%{bN%}%{bnI%}lla%>nta N-POSTcaso ;
N-FLEX-lla-Caso ;
N-FLEX-Caso-lla ;
LEXICON N-FLEX-Gen
%<gen%>@P.gen.pres@:%>%{P%}%{bA%}@P.gen.pres@ N-FLEX-Caso ;
N-FLEX-Caso ;
! poner algo para que salga -lla-q ???, y no -q-lla, pero sí ??? -pa-lla
LEXICON N-FLEX-Inter
%<inter%>:%>pura CLIT-puni ;
%<inter%>%<lim%>:%>pura%>lla CLIT-puni ;
%<inter%>%<acc%>:%>pura%>ta CLIT-puni ; ! (acciones transitivas recíprocas)
%<inter%>%<lim%>%<acc%>:%>pura%>lla%>ta CLIT-puni ;
%<inter%>%<ins%>:%>pura%>wan CLIT-puni ; ! (("entre" uno por otro (cambiar, etc.))
%<inter%>%<lim%>%<ins%>:%>pura%>lla%>wan CLIT-puni ;
!! revisar, tv. poner de otra manera
N-FLEX-Gen ;
LEXICON N-FLEX-POS-Oblig
! obligatorio después del inclusivo -nti y algunos pronombres, sin plural -kuna
! -nti- sólo para los numerales, el resto siempre tiene -nti-n (o -ntin-ku)
%<px1in%>:%>%{bN%}%{bnI%}nchis N-FLEX-Incl ;
%<px1ex%>:%>%{bN%}%{bnI%}yku N-FLEX-Incl ;
%<px2pl%>:%>%{bN%}%{bnI%}ykichis N-FLEX-Incl ;
%<px3pl%>:%>%{bN%}%{bnI%}nku N-FLEX-Incl ;
%<px3sg%>:%>%{bN%}%{bnI%}n N-FLEX-Incl ; ! excepcionalmente
@R.POSpl.opc@:@R.POSpl.opc@ N-FLEX-Incl ;
LEXICON N-FLEX-Incl
! aquí, porque sigue al plural (wasikunantin)
%<incl%>:%>%{bN%}%{bnI%}ntin N-FLEX-Inter ;
%<lim%>%<incl%>@D.lim@:%>%{bN%}%{bnI%}nti%>llan@D.lim@ N-FLEX-Inter ;
%<incl%>:%>%{bN%}%{bnI%}ntinku N-FLEX-Inter ; ! excepcionalmente con animados
%<lim%>%<incl%>@D.lim@:%>%{bN%}%{bnI%}nti%>llanku@D.lim@ N-FLEX-Inter ;
N-FLEX-Inter ;
LEXICON N-FLEX-Plural
%<pl%>:%>kuna N-FLEX-Incl ;
N-FLEX-Incl ;
LEXICON N-FLEX-POS
%<px1sg%>:%>%{bN%}%{bnI%}y N-FLEX-Plural ;
%<lim%>%<px1sg%>@D.lim@:%>%{bN%}%{bnI%}lla%>y@D.lim@ N-FLEX-Plural ;
%<px2sg%>:%>%{bN%}%{bnI%}yki N-FLEX-Plural ;
%<lim%>%<px2sg%>@D.lim@:%>%{bN%}%{bnI%}lla%>yki@D.lim@ N-FLEX-Plural ;
%<px3sg%>:%>%{bN%}%{bnI%}n N-FLEX-Plural ;
%<lim%>%<px3sg%>@D.lim@:%>%{bN%}%{bnI%}lla%>n@D.lim@ N-FLEX-Plural ;
%<px1in%>:%>%{bN%}%{bnI%}nchis N-FLEX-Plural ;
%<lim%>%<px1in%>@D.lim@:%>%{bN%}%{bnI%}lla%>nchis@D.lim@ N-FLEX-Plural ;
%<px2pl%>:%>%{bN%}%{bnI%}ykichis N-FLEX-Plural ;
%<lim%>%<px2pl%>@D.lim@:%>%{bN%}%{bnI%}lla%>ykichis@D.lim@ N-FLEX-Plural ;
!!! %<xrel%>:%>%{bN%}%{bnI%}n N-Flex-PL ; ! -n relativo?
%<px1ex%>:%>%{bN%}%{bnI%}yku N-FLEX-Incl ;
%<lim%>%<px1ex%>@D.lim@:%>%{bN%}%{bnI%}lla%>yku@D.lim@ N-FLEX-Incl ;
%<px3pl%>:%>%{bN%}%{bnI%}nku N-FLEX-Incl ;
%<lim%>%<px3pl%>@D.lim@:%>%{bN%}%{bnI%}lla%>nku@D.lim@ N-FLEX-Incl ;
@D.POS@:@D.POS@ N-FLEX-Plural ;
LEXICON N-DER-Dim
%<dim%>:%>cha N-FLEX-POS ;
N-FLEX-POS ;
LEXICON N-DER
%<poss%>:%>%{bN%}%{bnI%}yuq N-DER-Dim ;
%<lim%>%<poss%>@P.lim.pres@:%>%{bN%}%{bnI%}llayuq@P.lim.pres@ N-DER-Dim ;
%<pl%>%<poss%>:%>kuna%>yuq N-FLEX-Inter ;
%<dim%>%<poss%>:%>cha%>yuq N-FLEX-Inter ;
%<dim%>%<pl%>%<poss%>:%>cha%>kuna%>yuq N-FLEX-Inter ;
%<pond%>:%>sapa N-FLEX-Inter ;
%<pond%>%<poss%>:%>sapa%>yuq N-FLEX-Inter ;
! ya, cha?, naya, (raya)
N-DER-Dim ;
LEXICON ADJ-PL ! + posesivos
%<pl%>:%>kuna N-FLEX-Gen ;
%<xrel%>:%>%{bN%}%{bnI%}n N-FLEX-Gen ;
N-FLEX-Gen ;
! sumaqniyki - infrecuente, +xrel - frec.
LEXICON ADJ-DER
%<dim%>:%>cha ADJ-PL ;
ADJ-PL ;
LEXICON NUM-Ord
:% ñiqi N-DER ; ! Dir/LR
:% ñiqin N-DER ;
:% ñaqi N-DER ; ! Dir/LR
:% ñaqin N-DER ; ! Dir/LR
:%>ñiqi N-DER ; ! Dir/LR
:%>ñiqin N-DER ;
:%>ñaqi N-DER ; ! Dir/LR
:%>ñaqin N-DER ; ! Dir/LR
:% kaq N-DER ; ! Dir/LR
:%>kaq N-DER ; ! Dir/LR
LEXICON NUM-Poss
@D.NUMxrel.pres@:@D.NUMxrel.pres@ N-DER ;
%<poss%>@D.NUMxrel.pres@:%>%{bN%}%{bnI%}yuq@D.NUMxrel.pres@ N-DER ;
%<incl%>@D.NUMxrel.pres@:%>%{bN%}%{bnI%}nti@D.NUMxrel.pres@ N-FLEX-POS-Oblig ;
%<incl%>%<lim%>@P.lim.pres@@D.NUMxrel.pres@:%>%{bN%}%{bnI%}nti%>lla@P.lim.pres@@D.NUMxrel.pres@ N-FLEX-POS-Oblig ;
%<ord%>@D.NUMxrel@:@D.NUMxrel@ NUM-Ord ;
%<ord%>%<poss%>@D.NUMxrel@:%>%{bN%}%{bnI%}yuq@D.NUMxrel@ NUM-Ord ;
%<ord%>%<xrel%>@R.NUMxrel.pres@:@R.NUMxrel.pres@ NUM-Ord ;
%<ord%>%<xrel%>%<poss%>@P.NUMxrel.pres@:%>%{bN%}%{bnI%}yuq@P.NUMxrel.pres@ NUM-Ord ;
! con limitativo????
LEXICON NUM-Rel
%<xrel%>@P.NUMxrel.tag@:%>%{bN%}%{bnI%}n@P.NUMxrel.tag@ NUM-Poss ; ! o mejor NUM-Ord + N-DER?
@P.NUMxrel.pres@:%>%{bN%}%{bnI%}n@P.NUMxrel.pres@ NUM-Poss ;
NUM-Poss ;
! con limitativo????
!!!!! F L E X I Ó N V E R B A L
LEXICON V-PERS
! tal vez poner algo para que no salgan las formas "reflexivas"
! objeto 3a persona
%<p1%>%<sg%>%<po3sp%>@D.wa@:%>ni@D.wa@ CLIT-puni ;
%<p1ex%>%<pl%>%<po3sp%>@D.wa@:%>yku@D.wa@ CLIT-puni ;
%<p1ex%>%<pl%>%<po3sp%>@D.wa@:%>niku@D.wa@ CLIT-puni ; ! Dir/LR (AyQ)
%<p2%>%<sg%>%<po3sp%>@D.wa@:%>nki@D.wa@ CLIT-puni ;
%<p3%>%<pl%>%<po3sp%>@D.wa@:%>nkichis@D.wa@ CLIT-puni ;
%<p3%>%<sg%>%<po3sp%>@D.wa@:%>n@D.wa@ CLIT-puni ;
%<p3%>%<pl%>%<po3sp%>@D.wa@:%>nku@D.wa@ CLIT-puni ;
%<p1in%>%<pl%>%<po3sp%>@D.wa@:%>nchis@D.wa@ CLIT-puni ;
! objeto 1a persona
%<p2%>%<sg%>%<po1sg%>@R.wa.pres@:%>nki@R.wa.pres@ CLIT-puni ;
%<p2%>%<sg%>%<po1ex%>@R.wa.pres@:%>nkiku@R.wa.pres@ CLIT-puni ;
%<p2%>%<pl%>%<po1sp%>@R.wa.pres@:%>nkichis@R.wa.pres@ CLIT-puni ;
%<p3%>%<sg%>%<po1sg%>@R.wa.pres@:%>n@R.wa.pres@ CLIT-puni ;
%<p3%>%<sp%>%<po1sp%>@R.wa.pres@:%>nku@R.wa.pres@ CLIT-puni ;
%<p3%>%<sp%>%<po1in%>@R.wa.pres@:%>nchis@R.wa.pres@ CLIT-puni ;
! objeto 2a persona
%<p2%>%<sg%>%<po2sg%>@D.wa@:%>yki@D.wa@ CLIT-puni ; !"Modificado p1 a p2 ALEX"
%<p1%>%<sg%>%<po2pl%>@D.wa@:%>ykichis@D.wa@ CLIT-puni ; ! podría ser también p1ex>po2pl
%<p1ex%>%<pl%>%<po2sp%>@D.wa@:%>ykiku@D.wa@ CLIT-puni ;
%<p3%>%<sg%>%<po2sg%>@D.wa@:%>sunki@D.wa@ CLIT-puni ;
%<p3%>%<sp%>%<po2pl%>@D.wa@:%>sunkichis@D.wa@ CLIT-puni ;
%<p3%>%<pl%>%<po2sg%>@D.wa@:%>sunkiku@D.wa@ CLIT-puni ;
LEXICON V-POT
! el potencial pasado (+ karqan) no se puede poner, porque los clíticos van antes
! objeto 3a persona
%<p1%>%<sg%>%<po3sp%>@D.wa@:%>yman@D.wa@ CLIT-puni ;
%<p1ex%>%<pl%>%<po3sp%>@D.wa@:%>ykuman@D.wa@ CLIT-puni ;
%<p1ex%>%<pl%>%<po3sp%>@D.wa@:%>ymanku@D.wa@ CLIT-puni ; ! Dir/LR (AyQ)
%<p2%>%<sg%>%<po3sp%>@D.wa@:%>waq@D.wa@ CLIT-puni ;
%<p2%>%<sg%>%<po3sp%>@D.wa@:%>nkiman@D.wa@ CLIT-puni ; ! Dir/LR
%<p2%>%<pl%>%<po3sp%>@D.wa@:%>waqchis@D.wa@ CLIT-puni ;
%<p2%>%<pl%>%<po3sp%>@D.wa@:%>nkichisman@D.wa@ CLIT-puni ; ! Dir/LR
%<p3%>%<sg%>%<po3sp%>@D.wa@:%>nman@D.wa@ CLIT-puni ;
%<p3%>%<pl%>%<po3sp%>@D.wa@:%>nkuman@D.wa@ CLIT-puni ;
%<p3%>%<pl%>%<po3sp%>@D.wa@:%>nmanku@D.wa@ CLIT-puni ; ! Dir/LR (AyQ)
%<p1in%>%<pl%>%<po3sp%>@D.wa@:%>swan@D.wa@ CLIT-puni ;
%<p1in%>%<pl%>%<po3sp%>@D.wa@:%>swanman@D.wa@ CLIT-puni ;
%<p1in%>%<pl%>%<po3sp%>@D.wa@:%>swanchis@D.wa@ CLIT-puni ; ! Dir/LR
%<p1in%>%<pl%>%<po3sp%>@D.wa@:%>shwan@D.wa@ CLIT-puni ; ! Dir/LR
%<p1in%>%<pl%>%<po3sp%>@D.wa@:%>chwan@D.wa@ CLIT-puni ; ! Dir/LR (AyQ)
%<p1in%>%<pl%>%<po3sp%>@D.wa@:%>nchisman@D.wa@ CLIT-puni ; ! Dir/LR
%<p1in%>%<pl%>%<po3sp%>@D.wa@:%>sunman@D.wa@ CLIT-puni ; ! Dir/LR
%<p1in%>%<pl%>%<po3sp%>@D.wa@:%>sunchisman@D.wa@ CLIT-puni ; ! Dir/LR
! objeto 1a persona
%<p2%>%<sg%>%<po1sg%>@R.wa.pres@:%>nkiman@R.wa.pres@ CLIT-puni ;
%<p2%>%<sg%>%<po1sg%>@R.wa.pres@:%>waq@R.wa.pres@ CLIT-puni ; ! Dir/LR
%<p2%>%<sg%>%<po1ex%>@R.wa.pres@:%>nkikuman@R.wa.pres@ CLIT-puni ;
%<p2%>%<sg%>%<po1ex%>@R.wa.pres@:%>nkimanku@R.wa.pres@ CLIT-puni ; ! Dir/LR (AyQ)
%<p2%>%<sg%>%<po1ex%>@R.wa.pres@:%>waqkuman@R.wa.pres@ CLIT-puni ; ! Dir/LR
%<p2%>%<sg%>%<po1ex%>@R.wa.pres@:%>waqmanku@R.wa.pres@ CLIT-puni ; ! Dir/LR (AyQ)
%<p2%>%<pl%>%<po1sp%>@R.wa.pres@:%>nkichisman@R.wa.pres@ CLIT-puni ;
%<p2%>%<pl%>%<po1sp%>@R.wa.pres@:%>waqchis@R.wa.pres@ CLIT-puni ; ! Dir/LR
%<p3%>%<sg%>%<po1sg%>@R.wa.pres@:%>nman@R.wa.pres@ CLIT-puni ;
%<p3%>%<sp%>%<po1sp%>@R.wa.pres@:%>nkuman@R.wa.pres@ CLIT-puni ;
%<p3%>%<sp%>%<po1sp%>@R.wa.pres@:%>nmanku@R.wa.pres@ CLIT-puni ; ! Dir/LR (AyQ)
%<p3%>%<sp%>%<po1in%>@R.wa.pres@:%>swan@R.wa.pres@ CLIT-puni ;
%<p3%>%<sp%>%<po1in%>@R.wa.pres@:%>swanchis@R.wa.pres@ CLIT-puni ; ! Dir/LR
%<p3%>%<sp%>%<po1in%>@R.wa.pres@:%>shwan@R.wa.pres@ CLIT-puni ; ! Dir/LR
%<p3%>%<sp%>%<po1in%>@R.wa.pres@:%>chwan@R.wa.pres@ CLIT-puni ; ! Dir/LR (AyQ)
%<p3%>%<sp%>%<po1in%>@R.wa.pres@:%>swanman@R.wa.pres@ CLIT-puni ; ! Dir/LR
%<p3%>%<sp%>%<po1in%>@R.wa.pres@:%>nchisman@R.wa.pres@ CLIT-puni ; ! Dir/LR
%<p3%>%<sp%>%<po1in%>@R.wa.pres@:%>sunman@R.wa.pres@ CLIT-puni ; ! Dir/LR
%<p3%>%<sp%>%<po1in%>@R.wa.pres@:%>sunchisman@R.wa.pres@ CLIT-puni ; ! Dir/LR
! objeto 2a persona
%<p1%>%<sg%>%<po2sg%>@D.wa@:%>ykiman@D.wa@ CLIT-puni ;
%<p1%>%<sg%>%<po2pl%>@D.wa@:%>ykichisman@D.wa@ CLIT-puni ; ! podría ser también p1ex>po2pl
%<p1ex%>%<pl%>%<po2sp%>@D.wa@:%>ykikuman@D.wa@ CLIT-puni ;
%<p1ex%>%<pl%>%<po2sp%>@D.wa@:%>ykimanku@D.wa@ CLIT-puni ; ! Dir/LR (AyQ)
%<p3%>%<sg%>%<po2sg%>@D.wa@:%>sunkiman@D.wa@ CLIT-puni ;
%<p3%>%<sp%>%<po2pl%>@D.wa@:%>sunkichisman@D.wa@ CLIT-puni ;
%<p3%>%<pl%>%<po2sg%>@D.wa@:%>sunkikuman@D.wa@ CLIT-puni ;
%<p3%>%<pl%>%<po2sg%>@D.wa@:%>sunkimanku@D.wa@ CLIT-puni ; ! Dir/LR (AyQ)
LEXICON V-IMP
! objeto 3a persona
%<p2%>%<sg%>%<po3sp%>@D.wa@:%>y@D.wa@ CLIT-puni ;
%<p2%>%<pl%>%<po3sp%>@D.wa@:%>ychis@D.wa@ CLIT-puni ;
%<p3%>%<sg%>%<po3sp%>@D.wa@:%>chun@D.wa@ CLIT-puni ;
%<p3%>%<pl%>%<po3sp%>@D.wa@:%>chunku@D.wa@ CLIT-puni ;
%<p1in%>%<pl%>%<po3sp%>@D.wa@:%>sun@D.wa@ CLIT-puni ;
%<p1in%>%<pl%>%<po3sp%>@D.wa@:%>sunchis@D.wa@ CLIT-puni ;
! objeto 1a persona
%<p2%>%<sg%>%<po1sg%>@R.wa.pres@:%>y@R.wa.pres@ CLIT-puni ;
%<p2%>%<sg%>%<po1ex%>@R.wa.pres@:%>yku@R.wa.pres@ CLIT-puni ;
%<p2%>%<pl%>%<po1sp%>@R.wa.pres@:%>ychis@R.wa.pres@ CLIT-puni ;
%<p3%>%<sg%>%<po1sg%>@R.wa.pres@:%>chun@R.wa.pres@ CLIT-puni ;
%<p3%>%<sp%>%<po1sp%>@R.wa.pres@:%>chunku@R.wa.pres@ CLIT-puni ;
%<p3%>%<sp%>%<po1in%>@R.wa.pres@:%>sun@R.wa.pres@ CLIT-puni ;
%<p3%>%<sp%>%<po1in%>@R.wa.pres@:%>sunchis@R.wa.pres@ CLIT-puni ;
! objeto 2a persona
%<p3%>%<sg%>%<po2sg%>@D.wa@:%>sunki@D.wa@ CLIT-puni ;
%<p3%>%<sp%>%<po2pl%>@D.wa@:%>sunkichis@D.wa@ CLIT-puni ;
%<p3%>%<pl%>%<po2sg%>@D.wa@:%>sunkiku@D.wa@ CLIT-puni ;
LEXICON V-HAB
! estas formas habrá que desambiguarlas en la CG
! en la mayoría de los casos depende de la forma del auxiliar ka- que sigue
! sin embargo, no se pueden poner las formas completas, porque los clíticos van antes
! las únicas formas que se pueden desambiguar sólo según la presencia o ausencia del aux:
! -q-ku: 3pl>3sp (sin auxiliar), pero -q con el auxiliar (karqanku, kasqanku)
! -wa-q-ku: 3sp>1sp (sin auxiliar), pero -wa-q con el auxiliar (karqanku, kasqanku)
! el resto depende de la forma del aux (o su ausencia - con sujeto de 3sp)
! sin embargo, todas las formas con -wa son con obj. de 1a pers., y viceversa
! -q-ku: sólo 3pl>3sp (pero -q + aux)
! -wa-q-ku: sólo 3sp>1sp (pero -wa-q + aux)
! -wa-q: todas las posibles formas con objeto de 1a persona (pero 3sp>1sp sin aux = -wa-q-ku)
! -q: todas las posibles formas con objeto de 2a o 3a persona (pero 3pl>3sp sin aux = -q-ku)
! el auxiliar es ka- + transición, excepto -wa (va antes de -q), y sin las formas kan, kanku
! el auxiliar está en presente, pasado -rqa o evidencial -sqa
! si falta el auxiliar (kan, kanku), -ku se añade a -q (sólo 3pl>3sp, 3pl>1sg y 3sp>1ex)
! (-wa-q-ku también pudiera ser 2sp>1ex, por lo menos en el Ayacuchano) (+ aux kanki(chis))
! las formas -su-q o -q-POS son siempre con el participio -sqa (y nunca el habitual)
! las formas -su-q como habitual aparecen en el ayacuchano
! las demás formas son habitual si sigue el aux (pero con 3a suj. el aux falta en el habitual)
! las formas sin marca de persona de objeto y con kay (pero sin -sha o -lla)
! pueden ser también nombres agentivos con cópula (llank'aq kani = soy trabajador / solía trabajar)
! objeto 3a persona
%<p1%>%<sg%>%<po3sp%>@D.wa@:%>q@D.wa@ CLIT-puni ; ! + kani, karqani, kasqani
%<p1ex%>%<pl%>%<po3sp%>@D.wa@:%>q@D.wa@ CLIT-puni ; ! + kayku, karqayku, kasqayku
%<p2%>%<sg%>%<po3sp%>@D.wa@:%>q@D.wa@ CLIT-puni ; ! + kanki, karqanki, kasqanki
%<p2%>%<pl%>%<po3sp%>@D.wa@:%>q@D.wa@ CLIT-puni ; ! + kankichis, karqankichis, kasqankichis
%<p3%>%<sg%>%<po3sp%>@D.wa@:%>q@D.wa@ CLIT-puni ; ! + 0, karqan, kasqa
%<p3%>%<pl%>%<po3sp%>@D.wa@:%>q@D.wa@ CLIT-puni ; ! + karqanku, kasqaku (* 0)
%<p3%>%<pl%>%<po3sp%>@D.wa@:%>qku@D.wa@ CLIT-puni ; ! + 0 (* karqan(ku), kasqa(ku))
%<p1in%>%<pl%>%<po3sp%>@D.wa@:%>q@D.wa@ CLIT-puni ; ! + kanchis, karqanchis, kasqanchis
! objeto 1a persona
%<p2%>%<sg%>%<po1sg%>@R.wa.pres@:%>q@R.wa.pres@ CLIT-puni ; ! + kanki, karqanki, kasqanki
%<p2%>%<sg%>%<po1ex%>@R.wa.pres@:%>q@R.wa.pres@ CLIT-puni ; ! + kankiku, karqankiku, kasqankiku
%<p2%>%<sg%>%<po1ex%>@R.wa.pres@:%>qku@R.wa.pres@ CLIT-puni ; ! + kanki, karqanki, kasqanki: sólo AyQ ?
%<p2%>%<pl%>%<po1sp%>@R.wa.pres@:%>q@R.wa.pres@ CLIT-puni ; ! + kankichis, karqankichis, kasqankichis
%<p2%>%<pl%>%<po1sp%>@R.wa.pres@:%>qku@R.wa.pres@ CLIT-puni ; ! + ka(rqa)nkichis, kasqankichis: sólo AyQ ???
%<p3%>%<sg%>%<po1sg%>@R.wa.pres@:%>q@R.wa.pres@ CLIT-puni ; ! + 0, karqan, kasqa
%<p3%>%<sp%>%<po1sp%>@R.wa.pres@:%>q@R.wa.pres@ CLIT-puni ; ! + karqanku, kasqaku (* 0)
%<p3%>%<sp%>%<po1sp%>@R.wa.pres@:%>qku@R.wa.pres@ CLIT-puni ; ! + 0 (* karqan(ku), kasqa(ku))
%<p3%>%<sp%>%<po1in%>@R.wa.pres@:%>q@R.wa.pres@ CLIT-puni ; ! + kanchis, karqanchis, kasqanchis (? -qku kanchis?)
! + posiblemente formas @D.wa@ -q + ka-wa-SUJeto ???? (rikuq kawanki...)
! objeto 2a persona
%<p1%>%<sg%>%<po2sg%>@D.wa@:%>q@D.wa@ CLIT-puni ; ! + kayki, karqayki, kasqayki
%<p1%>%<sg%>%<po2pl%>@D.wa@:%>q@D.wa@ CLIT-puni ; ! + kaykichis, karqaykichis, kasqaykichis
! (podría ser también p1ex>po2pl)
%<p1ex%>%<pl%>%<po2sp%>@D.wa@:%>q@D.wa@ CLIT-puni ; ! + kaykiku, karqaykiku, kasqaykiku
! (??? -qku kaykichis 1ex>2pl ???)
%<p3%>%<sg%>%<po2sg%>@D.wa@:%>q@D.wa@ CLIT-puni ; ! + kasunki, karqasunki, kasqasunki
%<p3%>%<sp%>%<po2pl%>@D.wa@:%>q@D.wa@ CLIT-puni ; ! + kasunkichis, karqasunkichis, kasqasunkichis
! (??? -qku -sunkichis 3pl)
%<p3%>%<pl%>%<po2sg%>@D.wa@:%>q@D.wa@ CLIT-puni ; ! + kasunkiku, karqasunkiku, kasqasunkiku
! (AyQ ??? -qku kasunki ???)
! + AyQ -su-q + AUX: -suq kanki, -suqku kanki 3sg,pl > 2sg, pero no kasunki...
LEXICON V-SUB-y
%<po1sp%>@R.wa.pres@@D.su@:%>@R.wa.pres@@D.su@ N-FLEX-POS ; ! -wa-y
%<po1in%>@R.wa.pres@@D.su@:%>@R.wa.pres@@D.su@ N-FLEX-POS ; ! -wa-y
%<po3sp%>@D.wa@@D.su@:%>@D.wa@@D.su@ N-FLEX-POS ; ! -y
%<po2sp%>@D.wa@@D.su@:%>@D.wa@@D.su@ N-FLEX-POS ; ! -y
%<po2sp%>@D.wa@@R.su.pres@:@D.wa@@R.su.pres@ N-FLEX-Caso ; ! Dir/LR - AyQ -su-y
! formas -(su)-y-ki-(chis) - usadas muy raramente
! las formas sin -su sólo con acusativo, para no tener que desambiguar con las transiciones 1>2pres
%<po2sg%>%<acc%>@D.wa@@D.su@:%>ki%>ta@D.wa@@D.su@ N-POSTcaso ; ! Dir/LR - -y-ki = 1>2pres
%<po2pl%>%<acc%>@D.wa@@D.su@:%>kichis%>ta@D.wa@@D.su@ N-POSTcaso ; ! Dir/LR - -y-ki-chis
! %<po2sg%>@D.wa@@D.su@:%>ki@D.wa@@D.su@ N-FLEX-Caso ; ! Dir/LR - -y-ki = 1>2pres
! %<po2pl%>@D.wa@@D.su@:%>kichis@D.wa@@D.su@ N-FLEX-Caso ; ! Dir/LR - -y-ki-chis
%<po2sg%>@D.wa@@R.su.pres@:%>ki@D.wa@@R.su.pres@ N-FLEX-Caso ; ! Dir/LR - -su-y-ki
%<po2pl%>@D.wa@@R.su.pres@:%>kichis@D.wa@@R.su.pres@ N-FLEX-Caso ; ! Dir/LR - -su-y-ki-chis
LEXICON V-SUB-na-sqa
! objeto 3a persona
%<p1%>%<sg%>%<po3sp%>@D.wa@@D.su@:%>y@D.wa@@D.su@ V-lla-NOM ;
%<p1ex%>%<pl%>%<po3sp%>@D.wa@@D.su@:%>yku@D.wa@@D.su@ V-lla-NOM ;
%<p2%>%<sg%>%<po3sp%>@D.wa@@D.su@:%>yki@D.wa@@D.su@ V-lla-NOM ;
%<p2%>%<pl%>%<po3sp%>@D.wa@@D.su@:%>ykichis@D.wa@@D.su@ V-lla-NOM ;
%<p3%>%<sg%>%<po3sp%>@D.wa@@D.su@:%>n@D.wa@@D.su@ V-lla-NOM ;
%<p3%>%<pl%>%<po3sp%>@D.wa@@D.su@:%>nku@D.wa@@D.su@ V-lla-NOM ;
%<p1in%>%<pl%>%<po3sp%>@D.wa@@D.su@:%>nchis@D.wa@@D.su@ V-lla-NOM ;
! objeto 1a persona
%<p2%>%<sg%>%<po1sg%>@R.wa.pres@@D.su@:%>yki@R.wa.pres@@D.su@ V-lla-NOM ;
%<p2%>%<sg%>%<po1ex%>@R.wa.pres@@D.su@:%>ykiku@R.wa.pres@@D.su@ V-lla-NOM ;
%<p2%>%<pl%>%<po1sp%>@R.wa.pres@@D.su@:%>ykichis@R.wa.pres@@D.su@ V-lla-NOM ;
%<p3%>%<sg%>%<po1sg%>@R.wa.pres@@D.su@:%>n@R.wa.pres@@D.su@ V-lla-NOM ;
%<p3%>%<sp%>%<po1sp%>@R.wa.pres@@D.su@:%>nku@R.wa.pres@@D.su@ V-lla-NOM ;
%<p3%>%<sp%>%<po1in%>@R.wa.pres@@D.su@:%>nchis@R.wa.pres@@D.su@ V-lla-NOM ;
! objeto 2a persona
! %<p1%>%<sg%>%<po2sg%>@D.wa@@D.su@:%>yki@D.wa@@D.su@ V-lla-NOM ; ! esta forma la evitan (= 1>fut, 2>3 pp/pf)
%<p1%>%<sg%>%<po2pl%>@D.wa@@D.su@:%>ykichis@D.wa@@D.su@ V-lla-NOM ; ! podría ser también p1ex>po2pl
%<p1ex%>%<pl%>%<po2sp%>@D.wa@@D.su@:%>ykiku@D.wa@@D.su@ V-lla-NOM ;
%<p1%>%<sg%>%<po2sg%>@D.wa@@D.su@:%>y@D.wa@@D.su@ V-lla-NOM ; ! + qan(kuna)ta
%<p1%>%<sg%>%<po2pl%>@D.wa@@D.su@:%>y@D.wa@@D.su@ V-lla-NOM ; ! Dir/LR - podría ser también p1ex>po2pl
%<p1ex%>%<pl%>%<po2sp%>@D.wa@@D.su@:%>yku@D.wa@@D.su@ V-lla-NOM ; ! Dir/LR + qan(kuna)ta
%<p3%>%<sg%>%<po2sg%>@D.wa@@R.su.pres@:%>yki@D.wa@@R.su.pres@ V-lla-NOM ;
%<p3%>%<sp%>%<po2pl%>@D.wa@@R.su.pres@:%>ykichis@D.wa@@R.su.pres@ V-lla-NOM ;
%<p3%>%<pl%>%<po2sg%>@D.wa@@R.su.pres@:%>ykiku@D.wa@@R.su.pres@ V-lla-NOM ;
%<p3%>%<sg%>%<po2sg%>@D.wa@@D.su@:%>suyki@D.wa@@D.su@ V-lla-NOM ;
%<p3%>%<sp%>%<po2pl%>@D.wa@@D.su@:%>suykichis@D.wa@@D.su@ V-lla-NOM ;
%<p3%>%<pl%>%<po2sg%>@D.wa@@D.su@:%>suykiku@D.wa@@D.su@ V-lla-NOM ;
%<p3%>%<sg%>%<po2sg%>@D.wa@@D.su@:%>sunki@D.wa@@D.su@ V-lla-NOM ; ! Dir/LR
%<p3%>%<sp%>%<po2pl%>@D.wa@@D.su@:%>sunkichis@D.wa@@D.su@ V-lla-NOM ; ! Dir/LR
%<p3%>%<pl%>%<po2sg%>@D.wa@@D.su@:%>sunkiku@D.wa@@D.su@ V-lla-NOM ; ! Dir/LR
LEXICON V-SUB-spa-qti
! objeto 3a persona
%<p1%>%<sg%>%<po3sp%>@D.wa@@D.su@:%>y@D.wa@@D.su@ V-lla-ADV ;
%<p1ex%>%<pl%>%<po3sp%>@D.wa@@D.su@:%>yku@D.wa@@D.su@ V-lla-ADV ;
%<p2%>%<sg%>%<po3sp%>@D.wa@@D.su@:%>yki@D.wa@@D.su@ V-lla-ADV ;
%<p2%>%<pl%>%<po3sp%>@D.wa@@D.su@:%>ykichis@D.wa@@D.su@ V-lla-ADV ;
%<p3%>%<sg%>%<po3sp%>@D.wa@@D.su@:%>n@D.wa@@D.su@ V-lla-ADV ;
%<p3%>%<pl%>%<po3sp%>@D.wa@@D.su@:%>nku@D.wa@@D.su@ V-lla-ADV ;
%<p1in%>%<pl%>%<po3sp%>@D.wa@@D.su@:%>nchis@D.wa@@D.su@ V-lla-ADV ;
! objeto 1a persona
%<p2%>%<sg%>%<po1sg%>@R.wa.pres@@D.su@:%>yki@R.wa.pres@@D.su@ V-lla-ADV ;
%<p2%>%<sg%>%<po1ex%>@R.wa.pres@@D.su@:%>ykiku@R.wa.pres@@D.su@ V-lla-ADV ;
%<p2%>%<pl%>%<po1sp%>@R.wa.pres@@D.su@:%>ykichis@R.wa.pres@@D.su@ V-lla-ADV ;
%<p3%>%<sg%>%<po1sg%>@R.wa.pres@@D.su@:%>n@R.wa.pres@@D.su@ V-lla-ADV ;
%<p3%>%<sp%>%<po1sp%>@R.wa.pres@@D.su@:%>nku@R.wa.pres@@D.su@ V-lla-ADV ;
%<p3%>%<sp%>%<po1in%>@R.wa.pres@@D.su@:%>nchis@R.wa.pres@@D.su@ V-lla-ADV ;
! objeto 2a persona
%<p1%>%<sg%>%<po2sg%>@D.wa@@D.su@:%>yki@D.wa@@D.su@ V-lla-ADV ; ! esta forma la evitan (= 2>3)
%<p1%>%<sg%>%<po2pl%>@D.wa@@D.su@:%>ykichis@D.wa@@D.su@ V-lla-ADV ; ! podría ser también p1ex>po2pl
%<p1ex%>%<pl%>%<po2sp%>@D.wa@@D.su@:%>ykiku@D.wa@@D.su@ V-lla-ADV ; ! = 2>1ex
%<p1%>%<sg%>%<po2sg%>@D.wa@@D.su@:%>y@D.wa@@D.su@ V-lla-ADV ; ! + qan(kuna)ta
%<p1%>%<sg%>%<po2pl%>@D.wa@@D.su@:%>y@D.wa@@D.su@ V-lla-ADV ; ! Dir/LR - podría ser también p1ex>po2pl
%<p1ex%>%<pl%>%<po2sp%>@D.wa@@D.su@:%>yku@D.wa@@D.su@ V-lla-ADV ; ! Dir/LR + qan(kuna)ta
%<p3%>%<sg%>%<po2sg%>@D.wa@@R.su.pres@:%>yki@D.wa@@R.su.pres@ V-lla-ADV ;
%<p3%>%<sp%>%<po2pl%>@D.wa@@R.su.pres@:%>ykichis@D.wa@@R.su.pres@ V-lla-ADV ;
%<p3%>%<pl%>%<po2sg%>@D.wa@@R.su.pres@:%>ykiku@D.wa@@R.su.pres@ V-lla-ADV ;
%<p3%>%<sg%>%<po2sg%>@D.wa@@D.qti@@D.su@:%>suyki@D.wa@@D.qti@@D.su@ V-lla-ADV ;
%<p3%>%<sp%>%<po2pl%>@D.wa@@D.qti@@D.su@:%>suykichis@D.wa@@D.qti@@D.su@ V-lla-ADV ;
%<p3%>%<pl%>%<po2sg%>@D.wa@@D.qti@@D.su@:%>suykiku@D.wa@@D.su@ V-lla-ADV ;
%<p3%>%<sg%>%<po2sg%>@D.wa@@D.qti@@D.su@:%>sunki@D.wa@@D.qti@@D.su@ V-lla-ADV ; ! Dir/LR
%<p3%>%<sp%>%<po2pl%>@D.wa@@D.qti@@D.su@:%>sunkichis@D.wa@@D.qti@@D.su@ V-lla-ADV ; ! Dir/LR
%<p3%>%<pl%>%<po2sg%>@D.wa@@D.qti@@D.su@:%>sunkiku@D.wa@@D.qti@@D.su@ V-lla-ADV ; ! Dir/LR
LEXICON V-SUB-q
! objeto 3a persona
!%<po3sp%>@D.wa@@D.su@:@D.wa@@D.su@ V-lla-NOM ; ! Dir/LR - -q (es la forma preferida)
! pero -q según el tipo de construcción puede ser cualquier persona
%<po3sg%>@D.wa@@D.su@:%>n@D.wa@@D.su@ V-lla-NOM ; ! Dir/LR - -q-ni-n (es preferible sólo -q)
%<po3pl%>@D.wa@@D.su@:%>nku@D.wa@@D.su@ V-lla-NOM ; ! Dir/LR - -q-ni-n-ku (es preferible sólo -q-(ni-n))
! objeto 1a persona
%<po1sg%>@D.su@:%>y@D.su@ V-lla-NOM ; ! -(wa)-q-ni-(lla)-y
%<po1ex%>@D.su@:%>yku@D.su@ V-lla-NOM ; ! -(wa)-q-ni-(lla)-y-ku
%<po1in%>@D.su@:%>nchis@D.su@ V-lla-NOM ; ! -(wa)-q-ni-(lla)-nchis
! objeto 2a persona
%<po2sg%>@D.wa@:%>yki@D.wa@ V-lla-NOM ; ! -(su)-q-ni-(lla)-yki
%<po2pl%>@D.wa@:%>ykichis@D.wa@ V-lla-NOM ; ! -(su)-q-ni-(lla)-yki-chis
! las formas con -su probablemente más frecuentes, sobre todo para 3>2
LEXICON V-lla-NOM
! para poner en las subordinaciones nominales la etiqueta del limitativo después de las de persona
%<lim%>@R.lim.pres@:@R.lim.pres@ N-FLEX-Plural ;
@D.lim@:@D.lim@ N-FLEX-Plural ;
! el limitativo puede entrar todavía después del plural
! después de las formas con -ku no debe haber plural :-(
LEXICON V-lla-ADV
! para poner en las subordinaciones adverbiales la etiqueta del limitativo después de las de persona
%<lim%>@R.lim.pres@:@R.lim.pres@ CLIT-puni ;
%<lim%>@D.lim@:%>lla@D.lim@ CLIT-puni ; ! posiblemente formas como -spa-y-lla
@D.lim@:@D.lim@ CLIT-puni ;
LEXICON V-TMSub
%<fti%>: V-FUT ;
%<pri%>: V-PERS ;
%<imp%>: V-IMP ;
%<cni%>: V-POT ;
%<hab%>: V-HAB ;
! COND-POT pasado, HAB - mejor no, porque los clíticos entran antes del aux:
! riswanchu karqan, riswanpaschá karqan; rikuqchu kanki
%<past%>:%>rqa V-PERS ;
%<past%>:%>ra V-PERS ;
%<past%>%<p3%>%<sg%>%<po3sp%>@D.wa@:%>rqa@D.wa@ CLIT-puni ; ! Dir/LR
%<past%>%<p3%>%<pl%>%<po3sp%>@D.wa@:%>rqaku@D.wa@ CLIT-puni ; ! Dir/LR
%<past%>%<p3%>%<sg%>%<po1sg%>@R.wa.pres@:%>rqa@R.wa.pres@ CLIT-puni ; ! Dir/LR
%<past%>%<p3%>%<sp%>%<po1sp%>@R.wa.pres@:%>rqaku@R.wa.pres@ CLIT-puni ; ! Dir/LR
%<evid%>:%>sqa V-PERS ; ! sin -n 3suj. poner @P.sqa.pres@ ?
%<evid%>%<p3%>%<sg%>%<po3sp%>@D.wa@:%>sqa@D.wa@ CLIT-puni ;
%<evid%>%<p3%>%<pl%>%<po3sp%>@D.wa@:%>sqaku@D.wa@ CLIT-puni ;
%<evid%>%<p3%>%<sg%>%<po1sg%>@R.wa.pres@:%>sqa@R.wa.pres@ CLIT-puni ;
%<evid%>%<p3%>%<sp%>%<po1sp%>@R.wa.pres@:%>sqaku@R.wa.pres@ CLIT-puni ;
! SUBORDINACIONES ADVERBIALES
%<ger%>@D.wa@:%>spa@D.wa@ CLIT-lla ; ! formas sin marcas personales
%<ger%>%<po1sp%>@R.wa.pres@:%>spa@R.wa.pres@ CLIT-lla ; ! formas sin marcas personales
%<ger%>%<po1in%>@R.wa.pres@:%>spa@R.wa.pres@ CLIT-lla ; ! formas sin marcas personales
%<ger%>:%>spa V-SUB-spa-qti ; ! formas con marcas personales
%<ger%>@P.su.pres@:%>su%>spa@P.su.pres@ V-SUB-spa-qti ; ! formas con marcas personales
%<ger%>@P.lim.pres@:%>spa%>lla@P.lim.pres@ V-SUB-spa-qti ; ! formas con marcas personales
%<ger%>@P.su.pres@@P.lim.pres@:%>su%>spa%>lla@P.su.pres@@P.lim.pres@ V-SUB-spa-qti ; ! formas con m.p.
! cambiar etiqueta - ger2, ger_sd, sub...
%<ger%>@P.qti.pres@:%>qti@P.qti.pres@ V-SUB-spa-qti ;
%<ger%>@P.qti.pres@@P.su.pres@:%>su%>qti@P.qti.pres@@P.su.pres@ V-SUB-spa-qti ;
%<ger%>@P.qti.pres@@P.lim.pres@:%>qti%>lla@P.qti.pres@@P.lim.pres@ V-SUB-spa-qti ;
%<ger%>@P.qti.pres@@P.su.pres@@P.lim.pres@:%>su%>qti%>lla@P.qti.pres@@P.su.pres@@P.lim.pres@ V-SUB-spa-qti ;
! consecutivo (la acción sigue desp. de la del verbo principal), pero en AyQ gerundio simultáneo
%<cons%>@D.wa@:%>stin@D.wa@ CLIT-puni ;
%<cons%>%<lim%>@D.wa@:%>stillan@D.wa@ CLIT-puni ;
%<cons%>%<po1sp%>@R.wa.pres@:%>stin@R.wa.pres@ CLIT-puni ;
%<cons%>%<po1sp%>%<lim%>@R.wa.pres@:%>stillan@R.wa.pres@ CLIT-puni ;
%<cons%>%<po1in%>@R.wa.pres@:%>stin@R.wa.pres@ CLIT-puni ;
%<cons%>%<po1in%>%<lim%>@R.wa.pres@:%>stillan@R.wa.pres@ CLIT-puni ;
! SUBORDINACIONES NOMINALES
%<inf%>:y V-SUB-y ;
%<inf%>@P.su.pres@:su%>y@P.su.pres@ V-SUB-y ;
%<inf%>%<lim%>@D.wa@:%>ylla@D.wa@ CLIT-puni ; ! uso adverbial (tapylla tapuwashan...)
%<inf%>%<dem%>%<lim%>@D.wa@:%>y%>cha%>lla@D.wa@ CLIT-puni ; ! uso adverbial (usqhaychalla...)
! %<inf%>@D.wa@:y@D.wa@ N-DER ;
%<pf%>:%>na V-SUB-na-sqa ;
%<pf%>@P.lim.pres@:%>na%>lla@P.lim.pres@ V-SUB-na-sqa ;
%<pf%>@P.su.pres@:%>su%>na@P.su.pres@ V-SUB-na-sqa ;
%<pf%>@P.su.pres@@P.lim.pres@:%>su%>na%>lla@P.su.pres@@P.lim.pres@ V-SUB-na-sqa ;
%<pf%>@D.wa@:%>na@D.wa@ N-FLEX-Plural ; ! para las formas no personales (nominalizaciones.. pero sin posesivos)
! %<pf%>@D.wa@:%>na@D.wa@ N-DER ;
%<pp%>:%>sqa V-SUB-na-sqa ;
%<pp%>@P.lim.pres@:%>sqa%>lla@P.lim.pres@ V-SUB-na-sqa ;
%<pp%>@P.su.pres@:%>su%>sqa@P.su.pres@ V-SUB-na-sqa ;
%<pp%>@P.su.pres@@P.lim.pres@:%>su%>sqa%>lla@P.su.pres@@P.lim.pres@ V-SUB-na-sqa ;
%<pp%>@D.wa@:%>sqa@D.wa@ N-FLEX-Plural ; ! para las formas no personales (nominalizaciones.. pero sin posesivos)
! %<pp%>@D.wa@:%>sqa@D.wa@ N-DER ;
%<ag%>@D.wa@:%>q@D.wa@ N-FLEX-Plural ; ! para las formas sin posesivo (objeto: 3sp)
! + %<po3sp%> ???
%<ag%>%<po1sp%>@R.wa.pres@:%>q@R.wa.pres@ N-FLEX-Plural ; ! Dir/LR
%<ag%>%<po1in%>@R.wa.pres@:%>q@R.wa.pres@ N-FLEX-Plural ; ! Dir/LR
%<ag%>%<po1ex%>@R.wa.pres@:%>q%>ku@R.wa.pres@ N-FLEX-Plural ; ! Dir/LR - talvez posible
%<ag%>%<po2sp%>@D.wa@:%>su%>q@D.wa@ N-FLEX-Plural ; ! Dir/LR - tal vez posible en AyQ?
%<ag%>:%>q%>ni V-SUB-q ;
%<ag%>@P.lim.pres@:%>q%>ni%>lla@P.lim.pres@ V-SUB-q ;
%<ag%>@P.su.pres@:%>su%>q%>ni@P.su.pres@ V-SUB-q ;
%<ag%>@P.su.pres@@P.lim.pres@:%>su%>q%>ni%>lla@P.su.pres@@P.lim.pres@ V-SUB-q ;
! %<ag%>@D.wa@:%>q@D.wa@ N-DER ;
! todas las nominalizaciones sin marca de persona, tal vez mejor pasarlos a N-DER ???
LEXICON V-LIM
%<lim%>:%>lla V-TMSub ; ! con las subordinaciones podría salir dos veces: *-lla-sqa-lla-yki, etc.
V-TMSub ;
LEXICON V-Progr
! Cusihuamán: wa-sha-rqa-su-
@P.wa.pres@:%>wa@P.wa.pres@ V-LIM ;
%<lim%>@P.wa.pres@:%>lla%>wa@P.wa.pres@ V-TMSub ; ! Dir/LR - talvez posible en algunas formas (-lla-wa-y 2>1imp)
! tapu-lla-wa-q-(niy) - tapu-wa-lla-q-(niy) - tapu-wa-q-nillay - tapu-wa-q-niy-lla ???
%<cont%>:%>sha V-LIM ;
%<cont%>@P.wa.pres@:%>wa%>sha@P.wa.pres@ V-LIM ;
%<cont%>@P.wa.pres@:%>sha%>wa@P.wa.pres@ V-LIM ; ! Dir/LR
%<cont%>%<lim%>:%>lla%>sha V-TMSub ; ! Dir/LR
%<cont%>%<lim%>@P.wa.pres@:%>wa%>lla%>sha@P.wa.pres@ V-TMSub ; ! Dir/LR
%<cont%>%<lim%>@P.wa.pres@:%>lla%>wa%>sha@P.wa.pres@ V-TMSub ; ! Dir/LR
%<cont%>%<lim%>@P.wa.pres@:%>sha%>lla%>wa@P.wa.pres@ V-TMSub ; ! Dir/LR
%<cont%>%<lim%>@P.wa.pres@:%>lla%>sha%>wa@P.wa.pres@ V-TMSub ; ! Dir/LR
! formas ayacuchanas (apurimeñas)
%<cont%>:%>chka V-LIM ; ! Dir/LR
%<cont%>@P.wa.pres@:%>wa%>chka@P.wa.pres@ V-LIM ; ! Dir/LR
%<cont%>@P.wa.pres@:%>chka%>wa@P.wa.pres@ V-LIM ; ! Dir/LR
%<cont%>%<lim%>:%>lla%>chka V-TMSub ; ! Dir/LR
%<cont%>%<lim%>@P.wa.pres@:%>wa%>lla%>chka@P.wa.pres@ V-TMSub ; ! Dir/LR
%<cont%>%<lim%>@P.wa.pres@:%>lla%>wa%>chka@P.wa.pres@ V-TMSub ; ! Dir/LR
%<cont%>%<lim%>@P.wa.pres@:%>chka%>lla%>wa@P.wa.pres@ V-TMSub ; ! Dir/LR
%<cont%>%<lim%>@P.wa.pres@:%>lla%>chka%>wa@P.wa.pres@ V-TMSub ; ! Dir/LR
%<cont%>:%>shka V-LIM ; ! Dir/LR
%<cont%>%<lim%>:%>lla%>shka V-TMSub ; ! Dir/LR
%<cont%>@P.wa.pres@:%>wa%>shka@P.wa.pres@ V-LIM ; ! Dir/LR
%<cont%>@P.wa.pres@:%>shka%>wa@P.wa.pres@ V-LIM ; ! Dir/LR
! AyQ -su-chka-, -su-rqa-, -su-sqa
! BoQ -sa
! %<cont%>:%>sa V-LIM ; ! Dir/LR - pero ambig. -sa-q × -saq
! %<cont%>%<lim%>:%>lla%>sa V-TMSub ; ! Dir/LR
! %<cont%>@P.wa.pres@:%>wa%>sa@P.wa.pres@ V-LIM ; ! Dir/LR
%<cont%>@P.wa.pres@:%>sa%>wa@P.wa.pres@ V-LIM ; ! Dir/LR
V-LIM ;
LEXICON V-FUT
! objeto 3a persona
%<p1%>%<sg%>%<po3sp%>@D.wa@:%>saq@D.wa@ CLIT-puni ;
%<p1ex%>%<pl%>%<po3sp%>@D.wa@:%>saqku@D.wa@ CLIT-puni ;
%<p2%>%<sg%>%<po3sp%>@D.wa@:%>nki@D.wa@ CLIT-puni ;
%<p2%>%<pl%>%<po3sp%>@D.wa@:%>nkichis@D.wa@ CLIT-puni ;
%<p3%>%<sg%>%<po3sp%>@D.wa@:%>nqa@D.wa@ CLIT-puni ;
%<p3%>%<pl%>%<po3sp%>@D.wa@:%>nqaku@D.wa@ CLIT-puni ;
%<p1in%>%<pl%>%<po3sp%>@D.wa@:%>sun@D.wa@ CLIT-puni ;
%<p1in%>%<pl%>%<po3sp%>@D.wa@:%>sunchis@D.wa@ CLIT-puni ;
! objeto 1a persona
%<p2%>%<sg%>%<po1sg%>@R.wa.pres@:%>nki@R.wa.pres@ CLIT-puni ;
%<p2%>%<sg%>%<po1ex%>@R.wa.pres@:%>nkiku@R.wa.pres@ CLIT-puni ;
%<p2%>%<pl%>%<po1sp%>@R.wa.pres@:%>nkichis@R.wa.pres@ CLIT-puni ;
%<p3%>%<sg%>%<po1sg%>@R.wa.pres@:%>nqa@R.wa.pres@ CLIT-puni ;
%<p3%>%<sp%>%<po1sp%>@R.wa.pres@:%>nqaku@R.wa.pres@ CLIT-puni ;
%<p3%>%<sp%>%<po1in%>@R.wa.pres@:%>sun@R.wa.pres@ CLIT-puni ;
%<p3%>%<sp%>%<po1in%>@R.wa.pres@:%>sunchis@R.wa.pres@ CLIT-puni ;
! objeto 2a persona