summaryrefslogtreecommitdiff
path: root/Master/texmf-dist/tex/latex/hyperref/puenc.def
blob: 91e8e1e837277e7dc194b54a924ed1fa8bc6f030 (plain)
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
%%
%% This is file `puenc.def',
%% generated with the docstrip utility.
%%
%% The original source files were:
%%
%% hyperref.dtx  (with options: `puenc')
%% 
%% File: hyperref.dtx Copyright 1995-2001 Sebastian Rahtz,
%% with portions written by David Carlisle and Heiko Oberdiek,
%% 2001-2011 Heiko Oberdiek.
%%
%% This file is part of the `Hyperref Bundle'.
%% -------------------------------------------
%%
%% This work may be distributed and/or modified under the
%% conditions of the LaTeX Project Public License, either version 1.3
%% of this license or (at your option) any later version.
%% The latest version of this license is in
%%   http://www.latex-project.org/lppl.txt
%% and version 1.3 or later is part of all distributions of LaTeX
%% version 2005/12/01 or later.
%%
%% This work has the LPPL maintenance status `maintained'.
%%
%% The Current Maintainer of this work is Heiko Oberdiek.
%%
%% The list of all files belonging to the `Hyperref Bundle' is
%% given in the file `manifest.txt'.
%%
\ProvidesFile{puenc.def}
  [2011/09/28 v6.82i %
  Hyperref: PDF Unicode definition (HO)]
