@datalayer/lexical-loro 0.0.3 → 0.1.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (402) hide show
  1. package/README.md +24 -137
  2. package/lib/App.d.ts +2 -0
  3. package/lib/App.js +141 -0
  4. package/lib/Editor.d.ts +2 -0
  5. package/lib/Editor.js +111 -0
  6. package/lib/Settings.d.ts +2 -0
  7. package/lib/Settings.js +57 -0
  8. package/lib/appSettings.d.ts +36 -0
  9. package/lib/appSettings.js +44 -0
  10. package/lib/collab/loro/Bindings.d.ts +41 -0
  11. package/lib/collab/loro/Bindings.js +95 -0
  12. package/lib/collab/loro/Debug.d.ts +33 -0
  13. package/lib/collab/loro/Debug.js +448 -0
  14. package/lib/collab/loro/LexicalCollaborationContext.d.ts +19 -0
  15. package/lib/collab/loro/LexicalCollaborationContext.js +48 -0
  16. package/lib/collab/loro/LexicalCollaborationPlugin.d.ts +24 -0
  17. package/lib/collab/loro/LexicalCollaborationPlugin.js +83 -0
  18. package/lib/collab/loro/State.d.ts +53 -0
  19. package/lib/collab/loro/State.js +90 -0
  20. package/lib/collab/loro/components/LoroCollaborationUI.d.ts +13 -0
  21. package/lib/collab/loro/components/LoroCollaborationUI.js +9 -0
  22. package/lib/collab/loro/components/LoroCollaborators.d.ts +8 -0
  23. package/lib/collab/loro/components/LoroCollaborators.js +97 -0
  24. package/lib/collab/loro/components/index.d.ts +2 -0
  25. package/lib/collab/loro/components/index.js +2 -0
  26. package/lib/collab/loro/index.d.ts +6 -0
  27. package/lib/collab/loro/index.js +6 -0
  28. package/lib/collab/loro/integrators/BaseIntegrator.d.ts +14 -0
  29. package/lib/collab/loro/integrators/BaseIntegrator.js +1 -0
  30. package/lib/collab/loro/integrators/CounterIntegrator.d.ts +23 -0
  31. package/lib/collab/loro/integrators/CounterIntegrator.js +40 -0
  32. package/lib/collab/loro/integrators/ListIntegrator.d.ts +23 -0
  33. package/lib/collab/loro/integrators/ListIntegrator.js +49 -0
  34. package/lib/collab/loro/integrators/MapIntegrator.d.ts +24 -0
  35. package/lib/collab/loro/integrators/MapIntegrator.js +177 -0
  36. package/lib/collab/loro/integrators/TextIntegrator.d.ts +25 -0
  37. package/lib/collab/loro/integrators/TextIntegrator.js +51 -0
  38. package/lib/collab/loro/integrators/TreeIntegrator.d.ts +25 -0
  39. package/lib/collab/loro/integrators/TreeIntegrator.js +201 -0
  40. package/lib/collab/loro/nodes/NodeFactory.d.ts +8 -0
  41. package/lib/collab/loro/nodes/NodeFactory.js +105 -0
  42. package/lib/collab/loro/nodes/NodesMapper.d.ts +111 -0
  43. package/lib/collab/loro/nodes/NodesMapper.js +258 -0
  44. package/lib/collab/loro/propagators/DecoratorNodePropagator.d.ts +60 -0
  45. package/lib/collab/loro/propagators/DecoratorNodePropagator.js +302 -0
  46. package/lib/collab/loro/propagators/ElementNodePropagator.d.ts +62 -0
  47. package/lib/collab/loro/propagators/ElementNodePropagator.js +335 -0
  48. package/lib/collab/loro/propagators/LineBreakNodePropagator.d.ts +57 -0
  49. package/lib/collab/loro/propagators/LineBreakNodePropagator.js +196 -0
  50. package/lib/collab/loro/propagators/RootNodePropagator.d.ts +55 -0
  51. package/lib/collab/loro/propagators/RootNodePropagator.js +168 -0
  52. package/lib/collab/loro/propagators/TextNodePropagator.d.ts +60 -0
  53. package/lib/collab/loro/propagators/TextNodePropagator.js +434 -0
  54. package/lib/collab/loro/propagators/index.d.ts +49 -0
  55. package/lib/collab/loro/propagators/index.js +32 -0
  56. package/lib/collab/loro/provider/websocket.d.ts +116 -0
  57. package/lib/collab/loro/provider/websocket.js +907 -0
  58. package/lib/collab/loro/servers/index.d.ts +0 -0
  59. package/lib/collab/loro/servers/index.js +0 -0
  60. package/lib/collab/loro/servers/ws/callback.d.ts +5 -0
  61. package/lib/collab/loro/servers/ws/callback.js +85 -0
  62. package/lib/collab/loro/servers/ws/server.d.ts +2 -0
  63. package/lib/collab/loro/servers/ws/server.js +25 -0
  64. package/lib/collab/loro/servers/ws/utils.d.ts +40 -0
  65. package/lib/collab/loro/servers/ws/utils.js +513 -0
  66. package/lib/collab/loro/sync/SyncCursors.d.ts +32 -0
  67. package/lib/collab/loro/sync/SyncCursors.js +435 -0
  68. package/lib/collab/loro/sync/SyncLexicalToLoro.d.ts +4 -0
  69. package/lib/collab/loro/sync/SyncLexicalToLoro.js +80 -0
  70. package/lib/collab/loro/sync/SyncLoroToLexical.d.ts +5 -0
  71. package/lib/collab/loro/sync/SyncLoroToLexical.js +96 -0
  72. package/lib/collab/loro/types/LexicalNodeData.d.ts +32 -0
  73. package/lib/collab/loro/types/LexicalNodeData.js +71 -0
  74. package/lib/collab/loro/useCollaboration.d.ts +12 -0
  75. package/lib/collab/loro/useCollaboration.js +248 -0
  76. package/lib/collab/loro/utils/InitialContent.d.ts +64 -0
  77. package/lib/collab/loro/utils/InitialContent.js +109 -0
  78. package/lib/collab/loro/utils/LexicalToLoro.d.ts +18 -0
  79. package/lib/collab/loro/utils/LexicalToLoro.js +96 -0
  80. package/lib/collab/loro/utils/Utils.d.ts +44 -0
  81. package/lib/collab/loro/utils/Utils.js +153 -0
  82. package/lib/collab/loro/wsProvider.d.ts +8 -0
  83. package/lib/collab/loro/wsProvider.js +31 -0
  84. package/lib/collab/utils/invariant.d.ts +1 -0
  85. package/lib/collab/utils/invariant.js +11 -0
  86. package/lib/collab/utils/simpleDiffWithCursor.d.ts +5 -0
  87. package/lib/collab/utils/simpleDiffWithCursor.js +31 -0
  88. package/lib/collab/yjs/Bindings.d.ts +23 -0
  89. package/lib/collab/yjs/Bindings.js +26 -0
  90. package/lib/collab/yjs/Debug.d.ts +23 -0
  91. package/lib/collab/yjs/Debug.js +213 -0
  92. package/lib/collab/yjs/LexicalCollaborationContext.d.ts +10 -0
  93. package/lib/collab/yjs/LexicalCollaborationContext.js +37 -0
  94. package/lib/collab/yjs/LexicalCollaborationPlugin.d.ts +21 -0
  95. package/lib/collab/yjs/LexicalCollaborationPlugin.js +63 -0
  96. package/lib/collab/yjs/State.d.ts +51 -0
  97. package/lib/collab/yjs/State.js +35 -0
  98. package/lib/collab/yjs/nodes/AnyCollabNode.d.ts +5 -0
  99. package/lib/collab/yjs/nodes/AnyCollabNode.js +1 -0
  100. package/lib/collab/yjs/nodes/CollabDecoratorNode.d.ts +22 -0
  101. package/lib/collab/yjs/nodes/CollabDecoratorNode.js +64 -0
  102. package/lib/collab/yjs/nodes/CollabElementNode.d.ts +40 -0
  103. package/lib/collab/yjs/nodes/CollabElementNode.js +462 -0
  104. package/lib/collab/yjs/nodes/CollabLineBreakNode.d.ts +19 -0
  105. package/lib/collab/yjs/nodes/CollabLineBreakNode.js +44 -0
  106. package/lib/collab/yjs/nodes/CollabTextNode.d.ts +25 -0
  107. package/lib/collab/yjs/nodes/CollabTextNode.js +103 -0
  108. package/lib/collab/yjs/provider/websocket.d.ts +88 -0
  109. package/lib/collab/yjs/provider/websocket.js +415 -0
  110. package/lib/collab/yjs/servers/index.d.ts +0 -0
  111. package/lib/collab/yjs/servers/index.js +0 -0
  112. package/lib/collab/yjs/servers/ws/callback.d.ts +5 -0
  113. package/lib/collab/yjs/servers/ws/callback.js +72 -0
  114. package/lib/collab/yjs/servers/ws/server.d.ts +2 -0
  115. package/lib/collab/yjs/servers/ws/server.js +25 -0
  116. package/lib/collab/yjs/servers/ws/utils.d.ts +49 -0
  117. package/lib/collab/yjs/servers/ws/utils.js +284 -0
  118. package/lib/collab/yjs/sync/SyncCursors.d.ts +39 -0
  119. package/lib/collab/yjs/sync/SyncCursors.js +351 -0
  120. package/lib/collab/yjs/sync/SyncEditorStates.d.ts +10 -0
  121. package/lib/collab/yjs/sync/SyncEditorStates.js +200 -0
  122. package/lib/collab/yjs/useCollaboration.d.ts +12 -0
  123. package/lib/collab/yjs/useCollaboration.js +255 -0
  124. package/lib/collab/yjs/utils/Utils.d.ts +25 -0
  125. package/lib/collab/yjs/utils/Utils.js +402 -0
  126. package/lib/collab/yjs/wsProvider.d.ts +3 -0
  127. package/lib/collab/yjs/wsProvider.js +21 -0
  128. package/lib/commenting/index.d.ts +41 -0
  129. package/lib/commenting/index.js +324 -0
  130. package/lib/context/FlashMessageContext.d.ts +7 -0
  131. package/lib/context/FlashMessageContext.js +24 -0
  132. package/lib/context/SettingsContext.d.ts +12 -0
  133. package/lib/context/SettingsContext.js +38 -0
  134. package/lib/context/SharedHistoryContext.d.ts +11 -0
  135. package/lib/context/SharedHistoryContext.js +11 -0
  136. package/lib/context/ToolbarContext.d.ts +65 -0
  137. package/lib/context/ToolbarContext.js +84 -0
  138. package/lib/demo.d.ts +12 -0
  139. package/lib/demo.js +41 -0
  140. package/lib/hooks/useFlashMessage.d.ts +2 -0
  141. package/lib/hooks/useFlashMessage.js +4 -0
  142. package/lib/hooks/useModal.d.ts +5 -0
  143. package/lib/hooks/useModal.js +26 -0
  144. package/lib/hooks/useReport.d.ts +1 -0
  145. package/lib/hooks/useReport.js +46 -0
  146. package/lib/index.d.ts +1 -1
  147. package/lib/index.js +1 -5
  148. package/lib/nodes/AutocompleteNode.d.ts +27 -0
  149. package/lib/nodes/AutocompleteNode.js +56 -0
  150. package/lib/nodes/CounterComponent.d.ts +6 -0
  151. package/lib/nodes/CounterComponent.js +137 -0
  152. package/lib/nodes/CounterNode.d.ts +23 -0
  153. package/lib/nodes/CounterNode.js +47 -0
  154. package/lib/nodes/DateTimeNode/DateTimeComponent.d.ts +8 -0
  155. package/lib/nodes/DateTimeNode/DateTimeComponent.js +119 -0
  156. package/lib/nodes/DateTimeNode/DateTimeNode.d.ts +27 -0
  157. package/lib/nodes/DateTimeNode/DateTimeNode.js +82 -0
  158. package/lib/nodes/EmojiNode.d.ts +18 -0
  159. package/lib/nodes/EmojiNode.js +50 -0
  160. package/lib/nodes/EquationComponent.d.ts +9 -0
  161. package/lib/nodes/EquationComponent.js +75 -0
  162. package/lib/nodes/EquationNode.d.ts +26 -0
  163. package/lib/nodes/EquationNode.js +109 -0
  164. package/lib/nodes/ExcalidrawNode/ExcalidrawComponent.d.ts +8 -0
  165. package/lib/nodes/ExcalidrawNode/ExcalidrawComponent.js +110 -0
  166. package/lib/nodes/ExcalidrawNode/ExcalidrawImage.d.ts +50 -0
  167. package/lib/nodes/ExcalidrawNode/ExcalidrawImage.js +55 -0
  168. package/lib/nodes/ExcalidrawNode/index.d.ts +32 -0
  169. package/lib/nodes/ExcalidrawNode/index.js +117 -0
  170. package/lib/nodes/FigmaNode.d.ts +20 -0
  171. package/lib/nodes/FigmaNode.js +52 -0
  172. package/lib/nodes/ImageComponent.d.ts +16 -0
  173. package/lib/nodes/ImageComponent.js +272 -0
  174. package/lib/nodes/ImageNode.d.ts +50 -0
  175. package/lib/nodes/ImageNode.js +151 -0
  176. package/lib/nodes/InlineImageNode/InlineImageComponent.d.ts +26 -0
  177. package/lib/nodes/InlineImageNode/InlineImageComponent.js +161 -0
  178. package/lib/nodes/InlineImageNode/InlineImageNode.d.ts +59 -0
  179. package/lib/nodes/InlineImageNode/InlineImageNode.js +162 -0
  180. package/lib/nodes/KeywordNode.d.ts +14 -0
  181. package/lib/nodes/KeywordNode.js +33 -0
  182. package/lib/nodes/LayoutContainerNode.d.ts +24 -0
  183. package/lib/nodes/LayoutContainerNode.js +91 -0
  184. package/lib/nodes/LayoutItemNode.d.ts +16 -0
  185. package/lib/nodes/LayoutItemNode.js +65 -0
  186. package/lib/nodes/MentionNode.d.ts +20 -0
  187. package/lib/nodes/MentionNode.js +81 -0
  188. package/lib/nodes/PageBreakNode/index.d.ts +17 -0
  189. package/lib/nodes/PageBreakNode/index.js +83 -0
  190. package/lib/nodes/PlaygroundNodes.d.ts +3 -0
  191. package/lib/nodes/PlaygroundNodes.js +71 -0
  192. package/lib/nodes/PollComponent.d.ts +9 -0
  193. package/lib/nodes/PollComponent.js +85 -0
  194. package/lib/nodes/PollNode.d.ts +43 -0
  195. package/lib/nodes/PollNode.js +153 -0
  196. package/lib/nodes/SpecialTextNode.d.ts +24 -0
  197. package/lib/nodes/SpecialTextNode.js +50 -0
  198. package/lib/nodes/StickyComponent.d.ts +10 -0
  199. package/lib/nodes/StickyComponent.js +162 -0
  200. package/lib/nodes/StickyNode.d.ts +31 -0
  201. package/lib/nodes/StickyNode.js +76 -0
  202. package/lib/nodes/TweetNode.d.ts +21 -0
  203. package/lib/nodes/TweetNode.js +119 -0
  204. package/lib/nodes/YouTubeNode.d.ts +22 -0
  205. package/lib/nodes/YouTubeNode.js +84 -0
  206. package/lib/plugins/ActionsPlugin/index.d.ts +5 -0
  207. package/lib/plugins/ActionsPlugin/index.js +168 -0
  208. package/lib/plugins/AutoEmbedPlugin/index.d.ts +19 -0
  209. package/lib/plugins/AutoEmbedPlugin/index.js +158 -0
  210. package/lib/plugins/AutoLinkPlugin/index.d.ts +2 -0
  211. package/lib/plugins/AutoLinkPlugin/index.js +15 -0
  212. package/lib/plugins/AutocompletePlugin/index.d.ts +10 -0
  213. package/lib/plugins/AutocompletePlugin/index.js +2473 -0
  214. package/lib/plugins/CodeActionMenuPlugin/components/CopyButton/index.d.ts +7 -0
  215. package/lib/plugins/CodeActionMenuPlugin/components/CopyButton/index.js +42 -0
  216. package/lib/plugins/CodeActionMenuPlugin/components/PrettierButton/index.d.ts +17 -0
  217. package/lib/plugins/CodeActionMenuPlugin/components/PrettierButton/index.js +111 -0
  218. package/lib/plugins/CodeActionMenuPlugin/index.d.ts +5 -0
  219. package/lib/plugins/CodeActionMenuPlugin/index.js +104 -0
  220. package/lib/plugins/CodeActionMenuPlugin/utils.d.ts +1 -0
  221. package/lib/plugins/CodeActionMenuPlugin/utils.js +18 -0
  222. package/lib/plugins/CodeHighlightPrismPlugin/index.d.ts +2 -0
  223. package/lib/plugins/CodeHighlightPrismPlugin/index.js +10 -0
  224. package/lib/plugins/CodeHighlightShikiPlugin/index.d.ts +2 -0
  225. package/lib/plugins/CodeHighlightShikiPlugin/index.js +10 -0
  226. package/lib/plugins/CollapsiblePlugin/CollapsibleContainerNode.d.ts +25 -0
  227. package/lib/plugins/CollapsiblePlugin/CollapsibleContainerNode.js +131 -0
  228. package/lib/plugins/CollapsiblePlugin/CollapsibleContentNode.d.ts +16 -0
  229. package/lib/plugins/CollapsiblePlugin/CollapsibleContentNode.js +79 -0
  230. package/lib/plugins/CollapsiblePlugin/CollapsibleTitleNode.d.ts +16 -0
  231. package/lib/plugins/CollapsiblePlugin/CollapsibleTitleNode.js +81 -0
  232. package/lib/plugins/CollapsiblePlugin/CollapsibleUtils.d.ts +2 -0
  233. package/lib/plugins/CollapsiblePlugin/CollapsibleUtils.js +8 -0
  234. package/lib/plugins/CollapsiblePlugin/index.d.ts +3 -0
  235. package/lib/plugins/CollapsiblePlugin/index.js +128 -0
  236. package/lib/plugins/CommentPlugin/index.d.ts +9 -0
  237. package/lib/plugins/CommentPlugin/index.js +460 -0
  238. package/lib/plugins/ComponentPickerPlugin/index.d.ts +2 -0
  239. package/lib/plugins/ComponentPickerPlugin/index.js +276 -0
  240. package/lib/plugins/ContextMenuPlugin/index.d.ts +2 -0
  241. package/lib/plugins/ContextMenuPlugin/index.js +112 -0
  242. package/lib/plugins/CounterPlugin/index.d.ts +3 -0
  243. package/lib/plugins/CounterPlugin/index.js +20 -0
  244. package/lib/plugins/DatalayerPlugin/index.d.ts +2 -0
  245. package/lib/plugins/DatalayerPlugin/index.js +218 -0
  246. package/lib/plugins/DateTimePlugin/index.d.ts +8 -0
  247. package/lib/plugins/DateTimePlugin/index.js +24 -0
  248. package/lib/plugins/DocsPlugin/index.d.ts +2 -0
  249. package/lib/plugins/DocsPlugin/index.js +4 -0
  250. package/lib/plugins/DragDropPastePlugin/index.d.ts +1 -0
  251. package/lib/plugins/DragDropPastePlugin/index.js +33 -0
  252. package/lib/plugins/DraggableBlockPlugin/index.d.ts +12 -0
  253. package/lib/plugins/DraggableBlockPlugin/index.js +36 -0
  254. package/lib/plugins/EmojiPickerPlugin/index.d.ts +1 -0
  255. package/lib/plugins/EmojiPickerPlugin/index.js +80 -0
  256. package/lib/plugins/EmojisPlugin/index.d.ts +2 -0
  257. package/lib/plugins/EmojisPlugin/index.js +52 -0
  258. package/lib/plugins/EquationsPlugin/index.d.ts +14 -0
  259. package/lib/plugins/EquationsPlugin/index.js +34 -0
  260. package/lib/plugins/ExcalidrawPlugin/index.d.ts +5 -0
  261. package/lib/plugins/ExcalidrawPlugin/index.js +44 -0
  262. package/lib/plugins/FigmaPlugin/index.d.ts +4 -0
  263. package/lib/plugins/FigmaPlugin/index.js +20 -0
  264. package/lib/plugins/FloatingLinkEditorPlugin/index.d.ts +15 -0
  265. package/lib/plugins/FloatingLinkEditorPlugin/index.js +280 -0
  266. package/lib/plugins/FloatingTextFormatToolbarPlugin/index.d.ts +7 -0
  267. package/lib/plugins/FloatingTextFormatToolbarPlugin/index.js +219 -0
  268. package/lib/plugins/ImagesPlugin/index.d.ts +24 -0
  269. package/lib/plugins/ImagesPlugin/index.js +195 -0
  270. package/lib/plugins/InlineImagePlugin/index.d.ts +17 -0
  271. package/lib/plugins/InlineImagePlugin/index.js +180 -0
  272. package/lib/plugins/KeywordsPlugin/index.d.ts +2 -0
  273. package/lib/plugins/KeywordsPlugin/index.js +31 -0
  274. package/lib/plugins/LayoutPlugin/InsertLayoutDialog.d.ts +6 -0
  275. package/lib/plugins/LayoutPlugin/InsertLayoutDialog.js +21 -0
  276. package/lib/plugins/LayoutPlugin/LayoutPlugin.d.ts +7 -0
  277. package/lib/plugins/LayoutPlugin/LayoutPlugin.js +131 -0
  278. package/lib/plugins/LinkPlugin/index.d.ts +6 -0
  279. package/lib/plugins/LinkPlugin/index.js +11 -0
  280. package/lib/plugins/MarkdownShortcutPlugin/index.d.ts +2 -0
  281. package/lib/plugins/MarkdownShortcutPlugin/index.js +6 -0
  282. package/lib/plugins/MarkdownTransformers/index.d.ts +8 -0
  283. package/lib/plugins/MarkdownTransformers/index.js +234 -0
  284. package/lib/plugins/MaxLengthPlugin/index.d.ts +3 -0
  285. package/lib/plugins/MaxLengthPlugin/index.js +37 -0
  286. package/lib/plugins/MentionsPlugin/index.d.ts +2 -0
  287. package/lib/plugins/MentionsPlugin/index.js +564 -0
  288. package/lib/plugins/PageBreakPlugin/index.d.ts +4 -0
  289. package/lib/plugins/PageBreakPlugin/index.js +27 -0
  290. package/lib/plugins/PasteLogPlugin/index.d.ts +2 -0
  291. package/lib/plugins/PasteLogPlugin/index.js +27 -0
  292. package/lib/plugins/PollPlugin/index.d.ts +8 -0
  293. package/lib/plugins/PollPlugin/index.js +38 -0
  294. package/lib/plugins/ShortcutsPlugin/index.d.ts +6 -0
  295. package/lib/plugins/ShortcutsPlugin/index.js +112 -0
  296. package/lib/plugins/ShortcutsPlugin/shortcuts.d.ts +59 -0
  297. package/lib/plugins/ShortcutsPlugin/shortcuts.js +169 -0
  298. package/lib/plugins/SpecialTextPlugin/index.d.ts +2 -0
  299. package/lib/plugins/SpecialTextPlugin/index.js +46 -0
  300. package/lib/plugins/SpeechToTextPlugin/index.d.ts +5 -0
  301. package/lib/plugins/SpeechToTextPlugin/index.js +82 -0
  302. package/lib/plugins/StickyPlugin/index.d.ts +2 -0
  303. package/lib/plugins/StickyPlugin/index.js +12 -0
  304. package/lib/plugins/TabFocusPlugin/index.d.ts +1 -0
  305. package/lib/plugins/TabFocusPlugin/index.js +34 -0
  306. package/lib/plugins/TableActionMenuPlugin/index.d.ts +5 -0
  307. package/lib/plugins/TableActionMenuPlugin/index.js +492 -0
  308. package/lib/plugins/TableCellResizer/index.d.ts +3 -0
  309. package/lib/plugins/TableCellResizer/index.js +297 -0
  310. package/lib/plugins/TableHoverActionsPlugin/index.d.ts +4 -0
  311. package/lib/plugins/TableHoverActionsPlugin/index.js +188 -0
  312. package/lib/plugins/TableOfContentsPlugin/index.d.ts +2 -0
  313. package/lib/plugins/TableOfContentsPlugin/index.js +116 -0
  314. package/lib/plugins/TablePlugin.d.ts +31 -0
  315. package/lib/plugins/TablePlugin.js +63 -0
  316. package/lib/plugins/TestRecorderPlugin/index.d.ts +3 -0
  317. package/lib/plugins/TestRecorderPlugin/index.js +346 -0
  318. package/lib/plugins/ToolbarPlugin/fontSize.d.ts +9 -0
  319. package/lib/plugins/ToolbarPlugin/fontSize.js +80 -0
  320. package/lib/plugins/ToolbarPlugin/index.d.ts +9 -0
  321. package/lib/plugins/ToolbarPlugin/index.js +500 -0
  322. package/lib/plugins/ToolbarPlugin/utils.d.ts +26 -0
  323. package/lib/plugins/ToolbarPlugin/utils.js +243 -0
  324. package/lib/plugins/TreeViewPlugin/index.d.ts +2 -0
  325. package/lib/plugins/TreeViewPlugin/index.js +7 -0
  326. package/lib/plugins/TwitterPlugin/index.d.ts +4 -0
  327. package/lib/plugins/TwitterPlugin/index.js +20 -0
  328. package/lib/plugins/TypingPerfPlugin/index.d.ts +2 -0
  329. package/lib/plugins/TypingPerfPlugin/index.js +93 -0
  330. package/lib/plugins/YouTubePlugin/index.d.ts +4 -0
  331. package/lib/plugins/YouTubePlugin/index.js +20 -0
  332. package/lib/server/validation.d.ts +1 -0
  333. package/lib/server/validation.js +111 -0
  334. package/lib/setupEnv.d.ts +2 -0
  335. package/lib/setupEnv.js +25 -0
  336. package/lib/themes/CommentEditorTheme.d.ts +4 -0
  337. package/lib/themes/CommentEditorTheme.js +7 -0
  338. package/lib/themes/PlaygroundEditorTheme.d.ts +4 -0
  339. package/lib/themes/PlaygroundEditorTheme.js +120 -0
  340. package/lib/themes/StickyEditorTheme.d.ts +4 -0
  341. package/lib/themes/StickyEditorTheme.js +7 -0
  342. package/lib/tyes.dt.d.ts +12 -0
  343. package/lib/tyes.dt.js +0 -0
  344. package/lib/ui/Button.d.ts +12 -0
  345. package/lib/ui/Button.js +6 -0
  346. package/lib/ui/ColorPicker.d.ts +14 -0
  347. package/lib/ui/ColorPicker.js +219 -0
  348. package/lib/ui/ContentEditable.d.ts +9 -0
  349. package/lib/ui/ContentEditable.js +6 -0
  350. package/lib/ui/Dialog.d.ts +10 -0
  351. package/lib/ui/Dialog.js +8 -0
  352. package/lib/ui/DropDown.d.ts +18 -0
  353. package/lib/ui/DropDown.js +133 -0
  354. package/lib/ui/DropdownColorPicker.d.ts +13 -0
  355. package/lib/ui/DropdownColorPicker.js +6 -0
  356. package/lib/ui/EquationEditor.d.ts +8 -0
  357. package/lib/ui/EquationEditor.js +11 -0
  358. package/lib/ui/ExcalidrawModal.d.ts +42 -0
  359. package/lib/ui/ExcalidrawModal.js +103 -0
  360. package/lib/ui/FileInput.d.ts +10 -0
  361. package/lib/ui/FileInput.js +5 -0
  362. package/lib/ui/FlashMessage.d.ts +7 -0
  363. package/lib/ui/FlashMessage.js +6 -0
  364. package/lib/ui/ImageResizer.d.ts +17 -0
  365. package/lib/ui/ImageResizer.js +171 -0
  366. package/lib/ui/KatexEquationAlterer.d.ts +8 -0
  367. package/lib/ui/KatexEquationAlterer.js +23 -0
  368. package/lib/ui/KatexRenderer.d.ts +6 -0
  369. package/lib/ui/KatexRenderer.js +24 -0
  370. package/lib/ui/Modal.d.ts +9 -0
  371. package/lib/ui/Modal.js +48 -0
  372. package/lib/ui/Select.d.ts +8 -0
  373. package/lib/ui/Select.js +5 -0
  374. package/lib/ui/Switch.d.ts +8 -0
  375. package/lib/ui/Switch.js +6 -0
  376. package/lib/ui/TextInput.d.ts +13 -0
  377. package/lib/ui/TextInput.js +7 -0
  378. package/lib/utils/docSerialization.d.ts +3 -0
  379. package/lib/utils/docSerialization.js +56 -0
  380. package/lib/utils/emoji-list.d.ts +20 -0
  381. package/lib/utils/emoji-list.js +16605 -0
  382. package/lib/utils/getDOMRangeRect.d.ts +8 -0
  383. package/lib/utils/getDOMRangeRect.js +22 -0
  384. package/lib/utils/getSelectedNode.d.ts +2 -0
  385. package/lib/utils/getSelectedNode.js +24 -0
  386. package/lib/utils/getThemeSelector.d.ts +2 -0
  387. package/lib/utils/getThemeSelector.js +10 -0
  388. package/lib/utils/isMobileWidth.d.ts +7 -0
  389. package/lib/utils/isMobileWidth.js +7 -0
  390. package/lib/utils/joinClasses.d.ts +1 -0
  391. package/lib/utils/joinClasses.js +3 -0
  392. package/lib/utils/setFloatingElemPosition.d.ts +1 -0
  393. package/lib/utils/setFloatingElemPosition.js +55 -0
  394. package/lib/utils/setFloatingElemPositionForLinkEditor.d.ts +1 -0
  395. package/lib/utils/setFloatingElemPositionForLinkEditor.js +32 -0
  396. package/lib/utils/swipe.d.ts +4 -0
  397. package/lib/utils/swipe.js +90 -0
  398. package/lib/utils/url.d.ts +2 -0
  399. package/lib/utils/url.js +27 -0
  400. package/package.json +84 -50
  401. package/lib/LoroCollaborativePlugin.d.ts +0 -16
  402. package/lib/LoroCollaborativePlugin.js +0 -2503
