@eightyfourthousand/lib-editing 2026.3.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (304) hide show
  1. package/.babelrc +12 -0
  2. package/.eslintrc.json +18 -0
  3. package/README.md +7 -0
  4. package/jest.config.ts +10 -0
  5. package/package.json +35 -0
  6. package/postcss.config.mjs +9 -0
  7. package/project.json +29 -0
  8. package/src/fixtures/basic/json.ts +396 -0
  9. package/src/fixtures/toh251/json.ts +4913 -0
  10. package/src/fixtures/toh251/passages.ts +2814 -0
  11. package/src/fixtures/types.ts +8 -0
  12. package/src/index.ts +4 -0
  13. package/src/lib/block.ts +226 -0
  14. package/src/lib/components/editor/BlockEditor.tsx +38 -0
  15. package/src/lib/components/editor/EditorBackMatterPage.tsx +95 -0
  16. package/src/lib/components/editor/EditorBodyPage.tsx +87 -0
  17. package/src/lib/components/editor/EditorHeader.tsx +22 -0
  18. package/src/lib/components/editor/EditorLayout.tsx +62 -0
  19. package/src/lib/components/editor/EditorLeftPanelPage.tsx +27 -0
  20. package/src/lib/components/editor/EditorProvider.tsx +399 -0
  21. package/src/lib/components/editor/PaginationProvider.tsx +472 -0
  22. package/src/lib/components/editor/TitlesBuilder.tsx +40 -0
  23. package/src/lib/components/editor/TranslationBuilder.tsx +171 -0
  24. package/src/lib/components/editor/TranslationEditor.tsx +32 -0
  25. package/src/lib/components/editor/extensions/Abbreviation/Abbreviation.ts +133 -0
  26. package/src/lib/components/editor/extensions/Audio/Audio.ts +69 -0
  27. package/src/lib/components/editor/extensions/Bold.ts +43 -0
  28. package/src/lib/components/editor/extensions/Document.ts +8 -0
  29. package/src/lib/components/editor/extensions/DragHandle/DragHandle.ts +429 -0
  30. package/src/lib/components/editor/extensions/EndNoteLink/EndNoteLink.tsx +39 -0
  31. package/src/lib/components/editor/extensions/EndNoteLink/EndNoteLinkHoverContent.tsx +139 -0
  32. package/src/lib/components/editor/extensions/EndNoteLink/EndNoteLinkMark.ts +236 -0
  33. package/src/lib/components/editor/extensions/EndNoteLink/endnote-utils.ts +412 -0
  34. package/src/lib/components/editor/extensions/GlobalConfig.ts +52 -0
  35. package/src/lib/components/editor/extensions/GlossaryInstance/GlossaryInput.tsx +54 -0
  36. package/src/lib/components/editor/extensions/GlossaryInstance/GlossaryInstance.tsx +129 -0
  37. package/src/lib/components/editor/extensions/GlossaryInstance/GlossaryInstanceNode.ts +148 -0
  38. package/src/lib/components/editor/extensions/Heading/Heading.ts +71 -0
  39. package/src/lib/components/editor/extensions/HoverInputField.tsx +54 -0
  40. package/src/lib/components/editor/extensions/Image.ts +18 -0
  41. package/src/lib/components/editor/extensions/Indent.ts +103 -0
  42. package/src/lib/components/editor/extensions/InternalLink/InternalLink.ts +173 -0
  43. package/src/lib/components/editor/extensions/InternalLink/InternalLinkHoverContent.tsx +137 -0
  44. package/src/lib/components/editor/extensions/InternalLink/InternalLinkInput.tsx +71 -0
  45. package/src/lib/components/editor/extensions/InternalLink/index.ts +1 -0
  46. package/src/lib/components/editor/extensions/Italic.ts +50 -0
  47. package/src/lib/components/editor/extensions/LeadingSpace.ts +106 -0
  48. package/src/lib/components/editor/extensions/Line/LineNode.ts +41 -0
  49. package/src/lib/components/editor/extensions/LineGroup/LineGroupNode.ts +124 -0
  50. package/src/lib/components/editor/extensions/Link/Link.ts +65 -0
  51. package/src/lib/components/editor/extensions/Link/LinkHoverContent.tsx +124 -0
  52. package/src/lib/components/editor/extensions/Link/index.ts +1 -0
  53. package/src/lib/components/editor/extensions/List.ts +74 -0
  54. package/src/lib/components/editor/extensions/Mantra/Mantra.ts +88 -0
  55. package/src/lib/components/editor/extensions/Mention/Mention.ts +184 -0
  56. package/src/lib/components/editor/extensions/Mention/MentionHoverContent.tsx +158 -0
  57. package/src/lib/components/editor/extensions/NodeWrapper.tsx +57 -0
  58. package/src/lib/components/editor/extensions/Paragraph/Paragraph.ts +25 -0
  59. package/src/lib/components/editor/extensions/ParagraphIndent.ts +87 -0
  60. package/src/lib/components/editor/extensions/Passage/EditLabel.tsx +57 -0
  61. package/src/lib/components/editor/extensions/Passage/EditorOptions.tsx +29 -0
  62. package/src/lib/components/editor/extensions/Passage/Passage.tsx +238 -0
  63. package/src/lib/components/editor/extensions/Passage/PassageNode.ts +223 -0
  64. package/src/lib/components/editor/extensions/Passage/ReaderOptions.tsx +55 -0
  65. package/src/lib/components/editor/extensions/Passage/ShowAnnotations.tsx +92 -0
  66. package/src/lib/components/editor/extensions/Passage/index.ts +1 -0
  67. package/src/lib/components/editor/extensions/Passage/label.spec.ts +118 -0
  68. package/src/lib/components/editor/extensions/Passage/label.ts +39 -0
  69. package/src/lib/components/editor/extensions/Placeholder.ts +9 -0
  70. package/src/lib/components/editor/extensions/SlashCommand/SlashCommand.ts +65 -0
  71. package/src/lib/components/editor/extensions/SlashCommand/SuggestionList.tsx +109 -0
  72. package/src/lib/components/editor/extensions/SlashCommand/Suggestions.ts +185 -0
  73. package/src/lib/components/editor/extensions/SmallCaps.ts +110 -0
  74. package/src/lib/components/editor/extensions/StarterKit.ts +36 -0
  75. package/src/lib/components/editor/extensions/Subscript.ts +43 -0
  76. package/src/lib/components/editor/extensions/Superscript.ts +43 -0
  77. package/src/lib/components/editor/extensions/Table.ts +32 -0
  78. package/src/lib/components/editor/extensions/TextAlign.ts +5 -0
  79. package/src/lib/components/editor/extensions/TitleMetadata.ts +40 -0
  80. package/src/lib/components/editor/extensions/TitleNode.ts +133 -0
  81. package/src/lib/components/editor/extensions/TitlesNode.ts +102 -0
  82. package/src/lib/components/editor/extensions/Trailer.ts +57 -0
  83. package/src/lib/components/editor/extensions/TranslationDocument.ts +7 -0
  84. package/src/lib/components/editor/extensions/TranslationMetadata.ts +58 -0
  85. package/src/lib/components/editor/extensions/Underline.ts +43 -0
  86. package/src/lib/components/editor/hooks/index.ts +4 -0
  87. package/src/lib/components/editor/hooks/useBlockEditor.ts +53 -0
  88. package/src/lib/components/editor/hooks/useDefaultExtensions.ts +39 -0
  89. package/src/lib/components/editor/hooks/useDirtyStore.ts +33 -0
  90. package/src/lib/components/editor/hooks/useTranslationExtensions.ts +148 -0
  91. package/src/lib/components/editor/index.ts +10 -0
  92. package/src/lib/components/editor/menus/EmptyBubbleMenu.tsx +42 -0
  93. package/src/lib/components/editor/menus/MainBubbleMenu.tsx +51 -0
  94. package/src/lib/components/editor/menus/TranslationBubbleMenu.tsx +57 -0
  95. package/src/lib/components/editor/menus/index.ts +3 -0
  96. package/src/lib/components/editor/menus/selectors/EndNoteSelector.tsx +388 -0
  97. package/src/lib/components/editor/menus/selectors/GlossarySelector.tsx +63 -0
  98. package/src/lib/components/editor/menus/selectors/LinkSelector.tsx +68 -0
  99. package/src/lib/components/editor/menus/selectors/MantraSelector.tsx +119 -0
  100. package/src/lib/components/editor/menus/selectors/NodeSelector.tsx +144 -0
  101. package/src/lib/components/editor/menus/selectors/ParagraphButtons.tsx +68 -0
  102. package/src/lib/components/editor/menus/selectors/SelectorInputField.tsx +68 -0
  103. package/src/lib/components/editor/menus/selectors/TextAlignSelector.tsx +89 -0
  104. package/src/lib/components/editor/menus/selectors/TextButtons.tsx +89 -0
  105. package/src/lib/components/editor/menus/selectors/TranslationNodeSelector.tsx +143 -0
  106. package/src/lib/components/editor/menus/selectors/TranslationTextButtons.tsx +125 -0
  107. package/src/lib/components/editor/menus/selectors/index.ts +5 -0
  108. package/src/lib/components/editor/save-filter.spec.ts +94 -0
  109. package/src/lib/components/editor/save-filter.ts +27 -0
  110. package/src/lib/components/editor/util.ts +304 -0
  111. package/src/lib/components/index.ts +3 -0
  112. package/src/lib/components/reader/ReaderBackMatterPage.tsx +62 -0
  113. package/src/lib/components/reader/ReaderBackMatterPanel.tsx +53 -0
  114. package/src/lib/components/reader/ReaderBodyPage.tsx +46 -0
  115. package/src/lib/components/reader/ReaderBodyPanel.tsx +68 -0
  116. package/src/lib/components/reader/ReaderLayout.tsx +39 -0
  117. package/src/lib/components/reader/ReaderLeftPanel.tsx +8 -0
  118. package/src/lib/components/reader/ReaderLeftPanelPage.tsx +31 -0
  119. package/src/lib/components/reader/TranslationReader.tsx +28 -0
  120. package/src/lib/components/reader/index.ts +2 -0
  121. package/src/lib/components/reader/ssr.ts +3 -0
  122. package/src/lib/components/shared/AiSummarizerPage.tsx +12 -0
  123. package/src/lib/components/shared/BackMatterPanel.tsx +143 -0
  124. package/src/lib/components/shared/BodyPanel.tsx +214 -0
  125. package/src/lib/components/shared/HoverCardProvider.tsx +407 -0
  126. package/src/lib/components/shared/Imprint.tsx +24 -0
  127. package/src/lib/components/shared/LabeledElement.tsx +133 -0
  128. package/src/lib/components/shared/LeftPanel.tsx +65 -0
  129. package/src/lib/components/shared/NavigationContext.ts +64 -0
  130. package/src/lib/components/shared/NavigationProvider.tsx +368 -0
  131. package/src/lib/components/shared/OpenGraphImage.tsx +75 -0
  132. package/src/lib/components/shared/PassageSkeleton.tsx +10 -0
  133. package/src/lib/components/shared/RestrictionWarning.tsx +177 -0
  134. package/src/lib/components/shared/SourceReader.tsx +83 -0
  135. package/src/lib/components/shared/SuggestRevisionForm.tsx +99 -0
  136. package/src/lib/components/shared/TableOfContents.tsx +280 -0
  137. package/src/lib/components/shared/ThreeColumnRenderer.tsx +54 -0
  138. package/src/lib/components/shared/TranslationHeader.tsx +86 -0
  139. package/src/lib/components/shared/TranslationHoverCard.tsx +84 -0
  140. package/src/lib/components/shared/TranslationSkeleton.tsx +16 -0
  141. package/src/lib/components/shared/TranslationTable.tsx +155 -0
  142. package/src/lib/components/shared/bibliography/BibliographyBody.tsx +28 -0
  143. package/src/lib/components/shared/bibliography/BibliographyList.tsx +63 -0
  144. package/src/lib/components/shared/bibliography/index.ts +1 -0
  145. package/src/lib/components/shared/generate-metadata.ts +44 -0
  146. package/src/lib/components/shared/glossary/GlossaryInstanceBody.tsx +144 -0
  147. package/src/lib/components/shared/glossary/GlossaryPaginationProvider.tsx +317 -0
  148. package/src/lib/components/shared/glossary/GlossarySkeleton.tsx +19 -0
  149. package/src/lib/components/shared/glossary/GlossaryTermList.tsx +58 -0
  150. package/src/lib/components/shared/glossary/index.ts +3 -0
  151. package/src/lib/components/shared/hooks/useGlossaryInstanceListener.tsx +42 -0
  152. package/src/lib/components/shared/hooks/useScrollInTab.tsx +43 -0
  153. package/src/lib/components/shared/hooks/useScrollPositionRestore.ts +274 -0
  154. package/src/lib/components/shared/hooks/useTohToggle.tsx +52 -0
  155. package/src/lib/components/shared/index.ts +11 -0
  156. package/src/lib/components/shared/ssr.ts +2 -0
  157. package/src/lib/components/shared/titles/FramedCard.tsx +132 -0
  158. package/src/lib/components/shared/titles/LongTitle.tsx +20 -0
  159. package/src/lib/components/shared/titles/LongTitles.tsx +28 -0
  160. package/src/lib/components/shared/titles/Title.tsx +54 -0
  161. package/src/lib/components/shared/titles/TitleDetails.tsx +47 -0
  162. package/src/lib/components/shared/titles/TitleForm.tsx +37 -0
  163. package/src/lib/components/shared/titles/Titles.tsx +114 -0
  164. package/src/lib/components/shared/titles/TitlesCard.tsx +113 -0
  165. package/src/lib/components/shared/titles/index.ts +8 -0
  166. package/src/lib/components/shared/types.ts +79 -0
  167. package/src/lib/components/ssr.ts +2 -0
  168. package/src/lib/exporters/abbreviation.spec.ts +31 -0
  169. package/src/lib/exporters/abbreviation.ts +22 -0
  170. package/src/lib/exporters/annotation.ts +193 -0
  171. package/src/lib/exporters/audio.spec.ts +77 -0
  172. package/src/lib/exporters/audio.ts +27 -0
  173. package/src/lib/exporters/blockquote.spec.ts +48 -0
  174. package/src/lib/exporters/blockquote.ts +24 -0
  175. package/src/lib/exporters/code.spec.ts +93 -0
  176. package/src/lib/exporters/code.ts +26 -0
  177. package/src/lib/exporters/end-note-link.spec.ts +104 -0
  178. package/src/lib/exporters/end-note-link.ts +35 -0
  179. package/src/lib/exporters/export.ts +12 -0
  180. package/src/lib/exporters/glossary-instance.spec.ts +85 -0
  181. package/src/lib/exporters/glossary-instance.ts +31 -0
  182. package/src/lib/exporters/has-abbreviation.spec.ts +31 -0
  183. package/src/lib/exporters/has-abbreviation.ts +21 -0
  184. package/src/lib/exporters/heading.spec.ts +80 -0
  185. package/src/lib/exporters/heading.ts +28 -0
  186. package/src/lib/exporters/image.spec.ts +48 -0
  187. package/src/lib/exporters/image.ts +25 -0
  188. package/src/lib/exporters/indent.spec.ts +58 -0
  189. package/src/lib/exporters/indent.ts +18 -0
  190. package/src/lib/exporters/index.ts +1 -0
  191. package/src/lib/exporters/internal-link.spec.ts +90 -0
  192. package/src/lib/exporters/internal-link.ts +35 -0
  193. package/src/lib/exporters/italic.spec.ts +84 -0
  194. package/src/lib/exporters/italic.ts +55 -0
  195. package/src/lib/exporters/leading-space.spec.ts +28 -0
  196. package/src/lib/exporters/leading-space.ts +16 -0
  197. package/src/lib/exporters/line-group.spec.ts +48 -0
  198. package/src/lib/exporters/line-group.ts +24 -0
  199. package/src/lib/exporters/line.spec.ts +48 -0
  200. package/src/lib/exporters/line.ts +24 -0
  201. package/src/lib/exporters/link.spec.ts +123 -0
  202. package/src/lib/exporters/link.ts +67 -0
  203. package/src/lib/exporters/list-item.spec.ts +48 -0
  204. package/src/lib/exporters/list-item.ts +24 -0
  205. package/src/lib/exporters/list.spec.ts +82 -0
  206. package/src/lib/exporters/list.ts +31 -0
  207. package/src/lib/exporters/mantra.spec.ts +51 -0
  208. package/src/lib/exporters/mantra.ts +25 -0
  209. package/src/lib/exporters/mention.ts +41 -0
  210. package/src/lib/exporters/paragraph.spec.ts +173 -0
  211. package/src/lib/exporters/paragraph.ts +32 -0
  212. package/src/lib/exporters/quote.spec.ts +56 -0
  213. package/src/lib/exporters/quote.ts +25 -0
  214. package/src/lib/exporters/span.spec.ts +118 -0
  215. package/src/lib/exporters/span.ts +44 -0
  216. package/src/lib/exporters/table-body-data.spec.ts +48 -0
  217. package/src/lib/exporters/table-body-data.ts +24 -0
  218. package/src/lib/exporters/table-body-header.spec.ts +48 -0
  219. package/src/lib/exporters/table-body-header.ts +24 -0
  220. package/src/lib/exporters/table-body-row.spec.ts +48 -0
  221. package/src/lib/exporters/table-body-row.ts +24 -0
  222. package/src/lib/exporters/table.spec.ts +48 -0
  223. package/src/lib/exporters/table.ts +24 -0
  224. package/src/lib/exporters/trailer.spec.ts +48 -0
  225. package/src/lib/exporters/trailer.ts +24 -0
  226. package/src/lib/exporters/util.ts +62 -0
  227. package/src/lib/passage.ts +182 -0
  228. package/src/lib/titles.ts +80 -0
  229. package/src/lib/transformers/abbreviation.spec.ts +87 -0
  230. package/src/lib/transformers/abbreviation.ts +30 -0
  231. package/src/lib/transformers/annotate.ts +146 -0
  232. package/src/lib/transformers/audio.spec.ts +55 -0
  233. package/src/lib/transformers/audio.ts +29 -0
  234. package/src/lib/transformers/blockquote.spec.ts +48 -0
  235. package/src/lib/transformers/blockquote.ts +41 -0
  236. package/src/lib/transformers/code.spec.ts +52 -0
  237. package/src/lib/transformers/code.ts +22 -0
  238. package/src/lib/transformers/deprecated.ts +7 -0
  239. package/src/lib/transformers/end-note-link.spec.ts +56 -0
  240. package/src/lib/transformers/end-note-link.ts +76 -0
  241. package/src/lib/transformers/glossary-instance.spec.ts +55 -0
  242. package/src/lib/transformers/glossary-instance.ts +40 -0
  243. package/src/lib/transformers/has-abbreviation.spec.ts +50 -0
  244. package/src/lib/transformers/has-abbreviation.ts +30 -0
  245. package/src/lib/transformers/heading.spec.ts +62 -0
  246. package/src/lib/transformers/heading.ts +30 -0
  247. package/src/lib/transformers/image.spec.ts +51 -0
  248. package/src/lib/transformers/image.ts +28 -0
  249. package/src/lib/transformers/indent.spec.ts +53 -0
  250. package/src/lib/transformers/indent.ts +17 -0
  251. package/src/lib/transformers/index.ts +33 -0
  252. package/src/lib/transformers/inline-title.spec.ts +59 -0
  253. package/src/lib/transformers/inline-title.ts +34 -0
  254. package/src/lib/transformers/internal-link.spec.ts +67 -0
  255. package/src/lib/transformers/internal-link.ts +65 -0
  256. package/src/lib/transformers/italic.ts +22 -0
  257. package/src/lib/transformers/leading-space.spec.ts +55 -0
  258. package/src/lib/transformers/leading-space.ts +17 -0
  259. package/src/lib/transformers/line-group.spec.ts +48 -0
  260. package/src/lib/transformers/line-group.ts +37 -0
  261. package/src/lib/transformers/line.spec.ts +54 -0
  262. package/src/lib/transformers/line.ts +27 -0
  263. package/src/lib/transformers/link.spec.ts +61 -0
  264. package/src/lib/transformers/link.ts +27 -0
  265. package/src/lib/transformers/list-item.spec.ts +48 -0
  266. package/src/lib/transformers/list-item.ts +37 -0
  267. package/src/lib/transformers/list.spec.ts +58 -0
  268. package/src/lib/transformers/list.ts +42 -0
  269. package/src/lib/transformers/mantra.spec.ts +58 -0
  270. package/src/lib/transformers/mantra.ts +28 -0
  271. package/src/lib/transformers/mention.ts +70 -0
  272. package/src/lib/transformers/paragraph.spec.ts +46 -0
  273. package/src/lib/transformers/paragraph.ts +26 -0
  274. package/src/lib/transformers/quote.spec.ts +42 -0
  275. package/src/lib/transformers/quote.ts +3 -0
  276. package/src/lib/transformers/quoted.ts +3 -0
  277. package/src/lib/transformers/recurse.ts +76 -0
  278. package/src/lib/transformers/reference.ts +3 -0
  279. package/src/lib/transformers/span.spec.ts +68 -0
  280. package/src/lib/transformers/span.ts +78 -0
  281. package/src/lib/transformers/split-at.ts +58 -0
  282. package/src/lib/transformers/split-block.ts +110 -0
  283. package/src/lib/transformers/split-content.ts +67 -0
  284. package/src/lib/transformers/split-insert.ts +76 -0
  285. package/src/lib/transformers/split-marks.ts +42 -0
  286. package/src/lib/transformers/split-node.ts +138 -0
  287. package/src/lib/transformers/table-body-data.spec.ts +44 -0
  288. package/src/lib/transformers/table-body-data.ts +29 -0
  289. package/src/lib/transformers/table-body-header.spec.ts +44 -0
  290. package/src/lib/transformers/table-body-header.ts +29 -0
  291. package/src/lib/transformers/table-body-row.spec.ts +44 -0
  292. package/src/lib/transformers/table-body-row.ts +29 -0
  293. package/src/lib/transformers/table.spec.ts +47 -0
  294. package/src/lib/transformers/table.ts +29 -0
  295. package/src/lib/transformers/trailer.spec.ts +43 -0
  296. package/src/lib/transformers/trailer.ts +26 -0
  297. package/src/lib/transformers/transformer.ts +25 -0
  298. package/src/lib/transformers/unknown.ts +8 -0
  299. package/src/lib/transformers/util.ts +20 -0
  300. package/src/lib/types.ts +10 -0
  301. package/src/ssr.ts +1 -0
  302. package/tsconfig.json +20 -0
  303. package/tsconfig.lib.json +29 -0
  304. package/tsconfig.spec.json +22 -0
