-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathtoh151-v2.tmx
More file actions
5154 lines (5154 loc) · 289 KB
/
toh151-v2.tmx
File metadata and controls
5154 lines (5154 loc) · 289 KB
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
<?xml version="1.0" encoding="UTF-8"?>
<tmx xmlns="http://www.lisa.org/tmx14" xmlns:eft="http://read.84000.co/ns/1.0" xmlns:tei="http://www.tei-c.org/ns/1.0" version="1.4b">
<header creationtool="InterText" creationtoolversion="1.0" datatype="PlainText" segtype="block" adminlang="en-us" srclang="bo" o-tmf="TEI" eft:text-id="UT22084-057-010" eft:text-version="v-1.1.9-2021"/>
<body>
<tu>
<prop type="folio">F.331.b</prop>
<prop type="location-id">translation</prop>
<tuv xml:lang="bo">
<seg>འཕགས་པ་སྤོབས་པའི་བློ་གྲོས་ཀྱིས་ཞུས་པ་ཞེས་བྱ་བ་ཐེག་པ་ཆེན་པོའི་མདོ། </seg>
</tuv>
<tuv xml:lang="en">
<seg>The Noble Great Vehicle Sūtra The Questions of Pratibhānamati</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.331.b</prop>
<prop type="location-id">UT22084-057-010-144</prop>
<tuv xml:lang="bo">
<seg>སངས་རྒྱས་དང་བྱང་ཆུབ་སེམས་དཔའ་ཐམས་ཅད་ལ་ཕྱག་འཚལ་ལོ། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-057-010-144"/>Homage to all buddhas and bodhisattvas!</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.331.b</prop>
<prop type="location-id">UT22084-057-010-12</prop>
<tuv xml:lang="bo">
<seg>འདི་སྐད་བདག་གིས་ཐོས་པའི་དུས་གཅིག་ན། </seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-057-010-12"/>Thus did I hear at one time.</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.331.b</prop>
<prop type="location-id">UT22084-057-010-12</prop>
<tuv xml:lang="bo">
<seg>བཅོམ་ལྡན་འདས་མཉན་དུ་ཡོད་པ་ན་རྒྱལ་བུ་རྒྱལ་བྱེད་ཀྱི་ཚལ་མགོན་མེད་ཟས་སྦྱིན་གྱི་ཀུན་དགའ་ར་བ་ན་</seg>
</tuv>
<tuv xml:lang="en">
<seg>The Blessed One was residing in Jeta Grove, Anāthapiṇḍada’s park at Śrāvastī.</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.331.b</prop>
<prop type="location-id">UT22084-057-010-12</prop>
<tuv xml:lang="bo">
<seg>དགེ་སློང་སྟོང་ཉིས་བརྒྱ་ལྔ་བཅུའི་དགེ་སློང་གི་དགེ་འདུན་ཆེན་པོ་དང་། བྱང་ཆུབ་སེམས་དཔའ་ཁྲི་དང་ཐབས་ཅིག་ཏུ་བཞུགས་ཏེ</seg>
</tuv>
<tuv xml:lang="en">
<seg>He was there together with a great saṅgha of 1,250 monks as well as 10,000 bodhisattvas.</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.331.b</prop>
<prop type="location-id">UT22084-057-010-12</prop>
<tuv xml:lang="bo">
<seg>དེ་ནས་བཅོམ་ལྡན་འདས་འཁོར་མང་པོས་ཡོངས་སུ་བསྐོར་ཅིང་མདུན་གྱིས་བལྟས་ནས་ཆོས་སྟོན་ཏོ། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>Surrounded and revered by an immense retinue, the Blessed One taught the Dharma.</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.332.a</prop>
<prop type="location-id">UT22084-057-010-13</prop>
<tuv xml:lang="bo">
<seg>དེའི་ཚེ་ཚོང་དཔོན་སྤོབས་པའི་བློ་གྲོས་ཞེས་བྱ་བ་ཞིག་ཚོང་དཔོན་གྱི་བུ་ལྔ་བརྒྱ་ཙམ་སོ་སོའི་གཡོག་འཁོར་ལྔ་བརྒྱ་ལྔ་བརྒྱས་ཡོངས་སུ་བསྐོར་ཅིང་མདུན་དུ་བདར་<tei:ref folio="F.332.a"/>བ་དང་ལྷན་ཅིག་ཏུ་མཉན་དུ་ཡོད་པའི་གྲོང་ཁྱེར་ནས་བྱུང་སྟེ</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-057-010-13"/>At that time, the merchant Pratibhānamati left the city of Śrāvastī, surrounded and venerated by a group of five hundred merchant’s sons, each of whom was also accompanied by an entourage of five hundred servants.</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.332.a</prop>
<prop type="location-id">UT22084-057-010-13</prop>
<tuv xml:lang="bo">
<seg>རྒྱལ་བུ་རྒྱལ་བྱེད་ཀྱི་ཚལ་མགོན་མེད་ཟས་སྦྱིན་གྱི་ཀུན་དགའ་ར་བ་ག་ལ་བ་དང་། བཅོམ་ལྡན་འདས་ག་ལ་དེ་ལོགས་སུ་སོང་སྟེ་ཕྱིན་ནས། </seg>
</tuv>
<tuv xml:lang="en">
<seg>As they arrived at Jeta Grove in Anāthapiṇḍada’s park where the Blessed One was residing,</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.332.a</prop>
<prop type="location-id">UT22084-057-010-13</prop>
<tuv xml:lang="bo">
<seg>བཅོམ་ལྡན་འདས་ཀྱི་ཞབས་ལ་མགོ་བོས་ཕྱག་འཚལ་ཏེ། བཅོམ་ལྡན་འདས་ལ་ལན་གསུམ་བསྐོར་བ་བྱས་ནས་གཡོག་འཁོར་དང་བཅས་ཏེ་ཕྱོགས་གཅིག་ཏུ་འདུག་གོ། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>Pratibhānamati bowed his head at the Blessed One’s feet, circumambulated him three times, and sat down together with his entourage.</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.332.a</prop>
<prop type="location-id">UT22084-057-010-14</prop>
<tuv xml:lang="bo">
<seg>དེ་ནས་སངས་རྒྱས་ཀྱི་མཐུས་ཚོང་དཔོན་སྤོབས་པའི་བློ་གྲོས་སྟན་ལས་ལངས་ཏེ། </seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-057-010-14"/>At this point, through the power of the Buddha, the merchant Pratibhānamati stood up,</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.332.a</prop>
<prop type="location-id">UT22084-057-010-14</prop>
<tuv xml:lang="bo">
<seg>བླ་གོས་ཕྲག་པ་གཅིག་ཏུ་གཟར་ནས་པུས་མོ་གཡས་པའི་ལྷ་ང་ས་ལ་བཙུགས་ཏེ། </seg>
</tuv>
<tuv xml:lang="en">
<seg>draped his shawl over one shoulder, and knelt on his right knee.</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.332.a</prop>
<prop type="location-id">UT22084-057-010-14</prop>
<tuv xml:lang="bo">
<seg>བཅོམ་ལྡན་འདས་ག་ལ་བ་དེ་ལོགས་སུ་ཐལ་མོ་སྦྱར་བ་བཏུད་ནས་བཅོམ་ལྡན་འདས་ལ་འདི་སྐད་ཅེས་གསོལ་ཏོ། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>With palms together he bowed toward the Blessed One and said,</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.332.a</prop>
<prop type="location-id">UT22084-057-010-14</prop>
<tuv xml:lang="bo">
<seg>བཅོམ་ལྡན་འདས་ནི་བླ་མའི་མཆོག །ཁམས་གསུམ་པའི་དམ་པ། བྱང་ཆུབ་ཀྱི་བསོད་ནམས་ཀྱི་ལྷག་པའི་གཞི། སེམས་ཅན་ཐམས་ཅད་ངེས་པར་སྒྲོལ་བར་མཛད་པ། ཀུན་དུ་ཁྱབ་པའི་ཐབས་ལ་མཁས་པའི་ཕྱོགས་ཐུག་པ་མ་མཆིས་པ་ངེས་པར་ཐོབ་པར་མཛད་པ་ལགས་ན། </seg>
</tuv>
<tuv xml:lang="en">
<seg>“Blessed One, you are the supreme teacher, the most eminent in the three realms, the exalted ground for the merit of awakening, the one who liberates all beings, and the one who brings about the attainment of unbounded skill in all-pervasive methods.</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.332.a</prop>
<prop type="location-id">UT22084-057-010-14</prop>
<tuv xml:lang="bo">
<seg>བཅོམ་ལྡན་འདས་མ་མཆིས་པའི་དུས་སྙིགས་མའི་རྙོག་པ་ལྔ་དང་ལྡན་པ་ལ་དུག་གསུམ་འབར་ཞིང་རབ་ཏུ་འབར་ལ། </seg>
</tuv>
<tuv xml:lang="en">
<seg>Thus, Blessed One, in times to come, during the degenerate age when the five polluting degenerations manifest, the three poisons will burn and blaze forth.</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.332.a</prop>
<prop type="location-id">UT22084-057-010-14</prop>
<tuv xml:lang="bo">
<seg>གཅིག་ལ་གཅིག་གདུང་བར་བགྱིད་པའི་སེམས་ཅན་རྣམས་ཀྱི་ནང་ན་གང་ཉེས་པར་བསམ་པ་སེམས་པའི་དུས་ན་གཙོ་བོ་མ་མཆིས་ཤིང་དེ་གང་གི་ཡང་མ་ལགས་པ་དང་། རྒྱལ་པོ་དང་། བློན་པོ་ཆེན་པོ་རྣམས་ཡུལ་ལ་སྲེད་པས་ཟིལ་གྱིས་ནོན་ཏེ་</seg>
</tuv>
<tuv xml:lang="en">
<seg>Then, among those beings who inflict misery on one another there will be people with evil intentions. At that time, there will be no leader, nor anyone of this kind, and kings and high ministers will be overcome by craving for objects,</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.332.a</prop>
<prop type="location-id">UT22084-057-010-14</prop>
<tuv xml:lang="bo">
<seg>ཕན་ཚུན་མི་འཐུན་ཞིང་གཅིག་ལ་གཅིག་གཡུལ་འགྱེད་པ་དང་། </seg>
</tuv>
<tuv xml:lang="en">
<seg>leading them to quarrel and wage war against each other.</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.332.a</prop>
<prop type="location-id">UT22084-057-010-14</prop>
<tuv xml:lang="bo">
<seg>དེ་དག་གཅིག་ལ་གཅིག་གཡུལ་འགྱེད་པ་ན་གཞན་དག་གི་དམག་གི་དཔུང་གི་ཚོགས་དང་། དེ་ལས་གཞན་པ་ཡུལ་གྱི་མི་ལུས་ཆབ་འཚལ་བ་རྣམས་ཀྱི་མིང་ཡང་མི་གདའ་བ་དང་། </seg>
</tuv>
<tuv xml:lang="en">
<seg>When they wage war against each other, their armies of soldiers as well as the remaining civilian population will be ravaged so that not even their names will remain.</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.332.a</prop>
<prop type="location-id">UT22084-057-010-15</prop>
<tuv xml:lang="bo">
<seg>སངས་རྒྱས་ཀྱི་བསོད་ནམས་ཀྱི་མཐུས་སངས་རྒྱས་ཀྱི་སློབ་མ་གང་ཟག་བཞི་པོ་མང་པོ་དེ་དག་ཀྱང་བསྟན་པ་འདི་ལ་འཇུག་ཅིང་རབ་ཏུ་བྱུང་བའི་ཚུལ་འཐོབ་པ་དང་། </seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-057-010-15"/>“Through the power of the Buddha’s merit, many among the four types of the Buddha’s disciples will enter the teachings and take on the guise of monks.</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.332.a</prop>
<prop type="location-id">UT22084-057-010-15</prop>
<tuv xml:lang="bo">
<seg>དེ་དག་ཀྱང་ཕྱི་རོལ་གྱི་གོས་ངུར་སྨྲིག་ཙམ་དང་། ཁོང་པའི་ནང་གི་འདུན་པ་དང་། ཞེ་སྡང་དང་། ཤིན་ཏུ་མ་གུས་ཤིང་ཕན་ཚུན་མི་འཐུན་ལ་གཅིག་ལ་གཅིག་སྐུར་པ་འདེབས་པར་བགྱིད་པ་དང་། </seg>
</tuv>
<tuv xml:lang="en">
<seg>Yet even these people will only outwardly be cloaked in saffron robes, while inwardly they will be angry, disrespectful, disharmonious, and slanderous toward one another.</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.332.a</prop>
<prop type="location-id">UT22084-057-010-15</prop>
<tuv xml:lang="bo">
<seg>སྐྱོན་སྒྲོགས་པར་བགྱིད་པ་དང་། ཡོན་ཏན་ངེས་པར་སྦེད་པར་བགྱིད་པ་དང་། </seg>
</tuv>
<tuv xml:lang="en">
<seg>They will advertise the faults of others and downplay their positive qualities.</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.332.b</prop>
<prop type="location-id">UT22084-057-010-15</prop>
<tuv xml:lang="bo">
<seg>ང་རྒྱལ་དང་། <tei:ref folio="F.332.b"/>རྒྱགས་པ་དང་། དྲེགས་པས་ནོན་ཅིང་ངར་འཛིན་པ་དང་། ང་ཡིར་འཛིན་པར་བགྱིད་པ་དང་། </seg>
</tuv>
<tuv xml:lang="en">
<seg>They will be overcome by pride, conceit, and haughtiness, and will cling to the belief in me and mine.</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.332.b</prop>
<prop type="location-id">UT22084-057-010-15</prop>
<tuv xml:lang="bo">
<seg>དེ་དག་ཤི་འཕོས་ན་ཡང་ངན་སོང་གསུམ་དུ་སྐྱེ་ཞིང་ཡུད་ཙམ་ཞིག་རྙེད་པའི་དཔལ་ཡང་མ་འཚལ་བ་དང་། </seg>
</tuv>
<tuv xml:lang="en">
<seg>When they pass on, they will be born into the lower realms, and they will not find even a moment of fortune.</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.332.b</prop>
<prop type="location-id">UT22084-057-010-15</prop>
<tuv xml:lang="bo">
<seg>ཚེ་རབས་གཞན་དག་ཏུ་བསྐལ་པ་མང་པོར་སྡུག་བསྔལ་གྱི་ཚོར་བ་མི་བཟད་པ། རྩུབ་པ། ཚ་བ། ཡིད་དུ་མི་མཆི་བ་དག་འབྱུང་བར་འགྱུར་བ་ཡང་མཐོང་ལགས་སོ། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>In their future lives they will again encounter many eons of the terrible experiences of suffering and of harshness, heat, and displeasure.</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.332.b</prop>
<prop type="location-id">UT22084-057-010-16</prop>
<tuv xml:lang="bo">
<seg>བཅོམ་ལྡན་འདས་དེའི་སླད་དུ་སེམས་ཅན་འདི་དག་ཡོངས་སུ་སྨིན་པར་བགྱི་བ་དང་། ངན་འགྲོའི་ལམ་ལས་རྣམ་པར་བཟློག་ནས་བསོད་ནམས་ཀྱིས་གཞལ་མེད་ཁང་ཐོབ་པར་བགྱི་བའི་ཆོས་རྣམས་གང་ལགས། དེ་སྐད་ཅེས་གསོལ་པ་དང་། </seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-057-010-16"/>“On account of that, Blessed One, what are the teachings that will ripen them, turn them back from the paths leading to the lower realms, and enable them to attain the celestial palace due to their merit?”</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.332.b</prop>
<prop type="location-id">UT22084-057-010-17</prop>
<tuv xml:lang="bo">
<seg>བཅོམ་ལྡན་འདས་ཀྱིས་ཚོང་དཔོན་སྤོབས་པའི་བློ་གྲོས་ལ་འདི་སྐད་ཅེས་བཀའ་སྩལ་ཏོ། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-057-010-17"/>The Blessed One answered Pratibhānamati,</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.332.b</prop>
<prop type="location-id">UT22084-057-010-17</prop>
<tuv xml:lang="bo">
<seg>སྤོབས་པའི་བློ་གྲོས་དེ་ལྟར་ཁྱོད་སེང་གེའི་སྒྲ་བསྒྲགས་པས་དེ་བཞིན་གཤེགས་པ་ལ་ཞུ་ཞིང་། </seg>
</tuv>
<tuv xml:lang="en">
<seg>“Pratibhānamati, with this lion’s roar, you have asked the Thus-Gone One a question.</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.332.b</prop>
<prop type="location-id">UT22084-057-010-17</prop>
<tuv xml:lang="bo">
<seg>དེ་ལྟར་སེམས་ཅན་ཐམས་ཅད་དེ་བཞིན་གཤེགས་པ་ལ་ཆོས་ཞུ་བར་སྤྲོ་བ་སྐྱེད་པ་</seg>
</tuv>
<tuv xml:lang="en">
<seg>This sort of request for the Dharma of the Thus-Gone One stirs delight in all beings.</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.332.b</prop>
<prop type="location-id">UT22084-057-010-17</prop>
<tuv xml:lang="bo">
<seg>ལེགས་སོ་ལེགས་སོ། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>Excellent, excellent!</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.332.b</prop>
<prop type="location-id">UT22084-057-010-17</prop>
<tuv xml:lang="bo">
<seg>སྤོབས་པའི་བློ་གྲོས་སེམས་ཅན་རྣམས་གང་ཐོབ་ནས་ལེགས་པར་རབ་ཏུ་དཔལ་དང་ལྡན་པར་འགྱུར་ཞིང་། </seg>
</tuv>
<tuv xml:lang="en">
<seg>Pratibhānamati, what attainment would make beings truly splendorous,</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.332.b</prop>
<prop type="location-id">UT22084-057-010-17</prop>
<tuv xml:lang="bo">
<seg>ནག་པོའི་ཕྱོགས་སྒྲུབ་པ་སྤངས་ནས་དཀར་པོའི་ཕྱོགས་ལ་ཞུགས་ཤིང་། དོན་ཐམས་ཅད་འགྲུབ་པར་འགྱུར་བའི་ཆོས་དེ་དག་ཁྱོད་ཞུས་ཤིག་ཞུས་ནས་ཀྱང་</seg>
</tuv>
<tuv xml:lang="en">
<seg>cause them to abandon the dark side, make them join the good side, and accomplish all aims? You should ask about such a teaching. Having done so,</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.332.b</prop>
<prop type="location-id">UT22084-057-010-17</prop>
<tuv xml:lang="bo">
<seg>ཐེ་ཚོམ་མེད་པར་ཉོན་ཅིག་དང་བཤད་པར་བྱའོ། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>you must then listen without doubt and I shall explain.”</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.332.b</prop>
<prop type="location-id">UT22084-057-010-18</prop>
<tuv xml:lang="bo">
<seg>དེ་ནས་བཅོམ་ལྡན་འདས་ལ་སྤོབས་པའི་བློ་གྲོས་ཀྱིས་ཞུས་པ། </seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-057-010-18"/>Pratibhānamati then inquired of the Blessed One,</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.332.b</prop>
<prop type="location-id">UT22084-057-010-18</prop>
<tuv xml:lang="bo">
<seg>བཅོམ་ལྡན་འདས་ལས་གང་དག་གིས་ནི་ལྷ་རྣམས་ཀྱི་རིས་སུ་སྐྱེ་བར་འགྱུར། </seg>
</tuv>
<tuv xml:lang="en">
<seg>“Blessed One, through what deeds is one reborn among the class of gods?</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.332.b</prop>
<prop type="location-id">UT22084-057-010-18</prop>
<tuv xml:lang="bo">
<seg>གང་དག་གིས་ནི་མི་རྣམས་ཀྱི་རིས་སུ་སྐྱེ་བར་འགྱུར། </seg>
</tuv>
<tuv xml:lang="en">
<seg>Through what actions is one reborn among the class of humans?</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.332.b</prop>
<prop type="location-id">UT22084-057-010-18</prop>
<tuv xml:lang="bo">
<seg>གང་དག་གིས་ནི་སེམས་ཅན་དམྱལ་བ་རྣམས་སུ་སྐྱེ་བར་འགྱུར། </seg>
</tuv>
<tuv xml:lang="en">
<seg>Through what actions is one reborn among hell beings?</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.332.b</prop>
<prop type="location-id">UT22084-057-010-18</prop>
<tuv xml:lang="bo">
<seg>གང་དག་གིས་ནི་དུད་འགྲོ་རྣམས་སུ་སྐྱེ་བར་འགྱུར། </seg>
</tuv>
<tuv xml:lang="en">
<seg>Through what actions is one reborn among the animals?</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.332.b</prop>
<prop type="location-id">UT22084-057-010-18</prop>
<tuv xml:lang="bo">
<seg>གང་དག་གིས་ནི་ཡི་དགས་རྣམས་སུ་སྐྱེ་བར་འགྱུར། </seg>
</tuv>
<tuv xml:lang="en">
<seg>Through what actions is one reborn among the hungry spirits?</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.332.b</prop>
<prop type="location-id">UT22084-057-010-18</prop>
<tuv xml:lang="bo">
<seg>གང་དག་གིས་ནི་རིགས་མཐོན་པོ་རྣམས་སུ་སྐྱེ་བར་འགྱུར། </seg>
</tuv>
<tuv xml:lang="en">
<seg>Through what actions is one reborn among the high castes?</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.332.b</prop>
<prop type="location-id">UT22084-057-010-18</prop>
<tuv xml:lang="bo">
<seg>གང་དག་གིས་ནི་བྲན་དང་བྲན་མོ་རྣམས་སུ་སྐྱེ་བར་འགྱུར། </seg>
</tuv>
<tuv xml:lang="en">
<seg>Through what actions is one reborn in servitude?</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.332.b</prop>
<prop type="location-id">UT22084-057-010-18</prop>
<tuv xml:lang="bo">
<seg>བཅོམ་ལྡན་འདས་ལས་གང་དག་གིས་ནི་མི་རྣམས་ཀྱི་ནང་དུ་སེམས་ཅན་སྐྱེས་པ་རྣམས་སྐལ་བ་བཟང་པོར་འགྱུར་ཞིང་</seg>
</tuv>
<tuv xml:lang="en">
<seg>Blessed One, through what actions does one become a fortunate being among humans—</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.333.a</prop>
<prop type="location-id">UT22084-057-010-18</prop>
<tuv xml:lang="bo">
<seg>ཁྱིམ་ཁོལ་དང་ལྡན་པ་དང་། ཁ་དྲི་བདའ་བ་དང་། ཁ་དོག་དང་ལྡན་པ་དང་། <tei:ref folio="F.333.a"/>
</seg>
</tuv>
<tuv xml:lang="en">
<seg>someone who has servants, pleasant breath, a nice complexion, </seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.333.a</prop>
<prop type="location-id">UT22084-057-010-18</prop>
<tuv xml:lang="bo">
<seg>མཐོང་ན་དགའ་བ་དང་། གནོད་པ་མ་མཆིས་པ་དང་། ལུས་དང་སེམས་ཤིན་ཏུ་ཐ་མལ་དུ་གནས་པ་དང་། སྐྱེ་བོ་མང་པོས་བསྔགས་པ་རྣམས་སུ་འགྱུར། </seg>
</tuv>
<tuv xml:lang="en">
<seg>who is a joy to behold, who faces no harm, who is contented in body and mind, and praised by many people?</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.333.a</prop>
<prop type="location-id">UT22084-057-010-18</prop>
<tuv xml:lang="bo">
<seg>ལས་གང་དག་གིས་ནི་སེམས་ཅན་རྣམས་མིའི་དམ་པ་ཐོབ་ནས་རྟག་ཏུ་སྐུར་པ་འདེབས་པ་ཐོབ་པར་འགྱུར་ཞིང་། </seg>
</tuv>
<tuv xml:lang="en">
<seg>Having already attained the excellent human state among beings, through what actions does one meet with constant slander,</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.333.a</prop>
<prop type="location-id">UT22084-057-010-18</prop>
<tuv xml:lang="bo">
<seg>སྐྱེ་བོ་མང་པོ་མི་དགའ་བ་དང་། མདོག་མི་སྡུག་པ་དང་། ཁ་དྲི་མི་བདའ་བ་དང་། </seg>
</tuv>
<tuv xml:lang="en">
<seg>face the enmity of many beings, have an ugly appearance and bad breath,</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.333.a</prop>
<prop type="location-id">UT22084-057-010-18</prop>
<tuv xml:lang="bo">
<seg>གནོད་པ་མང་བ་དང་། སེམས་མི་དགའ་བ་དང་། ལུས་ཤིན་ཏུ་སྦྱངས་པ་མ་ལགས་པ་དང་། ཉེས་བྱས་ཀྱི་ལས་ཐམས་ཅད་བགྱིད་པར་འགྱུར། </seg>
</tuv>
<tuv xml:lang="en">
<seg>face all sorts of adversity, have a joyless mind and an unhealthy body, and indulge in all kinds of negative actions?</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.333.a</prop>
<prop type="location-id">UT22084-057-010-19</prop>
<tuv xml:lang="bo">
<seg>བཅོམ་ལྡན་འདས་ལས་གང་དག་གིས་ནི་ལེགས་པར་གསུངས་པའི་ཆོས་འདུལ་བ་འདི་ལ་རབ་ཏུ་བྱུང་བ་</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-057-010-19"/>“Blessed One, through what actions will those who have taken ordination in this well-spoken Dharma-Vinaya,</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.333.a</prop>
<prop type="location-id">UT22084-057-010-19</prop>
<tuv xml:lang="bo">
<seg>དགེ་སྦྱོང་དང་རིགས་ཀྱི་བུ་དང་། རིགས་ཀྱི་བུ་མོ་ཉེ་བར་ཞི་བ་གཙོ་བོར་འཛིན་པ་རྣམས་གང་དང་གང་དུ་སྐྱེ་བའི་སྐྱེ་བ་ཐམས་ཅད་དུ་རྒྱུན་དུ་སངས་རྒྱས་དང་། ཆོས་དང་། དགེ་འདུན་དཀོན་མཆོག་རྣམས་དང་མི་འབྲལ་བར་འགྱུར་ཞིང་། </seg>
</tuv>
<tuv xml:lang="en">
<seg>as a mendicant or a noble son or daughter who values peace, never part from the Jewels of Buddha, Dharma, and Saṅgha throughout their lifetimes and wherever they may be?</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.333.a</prop>
<prop type="location-id">UT22084-057-010-19</prop>
<tuv xml:lang="bo">
<seg>སངས་རྒྱས་བཅོམ་ལྡན་འདས་རྣམས་མཐོང་ནས་ཀྱང་དེ་དག་ལས་ཆོས་ཐོས་ནས་ཡིད་དགའ་ཞིང་ཅི་བསམས་པ་བཞིན་དུ་དོན་ཡང་གྲུབ་པར་འགྱུར། </seg>
</tuv>
<tuv xml:lang="en">
<seg>Through what actions will they behold the blessed buddhas, receive the Dharma from them, delight in it, and accomplish the aims they have set their minds on?</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.333.a</prop>
<prop type="location-id">UT22084-057-010-20</prop>
<tuv xml:lang="bo">
<seg>བདག་གིས་ཞུ་བ་བཅུ་པོ་དེ་དག་ཞུས་པ་ལགས་ན་འབྱུང་པོ་གྲངས་མ་མཆིས་པ་ཐམས་ཅད་ལ་སྨན་པའི་སླད་དུ་བཅོམ་ལྡན་འདས་གསོལ་བ་མ་བཏབ་པར་དགེ་བའི་བཤེས་གཉེན་མཛད་པ། </seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-057-010-20"/>“Given these ten questions of mine, please, Blessed One, spiritual teacher who acts without being requested,</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.333.a</prop>
<prop type="location-id">UT22084-057-010-20</prop>
<tuv xml:lang="bo">
<seg>ཐུགས་རྗེ་ཆེན་པོ་དང་ལྡན་པ། དབང་དང་ལྡན་པ། </seg>
</tuv>
<tuv xml:lang="en">
<seg>who is endowed with great compassion and power,</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.333.a</prop>
<prop type="location-id">UT22084-057-010-20</prop>
<tuv xml:lang="bo">
<seg>ཆོས་ཐམས་ཅད་ལ་ལྐོག་ཏུ་མ་གྱུར་པའི་སྤྱན་དང་ལྡན་པས་རྣམ་པར་ཕྱེ་སྟེ་རྒྱས་པར་ལན་སྩལ་དུ་གསོལ། </seg>
</tuv>
<tuv xml:lang="en">
<seg>and who discerns all phenomena with unclouded eyes, answer them extensively as a remedy for the innumerable malignant forces.”</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.333.a</prop>
<prop type="location-id">UT22084-057-010-21</prop>
<tuv xml:lang="bo">
<seg>དེ་ནས་བཅོམ་ལྡན་འདས་ཀྱིས་སྤོབས་པའི་བློ་གྲོས་ལ་བཀའ་སྩལ་པ། </seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-057-010-21"/>The Blessed One replied,</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.333.a</prop>
<prop type="location-id">UT22084-057-010-21</prop>
<tuv xml:lang="bo">
<seg>སྤོབས་པའི་བློ་གྲོས་ཁྱོད་ཀྱིས་ཇི་ལྟ་བུ་ཞུ་བ་ཞུས་པ་རྣམས་རྒྱས་པར་རྣམ་པར་ཕྱེ་སྟེ་བཤད་ཀྱིས་ཉོན་ཅིག །</seg>
</tuv>
<tuv xml:lang="en">
<seg>“Pratibhānamati, I will extensively address and answer your questions, just as you have asked them. Listen well!”</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.333.a</prop>
<prop type="location-id">UT22084-057-010-22</prop>
<tuv xml:lang="bo">
<seg>ཚོང་དཔོན་སྤོབས་པའི་བློ་གྲོས་ཀྱིས་བཅོམ་ལྡན་འདས་དེ་བཞིན་འཚལ་ལོ་ཞེས་གསོལ་ནས། </seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-057-010-22"/>The merchant Pratibhānamati responded, “Blessed One, I shall do that,” and</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.333.a</prop>
<prop type="location-id">UT22084-057-010-22</prop>
<tuv xml:lang="bo">
<seg>བཅོམ་ལྡན་འདས་ཀྱི་ལྟར་ཉན་པ་དང་། </seg>
</tuv>
<tuv xml:lang="en">
<seg>he listened as the Blessed One had instructed.</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.333.a</prop>
<prop type="location-id">UT22084-057-010-23</prop>
<tuv xml:lang="bo">
<seg>བཅོམ་ལྡན་འདས་ཀྱིས་འདི་སྐད་ཅེས་བཀའ་སྩལ་ཏོ། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-057-010-23"/>The Blessed One said,</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.333.a</prop>
<prop type="location-id">UT22084-057-010-23</prop>
<tuv xml:lang="bo">
<seg>སྤོབས་པའི་བློ་གྲོས་སེམས་ཅན་ལས་ལྔ་དང་ལྡན་པ་རྣམས་ཀྱིས་ནི་ལྷ་ཉིད་ཐོབ་པར་འགྱུར་ཏེ། </seg>
</tuv>
<tuv xml:lang="en">
<seg>“Pratibhānamati, beings who engage in the following five actions attain rebirth as gods.</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.333.a</prop>
<prop type="location-id">UT22084-057-010-23</prop>
<tuv xml:lang="bo">
<seg>ལྔ་གང་ཞེ་ན། </seg>
</tuv>
<tuv xml:lang="en">
<seg>What are these five?</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.333.a</prop>
<prop type="location-id">UT22084-057-010-23</prop>
<tuv xml:lang="bo">
<seg>དང་པོ་བྱམས་པ་དང་ལྡན་པའི་སེམས་ཀྱིས་གནོད་པ་མེད་པར་སེམས་ཅན་རྣམས་ཡོངས་སུ་སྐྱོང་བར་བྱེད་ཅིང་བཟོད་པ་དང་ལྡན་པ་རྣམས་ཡིན། </seg>
</tuv>
<tuv xml:lang="en">
<seg>(1) First, with loving minds they do no harm to beings but instead protect them and are patient.</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.333.a</prop>
<prop type="location-id">UT22084-057-010-23</prop>
<tuv xml:lang="bo">
<seg>གཞན་གྱིས་ནོར་འཕྲོག་པར་མི་བྱེད་ཅིང་བཀྲེན་པའི་སེམས་དང་ལྡན་པ་མ་ཡིན་པས་ཡོངས་སུ་གཏོང་བར་བྱེད་པ་ཡིན། </seg>
</tuv>
<tuv xml:lang="en">
<seg>(2) They give generously since they are not stingy and do not steal the possessions of others. </seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.333.b</prop>
<prop type="location-id">UT22084-057-010-23</prop>
<tuv xml:lang="bo">
<seg>
<tei:ref folio="F.333.b"/>གཞན་གྱི་ཆུང་མ་ལ་སྤྱོད་པ་རྣམས་ཀྱང་ཡོངས་སུ་དག་པ་མ་ཡིན་ཏེ། </seg>
</tuv>
<tuv xml:lang="en">
<seg>(3) They guard all the bases of training given that those who enjoy themselves with the wives of others are impure.</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.333.b</prop>
<prop type="location-id">UT22084-057-010-23</prop>
<tuv xml:lang="bo">
<seg>བསླབ་པའི་གཞི་རྣམས་ཀྱང་སྲུང་བར་བྱེད་པ་ཡིན། གསོ་སྦྱོང་ལ་བརྩོན་ཞིང་བདེན་པར་སྨྲ་བ་ཡིན་</seg>
</tuv>
<tuv xml:lang="en">
<seg>(4) They naturally maintain diligence in the purification ceremony and speak the truth.</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.333.b</prop>
<prop type="location-id">UT22084-057-010-23</prop>
<tuv xml:lang="bo">
<seg>རང་བཞིན་དུ་འདུག་ཅིང་རང་གི་སྐྱོན་ཚད་མེད་པ་སྤོང་བར་བྱེད་ལ་མྱོས་པར་འགྱུར་བའི་བཏུང་བ་སྤངས་པ་ཡིན་ཏེ། </seg>
</tuv>
<tuv xml:lang="en">
<seg>(5) In order to give up their own limitless faults, they forsake intoxicating beverages.</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.333.b</prop>
<prop type="location-id">UT22084-057-010-23</prop>
<tuv xml:lang="bo">
<seg>ལས་ལྔ་པོ་དེ་དག་དང་ལྡན་པ་རྣམས་ལྷའི་ལུས་ཐོབ་པར་འགྱུར་རོ། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>Beings who engage in these five actions attain divine bodies.”</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.333.b</prop>
<prop type="location-id">UT22084-057-010-24</prop>
<tuv xml:lang="bo">
<seg>དེ་ནས་བཅོམ་ལྡན་འདས་ཀྱིས་དེའི་ཚེ་ཚིགས་སུ་བཅད་པ་འདི་དག་བཀའ་སྩལ་ཏོ། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-057-010-24"/>Then the Blessed One expressed this in verse:</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.333.b</prop>
<prop type="location-id">UT22084-057-010-25</prop>
<tuv xml:lang="bo">
<seg>སྲོག་ཆགས་གསོད་ལས་ལྡོག་པ་བྱས་པས་ལྷ་དང་མི་དང་ལྷ་མིན་རྣམས། །འཇིག་རྟེན་དུ་ནི་མི་ཐུབ་ལུས་ཅན་ཚེ་རིང་ནད་མེད་འགྱུར་བ་ཡིན། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-057-010-25"/>“Turning away from killing living beings, no god, human, or asura In the world can conquer them; their bodies are long-lived and healthy.</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.333.b</prop>
<prop type="location-id">UT22084-057-010-25</prop>
<tuv xml:lang="bo">
<seg>འོད་ཀྱི་དཀྱིལ་འཁོར་དག་པའི་ལུས་ཅན་ཤེས་ལྡན་དྲི་མེད་རྫོགས་པའི་ལུས། </seg>
</tuv>
<tuv xml:lang="en">
<seg>They have pure bodies haloed with light—bodies that are glorious, stainless, and perfect.</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.333.b</prop>
<prop type="location-id">UT22084-057-010-25</prop>
<tuv xml:lang="bo">
<seg>ལྷ་ནང་རབ་མཆོག་དེ་ཡི་ལོངས་སྤྱོད་སྣ་ཚོགས་དཔལ་ཅན་རྟག་ཏུ་འབྱུང་། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>The myriad splendid sense pleasures of the highest gods are always at their disposal.</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.333.b</prop>
<prop type="location-id">UT22084-057-010-26</prop>
<tuv xml:lang="bo">
<seg>བོར་མ་ཐག་ཏུ་ལྷ་ནང་རྟག་ཏུ་ལྷ་ཡི་དབང་ཕྱུག་རྣམས་སུ་འགྱུར། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-057-010-26"/>“As soon they discard this body, they will always become the lord of the gods among gods.</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.333.b</prop>
<prop type="location-id">UT22084-057-010-26</prop>
<tuv xml:lang="bo">
<seg>བསམ་མེད་བསལ་བ་འཕྲོ་བ་རྣམ་ལོག་རིན་ཆེན་ལོངས་སྤྱོད་རྣམས་དང་ལྡན། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>Dispersing, distributing, and renouncing inconceivable wealth, they will find gems and opulence.</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.333.b</prop>
<prop type="location-id">UT22084-057-010-26</prop>
<tuv xml:lang="bo">
<seg>རྟག་ཏུ་དགའ་ཞིང་རབ་ཏུ་ཡིད་དགའ་དཔལ་ལྡན་གཞལ་མེད་ཁང་གནས་ཤིང་། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>They will always be happy and delighted, dwelling in splendid celestial mansions.</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.333.b</prop>
<prop type="location-id">UT22084-057-010-26</prop>
<tuv xml:lang="bo">
<seg>རྩེ་ཞིང་དགའ་བའི་དཔག་བསམ་ཤིང་གི་ཡུལ་ན་མེ་ཏོག་གཏོར་ལུས་ལྡན། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>Their bodies will be like flowers sprinkled in the pleasant and fine realm of the wish-fulfilling tree.</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.333.b</prop>
<prop type="location-id">UT22084-057-010-27</prop>
<tuv xml:lang="bo">
<seg>མཁས་ཤིང་འདོད་པ་མི་ཕན་ཡོངས་སྤངས་དྲི་མཆོག་དག་པའི་ལུས་དང་ལྡན། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-057-010-27"/>“They are knowledgeable, without harmful desires, and have bodies with the finest fragrance.</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.333.b</prop>
<prop type="location-id">UT22084-057-010-27</prop>
<tuv xml:lang="bo">
<seg>ཚེ་རབས་ཀུན་དུ་དཔེ་མེད་གསེར་མཆོག་ལུས་དང་ལྡན་ཞིང་རབ་ཏུ་མཛེས། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>Throughout all their lives, their bodies are tremendously beautiful like the finest gold.</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.333.b</prop>
<prop type="location-id">UT22084-057-010-27</prop>
<tuv xml:lang="bo">
<seg>རྟག་ཏུ་ལྷ་ཡི་ནང་དུ་སྐལ་བ་བཟང་ཐོབ་ལུས་ལས་འོད་འབྱུང་འགྱུར། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>Constantly among the gods, they acquire great fortune and light streams from their bodies.</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.333.b</prop>
<prop type="location-id">UT22084-057-010-27</prop>
<tuv xml:lang="bo">
<seg>ལྷ་མོ་སྣ་ཚོགས་ཚོགས་ཀྱིས་བསྐོར་ཅིང་འདོད་པའི་དཔལ་ལ་སྤྱོད་པར་བྱེད། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>They are surrounded by a host of sundry goddesses and frolic in the glories of passion.</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.333.b</prop>
<prop type="location-id">UT22084-057-010-28</prop>
<tuv xml:lang="bo">
<seg>སྔོན་ཆད་ཆོ་ག་བཞིན་དུ་ངག་སྐྱོན་བཞི་སྤངས་ཁ་ནི་དྲི་ཞིམ་ལྡན། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-057-010-28"/>“They have abandoned the four verbal faults and their mouths have a lovely fragrance in accordance with previous rites.</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.333.b</prop>
<prop type="location-id">UT22084-057-010-28</prop>
<tuv xml:lang="bo">
<seg>གསལ་ཞིང་ཐོགས་མེད་མི་འཇིགས་ཚིག་མཆོག་ལྷ་རྣམས་འདིར་ནི་ངེས་པར་འབྱུང་། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>These gods utter supreme words that are clear, unimpeded, and fearless.</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.333.b</prop>
<prop type="location-id">UT22084-057-010-28</prop>
<tuv xml:lang="bo">
<seg>ཡང་དག་ལན་འདེབས་རྣམ་བསྒྲགས་སྙན་ཅིང་སྐྱེ་བོས་ཤིན་ཏུ་ཚིག་གཟུང་འོས། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>Their accurate responses are praised and eloquent and others find them most agreeable.</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.333.b</prop>
<prop type="location-id">UT22084-057-010-28</prop>
<tuv xml:lang="bo">
<seg>པི་བང་རོལ་མོ་སྒྲ་འབྱོར་སྤྲིན་སྒྲ་སྐད་སྙན་ཕོ་བྲང་འཁོར་སྐད་ལྡན། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>Their palaces resound with the melodious and thunderous sound of strings and percussion.</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.333.b</prop>
<prop type="location-id">UT22084-057-010-29</prop>
<tuv xml:lang="bo">
<seg>མ་རྨོངས་སེམས་ཀྱིས་མྱོས་འགྱུར་མ་ལེགས་རྗོད་བྱེད་སྤངས་པས་ལྷར་འགྱུར་ཞིང་། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-057-010-29"/>“With unimpaired minds, they abandoned confused and ignoble utterances and thus became gods.</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.333.b</prop>
<prop type="location-id">UT22084-057-010-29</prop>
<tuv xml:lang="bo">
<seg>གྲངས་མེད་དགེ་བའི་ལྷ་ཡིས་མཆོད་པ་ལྷ་ཡི་གནས་ན་གནས་པར་འགྱུར། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>Innumerable gods of virtue worship them and they now live in divine abodes.</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.333.b</prop>
<prop type="location-id">UT22084-057-010-29</prop>
<tuv xml:lang="bo">
<seg>བློ་དང་ལྡན་ཞིང་ལུས་བརྟན་ཡིད་བཟང་བག་ཡོད་ཀུན་དང་ལྡན་པར་འགྱུར། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>Intelligent, with stalwart bodies, excellent minds, and possessing all forms of conscientiousness,</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.333.b</prop>
<prop type="location-id">UT22084-057-010-29</prop>
<tuv xml:lang="bo">
<seg>དེ་དག་རྟག་ཏུ་བདེ་འགྱུར་དབང་རྣམས་དེ་དག་ཕན་པ་རྗོད་པར་བྱེད། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>These beings who are always happy and powerful make beneficial speeches.</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.334.a</prop>
<prop type="location-id">UT22084-057-010-30</prop>
<tuv xml:lang="bo">
<seg>གལ་ཏེ་ཚེ་ཟད་ལྷ་ཡི་ཡུལ་ནས་ལྷུང་བའི་ལྷ་རྣམས་དེ་ཚེ་སྨད། །སྡིག་མེད་<tei:ref folio="F.334.a"/>ལོ་བརྒྱ་ཉི་ཤུ་ལོན་ན་ལྷ་ཡི་གནས་སུ་འགྲོ་བར་འགྱུར། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-057-010-30"/>“When their life ends, should these gods plunge from the divine abodes to a lower state, They will remain free from misdeeds, and after one hundred twenty years return to the divine abodes. </seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.334.a</prop>
<prop type="location-id">UT22084-057-010-30</prop>
<tuv xml:lang="bo">
<seg>བསོད་ནམས་ལྔ་མངོན་གྱུར་པས་དེ་ནི་དམ་པ་དཔལ་ལྡན་ལུས་འོད་ཅན། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>Exhibiting the five merits, their sublime and splendid bodies shine.</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.334.a</prop>
<prop type="location-id">UT22084-057-010-30</prop>
<tuv xml:lang="bo">
<seg>ལྷ་རྣམས་ལམ་སེལ་བྱེད་ཅིང་ལྷ་རྣམས་བྱེ་བས་མཆོད་དེ་བརྟན་པར་འགྲོ། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>They act as beacons of the gods and millions of gods resolutely worship them.”</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.334.a</prop>
<prop type="location-id">UT22084-057-010-31</prop>
<tuv xml:lang="bo">
<seg>དེ་ནས་བཅོམ་ལྡན་འདས་ཀྱིས་ཡང་སྤོབས་པའི་བློ་གྲོས་ལ་བཀའ་སྩལ་པ། </seg>
</tuv>
<tuv xml:lang="en">
<seg>
<tei:milestone xml:id="UT22084-057-010-31"/>Then the Blessed One said,</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.334.a</prop>
<prop type="location-id">UT22084-057-010-31</prop>
<tuv xml:lang="bo">
<seg>སྤོབས་པའི་བློ་གྲོས་སེམས་ཅན་ལས་ལྔ་དང་ལྡན་པ་རྣམས་མི་རྣམས་ཀྱི་ནང་དུ་སྐྱེ་བར་འགྱུར་ཏེ། </seg>
</tuv>
<tuv xml:lang="en">
<seg>“Pratibhānamati, beings who engage in the following five actions are reborn among humans.</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.334.a</prop>
<prop type="location-id">UT22084-057-010-31</prop>
<tuv xml:lang="bo">
<seg>ལྔ་གང་ཞེ་ན། </seg>
</tuv>
<tuv xml:lang="en">
<seg>What are these five?</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.334.a</prop>
<prop type="location-id">UT22084-057-010-31</prop>
<tuv xml:lang="bo">
<seg>དང་པོ་བྱས་པ་གཟོ་བས་སྦྱིན་པ་དང་། བཀྲེན་པ་དང་། དབུལ་པོ་དང་། སྡུག་བསྔལ་བ་ལ་ཀུན་བགེད་པ་དང་། </seg>
</tuv>
<tuv xml:lang="en">
<seg>(1) First, they give with gratitude and provide for the poor, the destitute, and the miserable.</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.334.a</prop>
<prop type="location-id">UT22084-057-010-31</prop>
<tuv xml:lang="bo">
<seg>དགེ་བ་བཅུའི་ལས་ཀྱི་ལམ་མ་ཉམས་པར་སྟེན་པ་དང་། </seg>
</tuv>
<tuv xml:lang="en">
<seg>(2) They follow the path of the ten virtues without fail.</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.334.a</prop>
<prop type="location-id">UT22084-057-010-31</prop>
<tuv xml:lang="bo">
<seg>སེམས་ཅན་ཐམས་ཅད་ལ་ཞེ་འགྲས་པ་མེད་པའི་བཟོད་པ་དང་། </seg>
</tuv>
<tuv xml:lang="en">
<seg>(3) They are patient, harboring no hostility toward anyone.</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.334.a</prop>
<prop type="location-id">UT22084-057-010-31</prop>
<tuv xml:lang="bo">
<seg>བརྩོན་འགྲུས་ཀྱིས་སེམས་ཅན་ལེ་ལོ་ཅན་རྣམས་དགེ་བའི་ཆོས་ལ་སྤྲོ་བར་བྱེད་ཅིང་</seg>
</tuv>
<tuv xml:lang="en">
<seg>(4) They diligently inspire lazy beings to the virtuous Dharma.</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.334.a</prop>
<prop type="location-id">UT22084-057-010-31</prop>
<tuv xml:lang="bo">
<seg>ངེས་པའི་སེམས་ཀྱིས་གུས་པ་དང་བཅས་ལ་འཐུན་པར་འཛིན་པ་སྟེ། </seg>
</tuv>
<tuv xml:lang="en">
<seg>(5) With a determined mind, they maintain harmony.</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.334.a</prop>
<prop type="location-id">UT22084-057-010-31</prop>
<tuv xml:lang="bo">
<seg>སྤོབས་པའི་བློ་གྲོས་སེམས་ཅན་ལས་ལྔ་པོ་དེ་དག་དང་ལྡན་པ་རྣམས་མི་ཉིད་འཐོབ་པར་འགྱུར་ཞིང་</seg>
</tuv>
<tuv xml:lang="en">
<seg>Pratibhānamati, beings who engage in these five actions attain human lives and</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.334.a</prop>
<prop type="location-id">UT22084-057-010-31</prop>
<tuv xml:lang="bo">
<seg>ལོངས་སྤྱོད་ཀྱང་ཆེན་པོར་འགྱུར་བ་དང་། ཚེ་རིང་བ་དང་། མཛེས་པ་དང་། གཟི་བརྗིད་དང་ལྡན་པ་དང་། འཇིག་རྟེན་གྱི་རྗེ་དཔོན་དུ་འགྱུར་རོ། །</seg>
</tuv>
<tuv xml:lang="en">
<seg>grow very wealthy, long lived, beautiful, and majestic, and become lords of the world.”</seg>
</tuv>
</tu>
<tu>
<prop type="folio">F.334.a</prop>
<prop type="location-id">UT22084-057-010-32</prop>