@@ -0,0 +1,2473 @@
1
+ import { useLexicalComposerContext } from '@lexical/react/LexicalComposerContext';
2
+ import { $isAtNodeEnd } from '@lexical/selection';
3
+ import { mergeRegister } from '@lexical/utils';
4
+ import { $addUpdateTag, $createTextNode, $getNodeByKey, $getSelection, $isRangeSelection, $isTextNode, $setSelection, COMMAND_PRIORITY_LOW, HISTORY_MERGE_TAG, KEY_ARROW_RIGHT_COMMAND, KEY_TAB_COMMAND, } from 'lexical';
5
+ import { useCallback, useEffect } from 'react';
6
+ import { useToolbarState } from '../../context/ToolbarContext';
7
+ import { $createAutocompleteNode, AutocompleteNode, } from '../../nodes/AutocompleteNode';
8
+ import { addSwipeRightListener } from '../../utils/swipe';
9
+ const HISTORY_MERGE = { tag: HISTORY_MERGE_TAG };
10
+ export const uuid = Math.random()
11
+ .toString(36)
12
+ .replace(/[^a-z]+/g, '')
13
+ .substring(0, 5);
14
+ // TODO lookup should be custom
15
+ function $search(selection) {
16
+ if (!$isRangeSelection(selection) || !selection.isCollapsed()) {
17
+ return [false, ''];
18
+ }
19
+ const node = selection.getNodes()[0];
20
+ const anchor = selection.anchor;
21
+ // Check siblings?
22
+ if (!$isTextNode(node) || !node.isSimpleText() || !$isAtNodeEnd(anchor)) {
23
+ return [false, ''];
24
+ }
25
+ const word = [];
26
+ const text = node.getTextContent();
27
+ let i = node.getTextContentSize();
28
+ let c;
29
+ while (i-- && i >= 0 && (c = text[i]) !== ' ') {
30
+ word.push(c);
31
+ }
32
+ if (word.length === 0) {
33
+ return [false, ''];
34
+ }
35
+ return [true, word.reverse().join('')];
36
+ }
37
+ // TODO query should be custom
38
+ function useQuery() {
39
+ return useCallback((searchText) => {
40
+ const server = new AutocompleteServer();
41
+ console.time('query');
42
+ const response = server.query(searchText);
43
+ console.timeEnd('query');
44
+ return response;
45
+ }, []);
46
+ }
47
+ function formatSuggestionText(suggestion) {
48
+ const userAgentData = window.navigator.userAgentData;
49
+ const isMobile = userAgentData !== undefined
50
+ ? userAgentData.mobile
51
+ : window.innerWidth <= 800 && window.innerHeight <= 600;
52
+ return `${suggestion} ${isMobile ? '(SWIPE \u2B95)' : '(TAB)'}`;
53
+ }
54
+ export default function AutocompletePlugin() {
55
+ const [editor] = useLexicalComposerContext();
56
+ const query = useQuery();
57
+ const { toolbarState } = useToolbarState();
58
+ useEffect(() => {
59
+ let autocompleteNodeKey = null;
60
+ let lastMatch = null;
61
+ let lastSuggestion = null;
62
+ let searchPromise = null;
63
+ let prevNodeFormat = 0;
64
+ function $clearSuggestion() {
65
+ const autocompleteNode = autocompleteNodeKey !== null
66
+ ? $getNodeByKey(autocompleteNodeKey)
67
+ : null;
68
+ if (autocompleteNode !== null && autocompleteNode.isAttached()) {
69
+ autocompleteNode.remove();
70
+ autocompleteNodeKey = null;
71
+ }
72
+ if (searchPromise !== null) {
73
+ searchPromise.dismiss();
74
+ searchPromise = null;
75
+ }
76
+ lastMatch = null;
77
+ lastSuggestion = null;
78
+ prevNodeFormat = 0;
79
+ }
80
+ function updateAsyncSuggestion(refSearchPromise, newSuggestion) {
81
+ if (searchPromise !== refSearchPromise || newSuggestion === null) {
82
+ // Outdated or no suggestion
83
+ return;
84
+ }
85
+ editor.update(() => {
86
+ const selection = $getSelection();
87
+ const [hasMatch, match] = $search(selection);
88
+ if (!hasMatch || match !== lastMatch || !$isRangeSelection(selection)) {
89
+ // Outdated
90
+ return;
91
+ }
92
+ const selectionCopy = selection.clone();
93
+ const prevNode = selection.getNodes()[0];
94
+ prevNodeFormat = prevNode.getFormat();
95
+ const node = $createAutocompleteNode(formatSuggestionText(newSuggestion), uuid)
96
+ .setFormat(prevNodeFormat)
97
+ .setStyle(`font-size: ${toolbarState.fontSize}`);
98
+ autocompleteNodeKey = node.getKey();
99
+ selection.insertNodes([node]);
100
+ $setSelection(selectionCopy);
101
+ lastSuggestion = newSuggestion;
102
+ }, HISTORY_MERGE);
103
+ }
104
+ function $handleAutocompleteNodeTransform(node) {
105
+ const key = node.getKey();
106
+ if (node.__uuid === uuid && key !== autocompleteNodeKey) {
107
+ // Max one Autocomplete node per session
108
+ $clearSuggestion();
109
+ }
110
+ }
111
+ function handleUpdate() {
112
+ editor.update(() => {
113
+ const selection = $getSelection();
114
+ const [hasMatch, match] = $search(selection);
115
+ if (!hasMatch) {
116
+ $clearSuggestion();
117
+ return;
118
+ }
119
+ if (match === lastMatch) {
120
+ return;
121
+ }
122
+ $clearSuggestion();
123
+ searchPromise = query(match);
124
+ searchPromise.promise
125
+ .then((newSuggestion) => {
126
+ if (searchPromise !== null) {
127
+ updateAsyncSuggestion(searchPromise, newSuggestion);
128
+ }
129
+ })
130
+ .catch((e) => {
131
+ if (e !== 'Dismissed') {
132
+ console.error(e);
133
+ }
134
+ });
135
+ lastMatch = match;
136
+ }, HISTORY_MERGE);
137
+ }
138
+ function $handleAutocompleteIntent() {
139
+ if (lastSuggestion === null || autocompleteNodeKey === null) {
140
+ return false;
141
+ }
142
+ const autocompleteNode = $getNodeByKey(autocompleteNodeKey);
143
+ if (autocompleteNode === null) {
144
+ return false;
145
+ }
146
+ const textNode = $createTextNode(lastSuggestion)
147
+ .setFormat(prevNodeFormat)
148
+ .setStyle(`font-size: ${toolbarState.fontSize}`);
149
+ autocompleteNode.replace(textNode);
150
+ textNode.selectNext();
151
+ $clearSuggestion();
152
+ return true;
153
+ }
154
+ function $handleKeypressCommand(e) {
155
+ if ($handleAutocompleteIntent()) {
156
+ e.preventDefault();
157
+ return true;
158
+ }
159
+ return false;
160
+ }
161
+ function handleSwipeRight(_force, e) {
162
+ editor.update(() => {
163
+ if ($handleAutocompleteIntent()) {
164
+ e.preventDefault();
165
+ }
166
+ else {
167
+ $addUpdateTag(HISTORY_MERGE.tag);
168
+ }
169
+ });
170
+ }
171
+ function unmountSuggestion() {
172
+ editor.update(() => {
173
+ $clearSuggestion();
174
+ }, HISTORY_MERGE);
175
+ }
176
+ const rootElem = editor.getRootElement();
177
+ return mergeRegister(editor.registerNodeTransform(AutocompleteNode, $handleAutocompleteNodeTransform), editor.registerUpdateListener(handleUpdate), editor.registerCommand(KEY_TAB_COMMAND, $handleKeypressCommand, COMMAND_PRIORITY_LOW), editor.registerCommand(KEY_ARROW_RIGHT_COMMAND, $handleKeypressCommand, COMMAND_PRIORITY_LOW), ...(rootElem !== null
178
+ ? [addSwipeRightListener(rootElem, handleSwipeRight)]
179
+ : []), unmountSuggestion);
180
+ }, [editor, query, toolbarState.fontSize]);
181
+ return null;
182
+ }
183
+ /*
184
+ * Simulate an asynchronous autocomplete server (typical in more common use cases like GMail where
185
+ * the data is not static).
186
+ */
187
+ class AutocompleteServer {
188
+ DATABASE = DICTIONARY;
189
+ LATENCY = 200;
190
+ query = (searchText) => {
191
+ let isDismissed = false;
192
+ const dismiss = () => {
193
+ isDismissed = true;
194
+ };
195
+ const promise = new Promise((resolve, reject) => {
196
+ setTimeout(() => {
197
+ if (isDismissed) {
198
+ // TODO cache result
199
+ return reject('Dismissed');
200
+ }
201
+ const searchTextLength = searchText.length;
202
+ if (searchText === '' || searchTextLength < 4) {
203
+ return resolve(null);
204
+ }
205
+ const char0 = searchText.charCodeAt(0);
206
+ const isCapitalized = char0 >= 65 && char0 <= 90;
207
+ const caseInsensitiveSearchText = isCapitalized
208
+ ? String.fromCharCode(char0 + 32) + searchText.substring(1)
209
+ : searchText;
210
+ const match = this.DATABASE.find((dictionaryWord) => dictionaryWord.startsWith(caseInsensitiveSearchText) ?? null);
211
+ if (match === undefined) {
212
+ return resolve(null);
213
+ }
214
+ const matchCapitalized = isCapitalized
215
+ ? String.fromCharCode(match.charCodeAt(0) - 32) + match.substring(1)
216
+ : match;
217
+ const autocompleteChunk = matchCapitalized.substring(searchTextLength);
218
+ if (autocompleteChunk === '') {
219
+ return resolve(null);
220
+ }
221
+ return resolve(autocompleteChunk);
222
+ }, this.LATENCY);
223
+ });
224
+ return {
225
+ dismiss,
226
+ promise,
227
+ };
228
+ };
229
+ }
230
+ // https://raw.githubusercontent.com/first20hours/google-10000-english/master/google-10000-english-usa-no-swears-long.txt
231
+ const DICTIONARY = [
232
+ 'information',
233
+ 'available',
234
+ 'copyright',
235
+ 'university',
236
+ 'management',
237
+ 'international',
238
+ 'development',
239
+ 'education',
240
+ 'community',
241
+ 'technology',
242
+ 'following',
243
+ 'resources',
244
+ 'including',
245
+ 'directory',
246
+ 'government',
247
+ 'department',
248
+ 'description',
249
+ 'insurance',
250
+ 'different',
251
+ 'categories',
252
+ 'conditions',
253
+ 'accessories',
254
+ 'september',
255
+ 'questions',
256
+ 'application',
257
+ 'financial',
258
+ 'equipment',
259
+ 'performance',
260
+ 'experience',
261
+ 'important',
262
+ 'activities',
263
+ 'additional',
264
+ 'something',
265
+ 'professional',
266
+ 'committee',
267
+ 'washington',
268
+ 'california',
269
+ 'reference',
270
+ 'companies',
271
+ 'computers',
272
+ 'president',
273
+ 'australia',
274
+ 'discussion',
275
+ 'entertainment',
276
+ 'agreement',
277
+ 'marketing',
278
+ 'association',
279
+ 'collection',
280
+ 'solutions',
281
+ 'electronics',
282
+ 'technical',
283
+ 'microsoft',
284
+ 'conference',
285
+ 'environment',
286
+ 'statement',
287
+ 'downloads',
288
+ 'applications',
289
+ 'requirements',
290
+ 'individual',
291
+ 'subscribe',
292
+ 'everything',
293
+ 'production',
294
+ 'commercial',
295
+ 'advertising',
296
+ 'treatment',
297
+ 'newsletter',
298
+ 'knowledge',
299
+ 'currently',
300
+ 'construction',
301
+ 'registered',
302
+ 'protection',
303
+ 'engineering',
304
+ 'published',
305
+ 'corporate',
306
+ 'customers',
307
+ 'materials',
308
+ 'countries',
309
+ 'standards',
310
+ 'political',
311
+ 'advertise',
312
+ 'environmental',
313
+ 'availability',
314
+ 'employment',
315
+ 'commission',
316
+ 'administration',
317
+ 'institute',
318
+ 'sponsored',
319
+ 'electronic',
320
+ 'condition',
321
+ 'effective',
322
+ 'organization',
323
+ 'selection',
324
+ 'corporation',
325
+ 'executive',
326
+ 'necessary',
327
+ 'according',
328
+ 'particular',
329
+ 'facilities',
330
+ 'opportunities',
331
+ 'appropriate',
332
+ 'statistics',
333
+ 'investment',
334
+ 'christmas',
335
+ 'registration',
336
+ 'furniture',
337
+ 'wednesday',
338
+ 'structure',
339
+ 'distribution',
340
+ 'industrial',
341
+ 'potential',
342
+ 'responsible',
343
+ 'communications',
344
+ 'associated',
345
+ 'foundation',
346
+ 'documents',
347
+ 'communication',
348
+ 'independent',
349
+ 'operating',
350
+ 'developed',
351
+ 'telephone',
352
+ 'population',
353
+ 'navigation',
354
+ 'operations',
355
+ 'therefore',
356
+ 'christian',
357
+ 'understand',
358
+ 'publications',
359
+ 'worldwide',
360
+ 'connection',
361
+ 'publisher',
362
+ 'introduction',
363
+ 'properties',
364
+ 'accommodation',
365
+ 'excellent',
366
+ 'opportunity',
367
+ 'assessment',
368
+ 'especially',
369
+ 'interface',
370
+ 'operation',
371
+ 'restaurants',
372
+ 'beautiful',
373
+ 'locations',
374
+ 'significant',
375
+ 'technologies',
376
+ 'manufacturer',
377
+ 'providing',
378
+ 'authority',
379
+ 'considered',
380
+ 'programme',
381
+ 'enterprise',
382
+ 'educational',
383
+ 'employees',
384
+ 'alternative',
385
+ 'processing',
386
+ 'responsibility',
387
+ 'resolution',
388
+ 'publication',
389
+ 'relations',
390
+ 'photography',
391
+ 'components',
392
+ 'assistance',
393
+ 'completed',
394
+ 'organizations',
395
+ 'otherwise',
396
+ 'transportation',
397
+ 'disclaimer',
398
+ 'membership',
399
+ 'recommended',
400
+ 'background',
401
+ 'character',
402
+ 'maintenance',
403
+ 'functions',
404
+ 'trademarks',
405
+ 'phentermine',
406
+ 'submitted',
407
+ 'television',
408
+ 'interested',
409
+ 'throughout',
410
+ 'established',
411
+ 'programming',
412
+ 'regarding',
413
+ 'instructions',
414
+ 'increased',
415
+ 'understanding',
416
+ 'beginning',
417
+ 'associates',
418
+ 'instruments',
419
+ 'businesses',
420
+ 'specified',
421
+ 'restaurant',
422
+ 'procedures',
423
+ 'relationship',
424
+ 'traditional',
425
+ 'sometimes',
426
+ 'themselves',
427
+ 'transport',
428
+ 'interesting',
429
+ 'evaluation',
430
+ 'implementation',
431
+ 'galleries',
432
+ 'references',
433
+ 'presented',
434
+ 'literature',
435
+ 'respective',
436
+ 'definition',
437
+ 'secretary',
438
+ 'networking',
439
+ 'australian',
440
+ 'magazines',
441
+ 'francisco',
442
+ 'individuals',
443
+ 'guidelines',
444
+ 'installation',
445
+ 'described',
446
+ 'attention',
447
+ 'difference',
448
+ 'regulations',
449
+ 'certificate',
450
+ 'directions',
451
+ 'documentation',
452
+ 'automotive',
453
+ 'successful',
454
+ 'communities',
455
+ 'situation',
456
+ 'publishing',
457
+ 'emergency',
458
+ 'developing',
459
+ 'determine',
460
+ 'temperature',
461
+ 'announcements',
462
+ 'historical',
463
+ 'ringtones',
464
+ 'difficult',
465
+ 'scientific',
466
+ 'satellite',
467
+ 'particularly',
468
+ 'functional',
469
+ 'monitoring',
470
+ 'architecture',
471
+ 'recommend',
472
+ 'dictionary',
473
+ 'accounting',
474
+ 'manufacturing',
475
+ 'professor',
476
+ 'generally',
477
+ 'continued',
478
+ 'techniques',
479
+ 'permission',
480
+ 'generation',
481
+ 'component',
482
+ 'guarantee',
483
+ 'processes',
484
+ 'interests',
485
+ 'paperback',
486
+ 'classifieds',
487
+ 'supported',
488
+ 'competition',
489
+ 'providers',
490
+ 'characters',
491
+ 'thousands',
492
+ 'apartments',
493
+ 'generated',
494
+ 'administrative',
495
+ 'practices',
496
+ 'reporting',
497
+ 'essential',
498
+ 'affiliate',
499
+ 'immediately',
500
+ 'designated',
501
+ 'integrated',
502
+ 'configuration',
503
+ 'comprehensive',
504
+ 'universal',
505
+ 'presentation',
506
+ 'languages',
507
+ 'compliance',
508
+ 'improvement',
509
+ 'pennsylvania',
510
+ 'challenge',
511
+ 'acceptance',
512
+ 'strategies',
513
+ 'affiliates',
514
+ 'multimedia',
515
+ 'certified',
516
+ 'computing',
517
+ 'interactive',
518
+ 'procedure',
519
+ 'leadership',
520
+ 'religious',
521
+ 'breakfast',
522
+ 'developer',
523
+ 'approximately',
524
+ 'recommendations',
525
+ 'comparison',
526
+ 'automatically',
527
+ 'minnesota',
528
+ 'adventure',
529
+ 'institutions',
530
+ 'assistant',
531
+ 'advertisement',
532
+ 'headlines',
533
+ 'yesterday',
534
+ 'determined',
535
+ 'wholesale',
536
+ 'extension',
537
+ 'statements',
538
+ 'completely',
539
+ 'electrical',
540
+ 'applicable',
541
+ 'manufacturers',
542
+ 'classical',
543
+ 'dedicated',
544
+ 'direction',
545
+ 'basketball',
546
+ 'wisconsin',
547
+ 'personnel',
548
+ 'identified',
549
+ 'professionals',
550
+ 'advantage',
551
+ 'newsletters',
552
+ 'estimated',
553
+ 'anonymous',
554
+ 'miscellaneous',
555
+ 'integration',
556
+ 'interview',
557
+ 'framework',
558
+ 'installed',
559
+ 'massachusetts',
560
+ 'associate',
561
+ 'frequently',
562
+ 'discussions',
563
+ 'laboratory',
564
+ 'destination',
565
+ 'intelligence',
566
+ 'specifications',
567
+ 'tripadvisor',
568
+ 'residential',
569
+ 'decisions',
570
+ 'industries',
571
+ 'partnership',
572
+ 'editorial',
573
+ 'expression',
574
+ 'provisions',
575
+ 'principles',
576
+ 'suggestions',
577
+ 'replacement',
578
+ 'strategic',
579
+ 'economics',
580
+ 'compatible',
581
+ 'apartment',
582
+ 'netherlands',
583
+ 'consulting',
584
+ 'recreation',
585
+ 'participants',
586
+ 'favorites',
587
+ 'translation',
588
+ 'estimates',
589
+ 'protected',
590
+ 'philadelphia',
591
+ 'officials',
592
+ 'contained',
593
+ 'legislation',
594
+ 'parameters',
595
+ 'relationships',
596
+ 'tennessee',
597
+ 'representative',
598
+ 'frequency',
599
+ 'introduced',
600
+ 'departments',
601
+ 'residents',
602
+ 'displayed',
603
+ 'performed',
604
+ 'administrator',
605
+ 'addresses',
606
+ 'permanent',
607
+ 'agriculture',
608
+ 'constitutes',
609
+ 'portfolio',
610
+ 'practical',
611
+ 'delivered',
612
+ 'collectibles',
613
+ 'infrastructure',
614
+ 'exclusive',
615
+ 'originally',
616
+ 'utilities',
617
+ 'philosophy',
618
+ 'regulation',
619
+ 'reduction',
620
+ 'nutrition',
621
+ 'recording',
622
+ 'secondary',
623
+ 'wonderful',
624
+ 'announced',
625
+ 'prevention',
626
+ 'mentioned',
627
+ 'automatic',
628
+ 'healthcare',
629
+ 'maintained',
630
+ 'increasing',
631
+ 'connected',
632
+ 'directors',
633
+ 'participation',
634
+ 'containing',
635
+ 'combination',
636
+ 'amendment',
637
+ 'guaranteed',
638
+ 'libraries',
639
+ 'distributed',
640
+ 'singapore',
641
+ 'enterprises',
642
+ 'convention',
643
+ 'principal',
644
+ 'certification',
645
+ 'previously',
646
+ 'buildings',
647
+ 'household',
648
+ 'batteries',
649
+ 'positions',
650
+ 'subscription',
651
+ 'contemporary',
652
+ 'panasonic',
653
+ 'permalink',
654
+ 'signature',
655
+ 'provision',
656
+ 'certainly',
657
+ 'newspaper',
658
+ 'liability',
659
+ 'trademark',
660
+ 'trackback',
661
+ 'americans',
662
+ 'promotion',
663
+ 'conversion',
664
+ 'reasonable',
665
+ 'broadband',
666
+ 'influence',
667
+ 'importance',
668
+ 'webmaster',
669
+ 'prescription',
670
+ 'specifically',
671
+ 'represent',
672
+ 'conservation',
673
+ 'louisiana',
674
+ 'javascript',
675
+ 'marketplace',
676
+ 'evolution',
677
+ 'certificates',
678
+ 'objectives',
679
+ 'suggested',
680
+ 'concerned',
681
+ 'structures',
682
+ 'encyclopedia',
683
+ 'continuing',
684
+ 'interracial',
685
+ 'competitive',
686
+ 'suppliers',
687
+ 'preparation',
688
+ 'receiving',
689
+ 'accordance',
690
+ 'discussed',
691
+ 'elizabeth',
692
+ 'reservations',
693
+ 'playstation',
694
+ 'instruction',
695
+ 'annotation',
696
+ 'differences',
697
+ 'establish',
698
+ 'expressed',
699
+ 'paragraph',
700
+ 'mathematics',
701
+ 'compensation',
702
+ 'conducted',
703
+ 'percentage',
704
+ 'mississippi',
705
+ 'requested',
706
+ 'connecticut',
707
+ 'personals',
708
+ 'immediate',
709
+ 'agricultural',
710
+ 'supporting',
711
+ 'collections',
712
+ 'participate',
713
+ 'specialist',
714
+ 'experienced',
715
+ 'investigation',
716
+ 'institution',
717
+ 'searching',
718
+ 'proceedings',
719
+ 'transmission',
720
+ 'characteristics',
721
+ 'experiences',
722
+ 'extremely',
723
+ 'verzeichnis',
724
+ 'contracts',
725
+ 'concerning',
726
+ 'developers',
727
+ 'equivalent',
728
+ 'chemistry',
729
+ 'neighborhood',
730
+ 'variables',
731
+ 'continues',
732
+ 'curriculum',
733
+ 'psychology',
734
+ 'responses',
735
+ 'circumstances',
736
+ 'identification',
737
+ 'appliances',
738
+ 'elementary',
739
+ 'unlimited',
740
+ 'printable',
741
+ 'enforcement',
742
+ 'hardcover',
743
+ 'celebrity',
744
+ 'chocolate',
745
+ 'hampshire',
746
+ 'bluetooth',
747
+ 'controlled',
748
+ 'requirement',
749
+ 'authorities',
750
+ 'representatives',
751
+ 'pregnancy',
752
+ 'biography',
753
+ 'attractions',
754
+ 'transactions',
755
+ 'authorized',
756
+ 'retirement',
757
+ 'financing',
758
+ 'efficiency',
759
+ 'efficient',
760
+ 'commitment',
761
+ 'specialty',
762
+ 'interviews',
763
+ 'qualified',
764
+ 'discovery',
765
+ 'classified',
766
+ 'confidence',
767
+ 'lifestyle',
768
+ 'consistent',
769
+ 'clearance',
770
+ 'connections',
771
+ 'inventory',
772
+ 'converter',
773
+ 'organisation',
774
+ 'objective',
775
+ 'indicated',
776
+ 'securities',
777
+ 'volunteer',
778
+ 'democratic',
779
+ 'switzerland',
780
+ 'parameter',
781
+ 'processor',
782
+ 'dimensions',
783
+ 'contribute',
784
+ 'challenges',
785
+ 'recognition',
786
+ 'submission',
787
+ 'encourage',
788
+ 'regulatory',
789
+ 'inspection',
790
+ 'consumers',
791
+ 'territory',
792
+ 'transaction',
793
+ 'manchester',
794
+ 'contributions',
795
+ 'continuous',
796
+ 'resulting',
797
+ 'cambridge',
798
+ 'initiative',
799
+ 'execution',
800
+ 'disability',
801
+ 'increases',
802
+ 'contractor',
803
+ 'examination',
804
+ 'indicates',
805
+ 'committed',
806
+ 'extensive',
807
+ 'affordable',
808
+ 'candidate',
809
+ 'databases',
810
+ 'outstanding',
811
+ 'perspective',
812
+ 'messenger',
813
+ 'tournament',
814
+ 'consideration',
815
+ 'discounts',
816
+ 'catalogue',
817
+ 'publishers',
818
+ 'caribbean',
819
+ 'reservation',
820
+ 'remaining',
821
+ 'depending',
822
+ 'expansion',
823
+ 'purchased',
824
+ 'performing',
825
+ 'collected',
826
+ 'absolutely',
827
+ 'featuring',
828
+ 'implement',
829
+ 'scheduled',
830
+ 'calculator',
831
+ 'significantly',
832
+ 'temporary',
833
+ 'sufficient',
834
+ 'awareness',
835
+ 'vancouver',
836
+ 'contribution',
837
+ 'measurement',
838
+ 'constitution',
839
+ 'packaging',
840
+ 'consultation',
841
+ 'northwest',
842
+ 'classroom',
843
+ 'democracy',
844
+ 'wallpaper',
845
+ 'merchandise',
846
+ 'resistance',
847
+ 'baltimore',
848
+ 'candidates',
849
+ 'charlotte',
850
+ 'biological',
851
+ 'transition',
852
+ 'preferences',
853
+ 'instrument',
854
+ 'classification',
855
+ 'physician',
856
+ 'hollywood',
857
+ 'wikipedia',
858
+ 'spiritual',
859
+ 'photographs',
860
+ 'relatively',
861
+ 'satisfaction',
862
+ 'represents',
863
+ 'pittsburgh',
864
+ 'preferred',
865
+ 'intellectual',
866
+ 'comfortable',
867
+ 'interaction',
868
+ 'listening',
869
+ 'effectively',
870
+ 'experimental',
871
+ 'revolution',
872
+ 'consolidation',
873
+ 'landscape',
874
+ 'dependent',
875
+ 'mechanical',
876
+ 'consultants',
877
+ 'applicant',
878
+ 'cooperation',
879
+ 'acquisition',
880
+ 'implemented',
881
+ 'directories',
882
+ 'recognized',
883
+ 'notification',
884
+ 'licensing',
885
+ 'textbooks',
886
+ 'diversity',
887
+ 'cleveland',
888
+ 'investments',
889
+ 'accessibility',
890
+ 'sensitive',
891
+ 'templates',
892
+ 'completion',
893
+ 'universities',
894
+ 'technique',
895
+ 'contractors',
896
+ 'subscriptions',
897
+ 'calculate',
898
+ 'alexander',
899
+ 'broadcast',
900
+ 'converted',
901
+ 'anniversary',
902
+ 'improvements',
903
+ 'specification',
904
+ 'accessible',
905
+ 'accessory',
906
+ 'typically',
907
+ 'representation',
908
+ 'arrangements',
909
+ 'conferences',
910
+ 'uniprotkb',
911
+ 'consumption',
912
+ 'birmingham',
913
+ 'afternoon',
914
+ 'consultant',
915
+ 'controller',
916
+ 'ownership',
917
+ 'committees',
918
+ 'legislative',
919
+ 'researchers',
920
+ 'unsubscribe',
921
+ 'molecular',
922
+ 'residence',
923
+ 'attorneys',
924
+ 'operators',
925
+ 'sustainable',
926
+ 'philippines',
927
+ 'statistical',
928
+ 'innovation',
929
+ 'employers',
930
+ 'definitions',
931
+ 'elections',
932
+ 'stainless',
933
+ 'newspapers',
934
+ 'hospitals',
935
+ 'exception',
936
+ 'successfully',
937
+ 'indonesia',
938
+ 'primarily',
939
+ 'capabilities',
940
+ 'recommendation',
941
+ 'recruitment',
942
+ 'organized',
943
+ 'improving',
944
+ 'expensive',
945
+ 'organisations',
946
+ 'explained',
947
+ 'programmes',
948
+ 'expertise',
949
+ 'mechanism',
950
+ 'jewellery',
951
+ 'eventually',
952
+ 'agreements',
953
+ 'considering',
954
+ 'innovative',
955
+ 'conclusion',
956
+ 'disorders',
957
+ 'collaboration',
958
+ 'detection',
959
+ 'formation',
960
+ 'engineers',
961
+ 'proposals',
962
+ 'moderator',
963
+ 'tutorials',
964
+ 'settlement',
965
+ 'collectables',
966
+ 'fantastic',
967
+ 'governments',
968
+ 'purchasing',
969
+ 'appointed',
970
+ 'operational',
971
+ 'corresponding',
972
+ 'descriptions',
973
+ 'determination',
974
+ 'animation',
975
+ 'productions',
976
+ 'telecommunications',
977
+ 'instructor',
978
+ 'approaches',
979
+ 'highlights',
980
+ 'designers',
981
+ 'melbourne',
982
+ 'scientists',
983
+ 'blackjack',
984
+ 'argentina',
985
+ 'possibility',
986
+ 'commissioner',
987
+ 'dangerous',
988
+ 'reliability',
989
+ 'unfortunately',
990
+ 'respectively',
991
+ 'volunteers',
992
+ 'attachment',
993
+ 'appointment',
994
+ 'workshops',
995
+ 'hurricane',
996
+ 'represented',
997
+ 'mortgages',
998
+ 'responsibilities',
999
+ 'carefully',
1000
+ 'productivity',
1001
+ 'investors',
1002
+ 'underground',
1003
+ 'diagnosis',
1004
+ 'principle',
1005
+ 'vacations',
1006
+ 'calculated',
1007
+ 'appearance',
1008
+ 'incorporated',
1009
+ 'notebooks',
1010
+ 'algorithm',
1011
+ 'valentine',
1012
+ 'involving',
1013
+ 'investing',
1014
+ 'christopher',
1015
+ 'admission',
1016
+ 'terrorism',
1017
+ 'parliament',
1018
+ 'situations',
1019
+ 'allocated',
1020
+ 'corrections',
1021
+ 'structural',
1022
+ 'municipal',
1023
+ 'describes',
1024
+ 'disabilities',
1025
+ 'substance',
1026
+ 'prohibited',
1027
+ 'addressed',
1028
+ 'simulation',
1029
+ 'initiatives',
1030
+ 'concentration',
1031
+ 'interpretation',
1032
+ 'bankruptcy',
1033
+ 'optimization',
1034
+ 'substances',
1035
+ 'discovered',
1036
+ 'restrictions',
1037
+ 'participating',
1038
+ 'exhibition',
1039
+ 'composition',
1040
+ 'nationwide',
1041
+ 'definitely',
1042
+ 'existence',
1043
+ 'commentary',
1044
+ 'limousines',
1045
+ 'developments',
1046
+ 'immigration',
1047
+ 'destinations',
1048
+ 'necessarily',
1049
+ 'attribute',
1050
+ 'apparently',
1051
+ 'surrounding',
1052
+ 'mountains',
1053
+ 'popularity',
1054
+ 'postposted',
1055
+ 'coordinator',
1056
+ 'obviously',
1057
+ 'fundamental',
1058
+ 'substantial',
1059
+ 'progressive',
1060
+ 'championship',
1061
+ 'sacramento',
1062
+ 'impossible',
1063
+ 'depression',
1064
+ 'testimonials',
1065
+ 'memorabilia',
1066
+ 'cartridge',
1067
+ 'explanation',
1068
+ 'cincinnati',
1069
+ 'subsection',
1070
+ 'electricity',
1071
+ 'permitted',
1072
+ 'workplace',
1073
+ 'confirmed',
1074
+ 'wallpapers',
1075
+ 'infection',
1076
+ 'eligibility',
1077
+ 'involvement',
1078
+ 'placement',
1079
+ 'observations',
1080
+ 'vbulletin',
1081
+ 'subsequent',
1082
+ 'motorcycle',
1083
+ 'disclosure',
1084
+ 'establishment',
1085
+ 'presentations',
1086
+ 'undergraduate',
1087
+ 'occupation',
1088
+ 'donations',
1089
+ 'associations',
1090
+ 'citysearch',
1091
+ 'radiation',
1092
+ 'seriously',
1093
+ 'elsewhere',
1094
+ 'pollution',
1095
+ 'conservative',
1096
+ 'guestbook',
1097
+ 'effectiveness',
1098
+ 'demonstrate',
1099
+ 'atmosphere',
1100
+ 'experiment',
1101
+ 'purchases',
1102
+ 'federation',
1103
+ 'assignment',
1104
+ 'chemicals',
1105
+ 'everybody',
1106
+ 'nashville',
1107
+ 'counseling',
1108
+ 'acceptable',
1109
+ 'satisfied',
1110
+ 'measurements',
1111
+ 'milwaukee',
1112
+ 'medication',
1113
+ 'warehouse',
1114
+ 'shareware',
1115
+ 'violation',
1116
+ 'configure',
1117
+ 'stability',
1118
+ 'southwest',
1119
+ 'institutional',
1120
+ 'expectations',
1121
+ 'independence',
1122
+ 'metabolism',
1123
+ 'personally',
1124
+ 'excellence',
1125
+ 'somewhere',
1126
+ 'attributes',
1127
+ 'recognize',
1128
+ 'screening',
1129
+ 'thumbnail',
1130
+ 'forgotten',
1131
+ 'intelligent',
1132
+ 'edinburgh',
1133
+ 'obligation',
1134
+ 'regardless',
1135
+ 'restricted',
1136
+ 'republican',
1137
+ 'merchants',
1138
+ 'attendance',
1139
+ 'arguments',
1140
+ 'amsterdam',
1141
+ 'adventures',
1142
+ 'announcement',
1143
+ 'appreciate',
1144
+ 'regularly',
1145
+ 'mechanisms',
1146
+ 'customize',
1147
+ 'tradition',
1148
+ 'indicators',
1149
+ 'emissions',
1150
+ 'physicians',
1151
+ 'complaint',
1152
+ 'experiments',
1153
+ 'afghanistan',
1154
+ 'scholarship',
1155
+ 'governance',
1156
+ 'supplements',
1157
+ 'camcorder',
1158
+ 'implementing',
1159
+ 'ourselves',
1160
+ 'conversation',
1161
+ 'capability',
1162
+ 'producing',
1163
+ 'precision',
1164
+ 'contributed',
1165
+ 'reproduction',
1166
+ 'ingredients',
1167
+ 'franchise',
1168
+ 'complaints',
1169
+ 'promotions',
1170
+ 'rehabilitation',
1171
+ 'maintaining',
1172
+ 'environments',
1173
+ 'reception',
1174
+ 'correctly',
1175
+ 'consequences',
1176
+ 'geography',
1177
+ 'appearing',
1178
+ 'integrity',
1179
+ 'discrimination',
1180
+ 'processed',
1181
+ 'implications',
1182
+ 'functionality',
1183
+ 'intermediate',
1184
+ 'emotional',
1185
+ 'platforms',
1186
+ 'overnight',
1187
+ 'geographic',
1188
+ 'preliminary',
1189
+ 'districts',
1190
+ 'introduce',
1191
+ 'promotional',
1192
+ 'chevrolet',
1193
+ 'specialists',
1194
+ 'generator',
1195
+ 'suspension',
1196
+ 'correction',
1197
+ 'authentication',
1198
+ 'communicate',
1199
+ 'supplement',
1200
+ 'showtimes',
1201
+ 'promoting',
1202
+ 'machinery',
1203
+ 'bandwidth',
1204
+ 'probability',
1205
+ 'dimension',
1206
+ 'schedules',
1207
+ 'admissions',
1208
+ 'quarterly',
1209
+ 'illustrated',
1210
+ 'continental',
1211
+ 'alternate',
1212
+ 'achievement',
1213
+ 'limitations',
1214
+ 'automated',
1215
+ 'passenger',
1216
+ 'convenient',
1217
+ 'orientation',
1218
+ 'childhood',
1219
+ 'flexibility',
1220
+ 'jurisdiction',
1221
+ 'displaying',
1222
+ 'encouraged',
1223
+ 'cartridges',
1224
+ 'declaration',
1225
+ 'automation',
1226
+ 'advantages',
1227
+ 'preparing',
1228
+ 'recipient',
1229
+ 'extensions',
1230
+ 'athletics',
1231
+ 'southeast',
1232
+ 'alternatives',
1233
+ 'determining',
1234
+ 'personalized',
1235
+ 'conditioning',
1236
+ 'partnerships',
1237
+ 'destruction',
1238
+ 'increasingly',
1239
+ 'migration',
1240
+ 'basically',
1241
+ 'conventional',
1242
+ 'applicants',
1243
+ 'occupational',
1244
+ 'adjustment',
1245
+ 'treatments',
1246
+ 'camcorders',
1247
+ 'difficulty',
1248
+ 'collective',
1249
+ 'coalition',
1250
+ 'enrollment',
1251
+ 'producers',
1252
+ 'collector',
1253
+ 'interfaces',
1254
+ 'advertisers',
1255
+ 'representing',
1256
+ 'observation',
1257
+ 'restoration',
1258
+ 'convenience',
1259
+ 'returning',
1260
+ 'opposition',
1261
+ 'container',
1262
+ 'defendant',
1263
+ 'confirmation',
1264
+ 'supervisor',
1265
+ 'peripherals',
1266
+ 'bestsellers',
1267
+ 'departure',
1268
+ 'minneapolis',
1269
+ 'interactions',
1270
+ 'intervention',
1271
+ 'attraction',
1272
+ 'modification',
1273
+ 'customized',
1274
+ 'understood',
1275
+ 'assurance',
1276
+ 'happening',
1277
+ 'amendments',
1278
+ 'metropolitan',
1279
+ 'compilation',
1280
+ 'verification',
1281
+ 'attractive',
1282
+ 'recordings',
1283
+ 'jefferson',
1284
+ 'gardening',
1285
+ 'obligations',
1286
+ 'orchestra',
1287
+ 'polyphonic',
1288
+ 'outsourcing',
1289
+ 'adjustable',
1290
+ 'allocation',
1291
+ 'discipline',
1292
+ 'demonstrated',
1293
+ 'identifying',
1294
+ 'alphabetical',
1295
+ 'dispatched',
1296
+ 'installing',
1297
+ 'voluntary',
1298
+ 'photographer',
1299
+ 'messaging',
1300
+ 'constructed',
1301
+ 'additions',
1302
+ 'requiring',
1303
+ 'engagement',
1304
+ 'refinance',
1305
+ 'calendars',
1306
+ 'arrangement',
1307
+ 'conclusions',
1308
+ 'bibliography',
1309
+ 'compatibility',
1310
+ 'furthermore',
1311
+ 'cooperative',
1312
+ 'measuring',
1313
+ 'jacksonville',
1314
+ 'headquarters',
1315
+ 'transfers',
1316
+ 'transformation',
1317
+ 'attachments',
1318
+ 'administrators',
1319
+ 'personality',
1320
+ 'facilitate',
1321
+ 'subscriber',
1322
+ 'priorities',
1323
+ 'bookstore',
1324
+ 'parenting',
1325
+ 'incredible',
1326
+ 'commonwealth',
1327
+ 'pharmaceutical',
1328
+ 'manhattan',
1329
+ 'workforce',
1330
+ 'organizational',
1331
+ 'portuguese',
1332
+ 'everywhere',
1333
+ 'discharge',
1334
+ 'halloween',
1335
+ 'hazardous',
1336
+ 'methodology',
1337
+ 'housewares',
1338
+ 'reputation',
1339
+ 'resistant',
1340
+ 'democrats',
1341
+ 'recycling',
1342
+ 'qualifications',
1343
+ 'slideshow',
1344
+ 'variation',
1345
+ 'transferred',
1346
+ 'photograph',
1347
+ 'distributor',
1348
+ 'underlying',
1349
+ 'wrestling',
1350
+ 'photoshop',
1351
+ 'gathering',
1352
+ 'projection',
1353
+ 'mathematical',
1354
+ 'specialized',
1355
+ 'diagnostic',
1356
+ 'indianapolis',
1357
+ 'corporations',
1358
+ 'criticism',
1359
+ 'automobile',
1360
+ 'confidential',
1361
+ 'statutory',
1362
+ 'accommodations',
1363
+ 'northeast',
1364
+ 'downloaded',
1365
+ 'paintings',
1366
+ 'injection',
1367
+ 'yorkshire',
1368
+ 'populations',
1369
+ 'protective',
1370
+ 'initially',
1371
+ 'indicator',
1372
+ 'eliminate',
1373
+ 'sunglasses',
1374
+ 'preference',
1375
+ 'threshold',
1376
+ 'venezuela',
1377
+ 'exploration',
1378
+ 'sequences',
1379
+ 'astronomy',
1380
+ 'translate',
1381
+ 'announces',
1382
+ 'compression',
1383
+ 'establishing',
1384
+ 'constitutional',
1385
+ 'perfectly',
1386
+ 'instantly',
1387
+ 'litigation',
1388
+ 'submissions',
1389
+ 'broadcasting',
1390
+ 'horizontal',
1391
+ 'terrorist',
1392
+ 'informational',
1393
+ 'ecommerce',
1394
+ 'suffering',
1395
+ 'prospective',
1396
+ 'ultimately',
1397
+ 'artificial',
1398
+ 'spectacular',
1399
+ 'coordination',
1400
+ 'connector',
1401
+ 'affiliated',
1402
+ 'activation',
1403
+ 'naturally',
1404
+ 'subscribers',
1405
+ 'mitsubishi',
1406
+ 'underwear',
1407
+ 'potentially',
1408
+ 'constraints',
1409
+ 'inclusive',
1410
+ 'dimensional',
1411
+ 'considerable',
1412
+ 'selecting',
1413
+ 'processors',
1414
+ 'pantyhose',
1415
+ 'difficulties',
1416
+ 'complexity',
1417
+ 'constantly',
1418
+ 'barcelona',
1419
+ 'presidential',
1420
+ 'documentary',
1421
+ 'territories',
1422
+ 'palestinian',
1423
+ 'legislature',
1424
+ 'hospitality',
1425
+ 'procurement',
1426
+ 'theoretical',
1427
+ 'exercises',
1428
+ 'surveillance',
1429
+ 'protocols',
1430
+ 'highlight',
1431
+ 'substitute',
1432
+ 'inclusion',
1433
+ 'hopefully',
1434
+ 'brilliant',
1435
+ 'evaluated',
1436
+ 'assignments',
1437
+ 'termination',
1438
+ 'households',
1439
+ 'authentic',
1440
+ 'montgomery',
1441
+ 'architectural',
1442
+ 'louisville',
1443
+ 'macintosh',
1444
+ 'movements',
1445
+ 'amenities',
1446
+ 'virtually',
1447
+ 'authorization',
1448
+ 'projector',
1449
+ 'comparative',
1450
+ 'psychological',
1451
+ 'surprised',
1452
+ 'genealogy',
1453
+ 'expenditure',
1454
+ 'liverpool',
1455
+ 'connectivity',
1456
+ 'algorithms',
1457
+ 'similarly',
1458
+ 'collaborative',
1459
+ 'excluding',
1460
+ 'commander',
1461
+ 'suggestion',
1462
+ 'spotlight',
1463
+ 'investigate',
1464
+ 'connecting',
1465
+ 'logistics',
1466
+ 'proportion',
1467
+ 'significance',
1468
+ 'symposium',
1469
+ 'essentials',
1470
+ 'protecting',
1471
+ 'transmitted',
1472
+ 'screenshots',
1473
+ 'intensive',
1474
+ 'switching',
1475
+ 'correspondence',
1476
+ 'supervision',
1477
+ 'expenditures',
1478
+ 'separation',
1479
+ 'testimony',
1480
+ 'celebrities',
1481
+ 'mandatory',
1482
+ 'boundaries',
1483
+ 'syndication',
1484
+ 'celebration',
1485
+ 'filtering',
1486
+ 'luxembourg',
1487
+ 'offensive',
1488
+ 'deployment',
1489
+ 'colleagues',
1490
+ 'separated',
1491
+ 'directive',
1492
+ 'governing',
1493
+ 'retailers',
1494
+ 'occasionally',
1495
+ 'attending',
1496
+ 'recruiting',
1497
+ 'instructional',
1498
+ 'traveling',
1499
+ 'permissions',
1500
+ 'biotechnology',
1501
+ 'prescribed',
1502
+ 'catherine',
1503
+ 'reproduced',
1504
+ 'calculation',
1505
+ 'consolidated',
1506
+ 'occasions',
1507
+ 'equations',
1508
+ 'exceptional',
1509
+ 'respondents',
1510
+ 'considerations',
1511
+ 'queensland',
1512
+ 'musicians',
1513
+ 'composite',
1514
+ 'unavailable',
1515
+ 'essentially',
1516
+ 'designing',
1517
+ 'assessments',
1518
+ 'brunswick',
1519
+ 'sensitivity',
1520
+ 'preservation',
1521
+ 'streaming',
1522
+ 'intensity',
1523
+ 'technological',
1524
+ 'syndicate',
1525
+ 'antivirus',
1526
+ 'addressing',
1527
+ 'discounted',
1528
+ 'bangladesh',
1529
+ 'constitute',
1530
+ 'concluded',
1531
+ 'desperate',
1532
+ 'demonstration',
1533
+ 'governmental',
1534
+ 'manufactured',
1535
+ 'graduation',
1536
+ 'variations',
1537
+ 'addiction',
1538
+ 'springfield',
1539
+ 'synthesis',
1540
+ 'undefined',
1541
+ 'unemployment',
1542
+ 'enhancement',
1543
+ 'newcastle',
1544
+ 'performances',
1545
+ 'societies',
1546
+ 'brazilian',
1547
+ 'identical',
1548
+ 'petroleum',
1549
+ 'norwegian',
1550
+ 'retention',
1551
+ 'exchanges',
1552
+ 'soundtrack',
1553
+ 'wondering',
1554
+ 'profession',
1555
+ 'separately',
1556
+ 'physiology',
1557
+ 'collecting',
1558
+ 'participant',
1559
+ 'scholarships',
1560
+ 'recreational',
1561
+ 'dominican',
1562
+ 'friendship',
1563
+ 'expanding',
1564
+ 'provincial',
1565
+ 'investigations',
1566
+ 'medications',
1567
+ 'rochester',
1568
+ 'advertiser',
1569
+ 'encryption',
1570
+ 'downloadable',
1571
+ 'sophisticated',
1572
+ 'possession',
1573
+ 'laboratories',
1574
+ 'vegetables',
1575
+ 'thumbnails',
1576
+ 'stockings',
1577
+ 'respondent',
1578
+ 'destroyed',
1579
+ 'manufacture',
1580
+ 'wordpress',
1581
+ 'vulnerability',
1582
+ 'accountability',
1583
+ 'celebrate',
1584
+ 'accredited',
1585
+ 'appliance',
1586
+ 'compressed',
1587
+ 'scheduling',
1588
+ 'perspectives',
1589
+ 'mortality',
1590
+ 'christians',
1591
+ 'therapeutic',
1592
+ 'impressive',
1593
+ 'accordingly',
1594
+ 'architect',
1595
+ 'challenging',
1596
+ 'microwave',
1597
+ 'accidents',
1598
+ 'relocation',
1599
+ 'contributors',
1600
+ 'violations',
1601
+ 'temperatures',
1602
+ 'competitions',
1603
+ 'discretion',
1604
+ 'cosmetics',
1605
+ 'repository',
1606
+ 'concentrations',
1607
+ 'christianity',
1608
+ 'negotiations',
1609
+ 'realistic',
1610
+ 'generating',
1611
+ 'christina',
1612
+ 'congressional',
1613
+ 'photographic',
1614
+ 'modifications',
1615
+ 'millennium',
1616
+ 'achieving',
1617
+ 'fisheries',
1618
+ 'exceptions',
1619
+ 'reactions',
1620
+ 'macromedia',
1621
+ 'companion',
1622
+ 'divisions',
1623
+ 'additionally',
1624
+ 'fellowship',
1625
+ 'victorian',
1626
+ 'copyrights',
1627
+ 'lithuania',
1628
+ 'mastercard',
1629
+ 'chronicles',
1630
+ 'obtaining',
1631
+ 'distribute',
1632
+ 'decorative',
1633
+ 'enlargement',
1634
+ 'campaigns',
1635
+ 'conjunction',
1636
+ 'instances',
1637
+ 'indigenous',
1638
+ 'validation',
1639
+ 'corruption',
1640
+ 'incentives',
1641
+ 'cholesterol',
1642
+ 'differential',
1643
+ 'scientist',
1644
+ 'starsmerchant',
1645
+ 'arthritis',
1646
+ 'nevertheless',
1647
+ 'practitioners',
1648
+ 'transcript',
1649
+ 'inflation',
1650
+ 'compounds',
1651
+ 'contracting',
1652
+ 'structured',
1653
+ 'reasonably',
1654
+ 'graduates',
1655
+ 'recommends',
1656
+ 'controlling',
1657
+ 'distributors',
1658
+ 'arlington',
1659
+ 'particles',
1660
+ 'extraordinary',
1661
+ 'indicating',
1662
+ 'coordinate',
1663
+ 'exclusively',
1664
+ 'limitation',
1665
+ 'widescreen',
1666
+ 'illustration',
1667
+ 'construct',
1668
+ 'inquiries',
1669
+ 'inspiration',
1670
+ 'affecting',
1671
+ 'downloading',
1672
+ 'aggregate',
1673
+ 'forecasts',
1674
+ 'complicated',
1675
+ 'shopzilla',
1676
+ 'decorating',
1677
+ 'expressions',
1678
+ 'shakespeare',
1679
+ 'connectors',
1680
+ 'conflicts',
1681
+ 'travelers',
1682
+ 'offerings',
1683
+ 'incorrect',
1684
+ 'furnishings',
1685
+ 'guatemala',
1686
+ 'perception',
1687
+ 'renaissance',
1688
+ 'pathology',
1689
+ 'ordinance',
1690
+ 'photographers',
1691
+ 'infections',
1692
+ 'configured',
1693
+ 'festivals',
1694
+ 'possibilities',
1695
+ 'contributing',
1696
+ 'analytical',
1697
+ 'circulation',
1698
+ 'assumption',
1699
+ 'jerusalem',
1700
+ 'transexuales',
1701
+ 'invention',
1702
+ 'technician',
1703
+ 'executives',
1704
+ 'enquiries',
1705
+ 'cognitive',
1706
+ 'exploring',
1707
+ 'registrar',
1708
+ 'supporters',
1709
+ 'withdrawal',
1710
+ 'predicted',
1711
+ 'saskatchewan',
1712
+ 'cancellation',
1713
+ 'ministers',
1714
+ 'veterinary',
1715
+ 'prostores',
1716
+ 'relevance',
1717
+ 'incentive',
1718
+ 'butterfly',
1719
+ 'mechanics',
1720
+ 'numerical',
1721
+ 'reflection',
1722
+ 'accompanied',
1723
+ 'invitation',
1724
+ 'princeton',
1725
+ 'spirituality',
1726
+ 'meanwhile',
1727
+ 'proprietary',
1728
+ 'childrens',
1729
+ 'thumbzilla',
1730
+ 'porcelain',
1731
+ 'pichunter',
1732
+ 'translated',
1733
+ 'columnists',
1734
+ 'consensus',
1735
+ 'delivering',
1736
+ 'journalism',
1737
+ 'intention',
1738
+ 'undertaken',
1739
+ 'statewide',
1740
+ 'semiconductor',
1741
+ 'illustrations',
1742
+ 'happiness',
1743
+ 'substantially',
1744
+ 'identifier',
1745
+ 'calculations',
1746
+ 'conducting',
1747
+ 'accomplished',
1748
+ 'calculators',
1749
+ 'impression',
1750
+ 'correlation',
1751
+ 'fragrance',
1752
+ 'neighbors',
1753
+ 'transparent',
1754
+ 'charleston',
1755
+ 'champions',
1756
+ 'selections',
1757
+ 'projectors',
1758
+ 'inappropriate',
1759
+ 'comparing',
1760
+ 'vocational',
1761
+ 'pharmacies',
1762
+ 'introducing',
1763
+ 'appreciated',
1764
+ 'albuquerque',
1765
+ 'distinguished',
1766
+ 'projected',
1767
+ 'assumptions',
1768
+ 'shareholders',
1769
+ 'developmental',
1770
+ 'regulated',
1771
+ 'anticipated',
1772
+ 'completing',
1773
+ 'comparable',
1774
+ 'confusion',
1775
+ 'copyrighted',
1776
+ 'warranties',
1777
+ 'documented',
1778
+ 'paperbacks',
1779
+ 'keyboards',
1780
+ 'vulnerable',
1781
+ 'reflected',
1782
+ 'respiratory',
1783
+ 'notifications',
1784
+ 'transexual',
1785
+ 'mainstream',
1786
+ 'evaluating',
1787
+ 'subcommittee',
1788
+ 'maternity',
1789
+ 'journalists',
1790
+ 'foundations',
1791
+ 'volleyball',
1792
+ 'liabilities',
1793
+ 'decreased',
1794
+ 'tolerance',
1795
+ 'creativity',
1796
+ 'describing',
1797
+ 'lightning',
1798
+ 'quotations',
1799
+ 'inspector',
1800
+ 'bookmarks',
1801
+ 'behavioral',
1802
+ 'riverside',
1803
+ 'bathrooms',
1804
+ 'abilities',
1805
+ 'initiated',
1806
+ 'nonprofit',
1807
+ 'lancaster',
1808
+ 'suspended',
1809
+ 'containers',
1810
+ 'attitudes',
1811
+ 'simultaneously',
1812
+ 'integrate',
1813
+ 'sociology',
1814
+ 'screenshot',
1815
+ 'exhibitions',
1816
+ 'confident',
1817
+ 'retrieved',
1818
+ 'officially',
1819
+ 'consortium',
1820
+ 'recipients',
1821
+ 'delicious',
1822
+ 'traditions',
1823
+ 'periodically',
1824
+ 'hungarian',
1825
+ 'referring',
1826
+ 'transform',
1827
+ 'educators',
1828
+ 'vegetable',
1829
+ 'humanities',
1830
+ 'independently',
1831
+ 'alignment',
1832
+ 'henderson',
1833
+ 'britannica',
1834
+ 'competitors',
1835
+ 'visibility',
1836
+ 'consciousness',
1837
+ 'encounter',
1838
+ 'resolutions',
1839
+ 'accessing',
1840
+ 'attempted',
1841
+ 'witnesses',
1842
+ 'administered',
1843
+ 'strengthen',
1844
+ 'frederick',
1845
+ 'aggressive',
1846
+ 'advertisements',
1847
+ 'sublimedirectory',
1848
+ 'disturbed',
1849
+ 'determines',
1850
+ 'sculpture',
1851
+ 'motivation',
1852
+ 'pharmacology',
1853
+ 'passengers',
1854
+ 'quantities',
1855
+ 'petersburg',
1856
+ 'consistently',
1857
+ 'powerpoint',
1858
+ 'obituaries',
1859
+ 'punishment',
1860
+ 'appreciation',
1861
+ 'subsequently',
1862
+ 'providence',
1863
+ 'restriction',
1864
+ 'incorporate',
1865
+ 'backgrounds',
1866
+ 'treasurer',
1867
+ 'lightweight',
1868
+ 'transcription',
1869
+ 'complications',
1870
+ 'scripting',
1871
+ 'remembered',
1872
+ 'synthetic',
1873
+ 'testament',
1874
+ 'specifics',
1875
+ 'partially',
1876
+ 'wilderness',
1877
+ 'generations',
1878
+ 'tournaments',
1879
+ 'sponsorship',
1880
+ 'headphones',
1881
+ 'proceeding',
1882
+ 'volkswagen',
1883
+ 'uncertainty',
1884
+ 'breakdown',
1885
+ 'reconstruction',
1886
+ 'subsidiary',
1887
+ 'strengths',
1888
+ 'encouraging',
1889
+ 'furnished',
1890
+ 'terrorists',
1891
+ 'comparisons',
1892
+ 'beneficial',
1893
+ 'distributions',
1894
+ 'viewpicture',
1895
+ 'threatened',
1896
+ 'republicans',
1897
+ 'discusses',
1898
+ 'responded',
1899
+ 'abstracts',
1900
+ 'prediction',
1901
+ 'pharmaceuticals',
1902
+ 'thesaurus',
1903
+ 'individually',
1904
+ 'battlefield',
1905
+ 'literally',
1906
+ 'ecological',
1907
+ 'appraisal',
1908
+ 'consisting',
1909
+ 'submitting',
1910
+ 'citations',
1911
+ 'geographical',
1912
+ 'mozambique',
1913
+ 'disclaimers',
1914
+ 'championships',
1915
+ 'sheffield',
1916
+ 'finishing',
1917
+ 'wellington',
1918
+ 'prospects',
1919
+ 'bulgarian',
1920
+ 'aboriginal',
1921
+ 'remarkable',
1922
+ 'preventing',
1923
+ 'productive',
1924
+ 'boulevard',
1925
+ 'compliant',
1926
+ 'penalties',
1927
+ 'imagination',
1928
+ 'refurbished',
1929
+ 'activated',
1930
+ 'conferencing',
1931
+ 'armstrong',
1932
+ 'politicians',
1933
+ 'trackbacks',
1934
+ 'accommodate',
1935
+ 'christine',
1936
+ 'accepting',
1937
+ 'precipitation',
1938
+ 'isolation',
1939
+ 'sustained',
1940
+ 'approximate',
1941
+ 'programmer',
1942
+ 'greetings',
1943
+ 'inherited',
1944
+ 'incomplete',
1945
+ 'chronicle',
1946
+ 'legitimate',
1947
+ 'biographies',
1948
+ 'investigator',
1949
+ 'plaintiff',
1950
+ 'prisoners',
1951
+ 'mediterranean',
1952
+ 'nightlife',
1953
+ 'architects',
1954
+ 'entrepreneur',
1955
+ 'freelance',
1956
+ 'excessive',
1957
+ 'screensaver',
1958
+ 'valuation',
1959
+ 'unexpected',
1960
+ 'cigarette',
1961
+ 'characteristic',
1962
+ 'metallica',
1963
+ 'consequently',
1964
+ 'appointments',
1965
+ 'narrative',
1966
+ 'academics',
1967
+ 'quantitative',
1968
+ 'screensavers',
1969
+ 'subdivision',
1970
+ 'distinction',
1971
+ 'livestock',
1972
+ 'exemption',
1973
+ 'sustainability',
1974
+ 'formatting',
1975
+ 'nutritional',
1976
+ 'nicaragua',
1977
+ 'affiliation',
1978
+ 'relatives',
1979
+ 'satisfactory',
1980
+ 'revolutionary',
1981
+ 'bracelets',
1982
+ 'telephony',
1983
+ 'breathing',
1984
+ 'thickness',
1985
+ 'adjustments',
1986
+ 'graphical',
1987
+ 'discussing',
1988
+ 'aerospace',
1989
+ 'meaningful',
1990
+ 'maintains',
1991
+ 'shortcuts',
1992
+ 'voyeurweb',
1993
+ 'extending',
1994
+ 'specifies',
1995
+ 'accreditation',
1996
+ 'blackberry',
1997
+ 'meditation',
1998
+ 'microphone',
1999
+ 'macedonia',
2000
+ 'combining',
2001
+ 'instrumental',
2002
+ 'organizing',
2003
+ 'moderators',
2004
+ 'kazakhstan',
2005
+ 'standings',
2006
+ 'partition',
2007
+ 'invisible',
2008
+ 'translations',
2009
+ 'commodity',
2010
+ 'kilometers',
2011
+ 'thanksgiving',
2012
+ 'guarantees',
2013
+ 'indication',
2014
+ 'congratulations',
2015
+ 'cigarettes',
2016
+ 'controllers',
2017
+ 'consultancy',
2018
+ 'conventions',
2019
+ 'coordinates',
2020
+ 'responding',
2021
+ 'physically',
2022
+ 'stakeholders',
2023
+ 'hydrocodone',
2024
+ 'consecutive',
2025
+ 'attempting',
2026
+ 'representations',
2027
+ 'competing',
2028
+ 'peninsula',
2029
+ 'accurately',
2030
+ 'considers',
2031
+ 'ministries',
2032
+ 'vacancies',
2033
+ 'parliamentary',
2034
+ 'acknowledge',
2035
+ 'thoroughly',
2036
+ 'nottingham',
2037
+ 'identifies',
2038
+ 'questionnaire',
2039
+ 'qualification',
2040
+ 'modelling',
2041
+ 'miniature',
2042
+ 'interstate',
2043
+ 'consequence',
2044
+ 'systematic',
2045
+ 'perceived',
2046
+ 'madagascar',
2047
+ 'presenting',
2048
+ 'troubleshooting',
2049
+ 'uzbekistan',
2050
+ 'centuries',
2051
+ 'magnitude',
2052
+ 'richardson',
2053
+ 'fragrances',
2054
+ 'vocabulary',
2055
+ 'earthquake',
2056
+ 'fundraising',
2057
+ 'geological',
2058
+ 'assessing',
2059
+ 'introduces',
2060
+ 'webmasters',
2061
+ 'computational',
2062
+ 'acdbentity',
2063
+ 'participated',
2064
+ 'handhelds',
2065
+ 'answering',
2066
+ 'impressed',
2067
+ 'conspiracy',
2068
+ 'organizer',
2069
+ 'combinations',
2070
+ 'preceding',
2071
+ 'cumulative',
2072
+ 'amplifier',
2073
+ 'arbitrary',
2074
+ 'prominent',
2075
+ 'lexington',
2076
+ 'contacted',
2077
+ 'recorders',
2078
+ 'occasional',
2079
+ 'innovations',
2080
+ 'postcards',
2081
+ 'reviewing',
2082
+ 'explicitly',
2083
+ 'transsexual',
2084
+ 'citizenship',
2085
+ 'informative',
2086
+ 'girlfriend',
2087
+ 'bloomberg',
2088
+ 'hierarchy',
2089
+ 'influenced',
2090
+ 'abandoned',
2091
+ 'complement',
2092
+ 'mauritius',
2093
+ 'checklist',
2094
+ 'requesting',
2095
+ 'lauderdale',
2096
+ 'scenarios',
2097
+ 'extraction',
2098
+ 'elevation',
2099
+ 'utilization',
2100
+ 'beverages',
2101
+ 'calibration',
2102
+ 'efficiently',
2103
+ 'entertaining',
2104
+ 'prerequisite',
2105
+ 'hypothesis',
2106
+ 'medicines',
2107
+ 'regression',
2108
+ 'enhancements',
2109
+ 'renewable',
2110
+ 'intersection',
2111
+ 'passwords',
2112
+ 'consistency',
2113
+ 'collectors',
2114
+ 'azerbaijan',
2115
+ 'astrology',
2116
+ 'occurring',
2117
+ 'supplemental',
2118
+ 'travelling',
2119
+ 'induction',
2120
+ 'precisely',
2121
+ 'spreading',
2122
+ 'provinces',
2123
+ 'widespread',
2124
+ 'incidence',
2125
+ 'incidents',
2126
+ 'enhancing',
2127
+ 'interference',
2128
+ 'palestine',
2129
+ 'listprice',
2130
+ 'atmospheric',
2131
+ 'knowledgestorm',
2132
+ 'referenced',
2133
+ 'publicity',
2134
+ 'proposition',
2135
+ 'allowance',
2136
+ 'designation',
2137
+ 'duplicate',
2138
+ 'criterion',
2139
+ 'civilization',
2140
+ 'vietnamese',
2141
+ 'tremendous',
2142
+ 'corrected',
2143
+ 'encountered',
2144
+ 'internationally',
2145
+ 'surrounded',
2146
+ 'creatures',
2147
+ 'commented',
2148
+ 'accomplish',
2149
+ 'vegetarian',
2150
+ 'newfoundland',
2151
+ 'investigated',
2152
+ 'ambassador',
2153
+ 'stephanie',
2154
+ 'contacting',
2155
+ 'vegetation',
2156
+ 'findarticles',
2157
+ 'specially',
2158
+ 'infectious',
2159
+ 'continuity',
2160
+ 'phenomenon',
2161
+ 'conscious',
2162
+ 'referrals',
2163
+ 'differently',
2164
+ 'integrating',
2165
+ 'revisions',
2166
+ 'reasoning',
2167
+ 'charitable',
2168
+ 'annotated',
2169
+ 'convinced',
2170
+ 'burlington',
2171
+ 'replacing',
2172
+ 'researcher',
2173
+ 'watershed',
2174
+ 'occupations',
2175
+ 'acknowledged',
2176
+ 'equilibrium',
2177
+ 'characterized',
2178
+ 'privilege',
2179
+ 'qualifying',
2180
+ 'estimation',
2181
+ 'pediatric',
2182
+ 'techrepublic',
2183
+ 'institutes',
2184
+ 'brochures',
2185
+ 'traveller',
2186
+ 'appropriations',
2187
+ 'suspected',
2188
+ 'benchmark',
2189
+ 'beginners',
2190
+ 'instructors',
2191
+ 'highlighted',
2192
+ 'stationery',
2193
+ 'unauthorized',
2194
+ 'competent',
2195
+ 'contributor',
2196
+ 'demonstrates',
2197
+ 'gradually',
2198
+ 'desirable',
2199
+ 'journalist',
2200
+ 'afterwards',
2201
+ 'religions',
2202
+ 'explosion',
2203
+ 'signatures',
2204
+ 'disciplines',
2205
+ 'daughters',
2206
+ 'conversations',
2207
+ 'simplified',
2208
+ 'motherboard',
2209
+ 'bibliographic',
2210
+ 'champagne',
2211
+ 'deviation',
2212
+ 'superintendent',
2213
+ 'housewives',
2214
+ 'influences',
2215
+ 'inspections',
2216
+ 'irrigation',
2217
+ 'hydraulic',
2218
+ 'robertson',
2219
+ 'penetration',
2220
+ 'conviction',
2221
+ 'omissions',
2222
+ 'retrieval',
2223
+ 'qualities',
2224
+ 'prototype',
2225
+ 'importantly',
2226
+ 'apparatus',
2227
+ 'explaining',
2228
+ 'nomination',
2229
+ 'empirical',
2230
+ 'dependence',
2231
+ 'sexuality',
2232
+ 'polyester',
2233
+ 'commitments',
2234
+ 'suggesting',
2235
+ 'remainder',
2236
+ 'privileges',
2237
+ 'televisions',
2238
+ 'specializing',
2239
+ 'commodities',
2240
+ 'motorcycles',
2241
+ 'concentrate',
2242
+ 'reproductive',
2243
+ 'molecules',
2244
+ 'refrigerator',
2245
+ 'intervals',
2246
+ 'sentences',
2247
+ 'exclusion',
2248
+ 'workstation',
2249
+ 'holocaust',
2250
+ 'receivers',
2251
+ 'disposition',
2252
+ 'navigator',
2253
+ 'investigators',
2254
+ 'marijuana',
2255
+ 'cathedral',
2256
+ 'fairfield',
2257
+ 'fascinating',
2258
+ 'landscapes',
2259
+ 'lafayette',
2260
+ 'computation',
2261
+ 'cardiovascular',
2262
+ 'salvation',
2263
+ 'predictions',
2264
+ 'accompanying',
2265
+ 'selective',
2266
+ 'arbitration',
2267
+ 'configuring',
2268
+ 'editorials',
2269
+ 'sacrifice',
2270
+ 'removable',
2271
+ 'convergence',
2272
+ 'gibraltar',
2273
+ 'anthropology',
2274
+ 'malpractice',
2275
+ 'reporters',
2276
+ 'necessity',
2277
+ 'rendering',
2278
+ 'hepatitis',
2279
+ 'nationally',
2280
+ 'waterproof',
2281
+ 'specialties',
2282
+ 'humanitarian',
2283
+ 'invitations',
2284
+ 'functioning',
2285
+ 'economies',
2286
+ 'alexandria',
2287
+ 'bacterial',
2288
+ 'undertake',
2289
+ 'continuously',
2290
+ 'achievements',
2291
+ 'convertible',
2292
+ 'secretariat',
2293
+ 'paragraphs',
2294
+ 'adolescent',
2295
+ 'nominations',
2296
+ 'cancelled',
2297
+ 'introductory',
2298
+ 'reservoir',
2299
+ 'occurrence',
2300
+ 'worcester',
2301
+ 'demographic',
2302
+ 'disciplinary',
2303
+ 'respected',
2304
+ 'portraits',
2305
+ 'interpreted',
2306
+ 'evaluations',
2307
+ 'elimination',
2308
+ 'hypothetical',
2309
+ 'immigrants',
2310
+ 'complimentary',
2311
+ 'helicopter',
2312
+ 'performer',
2313
+ 'commissions',
2314
+ 'powerseller',
2315
+ 'graduated',
2316
+ 'surprising',
2317
+ 'unnecessary',
2318
+ 'dramatically',
2319
+ 'yugoslavia',
2320
+ 'characterization',
2321
+ 'likelihood',
2322
+ 'fundamentals',
2323
+ 'contamination',
2324
+ 'endangered',
2325
+ 'compromise',
2326
+ 'expiration',
2327
+ 'namespace',
2328
+ 'peripheral',
2329
+ 'negotiation',
2330
+ 'opponents',
2331
+ 'nominated',
2332
+ 'confidentiality',
2333
+ 'electoral',
2334
+ 'changelog',
2335
+ 'alternatively',
2336
+ 'greensboro',
2337
+ 'controversial',
2338
+ 'recovered',
2339
+ 'upgrading',
2340
+ 'frontpage',
2341
+ 'demanding',
2342
+ 'defensive',
2343
+ 'forbidden',
2344
+ 'programmers',
2345
+ 'monitored',
2346
+ 'installations',
2347
+ 'deutschland',
2348
+ 'practitioner',
2349
+ 'motivated',
2350
+ 'smithsonian',
2351
+ 'examining',
2352
+ 'revelation',
2353
+ 'delegation',
2354
+ 'dictionaries',
2355
+ 'greenhouse',
2356
+ 'transparency',
2357
+ 'currencies',
2358
+ 'survivors',
2359
+ 'positioning',
2360
+ 'descending',
2361
+ 'temporarily',
2362
+ 'frequencies',
2363
+ 'reflections',
2364
+ 'municipality',
2365
+ 'detective',
2366
+ 'experiencing',
2367
+ 'fireplace',
2368
+ 'endorsement',
2369
+ 'psychiatry',
2370
+ 'persistent',
2371
+ 'summaries',
2372
+ 'looksmart',
2373
+ 'magnificent',
2374
+ 'colleague',
2375
+ 'adaptation',
2376
+ 'paintball',
2377
+ 'enclosure',
2378
+ 'supervisors',
2379
+ 'westminster',
2380
+ 'distances',
2381
+ 'absorption',
2382
+ 'treasures',
2383
+ 'transcripts',
2384
+ 'disappointed',
2385
+ 'continually',
2386
+ 'communist',
2387
+ 'collectible',
2388
+ 'entrepreneurs',
2389
+ 'creations',
2390
+ 'acquisitions',
2391
+ 'biodiversity',
2392
+ 'excitement',
2393
+ 'presently',
2394
+ 'mysterious',
2395
+ 'librarian',
2396
+ 'subsidiaries',
2397
+ 'stockholm',
2398
+ 'indonesian',
2399
+ 'therapist',
2400
+ 'promising',
2401
+ 'relaxation',
2402
+ 'thereafter',
2403
+ 'commissioners',
2404
+ 'forwarding',
2405
+ 'nightmare',
2406
+ 'reductions',
2407
+ 'southampton',
2408
+ 'organisms',
2409
+ 'telescope',
2410
+ 'portsmouth',
2411
+ 'advancement',
2412
+ 'harassment',
2413
+ 'generators',
2414
+ 'generates',
2415
+ 'replication',
2416
+ 'inexpensive',
2417
+ 'receptors',
2418
+ 'interventions',
2419
+ 'huntington',
2420
+ 'internship',
2421
+ 'aluminium',
2422
+ 'snowboard',
2423
+ 'beastality',
2424
+ 'evanescence',
2425
+ 'coordinated',
2426
+ 'shipments',
2427
+ 'antarctica',
2428
+ 'chancellor',
2429
+ 'controversy',
2430
+ 'legendary',
2431
+ 'beautifully',
2432
+ 'antibodies',
2433
+ 'examinations',
2434
+ 'immunology',
2435
+ 'departmental',
2436
+ 'terminology',
2437
+ 'gentleman',
2438
+ 'reproduce',
2439
+ 'convicted',
2440
+ 'roommates',
2441
+ 'threatening',
2442
+ 'spokesman',
2443
+ 'activists',
2444
+ 'frankfurt',
2445
+ 'encourages',
2446
+ 'assembled',
2447
+ 'restructuring',
2448
+ 'terminals',
2449
+ 'simulations',
2450
+ 'sufficiently',
2451
+ 'conditional',
2452
+ 'crossword',
2453
+ 'conceptual',
2454
+ 'liechtenstein',
2455
+ 'translator',
2456
+ 'automobiles',
2457
+ 'continent',
2458
+ 'longitude',
2459
+ 'challenged',
2460
+ 'telecharger',
2461
+ 'insertion',
2462
+ 'instrumentation',
2463
+ 'constraint',
2464
+ 'groundwater',
2465
+ 'strengthening',
2466
+ 'insulation',
2467
+ 'infringement',
2468
+ 'subjective',
2469
+ 'swaziland',
2470
+ 'varieties',
2471
+ 'mediawiki',
2472
+ 'configurations',
2473
+ ];