\DeclareFontEncoding{PU}{}{}
\DeclareTextCommand{\`}{PU}[1]{#1\83\000}% U+0300
\DeclareTextCommand{\'}{PU}[1]{#1\83\001}% U+0301
\DeclareTextCommand{\^}{PU}[1]{#1\83\002}% U+0302
\DeclareTextCommand{\~}{PU}[1]{#1\83\003}% U+0303
\DeclareTextCommand{\=}{PU}[1]{#1\83\004}% U+0304
\DeclareTextCommand{\u}{PU}[1]{#1\83\006}% U+0306
\DeclareTextCommand{\U}{PU}[1]{#1\83\006}% U+0306
\DeclareTextCommand{\.}{PU}[1]{#1\83\007}% U+0307
\DeclareTextCommand{\"}{PU}[1]{#1\83\010}% U+0308
\DeclareTextCommand{\r}{PU}[1]{#1\83\012}% U+030A
\DeclareTextCommand{\H}{PU}[1]{#1\83\013}% U+030B
\DeclareTextCommand{\v}{PU}[1]{#1\83\014}% U+030C
\DeclareTextCommand{\G}{PU}[1]{#1\83\017}% U+030F
\DeclareTextCommand{\C}{PU}[1]{#1\83\017}% U+030F
\DeclareTextCommand{\newtie}{PU}[1]{#1\83\021}% U+0311
\DeclareTextCommand{\d}{PU}[1]{#1\83\043}% U+0323
\DeclareTextCommand{\b}{PU}[1]{#1\83\061}% U+0331
\DeclareTextCommand{\c}{PU}[1]{#1\83\047}% U+0327
\DeclareTextCommand{\k}{PU}[1]{#1\83\050}% U+0328
\DeclareTextCommand{\t}{PU}[1]{#1\83\141}% U+0361
\DeclareTextCommand{\textcircled}{PU}[1]{#1\9040\335}% U+20DD
\DeclareTextCompositeCommand{\`}{PU}{\@empty}{\textasciigrave}
\DeclareTextCompositeCommand{\'}{PU}{\@empty}{\textacute}
\DeclareTextCompositeCommand{\^}{PU}{\@empty}{\textasciicircum}
\DeclareTextCompositeCommand{\~}{PU}{\@empty}{\texttilde}
\DeclareTextCompositeCommand{\"}{PU}{\@empty}{\textasciidieresis}
\DeclareTextCompositeCommand{\r}{PU}{\@empty}{\textring}
\DeclareTextCompositeCommand{\v}{PU}{\@empty}{\textasciicaron}
\DeclareTextCompositeCommand{\.}{PU}{\@empty}{\textdotaccent}
\DeclareTextCompositeCommand{\c}{PU}{\@empty}{\textcedilla}
\DeclareTextCompositeCommand{\u}{PU}{\@empty}{\textasciibreve}
\DeclareTextCompositeCommand{\G}{PU}{\@empty}{\textdoublegrave}
\DeclareTextCompositeCommand{\=}{PU}{\@empty}{\textasciimacron}
\DeclareTextCompositeCommand{\H}{PU}{\@empty}{\texthungarumlaut}
\DeclareTextCompositeCommand{\k}{PU}{\@empty}{\textogonek}
\DeclareTextCompositeCommand{\b}{PU}{\@empty}{\textmacronbelow}
\DeclareTextCompositeCommand{\d}{PU}{\@empty}{\textdotbelow}
\DeclareTextCompositeCommand{\t}{PU}{\@empty}{\texttie}
\DeclareTextCompositeCommand{\newtie}{PU}{\@empty}{\textnewtie}
\DeclareTextCompositeCommand{\textcircled}{PU}{\@empty}{\textbigcircle}
\DeclareTextCompositeCommand{\`}{PU}{\ }{\textasciigrave}
\DeclareTextCompositeCommand{\'}{PU}{\ }{\textacute}
\DeclareTextCompositeCommand{\^}{PU}{\ }{\textasciicircum}
\DeclareTextCompositeCommand{\~}{PU}{\ }{\texttilde}
\DeclareTextCompositeCommand{\"}{PU}{\ }{\textasciidieresis}
\DeclareTextCompositeCommand{\r}{PU}{\ }{\textring}
\DeclareTextCompositeCommand{\v}{PU}{\ }{\textasciicaron}
\DeclareTextCompositeCommand{\.}{PU}{\ }{\textdotaccent}
\DeclareTextCompositeCommand{\c}{PU}{\ }{\textcedilla}
\DeclareTextCompositeCommand{\u}{PU}{\ }{\textasciibreve}
\DeclareTextCompositeCommand{\G}{PU}{\ }{\textdoublegrave}
\DeclareTextCompositeCommand{\=}{PU}{\ }{\textasciimacron}
\DeclareTextCompositeCommand{\H}{PU}{\ }{\texthungarumlaut}
\DeclareTextCompositeCommand{\k}{PU}{\ }{\textogonek}
\DeclareTextCompositeCommand{\b}{PU}{\ }{\textmacronbelow}
\DeclareTextCompositeCommand{\d}{PU}{\ }{\textdotbelow}
\DeclareTextCompositeCommand{\t}{PU}{\ }{\texttie}
\DeclareTextCompositeCommand{\newtie}{PU}{\ }{\textnewtie}
\DeclareTextCompositeCommand{\textcircled}{PU}{\ }{\textbigcircle}
\DeclareTextCommand{\capitalcedilla}{PU}[1]{\c{#1}}
\DeclareTextCommand{\capitalogonek}{PU}[1]{\k{#1}}
\DeclareTextCommand{\capitalgrave}{PU}[1]{\`{#1}}
\DeclareTextCommand{\capitalacute}{PU}[1]{\'{#1}}
\DeclareTextCommand{\capitalcircumflex}{PU}[1]{\^{#1}}
\DeclareTextCommand{\capitaltilde}{PU}[1]{\~{#1}}
\DeclareTextCommand{\capitaldieresis}{PU}[1]{\"{#1}}
\DeclareTextCommand{\capitalhungarumlaut}{PU}[1]{\H{#1}}
\DeclareTextCommand{\capitalring}{PU}[1]{\r{#1}}
\DeclareTextCommand{\capitalcaron}{PU}[1]{\v{#1}}
\DeclareTextCommand{\capitalbreve}{PU}[1]{\u{#1}}
\DeclareTextCommand{\capitalmacron}{PU}[1]{\={#1}}
\DeclareTextCommand{\capitaldotaccent}{PU}[1]{\.{#1}}
\DeclareTextCommand{\capitaltie}{PU}[1]{\t{#1}}
\DeclareTextCommand{\capitalnewtie}{PU}[1]{\newtie{#1}}
\DeclareTextCommand{\textHT}{PU}{\80\011}% U+0009
\DeclareTextCommand{\textLF}{PU}{\80\012}% U+000A
\DeclareTextCommand{\textCR}{PU}{\80\015}% U+000D
\DeclareTextCommand{\textquotedbl}{PU}{\string"}% \80\042 U+0022
\DeclareTextCommand{\textnumbersign}{PU}{\80\043}% U+0023
\DeclareTextCommand{\textdollar}{PU}{\80\044}% U+0024
\DeclareTextCommand{\textpercent}{PU}{\80\045}% U+0025
\DeclareTextCommand{\textampersand}{PU}{\80\046}% U+0026
\DeclareTextCommand{\textquotesingle}{PU}{\80\047}% U+0027
\DeclareTextCommand{\textparenleft}{PU}{\80\050}% U+0028
\DeclareTextCommand{\textparenright}{PU}{\80\051}% U+0029
\DeclareTextCommand{\textasteriskcentered}{PU}{\80\052}% U+002A (?)
\DeclareTextCommand{\textless}{PU}{<}% \80\074 U+003C
\DeclareTextCommand{\textgreater}{PU}{>}% \80\076 U+003E
\DeclareTextCommand{\textbackslash}{PU}{\80\134}% U+005C
\DeclareTextCommand{\textasciicircum}{PU}{\80\136}% U+005E
\DeclareTextCommand{\textunderscore}{PU}{\80\137}% U+005F
\DeclareTextCommand{\textasciigrave}{PU}{\80\140}% U+0060
\DeclareTextCompositeCommand{\.}{PU}{\i}{i} % \80\151 U+0069
\DeclareTextCompositeCommand{\.}{PU}{i}{i}% \80\151 U+0069
\DeclareTextCommand{\textbraceleft}{PU}{\80\173}% U+007B
\DeclareTextCommand{\textbar}{PU}{|}% \80\174 U+007C
\DeclareTextCommand{\textbraceright}{PU}{\80\175}% U+007D
\DeclareTextCommand{\textasciitilde}{PU}{\80\176}% U+007E
\DeclareTextCommand{\textexclamdown}{PU}{\80\241}% U+00A1
\DeclareTextCommand{\textcent}{PU}{\80\242}% U+00A2
\DeclareTextCommand{\textsterling}{PU}{\80\243}% U+00A3
\DeclareTextCommand{\textcurrency}{PU}{\80\244}% U+00A4
\DeclareTextCommand{\textyen}{PU}{\80\245}% U+00A5
\DeclareTextCommand{\textbrokenbar}{PU}{\80\246}% U+00A6
\DeclareTextCommand{\textsection}{PU}{\80\247}% U+00A7
\DeclareTextCommand{\textasciidieresis}{PU}{\80\250}% U+00A8
\DeclareTextCommand{\textcopyright}{PU}{\80\251}% U+00A9
\DeclareTextCommand{\textordfeminine}{PU}{\80\252}% U+00AA
\DeclareTextCommand{\guillemotleft}{PU}{\80\253}% U+00AB
\DeclareTextCommand{\textlogicalnot}{PU}{\80\254}% U+00AC
\DeclareTextCommand{\textlnot}{PU}{\80\254}% U+00AC
\DeclareTextCommand{\textregistered}{PU}{\80\256}% U+00AE
\DeclareTextCommand{\textasciimacron}{PU}{\80\257}% U+00AF
\DeclareTextCommand{\textdegree}{PU}{\80\260}% U+00B0
\DeclareTextCommand{\textplusminus}{PU}{\80\261}% U+00B1
\DeclareTextCommand{\texttwosuperior}{PU}{\80\262}% U+00B2
\DeclareTextCommand{\textthreesuperior}{PU}{\80\263}% U+00B3
\DeclareTextCommand{\textacute}{PU}{\80\264}% U+00B4
\DeclareTextCommand{\textasciiacute}{PU}{\80\264}% U+00B4
\DeclareTextCommand{\textmu}{PU}{\80\265}% U+00B5
\DeclareTextCommand{\textparagraph}{PU}{\80\266}% U+00B6
\DeclareTextCommand{\textperiodcentered}{PU}{\80\267}% U+00B7
\DeclareTextCommand{\textcedilla}{PU}{\80\270}% U+00B8
\DeclareTextCommand{\textonesuperior}{PU}{\80\271}% U+00B9
\DeclareTextCommand{\textordmasculine}{PU}{\80\272}% U+00BA
\DeclareTextCommand{\guillemotright}{PU}{\80\273}% U+00BB
\DeclareTextCommand{\textonequarter}{PU}{\80\274}% U+00BC
\DeclareTextCommand{\textonehalf}{PU}{\80\275}% U+00BD
\DeclareTextCommand{\textthreequarters}{PU}{\80\276}% U+00BE
\DeclareTextCommand{\textquestiondown}{PU}{\80\277}% U+00BF
\DeclareTextCompositeCommand{\`}{PU}{A}{\80\300}% U+00C0
\DeclareTextCompositeCommand{\'}{PU}{A}{\80\301}% U+00C1
\DeclareTextCompositeCommand{\^}{PU}{A}{\80\302}% U+00C2
\DeclareTextCompositeCommand{\~}{PU}{A}{\80\303}% U+00C3
\DeclareTextCompositeCommand{\"}{PU}{A}{\80\304}% U+00C4
\DeclareTextCompositeCommand{\r}{PU}{A}{\80\305}% U+00C5
\DeclareTextCommand{\AE}{PU}{\80\306}% U+00C6
\DeclareTextCompositeCommand{\c}{PU}{C}{\80\307}% U+00C7
\DeclareTextCompositeCommand{\`}{PU}{E}{\80\310}% U+00C8
\DeclareTextCompositeCommand{\'}{PU}{E}{\80\311}% U+00C9
\DeclareTextCompositeCommand{\^}{PU}{E}{\80\312}% U+00CA
\DeclareTextCompositeCommand{\"}{PU}{E}{\80\313}% U+00CB
\DeclareTextCompositeCommand{\`}{PU}{I}{\80\314}% U+00CC
\DeclareTextCompositeCommand{\'}{PU}{I}{\80\315}% U+00CD
\DeclareTextCompositeCommand{\^}{PU}{I}{\80\316}% U+00CE
\DeclareTextCompositeCommand{\"}{PU}{I}{\80\317}% U+00CF
\DeclareTextCommand{\DH}{PU}{\80\320}% U+00D0
\DeclareTextCompositeCommand{\~}{PU}{N}{\80\321}% U+00D1
\DeclareTextCompositeCommand{\`}{PU}{O}{\80\322}% U+00D2
\DeclareTextCompositeCommand{\'}{PU}{O}{\80\323}% U+00D3
\DeclareTextCompositeCommand{\^}{PU}{O}{\80\324}% U+00D4
\DeclareTextCompositeCommand{\~}{PU}{O}{\80\325}% U+00D5
\DeclareTextCompositeCommand{\"}{PU}{O}{\80\326}% U+00D6
\DeclareTextCommand{\textmultiply}{PU}{\80\327}% U+00D7
\DeclareTextCommand{\O}{PU}{\80\330}% U+00D8
\DeclareTextCompositeCommand{\`}{PU}{U}{\80\331}% U+00D9
\DeclareTextCompositeCommand{\'}{PU}{U}{\80\332}% U+00DA
\DeclareTextCompositeCommand{\^}{PU}{U}{\80\333}% U+00DB
\DeclareTextCompositeCommand{\"}{PU}{U}{\80\334}% U+00DC
\DeclareTextCompositeCommand{\'}{PU}{Y}{\80\335}% U+00DD
\DeclareTextCommand{\TH}{PU}{\80\336}% U+00DE
\DeclareTextCommand{\ss}{PU}{\80\337}% U+00DF
\DeclareTextCompositeCommand{\`}{PU}{a}{\80\340}% U+00E0
\DeclareTextCompositeCommand{\'}{PU}{a}{\80\341}% U+00E1
\DeclareTextCompositeCommand{\^}{PU}{a}{\80\342}% U+00E2
\DeclareTextCompositeCommand{\~}{PU}{a}{\80\343}% U+00E3
\DeclareTextCompositeCommand{\"}{PU}{a}{\80\344}% U+00E4
\DeclareTextCompositeCommand{\r}{PU}{a}{\80\345}% U+00E5
\DeclareTextCommand{\ae}{PU}{\80\346}% U+00E6
\DeclareTextCompositeCommand{\c}{PU}{c}{\80\347}% U+00E7
\DeclareTextCompositeCommand{\`}{PU}{e}{\80\350}% U+00E8
\DeclareTextCompositeCommand{\'}{PU}{e}{\80\351}% U+00E9
\DeclareTextCompositeCommand{\^}{PU}{e}{\80\352}% U+00EA
\DeclareTextCompositeCommand{\"}{PU}{e}{\80\353}% U+00EB
\DeclareTextCompositeCommand{\`}{PU}{i}{\80\354}% U+00EC
\DeclareTextCompositeCommand{\`}{PU}{\i}{\80\354}% U+00EC
\DeclareTextCompositeCommand{\'}{PU}{i}{\80\355}% U+00ED
\DeclareTextCompositeCommand{\'}{PU}{\i}{\80\355}% U+00ED
\DeclareTextCompositeCommand{\^}{PU}{i}{\80\356}% U+00EE
\DeclareTextCompositeCommand{\^}{PU}{\i}{\80\356}% U+00EE
\DeclareTextCompositeCommand{\"}{PU}{i}{\80\357}% U+00EF
\DeclareTextCompositeCommand{\"}{PU}{\i}{\80\357}% U+00EF
\DeclareTextCommand{\dh}{PU}{\80\360}% U+00F0
\DeclareTextCompositeCommand{\~}{PU}{n}{\80\361}% U+00F1
\DeclareTextCompositeCommand{\`}{PU}{o}{\80\362}% U+00F2
\DeclareTextCompositeCommand{\'}{PU}{o}{\80\363}% U+00F3
\DeclareTextCompositeCommand{\^}{PU}{o}{\80\364}% U+00F4
\DeclareTextCompositeCommand{\~}{PU}{o}{\80\365}% U+00F5
\DeclareTextCompositeCommand{\"}{PU}{o}{\80\366}% U+00F6
\DeclareTextCommand{\textdivide}{PU}{\80\367}% U+00F7
\DeclareTextCommand{\o}{PU}{\80\370}% U+00F8
\DeclareTextCompositeCommand{\`}{PU}{u}{\80\371}% U+00F9
\DeclareTextCompositeCommand{\'}{PU}{u}{\80\372}% U+00FA
\DeclareTextCompositeCommand{\^}{PU}{u}{\80\373}% U+00FB
\DeclareTextCompositeCommand{\"}{PU}{u}{\80\374}% U+00FC
\DeclareTextCompositeCommand{\'}{PU}{y}{\80\375}% U+00FD
\DeclareTextCommand{\th}{PU}{\80\376}% U+00FE
\DeclareTextCompositeCommand{\"}{PU}{y}{\80\377}% U+00FF
\DeclareTextCompositeCommand{\=}{PU}{A}{\81\000}% U+0100
\DeclareTextCompositeCommand{\=}{PU}{a}{\81\001}% U+0101
\DeclareTextCompositeCommand{\u}{PU}{A}{\81\002}% U+0102
\DeclareTextCompositeCommand{\u}{PU}{a}{\81\003}% U+0103
\DeclareTextCompositeCommand{\k}{PU}{A}{\81\004}% U+0104
\DeclareTextCompositeCommand{\k}{PU}{a}{\81\005}% U+0105
\DeclareTextCompositeCommand{\'}{PU}{C}{\81\006}% U+0106
\DeclareTextCompositeCommand{\'}{PU}{c}{\81\007}% U+0107
\DeclareTextCompositeCommand{\^}{PU}{C}{\81\010}% U+0108
\DeclareTextCompositeCommand{\^}{PU}{c}{\81\011}% U+0109
\DeclareTextCompositeCommand{\.}{PU}{C}{\81\012}% U+010A
\DeclareTextCompositeCommand{\.}{PU}{c}{\81\013}% U+010B
\DeclareTextCompositeCommand{\v}{PU}{C}{\81\014}% U+010C
\DeclareTextCompositeCommand{\v}{PU}{c}{\81\015}% U+010D
\DeclareTextCompositeCommand{\v}{PU}{D}{\81\016}% U+010E
\DeclareTextCompositeCommand{\v}{PU}{d}{\81\017}% U+010F
\DeclareTextCommand{\DJ}{PU}{\81\020}% U+0110
\DeclareTextCommand{\dj}{PU}{\81\021}% U+0111
\DeclareTextCompositeCommand{\=}{PU}{E}{\81\022}% U+0112
\DeclareTextCompositeCommand{\=}{PU}{e}{\81\023}% U+0113
\DeclareTextCompositeCommand{\u}{PU}{E}{\81\024}% U+0114
\DeclareTextCompositeCommand{\u}{PU}{e}{\81\025}% U+0115
\DeclareTextCompositeCommand{\.}{PU}{E}{\81\026}% U+0116
\DeclareTextCompositeCommand{\.}{PU}{e}{\81\027}% U+0117
\DeclareTextCompositeCommand{\k}{PU}{E}{\81\030}% U+0118
\DeclareTextCompositeCommand{\k}{PU}{e}{\81\031}% U+0119
\DeclareTextCompositeCommand{\v}{PU}{E}{\81\032}% U+011A
\DeclareTextCompositeCommand{\v}{PU}{e}{\81\033}% U+011B
\DeclareTextCompositeCommand{\^}{PU}{G}{\81\034}% U+011C
\DeclareTextCompositeCommand{\^}{PU}{g}{\81\035}% U+011D
\DeclareTextCompositeCommand{\u}{PU}{G}{\81\036}% U+011E
\DeclareTextCompositeCommand{\u}{PU}{g}{\81\037}% U+011F
\DeclareTextCompositeCommand{\.}{PU}{G}{\81\040}% U+0120
\DeclareTextCompositeCommand{\.}{PU}{g}{\81\041}% U+0121
\DeclareTextCompositeCommand{\c}{PU}{G}{\81\042}% U+0122
\DeclareTextCompositeCommand{\c}{PU}{g}{\81\043}% U+0123
\DeclareTextCompositeCommand{\^}{PU}{H}{\81\044}% U+0124
\DeclareTextCompositeCommand{\^}{PU}{h}{\81\045}% U+0125
\DeclareTextCommand{\textHslash}{PU}{\81\046}% U+0126
\DeclareTextCommand{\texthslash}{PU}{\81\047}% U+0127
\DeclareTextCompositeCommand{\~}{PU}{I}{\81\050}% U+0128
\DeclareTextCompositeCommand{\~}{PU}{i}{\81\051}% U+0129
\DeclareTextCompositeCommand{\~}{PU}{\i}{\81\051}% U+0129
\DeclareTextCompositeCommand{\=}{PU}{I}{\81\052}% U+012A
\DeclareTextCompositeCommand{\=}{PU}{i}{\81\053}% U+012B
\DeclareTextCompositeCommand{\=}{PU}{\i}{\81\053}% U+012B
\DeclareTextCompositeCommand{\u}{PU}{I}{\81\054}% U+012C
\DeclareTextCompositeCommand{\u}{PU}{i}{\81\055}% U+012D
\DeclareTextCompositeCommand{\u}{PU}{\i}{\81\055}% U+012D
\DeclareTextCompositeCommand{\k}{PU}{I}{\81\056}% U+012E
\DeclareTextCompositeCommand{\k}{PU}{i}{\81\057}% U+012F
\DeclareTextCompositeCommand{\k}{PU}{\i}{\81\057}% U+012F
\DeclareTextCompositeCommand{\.}{PU}{I}{\81\060}% U+0130
\DeclareTextCommand{\i}{PU}{\81\061}% U+0131
\DeclareTextCommand{\IJ}{PU}{\81\062}% U+0132
\DeclareTextCommand{\ij}{PU}{\81\063}% U+0133
\DeclareTextCompositeCommand{\^}{PU}{J}{\81\064}% U+0134
\DeclareTextCompositeCommand{\^}{PU}{j}{\81\065}% U+0135
\DeclareTextCompositeCommand{\^}{PU}{\j}{\81\065}% U+0135
\DeclareTextCompositeCommand{\c}{PU}{K}{\81\066}% U+0136
\DeclareTextCompositeCommand{\c}{PU}{k}{\81\067}% U+0137
\DeclareTextCommand{\textkra}{PU}{\81\070}% U+0138
\DeclareTextCompositeCommand{\'}{PU}{L}{\81\071}% U+0139
\DeclareTextCompositeCommand{\'}{PU}{l}{\81\072}% U+013A
\DeclareTextCompositeCommand{\c}{PU}{L}{\81\073}% U+013B
\DeclareTextCompositeCommand{\c}{PU}{l}{\81\074}% U+013C
\DeclareTextCompositeCommand{\v}{PU}{L}{\81\075}% U+013D
\DeclareTextCompositeCommand{\v}{PU}{l}{\81\076}% U+013E
\DeclareTextCompositeCommand{\.}{PU}{L}{\81\077}% U+013F
\DeclareTextCompositeCommand{\.}{PU}{l}{\81\100}% U+0140
\DeclareTextCommand{\L}{PU}{\81\101}% U+0141
\DeclareTextCommand{\l}{PU}{\81\102}% U+0142
\DeclareTextCompositeCommand{\'}{PU}{N}{\81\103}% U+0143
\DeclareTextCompositeCommand{\'}{PU}{n}{\81\104}% U+0144
\DeclareTextCompositeCommand{\c}{PU}{N}{\81\105}% U+0145
\DeclareTextCompositeCommand{\c}{PU}{n}{\81\106}% U+0146
\DeclareTextCompositeCommand{\v}{PU}{N}{\81\107}% U+0147
\DeclareTextCompositeCommand{\v}{PU}{n}{\81\110}% U+0148
\DeclareTextCommand{\textnapostrophe}{PU}{\81\111}% U+0149
\DeclareTextCommand{\NG}{PU}{\81\112}% U+014A
\DeclareTextCommand{\ng}{PU}{\81\113}% U+014B
\DeclareTextCompositeCommand{\=}{PU}{O}{\81\114}% U+014C
\DeclareTextCompositeCommand{\=}{PU}{o}{\81\115}% U+014D
\DeclareTextCompositeCommand{\u}{PU}{O}{\81\116}% U+014E
\DeclareTextCompositeCommand{\u}{PU}{o}{\81\117}% U+014F
\DeclareTextCompositeCommand{\H}{PU}{O}{\81\120}% U+0150
\DeclareTextCompositeCommand{\H}{PU}{o}{\81\121}% U+0151
\DeclareTextCommand{\OE}{PU}{\81\122}% U+0152
\DeclareTextCommand{\oe}{PU}{\81\123}% U+0153
\DeclareTextCompositeCommand{\'}{PU}{R}{\81\124}% U+0154
\DeclareTextCompositeCommand{\'}{PU}{r}{\81\125}% U+0155
\DeclareTextCompositeCommand{\c}{PU}{R}{\81\126}% U+0156
\DeclareTextCompositeCommand{\c}{PU}{r}{\81\127}% U+0157
\DeclareTextCompositeCommand{\v}{PU}{R}{\81\130}% U+0158
\DeclareTextCompositeCommand{\v}{PU}{r}{\81\131}% U+0159
\DeclareTextCompositeCommand{\'}{PU}{S}{\81\132}% U+015A
\DeclareTextCompositeCommand{\'}{PU}{s}{\81\133}% U+015B
\DeclareTextCompositeCommand{\^}{PU}{S}{\81\134}% U+015C
\DeclareTextCompositeCommand{\^}{PU}{s}{\81\135}% U+015D
\DeclareTextCompositeCommand{\c}{PU}{S}{\81\136}% U+015E
\DeclareTextCompositeCommand{\c}{PU}{s}{\81\137}% U+015F
\DeclareTextCompositeCommand{\v}{PU}{S}{\81\140}% U+0160
\DeclareTextCompositeCommand{\v}{PU}{s}{\81\141}% U+0161
\DeclareTextCompositeCommand{\c}{PU}{T}{\81\142}% U+0162
\DeclareTextCompositeCommand{\c}{PU}{t}{\81\143}% U+0163
\DeclareTextCompositeCommand{\v}{PU}{T}{\81\144}% U+0164
\DeclareTextCompositeCommand{\v}{PU}{t}{\81\145}% U+0165
\DeclareTextCommand{\textTslash}{PU}{\81\146}% U+0166
\DeclareTextCommand{\texttslash}{PU}{\81\147}% U+0167
\DeclareTextCompositeCommand{\~}{PU}{U}{\81\150}% U+0168
\DeclareTextCompositeCommand{\~}{PU}{u}{\81\151}% U+0169
\DeclareTextCompositeCommand{\=}{PU}{U}{\81\152}% U+016A
\DeclareTextCompositeCommand{\=}{PU}{u}{\81\153}% U+016B
\DeclareTextCompositeCommand{\u}{PU}{U}{\81\154}% U+016C
\DeclareTextCompositeCommand{\u}{PU}{u}{\81\155}% U+016D
\DeclareTextCompositeCommand{\r}{PU}{U}{\81\156}% U+016E
\DeclareTextCompositeCommand{\r}{PU}{u}{\81\157}% U+016F
\DeclareTextCompositeCommand{\H}{PU}{U}{\81\160}% U+0170
\DeclareTextCompositeCommand{\H}{PU}{u}{\81\161}% U+0171
\DeclareTextCompositeCommand{\k}{PU}{U}{\81\162}% U+0172
\DeclareTextCompositeCommand{\k}{PU}{u}{\81\163}% U+0173
\DeclareTextCompositeCommand{\^}{PU}{W}{\81\164}% U+0174
\DeclareTextCompositeCommand{\^}{PU}{w}{\81\165}% U+0175
\DeclareTextCompositeCommand{\^}{PU}{Y}{\81\166}% U+0176
\DeclareTextCompositeCommand{\^}{PU}{y}{\81\167}% U+0177
\DeclareTextCompositeCommand{\"}{PU}{Y}{\81\170}% U+0178
\DeclareTextCompositeCommand{\'}{PU}{Z}{\81\171}% U+0179
\DeclareTextCompositeCommand{\'}{PU}{z}{\81\172}% U+017A
\DeclareTextCompositeCommand{\.}{PU}{Z}{\81\173}% U+017B
\DeclareTextCompositeCommand{\.}{PU}{z}{\81\174}% U+017C
\DeclareTextCompositeCommand{\v}{PU}{Z}{\81\175}% U+017D
\DeclareTextCompositeCommand{\v}{PU}{z}{\81\176}% U+017E
\DeclareTextCommand{\textlongs}{PU}{\81\177}% U+017F
\DeclareTextCommand{\textflorin}{PU}{\81\222}% U+0192
\DeclareTextCompositeCommand{\v}{PU}{A}{\81\315}% U+01CD
\DeclareTextCompositeCommand{\v}{PU}{a}{\81\316}% U+01CE
\DeclareTextCompositeCommand{\v}{PU}{I}{\81\317}% U+01CF
\DeclareTextCompositeCommand{\v}{PU}{\i}{\81\320}% U+01D0
\DeclareTextCompositeCommand{\v}{PU}{i}{\81\320}% U+01D0
\DeclareTextCompositeCommand{\v}{PU}{O}{\81\321}% U+01D1
\DeclareTextCompositeCommand{\v}{PU}{o}{\81\322}% U+01D2
\DeclareTextCompositeCommand{\v}{PU}{U}{\81\323}% U+01D3
\DeclareTextCompositeCommand{\v}{PU}{u}{\81\324}% U+01D4
\DeclareTextCommand{\textGslash}{PU}{\81\344}% U+01E4
\DeclareTextCommand{\textgslash}{PU}{\81\345}% U+01E5
\DeclareTextCompositeCommand{\v}{PU}{G}{\81\346}% U+01E6
\DeclareTextCompositeCommand{\v}{PU}{g}{\81\347}% U+01E7
\DeclareTextCompositeCommand{\v}{PU}{K}{\81\350}% U+01E8
\DeclareTextCompositeCommand{\v}{PU}{k}{\81\351}% U+01E9
\DeclareTextCompositeCommand{\k}{PU}{O}{\81\352}% U+01EA
\DeclareTextCompositeCommand{\k}{PU}{o}{\81\353}% U+01EB
\DeclareTextCompositeCommand{\v}{PU}{\j}{\81\360}% U+01F0
\DeclareTextCompositeCommand{\v}{PU}{j}{\81\360}% U+01F0
\DeclareTextCompositeCommand{\'}{PU}{G}{\81\364}% U+01F4
\DeclareTextCompositeCommand{\'}{PU}{g}{\81\365}% U+01F5
\DeclareTextCompositeCommand{\`}{PU}{N}{\81\370}% U+01F8
\DeclareTextCompositeCommand{\`}{PU}{n}{\81\371}% U+01F9
\DeclareTextCompositeCommand{\'}{PU}{\AE}{\81\374}% U+01FC
\DeclareTextCompositeCommand{\'}{PU}{\ae}{\81\375}% U+01FD
\DeclareTextCompositeCommand{\'}{PU}{\O}{\81\376}% U+01FE
\DeclareTextCompositeCommand{\'}{PU}{\o}{\81\377}% U+01FF
\DeclareTextCompositeCommand{\G}{PU}{A}{\82\000}% U+0200
\DeclareTextCompositeCommand{\G}{PU}{a}{\82\001}% U+0201
\DeclareTextCompositeCommand{\G}{PU}{E}{\82\004}% U+0204
\DeclareTextCompositeCommand{\G}{PU}{e}{\82\005}% U+0205
\DeclareTextCompositeCommand{\G}{PU}{I}{\82\010}% U+0208
\DeclareTextCompositeCommand{\G}{PU}{\i}{\82\011}% U+0209
\DeclareTextCompositeCommand{\G}{PU}{i}{\82\011}% U+0209
\DeclareTextCompositeCommand{\G}{PU}{O}{\82\014}% U+020C
\DeclareTextCompositeCommand{\G}{PU}{o}{\82\015}% U+020D
\DeclareTextCompositeCommand{\G}{PU}{R}{\82\020}% U+0210
\DeclareTextCompositeCommand{\G}{PU}{r}{\82\021}% U+0211
\DeclareTextCompositeCommand{\G}{PU}{U}{\82\024}% U+0214
\DeclareTextCompositeCommand{\G}{PU}{u}{\82\025}% U+0215
\DeclareTextCompositeCommand{\v}{PU}{H}{\82\036}% U+021E
\DeclareTextCompositeCommand{\v}{PU}{h}{\82\037}% U+021F
\DeclareTextCompositeCommand{\.}{PU}{A}{\82\046}% U+0226
\DeclareTextCompositeCommand{\.}{PU}{a}{\82\047}% U+0227
\DeclareTextCompositeCommand{\c}{PU}{E}{\82\050}% U+0228
\DeclareTextCompositeCommand{\c}{PU}{e}{\82\051}% U+0229
\DeclareTextCompositeCommand{\.}{PU}{O}{\82\056}% U+022E
\DeclareTextCompositeCommand{\.}{PU}{o}{\82\057}% U+022F
\DeclareTextCompositeCommand{\=}{PU}{Y}{\82\062}% U+0232
\DeclareTextCompositeCommand{\=}{PU}{y}{\82\063}% U+0233
\DeclareTextCommand{\j}{PU}{\82\067}% U+0237
\DeclareTextCommand{\textasciicaron}{PU}{\82\307}% U+02C7
\DeclareTextCommand{\textasciibreve}{PU}{\82\330}% U+02D8
\DeclareTextCommand{\textdotaccent}{PU}{\82\331}% U+02D9
\DeclareTextCommand{\textring}{PU}{\82\332}% U+02DA
\DeclareTextCommand{\textogonek}{PU}{\82\333}% U+02DB
\DeclareTextCommand{\texttilde}{PU}{\82\334}% U+02DC
\DeclareTextCommand{\texthungarumlaut}{PU}{\82\335}% U+02DD
\DeclareTextCommand{\textacutedbl}{PU}{\texthungarumlaut}% U+02DD
\DeclareTextCommand{\textgravedbl}{PU}{\82\365}% U+02F5
\DeclareTextCommand{\texttildelow}{PU}{\82\367}% U+02F7
\DeclareTextCommand{\textdoublegrave}{PU}{ \83\017}% U+030F
\DeclareTextCommand{\textnewtie}{PU}{ \83\021}% U+0311
\DeclareTextCommand{\textdotbelow}{PU}{ \83\043}% U+0323
\DeclareTextCommand{\textmacronbelow}{PU}{ \83\061}% U+0331
\DeclareTextCommand{\texttie}{PU}{ \83\141}% U+0361
\DeclareTextCommand{\textnumeralsigngreek}{PU}{\83\164}% U+0374
\DeclareTextCommand{\textnumeralsignlowergreek}{PU}{\83\165}% U+0375
\DeclareTextCompositeCommand{\'}{PU}{\textAlpha}{\83\206}% U+0386
\DeclareTextCompositeCommand{\'}{PU}{\textEpsilon}{\83\210}% U+0388
\DeclareTextCompositeCommand{\'}{PU}{\textEta}{\83\211}% U+0389
\DeclareTextCompositeCommand{\'}{PU}{\textIota}{\83\212}% U+038A
\DeclareTextCompositeCommand{\'}{PU}{\textOmicron}{\83\214}% U+038C
\DeclareTextCompositeCommand{\'}{PU}{\textUpsilon}{\83\216}% U+038E
\DeclareTextCompositeCommand{\'}{PU}{\textOmega}{\83\217}% U+038F
\DeclareTextCompositeCommand{\'}{PU}{\textIotadieresis}{\83\220}% U+0390
\DeclareTextCommand{\textAlpha}{PU}{\83\221}% U+0391
\DeclareTextCommand{\textBeta}{PU}{\83\222}% U+0392
\DeclareTextCommand{\textGamma}{PU}{\83\223}% U+0393
\DeclareTextCommand{\textDelta}{PU}{\83\224}% U+0394
\DeclareTextCommand{\textEpsilon}{PU}{\83\225}% U+0395
\DeclareTextCommand{\textZeta}{PU}{\83\226}% U+0396
\DeclareTextCommand{\textEta}{PU}{\83\227}% U+0397
\DeclareTextCommand{\textTheta}{PU}{\83\230}% U+0398
\DeclareTextCommand{\textIota}{PU}{\83\231}% U+0399
\DeclareTextCommand{\textKappa}{PU}{\83\232}% U+039A
\DeclareTextCommand{\textLambda}{PU}{\83\233}% U+039B
\DeclareTextCommand{\textMu}{PU}{\83\234}% U+039C
\DeclareTextCommand{\textNu}{PU}{\83\235}% U+039D
\DeclareTextCommand{\textXi}{PU}{\83\236}% U+039E
\DeclareTextCommand{\textOmicron}{PU}{\83\237}% U+039F
\DeclareTextCommand{\textPi}{PU}{\83\240}% U+03A0
\DeclareTextCommand{\textRho}{PU}{\83\241}% U+03A1
\DeclareTextCommand{\textSigma}{PU}{\83\243}% U+03A3
\DeclareTextCommand{\textTau}{PU}{\83\244}% U+03A4
\DeclareTextCommand{\textUpsilon}{PU}{\83\245}% U+03A5
\DeclareTextCommand{\textPhi}{PU}{\83\246}% U+03A6
\DeclareTextCommand{\textChi}{PU}{\83\247}% U+03A7
\DeclareTextCommand{\textPsi}{PU}{\83\250}% U+03A8
\DeclareTextCommand{\textOmega}{PU}{\83\251}% U+03A9
\DeclareTextCommand{\textIotadieresis}{PU}{\83\252}% U+03AA
\DeclareTextCompositeCommand{\"}{PU}{\textIota}{\83\252}% U+03AA
\DeclareTextCompositeCommand{\"}{PU}{\textUpsilon}{\83\253}% U+03AB
\DeclareTextCompositeCommand{\'}{PU}{\textalpha}{\83\254}% U+03AC
\DeclareTextCompositeCommand{\'}{PU}{\textepsilon}{\83\255}% U+03AD
\DeclareTextCompositeCommand{\'}{PU}{\texteta}{\83\256}% U+03AE
\DeclareTextCompositeCommand{\'}{PU}{\textiota}{\83\257}% U+03AF
\DeclareTextCompositeCommand{\"}{PU}{\textupsilonacute}{\83\260}% U+03B0
\DeclareTextCommand{\textalpha}{PU}{\83\261}% U+03B1
\DeclareTextCommand{\textbeta}{PU}{\83\262}% U+03B2
\DeclareTextCommand{\textgamma}{PU}{\83\263}% U+03B3
\DeclareTextCommand{\textdelta}{PU}{\83\264}% U+03B4
\DeclareTextCommand{\textepsilon}{PU}{\83\265}% U+03B5
\DeclareTextCommand{\textzeta}{PU}{\83\266}% U+03B6
\DeclareTextCommand{\texteta}{PU}{\83\267}% U+03B7
\DeclareTextCommand{\texttheta}{PU}{\83\270}% U+03B8
\DeclareTextCommand{\textiota}{PU}{\83\271}% U+03B9
\DeclareTextCommand{\textkappa}{PU}{\83\272}% U+03BA
\DeclareTextCommand{\textlambda}{PU}{\83\273}% U+03BB
\DeclareTextCommand{\textmugreek}{PU}{\83\274}% U+03BC
\DeclareTextCommand{\textnu}{PU}{\83\275}% U+03BD
\DeclareTextCommand{\textxi}{PU}{\83\276}% U+03BE
\DeclareTextCommand{\textomicron}{PU}{\83\277}% U+03BF
\DeclareTextCommand{\textpi}{PU}{\83\300}% U+03C0
\DeclareTextCommand{\textrho}{PU}{\83\301}% U+03C1
\DeclareTextCommand{\textvarsigma}{PU}{\83\302}% U+03C2
\DeclareTextCommand{\textsigma}{PU}{\83\303}% U+03C3
\DeclareTextCommand{\texttau}{PU}{\83\304}% U+03C4
\DeclareTextCommand{\textupsilon}{PU}{\83\305}% U+03C5
\DeclareTextCommand{\textphi}{PU}{\83\306}% U+03C6
\DeclareTextCommand{\textchi}{PU}{\83\307}% U+03C7
\DeclareTextCommand{\textpsi}{PU}{\83\310}% U+03C8
\DeclareTextCommand{\textomega}{PU}{\83\311}% U+03C9
\DeclareTextCompositeCommand{\"}{PU}{\textiota}{\83\312}% U+03CA
\DeclareTextCompositeCommand{\"}{PU}{\textupsilon}{\83\313}% U+03CB
\DeclareTextCompositeCommand{\'}{PU}{\textomicron}{\83\314}% U+03CC
\DeclareTextCommand{\textupsilonacute}{PU}{\83\315}% U+03CD
\DeclareTextCompositeCommand{\'}{PU}{\textupsilon}{\83\315}% U+03CD
\DeclareTextCompositeCommand{\'}{PU}{\textomega}{\83\316}% U+03CE
\DeclareTextCommand{\textStigmagreek}{PU}{\83\332}% U+03DA
\DeclareTextCommand{\textstigmagreek}{PU}{\83\333}% U+03DB
\DeclareTextCommand{\textDigammagreek}{PU}{\83\334}% U+03DC
\DeclareTextCommand{\textdigammagreek}{PU}{\83\335}% U+03DD
\DeclareTextCommand{\textKoppagreek}{PU}{\83\336}% U+03DE
\DeclareTextCommand{\textkoppagreek}{PU}{\83\337}% U+03DF
\DeclareTextCommand{\textSampigreek}{PU}{\83\340}% U+03E0
\DeclareTextCommand{\textsampigreek}{PU}{\83\341}% U+03E1
\DeclareTextCompositeCommand{\`}{PU}{\CYRE}{\84\000}% U+0400
\DeclareTextCommand{\CYRYO}{PU}{\84\001}% U+0401
\DeclareTextCompositeCommand{\"}{PU}{\CYRE}{\84\001}% ???
\DeclareTextCommand{\CYRDJE}{PU}{\84\002}% U+0402
\DeclareTextCompositeCommand{\'}{PU}{\CYRG}{\84\003}% U+0403
\DeclareTextCommand{\CYRIE}{PU}{\84\004}% U+0404
\DeclareTextCommand{\CYRDZE}{PU}{\84\005}% U+0405
\DeclareTextCommand{\CYRII}{PU}{\84\006}% U+0406
\DeclareTextCommand{\CYRYI}{PU}{\84\007}% U+0407
\DeclareTextCompositeCommand{\"}{PU}{\CYRII}{\84\007}% U+0407
\DeclareTextCommand{\CYRJE}{PU}{\84\010}% U+0408
\DeclareTextCommand{\CYRLJE}{PU}{\84\011}% U+0409
\DeclareTextCommand{\CYRNJE}{PU}{\84\012}% U+040A
\DeclareTextCommand{\CYRTSHE}{PU}{\84\013}% U+040B
\DeclareTextCompositeCommand{\'}{PU}{\CYRK}{\84\014}% U+040C
\DeclareTextCompositeCommand{\`}{PU}{\CYRI}{\84\015}% U+040D
\DeclareTextCommand{\CYRUSHRT}{PU}{\84\016}% U+040E
\DeclareTextCompositeCommand{\U}{PU}{\CYRU}{\84\016}% U+040E
\DeclareTextCommand{\CYRDZHE}{PU}{\84\017}% U+040F
\DeclareTextCommand{\CYRA}{PU}{\84\020}% U+0410
\DeclareTextCommand{\CYRB}{PU}{\84\021}% U+0411
\DeclareTextCommand{\CYRV}{PU}{\84\022}% U+0412
\DeclareTextCommand{\CYRG}{PU}{\84\023}% U+0413
\DeclareTextCommand{\CYRD}{PU}{\84\024}% U+0414
\DeclareTextCommand{\CYRE}{PU}{\84\025}% U+0415
\DeclareTextCommand{\CYRZH}{PU}{\84\026}% U+0416
\DeclareTextCommand{\CYRZ}{PU}{\84\027}% U+0417
\DeclareTextCommand{\CYRI}{PU}{\84\030}% U+0418
\DeclareTextCommand{\CYRISHRT}{PU}{\84\031}% U+0419
\DeclareTextCompositeCommand{\U}{PU}{\CYRI}{\84\031}% U+0419
\DeclareTextCommand{\CYRK}{PU}{\84\032}% U+041A
\DeclareTextCommand{\CYRL}{PU}{\84\033}% U+041B
\DeclareTextCommand{\CYRM}{PU}{\84\034}% U+041C
\DeclareTextCommand{\CYRN}{PU}{\84\035}% U+041D
\DeclareTextCommand{\CYRO}{PU}{\84\036}% U+041E
\DeclareTextCommand{\CYRP}{PU}{\84\037}% U+041F
\DeclareTextCommand{\CYRR}{PU}{\84\040}% U+0420
\DeclareTextCommand{\CYRS}{PU}{\84\041}% U+0421
\DeclareTextCommand{\CYRT}{PU}{\84\042}% U+0422
\DeclareTextCommand{\CYRU}{PU}{\84\043}% U+0423
\DeclareTextCommand{\CYRF}{PU}{\84\044}% U+0424
\DeclareTextCommand{\CYRH}{PU}{\84\045}% U+0425
\DeclareTextCommand{\CYRC}{PU}{\84\046}% U+0426
\DeclareTextCommand{\CYRCH}{PU}{\84\047}% U+0427
\DeclareTextCommand{\CYRSH}{PU}{\84\050}% U+0428
\DeclareTextCommand{\CYRSHCH}{PU}{\84\051}% U+0429
\DeclareTextCommand{\CYRHRDSN}{PU}{\84\052}% U+042A
\DeclareTextCommand{\CYRERY}{PU}{\84\053}% U+042B
\DeclareTextCommand{\CYRSFTSN}{PU}{\84\054}% U+042C
\DeclareTextCommand{\CYREREV}{PU}{\84\055}% U+042D
\DeclareTextCommand{\CYRYU}{PU}{\84\056}% U+042E
\DeclareTextCommand{\CYRYA}{PU}{\84\057}% U+042F
\DeclareTextCommand{\cyra}{PU}{\84\060}% U+0430
\DeclareTextCommand{\cyrb}{PU}{\84\061}% U+0431
\DeclareTextCommand{\cyrv}{PU}{\84\062}% U+0432
\DeclareTextCommand{\cyrg}{PU}{\84\063}% U+0433
\DeclareTextCommand{\cyrd}{PU}{\84\064}% U+0434
\DeclareTextCommand{\cyre}{PU}{\84\065}% U+0435
\DeclareTextCommand{\cyrzh}{PU}{\84\066}% U+0436
\DeclareTextCommand{\cyrz}{PU}{\84\067}% U+0437
\DeclareTextCommand{\cyri}{PU}{\84\070}% U+0438
\DeclareTextCommand{\cyrishrt}{PU}{\84\071}% U+0439
\DeclareTextCompositeCommand{\U}{PU}{\cyri}{\84\071}% U+0439
\DeclareTextCommand{\cyrk}{PU}{\84\072}% U+043A
\DeclareTextCommand{\cyrl}{PU}{\84\073}% U+043B
\DeclareTextCommand{\cyrm}{PU}{\84\074}% U+043C
\DeclareTextCommand{\cyrn}{PU}{\84\075}% U+043D
\DeclareTextCommand{\cyro}{PU}{\84\076}% U+043E
\DeclareTextCommand{\cyrp}{PU}{\84\077}% U+043F
\DeclareTextCommand{\cyrr}{PU}{\84\100}% U+0440
\DeclareTextCommand{\cyrs}{PU}{\84\101}% U+0441
\DeclareTextCommand{\cyrt}{PU}{\84\102}% U+0442
\DeclareTextCommand{\cyru}{PU}{\84\103}% U+0443
\DeclareTextCommand{\cyrf}{PU}{\84\104}% U+0444
\DeclareTextCommand{\cyrh}{PU}{\84\105}% U+0445
\DeclareTextCommand{\cyrc}{PU}{\84\106}% U+0446
\DeclareTextCommand{\cyrch}{PU}{\84\107}% U+0447
\DeclareTextCommand{\cyrsh}{PU}{\84\110}% U+0448
\DeclareTextCommand{\cyrshch}{PU}{\84\111}% U+0449
\DeclareTextCommand{\cyrhrdsn}{PU}{\84\112}% U+044A
\DeclareTextCommand{\cyrery}{PU}{\84\113}% U+044B
\DeclareTextCommand{\cyrsftsn}{PU}{\84\114}% U+044C
\DeclareTextCommand{\cyrerev}{PU}{\84\115}% U+044D
\DeclareTextCommand{\cyryu}{PU}{\84\116}% U+044E
\DeclareTextCommand{\cyrya}{PU}{\84\117}% U+044F
\DeclareTextCompositeCommand{\`}{PU}{\cyre}{\84\120}% U+0450
\DeclareTextCommand{\cyryo}{PU}{\84\121}% U+0451
\DeclareTextCompositeCommand{\"}{PU}{\cyre}{\84\121}% U+0451
\DeclareTextCommand{\cyrdje}{PU}{\84\122}% U+0452
\DeclareTextCompositeCommand{\'}{PU}{\cyrg}{\84\123}% U+0453
\DeclareTextCommand{\cyrie}{PU}{\84\124}% U+0454
\DeclareTextCommand{\cyrdze}{PU}{\84\125}% U+0455
\DeclareTextCommand{\cyrii}{PU}{\84\126}% U+0456
\DeclareTextCommand{\cyryi}{PU}{\84\127}% U+0457
\DeclareTextCompositeCommand{\"}{PU}{\cyrii}{\84\127}% U+0457
\DeclareTextCommand{\cyrje}{PU}{\84\130}% U+0458
\DeclareTextCommand{\cyrlje}{PU}{\84\131}% U+0459
\DeclareTextCommand{\cyrnje}{PU}{\84\132}% U+045A
\DeclareTextCommand{\cyrtshe}{PU}{\84\133}% U+045B
\DeclareTextCompositeCommand{\'}{PU}{\cyrk}{\84\134}% U+045C
\DeclareTextCompositeCommand{\`}{PU}{\cyri}{\84\135}% U+045D
\DeclareTextCommand{\cyrushrt}{PU}{\84\136}% U+045E
\DeclareTextCompositeCommand{\U}{PU}{\curu}{\84\136}% U+045E
\DeclareTextCommand{\cyrdzhe}{PU}{\84\137}% U+045F
\DeclareTextCommand{\CYROMEGA}{PU}{\84\140}% U+0460
\DeclareTextCommand{\cyromega}{PU}{\84\141}% U+0461
\DeclareTextCommand{\CYRYAT}{PU}{\84\142}% U+0462
\DeclareTextCommand{\cyryat}{PU}{\84\143}% U+0463
\DeclareTextCommand{\CYRIOTE}{PU}{\84\144}% U+0464
\DeclareTextCommand{\cyriote}{PU}{\84\145}% U+0465
\DeclareTextCommand{\CYRLYUS}{PU}{\84\146}% U+0466
\DeclareTextCommand{\cyrlyus}{PU}{\84\147}% U+0467
\DeclareTextCommand{\CYRIOTLYUS}{PU}{\84\150}% U+0468
\DeclareTextCommand{\cyriotlyus}{PU}{\84\151}% U+0469
\DeclareTextCommand{\CYRBYUS}{PU}{\84\152}% U+046A
\DeclareTextCommand{\cyrbyus}{PU}{\84\153}% U+046B
\DeclareTextCommand{\CYRIOTBYUS}{PU}{\84\154}% U+046C
\DeclareTextCommand{\cyriotbyus}{PU}{\84\155}% U+046D
\DeclareTextCommand{\CYRKSI}{PU}{\84\156}% U+046E
\DeclareTextCommand{\cyrksi}{PU}{\84\157}% U+046F
\DeclareTextCommand{\CYRPSI}{PU}{\84\160}% U+0470
\DeclareTextCommand{\cyrpsi}{PU}{\84\161}% U+0471
\DeclareTextCommand{\CYRFITA}{PU}{\84\162}% U+0472
\DeclareTextCommand{\cyrfita}{PU}{\84\163}% U+0473
\DeclareTextCommand{\CYRIZH}{PU}{\84\164}% U+0474
\DeclareTextCommand{\cyrizh}{PU}{\84\165}% U+0475
\DeclareTextCompositeCommand{\C}{PU}{\CYRIZH}{\84\166}% U+0476
\DeclareTextCompositeCommand{\C}{PU}{\cyrizh}{\84\167}% U+0477
\DeclareTextCommand{\CYRUK}{PU}{\84\170}% U+0478
\DeclareTextCommand{\cyruk}{PU}{\84\171}% U+0479
\DeclareTextCommand{\CYROMEGARND}{PU}{\84\172}% U+047A
\DeclareTextCommand{\cyromegarnd}{PU}{\84\173}% U+047B
\DeclareTextCommand{\CYROMEGATITLO}{PU}{\84\174}% U+047C
\DeclareTextCommand{\cyromegatitlo}{PU}{\84\175}% U+047D
\DeclareTextCommand{\CYROT}{PU}{\84\176}% U+047E
\DeclareTextCommand{\cyrot}{PU}{\84\177}% U+047F
\DeclareTextCommand{\CYRKOPPA}{PU}{\84\200}% U+0480
\DeclareTextCommand{\cyrkoppa}{PU}{\84\201}% U+0481
\DeclareTextCommand{\cyrthousands}{PU}{\84\202}% U+0482
\DeclareTextCommand{\CYRISHRTDSC}{PU}{\84\212}% U+048A
\DeclareTextCommand{\cyrishrtdsc}{PU}{\84\213}% U+048B
\DeclareTextCommand{\CYRSEMISFTSN}{PU}{\84\214}% U+048C
\DeclareTextCommand{\cyrsemisftsn}{PU}{\84\215}% U+048D
\DeclareTextCommand{\CYRRTICK}{PU}{\84\216}% U+048E
\DeclareTextCommand{\cyrrtick}{PU}{\84\217}% U+048F
\DeclareTextCommand{\CYRGUP}{PU}{\84\220}% U+0490
\DeclareTextCommand{\cyrgup}{PU}{\84\221}% U+0491
\DeclareTextCommand{\CYRGHCRS}{PU}{\84\222}% U+0492
\DeclareTextCommand{\cyrghcrs}{PU}{\84\223}% U+0493
\DeclareTextCommand{\CYRGHK}{PU}{\84\224}% U+0494
\DeclareTextCommand{\cyrghk}{PU}{\84\225}% U+0495
\DeclareTextCommand{\CYRZHDSC}{PU}{\84\226}% U+0496
\DeclareTextCommand{\cyrzhdsc}{PU}{\84\227}% U+0497
\DeclareTextCommand{\CYRZDSC}{PU}{\84\230}% U+0498
\DeclareTextCompositeCommand{\c}{PU}{\CYRZ}{\84\230}% U+0498
\DeclareTextCommand{\cyrzdsc}{PU}{\84\231}% U+0499
\DeclareTextCompositeCommand{\c}{PU}{\cyrz}{\84\231}% U+0499
\DeclareTextCommand{\CYRKDSC}{PU}{\84\232}% U+049A
\DeclareTextCommand{\cyrkdsc}{PU}{\84\233}% U+049B
\DeclareTextCommand{\CYRKVCRS}{PU}{\84\234}% U+049C
\DeclareTextCommand{\cyrkvcrs}{PU}{\84\235}% U+049D
\DeclareTextCommand{\CYRKHCRS}{PU}{\84\236}% U+049E
\DeclareTextCommand{\cyrkhcrs}{PU}{\84\237}% U+049F
\DeclareTextCommand{\CYRKBEAK}{PU}{\84\240}% U+04A0
\DeclareTextCommand{\cyrkbeak}{PU}{\84\241}% U+04A1
\DeclareTextCommand{\CYRNDSC}{PU}{\84\242}% U+04A2
\DeclareTextCommand{\cyrndsc}{PU}{\84\243}% U+04A3
\DeclareTextCommand{\CYRNG}{PU}{\84\244}% U+04A4
\DeclareTextCommand{\cyrng}{PU}{\84\245}% U+04A5
\DeclareTextCommand{\CYRPHK}{PU}{\84\246}% U+04A6
\DeclareTextCommand{\cyrphk}{PU}{\84\247}% U+04A7
\DeclareTextCommand{\CYRABHHA}{PU}{\84\250}% U+04A8
\DeclareTextCommand{\cyrabhha}{PU}{\84\251}% U+04A9
\DeclareTextCommand{\CYRSDSC}{PU}{\84\252}% U+04AA
\DeclareTextCompositeCommand{\CYRSDSC}{PU}{\CYRS}{\84\252}% U+04AA
\DeclareTextCommand{\cyrsdsc}{PU}{\84\253}% U+04AB
\DeclareTextCompositeCommand{\k}{PU}{\cyrs}{\84\253}% U+04AB
\DeclareTextCommand{\CYRTDSC}{PU}{\84\254}% U+04AC
\DeclareTextCommand{\cyrtdsc}{PU}{\84\255}% U+04AD
\DeclareTextCommand{\CYRY}{PU}{\84\256}% U+04AE
\DeclareTextCommand{\cyry}{PU}{\84\257}% U+04AF
\DeclareTextCommand{\CYRYHCRS}{PU}{\84\260}% U+04B0
\DeclareTextCommand{\cyryhcrs}{PU}{\84\261}% U+04B1
\DeclareTextCommand{\CYRHDSC}{PU}{\84\262}% U+04B2
\DeclareTextCommand{\cyrhdsc}{PU}{\84\263}% U+04B3
\DeclareTextCommand{\CYRTETSE}{PU}{\84\264}% U+04B4
\DeclareTextCommand{\cyrtetse}{PU}{\84\265}% U+04B5
\DeclareTextCommand{\CYRCHRDSC}{PU}{\84\266}% U+04B6
\DeclareTextCommand{\cyrchrdsc}{PU}{\84\267}% U+04B7
\DeclareTextCommand{\CYRCHVCRS}{PU}{\84\270}% U+04B8
\DeclareTextCommand{\cyrchvcrs}{PU}{\84\271}% U+04B9
\DeclareTextCommand{\CYRSHHA}{PU}{\84\272}% U+04BA
\DeclareTextCommand{\cyrshha}{PU}{\84\273}% U+04BB
\DeclareTextCommand{\CYRABHCH}{PU}{\84\274}% U+04BC
\DeclareTextCommand{\cyrabhch}{PU}{\84\275}% U+04BD
\DeclareTextCommand{\CYRABHCHDSC}{PU}{\84\276}% U+04BE
\DeclareTextCompositeCommand{\k}{PU}{\CYRABHCH}{\84\276}% U+04BE
\DeclareTextCommand{\cyrabhchdsc}{PU}{\84\277}% U+04BF
\DeclareTextCompositeCommand{\k}{PU}{\cyrabhch}{\84\277}% U+04BF
\DeclareTextCommand{\CYRpalochka}{PU}{\84\300}% U+04C0
\DeclareTextCompositeCommand{\U}{PU}{\CYRZH}{\84\301}% U+04C1
\DeclareTextCompositeCommand{\U}{PU}{\cyrzh}{\84\302}% U+04C2
\DeclareTextCommand{\CYRKHK}{PU}{\84\303}% U+04C3
\DeclareTextCommand{\cyrkhk}{PU}{\84\304}% U+04C4
\DeclareTextCommand{\CYRLDSC}{PU}{\84\305}% U+04C5
\DeclareTextCommand{\cyrldsc}{PU}{\84\306}% U+04C6
\DeclareTextCommand{\CYRNHK}{PU}{\84\307}% U+04C7
\DeclareTextCommand{\cyrnhk}{PU}{\84\310}% U+04C8
\DeclareTextCommand{\CYRCHLDSC}{PU}{\84\313}% U+04CB
\DeclareTextCommand{\cyrchldsc}{PU}{\84\314}% U+04CC
\DeclareTextCommand{\CYRMDSC}{PU}{\84\315}% U+04CD
\DeclareTextCommand{\cyrmdsc}{PU}{\84\316}% U+04CE
\DeclareTextCompositeCommand{\U}{PU}{\CYRA}{\84\320}% U+04D0
\DeclareTextCompositeCommand{\U}{PU}{\cyra}{\84\321}% U+04D1
\DeclareTextCompositeCommand{\"}{PU}{\CYRA}{\84\322}% U+04D2
\DeclareTextCompositeCommand{\"}{PU}{\cyra}{\84\323}% U+04D3
\DeclareTextCommand{\CYRAE}{PU}{\84\324}% U+04D4
\DeclareTextCommand{\cyrae}{PU}{\84\325}% U+04D5
\DeclareTextCompositeCommand{\U}{PU}{\CYRE}{\84\326}% U+04D6
\DeclareTextCompositeCommand{\U}{PU}{\cyre}{\84\327}% U+04D7
\DeclareTextCommand{\CYRSCHWA}{PU}{\84\330}% U+04D8
\DeclareTextCommand{\cyrschwa}{PU}{\84\331}% U+04D9
\DeclareTextCompositeCommand{\"}{PU}{\CYRSCHWA}{\84\332}% U+04DA
\DeclareTextCompositeCommand{\"}{PU}{\cyrschwa}{\84\333}% U+04DB
\DeclareTextCompositeCommand{\"}{PU}{\CYRZH}{\84\334}% U+04DC
\DeclareTextCompositeCommand{\"}{PU}{\cyrzh}{\84\335}% U+04DD
\DeclareTextCompositeCommand{\"}{PU}{\CYRZ}{\84\336}% U+04DE
\DeclareTextCompositeCommand{\"}{PU}{\cyrz}{\84\337}% U+04DF
\DeclareTextCommand{\CYRABHDZE}{PU}{\84\340}% U+04E0
\DeclareTextCommand{\cyrabhdze}{PU}{\84\341}% U+04E1
\DeclareTextCompositeCommand{\=}{PU}{\CYRI}{\84\342}% U+04E2
\DeclareTextCompositeCommand{\=}{PU}{\cyri}{\84\343}% U+04E3
\DeclareTextCompositeCommand{\"}{PU}{\CYRI}{\84\344}% U+04E4
\DeclareTextCompositeCommand{\"}{PU}{\cyri}{\84\345}% U+04E5
\DeclareTextCompositeCommand{\"}{PU}{\CYRO}{\84\346}% U+04E6
\DeclareTextCompositeCommand{\"}{PU}{\cyro}{\84\347}% U+04E7
\DeclareTextCommand{\CYROTLD}{PU}{\84\350}% U+04E8
\DeclareTextCommand{\cyrotld}{PU}{\84\351}% U+04E9
\DeclareTextCompositeCommand{\"}{PU}{\CYROTLD}{\84\352}% U+04EA
\DeclareTextCompositeCommand{\"}{PU}{\cyrotld}{\84\353}% U+04EB
\DeclareTextCompositeCommand{\"}{PU}{\CYREREV}{\84\354}% U+04EC
\DeclareTextCompositeCommand{\"}{PU}{\cyreref}{\84\355}% U+04ED
\DeclareTextCompositeCommand{\=}{PU}{\CYRU}{\84\356}% U+04EE
\DeclareTextCompositeCommand{\=}{PU}{\cyru}{\84\357}% U+04EF
\DeclareTextCompositeCommand{\"}{PU}{\CYRU}{\84\360}% U+04F0
\DeclareTextCompositeCommand{\"}{PU}{\cyru}{\84\361}% U+04F1
\DeclareTextCompositeCommand{\H}{PU}{\CYRU}{\84\362}% U+04F2
\DeclareTextCompositeCommand{\H}{PU}{\cyru}{\84\363}% U+04F3
\DeclareTextCompositeCommand{\"}{PU}{\CYRCH}{\84\364}% U+04F4
\DeclareTextCompositeCommand{\"}{PU}{\cyrch}{\84\365}% U+04F5
\DeclareTextCommand{\CYRGDSC}{PU}{\84\366}% U+04F6
\DeclareTextCommand{\cyrgdsc}{PU}{\84\367}% U+04F7
\DeclareTextCompositeCommand{\"}{PU}{\CYRERY}{\84\370}% U+04F8
\DeclareTextCompositeCommand{\"}{PU}{\cyrery}{\84\371}% U+04F9
\DeclareTextCommand{\CYRHHK}{PU}{\84\374}% U+04FC
\DeclareTextCommand{\cyrhhk}{PU}{\84\375}% U+04FD
\DeclareTextCommand{\textbaht}{PU}{\9016\077}% U+0E3F
\DeclareTextCompositeCommand{\.}{PU}{B}{\9036\002}% U+1E02
\DeclareTextCompositeCommand{\.}{PU}{b}{\9036\003}% U+1E03
\DeclareTextCompositeCommand{\b}{PU}{B}{\9036\006}% U+1E06
\DeclareTextCompositeCommand{\b}{PU}{b}{\9036\007}% U+1E07
\DeclareTextCompositeCommand{\.}{PU}{D}{\9036\012}% U+1E0A
\DeclareTextCompositeCommand{\.}{PU}{d}{\9036\013}% U+1E0B
\DeclareTextCompositeCommand{\b}{PU}{D}{\9036\016}% U+1E0E
\DeclareTextCompositeCommand{\b}{PU}{d}{\9036\017}% U+1E0F
\DeclareTextCompositeCommand{\c}{PU}{D}{\9036\020}% U+1E10
\DeclareTextCompositeCommand{\c}{PU}{d}{\9036\021}% U+1E11
\DeclareTextCompositeCommand{\.}{PU}{F}{\9036\036}% U+1E1E
\DeclareTextCompositeCommand{\.}{PU}{f}{\9036\037}% U+1E1F
\DeclareTextCompositeCommand{\=}{PU}{G}{\9036\040}% U+1E20
\DeclareTextCompositeCommand{\=}{PU}{g}{\9036\041}% U+1E21
\DeclareTextCompositeCommand{\.}{PU}{H}{\9036\042}% U+1E22
\DeclareTextCompositeCommand{\.}{PU}{h}{\9036\043}% U+1E23
\DeclareTextCompositeCommand{\"}{PU}{H}{\9036\046}% U+1E26
\DeclareTextCompositeCommand{\"}{PU}{h}{\9036\047}% U+1E27
\DeclareTextCompositeCommand{\c}{PU}{H}{\9036\050}% U+1E28
\DeclareTextCompositeCommand{\c}{PU}{h}{\9036\051}% U+1E29
\DeclareTextCompositeCommand{\'}{PU}{K}{\9036\060}% U+1E30
\DeclareTextCompositeCommand{\'}{PU}{k}{\9036\061}% U+1E31
\DeclareTextCompositeCommand{\b}{PU}{K}{\9036\064}% U+1E34
\DeclareTextCompositeCommand{\b}{PU}{k}{\9036\065}% U+1E35
\DeclareTextCompositeCommand{\b}{PU}{L}{\9036\072}% U+1E3A
\DeclareTextCompositeCommand{\b}{PU}{l}{\9036\073}% U+1E3B
\DeclareTextCompositeCommand{\'}{PU}{M}{\9036\076}% U+1E3E
\DeclareTextCompositeCommand{\'}{PU}{m}{\9036\077}% U+1E3F
\DeclareTextCompositeCommand{\.}{PU}{M}{\9036\100}% U+1E40
\DeclareTextCompositeCommand{\.}{PU}{m}{\9036\101}% U+1E41
\DeclareTextCompositeCommand{\.}{PU}{N}{\9036\104}% U+1E44
\DeclareTextCompositeCommand{\.}{PU}{n}{\9036\105}% U+1E45
\DeclareTextCompositeCommand{\b}{PU}{N}{\9036\110}% U+1E48
\DeclareTextCompositeCommand{\b}{PU}{n}{\9036\111}% U+1E49
\DeclareTextCompositeCommand{\'}{PU}{P}{\9036\124}% U+1E54
\DeclareTextCompositeCommand{\'}{PU}{p}{\9036\125}% U+1E55
\DeclareTextCompositeCommand{\.}{PU}{P}{\9036\126}% U+1E56
\DeclareTextCompositeCommand{\.}{PU}{p}{\9036\127}% U+1E57
\DeclareTextCompositeCommand{\.}{PU}{R}{\9036\130}% U+1E58
\DeclareTextCompositeCommand{\.}{PU}{r}{\9036\131}% U+1E59
\DeclareTextCompositeCommand{\b}{PU}{R}{\9036\136}% U+1E5E
\DeclareTextCompositeCommand{\b}{PU}{r}{\9036\137}% U+1E5F
\DeclareTextCompositeCommand{\.}{PU}{S}{\9036\140}% U+1E60
\DeclareTextCompositeCommand{\.}{PU}{s}{\9036\141}% U+1E61
\DeclareTextCompositeCommand{\b}{PU}{T}{\9036\156}% U+1E6E
\DeclareTextCompositeCommand{\b}{PU}{t}{\9036\157}% U+1E6F
\DeclareTextCompositeCommand{\~}{PU}{V}{\9036\174}% U+1E7C
\DeclareTextCompositeCommand{\~}{PU}{v}{\9036\175}% U+1E7D
\DeclareTextCompositeCommand{\`}{PU}{W}{\9036\200}% U+1E80
\DeclareTextCompositeCommand{\`}{PU}{w}{\9036\201}% U+1E81
\DeclareTextCompositeCommand{\'}{PU}{W}{\9036\202}% U+1E82
\DeclareTextCompositeCommand{\'}{PU}{w}{\9036\203}% U+1E83
\DeclareTextCompositeCommand{\"}{PU}{W}{\9036\204}% U+1E84
\DeclareTextCompositeCommand{\"}{PU}{w}{\9036\205}% U+1E85
\DeclareTextCompositeCommand{\.}{PU}{W}{\9036\206}% U+1E86
\DeclareTextCompositeCommand{\.}{PU}{w}{\9036\207}% U+1E87
\DeclareTextCompositeCommand{\.}{PU}{X}{\9036\212}% U+1E8A
\DeclareTextCompositeCommand{\.}{PU}{x}{\9036\213}% U+1E8B
\DeclareTextCompositeCommand{\"}{PU}{X}{\9036\214}% U+1E8C
\DeclareTextCompositeCommand{\"}{PU}{x}{\9036\215}% U+1E8D
\DeclareTextCompositeCommand{\.}{PU}{Y}{\9036\216}% U+1E8E
\DeclareTextCompositeCommand{\.}{PU}{y}{\9036\217}% U+1E8F
\DeclareTextCompositeCommand{\^}{PU}{Z}{\9036\220}% U+1E90
\DeclareTextCompositeCommand{\^}{PU}{z}{\9036\221}% U+1E91
\DeclareTextCompositeCommand{\b}{PU}{Z}{\9036\224}% U+1E94
\DeclareTextCompositeCommand{\b}{PU}{z}{\9036\225}% U+1E95
\DeclareTextCompositeCommand{\b}{PU}{h}{\9036\226}% U+1E96
\DeclareTextCompositeCommand{\"}{PU}{t}{\9036\227}% U+1E97
\DeclareTextCompositeCommand{\r}{PU}{w}{\9036\230}% U+1E98
\DeclareTextCompositeCommand{\r}{PU}{y}{\9036\231}% U+1E99
\DeclareTextCompositeCommand{\.}{PU}{\textlongs}{\9036\233}% U+1E9B
\DeclareTextCompositeCommand{\~}{PU}{E}{\9036\274}% U+1EBC
\DeclareTextCompositeCommand{\~}{PU}{e}{\9036\275}% U+1EBD
\DeclareTextCompositeCommand{\`}{PU}{Y}{\9036\362}% U+1EF2
\DeclareTextCompositeCommand{\`}{PU}{y}{\9036\363}% U+1EF3
\DeclareTextCompositeCommand{\~}{PU}{Y}{\9036\370}% U+1EF8
\DeclareTextCompositeCommand{\~}{PU}{y}{\9036\371}% U+1EF9
\DeclareTextCommand{\textcompwordmark}{PU}{\9040\014}% U+200C
\DeclareTextCommand{\textendash}{PU}{\9040\023}% U+2013
\DeclareTextCommand{\textemdash}{PU}{\9040\024}% U+2014
\DeclareTextCommand{\textbardbl}{PU}{\9040\026}% U+2016
\DeclareTextCommand{\textquoteleft}{PU}{\9040\030}% U+2018
\DeclareTextCommand{\textquoteright}{PU}{\9040\031}% U+2019
\DeclareTextCommand{\quotesinglbase}{PU}{\9040\032}% U+201A
\DeclareTextCommand{\textquotedblleft}{PU}{\9040\034}% U+201C
\DeclareTextCommand{\textquotedblright}{PU}{\9040\035}% U+201D
\DeclareTextCommand{\quotedblbase}{PU}{\9040\036}% U+201E
\DeclareTextCommand{\textdagger}{PU}{\9040\040}% U+2020
\DeclareTextCommand{\textdaggerdbl}{PU}{\9040\041}% U+2021
\DeclareTextCommand{\textbullet}{PU}{\9040\042}% U+2022
\DeclareTextCommand{\textellipsis}{PU}{\9040\046}% U+2026
\DeclareTextCommand{\textperthousand}{PU}{\9040\060}% U+2030
\DeclareTextCommand{\textpertenthousand}{PU}{\9040\061}% U+2031
\DeclareTextCommand{\guilsinglleft}{PU}{\9040\071}% U+2039
\DeclareTextCommand{\guilsinglright}{PU}{\9040\072}% U+203A
\DeclareTextCommand{\textreferencemark}{PU}{\9040\073}% U+203B
\DeclareTextCommand{\textinterrobang}{PU}{\9040\075}% U+203D
\DeclareTextCommand{\textfractionsolidus}{PU}{\9040\104}% U+2044
\DeclareTextCommand{\textlquill}{PU}{\9040\105}% U+2045
\DeclareTextCommand{\textrquill}{PU}{\9040\106}% U+2046
\DeclareTextCommand{\textdiscount}{PU}{\9040\122}% U+2052
\DeclareTextCommand{\textzerosuperior}{PU}{\9040\160}% U+2070
\DeclareTextCommand{\textfoursuperior}{PU}{\9040\164}% U+2074
\DeclareTextCommand{\textfivesuperior}{PU}{\9040\165}% U+2075
\DeclareTextCommand{\textsixsuperior}{PU}{\9040\166}% U+2076
\DeclareTextCommand{\textsevensuperior}{PU}{\9040\167}% U+2077
\DeclareTextCommand{\texteightsuperior}{PU}{\9040\170}% U+2078
\DeclareTextCommand{\textninesuperior}{PU}{\9040\171}% U+2079
\DeclareTextCommand{\textplussuperior}{PU}{\9040\172}% U+207A
\DeclareTextCommand{\textminussuperior}{PU}{\9040\173}
\DeclareTextCommand{\textequalsuperior}{PU}{\9040\174}
\DeclareTextCommand{\textparenleftsuperior}{PU}{\9040\175}
\DeclareTextCommand{\textparenrightsuperior}{PU}{\9040\176}
\DeclareTextCommand{\textnsuperior}{PU}{\9040\177}
\DeclareTextCommand{\textzeroinferior}{PU}{\9040\200}% U+2080
\DeclareTextCommand{\textoneinferior}{PU}{\9040\201}% U+2081
\DeclareTextCommand{\texttwoinferior}{PU}{\9040\202}% U+2082
\DeclareTextCommand{\textthreeinferior}{PU}{\9040\203}% U+2083
\DeclareTextCommand{\textfourinferior}{PU}{\9040\204}% U+2084
\DeclareTextCommand{\textfiveinferior}{PU}{\9040\205}% U+2085
\DeclareTextCommand{\textsixinferior}{PU}{\9040\206}% U+2086
\DeclareTextCommand{\textseveninferior}{PU}{\9040\207}% U+2087
\DeclareTextCommand{\texteightinferior}{PU}{\9040\210}% U+2088
\DeclareTextCommand{\textnineinferior}{PU}{\9040\211}% U+2089
\DeclareTextCommand{\textparenleftinferior}{PU}{\9040\215}% U+208D
\DeclareTextCommand{\textparenrightinferior}{PU}{\9040\216}% U+208E
\DeclareTextCommand{\textcolonmonetary}{PU}{\9040\241}% U+20A1
\DeclareTextCommand{\textlira}{PU}{\9040\244}% U+20A4
\DeclareTextCommand{\textnaira}{PU}{\9040\246}% U+20A6
\DeclareTextCommand{\textpeseta}{PU}{\9040\247}% U+20A7
\DeclareTextCommand{\textwon}{PU}{\9040\251}% U+20A9
\DeclareTextCommand{\textdong}{PU}{\9040\253}% U+20AB
\DeclareTextCommand{\texteuro}{PU}{\9040\254}% U+20AC
\DeclareTextCommand{\textpeso}{PU}{\9040\261}% U+20B1
\DeclareTextCommand{\textguarani}{PU}{\9040\262}% U+20B2
\DeclareTextCommand{\textcelsius}{PU}{\9041\003}% U+2103
\DeclareTextCommand{\textnumero}{PU}{\9041\026}% U+2116
\DeclareTextCommand{\textcircledP}{PU}{\9041\027}% U+2117
\DeclareTextCommand{\textrecipe}{PU}{\9041\036}% U+211E
\DeclareTextCommand{\textservicemark}{PU}{\9041\040}% U+2120
\DeclareTextCommand{\texttrademark}{PU}{\9041\042}% U+2122
\DeclareTextCommand{\textohm}{PU}{\9041\046}% U+2126
\DeclareTextCommand{\textmho}{PU}{\9041\047}% U+2127
\DeclareTextCommand{\textangstrom}{PU}{\9041\053}% U+212B
\DeclareTextCommand{\textestimated}{PU}{\9041\056}% U+212E
\DeclareTextCommand{\textaleph}{PU}{\9041\065}% U+2135
\DeclareTextCommand{\textleftarrow}{PU}{\9041\220}% U+2190
\DeclareTextCommand{\textuparrow}{PU}{\9041\221}% U+2191
\DeclareTextCommand{\textrightarrow}{PU}{\9041\222}% U+2192
\DeclareTextCommand{\textdownarrow}{PU}{\9041\223}% U+2193
\DeclareTextCommand{\textminus}{PU}{\9042\022}% U+2212
\DeclareTextCommand{\textsurd}{PU}{\9042\032}% U+221A
\DeclareTextCommand{\textlangle}{PU}{\9043\051}% U+2329
\DeclareTextCommand{\textrangle}{PU}{\9043\052}% U+232A
\DeclareTextCommand{\textblank}{PU}{\9044\042}% U+2422
\DeclareTextCommand{\textvisiblespace}{PU}{\9044\043}% U+2423
\DeclareTextCompositeCommand{\textcircled}{PU}{1}{\9044\140}% U+2460
\DeclareTextCompositeCommand{\textcircled}{PU}{2}{\9044\141}% U+2461
\DeclareTextCompositeCommand{\textcircled}{PU}{3}{\9044\142}% U+2462
\DeclareTextCompositeCommand{\textcircled}{PU}{4}{\9044\143}% U+2463
\DeclareTextCompositeCommand{\textcircled}{PU}{5}{\9044\144}% U+2464
\DeclareTextCompositeCommand{\textcircled}{PU}{6}{\9044\145}% U+2465
\DeclareTextCompositeCommand{\textcircled}{PU}{7}{\9044\146}% U+2466
\DeclareTextCompositeCommand{\textcircled}{PU}{8}{\9044\147}% U+2467
\DeclareTextCompositeCommand{\textcircled}{PU}{9}{\9044\150}% U+2468
\DeclareTextCompositeCommand{\textcircled}{PU}{10}{\9044\151}% U+2469
\DeclareTextCompositeCommand{\textcircled}{PU}{11}{\9044\152}% U+246A
\DeclareTextCompositeCommand{\textcircled}{PU}{12}{\9044\153}% U+246B
\DeclareTextCompositeCommand{\textcircled}{PU}{13}{\9044\154}% U+246C
\DeclareTextCompositeCommand{\textcircled}{PU}{14}{\9044\155}% U+246D
\DeclareTextCompositeCommand{\textcircled}{PU}{15}{\9044\156}% U+246E
\DeclareTextCompositeCommand{\textcircled}{PU}{16}{\9044\157}% U+246F
\DeclareTextCompositeCommand{\textcircled}{PU}{17}{\9044\160}% U+2470
\DeclareTextCompositeCommand{\textcircled}{PU}{18}{\9044\161}% U+2471
\DeclareTextCompositeCommand{\textcircled}{PU}{19}{\9044\162}% U+2472
\DeclareTextCompositeCommand{\textcircled}{PU}{20}{\9044\163}% U+2473
\DeclareTextCompositeCommand{\textcircled}{PU}{A}{\9044\266}% U+24B6
\DeclareTextCompositeCommand{\textcircled}{PU}{B}{\9044\267}% U+24B7
\DeclareTextCompositeCommand{\textcircled}{PU}{C}{\9044\270}% U+24B8
\DeclareTextCompositeCommand{\textcircled}{PU}{D}{\9044\271}% U+24B9
\DeclareTextCompositeCommand{\textcircled}{PU}{E}{\9044\272}% U+24BA
\DeclareTextCompositeCommand{\textcircled}{PU}{F}{\9044\273}% U+24BB
\DeclareTextCompositeCommand{\textcircled}{PU}{G}{\9044\274}% U+24BC
\DeclareTextCompositeCommand{\textcircled}{PU}{H}{\9044\275}% U+24BD
\DeclareTextCompositeCommand{\textcircled}{PU}{I}{\9044\276}% U+24BE
\DeclareTextCompositeCommand{\textcircled}{PU}{J}{\9044\277}% U+24BF
\DeclareTextCompositeCommand{\textcircled}{PU}{K}{\9044\300}% U+24C0
\DeclareTextCompositeCommand{\textcircled}{PU}{L}{\9044\301}% U+24C1
\DeclareTextCompositeCommand{\textcircled}{PU}{M}{\9044\302}% U+24C2
\DeclareTextCompositeCommand{\textcircled}{PU}{N}{\9044\303}% U+24C3
\DeclareTextCompositeCommand{\textcircled}{PU}{O}{\9044\304}% U+24C4
\DeclareTextCompositeCommand{\textcircled}{PU}{P}{\9044\305}% U+24C5
\DeclareTextCompositeCommand{\textcircled}{PU}{Q}{\9044\306}% U+24C6
\DeclareTextCompositeCommand{\textcircled}{PU}{R}{\9044\307}% U+24C7
\DeclareTextCompositeCommand{\textcircled}{PU}{S}{\9044\310}% U+24C8
\DeclareTextCompositeCommand{\textcircled}{PU}{T}{\9044\311}% U+24C9
\DeclareTextCompositeCommand{\textcircled}{PU}{U}{\9044\312}% U+24CA
\DeclareTextCompositeCommand{\textcircled}{PU}{V}{\9044\313}% U+24CB
\DeclareTextCompositeCommand{\textcircled}{PU}{W}{\9044\314}% U+24CC
\DeclareTextCompositeCommand{\textcircled}{PU}{X}{\9044\315}% U+24CD
\DeclareTextCompositeCommand{\textcircled}{PU}{Y}{\9044\316}% U+24CE
\DeclareTextCompositeCommand{\textcircled}{PU}{Z}{\9044\317}% U+24CF
\DeclareTextCompositeCommand{\textcircled}{PU}{a}{\9044\320}% U+24D0
\DeclareTextCompositeCommand{\textcircled}{PU}{b}{\9044\321}% U+24D1
\DeclareTextCompositeCommand{\textcircled}{PU}{c}{\9044\322}% U+24D2
\DeclareTextCompositeCommand{\textcircled}{PU}{d}{\9044\323}% U+24D3
\DeclareTextCompositeCommand{\textcircled}{PU}{e}{\9044\324}% U+24D4
\DeclareTextCompositeCommand{\textcircled}{PU}{f}{\9044\325}% U+24D5
\DeclareTextCompositeCommand{\textcircled}{PU}{g}{\9044\326}% U+24D6
\DeclareTextCompositeCommand{\textcircled}{PU}{h}{\9044\327}% U+24D7
\DeclareTextCompositeCommand{\textcircled}{PU}{i}{\9044\330}% U+24D8
\DeclareTextCompositeCommand{\textcircled}{PU}{j}{\9044\331}% U+24D9
\DeclareTextCompositeCommand{\textcircled}{PU}{k}{\9044\332}% U+24DA
\DeclareTextCompositeCommand{\textcircled}{PU}{l}{\9044\333}% U+24DB
\DeclareTextCompositeCommand{\textcircled}{PU}{m}{\9044\334}% U+24DC
\DeclareTextCompositeCommand{\textcircled}{PU}{n}{\9044\335}% U+24DD
\DeclareTextCompositeCommand{\textcircled}{PU}{o}{\9044\336}% U+24DE
\DeclareTextCompositeCommand{\textcircled}{PU}{p}{\9044\337}% U+24DF
\DeclareTextCompositeCommand{\textcircled}{PU}{q}{\9044\340}% U+24E0
\DeclareTextCompositeCommand{\textcircled}{PU}{r}{\9044\341}% U+24E1
\DeclareTextCompositeCommand{\textcircled}{PU}{s}{\9044\342}% U+24E2
\DeclareTextCompositeCommand{\textcircled}{PU}{t}{\9044\343}% U+24E3
\DeclareTextCompositeCommand{\textcircled}{PU}{u}{\9044\344}% U+24E4
\DeclareTextCompositeCommand{\textcircled}{PU}{v}{\9044\345}% U+24E5
\DeclareTextCompositeCommand{\textcircled}{PU}{w}{\9044\346}% U+24E6
\DeclareTextCompositeCommand{\textcircled}{PU}{x}{\9044\347}% U+24E7
\DeclareTextCompositeCommand{\textcircled}{PU}{y}{\9044\350}% U+24E8
\DeclareTextCompositeCommand{\textcircled}{PU}{z}{\9044\351}% U+24E9
\DeclareTextCompositeCommand{\textcircled}{PU}{0}{\9044\352}% U+24EA
\DeclareTextCommand{\textopenbullet}{PU}{\9045\346}% U+25E6
\DeclareTextCommand{\textbigcircle}{PU}{\9045\357}% U+25EF
\DeclareTextCommand{\textmusicalnote}{PU}{\9046\152}% U+266A
\DeclareTextCommand{\textmarried}{PU}{\9046\255}% U+26AD
\DeclareTextCommand{\textdivorced}{PU}{\9046\256}% U+26AE
\DeclareTextCommand{\textlbrackdbl}{PU}{\9047\346}% U+27E6
\DeclareTextCommand{\textrbrackdbl}{PU}{\9047\347}% U+27E7
\DeclareTextCommand{\textfi}{PU}{\9373\001}% U+FB01
\DeclareTextCommand{\textfl}{PU}{\9373\002}% U+FB02
\DeclareTextCommand{\SS}{PU}{SS}
\DeclareTextCommand{\textglqq}{PU}{\quotedblbase}
\DeclareTextCommand{\textgrqq}{PU}{\textquotedblleft}
\DeclareTextCommand{\textglq}{PU}{\quotesinglbase}
\DeclareTextCommand{\textgrq}{PU}{\textquoteleft}
\DeclareTextCommand{\textflqq}{PU}{\guillemotleft}
\DeclareTextCommand{\textfrqq}{PU}{\guillemotright}
\DeclareTextCommand{\textflq}{PU}{\guilsinglleft}
\DeclareTextCommand{\textfrq}{PU}{\guilsinglright}
\DeclareTextCommand{\textneg}{PU}{\textlogicalnot}
\DeclareTextCommand{\texttimes}{PU}{\textmultiply}
\DeclareTextCommand{\textdiv}{PU}{\textdivide}
\DeclareTextCommand{\textpm}{PU}{\textplusminus}
\DeclareTextCommand{\textcdot}{PU}{\textperiodcentered}
\endinput
%%
%% End of file `puenc.def'.