@@ -0,0 +1,2814 @@
1
+ import { PassageDTO } from '@eightyfourthousand/data-access';
2
+ import { EditorType } from '../types';
3
+
4
+ export const type: EditorType = 'translation';
5
+
6
+ export const content: PassageDTO[] = [
7
+ {
8
+ sort: 2,
9
+ type: 'summaryHeader',
10
+ uuid: '1bf5e88d-b25d-435d-8b8d-ccaa305efef4',
11
+ label: 's.',
12
+ xmlId: 'UT22084-066-009-summary',
13
+ parent: 'UT22084-066-009-summary',
14
+ content: 'Summary',
15
+ work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
16
+ annotations: [
17
+ {
18
+ end: 7,
19
+ type: 'heading',
20
+ uuid: 'ca3f2d68-7689-4d37-afe2-373d437fbb36',
21
+ start: 0,
22
+ content: [
23
+ {
24
+ 'heading-level': 'h2',
25
+ },
26
+ {
27
+ 'heading-type': 'section-title',
28
+ },
29
+ ],
30
+ passage_uuid: '1bf5e88d-b25d-435d-8b8d-ccaa305efef4',
31
+ },
32
+ ],
33
+ },
34
+ {
35
+ sort: 4,
36
+ type: 'summary',
37
+ uuid: '29af456a-931e-4098-bda8-0e6f584ca49d',
38
+ label: 's.1',
39
+ xmlId: 'UT22084-066-009-1',
40
+ parent: 'UT22084-066-009-summary',
41
+ content:
42
+ 'While residing in the Jeta’s Grove in Śrāvastī, the Buddha explains to an assembly of monks and bodhisattvas four factors of the path that bodhisattvas must not abandon even at the cost of their lives: (1) the thought of awakening, (2) the spiritual friend, (3) tolerance and lenience (which are here counted as one), and (4) dwelling in the wilderness. The sūtra concludes with two verses in which the Buddha restates the four factors and asserts that those who do not relinquish them will attain complete awakening.',
43
+ work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
44
+ annotations: [
45
+ {
46
+ end: 34,
47
+ type: 'glossary-instance',
48
+ uuid: 'c84f3056-99ca-403b-baa7-d365ab7e41c2',
49
+ start: 22,
50
+ content: [
51
+ {
52
+ type: 'glossary',
53
+ uuid: '7fc58f66-5fbb-4973-8744-f6589f8aae97',
54
+ glossary_xmlId: 'UT22084-066-009-284',
55
+ },
56
+ ],
57
+ passage_uuid: '29af456a-931e-4098-bda8-0e6f584ca49d',
58
+ },
59
+ {
60
+ end: 46,
61
+ type: 'glossary-instance',
62
+ uuid: '5ba67072-54e0-4b5c-a446-6aaa11eb6053',
63
+ start: 38,
64
+ content: [
65
+ {
66
+ type: 'glossary',
67
+ uuid: 'f2a07704-3c71-4f05-8e6a-5d326406fae2',
68
+ glossary_xmlId: 'UT22084-066-009-72',
69
+ },
70
+ ],
71
+ passage_uuid: '29af456a-931e-4098-bda8-0e6f584ca49d',
72
+ },
73
+ {
74
+ end: 230,
75
+ type: 'glossary-instance',
76
+ uuid: 'b9c0010a-3b22-40c6-b85b-bc6437ab1740',
77
+ start: 210,
78
+ content: [
79
+ {
80
+ type: 'glossary',
81
+ uuid: '445f17ca-164b-4c68-82a3-f9f3ee3595b6',
82
+ glossary_xmlId: 'UT22084-066-009-64',
83
+ },
84
+ ],
85
+ passage_uuid: '29af456a-931e-4098-bda8-0e6f584ca49d',
86
+ },
87
+ {
88
+ end: 256,
89
+ type: 'glossary-instance',
90
+ uuid: 'e05d0163-3b41-46df-8eba-f6e0a34e5b83',
91
+ start: 240,
92
+ content: [
93
+ {
94
+ type: 'glossary',
95
+ uuid: '4049f21f-fa6c-4180-80f5-0750c14162da',
96
+ glossary_xmlId: 'UT22084-066-009-68',
97
+ },
98
+ ],
99
+ passage_uuid: '29af456a-931e-4098-bda8-0e6f584ca49d',
100
+ },
101
+ {
102
+ end: 271,
103
+ type: 'glossary-instance',
104
+ uuid: 'e2c29dee-968f-49c2-9a35-d4f8fa6ac26f',
105
+ start: 262,
106
+ content: [
107
+ {
108
+ type: 'glossary',
109
+ uuid: '3268038f-cca4-471a-94b3-13c62c85b7ca',
110
+ glossary_xmlId: 'UT22084-066-009-66',
111
+ },
112
+ ],
113
+ passage_uuid: '29af456a-931e-4098-bda8-0e6f584ca49d',
114
+ },
115
+ {
116
+ end: 284,
117
+ type: 'glossary-instance',
118
+ uuid: '9e8f4286-3a2f-4ec6-954d-49894ace7797',
119
+ start: 276,
120
+ content: [
121
+ {
122
+ type: 'glossary',
123
+ uuid: '4f7a6a56-6c00-43a0-b457-f3e741364a05',
124
+ glossary_xmlId: 'UT22084-066-009-65',
125
+ },
126
+ ],
127
+ passage_uuid: '29af456a-931e-4098-bda8-0e6f584ca49d',
128
+ },
129
+ {
130
+ end: 352,
131
+ type: 'glossary-instance',
132
+ uuid: 'daa8f2de-672e-47b9-944d-aa6df327cc85',
133
+ start: 326,
134
+ content: [
135
+ {
136
+ type: 'glossary',
137
+ uuid: 'c2d14c50-fccd-4438-bebc-6dfa4f77194e',
138
+ glossary_xmlId: 'UT22084-066-009-67',
139
+ },
140
+ ],
141
+ passage_uuid: '29af456a-931e-4098-bda8-0e6f584ca49d',
142
+ },
143
+ ],
144
+ },
145
+ {
146
+ sort: 20,
147
+ type: 'acknowledgmentHeader',
148
+ uuid: '598d0186-3b3e-456f-8d1f-8b64042c7f7c',
149
+ label: 'ac.',
150
+ xmlId: 'UT22084-066-009-acknowledgment',
151
+ parent: 'UT22084-066-009-acknowledgment',
152
+ content: 'Acknowledgements',
153
+ work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
154
+ annotations: [
155
+ {
156
+ end: 16,
157
+ type: 'heading',
158
+ uuid: '1e1ada36-bdb8-4ab4-aaad-fbb71e7a3dd5',
159
+ start: 0,
160
+ content: [
161
+ {
162
+ 'heading-level': 'h2',
163
+ },
164
+ {
165
+ 'heading-type': 'section-title',
166
+ },
167
+ ],
168
+ passage_uuid: '598d0186-3b3e-456f-8d1f-8b64042c7f7c',
169
+ },
170
+ ],
171
+ },
172
+ {
173
+ sort: 22,
174
+ type: 'acknowledgment',
175
+ uuid: '34760e3e-0cb0-4bfa-b523-cf305f94b393',
176
+ label: 'ac.1',
177
+ xmlId: 'UT22084-066-009-2',
178
+ parent: 'UT22084-066-009-acknowledgment',
179
+ content:
180
+ 'The translation was completed by Adam Pearcey under the patronage and supervision of 84000: Translating the Words of the Buddha and edited by the 84000 editorial team.',
181
+ work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
182
+ },
183
+ {
184
+ sort: 24,
185
+ type: 'introductionHeader',
186
+ uuid: 'e74a4608-44d2-41ae-8017-a2b2ea02574a',
187
+ label: 'i.',
188
+ xmlId: 'UT22084-066-009-introduction',
189
+ parent: 'UT22084-066-009-introduction',
190
+ content: 'Introduction',
191
+ work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
192
+ annotations: [
193
+ {
194
+ end: 12,
195
+ type: 'heading',
196
+ uuid: '3a1e9427-0485-4753-80ca-8929daf94585',
197
+ start: 0,
198
+ content: [
199
+ {
200
+ 'heading-level': 'h2',
201
+ },
202
+ {
203
+ 'heading-type': 'section-title',
204
+ },
205
+ ],
206
+ passage_uuid: 'e74a4608-44d2-41ae-8017-a2b2ea02574a',
207
+ },
208
+ ],
209
+ },
210
+ {
211
+ sort: 26,
212
+ type: 'introduction',
213
+ uuid: 'a2928923-0f9c-4ccc-8285-728a1a3c6b83',
214
+ label: 'i.1',
215
+ xmlId: 'UT22084-066-009-5',
216
+ parent: 'UT22084-066-009-introduction-1',
217
+ content:
218
+ 'The Noble Mahāyāna Sūtra on the Four Factors (Ārya­catur­dharmaka­nāma­mahā­yāna sūtra) is the third of three short sūtras with similar titles (all referring to sets of four dharmas or factors of the path). In many Kangyurs (predominantly those of Tshalpa origin, including the Degé Kangyur) these sūtras are found grouped together.',
219
+ work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
220
+ annotations: [
221
+ {
222
+ end: 45,
223
+ type: 'inline-title',
224
+ uuid: 'a4c61f15-5acb-4007-bd64-7b668d94b2a6',
225
+ start: 0,
226
+ content: [
227
+ {
228
+ lang: 'en',
229
+ },
230
+ ],
231
+ passage_uuid: 'a2928923-0f9c-4ccc-8285-728a1a3c6b83',
232
+ },
233
+ {
234
+ end: 87,
235
+ type: 'inline-title',
236
+ uuid: '900771e9-2305-49c1-9514-2eeda2318021',
237
+ start: 46,
238
+ content: [
239
+ {
240
+ lang: 'Sa-Ltn',
241
+ },
242
+ ],
243
+ passage_uuid: 'a2928923-0f9c-4ccc-8285-728a1a3c6b83',
244
+ },
245
+ {
246
+ end: 181,
247
+ type: 'span',
248
+ uuid: '53647c8d-c64b-4533-b381-6ff17fb994cb',
249
+ start: 174,
250
+ content: [
251
+ {
252
+ 'text-style': 'foreign',
253
+ },
254
+ {
255
+ lang: 'Sa-Ltn',
256
+ },
257
+ ],
258
+ passage_uuid: 'a2928923-0f9c-4ccc-8285-728a1a3c6b83',
259
+ },
260
+ ],
261
+ },
262
+ {
263
+ sort: 33,
264
+ type: 'introduction',
265
+ uuid: 'f5faeec0-ad74-4c36-aab7-a1f492694460',
266
+ label: 'i.2',
267
+ xmlId: 'UT22084-066-009-206',
268
+ parent: 'UT22084-066-009-introduction-1',
269
+ content:
270
+ 'Of the other sūtras in this set, The Sūtra Teaching the Four Factors (Toh 249) is concerned with the four factors necessary for the practice of confession, while The Four Factors (Toh 250) identifies four beliefs that a wise son of a good family should not accept as true. Two further works, The Accomplishment of the Sets of Four Qualities: The Bodhisattvas’ Prātimokṣa (Toh 248) and The Fourfold Accomplishment (Toh 252) also concern themselves with “sets of four” (catuṣka, bzhi pa), thereby forming a larger group of five sūtras in the Degé Kangyur that lay out key elements of the practice of the path in discrete sets of four factors.',
271
+ work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
272
+ annotations: [
273
+ {
274
+ end: 69,
275
+ type: 'inline-title',
276
+ uuid: '6e26360d-627d-4a9e-91e6-a81e2b38432a',
277
+ start: 33,
278
+ content: [
279
+ {
280
+ lang: 'en',
281
+ },
282
+ ],
283
+ passage_uuid: 'f5faeec0-ad74-4c36-aab7-a1f492694460',
284
+ },
285
+ {
286
+ end: 78,
287
+ type: 'end-note-link',
288
+ uuid: '1b1d26bc-4f47-44c3-a6e0-f2ff94f38116',
289
+ start: 78,
290
+ content: [
291
+ {
292
+ uuid: '2cb57e37-0798-4d57-81ae-eb25b4822a16',
293
+ endnote_xmlId: 'UT22084-066-009-59',
294
+ },
295
+ {
296
+ label: '1',
297
+ },
298
+ ],
299
+ passage_uuid: 'f5faeec0-ad74-4c36-aab7-a1f492694460',
300
+ },
301
+ {
302
+ end: 179,
303
+ type: 'inline-title',
304
+ uuid: '159a9e7f-d8fb-46ae-8a2c-7ea20a831291',
305
+ start: 162,
306
+ content: [
307
+ {
308
+ lang: 'en',
309
+ },
310
+ ],
311
+ passage_uuid: 'f5faeec0-ad74-4c36-aab7-a1f492694460',
312
+ },
313
+ {
314
+ end: 188,
315
+ type: 'end-note-link',
316
+ uuid: '30d3420e-b3f8-4b41-97e7-94242c6ad9a2',
317
+ start: 188,
318
+ content: [
319
+ {
320
+ uuid: '24ee6eb1-a9ce-4447-b1f4-b38fb8e4a426',
321
+ endnote_xmlId: 'UT22084-066-009-207',
322
+ },
323
+ {
324
+ label: '2',
325
+ },
326
+ ],
327
+ passage_uuid: 'f5faeec0-ad74-4c36-aab7-a1f492694460',
328
+ },
329
+ {
330
+ end: 371,
331
+ type: 'inline-title',
332
+ uuid: '4681e4c3-f07f-49c2-b061-9fec15722cb2',
333
+ start: 292,
334
+ content: [
335
+ {
336
+ lang: 'en',
337
+ },
338
+ ],
339
+ passage_uuid: 'f5faeec0-ad74-4c36-aab7-a1f492694460',
340
+ },
341
+ {
342
+ end: 380,
343
+ type: 'end-note-link',
344
+ uuid: 'badbdb97-b3e8-4dca-b31c-0a28c8432e6f',
345
+ start: 380,
346
+ content: [
347
+ {
348
+ uuid: '5c383b48-6d8b-4976-b8bd-1bab3f5a16d4',
349
+ endnote_xmlId: 'UT22084-066-009-281',
350
+ },
351
+ {
352
+ label: '3',
353
+ },
354
+ ],
355
+ passage_uuid: 'f5faeec0-ad74-4c36-aab7-a1f492694460',
356
+ },
357
+ {
358
+ end: 413,
359
+ type: 'inline-title',
360
+ uuid: 'e085cc9f-637c-4c8c-bcb1-f62d6d47c3f3',
361
+ start: 385,
362
+ content: [
363
+ {
364
+ lang: 'en',
365
+ },
366
+ ],
367
+ passage_uuid: 'f5faeec0-ad74-4c36-aab7-a1f492694460',
368
+ },
369
+ {
370
+ end: 422,
371
+ type: 'end-note-link',
372
+ uuid: '54c51c32-4597-4174-9e23-184521c456e3',
373
+ start: 422,
374
+ content: [
375
+ {
376
+ uuid: 'd4bb4496-9915-45e9-9b41-6f4744056d34',
377
+ endnote_xmlId: 'UT22084-066-009-62',
378
+ },
379
+ {
380
+ label: '4',
381
+ },
382
+ ],
383
+ passage_uuid: 'f5faeec0-ad74-4c36-aab7-a1f492694460',
384
+ },
385
+ {
386
+ end: 475,
387
+ type: 'span',
388
+ uuid: '66346061-42b1-46ae-844d-a04f5bb9378b',
389
+ start: 468,
390
+ content: [
391
+ {
392
+ 'text-style': 'foreign',
393
+ },
394
+ {
395
+ lang: 'Sa-Ltn',
396
+ },
397
+ ],
398
+ passage_uuid: 'f5faeec0-ad74-4c36-aab7-a1f492694460',
399
+ },
400
+ {
401
+ end: 484,
402
+ type: 'span',
403
+ uuid: '108a6129-2c82-4b66-8b61-8f1fd21b4986',
404
+ start: 477,
405
+ content: [
406
+ {
407
+ 'text-style': 'foreign',
408
+ },
409
+ {
410
+ lang: 'Bo-Ltn',
411
+ },
412
+ ],
413
+ passage_uuid: 'f5faeec0-ad74-4c36-aab7-a1f492694460',
414
+ },
415
+ ],
416
+ },
417
+ {
418
+ sort: 55,
419
+ type: 'introduction',
420
+ uuid: '7d58acfa-74aa-4166-87f8-0f5e66dbb759',
421
+ label: 'i.3',
422
+ xmlId: 'UT22084-066-009-6',
423
+ parent: 'UT22084-066-009-introduction-1',
424
+ content:
425
+ 'In the present sūtra, dharma is a flexible term used to refer to a specific set or category of four important components or factors of the path that a bodhisattva, someone who aspires to achieve the perfect awakening of a buddha, should not abandon under any circumstances. These four factors are (1) the thought of awakening, (2) the spiritual friend or companion and guide in virtue, (3) tolerance and lenience, considered here as a pair, and (4) dwelling in the wilderness, that is, in a place suitably removed from the social world of the town so as to enable spiritual practice.',
426
+ work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
427
+ annotations: [
428
+ {
429
+ end: 28,
430
+ type: 'span',
431
+ uuid: '61689b2b-a597-49d5-a49a-49e5f4761f1d',
432
+ start: 22,
433
+ content: [
434
+ {
435
+ 'text-style': 'foreign',
436
+ },
437
+ {
438
+ lang: 'Sa-Ltn',
439
+ },
440
+ ],
441
+ passage_uuid: '7d58acfa-74aa-4166-87f8-0f5e66dbb759',
442
+ },
443
+ {
444
+ end: 325,
445
+ type: 'glossary-instance',
446
+ uuid: 'd7ff4c34-60d9-4a4e-8cc0-541c097de9c2',
447
+ start: 305,
448
+ content: [
449
+ {
450
+ type: 'glossary',
451
+ uuid: '445f17ca-164b-4c68-82a3-f9f3ee3595b6',
452
+ glossary_xmlId: 'UT22084-066-009-64',
453
+ },
454
+ ],
455
+ passage_uuid: '7d58acfa-74aa-4166-87f8-0f5e66dbb759',
456
+ },
457
+ {
458
+ end: 351,
459
+ type: 'glossary-instance',
460
+ uuid: 'af62f1c4-20e8-44f5-9aa0-59dd50a1e70b',
461
+ start: 335,
462
+ content: [
463
+ {
464
+ type: 'glossary',
465
+ uuid: '4049f21f-fa6c-4180-80f5-0750c14162da',
466
+ glossary_xmlId: 'UT22084-066-009-68',
467
+ },
468
+ ],
469
+ passage_uuid: '7d58acfa-74aa-4166-87f8-0f5e66dbb759',
470
+ },
471
+ {
472
+ end: 399,
473
+ type: 'glossary-instance',
474
+ uuid: '29dd0b50-37c1-48a4-a7f0-053a52df4726',
475
+ start: 390,
476
+ content: [
477
+ {
478
+ type: 'glossary',
479
+ uuid: '3268038f-cca4-471a-94b3-13c62c85b7ca',
480
+ glossary_xmlId: 'UT22084-066-009-66',
481
+ },
482
+ ],
483
+ passage_uuid: '7d58acfa-74aa-4166-87f8-0f5e66dbb759',
484
+ },
485
+ {
486
+ end: 412,
487
+ type: 'glossary-instance',
488
+ uuid: '13e16fac-6f0f-4ce3-b631-b2c32f8a8bdc',
489
+ start: 404,
490
+ content: [
491
+ {
492
+ type: 'glossary',
493
+ uuid: '4f7a6a56-6c00-43a0-b457-f3e741364a05',
494
+ glossary_xmlId: 'UT22084-066-009-65',
495
+ },
496
+ ],
497
+ passage_uuid: '7d58acfa-74aa-4166-87f8-0f5e66dbb759',
498
+ },
499
+ {
500
+ end: 475,
501
+ type: 'glossary-instance',
502
+ uuid: '42200049-3ffb-4646-9418-1e1876172785',
503
+ start: 449,
504
+ content: [
505
+ {
506
+ type: 'glossary',
507
+ uuid: 'c2d14c50-fccd-4438-bebc-6dfa4f77194e',
508
+ glossary_xmlId: 'UT22084-066-009-67',
509
+ },
510
+ ],
511
+ passage_uuid: '7d58acfa-74aa-4166-87f8-0f5e66dbb759',
512
+ },
513
+ ],
514
+ },
515
+ {
516
+ sort: 69,
517
+ type: 'introduction',
518
+ uuid: 'c1bf5bc5-e441-43bd-b79e-eb88b560c811',
519
+ label: 'i.4',
520
+ xmlId: 'UT22084-066-009-7',
521
+ parent: 'UT22084-066-009-introduction-1',
522
+ content:
523
+ 'The Buddha presents these four factors using this formula: “For as long as they live, bodhisattvas, great beings, should not abandon x even at the cost of their lives.” This is repeated in six successive lines, first to introduce all four factors together, then for each one in turn, and finally to refer to all four by way of recapitulation. The sūtra thus employs the rhetorical device of repetition‍—combining anaphora and epistrophe, repetition of the beginning and end phrases of a line‍—that is such a common feature of Buddhist canonical literature.',
524
+ work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
525
+ annotations: [
526
+ {
527
+ end: 112,
528
+ type: 'glossary-instance',
529
+ uuid: '17e2072d-1653-4bba-8ad5-ce8d2956a595',
530
+ start: 100,
531
+ content: [
532
+ {
533
+ type: 'glossary',
534
+ uuid: '1e6586e7-e5dd-49ef-8d6c-b97b66c6aa34',
535
+ glossary_xmlId: 'UT22084-066-009-69',
536
+ },
537
+ ],
538
+ passage_uuid: 'c1bf5bc5-e441-43bd-b79e-eb88b560c811',
539
+ },
540
+ {
541
+ end: 134,
542
+ type: 'span',
543
+ uuid: '3228beba-a86c-41ea-92dd-522af762dd66',
544
+ start: 133,
545
+ content: [
546
+ {
547
+ 'text-style': 'distinct',
548
+ },
549
+ ],
550
+ passage_uuid: 'c1bf5bc5-e441-43bd-b79e-eb88b560c811',
551
+ },
552
+ {
553
+ end: 421,
554
+ type: 'span',
555
+ uuid: 'b515e108-2937-4c9b-a7c0-fd5c86983872',
556
+ start: 413,
557
+ content: [
558
+ {
559
+ 'text-style': 'foreign',
560
+ },
561
+ {
562
+ lang: 'Sa-Ltn',
563
+ },
564
+ ],
565
+ passage_uuid: 'c1bf5bc5-e441-43bd-b79e-eb88b560c811',
566
+ },
567
+ {
568
+ end: 436,
569
+ type: 'span',
570
+ uuid: '77334161-c18c-4136-8fc7-fd6758769620',
571
+ start: 426,
572
+ content: [
573
+ {
574
+ 'text-style': 'foreign',
575
+ },
576
+ {
577
+ lang: 'Sa-Ltn',
578
+ },
579
+ ],
580
+ passage_uuid: 'c1bf5bc5-e441-43bd-b79e-eb88b560c811',
581
+ },
582
+ ],
583
+ },
584
+ {
585
+ sort: 79,
586
+ type: 'introduction',
587
+ uuid: '0cdb868d-6fa5-4c34-9901-fe4b3e005661',
588
+ label: 'i.5',
589
+ xmlId: 'UT22084-066-009-8',
590
+ parent: 'UT22084-066-009-introduction-1',
591
+ content:
592
+ 'The text concludes with two stanzas, also spoken by the Buddha, that summarize the sūtra’s message and explain the benefit of maintaining the four factors. These verses present the factors in a slightly different sequence, with tolerance and lenience preceding the factor of the spiritual friend. They also exhort the wise bodhisattva to be as fearless as a lion, “the king of beasts,” while dwelling in the wilderness.',
593
+ work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
594
+ annotations: [
595
+ {
596
+ end: 237,
597
+ type: 'glossary-instance',
598
+ uuid: '32592c1b-d066-41af-9e95-b5b6e572e4bb',
599
+ start: 228,
600
+ content: [
601
+ {
602
+ type: 'glossary',
603
+ uuid: '3268038f-cca4-471a-94b3-13c62c85b7ca',
604
+ glossary_xmlId: 'UT22084-066-009-66',
605
+ },
606
+ ],
607
+ passage_uuid: '0cdb868d-6fa5-4c34-9901-fe4b3e005661',
608
+ },
609
+ {
610
+ end: 250,
611
+ type: 'glossary-instance',
612
+ uuid: '3848d908-389e-46f3-9d9b-a6be4ecd9652',
613
+ start: 242,
614
+ content: [
615
+ {
616
+ type: 'glossary',
617
+ uuid: '4f7a6a56-6c00-43a0-b457-f3e741364a05',
618
+ glossary_xmlId: 'UT22084-066-009-65',
619
+ },
620
+ ],
621
+ passage_uuid: '0cdb868d-6fa5-4c34-9901-fe4b3e005661',
622
+ },
623
+ {
624
+ end: 295,
625
+ type: 'glossary-instance',
626
+ uuid: 'a441bbfa-f494-49d1-b0ca-15cca2fec9fe',
627
+ start: 279,
628
+ content: [
629
+ {
630
+ type: 'glossary',
631
+ uuid: '4049f21f-fa6c-4180-80f5-0750c14162da',
632
+ glossary_xmlId: 'UT22084-066-009-68',
633
+ },
634
+ ],
635
+ passage_uuid: '0cdb868d-6fa5-4c34-9901-fe4b3e005661',
636
+ },
637
+ {
638
+ end: 418,
639
+ type: 'glossary-instance',
640
+ uuid: '208b82c3-25ef-40fe-a136-1a1110c141dd',
641
+ start: 392,
642
+ content: [
643
+ {
644
+ type: 'glossary',
645
+ uuid: 'c2d14c50-fccd-4438-bebc-6dfa4f77194e',
646
+ glossary_xmlId: 'UT22084-066-009-67',
647
+ },
648
+ ],
649
+ passage_uuid: '0cdb868d-6fa5-4c34-9901-fe4b3e005661',
650
+ },
651
+ ],
652
+ },
653
+ {
654
+ sort: 89,
655
+ type: 'introduction',
656
+ uuid: 'bbf6ff9c-b5de-4b15-9ca8-9185ebc8d620',
657
+ label: 'i.6',
658
+ xmlId: 'UT22084-066-009-15',
659
+ parent: 'UT22084-066-009-introduction-1',
660
+ content:
661
+ 'The Chinese Tripiṭaka contains two translations of the sūtra (Taishō 772 & Taishō 773), both by Divākara and dated to 680 ᴄᴇ and 681 ᴄᴇ. The sūtra and commentaries also appear in several manuscripts of the Dunhuang collection. Among those manuscripts is an annotated translation of the sūtra (IOL Tib J 69) that identifies the translators as Surendrabodhi and Yeshe Dé. This manuscript is significant not only because of the annotations to the translation itself but also because the Kangyur versions lack a translator’s colophon (’gyur byang). The sūtra is listed in both the Denkarma and Phangthangma catalogs of translated works, indicating that the first Tibetan translation of the text was complete by the early ninth century.',
662
+ work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
663
+ annotations: [
664
+ {
665
+ end: 0,
666
+ type: 'leading-space',
667
+ uuid: '8512d924-48b2-477a-a306-35dd5c1b2227',
668
+ start: 0,
669
+ content: [],
670
+ passage_uuid: 'bbf6ff9c-b5de-4b15-9ca8-9185ebc8d620',
671
+ },
672
+ {
673
+ end: 72,
674
+ type: 'end-note-link',
675
+ uuid: '62eb1703-fb29-4c87-addf-cceb31efc04a',
676
+ start: 72,
677
+ content: [
678
+ {
679
+ uuid: 'b63546f7-f747-42eb-83e4-4508719b0342',
680
+ endnote_xmlId: 'UT22084-066-009-16',
681
+ },
682
+ {
683
+ label: '5',
684
+ },
685
+ ],
686
+ passage_uuid: 'bbf6ff9c-b5de-4b15-9ca8-9185ebc8d620',
687
+ },
688
+ {
689
+ end: 85,
690
+ type: 'end-note-link',
691
+ uuid: 'f6eeb3c2-b289-464a-9b5b-a0dee255908e',
692
+ start: 85,
693
+ content: [
694
+ {
695
+ uuid: 'b5ba5c64-cea9-4985-8a32-40c7685f8b8c',
696
+ endnote_xmlId: 'UT22084-066-009-17',
697
+ },
698
+ {
699
+ label: '6',
700
+ },
701
+ ],
702
+ passage_uuid: 'bbf6ff9c-b5de-4b15-9ca8-9185ebc8d620',
703
+ },
704
+ {
705
+ end: 124,
706
+ type: 'span',
707
+ uuid: '278c349d-783a-489c-8f3d-222b7155fa83',
708
+ start: 122,
709
+ content: [
710
+ {
711
+ 'text-style': 'small-caps',
712
+ },
713
+ ],
714
+ passage_uuid: 'bbf6ff9c-b5de-4b15-9ca8-9185ebc8d620',
715
+ },
716
+ {
717
+ end: 135,
718
+ type: 'span',
719
+ uuid: 'e36c2266-0ccb-4fd8-861a-8cc92e31e66e',
720
+ start: 133,
721
+ content: [
722
+ {
723
+ 'text-style': 'small-caps',
724
+ },
725
+ ],
726
+ passage_uuid: 'bbf6ff9c-b5de-4b15-9ca8-9185ebc8d620',
727
+ },
728
+ {
729
+ end: 136,
730
+ type: 'end-note-link',
731
+ uuid: 'd1af8487-12fb-42f7-af65-6f3938e5031c',
732
+ start: 136,
733
+ content: [
734
+ {
735
+ uuid: 'aa913b64-fd95-433b-92ff-e756258f55c0',
736
+ endnote_xmlId: 'UT22084-066-009-18',
737
+ },
738
+ {
739
+ label: '7',
740
+ },
741
+ ],
742
+ passage_uuid: 'bbf6ff9c-b5de-4b15-9ca8-9185ebc8d620',
743
+ },
744
+ {
745
+ end: 542,
746
+ type: 'span',
747
+ uuid: '88bd7213-631f-418d-9048-62d1cf657acd',
748
+ start: 531,
749
+ content: [
750
+ {
751
+ 'text-style': 'foreign',
752
+ },
753
+ {
754
+ lang: 'Bo-Ltn',
755
+ },
756
+ ],
757
+ passage_uuid: 'bbf6ff9c-b5de-4b15-9ca8-9185ebc8d620',
758
+ },
759
+ {
760
+ end: 585,
761
+ type: 'end-note-link',
762
+ uuid: 'afb666ac-6ddc-40ad-b566-750d112ecf8a',
763
+ start: 585,
764
+ content: [
765
+ {
766
+ uuid: '6bdebda4-694f-43c1-bfc7-a14974ebd8cd',
767
+ endnote_xmlId: 'UT22084-066-009-19',
768
+ },
769
+ {
770
+ label: '8',
771
+ },
772
+ ],
773
+ passage_uuid: 'bbf6ff9c-b5de-4b15-9ca8-9185ebc8d620',
774
+ },
775
+ {
776
+ end: 602,
777
+ type: 'end-note-link',
778
+ uuid: '492760ba-0dfd-4805-b3db-65fb2d246267',
779
+ start: 602,
780
+ content: [
781
+ {
782
+ uuid: '23afe851-d528-4bf8-8776-012cf2dc192c',
783
+ endnote_xmlId: 'UT22084-066-009-20',
784
+ },
785
+ {
786
+ label: '9',
787
+ },
788
+ ],
789
+ passage_uuid: 'bbf6ff9c-b5de-4b15-9ca8-9185ebc8d620',
790
+ },
791
+ ],
792
+ },
793
+ {
794
+ sort: 107,
795
+ type: 'introduction',
796
+ uuid: '064a4cd7-e548-469b-b7c1-7d230c7f164a',
797
+ label: 'i.7',
798
+ xmlId: 'UT22084-066-009-9',
799
+ parent: 'UT22084-066-009-introduction-1',
800
+ content:
801
+ 'There is a short commentary on this sūtra attributed to Vasubandhu and preserved in Tibetan in the Tengyur, (*Ārya­catur­dharmaka­vyākhyāna, ’phags pa chos bzhi pa’i rnam par bshad pa, Toh 3990), which we have also translated, as well as a slightly longer commentary on this commentary, attributed to Jñānadatta (: *Āryacatur­dharmaka­vyākhyāna­ṭīkā, ’phags pa chos bzhi pa’i rgya cher bshad pa’i rgya cher ’grel pa, Toh 3990a).',
802
+ work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
803
+ annotations: [
804
+ {
805
+ end: 140,
806
+ type: 'inline-title',
807
+ uuid: '98855691-6c0e-4f05-bf37-d34e9d0179ca',
808
+ start: 110,
809
+ content: [
810
+ {
811
+ lang: 'Sa-Ltn',
812
+ },
813
+ ],
814
+ passage_uuid: '064a4cd7-e548-469b-b7c1-7d230c7f164a',
815
+ },
816
+ {
817
+ end: 184,
818
+ type: 'inline-title',
819
+ uuid: 'dfde321b-1f10-401e-b2b5-7676b788a04b',
820
+ start: 141,
821
+ content: [
822
+ {
823
+ lang: 'Bo-Ltn',
824
+ },
825
+ ],
826
+ passage_uuid: '064a4cd7-e548-469b-b7c1-7d230c7f164a',
827
+ },
828
+ {
829
+ end: 226,
830
+ type: 'end-note-link',
831
+ uuid: '842de512-4908-4b8b-a5cd-e60d5179182a',
832
+ start: 226,
833
+ content: [
834
+ {
835
+ uuid: '0071b8fa-9ec4-43fd-8f40-47ce6c91c489',
836
+ endnote_xmlId: 'UT22084-066-009-209',
837
+ },
838
+ {
839
+ label: '10',
840
+ },
841
+ ],
842
+ passage_uuid: '064a4cd7-e548-469b-b7c1-7d230c7f164a',
843
+ },
844
+ {
845
+ end: 350,
846
+ type: 'inline-title',
847
+ uuid: '9e0e4fba-1860-444a-8936-0830fa1c1f4d',
848
+ start: 316,
849
+ content: [
850
+ {
851
+ lang: 'Sa-Ltn',
852
+ },
853
+ ],
854
+ passage_uuid: '064a4cd7-e548-469b-b7c1-7d230c7f164a',
855
+ },
856
+ {
857
+ end: 416,
858
+ type: 'inline-title',
859
+ uuid: '17ed5280-b4b0-494f-9359-d0a57d0d3d87',
860
+ start: 351,
861
+ content: [
862
+ {
863
+ lang: 'Bo-Ltn',
864
+ },
865
+ ],
866
+ passage_uuid: '064a4cd7-e548-469b-b7c1-7d230c7f164a',
867
+ },
868
+ ],
869
+ },
870
+ {
871
+ sort: 119,
872
+ type: 'introduction',
873
+ uuid: '9835d1d6-9dc2-4359-9029-f109b28c1c54',
874
+ label: 'i.8',
875
+ xmlId: 'UT22084-066-009-10',
876
+ parent: 'UT22084-066-009-introduction-1',
877
+ content:
878
+ 'Several independent treatises found within the Tengyur also make reference to this sūtra. Śāntideva’s Compendium of Training (Śikṣā­samuccaya, Toh 3940), for instance, refers to the second of the four factors when discussing the importance of the teacher. Prajñākaramati also cites the same line in his Commentary on the Difficult Points of the Bodhicaryāvatāra (Bodhi­caryāvatāra­pañjikā; byang chub kyi spyod pa la ’jug pa’i dka’ ’grel, Toh 3872). Vimalamitra refers to the fourth factor on the importance of dwelling in the wilderness in The Meaning of the Gradual Cultivation (rim gyis ’jug pa’i sgom don, Toh 3938). The sūtra has also been cited in works by Tibetan authors. To give just one example, the celebrated Nyingma master Longchen Rabjam (1308–64) quotes the sūtra’s line about the importance of the spiritual friend in the eighth chapter of The White Lotus Autocommentary on the Wish-Fulfilling Treasury (yid bzhin mdzod kyi ’grel pa pad ma dkar po).',
879
+ work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
880
+ annotations: [
881
+ {
882
+ end: 125,
883
+ type: 'inline-title',
884
+ uuid: '45ede0d6-5ff6-4df7-8697-bb8e24d3a7a7',
885
+ start: 102,
886
+ content: [
887
+ {
888
+ lang: 'en',
889
+ },
890
+ ],
891
+ passage_uuid: '9835d1d6-9dc2-4359-9029-f109b28c1c54',
892
+ },
893
+ {
894
+ end: 142,
895
+ type: 'inline-title',
896
+ uuid: '138bd714-9fab-4834-91c2-5894d15045ba',
897
+ start: 126,
898
+ content: [
899
+ {
900
+ lang: 'Sa-Ltn',
901
+ },
902
+ ],
903
+ passage_uuid: '9835d1d6-9dc2-4359-9029-f109b28c1c54',
904
+ },
905
+ {
906
+ end: 255,
907
+ type: 'end-note-link',
908
+ uuid: 'ffad76a0-3a7e-43c5-829f-11205fd28814',
909
+ start: 255,
910
+ content: [
911
+ {
912
+ uuid: '2e04f38b-14cf-48f1-8f5e-eebadac78e49',
913
+ endnote_xmlId: 'UT22084-066-009-11',
914
+ },
915
+ {
916
+ label: '11',
917
+ },
918
+ ],
919
+ passage_uuid: '9835d1d6-9dc2-4359-9029-f109b28c1c54',
920
+ },
921
+ {
922
+ end: 362,
923
+ type: 'inline-title',
924
+ uuid: 'a99d4133-d20f-4f79-8586-9a0ee3b5b4cf',
925
+ start: 303,
926
+ content: [
927
+ {
928
+ lang: 'en',
929
+ },
930
+ ],
931
+ passage_uuid: '9835d1d6-9dc2-4359-9029-f109b28c1c54',
932
+ },
933
+ {
934
+ end: 389,
935
+ type: 'inline-title',
936
+ uuid: '11311772-fe89-4256-a95a-f51b0f8f2662',
937
+ start: 363,
938
+ content: [
939
+ {
940
+ lang: 'Sa-Ltn',
941
+ },
942
+ ],
943
+ passage_uuid: '9835d1d6-9dc2-4359-9029-f109b28c1c54',
944
+ },
945
+ {
946
+ end: 438,
947
+ type: 'inline-title',
948
+ uuid: 'd717a585-33a1-4ce9-a01c-3d29dc7ad492',
949
+ start: 389,
950
+ content: [
951
+ {
952
+ lang: 'Bo-Ltn',
953
+ },
954
+ ],
955
+ passage_uuid: '9835d1d6-9dc2-4359-9029-f109b28c1c54',
956
+ },
957
+ {
958
+ end: 449,
959
+ type: 'end-note-link',
960
+ uuid: '95ece1d3-8650-44d4-a091-a1dee6104eea',
961
+ start: 449,
962
+ content: [
963
+ {
964
+ uuid: '906dc92d-3438-43a0-b368-55e6288d3608',
965
+ endnote_xmlId: 'UT22084-066-009-12',
966
+ },
967
+ {
968
+ label: '12',
969
+ },
970
+ ],
971
+ passage_uuid: '9835d1d6-9dc2-4359-9029-f109b28c1c54',
972
+ },
973
+ {
974
+ end: 537,
975
+ type: 'glossary-instance',
976
+ uuid: 'f4c38243-d9ff-4836-b444-862d9c58cd71',
977
+ start: 511,
978
+ content: [
979
+ {
980
+ type: 'glossary',
981
+ uuid: 'c2d14c50-fccd-4438-bebc-6dfa4f77194e',
982
+ glossary_xmlId: 'UT22084-066-009-67',
983
+ },
984
+ ],
985
+ passage_uuid: '9835d1d6-9dc2-4359-9029-f109b28c1c54',
986
+ },
987
+ {
988
+ end: 580,
989
+ type: 'inline-title',
990
+ uuid: 'bbc624c9-a3da-4545-baaa-755594d07db6',
991
+ start: 541,
992
+ content: [
993
+ {
994
+ lang: 'en',
995
+ },
996
+ ],
997
+ passage_uuid: '9835d1d6-9dc2-4359-9029-f109b28c1c54',
998
+ },
999
+ {
1000
+ end: 609,
1001
+ type: 'inline-title',
1002
+ uuid: '7bece268-7b1f-4353-b60b-4c783a40702b',
1003
+ start: 581,
1004
+ content: [
1005
+ {
1006
+ lang: 'Bo-Ltn',
1007
+ },
1008
+ ],
1009
+ passage_uuid: '9835d1d6-9dc2-4359-9029-f109b28c1c54',
1010
+ },
1011
+ {
1012
+ end: 620,
1013
+ type: 'end-note-link',
1014
+ uuid: 'c0b56deb-c9e9-416a-84ad-aa62d51eb92d',
1015
+ start: 620,
1016
+ content: [
1017
+ {
1018
+ uuid: 'e23dc433-53c0-48f4-8ae5-f3f4fe0db857',
1019
+ endnote_xmlId: 'UT22084-066-009-13',
1020
+ },
1021
+ {
1022
+ label: '13',
1023
+ },
1024
+ ],
1025
+ passage_uuid: '9835d1d6-9dc2-4359-9029-f109b28c1c54',
1026
+ },
1027
+ {
1028
+ end: 830,
1029
+ type: 'glossary-instance',
1030
+ uuid: 'aa4fab69-6fac-40bd-a2db-cd052289c468',
1031
+ start: 814,
1032
+ content: [
1033
+ {
1034
+ type: 'glossary',
1035
+ uuid: '4049f21f-fa6c-4180-80f5-0750c14162da',
1036
+ glossary_xmlId: 'UT22084-066-009-68',
1037
+ },
1038
+ ],
1039
+ passage_uuid: '9835d1d6-9dc2-4359-9029-f109b28c1c54',
1040
+ },
1041
+ {
1042
+ end: 919,
1043
+ type: 'inline-title',
1044
+ uuid: '22241133-0138-4184-b223-137bc10fa43c',
1045
+ start: 856,
1046
+ content: [
1047
+ {
1048
+ lang: 'en',
1049
+ },
1050
+ ],
1051
+ passage_uuid: '9835d1d6-9dc2-4359-9029-f109b28c1c54',
1052
+ },
1053
+ {
1054
+ end: 964,
1055
+ type: 'inline-title',
1056
+ uuid: '551e09fd-991d-4d56-b35c-da2f0e31e395',
1057
+ start: 920,
1058
+ content: [
1059
+ {
1060
+ lang: 'Bo-Ltn',
1061
+ },
1062
+ ],
1063
+ passage_uuid: '9835d1d6-9dc2-4359-9029-f109b28c1c54',
1064
+ },
1065
+ {
1066
+ end: 965,
1067
+ type: 'end-note-link',
1068
+ uuid: '3c71c19a-a396-424b-ad7e-3d44ff2a329c',
1069
+ start: 965,
1070
+ content: [
1071
+ {
1072
+ uuid: '1d76f3e1-914c-4682-8973-4d8ed2bd4b9f',
1073
+ endnote_xmlId: 'UT22084-066-009-14',
1074
+ },
1075
+ {
1076
+ label: '14',
1077
+ },
1078
+ ],
1079
+ passage_uuid: '9835d1d6-9dc2-4359-9029-f109b28c1c54',
1080
+ },
1081
+ ],
1082
+ },
1083
+ {
1084
+ sort: 151,
1085
+ type: 'introduction',
1086
+ uuid: '9293d581-2755-4c1c-91e0-77bc2c0810ef',
1087
+ label: 'i.9',
1088
+ xmlId: 'UT22084-066-009-21',
1089
+ parent: 'UT22084-066-009-introduction-1',
1090
+ content:
1091
+ 'A French translation of the sūtra by Léon Feer was first published in 1866 (and reprinted in 1883). Peter Skilling has included a fine English translation along with some helpful notes under the title “Four Dharmas Never to Be Abandoned” in his recent collection Questioning the Buddha: A Selection of Twenty-Five Sutras.',
1092
+ work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
1093
+ annotations: [
1094
+ {
1095
+ end: 0,
1096
+ type: 'leading-space',
1097
+ uuid: '5571fb38-1193-41c0-9741-30d9656f6726',
1098
+ start: 0,
1099
+ content: [],
1100
+ passage_uuid: '9293d581-2755-4c1c-91e0-77bc2c0810ef',
1101
+ },
1102
+ {
1103
+ end: 99,
1104
+ type: 'end-note-link',
1105
+ uuid: '08eaa440-ef51-46f0-ac00-72bdc7de2c16',
1106
+ start: 99,
1107
+ content: [
1108
+ {
1109
+ uuid: 'b8f11293-b74e-4137-873e-bd826dba04e1',
1110
+ endnote_xmlId: 'UT22084-066-009-22',
1111
+ },
1112
+ {
1113
+ label: '15',
1114
+ },
1115
+ ],
1116
+ passage_uuid: '9293d581-2755-4c1c-91e0-77bc2c0810ef',
1117
+ },
1118
+ {
1119
+ end: 320,
1120
+ type: 'inline-title',
1121
+ uuid: 'e0477a96-7bef-4e95-b84a-987f1c4f10f1',
1122
+ start: 263,
1123
+ content: [
1124
+ {
1125
+ lang: 'en',
1126
+ },
1127
+ ],
1128
+ passage_uuid: '9293d581-2755-4c1c-91e0-77bc2c0810ef',
1129
+ },
1130
+ {
1131
+ end: 321,
1132
+ type: 'end-note-link',
1133
+ uuid: 'b2969d71-74b4-44b0-b42f-8637a6ccc397',
1134
+ start: 321,
1135
+ content: [
1136
+ {
1137
+ uuid: '120d0fb2-a60f-49d3-8ac8-4891703b3442',
1138
+ endnote_xmlId: 'UT22084-066-009-23',
1139
+ },
1140
+ {
1141
+ label: '16',
1142
+ },
1143
+ ],
1144
+ passage_uuid: '9293d581-2755-4c1c-91e0-77bc2c0810ef',
1145
+ },
1146
+ ],
1147
+ },
1148
+ {
1149
+ sort: 158,
1150
+ type: 'introduction',
1151
+ uuid: '61fbe0f6-8817-4e3c-b80c-8a114ca75f3b',
1152
+ label: 'i.10',
1153
+ xmlId: 'UT22084-066-009-24',
1154
+ parent: 'UT22084-066-009-introduction-1',
1155
+ content:
1156
+ 'The following translation was made primarily on the basis of the Degé block print with reference to the Comparative Edition (dpe bsdur ma), the Stok Palace Kangyur, IOL Tib J 69, and the commentaries ascribed to Vasubandhu and Jñānadatta.',
1157
+ work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
1158
+ annotations: [
1159
+ {
1160
+ end: 138,
1161
+ type: 'inline-title',
1162
+ uuid: '6292c481-c7a6-46be-907f-160f6941aedd',
1163
+ start: 125,
1164
+ content: [
1165
+ {
1166
+ lang: 'Bo-Ltn',
1167
+ },
1168
+ ],
1169
+ passage_uuid: '61fbe0f6-8817-4e3c-b80c-8a114ca75f3b',
1170
+ },
1171
+ ],
1172
+ },
1173
+ {
1174
+ sort: 165,
1175
+ type: 'translationHeader',
1176
+ uuid: '0a812d07-8fcc-41b9-9af5-96ec9bce25d5',
1177
+ label: '1.',
1178
+ xmlId: 'UT22084-066-009-section-1',
1179
+ parent: 'UT22084-066-009-section-1',
1180
+ content: 'The Translation',
1181
+ work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
1182
+ annotations: [
1183
+ {
1184
+ end: 15,
1185
+ type: 'heading',
1186
+ uuid: 'c4229046-ec92-4d1e-8bd2-ac9e860d0b64',
1187
+ start: 0,
1188
+ content: [
1189
+ {
1190
+ 'heading-level': 'h2',
1191
+ },
1192
+ {
1193
+ 'heading-type': 'section-title',
1194
+ },
1195
+ ],
1196
+ passage_uuid: '0a812d07-8fcc-41b9-9af5-96ec9bce25d5',
1197
+ },
1198
+ ],
1199
+ },
1200
+ {
1201
+ sort: 166,
1202
+ type: 'translation',
1203
+ uuid: 'b1ac687a-8ba7-46ca-9851-125cf2d77439',
1204
+ label: 'tr.',
1205
+ xmlId: 'UT22084-066-009-body-title',
1206
+ parent: 'UT22084-066-009-translation',
1207
+ content: 'The Noble Mahāyāna Sūtra on The Four Factors',
1208
+ work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
1209
+ alignments: [
1210
+ {
1211
+ toh: 'toh251',
1212
+ tibetan:
1213
+ '༄༅༅། །རྒྱ་གར་སྐད་དུ། ཨཱརྱ་ཙ་ཏུར་དྷརྨ་ཀཾ་ནཱ་མ་མ་ཧཱ་ཡཱ་ན་སཱུ་ཏྲ། བོད་སྐད་དུ། འཕགས་པ་ཆོས་བཞི་པ་ཞེས་བྱ་བ་ཐེག་པ་ཆེན་པོའི་མདོ། ',
1214
+ folio_uuid: '0247fcba-036f-4724-bf7c-b1642982dc56',
1215
+ folio_number: 60,
1216
+ volume_number: 66,
1217
+ passage_uuid: 'b1ac687a-8ba7-46ca-9851-125cf2d77439',
1218
+ },
1219
+ ],
1220
+ annotations: [
1221
+ {
1222
+ end: 28,
1223
+ toh: 'toh251',
1224
+ type: 'heading',
1225
+ uuid: '7184b36c-1264-48fe-9cbf-e36572f3e00f',
1226
+ start: 0,
1227
+ content: [
1228
+ {
1229
+ 'heading-level': 'h2',
1230
+ },
1231
+ {
1232
+ 'heading-type': 'body-title-honorific',
1233
+ },
1234
+ ],
1235
+ passage_uuid: 'b1ac687a-8ba7-46ca-9851-125cf2d77439',
1236
+ },
1237
+ {
1238
+ end: 44,
1239
+ toh: 'toh251',
1240
+ type: 'heading',
1241
+ uuid: 'f5580dae-b137-4614-b4d2-de23f3105982',
1242
+ start: 28,
1243
+ content: [
1244
+ {
1245
+ 'heading-level': 'h2',
1246
+ },
1247
+ {
1248
+ 'heading-type': 'body-title-main',
1249
+ },
1250
+ ],
1251
+ passage_uuid: 'b1ac687a-8ba7-46ca-9851-125cf2d77439',
1252
+ },
1253
+ {
1254
+ end: 28,
1255
+ toh: 'toh251',
1256
+ type: 'leading-space',
1257
+ uuid: 'e134c0c3-e12a-4c6f-b45c-73e3fac2770e',
1258
+ start: 28,
1259
+ content: [],
1260
+ passage_uuid: 'b1ac687a-8ba7-46ca-9851-125cf2d77439',
1261
+ },
1262
+ ],
1263
+ },
1264
+ {
1265
+ sort: 168,
1266
+ type: 'translation',
1267
+ uuid: 'b7a07809-d6e0-427b-bfc6-50ea2acd8155',
1268
+ label: '1.1',
1269
+ xmlId: 'UT22084-066-009-26',
1270
+ parent: 'UT22084-066-009-section-1',
1271
+ content: 'Homage to all the buddhas and bodhisattvas!',
1272
+ work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
1273
+ alignments: [
1274
+ {
1275
+ toh: 'toh251',
1276
+ tibetan: 'སངས་རྒྱས་དང་བྱང་ཆུབ་སེམས་དཔའ་ཐམས་ཅད་ལ་ཕྱག་འཚལ་ལོ། །',
1277
+ folio_uuid: '0247fcba-036f-4724-bf7c-b1642982dc56',
1278
+ folio_number: 60,
1279
+ volume_number: 66,
1280
+ passage_uuid: 'b7a07809-d6e0-427b-bfc6-50ea2acd8155',
1281
+ },
1282
+ ],
1283
+ },
1284
+ {
1285
+ sort: 170,
1286
+ type: 'translation',
1287
+ uuid: '2dda83c5-f367-4b13-96b0-14835d5bb2dd',
1288
+ label: '1.2',
1289
+ xmlId: 'UT22084-066-009-226',
1290
+ parent: 'UT22084-066-009-section-1',
1291
+ content:
1292
+ 'Thus did I hear at one time. The Buddha was residing in Śrāvastī, in Jeta’s Grove, Anāthapiṇḍada’s park, together with a great community of monks, consisting of 1,250 monks, and a great assembly of bodhisattvas. At that time, the Blessed One addressed the monks:',
1293
+ work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
1294
+ alignments: [
1295
+ {
1296
+ toh: 'toh251',
1297
+ tibetan:
1298
+ 'འདི་སྐད་བདག་གིས་ཐོས་པ་དུས་གཅིག་ན། \nབཅོམ་ལྡན་འདས་མཉན་ཡོད་ན་རྒྱལ་བུ་རྒྱལ་བྱེད་ཀྱི་ཚལ་མགོན་མེད་ཟས་སྦྱིན་གྱི་ཀུན་དགའ་ར་བ་ན། དགེ་སློང་སྟོང་ཉིས་བརྒྱ་ལྔ་བཅུའི་དགེ་སློང་གི་དགེ་འདུན་ཆེན་པོ་དང་ཐབས་ཅིག་ཏུ་བཞུགས་ཏེ། བྱང་ཆུབ་སེམས་དཔའི་ཚོགས་ཆེན་པོ་དང་ཡང་ཐབས་ཅིག་གོ། །དེ་ནས་བཅོམ་\nལྡན་འདས་ཀྱིས་དགེ་སློང་རྣམས་ལ་བཀའ་སྩལ་པ། ',
1299
+ folio_uuid: '0247fcba-036f-4724-bf7c-b1642982dc56',
1300
+ folio_number: 60,
1301
+ volume_number: 66,
1302
+ passage_uuid: '2dda83c5-f367-4b13-96b0-14835d5bb2dd',
1303
+ },
1304
+ ],
1305
+ annotations: [
1306
+ {
1307
+ end: 0,
1308
+ type: 'leading-space',
1309
+ uuid: 'c0e02497-7d8e-4150-9178-f13a2ad77d91',
1310
+ start: 0,
1311
+ content: [],
1312
+ passage_uuid: '2dda83c5-f367-4b13-96b0-14835d5bb2dd',
1313
+ },
1314
+ {
1315
+ end: 64,
1316
+ type: 'glossary-instance',
1317
+ uuid: '48b09ede-46cf-419a-9ec8-64c4a610b456',
1318
+ start: 56,
1319
+ content: [
1320
+ {
1321
+ type: 'glossary',
1322
+ uuid: 'f2a07704-3c71-4f05-8e6a-5d326406fae2',
1323
+ glossary_xmlId: 'UT22084-066-009-72',
1324
+ },
1325
+ ],
1326
+ passage_uuid: '2dda83c5-f367-4b13-96b0-14835d5bb2dd',
1327
+ },
1328
+ {
1329
+ end: 103,
1330
+ type: 'glossary-instance',
1331
+ uuid: '4ebf55f0-fddd-45e6-a9af-09997c6f96f5',
1332
+ start: 69,
1333
+ content: [
1334
+ {
1335
+ type: 'glossary',
1336
+ uuid: '7fc58f66-5fbb-4973-8744-f6589f8aae97',
1337
+ glossary_xmlId: 'UT22084-066-009-284',
1338
+ },
1339
+ ],
1340
+ passage_uuid: '2dda83c5-f367-4b13-96b0-14835d5bb2dd',
1341
+ },
1342
+ ],
1343
+ },
1344
+ {
1345
+ sort: 176,
1346
+ type: 'translation',
1347
+ uuid: 'df6f18e0-7db5-4b06-8a8a-fb3a31144f85',
1348
+ label: '1.3',
1349
+ xmlId: 'UT22084-066-009-30',
1350
+ parent: 'UT22084-066-009-section-1',
1351
+ content:
1352
+ '“Monks, for as long as they live, bodhisattvas, great beings, should not abandon four factors even at the cost of their lives. What are these four?',
1353
+ work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
1354
+ alignments: [
1355
+ {
1356
+ toh: 'toh251',
1357
+ tibetan:
1358
+ 'དགེ་སློང་དག་བྱང་ཆུབ་སེམས་དཔའ་སེམས་དཔའ་ཆེན་པོས་ཆོས་བཞི་པོ་འདི་དག་ཇི་སྲིད་འཚོའི་བར་དུ་སྲོག་གི་ཕྱིར་ཡང་ཡོངས་སུ་མི་གཏོང་ངོ་། །བཞི་གང་ཞེ་ན། ',
1359
+ folio_uuid: '0247fcba-036f-4724-bf7c-b1642982dc56',
1360
+ folio_number: 60,
1361
+ volume_number: 66,
1362
+ passage_uuid: 'df6f18e0-7db5-4b06-8a8a-fb3a31144f85',
1363
+ },
1364
+ ],
1365
+ annotations: [
1366
+ {
1367
+ end: 60,
1368
+ type: 'glossary-instance',
1369
+ uuid: '73776d26-6858-413b-9d62-5ffe18a59e4c',
1370
+ start: 48,
1371
+ content: [
1372
+ {
1373
+ type: 'glossary',
1374
+ uuid: '1e6586e7-e5dd-49ef-8d6c-b97b66c6aa34',
1375
+ glossary_xmlId: 'UT22084-066-009-69',
1376
+ },
1377
+ ],
1378
+ passage_uuid: 'df6f18e0-7db5-4b06-8a8a-fb3a31144f85',
1379
+ },
1380
+ ],
1381
+ },
1382
+ {
1383
+ sort: 181,
1384
+ type: 'translation',
1385
+ uuid: '1350a8f8-cb5f-48d6-8d24-7152124b2ed9',
1386
+ label: '1.4',
1387
+ xmlId: 'UT22084-066-009-31',
1388
+ parent: 'UT22084-066-009-section-1',
1389
+ content:
1390
+ '“Monks, for as long as they live, bodhisattvas, great beings, should not abandon the thought of awakening even at the cost of their lives.',
1391
+ work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
1392
+ alignments: [
1393
+ {
1394
+ toh: 'toh251',
1395
+ tibetan:
1396
+ 'དགེ་སློང་དག་བྱང་ཆུབ་སེམས་དཔའ་སེམས་དཔའ་ཆེན་པོས་\nཇི་སྲིད་འཚོའི་བར་དུ་བྱང་ཆུབ་ཀྱི་སེམས་སྲོག་གི་ཕྱིར་ཡང་ཡོངས་སུ་མི་གཏང་བ་དང་། ',
1397
+ folio_uuid: '0247fcba-036f-4724-bf7c-b1642982dc56',
1398
+ folio_number: 60,
1399
+ volume_number: 66,
1400
+ passage_uuid: '1350a8f8-cb5f-48d6-8d24-7152124b2ed9',
1401
+ },
1402
+ ],
1403
+ annotations: [
1404
+ {
1405
+ end: 60,
1406
+ type: 'glossary-instance',
1407
+ uuid: '93fb08c3-dabb-45e3-b9d6-05d40fb8df92',
1408
+ start: 48,
1409
+ content: [
1410
+ {
1411
+ type: 'glossary',
1412
+ uuid: '1e6586e7-e5dd-49ef-8d6c-b97b66c6aa34',
1413
+ glossary_xmlId: 'UT22084-066-009-69',
1414
+ },
1415
+ ],
1416
+ passage_uuid: '1350a8f8-cb5f-48d6-8d24-7152124b2ed9',
1417
+ },
1418
+ {
1419
+ end: 105,
1420
+ type: 'glossary-instance',
1421
+ uuid: '7cb61bc2-cf3c-4b28-a026-56062c3febce',
1422
+ start: 85,
1423
+ content: [
1424
+ {
1425
+ type: 'glossary',
1426
+ uuid: '445f17ca-164b-4c68-82a3-f9f3ee3595b6',
1427
+ glossary_xmlId: 'UT22084-066-009-64',
1428
+ },
1429
+ ],
1430
+ passage_uuid: '1350a8f8-cb5f-48d6-8d24-7152124b2ed9',
1431
+ },
1432
+ ],
1433
+ },
1434
+ {
1435
+ sort: 187,
1436
+ type: 'translation',
1437
+ uuid: 'f1ed1290-9632-4bcf-8e9d-e6bf561e32a8',
1438
+ label: '1.5',
1439
+ xmlId: 'UT22084-066-009-32',
1440
+ parent: 'UT22084-066-009-section-1',
1441
+ content:
1442
+ '“Monks, for as long as they live, bodhisattvas, great beings, should not abandon the spiritual friend even at the cost of their lives.',
1443
+ work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
1444
+ alignments: [
1445
+ {
1446
+ toh: 'toh251',
1447
+ tibetan:
1448
+ 'དགེ་སློང་དག་བྱང་ཆུབ་སེམས་དཔའ་སེམས་དཔའ་ཆེན་པོས་ཇི་སྲིད་འཚོའི་བར་དུ་དགེ་བའི་བཤེས་གཉེན་སྲོག་གི་ཕྱིར་ཡང་ཡོངས་སུ་མི་གཏང་བ་དང་། ',
1449
+ folio_uuid: '0247fcba-036f-4724-bf7c-b1642982dc56',
1450
+ folio_number: 60,
1451
+ volume_number: 66,
1452
+ passage_uuid: 'f1ed1290-9632-4bcf-8e9d-e6bf561e32a8',
1453
+ },
1454
+ ],
1455
+ annotations: [
1456
+ {
1457
+ end: 60,
1458
+ type: 'glossary-instance',
1459
+ uuid: '1e14fa7b-adde-4991-8b26-3f4ff17ac243',
1460
+ start: 48,
1461
+ content: [
1462
+ {
1463
+ type: 'glossary',
1464
+ uuid: '1e6586e7-e5dd-49ef-8d6c-b97b66c6aa34',
1465
+ glossary_xmlId: 'UT22084-066-009-69',
1466
+ },
1467
+ ],
1468
+ passage_uuid: 'f1ed1290-9632-4bcf-8e9d-e6bf561e32a8',
1469
+ },
1470
+ {
1471
+ end: 101,
1472
+ type: 'glossary-instance',
1473
+ uuid: 'b720b5d4-3213-4638-b192-eb8e8dca8299',
1474
+ start: 85,
1475
+ content: [
1476
+ {
1477
+ type: 'glossary',
1478
+ uuid: '4049f21f-fa6c-4180-80f5-0750c14162da',
1479
+ glossary_xmlId: 'UT22084-066-009-68',
1480
+ },
1481
+ ],
1482
+ passage_uuid: 'f1ed1290-9632-4bcf-8e9d-e6bf561e32a8',
1483
+ },
1484
+ ],
1485
+ },
1486
+ {
1487
+ sort: 193,
1488
+ type: 'translation',
1489
+ uuid: '965340e9-4b95-4ab7-966d-059e25b094aa',
1490
+ label: '1.6',
1491
+ xmlId: 'UT22084-066-009-33',
1492
+ parent: 'UT22084-066-009-section-1',
1493
+ content:
1494
+ '“Monks, for as long as they live, bodhisattvas, great beings, should not abandon tolerance and lenience even at the cost of their lives.',
1495
+ work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
1496
+ alignments: [
1497
+ {
1498
+ toh: 'toh251',
1499
+ tibetan:
1500
+ 'དགེ་སློང་དག་བྱང་ཆུབ་སེམས་\nདཔའ་སེམས་དཔའ་ཆེན་པོས་ཇི་སྲིད་འཚོའི་བར་དུ་བཟོད་པ་དང་དེས་པ་སྲོག་གི་ཕྱིར་ཡང་ཡོངས་སུ་མི་གཏང་བ་དང་། ',
1501
+ folio_uuid: '0247fcba-036f-4724-bf7c-b1642982dc56',
1502
+ folio_number: 60,
1503
+ volume_number: 66,
1504
+ passage_uuid: '965340e9-4b95-4ab7-966d-059e25b094aa',
1505
+ },
1506
+ ],
1507
+ annotations: [
1508
+ {
1509
+ end: 60,
1510
+ type: 'glossary-instance',
1511
+ uuid: '9be0ece5-da55-4d6d-934f-26149e9241ac',
1512
+ start: 48,
1513
+ content: [
1514
+ {
1515
+ type: 'glossary',
1516
+ uuid: '1e6586e7-e5dd-49ef-8d6c-b97b66c6aa34',
1517
+ glossary_xmlId: 'UT22084-066-009-69',
1518
+ },
1519
+ ],
1520
+ passage_uuid: '965340e9-4b95-4ab7-966d-059e25b094aa',
1521
+ },
1522
+ {
1523
+ end: 90,
1524
+ type: 'glossary-instance',
1525
+ uuid: '247d0cd6-8f48-4e3d-8c70-ab5ddf7f1382',
1526
+ start: 81,
1527
+ content: [
1528
+ {
1529
+ type: 'glossary',
1530
+ uuid: '3268038f-cca4-471a-94b3-13c62c85b7ca',
1531
+ glossary_xmlId: 'UT22084-066-009-66',
1532
+ },
1533
+ ],
1534
+ passage_uuid: '965340e9-4b95-4ab7-966d-059e25b094aa',
1535
+ },
1536
+ {
1537
+ end: 103,
1538
+ type: 'glossary-instance',
1539
+ uuid: 'bc10971b-913a-4a6b-b0cb-888310563c90',
1540
+ start: 95,
1541
+ content: [
1542
+ {
1543
+ type: 'glossary',
1544
+ uuid: '4f7a6a56-6c00-43a0-b457-f3e741364a05',
1545
+ glossary_xmlId: 'UT22084-066-009-65',
1546
+ },
1547
+ ],
1548
+ passage_uuid: '965340e9-4b95-4ab7-966d-059e25b094aa',
1549
+ },
1550
+ {
1551
+ end: 136,
1552
+ type: 'end-note-link',
1553
+ uuid: 'de90ce7e-9b47-4324-ae1c-b803ee1cd28e',
1554
+ start: 136,
1555
+ content: [
1556
+ {
1557
+ uuid: '5433d5e2-c2f2-4a05-bc48-60dcb1109fbf',
1558
+ endnote_xmlId: 'UT22084-066-009-34',
1559
+ },
1560
+ {
1561
+ label: '17',
1562
+ },
1563
+ ],
1564
+ passage_uuid: '965340e9-4b95-4ab7-966d-059e25b094aa',
1565
+ },
1566
+ ],
1567
+ },
1568
+ {
1569
+ sort: 202,
1570
+ type: 'translation',
1571
+ uuid: '06d427ec-46d0-4df1-9d48-08716f8710ec',
1572
+ label: '1.7',
1573
+ xmlId: 'UT22084-066-009-35',
1574
+ parent: 'UT22084-066-009-section-1',
1575
+ content:
1576
+ '“Monks, for as long as they live, bodhisattvas, great beings, should not abandon dwelling in the wilderness even at the cost of their lives.',
1577
+ work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
1578
+ alignments: [
1579
+ {
1580
+ toh: 'toh251',
1581
+ tibetan:
1582
+ 'དགེ་སློང་དག་བྱང་ཆུབ་སེམས་དཔའ་སེམས་དཔའ་ཆེན་པོས་ཇི་སྲིད་འཚོའི་བར་དུ་དགོན་པ་ལ་གནས་པ་སྲོག་གི་ཕྱིར་ཡང་ཡོངས་སུ་གཏང་བར་མི་བྱ་སྟེ། ',
1583
+ folio_uuid: '0247fcba-036f-4724-bf7c-b1642982dc56',
1584
+ folio_number: 60,
1585
+ volume_number: 66,
1586
+ passage_uuid: '06d427ec-46d0-4df1-9d48-08716f8710ec',
1587
+ },
1588
+ ],
1589
+ annotations: [
1590
+ {
1591
+ end: 60,
1592
+ type: 'glossary-instance',
1593
+ uuid: '85247b59-0ae2-4dc2-8f1d-fc7d43d18e04',
1594
+ start: 48,
1595
+ content: [
1596
+ {
1597
+ type: 'glossary',
1598
+ uuid: '1e6586e7-e5dd-49ef-8d6c-b97b66c6aa34',
1599
+ glossary_xmlId: 'UT22084-066-009-69',
1600
+ },
1601
+ ],
1602
+ passage_uuid: '06d427ec-46d0-4df1-9d48-08716f8710ec',
1603
+ },
1604
+ {
1605
+ end: 107,
1606
+ type: 'glossary-instance',
1607
+ uuid: '9f5020c2-2a3f-4faa-8d83-e953dfb0b255',
1608
+ start: 81,
1609
+ content: [
1610
+ {
1611
+ type: 'glossary',
1612
+ uuid: 'c2d14c50-fccd-4438-bebc-6dfa4f77194e',
1613
+ glossary_xmlId: 'UT22084-066-009-67',
1614
+ },
1615
+ ],
1616
+ passage_uuid: '06d427ec-46d0-4df1-9d48-08716f8710ec',
1617
+ },
1618
+ {
1619
+ end: 107,
1620
+ type: 'end-note-link',
1621
+ uuid: 'd5f88fe6-79d7-45ed-bf99-2cbfca3bc9f3',
1622
+ start: 107,
1623
+ content: [
1624
+ {
1625
+ uuid: 'fb6c0152-67eb-4ef9-91bc-8fb6ea64e6f1',
1626
+ endnote_xmlId: 'UT22084-066-009-135',
1627
+ },
1628
+ {
1629
+ label: '18',
1630
+ },
1631
+ ],
1632
+ passage_uuid: '06d427ec-46d0-4df1-9d48-08716f8710ec',
1633
+ },
1634
+ ],
1635
+ },
1636
+ {
1637
+ sort: 209,
1638
+ type: 'translation',
1639
+ uuid: '7dea2dba-3580-4d45-8bb3-f9cea52a1991',
1640
+ label: '1.8',
1641
+ xmlId: 'UT22084-066-009-36',
1642
+ parent: 'UT22084-066-009-section-1',
1643
+ content:
1644
+ '“Monks, for as long as they live, bodhisattvas, great beings, should not abandon these four factors even at the cost of their lives.”',
1645
+ work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
1646
+ alignments: [
1647
+ {
1648
+ toh: 'toh251',
1649
+ tibetan:
1650
+ 'དགེ་སློང་དག་བྱང་ཆུབ་\nསེམས་དཔའ་སེམས་དཔའ་ཆེན་པོས་ཇི་སྲིད་འཚོའི་བར་དུ་ཆོས་བཞི་པོ་འདི་དག་སྲོག་གི་ཕྱིར་ཡང་ཡོངས་སུ་གཏང་བར་མི་བྱའོ། །',
1651
+ folio_uuid: '0247fcba-036f-4724-bf7c-b1642982dc56',
1652
+ folio_number: 60,
1653
+ volume_number: 66,
1654
+ passage_uuid: '7dea2dba-3580-4d45-8bb3-f9cea52a1991',
1655
+ },
1656
+ ],
1657
+ annotations: [
1658
+ {
1659
+ end: 60,
1660
+ type: 'glossary-instance',
1661
+ uuid: 'f78b3d56-2441-426f-ae87-8285bb46c82a',
1662
+ start: 48,
1663
+ content: [
1664
+ {
1665
+ type: 'glossary',
1666
+ uuid: '1e6586e7-e5dd-49ef-8d6c-b97b66c6aa34',
1667
+ glossary_xmlId: 'UT22084-066-009-69',
1668
+ },
1669
+ ],
1670
+ passage_uuid: '7dea2dba-3580-4d45-8bb3-f9cea52a1991',
1671
+ },
1672
+ ],
1673
+ },
1674
+ {
1675
+ sort: 213,
1676
+ type: 'translation',
1677
+ uuid: 'd9096952-6a7d-4f87-93cf-a8c99a4c1ef3',
1678
+ label: '1.9',
1679
+ xmlId: 'UT22084-066-009-37',
1680
+ parent: 'UT22084-066-009-section-1',
1681
+ content:
1682
+ 'The Blessed One spoke these words, and once the Sugata had spoken in this way, he, the Teacher, also said the following:',
1683
+ work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
1684
+ alignments: [
1685
+ {
1686
+ toh: 'toh251',
1687
+ tibetan:
1688
+ 'བཅོམ་ལྡན་འདས་ཀྱིས་དེ་སྐད་ཅེས་བཀའ་སྩལ་ཏེ། བདེ་བར་གཤེགས་པས་དེ་སྐད་གསུངས་ནས། སྟོན་པས་གཞན་ཡང་འདི་སྐད་བཀའ་སྩལ་\nཏོ། །',
1689
+ folio_uuid: '0247fcba-036f-4724-bf7c-b1642982dc56',
1690
+ folio_number: 60,
1691
+ volume_number: 66,
1692
+ passage_uuid: 'd9096952-6a7d-4f87-93cf-a8c99a4c1ef3',
1693
+ },
1694
+ ],
1695
+ },
1696
+ {
1697
+ sort: 215,
1698
+ type: 'translation',
1699
+ uuid: '7ece3672-4152-4d60-a0d5-cc623a8cfa6f',
1700
+ label: '1.10',
1701
+ xmlId: 'UT22084-066-009-38',
1702
+ parent: 'UT22084-066-009-section-1',
1703
+ content:
1704
+ '“Let the wise conceive the thought of perfect awakening, And not cast aside the thought of omniscience; Let them maintain the strength of tolerance and lenience, And never forsake the spiritual friend.',
1705
+ work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
1706
+ alignments: [
1707
+ {
1708
+ toh: 'toh251',
1709
+ tibetan:
1710
+ 'ཐམས་ཅད་མཁྱེན་ཉིད་སེམས་ནི་མི་གཏོང་ཞིང་། །མཁས་པས་རྫོགས་པའི་བྱང་ཆུབ་སེམས་སྐྱེད་ཅིག །བཟོད་པ་དེས་པའི་སྟོབས་ལ་རབ་གནས་ཏེ། །དགེ་བའི་བཤེས་གཉེན་ཡོངས་སུ་གཏང་མི་བྱ། །',
1711
+ folio_uuid: '0247fcba-036f-4724-bf7c-b1642982dc56',
1712
+ folio_number: 60,
1713
+ volume_number: 66,
1714
+ passage_uuid: '7ece3672-4152-4d60-a0d5-cc623a8cfa6f',
1715
+ },
1716
+ ],
1717
+ annotations: [
1718
+ {
1719
+ end: 201,
1720
+ type: 'line-group',
1721
+ uuid: '7d2b05e7-c63f-40ea-8e6b-3ccefb83c603',
1722
+ start: 0,
1723
+ content: [],
1724
+ passage_uuid: '7ece3672-4152-4d60-a0d5-cc623a8cfa6f',
1725
+ },
1726
+ {
1727
+ end: 57,
1728
+ type: 'line',
1729
+ uuid: '181a3584-20b8-4d6e-a0e5-c0ea733dbae6',
1730
+ start: 0,
1731
+ content: [],
1732
+ passage_uuid: '7ece3672-4152-4d60-a0d5-cc623a8cfa6f',
1733
+ },
1734
+ {
1735
+ end: 104,
1736
+ type: 'line',
1737
+ uuid: 'ca6b3880-1040-4920-b1ce-e80aa7e7bcd7',
1738
+ start: 57,
1739
+ content: [],
1740
+ passage_uuid: '7ece3672-4152-4d60-a0d5-cc623a8cfa6f',
1741
+ },
1742
+ {
1743
+ end: 102,
1744
+ type: 'end-note-link',
1745
+ uuid: 'bc5071aa-2099-4323-a353-6318e01de343',
1746
+ start: 102,
1747
+ content: [
1748
+ {
1749
+ uuid: 'fb352874-9ae4-4658-97ea-ec944f2c6dfc',
1750
+ endnote_xmlId: 'UT22084-066-009-39',
1751
+ },
1752
+ {
1753
+ label: '19',
1754
+ },
1755
+ ],
1756
+ passage_uuid: '7ece3672-4152-4d60-a0d5-cc623a8cfa6f',
1757
+ },
1758
+ {
1759
+ end: 162,
1760
+ type: 'line',
1761
+ uuid: '196aa179-8cea-4525-8a41-19eb0781312f',
1762
+ start: 104,
1763
+ content: [],
1764
+ passage_uuid: '7ece3672-4152-4d60-a0d5-cc623a8cfa6f',
1765
+ },
1766
+ {
1767
+ end: 147,
1768
+ type: 'glossary-instance',
1769
+ uuid: '79f4938e-df3c-40c8-a618-fa188a124517',
1770
+ start: 138,
1771
+ content: [
1772
+ {
1773
+ type: 'glossary',
1774
+ uuid: '3268038f-cca4-471a-94b3-13c62c85b7ca',
1775
+ glossary_xmlId: 'UT22084-066-009-66',
1776
+ },
1777
+ ],
1778
+ passage_uuid: '7ece3672-4152-4d60-a0d5-cc623a8cfa6f',
1779
+ },
1780
+ {
1781
+ end: 160,
1782
+ type: 'glossary-instance',
1783
+ uuid: 'dd65abe5-d658-40d9-820d-d9c427e40f5e',
1784
+ start: 152,
1785
+ content: [
1786
+ {
1787
+ type: 'glossary',
1788
+ uuid: '4f7a6a56-6c00-43a0-b457-f3e741364a05',
1789
+ glossary_xmlId: 'UT22084-066-009-65',
1790
+ },
1791
+ ],
1792
+ passage_uuid: '7ece3672-4152-4d60-a0d5-cc623a8cfa6f',
1793
+ },
1794
+ {
1795
+ end: 201,
1796
+ type: 'line',
1797
+ uuid: 'cf054120-9398-4855-8c62-3677041041d4',
1798
+ start: 162,
1799
+ content: [],
1800
+ passage_uuid: '7ece3672-4152-4d60-a0d5-cc623a8cfa6f',
1801
+ },
1802
+ {
1803
+ end: 200,
1804
+ type: 'glossary-instance',
1805
+ uuid: '83d1bcb5-15ed-492b-a401-d59e7a0c0ad3',
1806
+ start: 184,
1807
+ content: [
1808
+ {
1809
+ type: 'glossary',
1810
+ uuid: '4049f21f-fa6c-4180-80f5-0750c14162da',
1811
+ glossary_xmlId: 'UT22084-066-009-68',
1812
+ },
1813
+ ],
1814
+ passage_uuid: '7ece3672-4152-4d60-a0d5-cc623a8cfa6f',
1815
+ },
1816
+ ],
1817
+ },
1818
+ {
1819
+ sort: 230,
1820
+ type: 'translation',
1821
+ uuid: 'ee947d31-48e1-4b37-a901-b999b24962f3',
1822
+ label: '1.11',
1823
+ xmlId: 'UT22084-066-009-40',
1824
+ parent: 'UT22084-066-009-section-1',
1825
+ content:
1826
+ '“If the wise, like the king of beasts, abandon fear, Always remain dwelling in the wilderness, And constantly maintain these factors, They will conquer the māras and attain awakening.”',
1827
+ work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
1828
+ alignments: [
1829
+ {
1830
+ toh: 'toh251',
1831
+ tibetan:
1832
+ 'རི་དགས་རྒྱལ་པོ་བཞིན་དུ་འཇིགས་སྤངས་ཏེ། །མཁས་[F.61.a]པས་དགོན་གནས་རྟག་ཏུ་བསྟེན་པར་བྱ། །ཆོས་འདི་དག་ལ་རྟག་ཏུ་རབ་གནས་ན། །བདུད་རྣམས་བཅོམ་ནས་བྱང་ཆུབ་དེ་འཚང་རྒྱ། །',
1833
+ folio_uuid: '0247fcba-036f-4724-bf7c-b1642982dc56',
1834
+ folio_number: 60,
1835
+ volume_number: 66,
1836
+ passage_uuid: 'ee947d31-48e1-4b37-a901-b999b24962f3',
1837
+ },
1838
+ ],
1839
+ annotations: [
1840
+ {
1841
+ end: 184,
1842
+ type: 'line-group',
1843
+ uuid: 'e9eec4aa-3a9f-435b-9111-4aa27a3deb11',
1844
+ start: 0,
1845
+ content: [],
1846
+ passage_uuid: 'ee947d31-48e1-4b37-a901-b999b24962f3',
1847
+ },
1848
+ {
1849
+ end: 53,
1850
+ type: 'line',
1851
+ uuid: '9b820bc7-def0-484e-bdd8-088d19e37b48',
1852
+ start: 0,
1853
+ content: [],
1854
+ passage_uuid: 'ee947d31-48e1-4b37-a901-b999b24962f3',
1855
+ },
1856
+ {
1857
+ end: 95,
1858
+ type: 'line',
1859
+ uuid: 'd65f874d-9d51-42f3-aa8d-60a200f566fd',
1860
+ start: 53,
1861
+ content: [],
1862
+ passage_uuid: 'ee947d31-48e1-4b37-a901-b999b24962f3',
1863
+ },
1864
+ {
1865
+ end: 93,
1866
+ type: 'glossary-instance',
1867
+ uuid: 'cc951a6e-3334-4f23-8727-8d1b9807e186',
1868
+ start: 67,
1869
+ content: [
1870
+ {
1871
+ type: 'glossary',
1872
+ uuid: 'c2d14c50-fccd-4438-bebc-6dfa4f77194e',
1873
+ glossary_xmlId: 'UT22084-066-009-67',
1874
+ },
1875
+ ],
1876
+ passage_uuid: 'ee947d31-48e1-4b37-a901-b999b24962f3',
1877
+ },
1878
+ {
1879
+ end: 134,
1880
+ type: 'line',
1881
+ uuid: '7defb520-391b-488f-8821-ab35d7fac408',
1882
+ start: 95,
1883
+ content: [],
1884
+ passage_uuid: 'ee947d31-48e1-4b37-a901-b999b24962f3',
1885
+ },
1886
+ {
1887
+ end: 184,
1888
+ type: 'line',
1889
+ uuid: 'e003cc18-27e1-4be5-b52d-ed4230eaf692',
1890
+ start: 134,
1891
+ content: [],
1892
+ passage_uuid: 'ee947d31-48e1-4b37-a901-b999b24962f3',
1893
+ },
1894
+ ],
1895
+ },
1896
+ {
1897
+ sort: 241,
1898
+ type: 'translation',
1899
+ uuid: '3c0a9671-d031-40fa-ae5b-def8887c4ded',
1900
+ label: '1.12',
1901
+ xmlId: 'UT22084-066-009-41',
1902
+ parent: 'UT22084-066-009-section-1',
1903
+ content:
1904
+ 'When the Blessed One had said this, the monks and bodhisattvas, together with the entire assembly, rejoiced and praised the words of the Blessed One.',
1905
+ work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
1906
+ alignments: [
1907
+ {
1908
+ toh: 'toh251',
1909
+ tibetan:
1910
+ 'བཅོམ་ལྡན་འདས་ཀྱིས་དེ་སྐད་ཅེས་བཀའ་སྩལ་ནས། དགེ་སློང་དེ་དག་དང་། བྱང་ཆུབ་སེམས་དཔའ་དེ་དག་དང་། \nཐམས་ཅད་དང་ལྡན་པའི་འཁོར་དེ་དག་ཡི་རངས་ཏེ། བཅོམ་ལྡན་འདས་ཀྱིས་གསུངས་པ་ལ་མངོན་པར་བསྟོད་དོ།། །།',
1911
+ folio_uuid: '9cb7de38-b313-4014-91a2-71dc81d46c96',
1912
+ folio_number: 61,
1913
+ volume_number: 66,
1914
+ passage_uuid: '3c0a9671-d031-40fa-ae5b-def8887c4ded',
1915
+ },
1916
+ ],
1917
+ },
1918
+ {
1919
+ sort: 243,
1920
+ type: 'translation',
1921
+ uuid: 'de103c91-0bb2-4f90-9d98-c84718baecc9',
1922
+ label: '1.13',
1923
+ xmlId: 'UT22084-066-009-42',
1924
+ parent: 'UT22084-066-009-section-1',
1925
+ content: 'This concludes “The Noble Mahāyāna Sūtra on the Four Factors.”',
1926
+ work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
1927
+ alignments: [
1928
+ {
1929
+ toh: 'toh251',
1930
+ tibetan: 'འཕགས་པ་ཆོས་བཞི་པ་ཞེས་བྱ་བ་ཐེག་པ་ཆེན་པོའི་མདོ་རྫོགས་སོ། །',
1931
+ folio_uuid: '9cb7de38-b313-4014-91a2-71dc81d46c96',
1932
+ folio_number: 61,
1933
+ volume_number: 66,
1934
+ passage_uuid: 'de103c91-0bb2-4f90-9d98-c84718baecc9',
1935
+ },
1936
+ ],
1937
+ annotations: [
1938
+ {
1939
+ end: 62,
1940
+ type: 'trailer',
1941
+ uuid: '76612414-df30-4c73-89fa-139e794a4a4d',
1942
+ start: 0,
1943
+ content: [],
1944
+ passage_uuid: 'de103c91-0bb2-4f90-9d98-c84718baecc9',
1945
+ },
1946
+ {
1947
+ end: 62,
1948
+ type: 'inline-title',
1949
+ uuid: '895f43ec-7189-4273-b067-d557523723aa',
1950
+ start: 15,
1951
+ content: [
1952
+ {
1953
+ lang: 'en',
1954
+ },
1955
+ ],
1956
+ passage_uuid: 'de103c91-0bb2-4f90-9d98-c84718baecc9',
1957
+ },
1958
+ ],
1959
+ },
1960
+ {
1961
+ sort: 246,
1962
+ type: 'endnotesHeader',
1963
+ uuid: 'de4cfc5e-5984-4269-a6da-41041aebda05',
1964
+ label: 'n.',
1965
+ xmlId: 'UT22084-066-009-end-notes',
1966
+ parent: 'UT22084-066-009-end-notes',
1967
+ content: 'Notes',
1968
+ work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
1969
+ annotations: [
1970
+ {
1971
+ end: 5,
1972
+ type: 'heading',
1973
+ uuid: '7f292b93-a6d6-408a-8cc2-44eabf24b79a',
1974
+ start: 0,
1975
+ content: [
1976
+ {
1977
+ 'heading-level': 'h2',
1978
+ },
1979
+ {
1980
+ 'heading-type': 'section-title',
1981
+ },
1982
+ ],
1983
+ passage_uuid: 'de4cfc5e-5984-4269-a6da-41041aebda05',
1984
+ },
1985
+ ],
1986
+ },
1987
+ {
1988
+ sort: 248,
1989
+ type: 'endnotes',
1990
+ uuid: '2cb57e37-0798-4d57-81ae-eb25b4822a16',
1991
+ label: 'n.1',
1992
+ xmlId: 'UT22084-066-009-59',
1993
+ parent: 'UT22084-066-009-end-notes',
1994
+ content:
1995
+ 'Pearcey, Adam. trans. (2019), The Sūtra Teaching the Four Factors, Toh 249 (84000: Translating the Words of the Buddha, 2019).',
1996
+ work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
1997
+ annotations: [
1998
+ {
1999
+ end: 66,
2000
+ type: 'internal-link',
2001
+ uuid: 'cb3ad8fd-6a43-40fa-8751-8f6a6c61861f',
2002
+ start: 30,
2003
+ content: [
2004
+ {
2005
+ type: 'work',
2006
+ },
2007
+ {
2008
+ href: '/translation/toh249.html',
2009
+ },
2010
+ {
2011
+ uuid: 'c0ca609d-29b7-4fef-8ea1-8db78310f1bb',
2012
+ },
2013
+ ],
2014
+ passage_uuid: '2cb57e37-0798-4d57-81ae-eb25b4822a16',
2015
+ },
2016
+ {
2017
+ end: 66,
2018
+ type: 'inline-title',
2019
+ uuid: '2cfd2746-55cd-4798-955c-95ee8a1eeaa3',
2020
+ start: 30,
2021
+ content: [
2022
+ {
2023
+ lang: 'en',
2024
+ },
2025
+ ],
2026
+ passage_uuid: '2cb57e37-0798-4d57-81ae-eb25b4822a16',
2027
+ },
2028
+ ],
2029
+ },
2030
+ {
2031
+ sort: 252,
2032
+ type: 'endnotes',
2033
+ uuid: '24ee6eb1-a9ce-4447-b1f4-b38fb8e4a426',
2034
+ label: 'n.2',
2035
+ xmlId: 'UT22084-066-009-207',
2036
+ parent: 'UT22084-066-009-end-notes',
2037
+ content:
2038
+ 'Pearcey, Adam. trans. (2023a), The Four Factors, Toh 250 (84000: Translating the Words of the Buddha, 2023).',
2039
+ work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
2040
+ annotations: [
2041
+ {
2042
+ end: 48,
2043
+ type: 'internal-link',
2044
+ uuid: '2a8dfa10-5a27-4434-b09e-c19e88bdfc39',
2045
+ start: 31,
2046
+ content: [
2047
+ {
2048
+ type: 'work',
2049
+ },
2050
+ {
2051
+ href: '/translation/toh250.html',
2052
+ },
2053
+ {
2054
+ uuid: '194ce59e-f1a7-48ed-a3a2-e07e3164ec71',
2055
+ },
2056
+ ],
2057
+ passage_uuid: '24ee6eb1-a9ce-4447-b1f4-b38fb8e4a426',
2058
+ },
2059
+ {
2060
+ end: 48,
2061
+ type: 'inline-title',
2062
+ uuid: '5fc6af77-5fd7-4671-8ebc-41f9f83713c8',
2063
+ start: 31,
2064
+ content: [
2065
+ {
2066
+ lang: 'en',
2067
+ },
2068
+ ],
2069
+ passage_uuid: '24ee6eb1-a9ce-4447-b1f4-b38fb8e4a426',
2070
+ },
2071
+ ],
2072
+ },
2073
+ {
2074
+ sort: 256,
2075
+ type: 'endnotes',
2076
+ uuid: '5c383b48-6d8b-4976-b8bd-1bab3f5a16d4',
2077
+ label: 'n.3',
2078
+ xmlId: 'UT22084-066-009-281',
2079
+ parent: 'UT22084-066-009-end-notes',
2080
+ content:
2081
+ 'Dharmachakra Translation Committee, trans., The Accomplishment of the Sets of Four Qualities: The Bodhisattvas’ Prātimokṣa, Toh 248 (84000: Translating the Words of the Buddha, 2024).',
2082
+ work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
2083
+ annotations: [
2084
+ {
2085
+ end: 123,
2086
+ type: 'inline-title',
2087
+ uuid: '03764b3f-fe7c-491e-87fd-49c659738c26',
2088
+ start: 44,
2089
+ content: [
2090
+ {
2091
+ lang: 'en',
2092
+ },
2093
+ ],
2094
+ passage_uuid: '5c383b48-6d8b-4976-b8bd-1bab3f5a16d4',
2095
+ },
2096
+ {
2097
+ end: 123,
2098
+ type: 'internal-link',
2099
+ uuid: 'f6940a51-2d3e-4d84-97bf-47e63b0da500',
2100
+ start: 44,
2101
+ content: [
2102
+ {
2103
+ type: 'work',
2104
+ },
2105
+ {
2106
+ href: '/translation/toh248.html',
2107
+ },
2108
+ {
2109
+ uuid: '93e4b079-d91a-4928-92f2-a49ee367c0f0',
2110
+ },
2111
+ ],
2112
+ passage_uuid: '5c383b48-6d8b-4976-b8bd-1bab3f5a16d4',
2113
+ },
2114
+ ],
2115
+ },
2116
+ {
2117
+ sort: 260,
2118
+ type: 'endnotes',
2119
+ uuid: 'd4bb4496-9915-45e9-9b41-6f4744056d34',
2120
+ label: 'n.4',
2121
+ xmlId: 'UT22084-066-009-62',
2122
+ parent: 'UT22084-066-009-end-notes',
2123
+ content:
2124
+ 'Dharmachakra Translation Committee, trans., The Fourfold Accomplishment, Toh 252 (84000: Translating the Words of the Buddha, 2020).',
2125
+ work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
2126
+ annotations: [
2127
+ {
2128
+ end: 72,
2129
+ type: 'internal-link',
2130
+ uuid: 'f21ac788-e300-4a65-870c-ca7b4af0376a',
2131
+ start: 44,
2132
+ content: [
2133
+ {
2134
+ type: 'work',
2135
+ },
2136
+ {
2137
+ href: '/translation/toh252.html',
2138
+ },
2139
+ {
2140
+ uuid: '42cb94e9-b9a4-4daf-ab22-c5e87da4fb68',
2141
+ },
2142
+ ],
2143
+ passage_uuid: 'd4bb4496-9915-45e9-9b41-6f4744056d34',
2144
+ },
2145
+ {
2146
+ end: 72,
2147
+ type: 'inline-title',
2148
+ uuid: 'd639dd75-92fa-4eaa-90e1-ce07a4df2643',
2149
+ start: 44,
2150
+ content: [
2151
+ {
2152
+ lang: 'en',
2153
+ },
2154
+ ],
2155
+ passage_uuid: 'd4bb4496-9915-45e9-9b41-6f4744056d34',
2156
+ },
2157
+ ],
2158
+ },
2159
+ {
2160
+ sort: 264,
2161
+ type: 'endnotes',
2162
+ uuid: 'b63546f7-f747-42eb-83e4-4508719b0342',
2163
+ label: 'n.5',
2164
+ xmlId: 'UT22084-066-009-16',
2165
+ parent: 'UT22084-066-009-end-notes',
2166
+ content:
2167
+ 'Dasheng si fa jing 大乘四法經 (Caturdharmaka­sūtra), Taishō 772 (CBETA; SAT).',
2168
+ work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
2169
+ annotations: [
2170
+ {
2171
+ end: 18,
2172
+ type: 'span',
2173
+ uuid: '13ec8d04-16ed-4a2d-a294-27540910889f',
2174
+ start: 0,
2175
+ content: [
2176
+ {
2177
+ 'text-style': 'foreign',
2178
+ },
2179
+ ],
2180
+ passage_uuid: 'b63546f7-f747-42eb-83e4-4508719b0342',
2181
+ },
2182
+ {
2183
+ end: 24,
2184
+ type: 'span',
2185
+ uuid: 'b821485c-0121-4907-8ad6-05f0d984ab62',
2186
+ start: 19,
2187
+ content: [
2188
+ {
2189
+ 'text-style': 'foreign',
2190
+ },
2191
+ {
2192
+ lang: 'zh',
2193
+ },
2194
+ ],
2195
+ passage_uuid: 'b63546f7-f747-42eb-83e4-4508719b0342',
2196
+ },
2197
+ {
2198
+ end: 45,
2199
+ type: 'span',
2200
+ uuid: '0da63d9b-3ce4-47a5-b7a2-3a65700faccc',
2201
+ start: 26,
2202
+ content: [
2203
+ {
2204
+ 'text-style': 'foreign',
2205
+ },
2206
+ {
2207
+ lang: 'Sa-Ltn',
2208
+ },
2209
+ ],
2210
+ passage_uuid: 'b63546f7-f747-42eb-83e4-4508719b0342',
2211
+ },
2212
+ {
2213
+ end: 65,
2214
+ type: 'link',
2215
+ uuid: 'c972c0f2-1273-4064-a26c-dda965b3f3ef',
2216
+ start: 60,
2217
+ content: [
2218
+ {
2219
+ href: 'https://cbetaonline.dila.edu.tw/en/T0772',
2220
+ },
2221
+ ],
2222
+ passage_uuid: 'b63546f7-f747-42eb-83e4-4508719b0342',
2223
+ },
2224
+ {
2225
+ end: 70,
2226
+ type: 'link',
2227
+ uuid: 'c19d9278-b438-41c4-9fef-724ade24c99b',
2228
+ start: 67,
2229
+ content: [
2230
+ {
2231
+ href: 'https://21dzk.l.u-tokyo.ac.jp/SAT2018/T0772.html',
2232
+ },
2233
+ ],
2234
+ passage_uuid: 'b63546f7-f747-42eb-83e4-4508719b0342',
2235
+ },
2236
+ ],
2237
+ },
2238
+ {
2239
+ sort: 275,
2240
+ type: 'endnotes',
2241
+ uuid: 'b5ba5c64-cea9-4985-8a32-40c7685f8b8c',
2242
+ label: 'n.6',
2243
+ xmlId: 'UT22084-066-009-17',
2244
+ parent: 'UT22084-066-009-end-notes',
2245
+ content:
2246
+ 'Fo shuo pusa xiuxing si fa jing 佛說菩薩修行四法經 (Catur­dharmaka­sūtra), Taishō 773 (CBETA; SAT).',
2247
+ work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
2248
+ annotations: [
2249
+ {
2250
+ end: 31,
2251
+ type: 'span',
2252
+ uuid: '1d3eb7c1-97e9-4b08-9696-91c3b043b831',
2253
+ start: 0,
2254
+ content: [
2255
+ {
2256
+ 'text-style': 'foreign',
2257
+ },
2258
+ ],
2259
+ passage_uuid: 'b5ba5c64-cea9-4985-8a32-40c7685f8b8c',
2260
+ },
2261
+ {
2262
+ end: 41,
2263
+ type: 'span',
2264
+ uuid: '3f48a8ce-1783-4c7e-8b7f-61f6f9dd891e',
2265
+ start: 32,
2266
+ content: [
2267
+ {
2268
+ 'text-style': 'foreign',
2269
+ },
2270
+ {
2271
+ lang: 'zh',
2272
+ },
2273
+ ],
2274
+ passage_uuid: 'b5ba5c64-cea9-4985-8a32-40c7685f8b8c',
2275
+ },
2276
+ {
2277
+ end: 63,
2278
+ type: 'span',
2279
+ uuid: '2775b577-6d79-44d6-b30e-a73e93b2b8a7',
2280
+ start: 43,
2281
+ content: [
2282
+ {
2283
+ 'text-style': 'foreign',
2284
+ },
2285
+ {
2286
+ lang: 'Sa-Ltn',
2287
+ },
2288
+ ],
2289
+ passage_uuid: 'b5ba5c64-cea9-4985-8a32-40c7685f8b8c',
2290
+ },
2291
+ {
2292
+ end: 83,
2293
+ type: 'link',
2294
+ uuid: 'cd991891-b206-4212-ab0e-8109e88c9c17',
2295
+ start: 78,
2296
+ content: [
2297
+ {
2298
+ href: 'https://cbetaonline.dila.edu.tw/en/T0773',
2299
+ },
2300
+ ],
2301
+ passage_uuid: 'b5ba5c64-cea9-4985-8a32-40c7685f8b8c',
2302
+ },
2303
+ {
2304
+ end: 88,
2305
+ type: 'link',
2306
+ uuid: '27cafadb-4372-449d-9982-3d804650e81c',
2307
+ start: 85,
2308
+ content: [
2309
+ {
2310
+ href: 'https://21dzk.l.u-tokyo.ac.jp/SAT2018/T0773.html',
2311
+ },
2312
+ ],
2313
+ passage_uuid: 'b5ba5c64-cea9-4985-8a32-40c7685f8b8c',
2314
+ },
2315
+ ],
2316
+ },
2317
+ {
2318
+ sort: 286,
2319
+ type: 'endnotes',
2320
+ uuid: 'aa913b64-fd95-433b-92ff-e756258f55c0',
2321
+ label: 'n.7',
2322
+ xmlId: 'UT22084-066-009-18',
2323
+ parent: 'UT22084-066-009-end-notes',
2324
+ content: 'See Skilling (2021), pp. 200–1.',
2325
+ work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
2326
+ },
2327
+ {
2328
+ sort: 288,
2329
+ type: 'endnotes',
2330
+ uuid: '6bdebda4-694f-43c1-bfc7-a14974ebd8cd',
2331
+ label: 'n.8',
2332
+ xmlId: 'UT22084-066-009-19',
2333
+ parent: 'UT22084-066-009-end-notes',
2334
+ content:
2335
+ 'See Denkarma, F.300.a.2. See also Herrmann-Pfandt (2008), pp. 125–26, no. 238.',
2336
+ work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
2337
+ },
2338
+ {
2339
+ sort: 290,
2340
+ type: 'endnotes',
2341
+ uuid: '23afe851-d528-4bf8-8776-012cf2dc192c',
2342
+ label: 'n.9',
2343
+ xmlId: 'UT22084-066-009-20',
2344
+ parent: 'UT22084-066-009-end-notes',
2345
+ content: 'dkar chag ’phang thang ma, p. 18.',
2346
+ work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
2347
+ annotations: [
2348
+ {
2349
+ end: 26,
2350
+ type: 'inline-title',
2351
+ uuid: '5761cf68-3cc7-4b50-860d-29cec085298c',
2352
+ start: 0,
2353
+ content: [
2354
+ {
2355
+ lang: 'Bo-Ltn',
2356
+ },
2357
+ ],
2358
+ passage_uuid: '23afe851-d528-4bf8-8776-012cf2dc192c',
2359
+ },
2360
+ ],
2361
+ },
2362
+ {
2363
+ sort: 293,
2364
+ type: 'endnotes',
2365
+ uuid: '0071b8fa-9ec4-43fd-8f40-47ce6c91c489',
2366
+ label: 'n.10',
2367
+ xmlId: 'UT22084-066-009-209',
2368
+ parent: 'UT22084-066-009-end-notes',
2369
+ content:
2370
+ 'See Pearcey (2023b), An Explanation of The Noble Sūtra on the Four Factors.',
2371
+ work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
2372
+ annotations: [
2373
+ {
2374
+ end: 75,
2375
+ type: 'internal-link',
2376
+ uuid: '9019115c-e8e4-4f69-96cd-e907051b62c0',
2377
+ start: 21,
2378
+ content: [
2379
+ {
2380
+ type: 'work',
2381
+ },
2382
+ {
2383
+ href: '/translation/toh3990.html',
2384
+ },
2385
+ {
2386
+ uuid: 'e8ef6b9a-df09-4ebc-8760-4b1a21402e2f',
2387
+ },
2388
+ ],
2389
+ passage_uuid: '0071b8fa-9ec4-43fd-8f40-47ce6c91c489',
2390
+ },
2391
+ {
2392
+ end: 75,
2393
+ type: 'inline-title',
2394
+ uuid: '5d996a48-b748-422b-9f78-dea398efed1f',
2395
+ start: 21,
2396
+ content: [
2397
+ {
2398
+ lang: 'en',
2399
+ },
2400
+ ],
2401
+ passage_uuid: '0071b8fa-9ec4-43fd-8f40-47ce6c91c489',
2402
+ },
2403
+ ],
2404
+ },
2405
+ {
2406
+ sort: 297,
2407
+ type: 'endnotes',
2408
+ uuid: '2e04f38b-14cf-48f1-8f5e-eebadac78e49',
2409
+ label: 'n.11',
2410
+ xmlId: 'UT22084-066-009-11',
2411
+ parent: 'UT22084-066-009-end-notes',
2412
+ content:
2413
+ 'Śāntideva, 29a.4. Translations appear in Bendall & Rouse (1922), p. 43, and Goodman (2016), p. 44.',
2414
+ work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
2415
+ },
2416
+ {
2417
+ sort: 299,
2418
+ type: 'endnotes',
2419
+ uuid: '906dc92d-3438-43a0-b368-55e6288d3608',
2420
+ label: 'n.12',
2421
+ xmlId: 'UT22084-066-009-12',
2422
+ parent: 'UT22084-066-009-end-notes',
2423
+ content: 'Prajñākaramati, 107a.5.',
2424
+ work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
2425
+ },
2426
+ {
2427
+ sort: 301,
2428
+ type: 'endnotes',
2429
+ uuid: 'e23dc433-53c0-48f4-8ae5-f3f4fe0db857',
2430
+ label: 'n.13',
2431
+ xmlId: 'UT22084-066-009-13',
2432
+ parent: 'UT22084-066-009-end-notes',
2433
+ content: 'Vimalamitra, 353a.3.',
2434
+ work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
2435
+ },
2436
+ {
2437
+ sort: 303,
2438
+ type: 'endnotes',
2439
+ uuid: '1d76f3e1-914c-4682-8973-4d8ed2bd4b9f',
2440
+ label: 'n.14',
2441
+ xmlId: 'UT22084-066-009-14',
2442
+ parent: 'UT22084-066-009-end-notes',
2443
+ content: 'See Longchen Rabjam (2009), vol. 13, 249–50.',
2444
+ work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
2445
+ },
2446
+ {
2447
+ sort: 305,
2448
+ type: 'endnotes',
2449
+ uuid: 'b8f11293-b74e-4137-873e-bd826dba04e1',
2450
+ label: 'n.15',
2451
+ xmlId: 'UT22084-066-009-22',
2452
+ parent: 'UT22084-066-009-end-notes',
2453
+ content: 'Feer (1866), pp. 299–302.',
2454
+ work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
2455
+ },
2456
+ {
2457
+ sort: 307,
2458
+ type: 'endnotes',
2459
+ uuid: '120d0fb2-a60f-49d3-8ac8-4891703b3442',
2460
+ label: 'n.16',
2461
+ xmlId: 'UT22084-066-009-23',
2462
+ parent: 'UT22084-066-009-end-notes',
2463
+ content: 'Skilling (2021), pp. 199–205.',
2464
+ work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
2465
+ },
2466
+ {
2467
+ sort: 309,
2468
+ type: 'endnotes',
2469
+ uuid: '5433d5e2-c2f2-4a05-bc48-60dcb1109fbf',
2470
+ label: 'n.17',
2471
+ xmlId: 'UT22084-066-009-34',
2472
+ parent: 'UT22084-066-009-end-notes',
2473
+ content:
2474
+ 'According to Jñānadatta’s commentary, tolerance (kṣanti; bzod pa) means bearing the harm done to one by others (pha rol gyi gnod pa byas pa la bzod pa), and lenience (sauratya; des pa) means refraining from harming them (pha rol la gnod pa mi byed pa).',
2475
+ work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
2476
+ annotations: [
2477
+ {
2478
+ end: 47,
2479
+ type: 'glossary-instance',
2480
+ uuid: 'b184bb78-4e5b-4fa7-bf1d-84fe80b897b1',
2481
+ start: 38,
2482
+ content: [
2483
+ {
2484
+ type: 'glossary',
2485
+ uuid: '3268038f-cca4-471a-94b3-13c62c85b7ca',
2486
+ glossary_xmlId: 'UT22084-066-009-66',
2487
+ },
2488
+ ],
2489
+ passage_uuid: '5433d5e2-c2f2-4a05-bc48-60dcb1109fbf',
2490
+ },
2491
+ {
2492
+ end: 55,
2493
+ type: 'span',
2494
+ uuid: '2c487496-029b-43b1-81f2-3900d58f2d37',
2495
+ start: 49,
2496
+ content: [
2497
+ {
2498
+ 'text-style': 'foreign',
2499
+ },
2500
+ {
2501
+ lang: 'Sa-Ltn',
2502
+ },
2503
+ ],
2504
+ passage_uuid: '5433d5e2-c2f2-4a05-bc48-60dcb1109fbf',
2505
+ },
2506
+ {
2507
+ end: 64,
2508
+ type: 'span',
2509
+ uuid: '16a0ffde-39cc-47b6-b2e7-a0a8e0ffaf08',
2510
+ start: 57,
2511
+ content: [
2512
+ {
2513
+ 'text-style': 'foreign',
2514
+ },
2515
+ {
2516
+ lang: 'Bo-Ltn',
2517
+ },
2518
+ ],
2519
+ passage_uuid: '5433d5e2-c2f2-4a05-bc48-60dcb1109fbf',
2520
+ },
2521
+ {
2522
+ end: 150,
2523
+ type: 'span',
2524
+ uuid: '5cb8b347-3e3a-4901-8e41-127f200b8596',
2525
+ start: 112,
2526
+ content: [
2527
+ {
2528
+ 'text-style': 'foreign',
2529
+ },
2530
+ {
2531
+ lang: 'Bo-Ltn',
2532
+ },
2533
+ ],
2534
+ passage_uuid: '5433d5e2-c2f2-4a05-bc48-60dcb1109fbf',
2535
+ },
2536
+ {
2537
+ end: 165,
2538
+ type: 'glossary-instance',
2539
+ uuid: '98fd6e70-d5c4-4440-b9bb-5d8c42825a13',
2540
+ start: 157,
2541
+ content: [
2542
+ {
2543
+ type: 'glossary',
2544
+ uuid: '4f7a6a56-6c00-43a0-b457-f3e741364a05',
2545
+ glossary_xmlId: 'UT22084-066-009-65',
2546
+ },
2547
+ ],
2548
+ passage_uuid: '5433d5e2-c2f2-4a05-bc48-60dcb1109fbf',
2549
+ },
2550
+ {
2551
+ end: 175,
2552
+ type: 'span',
2553
+ uuid: '7d48d3fc-c8b5-4c97-9d70-d559640db6e9',
2554
+ start: 167,
2555
+ content: [
2556
+ {
2557
+ 'text-style': 'foreign',
2558
+ },
2559
+ {
2560
+ lang: 'Sa-Ltn',
2561
+ },
2562
+ ],
2563
+ passage_uuid: '5433d5e2-c2f2-4a05-bc48-60dcb1109fbf',
2564
+ },
2565
+ {
2566
+ end: 183,
2567
+ type: 'span',
2568
+ uuid: '356930fd-869d-4026-86cb-3cce2f500ca1',
2569
+ start: 177,
2570
+ content: [
2571
+ {
2572
+ 'text-style': 'foreign',
2573
+ },
2574
+ {
2575
+ lang: 'Bo-Ltn',
2576
+ },
2577
+ ],
2578
+ passage_uuid: '5433d5e2-c2f2-4a05-bc48-60dcb1109fbf',
2579
+ },
2580
+ {
2581
+ end: 250,
2582
+ type: 'span',
2583
+ uuid: 'ac2fd54f-4199-4e16-bd6e-f16fdb05e27b',
2584
+ start: 221,
2585
+ content: [
2586
+ {
2587
+ 'text-style': 'foreign',
2588
+ },
2589
+ {
2590
+ lang: 'Bo-Ltn',
2591
+ },
2592
+ ],
2593
+ passage_uuid: '5433d5e2-c2f2-4a05-bc48-60dcb1109fbf',
2594
+ },
2595
+ ],
2596
+ },
2597
+ {
2598
+ sort: 327,
2599
+ type: 'endnotes',
2600
+ uuid: 'fb6c0152-67eb-4ef9-91bc-8fb6ea64e6f1',
2601
+ label: 'n.18',
2602
+ xmlId: 'UT22084-066-009-135',
2603
+ parent: 'UT22084-066-009-end-notes',
2604
+ content:
2605
+ 'Dwelling in the wilderness is also one of the twelve ascetic practices (dhūtaguṇa). Note that related to (and sometimes conflated with) the Sanskrit araṇya in the compound araṇyavāsa‍—attested for dgon pa la gnas pa not in this text but in the Sanskrit of the Rāṣṭra­pāla­paripṛcchā (Toh 62)‍—is another term, araṇa, in the compound araṇa­vihāra, of which the Tibetan rendering is nyon mongs pa med par gnas pa (Mvy 6366), with the more “inner” meaning of “dwelling free of afflicted mental states.” See Edgerton s.v. araṇya and araṇya.',
2606
+ work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
2607
+ annotations: [
2608
+ {
2609
+ end: 26,
2610
+ type: 'glossary-instance',
2611
+ uuid: '3ea8bb1a-1077-406a-bd76-14f4499f0717',
2612
+ start: 0,
2613
+ content: [
2614
+ {
2615
+ type: 'glossary',
2616
+ uuid: 'c2d14c50-fccd-4438-bebc-6dfa4f77194e',
2617
+ glossary_xmlId: 'UT22084-066-009-67',
2618
+ },
2619
+ ],
2620
+ passage_uuid: 'fb6c0152-67eb-4ef9-91bc-8fb6ea64e6f1',
2621
+ },
2622
+ {
2623
+ end: 81,
2624
+ type: 'span',
2625
+ uuid: '3272a842-73c7-48d6-bc39-d063a7cbf278',
2626
+ start: 72,
2627
+ content: [
2628
+ {
2629
+ 'text-style': 'foreign',
2630
+ },
2631
+ {
2632
+ lang: 'Sa-Ltn',
2633
+ },
2634
+ ],
2635
+ passage_uuid: 'fb6c0152-67eb-4ef9-91bc-8fb6ea64e6f1',
2636
+ },
2637
+ {
2638
+ end: 155,
2639
+ type: 'span',
2640
+ uuid: '2a54ebff-8aad-4e0d-a530-d8f6767e79b8',
2641
+ start: 149,
2642
+ content: [
2643
+ {
2644
+ 'text-style': 'foreign',
2645
+ },
2646
+ {
2647
+ lang: 'Sa-Ltn',
2648
+ },
2649
+ ],
2650
+ passage_uuid: 'fb6c0152-67eb-4ef9-91bc-8fb6ea64e6f1',
2651
+ },
2652
+ {
2653
+ end: 182,
2654
+ type: 'span',
2655
+ uuid: 'd837f02b-4718-41fc-9d95-a8ceb9f2854b',
2656
+ start: 172,
2657
+ content: [
2658
+ {
2659
+ 'text-style': 'foreign',
2660
+ },
2661
+ {
2662
+ lang: 'Sa-Ltn',
2663
+ },
2664
+ ],
2665
+ passage_uuid: 'fb6c0152-67eb-4ef9-91bc-8fb6ea64e6f1',
2666
+ },
2667
+ {
2668
+ end: 215,
2669
+ type: 'span',
2670
+ uuid: '1b620ad5-e418-4ae4-a2a6-fc1f7963649f',
2671
+ start: 197,
2672
+ content: [
2673
+ {
2674
+ 'text-style': 'foreign',
2675
+ },
2676
+ {
2677
+ lang: 'Bo-Ltn',
2678
+ },
2679
+ ],
2680
+ passage_uuid: 'fb6c0152-67eb-4ef9-91bc-8fb6ea64e6f1',
2681
+ },
2682
+ {
2683
+ end: 283,
2684
+ type: 'inline-title',
2685
+ uuid: 'e4e17479-7e3c-4636-af88-1b2e80d42c53',
2686
+ start: 260,
2687
+ content: [
2688
+ {
2689
+ lang: 'Sa-Ltn',
2690
+ },
2691
+ ],
2692
+ passage_uuid: 'fb6c0152-67eb-4ef9-91bc-8fb6ea64e6f1',
2693
+ },
2694
+ {
2695
+ end: 315,
2696
+ type: 'span',
2697
+ uuid: 'ea407cbe-77c5-4341-834a-0abbe5a4fc94',
2698
+ start: 310,
2699
+ content: [
2700
+ {
2701
+ 'text-style': 'foreign',
2702
+ },
2703
+ {
2704
+ lang: 'Sa-Ltn',
2705
+ },
2706
+ ],
2707
+ passage_uuid: 'fb6c0152-67eb-4ef9-91bc-8fb6ea64e6f1',
2708
+ },
2709
+ {
2710
+ end: 345,
2711
+ type: 'span',
2712
+ uuid: '54764895-a14c-43a4-bad0-8796eec28c36',
2713
+ start: 333,
2714
+ content: [
2715
+ {
2716
+ 'text-style': 'foreign',
2717
+ },
2718
+ {
2719
+ lang: 'Sa-Ltn',
2720
+ },
2721
+ ],
2722
+ passage_uuid: 'fb6c0152-67eb-4ef9-91bc-8fb6ea64e6f1',
2723
+ },
2724
+ {
2725
+ end: 410,
2726
+ type: 'span',
2727
+ uuid: '13da046b-591d-4293-b2c0-bc917e4d2397',
2728
+ start: 381,
2729
+ content: [
2730
+ {
2731
+ 'text-style': 'foreign',
2732
+ },
2733
+ {
2734
+ lang: 'Bo-Ltn',
2735
+ },
2736
+ ],
2737
+ passage_uuid: 'fb6c0152-67eb-4ef9-91bc-8fb6ea64e6f1',
2738
+ },
2739
+ {
2740
+ end: 524,
2741
+ type: 'span',
2742
+ uuid: 'e7f68c19-e746-49b5-a822-7b7a276f1fc7',
2743
+ start: 518,
2744
+ content: [
2745
+ {
2746
+ 'text-style': 'foreign',
2747
+ },
2748
+ {
2749
+ lang: 'Sa-Ltn',
2750
+ },
2751
+ ],
2752
+ passage_uuid: 'fb6c0152-67eb-4ef9-91bc-8fb6ea64e6f1',
2753
+ },
2754
+ {
2755
+ end: 535,
2756
+ type: 'span',
2757
+ uuid: 'ece52aa1-1789-411a-9dde-e691a4208b24',
2758
+ start: 529,
2759
+ content: [
2760
+ {
2761
+ 'text-style': 'foreign',
2762
+ },
2763
+ {
2764
+ lang: 'Sa-Ltn',
2765
+ },
2766
+ ],
2767
+ passage_uuid: 'fb6c0152-67eb-4ef9-91bc-8fb6ea64e6f1',
2768
+ },
2769
+ ],
2770
+ },
2771
+ {
2772
+ sort: 350,
2773
+ type: 'endnotes',
2774
+ uuid: 'fb352874-9ae4-4658-97ea-ec944f2c6dfc',
2775
+ label: 'n.19',
2776
+ xmlId: 'UT22084-066-009-39',
2777
+ parent: 'UT22084-066-009-end-notes',
2778
+ content:
2779
+ 'The translation here follows the Degé and IOL Tib J 69 editions, which have sems skyed cig. The Stok Palace Kangyur version reads sems dpa’ cig.',
2780
+ work_uuid: 'ef63eb47-f3e4-4d27-8d60-59e8411627a2',
2781
+ annotations: [
2782
+ {
2783
+ end: 90,
2784
+ type: 'span',
2785
+ uuid: 'd5dc508d-d3e0-4ca0-a62f-94ae47a58762',
2786
+ start: 76,
2787
+ content: [
2788
+ {
2789
+ 'text-style': 'foreign',
2790
+ },
2791
+ {
2792
+ lang: 'Bo-Ltn',
2793
+ },
2794
+ ],
2795
+ passage_uuid: 'fb352874-9ae4-4658-97ea-ec944f2c6dfc',
2796
+ },
2797
+ {
2798
+ end: 143,
2799
+ type: 'span',
2800
+ uuid: 'c3d2d6f6-ba32-419e-b089-6e79551a231b',
2801
+ start: 130,
2802
+ content: [
2803
+ {
2804
+ 'text-style': 'foreign',
2805
+ },
2806
+ {
2807
+ lang: 'Bo-Ltn',
2808
+ },
2809
+ ],
2810
+ passage_uuid: 'fb352874-9ae4-4658-97ea-ec944f2c6dfc',
2811
+ },
2812
+ ],
2813
+ },
2814
+ ];