@eightyfourthousand/lib-editing 2026.4.0 → 2026.4.1

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