Repository: BoostIO/BoostNote-Legacy Branch: master Commit: 789926bc7606 Files: 367 Total size: 4.3 MB Directory structure: gitextract_1f_tfmxn/ ├── .babelrc ├── .boostnoterc.sample ├── .editorconfig ├── .eslintignore ├── .eslintrc ├── .github/ │ └── FUNDING.yml ├── .gitignore ├── .prettierrc ├── .snapcraft/ │ └── travis_snapcraft.cfg ├── .travis.yml ├── FAQ.md ├── ISSUE_TEMPLATE.md ├── LICENSE ├── PULL_REQUEST_TEMPLATE.md ├── __mocks__/ │ └── electron.js ├── appdmg.json ├── browser/ │ ├── components/ │ │ ├── CodeEditor.js │ │ ├── CodeEditor.styl │ │ ├── ColorPicker.js │ │ ├── ColorPicker.styl │ │ ├── MarkdownEditor.js │ │ ├── MarkdownEditor.styl │ │ ├── MarkdownPreview.js │ │ ├── MarkdownSplitEditor.js │ │ ├── MarkdownSplitEditor.styl │ │ ├── ModalEscButton.js │ │ ├── ModalEscButton.styl │ │ ├── NavToggleButton.js │ │ ├── NavToggleButton.styl │ │ ├── NoteItem.js │ │ ├── NoteItem.styl │ │ ├── NoteItemSimple.js │ │ ├── NoteItemSimple.styl │ │ ├── RealtimeNotification.js │ │ ├── RealtimeNotification.styl │ │ ├── SideNavFilter.js │ │ ├── SideNavFilter.styl │ │ ├── SnippetTab.js │ │ ├── SnippetTab.styl │ │ ├── StorageItem.js │ │ ├── StorageItem.styl │ │ ├── StorageList.js │ │ ├── StorageList.styl │ │ ├── TagListItem.js │ │ ├── TagListItem.styl │ │ ├── TodoListPercentage.js │ │ ├── TodoListPercentage.styl │ │ ├── TodoProcess.js │ │ ├── TodoProcess.styl │ │ ├── markdown.styl │ │ └── render/ │ │ └── MermaidRender.js │ ├── lib/ │ │ ├── CMLanguageList.js │ │ ├── CSSModules.js │ │ ├── Languages.js │ │ ├── Mutable.js │ │ ├── RcParser.js │ │ ├── SnippetManager.js │ │ ├── TextEditorInterface.js │ │ ├── confirmDeleteNote.js │ │ ├── consts.js │ │ ├── context.js │ │ ├── contextMenuBuilder.js │ │ ├── convertModeName.js │ │ ├── customMeta.js │ │ ├── date-formatter.js │ │ ├── findNoteTitle.js │ │ ├── findStorage.js │ │ ├── getTodoStatus.js │ │ ├── htmlTextHelper.js │ │ ├── i18n.js │ │ ├── keygen.js │ │ ├── markdown-it-deflist.js │ │ ├── markdown-it-fence.js │ │ ├── markdown-it-frontmatter.js │ │ ├── markdown-it-sanitize-html.js │ │ ├── markdown-toc-generator.js │ │ ├── markdown.js │ │ ├── markdown2.js │ │ ├── markdownTextHelper.js │ │ ├── newNote.js │ │ ├── normalizeEditorFontFamily.js │ │ ├── search.js │ │ ├── slugify.js │ │ ├── spellcheck.js │ │ ├── turndown.js │ │ ├── ui-themes.js │ │ ├── utils.js │ │ └── wakatime-plugin.js │ ├── main/ │ │ ├── Detail/ │ │ │ ├── Detail.styl │ │ │ ├── DetailVars.styl │ │ │ ├── FolderSelect.js │ │ │ ├── FolderSelect.styl │ │ │ ├── FromUrlButton.js │ │ │ ├── FromUrlButton.styl │ │ │ ├── FullscreenButton.js │ │ │ ├── FullscreenButton.styl │ │ │ ├── InfoButton.js │ │ │ ├── InfoButton.styl │ │ │ ├── InfoPanel.js │ │ │ ├── InfoPanel.styl │ │ │ ├── InfoPanelTrashed.js │ │ │ ├── MarkdownNoteDetail.js │ │ │ ├── MarkdownNoteDetail.styl │ │ │ ├── NoteDetailInfo.styl │ │ │ ├── PermanentDeleteButton.js │ │ │ ├── RestoreButton.js │ │ │ ├── RestoreButton.styl │ │ │ ├── SnippetNoteDetail.js │ │ │ ├── SnippetNoteDetail.styl │ │ │ ├── StarButton.js │ │ │ ├── StarButton.styl │ │ │ ├── TagSelect.js │ │ │ ├── TagSelect.styl │ │ │ ├── ToggleDirectionButton.js │ │ │ ├── ToggleDirectionButton.styl │ │ │ ├── ToggleModeButton.js │ │ │ ├── ToggleModeButton.styl │ │ │ ├── TrashButton.js │ │ │ ├── TrashButton.styl │ │ │ └── index.js │ │ ├── DevTools/ │ │ │ ├── index.dev.js │ │ │ ├── index.js │ │ │ └── index.prod.js │ │ ├── Main.js │ │ ├── Main.styl │ │ ├── NewNoteButton/ │ │ │ ├── NewNoteButton.styl │ │ │ └── index.js │ │ ├── NoteList/ │ │ │ ├── NoteList.styl │ │ │ └── index.js │ │ ├── SideNav/ │ │ │ ├── ListButton.js │ │ │ ├── PreferenceButton.js │ │ │ ├── PreferenceButton.styl │ │ │ ├── SearchButton.js │ │ │ ├── SearchButton.styl │ │ │ ├── SideNav.styl │ │ │ ├── StorageItem.js │ │ │ ├── StorageItem.styl │ │ │ ├── SwitchButton.styl │ │ │ ├── TagButton.js │ │ │ └── index.js │ │ ├── StatusBar/ │ │ │ ├── StatusBar.styl │ │ │ └── index.js │ │ ├── TopBar/ │ │ │ ├── TopBar.styl │ │ │ └── index.js │ │ ├── global.styl │ │ ├── index.js │ │ ├── lib/ │ │ │ ├── AwsMobileAnalyticsConfig.js │ │ │ ├── Commander.js │ │ │ ├── ConfigManager.js │ │ │ ├── ThemeManager.js │ │ │ ├── ZoomManager.js │ │ │ ├── dataApi/ │ │ │ │ ├── addStorage.js │ │ │ │ ├── attachmentManagement.js │ │ │ │ ├── copyFile.js │ │ │ │ ├── createFolder.js │ │ │ │ ├── createNote.js │ │ │ │ ├── createNoteFromUrl.js │ │ │ │ ├── createSnippet.js │ │ │ │ ├── deleteFolder.js │ │ │ │ ├── deleteNote.js │ │ │ │ ├── deleteSnippet.js │ │ │ │ ├── exportFolder.js │ │ │ │ ├── exportNote.js │ │ │ │ ├── exportNoteAs.js │ │ │ │ ├── exportStorage.js │ │ │ │ ├── exportTag.js │ │ │ │ ├── fetchSnippet.js │ │ │ │ ├── formatHTML.js │ │ │ │ ├── formatMarkdown.js │ │ │ │ ├── formatPDF.js │ │ │ │ ├── getContentFormatter.js │ │ │ │ ├── getFilename.js │ │ │ │ ├── index.js │ │ │ │ ├── init.js │ │ │ │ ├── migrateFromV5Storage.js │ │ │ │ ├── migrateFromV6Storage.js │ │ │ │ ├── moveNote.js │ │ │ │ ├── removeStorage.js │ │ │ │ ├── renameStorage.js │ │ │ │ ├── reorderFolder.js │ │ │ │ ├── resolveStorageData.js │ │ │ │ ├── resolveStorageNotes.js │ │ │ │ ├── toggleStorage.js │ │ │ │ ├── updateFolder.js │ │ │ │ ├── updateNote.js │ │ │ │ └── updateSnippet.js │ │ │ ├── eventEmitter.js │ │ │ ├── ipcClient.js │ │ │ ├── modal.js │ │ │ ├── notify.js │ │ │ ├── shortcut.js │ │ │ └── shortcutManager.js │ │ ├── modals/ │ │ │ ├── CreateFolderModal.js │ │ │ ├── CreateFolderModal.styl │ │ │ ├── CreateMarkdownFromURLModal.js │ │ │ ├── CreateMarkdownFromURLModal.styl │ │ │ ├── NewNoteModal.js │ │ │ ├── NewNoteModal.styl │ │ │ ├── PreferencesModal/ │ │ │ │ ├── Blog.js │ │ │ │ ├── ConfigTab.styl │ │ │ │ ├── Crowdfunding.js │ │ │ │ ├── Crowdfunding.styl │ │ │ │ ├── ExportTab.js │ │ │ │ ├── FolderItem.js │ │ │ │ ├── FolderItem.styl │ │ │ │ ├── FolderList.js │ │ │ │ ├── FolderList.styl │ │ │ │ ├── HotkeyTab.js │ │ │ │ ├── InfoTab.js │ │ │ │ ├── InfoTab.styl │ │ │ │ ├── PluginsTab.js │ │ │ │ ├── PreferencesModal.styl │ │ │ │ ├── SnippetEditor.js │ │ │ │ ├── SnippetList.js │ │ │ │ ├── SnippetTab.js │ │ │ │ ├── SnippetTab.styl │ │ │ │ ├── StorageItem.js │ │ │ │ ├── StorageItem.styl │ │ │ │ ├── StoragesTab.js │ │ │ │ ├── StoragesTab.styl │ │ │ │ ├── Tab.styl │ │ │ │ ├── UiTab.js │ │ │ │ └── index.js │ │ │ ├── RenameFolderModal.js │ │ │ ├── RenameModal.styl │ │ │ └── RenameTagModal.js │ │ └── store.js │ └── styles/ │ ├── Detail/ │ │ └── TagSelect.styl │ ├── index.styl │ ├── mixins/ │ │ ├── alert.styl │ │ ├── btn.styl │ │ ├── circle.styl │ │ ├── fullsize.styl │ │ ├── input.styl │ │ ├── marked.styl │ │ ├── tooltip.styl │ │ └── util.styl │ ├── shared/ │ │ └── btn.styl │ ├── theme/ │ │ └── dark.styl │ └── vars.styl ├── contributing.md ├── dev-scripts/ │ └── dev.js ├── dictionaries/ │ ├── de_DE/ │ │ ├── LICENSE │ │ ├── de_DE.aff │ │ └── de_DE.dic │ ├── en_GB/ │ │ ├── LICENSE │ │ ├── en_GB.aff │ │ └── en_GB.dic │ └── fr_FR/ │ ├── fr_FR.aff │ └── fr_FR.dic ├── docs/ │ ├── build.md │ ├── code_style.md │ ├── de/ │ │ ├── build.md │ │ └── debug.md │ ├── debug.md │ ├── fr/ │ │ ├── build.md │ │ └── debug.md │ ├── jp/ │ │ ├── build.md │ │ └── debug.md │ ├── ko/ │ │ ├── build.md │ │ └── debug.md │ ├── pt_BR/ │ │ ├── build.md │ │ └── debug.md │ ├── ru/ │ │ ├── build.md │ │ └── debug.md │ ├── zh_CN/ │ │ ├── build.md │ │ └── debug.md │ └── zh_TW/ │ └── build.md ├── extra_scripts/ │ ├── boost/ │ │ └── boostNewLineIndentContinueMarkdownList.js │ └── codemirror/ │ ├── addon/ │ │ ├── edit/ │ │ │ └── closebrackets.js │ │ └── hyperlink/ │ │ └── hyperlink.js │ ├── mode/ │ │ ├── bfm/ │ │ │ ├── bfm.css │ │ │ └── bfm.js │ │ └── gfm/ │ │ └── gfm.js │ └── theme/ │ └── nord.css ├── gruntfile.js ├── index.js ├── lib/ │ ├── ipcServer.js │ ├── main-app.js │ ├── main-menu.js │ ├── main-window.js │ ├── main.development.html │ ├── main.production.html │ └── touchbar-menu.js ├── locales/ │ ├── cs.json │ ├── da.json │ ├── de.json │ ├── en.json │ ├── es-ES.json │ ├── fa.json │ ├── fr.json │ ├── hu.json │ ├── it.json │ ├── ja.json │ ├── ko.json │ ├── no.json │ ├── pl.json │ ├── pt-BR.json │ ├── pt-PT.json │ ├── ru.json │ ├── sq.json │ ├── th.json │ ├── tr.json │ ├── zh-CN.json │ └── zh-TW.json ├── package.json ├── prettier.config ├── readme.md ├── resources/ │ ├── app.icns │ └── dmg.icns ├── snap/ │ ├── gui/ │ │ └── boostnote.desktop │ └── snapcraft.yaml ├── tests/ │ ├── .gitignore │ ├── components/ │ │ ├── TagListItem.snapshot.test.js │ │ └── __snapshots__/ │ │ └── TagListItem.snapshot.test.js.snap │ ├── dataApi/ │ │ ├── addStorage.js │ │ ├── attachmentManagement.test.js │ │ ├── copyFile.test.js │ │ ├── createFolder.test.js │ │ ├── createNote.test.js │ │ ├── createNoteFromUrl.test.js │ │ ├── createSnippet.test.js │ │ ├── deleteFolder.test.js │ │ ├── deleteNote-test.js │ │ ├── deleteSnippet-test.js │ │ ├── exportFolder-test.js │ │ ├── exportStorage-test.js │ │ ├── init.js │ │ ├── migrateFromV6Storage-test.js │ │ ├── moveNote-test.js │ │ ├── removeStorage-test.js │ │ ├── renameStorage-test.js │ │ ├── reorderFolder-test.js │ │ ├── toggleStorage-test.js │ │ ├── updateFolder-test.js │ │ ├── updateNote-test.js │ │ └── updateSnippet-test.js │ ├── date-formatter-test.js │ ├── fixtures/ │ │ ├── TestDummy.js │ │ └── markdowns.js │ ├── helpers/ │ │ ├── setup-browser-env.js │ │ └── setup-electron-mock.js │ ├── jest.js │ └── lib/ │ ├── __snapshots__/ │ │ └── markdown.test.js.snap │ ├── boostnoterc/ │ │ ├── .boostnoterc.all │ │ ├── .boostnoterc.invalid │ │ └── .boostnoterc.valid │ ├── contextMenuBuilder.test.js │ ├── escapeHtmlCharacters.test.js │ ├── find-storage.test.js │ ├── find-title.test.js │ ├── get-todo-status.test.js │ ├── html-text-helper.test.js │ ├── markdown-text-helper.test.js │ ├── markdown-toc-generator.test.js │ ├── markdown.test.js │ ├── normalize-editor-font-family.test.js │ ├── rc-parser.test.js │ ├── search.test.js │ ├── slugify.test.js │ ├── snapshots/ │ │ └── markdown-test.js.md │ ├── spellcheck.test.js │ ├── themeManager.test.js │ └── utils.test.js ├── webpack-production.config.js ├── webpack-skeleton.js └── webpack.config.js ================================================ FILE CONTENTS ================================================ ================================================ FILE: .babelrc ================================================ { "presets": ["react", "es2015"], "env": { "development": { "presets": ["react-hmre"] }, "test": { "presets": ["env" ,"react", "es2015"], "plugins": [ [ "babel-plugin-webpack-alias", { "config": "/webpack.config.js" } ] ] } } } ================================================ FILE: .boostnoterc.sample ================================================ { "amaEnabled": true, "editor": { "fontFamily": "Monaco, Consolas", "fontSize": "14", "indentSize": "2", "indentType": "space", "keyMap": "vim", "switchPreview": "BLUR", "theme": "monokai" }, "hotkey": { "toggleMain": "Cmd + Alt + L" }, "isSideNavFolded": false, "listStyle": "DEFAULT", "listWidth": 174, "navWidth": 200, "preview": { "codeBlockTheme": "dracula", "fontFamily": "Lato", "fontSize": "14", "lineNumber": true }, "sortBy": { "default": "UPDATED_AT" }, "sortTagsBy": "ALPHABETICAL", "ui": { "defaultNote": "ALWAYS_ASK", "disableDirectWrite": false, "theme": "default" }, "zoom": 1 } ================================================ FILE: .editorconfig ================================================ # EditorConfig is awesome: https://EditorConfig.org # top-most EditorConfig file root = true # Space indentation [*] indent_style = space indent_size = 2 trim_trailing_whitespace = true # The indent size used in the `package.json` file cannot be changed # https://github.com/npm/npm/pull/3180#issuecomment-16336516 [{*.yml,*.yaml,package.json}] indent_style = space indent_size = 2 ================================================ FILE: .eslintignore ================================================ node_modules/ compiled/ dist/ extra_scripts/ ================================================ FILE: .eslintrc ================================================ { "extends": ["standard", "standard-jsx", "plugin:react/recommended", "prettier"], "plugins": ["react", "prettier"], "rules": { "no-useless-escape": 0, "prefer-const": ["warn", { "destructuring": "all" }], "no-unused-vars": "warn", "no-undef": "warn", "no-lone-blocks": "warn", "react/prop-types": 0, "react/no-string-refs": 0, "react/no-find-dom-node": "warn", "react/no-render-return-value": "warn", "react/no-deprecated": "warn", "prettier/prettier": ["error"] }, "globals": { "FileReader": true, "localStorage": true, "fetch": true, "Image": true, "MutationObserver": true }, "env": { "jest": true } } ================================================ FILE: .github/FUNDING.yml ================================================ issuehunt: BoostIo/Boostnote ================================================ FILE: .gitignore ================================================ .DS_Store .env Desktop.ini Thumbs.db node_modules/* !node_modules/boost /dist /compiled /secret *.log .idea .vscode package-lock.json config.json ================================================ FILE: .prettierrc ================================================ { "singleQuote": true, "semi": false, "jsxSingleQuote": true } ================================================ FILE: .travis.yml ================================================ language: node_js node_js: - 8 script: - npm run lint && npm run test - 'if [[ ${TRAVIS_PULL_REQUEST_BRANCH:-$TRAVIS_BRANCH} = "master" ]]; then npm install -g grunt npm@6.4 && grunt pre-build; fi' after_success: - openssl aes-256-cbc -K $encrypted_440d7f9a3c38_key -iv $encrypted_440d7f9a3c38_iv -in .snapcraft/travis_snapcraft.cfg -out .snapcraft/snapcraft.cfg -d sudo: required services: - docker deploy: 'on': branch: master provider: script script: if [ ${TRAVIS_NODE_VERSION} = "stable" ];then docker run -v $(pwd):$(pwd) -t snapcore/snapcraft sh -c "apt update -qq && cd $(pwd) && snapcraft && snapcraft push *.snap --release edge"; fi skip_cleanup: true ================================================ FILE: FAQ.md ================================================ # Frequently Asked Questions
Allowing dangerous HTML tags Sometimes it is useful to allow dangerous HTML tags to add interactivity to your notebook. One of the example is to use details/summary as a way to expand/collaps your todo-list. * How to enable: * Go to **Preferences** → **Interface** → **Sanitization** → **Allow dangerous html tags** * Example note: Multiple todo-list * Create new notes * Paste the below code, and you'll see that you can expand/collaps the todo-list, and you can have multiple todo-list in your note. ```html
What I want to do - [x] Create an awesome feature X - [ ] Do my homework
```
## Other questions You can ask [here][ISSUES] [ISSUES]: https://github.com/BoostIO/Boostnote/issues ================================================ FILE: ISSUE_TEMPLATE.md ================================================ # Current behavior # Expected behavior # Steps to reproduce 1. 2. 3. # Environment - Boostnote version: - OS version and name: ================================================ FILE: LICENSE ================================================ GPL-3.0 Boostnote - an open source note-taking app made for programmers just like you. Copyright (C) 2017 - 2019 BoostIO This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program. If not, see . ================================================ FILE: PULL_REQUEST_TEMPLATE.md ================================================ ## Description ## Issue fixed ## Type of changes - :white_circle: Bug fix (Change that fixed an issue) - :white_circle: Breaking change (Change that can cause existing functionality to change) - :white_circle: Improvement (Change that improves the code. Maybe performance or development improvement) - :white_circle: Feature (Change that adds new functionality) - :white_circle: Documentation change (Change that modifies documentation. Maybe typo fixes) ## Checklist: - :white_circle: My code follows [the project code style](docs/code_style.md) - :white_circle: I have written test for my code and it has been tested - :white_circle: All existing tests have been passed - :white_circle: I have attached a screenshot/video to visualize my change if possible - :white_circle: This PR will modify the UI or affects the UX - :white_circle: This PR will add/update/delete a keybinding ================================================ FILE: __mocks__/electron.js ================================================ module.exports = { require: jest.genMockFunction(), match: jest.genMockFunction(), app: jest.genMockFunction(), remote: jest.genMockFunction(), dialog: jest.genMockFunction() } ================================================ FILE: appdmg.json ================================================ { "title": "Boostnote", "icon": "resources/dmg.icns", "background": "resources/boostnote-install.png", "icon-size": 80, "contents": [ { "x": 448, "y": 344, "type": "link", "path": "/Applications" }, { "x": 192, "y": 344, "type": "file", "path": "dist/Boostnote-darwin-x64/Boostnote.app" } ] } ================================================ FILE: browser/components/CodeEditor.js ================================================ import PropTypes from 'prop-types' import React from 'react' import _ from 'lodash' import CodeMirror from 'codemirror' import hljs from 'highlight.js' import 'codemirror-mode-elixir' import attachmentManagement from 'browser/main/lib/dataApi/attachmentManagement' import convertModeName from 'browser/lib/convertModeName' import { options, TableEditor, Alignment } from '@susisu/mte-kernel' import TextEditorInterface from 'browser/lib/TextEditorInterface' import eventEmitter from 'browser/main/lib/eventEmitter' import iconv from 'iconv-lite' import { isMarkdownTitleURL } from 'browser/lib/utils' import styles from '../components/CodeEditor.styl' const { ipcRenderer, remote, clipboard } = require('electron') import normalizeEditorFontFamily from 'browser/lib/normalizeEditorFontFamily' const spellcheck = require('browser/lib/spellcheck') const buildEditorContextMenu = require('browser/lib/contextMenuBuilder') .buildEditorContextMenu import { createTurndownService } from '../lib/turndown' import { languageMaps } from '../lib/CMLanguageList' import snippetManager from '../lib/SnippetManager' import { findStorage } from 'browser/lib/findStorage' import { sendWakatimeHeartBeat } from 'browser/lib/wakatime-plugin' import { generateInEditor, tocExistsInEditor } from 'browser/lib/markdown-toc-generator' import markdownlint from 'markdownlint' import Jsonlint from 'jsonlint-mod' import { DEFAULT_CONFIG } from '../main/lib/ConfigManager' import prettier from 'prettier' CodeMirror.modeURL = '../node_modules/codemirror/mode/%N/%N.js' const buildCMRulers = (rulers, enableRulers) => enableRulers ? rulers.map(ruler => ({ column: ruler })) : [] function translateHotkey(hotkey) { return hotkey .replace(/\s*\+\s*/g, '-') .replace(/Command/g, 'Cmd') .replace(/Control/g, 'Ctrl') } export default class CodeEditor extends React.Component { constructor(props) { super(props) this.scrollHandler = _.debounce(this.handleScroll.bind(this), 100, { leading: false, trailing: true }) this.changeHandler = (editor, changeObject) => this.handleChange(editor, changeObject) this.highlightHandler = (editor, changeObject) => this.handleHighlight(editor, changeObject) this.focusHandler = () => { ipcRenderer.send('editor:focused', true) } this.debouncedDeletionOfAttachments = _.debounce( attachmentManagement.deleteAttachmentsNotPresentInNote, 30000 ) this.blurHandler = (editor, e) => { ipcRenderer.send('editor:focused', false) if (e == null) return null let el = e.relatedTarget while (el != null) { if (el === this.refs.root) { return } el = el.parentNode } this.props.onBlur != null && this.props.onBlur(e) const { storageKey, noteKey } = this.props if (this.props.deleteUnusedAttachments === true) { this.debouncedDeletionOfAttachments( this.editor.getValue(), storageKey, noteKey ) } } this.pasteHandler = (editor, e) => { e.preventDefault() this.handlePaste(editor, false) } this.loadStyleHandler = e => { this.editor.refresh() } this.searchHandler = (e, msg) => this.handleSearch(msg) this.searchState = null this.scrollToLineHandeler = this.scrollToLine.bind(this) this.getCodeEditorLintConfig = this.getCodeEditorLintConfig.bind(this) this.validatorOfMarkdown = this.validatorOfMarkdown.bind(this) this.formatTable = () => this.handleFormatTable() if (props.switchPreview !== 'RIGHTCLICK') { this.contextMenuHandler = function(editor, event) { const menu = buildEditorContextMenu(editor, event) if (menu != null) { setTimeout(() => menu.popup(remote.getCurrentWindow()), 30) } } } this.editorActivityHandler = () => this.handleEditorActivity() this.turndownService = createTurndownService() // wakatime const { storageKey, noteKey } = this.props const storage = findStorage(storageKey) if (storage) sendWakatimeHeartBeat(storage.path, noteKey, storage.name, { isWrite: false, hasFileChanges: false, isFileChange: true }) } handleSearch(msg) { const cm = this.editor const component = this if (component.searchState) cm.removeOverlay(component.searchState) if (msg.length < 1) return cm.operation(function() { component.searchState = makeOverlay(msg, 'searching') cm.addOverlay(component.searchState) function makeOverlay(query, style) { query = new RegExp( query.replace(/[\-\[\]\/\{\}\(\)\*\+\?\.\\\^\$\|]/g, '\\$&'), 'gi' ) return { token: function(stream) { query.lastIndex = stream.pos var match = query.exec(stream.string) if (match && match.index === stream.pos) { stream.pos += match[0].length || 1 return style } else if (match) { stream.pos = match.index } else { stream.skipToEnd() } } } } }) } handleFormatTable() { this.tableEditor.formatAll( options({ textWidthOptions: {} }) ) } handleEditorActivity() { if (this.props.onCursorActivity) { this.props.onCursorActivity(this.editor) } if (!this.textEditorInterface.transaction) { this.updateTableEditorState() } } updateDefaultKeyMap() { const { hotkey } = this.props const self = this const expandSnippet = snippetManager.expandSnippet this.defaultKeyMap = CodeMirror.normalizeKeyMap({ Tab: function(cm) { const cursor = cm.getCursor() const line = cm.getLine(cursor.line) const cursorPosition = cursor.ch const charBeforeCursor = line.substr(cursorPosition - 1, 1) if (cm.somethingSelected()) cm.indentSelection('add') else { const tabs = cm.getOption('indentWithTabs') if (line.trimLeft().match(/^(-|\*|\+) (\[( |x)] )?$/)) { cm.execCommand('goLineStart') if (tabs) { cm.execCommand('insertTab') } else { cm.execCommand('insertSoftTab') } cm.execCommand('goLineEnd') } else if ( !charBeforeCursor.match(/\t|\s|\r|\n|\$/) && cursor.ch > 1 ) { // text expansion on tab key if the char before is alphabet const wordBeforeCursor = self.getWordBeforeCursor( line, cursor.line, cursor.ch ) if (expandSnippet(wordBeforeCursor, cursor, cm) === false) { if (tabs) { cm.execCommand('insertTab') } else { cm.execCommand('insertSoftTab') } } } else { if (tabs) { cm.execCommand('insertTab') } else { cm.execCommand('insertSoftTab') } } } }, 'Cmd-Left': function(cm) { cm.execCommand('goLineLeft') }, 'Cmd-T': function(cm) { // Do nothing }, [translateHotkey(hotkey.insertDate)]: function(cm) { const dateNow = new Date() if (self.props.dateFormatISO8601) { cm.replaceSelection(dateNow.toISOString().split('T')[0]) } else { cm.replaceSelection(dateNow.toLocaleDateString()) } }, [translateHotkey(hotkey.insertDateTime)]: function(cm) { const dateNow = new Date() if (self.props.dateFormatISO8601) { cm.replaceSelection(dateNow.toISOString()) } else { cm.replaceSelection(dateNow.toLocaleString()) } }, Enter: 'boostNewLineAndIndentContinueMarkdownList', 'Ctrl-C': cm => { if (cm.getOption('keyMap').substr(0, 3) === 'vim') { document.execCommand('copy') } return CodeMirror.Pass }, [translateHotkey(hotkey.prettifyMarkdown)]: cm => { // Default / User configured prettier options const currentConfig = JSON.parse(self.props.prettierConfig) // Parser type will always need to be markdown so we override the option before use currentConfig.parser = 'markdown' // Get current cursor position const cursorPos = cm.getCursor() currentConfig.cursorOffset = cm.doc.indexFromPos(cursorPos) // Prettify contents of editor const formattedTextDetails = prettier.formatWithCursor( cm.doc.getValue(), currentConfig ) const formattedText = formattedTextDetails.formatted const formattedCursorPos = formattedTextDetails.cursorOffset cm.doc.setValue(formattedText) // Reset Cursor position to be at the same markdown as was before prettifying const newCursorPos = cm.doc.posFromIndex(formattedCursorPos) cm.doc.setCursor(newCursorPos) }, [translateHotkey(hotkey.sortLines)]: cm => { const selection = cm.doc.getSelection() const appendLineBreak = /\n$/.test(selection) const sorted = _.split(selection.trim(), '\n').sort() const sortedString = _.join(sorted, '\n') + (appendLineBreak ? '\n' : '') cm.doc.replaceSelection(sortedString) }, [translateHotkey(hotkey.pasteSmartly)]: cm => { this.handlePaste(cm, true) } }) } updateTableEditorState() { const active = this.tableEditor.cursorIsInTable(this.tableEditorOptions) if (active) { if (this.extraKeysMode !== 'editor') { this.extraKeysMode = 'editor' this.editor.setOption('extraKeys', this.editorKeyMap) } } else { if (this.extraKeysMode !== 'default') { this.extraKeysMode = 'default' this.editor.setOption('extraKeys', this.defaultKeyMap) this.tableEditor.resetSmartCursor() } } } componentDidMount() { const { rulers, enableRulers, enableMarkdownLint, RTL } = this.props eventEmitter.on('line:jump', this.scrollToLineHandeler) snippetManager.init() this.updateDefaultKeyMap() this.value = this.props.value this.editor = CodeMirror(this.refs.root, { rulers: buildCMRulers(rulers, enableRulers), value: this.props.value, linesHighlighted: this.props.linesHighlighted, lineNumbers: this.props.displayLineNumbers, lineWrapping: this.props.lineWrapping, theme: this.props.theme, indentUnit: this.props.indentSize, tabSize: this.props.indentSize, indentWithTabs: this.props.indentType !== 'space', keyMap: this.props.keyMap, scrollPastEnd: this.props.scrollPastEnd, inputStyle: 'textarea', dragDrop: false, direction: RTL ? 'rtl' : 'ltr', rtlMoveVisually: RTL, foldGutter: true, lint: enableMarkdownLint ? this.getCodeEditorLintConfig() : false, gutters: [ 'CodeMirror-linenumbers', 'CodeMirror-foldgutter', 'CodeMirror-lint-markers' ], autoCloseBrackets: { codeBlock: { pairs: this.props.codeBlockMatchingPairs, closeBefore: this.props.codeBlockMatchingCloseBefore, triples: this.props.codeBlockMatchingTriples, explode: this.props.codeBlockExplodingPairs }, markdown: { pairs: this.props.matchingPairs, closeBefore: this.props.matchingCloseBefore, triples: this.props.matchingTriples, explode: this.props.explodingPairs } }, extraKeys: this.defaultKeyMap, prettierConfig: this.props.prettierConfig }) document.querySelector( '.CodeMirror-lint-markers' ).style.display = enableMarkdownLint ? 'inline-block' : 'none' if (!this.props.mode && this.props.value && this.props.autoDetect) { this.autoDetectLanguage(this.props.value) } else { this.setMode(this.props.mode) } this.editor.on('focus', this.focusHandler) this.editor.on('blur', this.blurHandler) this.editor.on('change', this.changeHandler) this.editor.on('gutterClick', this.highlightHandler) this.editor.on('paste', this.pasteHandler) if (this.props.switchPreview !== 'RIGHTCLICK') { this.editor.on('contextmenu', this.contextMenuHandler) } eventEmitter.on('top:search', this.searchHandler) eventEmitter.emit('code:init') this.editor.on('scroll', this.scrollHandler) this.editor.on('cursorActivity', this.editorActivityHandler) const editorTheme = document.getElementById('editorTheme') editorTheme.addEventListener('load', this.loadStyleHandler) CodeMirror.Vim.defineEx('quit', 'q', this.quitEditor) CodeMirror.Vim.defineEx('q!', 'q!', this.quitEditor) CodeMirror.Vim.defineEx('wq', 'wq', this.quitEditor) CodeMirror.Vim.defineEx('qw', 'qw', this.quitEditor) CodeMirror.Vim.map('ZZ', ':q', 'normal') this.textEditorInterface = new TextEditorInterface(this.editor) this.tableEditor = new TableEditor(this.textEditorInterface) if (this.props.spellCheck) { this.editor.addPanel(this.createSpellCheckPanel(), { position: 'bottom' }) } eventEmitter.on('code:format-table', this.formatTable) this.tableEditorOptions = options({ smartCursor: true }) this.editorKeyMap = CodeMirror.normalizeKeyMap({ Tab: () => { this.tableEditor.nextCell(this.tableEditorOptions) }, 'Shift-Tab': () => { this.tableEditor.previousCell(this.tableEditorOptions) }, Enter: () => { this.tableEditor.nextRow(this.tableEditorOptions) }, 'Ctrl-Enter': () => { this.tableEditor.escape(this.tableEditorOptions) }, 'Cmd-Enter': () => { this.tableEditor.escape(this.tableEditorOptions) }, 'Shift-Ctrl-Left': () => { this.tableEditor.alignColumn(Alignment.LEFT, this.tableEditorOptions) }, 'Shift-Cmd-Left': () => { this.tableEditor.alignColumn(Alignment.LEFT, this.tableEditorOptions) }, 'Shift-Ctrl-Right': () => { this.tableEditor.alignColumn(Alignment.RIGHT, this.tableEditorOptions) }, 'Shift-Cmd-Right': () => { this.tableEditor.alignColumn(Alignment.RIGHT, this.tableEditorOptions) }, 'Shift-Ctrl-Up': () => { this.tableEditor.alignColumn(Alignment.CENTER, this.tableEditorOptions) }, 'Shift-Cmd-Up': () => { this.tableEditor.alignColumn(Alignment.CENTER, this.tableEditorOptions) }, 'Shift-Ctrl-Down': () => { this.tableEditor.alignColumn(Alignment.NONE, this.tableEditorOptions) }, 'Shift-Cmd-Down': () => { this.tableEditor.alignColumn(Alignment.NONE, this.tableEditorOptions) }, 'Ctrl-Left': () => { this.tableEditor.moveFocus(0, -1, this.tableEditorOptions) }, 'Cmd-Left': () => { this.tableEditor.moveFocus(0, -1, this.tableEditorOptions) }, 'Ctrl-Right': () => { this.tableEditor.moveFocus(0, 1, this.tableEditorOptions) }, 'Cmd-Right': () => { this.tableEditor.moveFocus(0, 1, this.tableEditorOptions) }, 'Ctrl-Up': () => { this.tableEditor.moveFocus(-1, 0, this.tableEditorOptions) }, 'Cmd-Up': () => { this.tableEditor.moveFocus(-1, 0, this.tableEditorOptions) }, 'Ctrl-Down': () => { this.tableEditor.moveFocus(1, 0, this.tableEditorOptions) }, 'Cmd-Down': () => { this.tableEditor.moveFocus(1, 0, this.tableEditorOptions) }, 'Ctrl-K Ctrl-I': () => { this.tableEditor.insertRow(this.tableEditorOptions) }, 'Cmd-K Cmd-I': () => { this.tableEditor.insertRow(this.tableEditorOptions) }, 'Ctrl-L Ctrl-I': () => { this.tableEditor.deleteRow(this.tableEditorOptions) }, 'Cmd-L Cmd-I': () => { this.tableEditor.deleteRow(this.tableEditorOptions) }, 'Ctrl-K Ctrl-J': () => { this.tableEditor.insertColumn(this.tableEditorOptions) }, 'Cmd-K Cmd-J': () => { this.tableEditor.insertColumn(this.tableEditorOptions) }, 'Ctrl-L Ctrl-J': () => { this.tableEditor.deleteColumn(this.tableEditorOptions) }, 'Cmd-L Cmd-J': () => { this.tableEditor.deleteColumn(this.tableEditorOptions) }, 'Alt-Shift-Ctrl-Left': () => { this.tableEditor.moveColumn(-1, this.tableEditorOptions) }, 'Alt-Shift-Cmd-Left': () => { this.tableEditor.moveColumn(-1, this.tableEditorOptions) }, 'Alt-Shift-Ctrl-Right': () => { this.tableEditor.moveColumn(1, this.tableEditorOptions) }, 'Alt-Shift-Cmd-Right': () => { this.tableEditor.moveColumn(1, this.tableEditorOptions) }, 'Alt-Shift-Ctrl-Up': () => { this.tableEditor.moveRow(-1, this.tableEditorOptions) }, 'Alt-Shift-Cmd-Up': () => { this.tableEditor.moveRow(-1, this.tableEditorOptions) }, 'Alt-Shift-Ctrl-Down': () => { this.tableEditor.moveRow(1, this.tableEditorOptions) }, 'Alt-Shift-Cmd-Down': () => { this.tableEditor.moveRow(1, this.tableEditorOptions) } }) if (this.props.enableTableEditor) { this.editor.on('changes', this.editorActivityHandler) } this.setState({ clientWidth: this.refs.root.clientWidth }) this.initialHighlighting() } getWordBeforeCursor(line, lineNumber, cursorPosition) { let wordBeforeCursor = '' const originCursorPosition = cursorPosition const emptyChars = /\t|\s|\r|\n|\$/ // to prevent the word is long that will crash the whole app // the safeStop is there to stop user to expand words that longer than 20 chars const safeStop = 20 while (cursorPosition > 0) { const currentChar = line.substr(cursorPosition - 1, 1) // if char is not an empty char if (!emptyChars.test(currentChar)) { wordBeforeCursor = currentChar + wordBeforeCursor } else if (wordBeforeCursor.length >= safeStop) { throw new Error('Stopped after 20 loops for safety reason !') } else { break } cursorPosition-- } return { text: wordBeforeCursor, range: { from: { line: lineNumber, ch: originCursorPosition }, to: { line: lineNumber, ch: cursorPosition } } } } quitEditor() { document.querySelector('textarea').blur() } componentWillUnmount() { this.editor.off('focus', this.focusHandler) this.editor.off('blur', this.blurHandler) this.editor.off('change', this.changeHandler) this.editor.off('paste', this.pasteHandler) eventEmitter.off('top:search', this.searchHandler) this.editor.off('scroll', this.scrollHandler) this.editor.off('cursorActivity', this.editorActivityHandler) this.editor.off('contextmenu', this.contextMenuHandler) const editorTheme = document.getElementById('editorTheme') editorTheme.removeEventListener('load', this.loadStyleHandler) spellcheck.setLanguage(null, spellcheck.SPELLCHECK_DISABLED) eventEmitter.off('code:format-table', this.formatTable) if (this.props.enableTableEditor) { this.editor.off('changes', this.editorActivityHandler) } } componentDidUpdate(prevProps, prevState) { let needRefresh = false const { rulers, enableRulers, enableMarkdownLint, customMarkdownLintConfig } = this.props if (prevProps.mode !== this.props.mode) { this.setMode(this.props.mode) } if (prevProps.theme !== this.props.theme) { this.editor.setOption('theme', this.props.theme) // editor should be refreshed after css loaded } if (prevProps.fontSize !== this.props.fontSize) { needRefresh = true } if (prevProps.fontFamily !== this.props.fontFamily) { needRefresh = true } if (prevProps.keyMap !== this.props.keyMap) { needRefresh = true } if (prevProps.RTL !== this.props.RTL) { this.editor.setOption('direction', this.props.RTL ? 'rtl' : 'ltr') this.editor.setOption('rtlMoveVisually', this.props.RTL) } if ( prevProps.enableMarkdownLint !== enableMarkdownLint || prevProps.customMarkdownLintConfig !== customMarkdownLintConfig ) { if (!enableMarkdownLint) { this.editor.setOption('lint', { default: false }) document.querySelector('.CodeMirror-lint-markers').style.display = 'none' } else { this.editor.setOption('lint', this.getCodeEditorLintConfig()) document.querySelector('.CodeMirror-lint-markers').style.display = 'inline-block' } needRefresh = true } if ( prevProps.enableRulers !== enableRulers || prevProps.rulers !== rulers ) { this.editor.setOption('rulers', buildCMRulers(rulers, enableRulers)) } if (prevProps.indentSize !== this.props.indentSize) { this.editor.setOption('indentUnit', this.props.indentSize) this.editor.setOption('tabSize', this.props.indentSize) } if (prevProps.indentType !== this.props.indentType) { this.editor.setOption('indentWithTabs', this.props.indentType !== 'space') } if (prevProps.displayLineNumbers !== this.props.displayLineNumbers) { this.editor.setOption('lineNumbers', this.props.displayLineNumbers) } if (prevProps.lineWrapping !== this.props.lineWrapping) { this.editor.setOption('lineWrapping', this.props.lineWrapping) } if (prevProps.scrollPastEnd !== this.props.scrollPastEnd) { this.editor.setOption('scrollPastEnd', this.props.scrollPastEnd) } if ( prevProps.matchingPairs !== this.props.matchingPairs || prevProps.matchingCloseBefore !== this.props.matchingCloseBefore || prevProps.matchingTriples !== this.props.matchingTriples || prevProps.explodingPairs !== this.props.explodingPairs || prevProps.codeBlockMatchingPairs !== this.props.codeBlockMatchingPairs || prevProps.codeBlockMatchingCloseBefore !== this.props.codeBlockMatchingCloseBefore || prevProps.codeBlockMatchingTriples !== this.props.codeBlockMatchingTriples || prevProps.codeBlockExplodingPairs !== this.props.codeBlockExplodingPairs ) { const autoCloseBrackets = { codeBlock: { pairs: this.props.codeBlockMatchingPairs, closeBefore: this.props.codeBlockMatchingCloseBefore, triples: this.props.codeBlockMatchingTriples, explode: this.props.codeBlockExplodingPairs }, markdown: { pairs: this.props.matchingPairs, closeBefore: this.props.matchingCloseBefore, triples: this.props.matchingTriples, explode: this.props.explodingPairs } } this.editor.setOption('autoCloseBrackets', autoCloseBrackets) } if (prevProps.enableTableEditor !== this.props.enableTableEditor) { if (this.props.enableTableEditor) { this.editor.on('cursorActivity', this.editorActivityHandler) this.editor.on('changes', this.editorActivityHandler) } else { this.editor.off('cursorActivity', this.editorActivityHandler) this.editor.off('changes', this.editorActivityHandler) } this.extraKeysMode = 'default' this.editor.setOption('extraKeys', this.defaultKeyMap) } if (prevProps.hotkey !== this.props.hotkey) { this.updateDefaultKeyMap() if (this.extraKeysMode === 'default') { this.editor.setOption('extraKeys', this.defaultKeyMap) } } if (this.state.clientWidth !== this.refs.root.clientWidth) { this.setState({ clientWidth: this.refs.root.clientWidth }) needRefresh = true } if (prevProps.spellCheck !== this.props.spellCheck) { if (this.props.spellCheck === false) { spellcheck.setLanguage(this.editor, spellcheck.SPELLCHECK_DISABLED) const elem = document.getElementById('editor-bottom-panel') elem.parentNode.removeChild(elem) } else { this.editor.addPanel(this.createSpellCheckPanel(), { position: 'bottom' }) } } if ( prevProps.deleteUnusedAttachments !== this.props.deleteUnusedAttachments ) { this.editor.setOption( 'deleteUnusedAttachments', this.props.deleteUnusedAttachments ) } if (needRefresh) { this.editor.refresh() } } getCodeEditorLintConfig() { const { mode } = this.props const checkMarkdownNoteIsOpen = mode === 'Boost Flavored Markdown' return checkMarkdownNoteIsOpen ? { getAnnotations: this.validatorOfMarkdown, async: true } : false } validatorOfMarkdown(text, updateLinting) { const { customMarkdownLintConfig } = this.props let lintConfigJson try { Jsonlint.parse(customMarkdownLintConfig) lintConfigJson = JSON.parse(customMarkdownLintConfig) } catch (err) { eventEmitter.emit('APP_SETTING_ERROR') return } const lintOptions = { strings: { content: text }, config: lintConfigJson } return markdownlint(lintOptions, (err, result) => { if (!err) { const foundIssues = [] const splitText = text.split('\n') result.content.map(item => { let ruleNames = '' item.ruleNames.map((ruleName, index) => { ruleNames += ruleName ruleNames += index === item.ruleNames.length - 1 ? ': ' : '/' }) const lineNumber = item.lineNumber - 1 foundIssues.push({ from: CodeMirror.Pos(lineNumber, 0), to: CodeMirror.Pos(lineNumber, splitText[lineNumber].length), message: ruleNames + item.ruleDescription, severity: 'warning' }) }) updateLinting(foundIssues) } }) } setMode(mode) { let syntax = CodeMirror.findModeByName(convertModeName(mode || 'text')) if (syntax == null) syntax = CodeMirror.findModeByName('Plain Text') this.editor.setOption('mode', syntax.mime) CodeMirror.autoLoadMode(this.editor, syntax.mode) } handleChange(editor, changeObject) { this.debouncedDeletionOfAttachments.cancel() spellcheck.handleChange(editor, changeObject) // The current note contains an toc. We'll check for changes on headlines. // origin is undefined when markdownTocGenerator replace the old tod if (tocExistsInEditor(editor) && changeObject.origin !== undefined) { let requireTocUpdate // Check if one of the changed lines contains a headline for (let line = 0; line < changeObject.text.length; line++) { if ( this.linePossibleContainsHeadline( editor.getLine(changeObject.from.line + line) ) ) { requireTocUpdate = true break } } if (!requireTocUpdate) { // Check if one of the removed lines contains a headline for (let line = 0; line < changeObject.removed.length; line++) { if (this.linePossibleContainsHeadline(changeObject.removed[line])) { requireTocUpdate = true break } } } if (requireTocUpdate) { generateInEditor(editor) } } this.updateHighlight(editor, changeObject) this.value = editor.getValue() const { storageKey, noteKey } = this.props const storage = findStorage(storageKey) if (this.props.onChange) { this.props.onChange(editor) } const isWrite = !!this.props.onChange const hasFileChanges = isWrite if (storage) { sendWakatimeHeartBeat(storage.path, noteKey, storage.name, { isWrite, hasFileChanges, isFileChange: false }) } } linePossibleContainsHeadline(currentLine) { // We can't check if the line start with # because when some write text before // the # we also need to update the toc return currentLine.includes('# ') } incrementLines(start, linesAdded, linesRemoved, editor) { const highlightedLines = editor.options.linesHighlighted const totalHighlightedLines = highlightedLines.length const offset = linesAdded - linesRemoved // Store new items to be added as we're changing the lines const newLines = [] let i = totalHighlightedLines while (i--) { const lineNumber = highlightedLines[i] // Interval that will need to be updated // Between start and (start + offset) remove highlight if (lineNumber >= start) { highlightedLines.splice(highlightedLines.indexOf(lineNumber), 1) // Lines that need to be relocated if (lineNumber >= start + linesRemoved) { newLines.push(lineNumber + offset) } } } // Adding relocated lines highlightedLines.push(...newLines) if (this.props.onChange) { this.props.onChange(editor) } } handleHighlight(editor, changeObject) { const lines = editor.options.linesHighlighted if (!lines.includes(changeObject)) { lines.push(changeObject) editor.addLineClass( changeObject, 'text', 'CodeMirror-activeline-background' ) } else { lines.splice(lines.indexOf(changeObject), 1) editor.removeLineClass( changeObject, 'text', 'CodeMirror-activeline-background' ) } if (this.props.onChange) { this.props.onChange(editor) } } updateHighlight(editor, changeObject) { const linesAdded = changeObject.text.length - 1 const linesRemoved = changeObject.removed.length - 1 // If no lines added or removed return if (linesAdded === 0 && linesRemoved === 0) { return } let start = changeObject.from.line switch (changeObject.origin) { case '+insert", "undo': start += 1 break case 'paste': case '+delete': case '+input': if (changeObject.to.ch !== 0 || changeObject.from.ch !== 0) { start += 1 } break default: return } this.incrementLines(start, linesAdded, linesRemoved, editor) } moveCursorTo(row, col) {} scrollToLine(event, num) { const cursor = { line: num, ch: 1 } this.editor.setCursor(cursor) const top = this.editor.charCoords({ line: num, ch: 0 }, 'local').top const middleHeight = this.editor.getScrollerElement().offsetHeight / 2 this.editor.scrollTo(null, top - middleHeight - 5) } focus() { this.editor.focus() } blur() { this.editor.blur() } reload() { // Change event shouldn't be fired when switch note this.editor.off('change', this.changeHandler) this.value = this.props.value this.editor.setValue(this.props.value) this.editor.clearHistory() this.restartHighlighting() this.editor.on('change', this.changeHandler) this.editor.refresh() // wakatime const { storageKey, noteKey } = this.props const storage = findStorage(storageKey) if (storage) sendWakatimeHeartBeat(storage.path, noteKey, storage.name, { isWrite: false, hasFileChanges: false, isFileChange: true }) } setValue(value) { const cursor = this.editor.getCursor() this.editor.setValue(value) this.editor.setCursor(cursor) } /** * Update content of one line * @param {Number} lineNumber * @param {String} content */ setLineContent(lineNumber, content) { const prevContent = this.editor.getLine(lineNumber) const prevContentLength = prevContent ? prevContent.length : 0 this.editor.replaceRange( content, { line: lineNumber, ch: 0 }, { line: lineNumber, ch: prevContentLength } ) } handleDropImage(dropEvent) { dropEvent.preventDefault() const { storageKey, noteKey } = this.props attachmentManagement.handleAttachmentDrop( this, storageKey, noteKey, dropEvent ) } insertAttachmentMd(imageMd) { this.editor.replaceSelection(imageMd) } autoDetectLanguage(content) { const res = hljs.highlightAuto(content, Object.keys(languageMaps)) this.setMode(languageMaps[res.language]) } handlePaste(editor, forceSmartPaste) { const { storageKey, noteKey, fetchUrlTitle, enableSmartPaste } = this.props const isURL = str => /(?:^\w+:|^)\/\/(?:[^\s\.]+\.\S{2}|localhost[\:?\d]*)/.test(str) const isInLinkTag = editor => { const startCursor = editor.getCursor('start') const prevChar = editor.getRange( { line: startCursor.line, ch: startCursor.ch - 2 }, { line: startCursor.line, ch: startCursor.ch } ) const endCursor = editor.getCursor('end') const nextChar = editor.getRange( { line: endCursor.line, ch: endCursor.ch }, { line: endCursor.line, ch: endCursor.ch + 1 } ) return prevChar === '](' && nextChar === ')' } const isInFencedCodeBlock = editor => { const cursor = editor.getCursor() let token = editor.getTokenAt(cursor) if (token.state.fencedState) { return true } let line = (line = cursor.line - 1) while (line >= 0) { token = editor.getTokenAt({ ch: 3, line }) if (token.start === token.end) { --line } else if (token.type === 'comment') { if (line > 0) { token = editor.getTokenAt({ ch: 3, line: line - 1 }) return token.type !== 'comment' } else { return true } } else { return false } } return false } const pastedTxt = clipboard.readText() if (isInFencedCodeBlock(editor)) { this.handlePasteText(editor, pastedTxt) } else if ( fetchUrlTitle && isMarkdownTitleURL(pastedTxt) && !isInLinkTag(editor) ) { this.handlePasteUrl(editor, pastedTxt) } else if (fetchUrlTitle && isURL(pastedTxt) && !isInLinkTag(editor)) { this.handlePasteUrl(editor, pastedTxt) } else if (attachmentManagement.isAttachmentLink(pastedTxt)) { attachmentManagement .handleAttachmentLinkPaste(storageKey, noteKey, pastedTxt) .then(modifiedText => { this.editor.replaceSelection(modifiedText) }) } else { const image = clipboard.readImage() if (!image.isEmpty()) { attachmentManagement.handlePasteNativeImage( this, storageKey, noteKey, image ) } else if (enableSmartPaste || forceSmartPaste) { const pastedHtml = clipboard.readHTML() if (pastedHtml.length > 0) { this.handlePasteHtml(editor, pastedHtml) } else { this.handlePasteText(editor, pastedTxt) } } else { this.handlePasteText(editor, pastedTxt) } } if (!this.props.mode && this.props.autoDetect) { this.autoDetectLanguage(editor.doc.getValue()) } } handleScroll(e) { if (this.props.onScroll) { this.props.onScroll(e) } } handlePasteUrl(editor, pastedTxt) { let taggedUrl = `<${pastedTxt}>` let urlToFetch = pastedTxt let titleMark = '' if (isMarkdownTitleURL(pastedTxt)) { const pastedTxtSplitted = pastedTxt.split(' ') titleMark = `${pastedTxtSplitted[0]} ` urlToFetch = pastedTxtSplitted[1] taggedUrl = `<${urlToFetch}>` } editor.replaceSelection(taggedUrl) const isImageReponse = response => { return ( response.headers.has('content-type') && response.headers.get('content-type').match(/^image\/.+$/) ) } const replaceTaggedUrl = replacement => { const value = editor.getValue() const cursor = editor.getCursor() const newValue = value.replace(taggedUrl, titleMark + replacement) const newCursor = Object.assign({}, cursor, { ch: cursor.ch + newValue.length - (value.length - titleMark.length) }) editor.setValue(newValue) editor.setCursor(newCursor) } fetch(urlToFetch, { method: 'get' }) .then(response => { if (isImageReponse(response)) { return this.mapImageResponse(response, urlToFetch) } else { return this.mapNormalResponse(response, urlToFetch) } }) .then(replacement => { replaceTaggedUrl(replacement) }) .catch(e => { replaceTaggedUrl(pastedTxt) }) } handlePasteHtml(editor, pastedHtml) { const markdown = this.turndownService.turndown(pastedHtml) editor.replaceSelection(markdown) } handlePasteText(editor, pastedTxt) { editor.replaceSelection(pastedTxt) } mapNormalResponse(response, pastedTxt) { return this.decodeResponse(response).then(body => { return new Promise((resolve, reject) => { try { const parsedBody = new window.DOMParser().parseFromString( body, 'text/html' ) const escapePipe = str => { return str.replace('|', '\\|') } const linkWithTitle = `[${escapePipe( parsedBody.title )}](${pastedTxt})` resolve(linkWithTitle) } catch (e) { reject(e) } }) }) } initialHighlighting() { if (this.editor.options.linesHighlighted == null) { return } const totalHighlightedLines = this.editor.options.linesHighlighted.length const totalAvailableLines = this.editor.lineCount() for (let i = 0; i < totalHighlightedLines; i++) { const lineNumber = this.editor.options.linesHighlighted[i] if (lineNumber > totalAvailableLines) { // make sure that we skip the invalid lines althrough this case should not be happened. continue } this.editor.addLineClass( lineNumber, 'text', 'CodeMirror-activeline-background' ) } } restartHighlighting() { this.editor.options.linesHighlighted = this.props.linesHighlighted this.initialHighlighting() } mapImageResponse(response, pastedTxt) { return new Promise((resolve, reject) => { try { const url = response.url const name = url.substring(url.lastIndexOf('/') + 1) const imageLinkWithName = `![${name}](${pastedTxt})` resolve(imageLinkWithName) } catch (e) { reject(e) } }) } decodeResponse(response) { const headers = response.headers const _charset = headers.has('content-type') ? this.extractContentTypeCharset(headers.get('content-type')) : undefined return response.arrayBuffer().then(buff => { return new Promise((resolve, reject) => { try { const charset = _charset !== undefined && iconv.encodingExists(_charset) ? _charset : 'utf-8' resolve(iconv.decode(Buffer.from(buff), charset).toString()) } catch (e) { reject(e) } }) }) } extractContentTypeCharset(contentType) { return contentType .split(';') .filter(str => { return str .trim() .toLowerCase() .startsWith('charset') }) .map(str => { return str.replace(/['"]/g, '').split('=')[1] })[0] } render() { const { className, fontSize, fontFamily, width, height } = this.props const normalisedFontFamily = normalizeEditorFontFamily(fontFamily) return (
this.handleDropImage(e)} /> ) } createSpellCheckPanel() { const panel = document.createElement('div') panel.className = 'panel bottom' panel.id = 'editor-bottom-panel' const dropdown = document.createElement('select') dropdown.title = 'Spellcheck' dropdown.className = styles['spellcheck-select'] dropdown.addEventListener('change', e => spellcheck.setLanguage(this.editor, dropdown.value) ) const options = spellcheck.getAvailableDictionaries() for (const op of options) { const option = document.createElement('option') option.value = op.value option.innerHTML = op.label dropdown.appendChild(option) } panel.appendChild(dropdown) return panel } } CodeEditor.propTypes = { value: PropTypes.string, enableRulers: PropTypes.bool, rulers: PropTypes.arrayOf(Number), mode: PropTypes.string, className: PropTypes.string, onBlur: PropTypes.func, onChange: PropTypes.func, readOnly: PropTypes.bool, autoDetect: PropTypes.bool, spellCheck: PropTypes.bool, enableMarkdownLint: PropTypes.bool, customMarkdownLintConfig: PropTypes.string, deleteUnusedAttachments: PropTypes.bool, RTL: PropTypes.bool } CodeEditor.defaultProps = { readOnly: false, theme: 'xcode', keyMap: 'sublime', fontSize: 14, fontFamily: 'Monaco, Consolas', indentSize: 4, indentType: 'space', autoDetect: false, spellCheck: false, enableMarkdownLint: DEFAULT_CONFIG.editor.enableMarkdownLint, customMarkdownLintConfig: DEFAULT_CONFIG.editor.customMarkdownLintConfig, prettierConfig: DEFAULT_CONFIG.editor.prettierConfig, deleteUnusedAttachments: DEFAULT_CONFIG.editor.deleteUnusedAttachments, RTL: false } ================================================ FILE: browser/components/CodeEditor.styl ================================================ .codeEditor-typo text-decoration underline wavy red .spellcheck-select border: none ================================================ FILE: browser/components/ColorPicker.js ================================================ import React from 'react' import PropTypes from 'prop-types' import { SketchPicker } from 'react-color' import CSSModules from 'browser/lib/CSSModules' import styles from './ColorPicker.styl' const componentHeight = 330 class ColorPicker extends React.Component { constructor(props) { super(props) this.state = { color: this.props.color || '#939395' } this.onColorChange = this.onColorChange.bind(this) this.handleConfirm = this.handleConfirm.bind(this) } componentWillReceiveProps(nextProps) { this.onColorChange(nextProps.color) } onColorChange(color) { this.setState({ color }) } handleConfirm() { this.props.onConfirm(this.state.color) } render() { const { onReset, onCancel, targetRect } = this.props const { color } = this.state const clientHeight = document.body.clientHeight const alignX = targetRect.right + 4 let alignY = targetRect.top if (targetRect.top + componentHeight > clientHeight) { alignY = targetRect.bottom - componentHeight } return (
) } } ColorPicker.propTypes = { color: PropTypes.string, targetRect: PropTypes.object, onConfirm: PropTypes.func.isRequired, onCancel: PropTypes.func.isRequired, onReset: PropTypes.func.isRequired } export default CSSModules(ColorPicker, styles) ================================================ FILE: browser/components/ColorPicker.styl ================================================ .colorPicker position fixed z-index 2 display flex flex-direction column .cover position fixed top 0 right 0 bottom 0 left 0 .footer display flex justify-content center z-index 2 align-items center & > button + button margin-left 10px .btn-cancel, .btn-confirm, .btn-reset vertical-align middle height 25px margin-top 2.5px border-radius 2px border none padding 0 5px background-color $default-button-background &:hover background-color $default-button-background--hover .btn-confirm background-color #1EC38B &:hover background-color darken(#1EC38B, 25%) ================================================ FILE: browser/components/MarkdownEditor.js ================================================ /* eslint-disable camelcase */ import PropTypes from 'prop-types' import React from 'react' import CSSModules from 'browser/lib/CSSModules' import styles from './MarkdownEditor.styl' import CodeEditor from 'browser/components/CodeEditor' import MarkdownPreview from 'browser/components/MarkdownPreview' import eventEmitter from 'browser/main/lib/eventEmitter' import { findStorage } from 'browser/lib/findStorage' import ConfigManager from 'browser/main/lib/ConfigManager' import attachmentManagement from 'browser/main/lib/dataApi/attachmentManagement' class MarkdownEditor extends React.Component { constructor(props) { super(props) // char codes for ctrl + w this.escapeFromEditor = [17, 87] // ctrl + shift + ; this.supportMdSelectionBold = [16, 17, 186] this.state = { status: props.config.editor.switchPreview === 'RIGHTCLICK' ? props.config.editor.delfaultStatus : 'CODE', renderValue: props.value, keyPressed: new Set(), isLocked: props.isLocked } this.lockEditorCode = this.handleLockEditor.bind(this) this.focusEditor = this.focusEditor.bind(this) this.previewRef = React.createRef() } componentDidMount() { this.value = this.refs.code.value eventEmitter.on('editor:lock', this.lockEditorCode) eventEmitter.on('editor:focus', this.focusEditor) } componentDidUpdate() { this.value = this.refs.code.value } UNSAFE_componentWillReceiveProps(props) { if (props.value !== this.props.value) { this.queueRendering(props.value) } } componentWillUnmount() { this.cancelQueue() eventEmitter.off('editor:lock', this.lockEditorCode) eventEmitter.off('editor:focus', this.focusEditor) } focusEditor() { this.setState( { status: 'CODE' }, () => { if (this.refs.code == null) { return } this.refs.code.focus() } ) } queueRendering(value) { clearTimeout(this.renderTimer) this.renderTimer = setTimeout(() => { this.renderPreview(value) }, 500) } cancelQueue() { clearTimeout(this.renderTimer) } renderPreview(value) { this.setState({ renderValue: value }) } setValue(value) { this.refs.code.setValue(value) } handleChange(e) { this.value = this.refs.code.value this.props.onChange(e) } handleContextMenu(e) { if (this.state.isLocked) return const { config } = this.props if (config.editor.switchPreview === 'RIGHTCLICK') { const newStatus = this.state.status === 'PREVIEW' ? 'CODE' : 'PREVIEW' this.setState( { status: newStatus }, () => { if (newStatus === 'CODE') { this.refs.code.focus() } else { this.previewRef.current.focus() } eventEmitter.emit('topbar:togglelockbutton', this.state.status) const newConfig = Object.assign({}, config) newConfig.editor.delfaultStatus = newStatus ConfigManager.set(newConfig) } ) } } handleBlur(e) { if (this.state.isLocked) return this.setState({ keyPressed: new Set() }) const { config } = this.props if ( config.editor.switchPreview === 'BLUR' || (config.editor.switchPreview === 'DBL_CLICK' && this.state.status === 'CODE') ) { const cursorPosition = this.refs.code.editor.getCursor() this.setState( { status: 'PREVIEW' }, () => { this.previewRef.current.focus() this.previewRef.current.scrollToLine(cursorPosition.line) } ) eventEmitter.emit('topbar:togglelockbutton', this.state.status) } } handleDoubleClick(e) { if (this.state.isLocked) return this.setState({ keyPressed: new Set() }) const { config } = this.props if (config.editor.switchPreview === 'DBL_CLICK') { this.setState( { status: 'CODE' }, () => { this.refs.code.focus() eventEmitter.emit('topbar:togglelockbutton', this.state.status) } ) } } handlePreviewMouseDown(e) { this.previewMouseDownedAt = new Date() } handlePreviewMouseUp(e) { const { config } = this.props if ( config.editor.switchPreview === 'BLUR' && new Date() - this.previewMouseDownedAt < 200 ) { this.setState( { status: 'CODE' }, () => { this.refs.code.focus() } ) eventEmitter.emit('topbar:togglelockbutton', this.state.status) } } handleCheckboxClick(e) { e.preventDefault() e.stopPropagation() const idMatch = /checkbox-([0-9]+)/ const checkedMatch = /^(\s*>?)*\s*[+\-*] \[x]/i const uncheckedMatch = /^(\s*>?)*\s*[+\-*] \[ ]/ const checkReplace = /\[x]/i const uncheckReplace = /\[ ]/ if (idMatch.test(e.target.getAttribute('id'))) { const lineIndex = parseInt(e.target.getAttribute('id').match(idMatch)[1], 10) - 1 const lines = this.refs.code.value.split('\n') const targetLine = lines[lineIndex] let newLine = targetLine if (targetLine.match(checkedMatch)) { newLine = targetLine.replace(checkReplace, '[ ]') } if (targetLine.match(uncheckedMatch)) { newLine = targetLine.replace(uncheckReplace, '[x]') } this.refs.code.setLineContent(lineIndex, newLine) } } focus() { if (this.state.status === 'PREVIEW') { this.setState( { status: 'CODE' }, () => { this.refs.code.focus() } ) } else { this.refs.code.focus() } eventEmitter.emit('topbar:togglelockbutton', this.state.status) } reload() { this.refs.code.reload() this.cancelQueue() this.renderPreview(this.props.value) } handleKeyDown(e) { const { config } = this.props if (this.state.status !== 'CODE') return false const keyPressed = this.state.keyPressed keyPressed.add(e.keyCode) this.setState({ keyPressed }) const isNoteHandlerKey = el => { return keyPressed.has(el) } // These conditions are for ctrl-e and ctrl-w if ( keyPressed.size === this.escapeFromEditor.length && !this.state.isLocked && this.state.status === 'CODE' && this.escapeFromEditor.every(isNoteHandlerKey) ) { this.handleContextMenu() if (config.editor.switchPreview === 'BLUR') document.activeElement.blur() } if ( keyPressed.size === this.supportMdSelectionBold.length && this.supportMdSelectionBold.every(isNoteHandlerKey) ) { this.addMdAroundWord('**') } } addMdAroundWord(mdElement) { if (this.refs.code.editor.getSelection()) { return this.addMdAroundSelection(mdElement) } const currentCaret = this.refs.code.editor.getCursor() const word = this.refs.code.editor.findWordAt(currentCaret) const cmDoc = this.refs.code.editor.getDoc() cmDoc.replaceRange(mdElement, word.anchor) cmDoc.replaceRange(mdElement, { line: word.head.line, ch: word.head.ch + mdElement.length }) } addMdAroundSelection(mdElement) { this.refs.code.editor.replaceSelection( `${mdElement}${this.refs.code.editor.getSelection()}${mdElement}` ) } handleDropImage(dropEvent) { dropEvent.preventDefault() const { storageKey, noteKey } = this.props this.setState( { status: 'CODE' }, () => { this.refs.code.focus() this.refs.code.editor.execCommand('goDocEnd') this.refs.code.editor.execCommand('goLineEnd') this.refs.code.editor.execCommand('newlineAndIndent') attachmentManagement.handleAttachmentDrop( this.refs.code, storageKey, noteKey, dropEvent ) } ) } handleKeyUp(e) { const keyPressed = this.state.keyPressed keyPressed.delete(e.keyCode) this.setState({ keyPressed }) } handleLockEditor() { this.setState({ isLocked: !this.state.isLocked }) } render() { const { className, value, config, storageKey, noteKey, linesHighlighted, getNote, RTL } = this.props let editorFontSize = parseInt(config.editor.fontSize, 10) if (!(editorFontSize > 0 && editorFontSize < 101)) editorFontSize = 14 let editorIndentSize = parseInt(config.editor.indentSize, 10) if (!(editorFontSize > 0 && editorFontSize < 132)) editorIndentSize = 4 const previewStyle = {} if (this.props.ignorePreviewPointerEvents) previewStyle.pointerEvents = 'none' const storage = findStorage(storageKey) return (
this.handleContextMenu(e)} tabIndex='-1' onKeyDown={e => this.handleKeyDown(e)} onKeyUp={e => this.handleKeyUp(e)} > this.handleChange(e)} onBlur={e => this.handleBlur(e)} spellCheck={config.editor.spellcheck} enableSmartPaste={config.editor.enableSmartPaste} hotkey={config.hotkey} switchPreview={config.editor.switchPreview} enableMarkdownLint={config.editor.enableMarkdownLint} customMarkdownLintConfig={config.editor.customMarkdownLintConfig} dateFormatISO8601={config.editor.dateFormatISO8601} prettierConfig={config.editor.prettierConfig} deleteUnusedAttachments={config.editor.deleteUnusedAttachments} RTL={RTL} /> this.handleContextMenu(e)} onDoubleClick={e => this.handleDoubleClick(e)} tabIndex='0' value={this.state.renderValue} onMouseUp={e => this.handlePreviewMouseUp(e)} onMouseDown={e => this.handlePreviewMouseDown(e)} onCheckboxClick={e => this.handleCheckboxClick(e)} showCopyNotification={config.ui.showCopyNotification} storagePath={storage.path} noteKey={noteKey} customCSS={config.preview.customCSS} allowCustomCSS={config.preview.allowCustomCSS} lineThroughCheckbox={config.preview.lineThroughCheckbox} getNote={getNote} export={config.export} onDrop={e => this.handleDropImage(e)} RTL={RTL} />
) } } MarkdownEditor.propTypes = { className: PropTypes.string, value: PropTypes.string, onChange: PropTypes.func, ignorePreviewPointerEvents: PropTypes.bool } export default CSSModules(MarkdownEditor, styles) ================================================ FILE: browser/components/MarkdownEditor.styl ================================================ .root position relative .codeEditor absolute top bottom left right .hide z-index 0 opacity 0 pointer-events none .codeEditor--hide @extend .codeEditor @extend .hide .preview display block absolute top bottom left right background-color white height 100% width 100% .preview--hide @extend .preview @extend .hide ================================================ FILE: browser/components/MarkdownPreview.js ================================================ import PropTypes from 'prop-types' import React from 'react' import { connect } from 'react-redux' import Markdown from 'browser/lib/markdown' import _ from 'lodash' import CodeMirror from 'codemirror' import 'codemirror-mode-elixir' import consts from 'browser/lib/consts' import Raphael from 'raphael' import flowchart from 'flowchart' import mermaidRender from './render/MermaidRender' import SequenceDiagram from '@rokt33r/js-sequence-diagrams' import Chart from 'chart.js' import eventEmitter from 'browser/main/lib/eventEmitter' import config from 'browser/main/lib/ConfigManager' import htmlTextHelper from 'browser/lib/htmlTextHelper' import convertModeName from 'browser/lib/convertModeName' import copy from 'copy-to-clipboard' import mdurl from 'mdurl' import exportNote from 'browser/main/lib/dataApi/exportNote' import formatMarkdown from 'browser/main/lib/dataApi/formatMarkdown' import formatHTML, { CSS_FILES, buildStyle, getCodeThemeLink, getStyleParams, escapeHtmlCharactersInCodeTag } from 'browser/main/lib/dataApi/formatHTML' import formatPDF from 'browser/main/lib/dataApi/formatPDF' import yaml from 'js-yaml' import i18n from 'browser/lib/i18n' import path from 'path' import { remote, shell } from 'electron' import attachmentManagement from '../main/lib/dataApi/attachmentManagement' import filenamify from 'filenamify' import { render } from 'react-dom' import Carousel from 'react-image-carousel' import { push } from 'connected-react-router' import ConfigManager from '../main/lib/ConfigManager' import uiThemes from 'browser/lib/ui-themes' import { buildMarkdownPreviewContextMenu } from 'browser/lib/contextMenuBuilder' const dialog = remote.dialog const scrollBarStyle = ` ::-webkit-scrollbar { ${config.get().ui.showScrollBar ? '' : 'display: none;'} width: 12px; } ::-webkit-scrollbar-thumb { ${config.get().ui.showScrollBar ? '' : 'display: none;'} background-color: rgba(0, 0, 0, 0.15); } ::-webkit-scrollbar-track-piece { background-color: inherit; } ` const scrollBarDarkStyle = ` ::-webkit-scrollbar { ${config.get().ui.showScrollBar ? '' : 'display: none;'} width: 12px; } ::-webkit-scrollbar-thumb { ${config.get().ui.showScrollBar ? '' : 'display: none;'} background-color: rgba(0, 0, 0, 0.3); } ::-webkit-scrollbar-track-piece { background-color: inherit; } ` // return the line number of the line that used to generate the specified element // return -1 if the line is not found function getSourceLineNumberByElement(element) { let isHasLineNumber = element.dataset.line !== undefined let parent = element while (!isHasLineNumber && parent.parentElement !== null) { parent = parent.parentElement isHasLineNumber = parent.dataset.line !== undefined } return parent.dataset.line !== undefined ? parseInt(parent.dataset.line) : -1 } class MarkdownPreview extends React.Component { constructor(props) { super(props) this.contextMenuHandler = e => this.handleContextMenu(e) this.mouseDownHandler = e => this.handleMouseDown(e) this.mouseUpHandler = e => this.handleMouseUp(e) this.DoubleClickHandler = e => this.handleDoubleClick(e) this.scrollHandler = _.debounce(this.handleScroll.bind(this), 100, { leading: false, trailing: true }) this.checkboxClickHandler = e => this.handleCheckboxClick(e) this.saveAsTextHandler = () => this.handleSaveAsText() this.saveAsMdHandler = () => this.handleSaveAsMd() this.saveAsHtmlHandler = () => this.handleSaveAsHtml() this.saveAsPdfHandler = () => this.handleSaveAsPdf() this.printHandler = () => this.handlePrint() this.resizeHandler = _.throttle(this.handleResize.bind(this), 100) this.linkClickHandler = this.handleLinkClick.bind(this) this.initMarkdown = this.initMarkdown.bind(this) this.initMarkdown() } initMarkdown() { const { smartQuotes, sanitize, breaks } = this.props this.markdown = new Markdown({ typographer: smartQuotes, sanitize, breaks }) } handleCheckboxClick(e) { this.props.onCheckboxClick(e) } handleScroll(e) { if (this.props.onScroll) { this.props.onScroll(e) } } handleContextMenu(event) { const menu = buildMarkdownPreviewContextMenu(this, event) const switchPreview = ConfigManager.get().editor.switchPreview if (menu != null && switchPreview !== 'RIGHTCLICK') { menu.popup(remote.getCurrentWindow()) } else if (_.isFunction(this.props.onContextMenu)) { this.props.onContextMenu(event) } } handleDoubleClick(e) { if (this.props.onDoubleClick != null) this.props.onDoubleClick(e) } handleMouseDown(e) { const config = ConfigManager.get() const clickElement = e.target const targetTag = clickElement.tagName // The direct parent HTML of where was clicked ie "BODY" or "DIV" const lineNumber = getSourceLineNumberByElement(clickElement) // Line location of element clicked. if ( config.editor.switchPreview === 'RIGHTCLICK' && e.buttons === 2 && config.editor.type === 'SPLIT' ) { eventEmitter.emit('topbar:togglemodebutton', 'CODE') } if (e.ctrlKey) { if (config.editor.type === 'SPLIT') { if (lineNumber !== -1) { eventEmitter.emit('line:jump', lineNumber) } } else { if (lineNumber !== -1) { eventEmitter.emit('editor:focus') eventEmitter.emit('line:jump', lineNumber) } } } if (this.props.onMouseDown != null && targetTag === 'BODY') this.props.onMouseDown(e) } handleMouseUp(e) { if (!this.props.onMouseUp) return if (e.target != null && e.target.tagName === 'A') { return null } if (this.props.onMouseUp != null) this.props.onMouseUp(e) } handleSaveAsText() { this.exportAsDocument('txt') } handleSaveAsMd() { this.exportAsDocument('md', formatMarkdown(this.props)) } handleSaveAsHtml() { this.exportAsDocument('html', formatHTML(this.props)) } handleSaveAsPdf() { this.exportAsDocument('pdf', formatPDF(this.props)) } handlePrint() { this.refs.root.contentWindow.print() } exportAsDocument(fileType, contentFormatter) { const note = this.props.getNote() const options = { defaultPath: filenamify(note.title, { replacement: '_' }), filters: [{ name: 'Documents', extensions: [fileType] }], properties: ['openFile', 'createDirectory'] } dialog.showSaveDialog(remote.getCurrentWindow(), options, filename => { if (filename) { const storagePath = this.props.storagePath exportNote(storagePath, note, filename, contentFormatter) .then(res => { dialog.showMessageBox(remote.getCurrentWindow(), { type: 'info', message: `Exported to ${filename}`, buttons: [i18n.__('Ok')] }) }) .catch(err => { dialog.showErrorBox( 'Export error', err ? err.message || err : 'Unexpected error during export' ) throw err }) } }) } fixDecodedURI(node) { if ( node && node.children.length === 1 && typeof node.children[0] === 'string' ) { const { innerText, href } = node node.innerText = mdurl.decode(href) === innerText ? href : innerText } } getScrollBarStyle() { const { theme } = this.props return uiThemes.some(item => item.name === theme && item.isDark) ? scrollBarDarkStyle : scrollBarStyle } componentDidMount() { const { onDrop } = this.props this.refs.root.setAttribute('sandbox', 'allow-scripts') this.refs.root.contentWindow.document.body.addEventListener( 'contextmenu', this.contextMenuHandler ) let styles = ` ` CSS_FILES.forEach(file => { styles += `` }) this.refs.root.contentWindow.document.head.innerHTML = styles this.rewriteIframe() this.applyStyle() this.refs.root.contentWindow.document.addEventListener( 'mousedown', this.mouseDownHandler ) this.refs.root.contentWindow.document.addEventListener( 'mouseup', this.mouseUpHandler ) this.refs.root.contentWindow.document.addEventListener( 'dblclick', this.DoubleClickHandler ) this.refs.root.contentWindow.document.addEventListener( 'drop', onDrop || this.preventImageDroppedHandler ) this.refs.root.contentWindow.document.addEventListener( 'dragover', this.preventImageDroppedHandler ) this.refs.root.contentWindow.document.addEventListener( 'scroll', this.scrollHandler ) this.refs.root.contentWindow.addEventListener('resize', this.resizeHandler) eventEmitter.on('export:save-text', this.saveAsTextHandler) eventEmitter.on('export:save-md', this.saveAsMdHandler) eventEmitter.on('export:save-html', this.saveAsHtmlHandler) eventEmitter.on('export:save-pdf', this.saveAsPdfHandler) eventEmitter.on('print', this.printHandler) } componentWillUnmount() { const { onDrop } = this.props this.refs.root.contentWindow.document.body.removeEventListener( 'contextmenu', this.contextMenuHandler ) this.refs.root.contentWindow.document.removeEventListener( 'mousedown', this.mouseDownHandler ) this.refs.root.contentWindow.document.removeEventListener( 'mouseup', this.mouseUpHandler ) this.refs.root.contentWindow.document.removeEventListener( 'dblclick', this.DoubleClickHandler ) this.refs.root.contentWindow.document.removeEventListener( 'drop', onDrop || this.preventImageDroppedHandler ) this.refs.root.contentWindow.document.removeEventListener( 'dragover', this.preventImageDroppedHandler ) this.refs.root.contentWindow.document.removeEventListener( 'scroll', this.scrollHandler ) this.refs.root.contentWindow.removeEventListener( 'resize', this.resizeHandler ) eventEmitter.off('export:save-text', this.saveAsTextHandler) eventEmitter.off('export:save-md', this.saveAsMdHandler) eventEmitter.off('export:save-html', this.saveAsHtmlHandler) eventEmitter.off('export:save-pdf', this.saveAsPdfHandler) eventEmitter.off('print', this.printHandler) } componentDidUpdate(prevProps) { // actual rewriteIframe function should be called only once let needsRewriteIframe = false if (prevProps.value !== this.props.value) needsRewriteIframe = true if ( prevProps.smartQuotes !== this.props.smartQuotes || prevProps.sanitize !== this.props.sanitize || prevProps.mermaidHTMLLabel !== this.props.mermaidHTMLLabel || prevProps.smartArrows !== this.props.smartArrows || prevProps.breaks !== this.props.breaks || prevProps.lineThroughCheckbox !== this.props.lineThroughCheckbox ) { this.initMarkdown() needsRewriteIframe = true } if ( prevProps.fontFamily !== this.props.fontFamily || prevProps.fontSize !== this.props.fontSize || prevProps.codeBlockFontFamily !== this.props.codeBlockFontFamily || prevProps.codeBlockTheme !== this.props.codeBlockTheme || prevProps.lineNumber !== this.props.lineNumber || prevProps.showCopyNotification !== this.props.showCopyNotification || prevProps.theme !== this.props.theme || prevProps.scrollPastEnd !== this.props.scrollPastEnd || prevProps.allowCustomCSS !== this.props.allowCustomCSS || prevProps.customCSS !== this.props.customCSS || prevProps.RTL !== this.props.RTL ) { this.applyStyle() needsRewriteIframe = true } if (needsRewriteIframe) { this.rewriteIframe() } // Should scroll to top after selecting another note if (prevProps.noteKey !== this.props.noteKey) { this.scrollTo(0, 0) } } applyStyle() { const { fontFamily, fontSize, codeBlockFontFamily, lineNumber, codeBlockTheme, scrollPastEnd, theme, allowCustomCSS, customCSS, RTL } = getStyleParams(this.props) this.getWindow().document.getElementById( 'codeTheme' ).href = getCodeThemeLink(codeBlockTheme) this.getWindow().document.getElementById('style').innerHTML = buildStyle( fontFamily, fontSize, codeBlockFontFamily, lineNumber, scrollPastEnd, theme, allowCustomCSS, customCSS, RTL ) } rewriteIframe() { _.forEach( this.refs.root.contentWindow.document.querySelectorAll( 'input[type="checkbox"]' ), el => { el.removeEventListener('click', this.checkboxClickHandler) } ) _.forEach( this.refs.root.contentWindow.document.querySelectorAll('a'), el => { el.removeEventListener('click', this.linkClickHandler) } ) const { theme, indentSize, showCopyNotification, storagePath, noteKey, sanitize, mermaidHTMLLabel } = this.props let { value, codeBlockTheme } = this.props this.refs.root.contentWindow.document.body.setAttribute('data-theme', theme) if (sanitize === 'NONE') { const splitWithCodeTag = value.split('```') value = escapeHtmlCharactersInCodeTag(splitWithCodeTag) } const renderedHTML = this.markdown.render(value) attachmentManagement.migrateAttachments(value, storagePath, noteKey) this.refs.root.contentWindow.document.body.innerHTML = attachmentManagement.fixLocalURLS( renderedHTML, storagePath ) _.forEach( this.refs.root.contentWindow.document.querySelectorAll( 'input[type="checkbox"]' ), el => { el.addEventListener('click', this.checkboxClickHandler) } ) _.forEach( this.refs.root.contentWindow.document.querySelectorAll('a'), el => { this.fixDecodedURI(el) el.addEventListener('click', this.linkClickHandler) } ) codeBlockTheme = consts.THEMES.find(theme => theme.name === codeBlockTheme) const codeBlockThemeClassName = codeBlockTheme ? codeBlockTheme.className : 'cm-s-default' _.forEach( this.refs.root.contentWindow.document.querySelectorAll('.code code'), el => { let syntax = CodeMirror.findModeByName(convertModeName(el.className)) if (syntax == null) syntax = CodeMirror.findModeByName('Plain Text') CodeMirror.requireMode(syntax.mode, () => { const content = htmlTextHelper.decodeEntities(el.innerHTML) const copyIcon = document.createElement('i') copyIcon.innerHTML = '' copyIcon.onclick = e => { e.preventDefault() e.stopPropagation() copy(content) if (showCopyNotification) { this.notify('Saved to Clipboard!', { body: 'Paste it wherever you want!', silent: true }) } } el.parentNode.appendChild(copyIcon) el.innerHTML = '' el.parentNode.className += ` ${codeBlockThemeClassName}` CodeMirror.runMode(content, syntax.mime, el, { tabSize: indentSize }) }) } ) const opts = {} _.forEach( this.refs.root.contentWindow.document.querySelectorAll('.flowchart'), el => { Raphael.setWindow(this.getWindow()) try { const diagram = flowchart.parse( htmlTextHelper.decodeEntities(el.innerHTML) ) el.innerHTML = '' diagram.drawSVG(el, opts) _.forEach(el.querySelectorAll('a'), el => { el.addEventListener('click', this.linkClickHandler) }) } catch (e) { el.className = 'flowchart-error' el.innerHTML = 'Flowchart parse error: ' + e.message } } ) _.forEach( this.refs.root.contentWindow.document.querySelectorAll('.sequence'), el => { Raphael.setWindow(this.getWindow()) try { const diagram = SequenceDiagram.parse( htmlTextHelper.decodeEntities(el.innerHTML) ) el.innerHTML = '' diagram.drawSVG(el, { theme: 'simple' }) _.forEach(el.querySelectorAll('a'), el => { el.addEventListener('click', this.linkClickHandler) }) } catch (e) { el.className = 'sequence-error' el.innerHTML = 'Sequence diagram parse error: ' + e.message } } ) _.forEach( this.refs.root.contentWindow.document.querySelectorAll('.chart'), el => { try { const format = el.attributes.getNamedItem('data-format').value const chartConfig = format === 'yaml' ? yaml.load(el.innerHTML) : JSON.parse(el.innerHTML) el.innerHTML = '' const canvas = document.createElement('canvas') el.appendChild(canvas) const height = el.attributes.getNamedItem('data-height') if (height && height.value !== 'undefined') { el.style.height = height.value + 'vh' canvas.height = height.value + 'vh' } // eslint-disable-next-line no-unused-vars const chart = new Chart(canvas, chartConfig) } catch (e) { el.className = 'chart-error' el.innerHTML = 'chartjs diagram parse error: ' + e.message } } ) _.forEach( this.refs.root.contentWindow.document.querySelectorAll('.mermaid'), el => { mermaidRender( el, htmlTextHelper.decodeEntities(el.innerHTML), theme, mermaidHTMLLabel ) } ) _.forEach( this.refs.root.contentWindow.document.querySelectorAll('.gallery'), el => { const images = el.innerHTML.split(/\n/g).filter(i => i.length > 0) el.innerHTML = '' const height = el.attributes.getNamedItem('data-height') if (height && height.value !== 'undefined') { el.style.height = height.value + 'vh' } let autoplay = el.attributes.getNamedItem('data-autoplay') if (autoplay && autoplay.value !== 'undefined') { autoplay = parseInt(autoplay.value, 10) || 0 } else { autoplay = 0 } render(, el) } ) const markdownPreviewIframe = document.querySelector('.MarkdownPreview') const rect = markdownPreviewIframe.getBoundingClientRect() const config = { attributes: true, subtree: true } const imgObserver = new MutationObserver(mutationList => { for (const mu of mutationList) { if (mu.target.className === 'carouselContent-enter-done') { this.setImgOnClickEventHelper(mu.target, rect) break } } }) const imgList = markdownPreviewIframe.contentWindow.document.body.querySelectorAll( 'img' ) for (const img of imgList) { const parentEl = img.parentElement this.setImgOnClickEventHelper(img, rect) imgObserver.observe(parentEl, config) } const aList = markdownPreviewIframe.contentWindow.document.body.querySelectorAll( 'a' ) for (const a of aList) { a.removeEventListener('click', this.linkClickHandler) a.addEventListener('click', this.linkClickHandler) } } setImgOnClickEventHelper(img, rect) { img.onclick = () => { const widthMagnification = document.body.clientWidth / img.width const heightMagnification = document.body.clientHeight / img.height const baseOnWidth = widthMagnification < heightMagnification const magnification = baseOnWidth ? widthMagnification : heightMagnification const zoomImgWidth = img.width * magnification const zoomImgHeight = img.height * magnification const zoomImgTop = (document.body.clientHeight - zoomImgHeight) / 2 const zoomImgLeft = (document.body.clientWidth - zoomImgWidth) / 2 const originalImgTop = img.y + rect.top const originalImgLeft = img.x + rect.left const originalImgRect = { top: `${originalImgTop}px`, left: `${originalImgLeft}px`, width: `${img.width}px`, height: `${img.height}px` } const zoomInImgRect = { top: `${baseOnWidth ? zoomImgTop : 0}px`, left: `${baseOnWidth ? 0 : zoomImgLeft}px`, width: `${zoomImgWidth}px`, height: `${zoomImgHeight}px` } const animationSpeed = 300 const zoomImg = document.createElement('img') zoomImg.src = img.src zoomImg.style = ` position: absolute; top: ${baseOnWidth ? zoomImgTop : 0}px; left: ${baseOnWidth ? 0 : zoomImgLeft}px; width: ${zoomImgWidth}; height: ${zoomImgHeight}px; ` zoomImg.animate([originalImgRect, zoomInImgRect], animationSpeed) const overlay = document.createElement('div') overlay.style = ` background-color: rgba(0,0,0,0.5); cursor: zoom-out; position: absolute; top: 0; left: 0; width: 100%; height: ${document.body.clientHeight}px; z-index: 100; ` overlay.onclick = () => { zoomImg.style = ` position: absolute; top: ${originalImgTop}px; left: ${originalImgLeft}px; width: ${img.width}px; height: ${img.height}px; ` const zoomOutImgAnimation = zoomImg.animate( [zoomInImgRect, originalImgRect], animationSpeed ) zoomOutImgAnimation.onfinish = () => overlay.remove() } overlay.appendChild(zoomImg) document.body.appendChild(overlay) } } handleResize() { _.forEach( this.refs.root.contentWindow.document.querySelectorAll('svg[ratio]'), el => { el.setAttribute('height', el.clientWidth / el.getAttribute('ratio')) } ) } focus() { this.refs.root.focus() } getWindow() { return this.refs.root.contentWindow } /** * @public * @param {Number} targetLine */ scrollToLine(targetLine) { const blocks = this.getWindow().document.querySelectorAll( 'body [data-line]' ) for (let index = 0; index < blocks.length; index++) { let block = blocks[index] const line = parseInt(block.getAttribute('data-line')) if (line > targetLine || index === blocks.length - 1) { block = blocks[index - 1] block != null && this.scrollTo(0, block.offsetTop) break } } } /** * `document.body.scrollTo` * @param {Number} x * @param {Number} y */ scrollTo(x, y) { this.getWindow().document.body.scrollTo(x, y) } preventImageDroppedHandler(e) { e.preventDefault() e.stopPropagation() } notify(title, options) { if (global.process.platform === 'win32') { options.icon = path.join( 'file://', global.__dirname, '../../resources/app.png' ) } return new window.Notification(title, options) } handleLinkClick(e) { e.preventDefault() e.stopPropagation() const el = e.target.closest('a[href]') if (!el) return const rawHref = el.getAttribute('href') const { dispatch } = this.props if (!rawHref) return // not checked href because parser will create file://... string for [empty link]() const parser = document.createElement('a') parser.href = rawHref const isStartWithHash = rawHref[0] === '#' const { href, hash } = parser const linkHash = hash === '' ? rawHref : hash // needed because we're having special link formats that are removed by parser e.g. :line:10 const extractIdRegex = /file:\/\/.*main.?\w*.html#/ // file://path/to/main(.development.)html const regexNoteInternalLink = new RegExp(`${extractIdRegex.source}(.+)`) if (isStartWithHash || regexNoteInternalLink.test(rawHref)) { const posOfHash = linkHash.indexOf('#') if (posOfHash > -1) { const extractedId = linkHash.slice(posOfHash + 1) const targetId = mdurl.encode(extractedId) const targetElement = this.getWindow().document.getElementById(targetId) if (targetElement != null) { this.scrollTo(0, targetElement.offsetTop) } return } } // this will match the new uuid v4 hash and the old hash // e.g. // :note:1c211eb7dcb463de6490 and // :note:7dd23275-f2b4-49cb-9e93-3454daf1af9c const regexIsNoteLink = /^:note:([a-zA-Z0-9-]{20,36})$/ if (regexIsNoteLink.test(linkHash)) { eventEmitter.emit('list:jump', linkHash.replace(':note:', '')) return } const regexIsLine = /^:line:[0-9]/ if (regexIsLine.test(linkHash)) { const numberPattern = /\d+/g const lineNumber = parseInt(linkHash.match(numberPattern)[0]) eventEmitter.emit('line:jump', lineNumber) return } // this will match the old link format storage.key-note.key // e.g. // 877f99c3268608328037-1c211eb7dcb463de6490 const regexIsLegacyNoteLink = /^(.{20})-(.{20})$/ if (regexIsLegacyNoteLink.test(linkHash)) { eventEmitter.emit('list:jump', linkHash.split('-')[1]) return } const regexIsTagLink = /^:tag:([\w]+)$/ if (regexIsTagLink.test(rawHref)) { const tag = rawHref.match(regexIsTagLink)[1] dispatch(push(`/tags/${encodeURIComponent(tag)}`)) return } // other case this.openExternal(href) } openExternal(href) { try { const success = shell.openExternal(href) || shell.openExternal(decodeURI(href)) if (!success) console.error('failed to open url ' + href) } catch (e) { // URI Error threw from decodeURI console.error(e) } } render() { const { className, style, tabIndex } = this.props return ( \n\n## Docs :memo:\n- [Boostnote | Boost your happiness, productivity and creativity.](https://hackernoon.com/boostnote-boost-your-happiness-productivity-and-creativity-315034efeebe)\n- [Cloud Syncing & Backups](https://github.com/BoostIO/Boostnote/wiki/Cloud-Syncing-and-Backup)\n- [How to sync your data across Desktop and Mobile apps](https://github.com/BoostIO/Boostnote/wiki/Sync-Data-Across-Desktop-and-Mobile-apps)\n- [Convert data from **Evernote** to Boostnote.](https://github.com/BoostIO/Boostnote/wiki/Evernote)\n- [Keyboard Shortcuts](https://github.com/BoostIO/Boostnote/wiki/Keyboard-Shortcuts)\n- [Keymaps in Editor mode](https://github.com/BoostIO/Boostnote/wiki/Keymaps-in-Editor-mode)\n- [How to set syntax highlight in Snippet note](https://github.com/BoostIO/Boostnote/wiki/Syntax-Highlighting)\n\n---\n\n## Article Archive :books:\n- [Reddit English](http://bit.ly/2mOJPu7)\n- [Reddit Spanish](https://www.reddit.com/r/boostnote_es/)\n- [Reddit Chinese](https://www.reddit.com/r/boostnote_cn/)\n- [Reddit Japanese](https://www.reddit.com/r/boostnote_jp/)\n\n---\n\n## Community :beers:\n- [GitHub](http://bit.ly/2AWWzkD)\n- [Twitter](http://bit.ly/2z8BUJZ)\n- [Facebook Group](http://bit.ly/2jcca8t)' }) .then(note => { store.dispatch({ type: 'UPDATE_NOTE', note: note }) }) return Promise.resolve(defaultSnippetNote) .then(defaultMarkdownNote) .then(() => data.storage) }) .then(storage => { store.dispatch(push('/storages/' + storage.key)) }) .catch(err => { throw err }) } componentDidMount() { const { dispatch, config } = this.props this.refreshTheme = setInterval(() => { const conf = ConfigManager.get() chooseTheme(conf) }, 5 * 1000) chooseTheme(config) applyTheme(config.ui.theme) if (getLocales().indexOf(config.ui.language) !== -1) { i18n.setLocale(config.ui.language) } else { i18n.setLocale('en') } applyShortcuts() // Reload all data dataApi.init().then(data => { dispatch({ type: 'INIT_ALL', storages: data.storages, notes: data.notes }) if (data.storages.length < 1) { this.init() } }) // eslint-disable-next-line no-undef delete CodeMirror.keyMap.emacs['Ctrl-V'] eventEmitter.on('editor:fullscreen', this.toggleFullScreen) eventEmitter.on( 'menubar:togglemenubar', this.toggleMenuBarVisible.bind(this) ) eventEmitter.on('dispatch:push', this.changeRoutePush.bind(this)) eventEmitter.on('update', () => ipcRenderer.send('update-check', 'manual')) } componentWillUnmount() { eventEmitter.off('editor:fullscreen', this.toggleFullScreen) eventEmitter.off( 'menubar:togglemenubar', this.toggleMenuBarVisible.bind(this) ) eventEmitter.off('dispatch:push', this.changeRoutePush.bind(this)) clearInterval(this.refreshTheme) } changeRoutePush(event, destination) { const { dispatch } = this.props dispatch(push(destination)) } toggleMenuBarVisible() { const { config } = this.props const { ui } = config const newUI = Object.assign(ui, { showMenuBar: !ui.showMenuBar }) const newConfig = Object.assign(config, newUI) ConfigManager.set(newConfig) } handleLeftSlideMouseDown(e) { e.preventDefault() this.setState({ isLeftSliderFocused: true }) } handleRightSlideMouseDown(e) { e.preventDefault() this.setState({ isRightSliderFocused: true }) } handleMouseUp(e) { // Change width of NoteList component. if (this.state.isRightSliderFocused) { this.setState( { isRightSliderFocused: false }, () => { const { dispatch } = this.props const newListWidth = this.state.listWidth // TODO: ConfigManager should dispatch itself. ConfigManager.set({ listWidth: newListWidth }) dispatch({ type: 'SET_LIST_WIDTH', listWidth: newListWidth }) } ) } // Change width of SideNav component. if (this.state.isLeftSliderFocused) { this.setState( { isLeftSliderFocused: false }, () => { const { dispatch } = this.props const navWidth = this.state.navWidth // TODO: ConfigManager should dispatch itself. ConfigManager.set({ navWidth }) dispatch({ type: 'SET_NAV_WIDTH', navWidth }) } ) } } handleMouseMove(e) { if (this.state.isRightSliderFocused) { const offset = this.refs.body.getBoundingClientRect().left let newListWidth = e.pageX - offset if (newListWidth < 180) { newListWidth = 180 } else if (newListWidth > 600) { newListWidth = 600 } this.setState({ listWidth: newListWidth }) } if (this.state.isLeftSliderFocused) { let navWidth = e.pageX if (navWidth < 80) { navWidth = 80 } else if (navWidth > 600) { navWidth = 600 } this.setState({ navWidth: navWidth }) } } handleFullScreenButton(e) { this.setState({ fullScreen: !this.state.fullScreen }, () => { const noteDetail = document.querySelector('.NoteDetail') const noteList = document.querySelector('.NoteList') const mainBody = document.querySelector('#main-body') if (this.state.fullScreen) { this.hideLeftLists(noteDetail, noteList, mainBody) } else { this.showLeftLists(noteDetail, noteList, mainBody) } }) } hideLeftLists(noteDetail, noteList, mainBody) { this.setState({ noteDetailWidth: noteDetail.style.left }) this.setState({ mainBodyWidth: mainBody.style.left }) noteDetail.style.left = '0px' mainBody.style.left = '0px' noteList.style.display = 'none' } showLeftLists(noteDetail, noteList, mainBody) { noteDetail.style.left = this.state.noteDetailWidth mainBody.style.left = this.state.mainBodyWidth noteList.style.display = 'inline' } render() { const { config } = this.props // the width of the navigation bar when it is folded/collapsed const foldedNavigationWidth = 44 return (
this.handleMouseMove(e)} onMouseUp={e => this.handleMouseUp(e)} > {!config.isSideNavFolded && (
this.handleLeftSlideMouseDown(e)} draggable='false' >
)}
this.handleRightSlideMouseDown(e)} draggable='false' >
) } } Main.childContextTypes = { status: PropTypes.shape({ updateReady: PropTypes.bool.isRequired }).isRequired, config: PropTypes.shape({}).isRequired } Main.propTypes = { dispatch: PropTypes.func, data: PropTypes.shape({}).isRequired } export default connect(x => x)(CSSModules(Main, styles)) ================================================ FILE: browser/main/Main.styl ================================================ .root absolute top left bottom right .body absolute right top bottom left $sideNav-width .body--expanded @extend .body left $sideNav--folded-width .slider absolute top bottom top -2px width 0 z-index 0 .slider-right @extend .slider width 1px z-index 0 .slider--active @extend .slider .slider-right--active @extend .slider-right .slider-hitbox absolute top bottom left right width 7px left -3px z-index 10 cursor col-resize body[data-theme="dark"] .root absolute top left bottom right .slider-right .slider-right--active box-shadow none ================================================ FILE: browser/main/NewNoteButton/NewNoteButton.styl ================================================ .root position relative background-color $ui-noteList-backgroundColor height $topBar-height - 1 margin-left: auto; width: 64px; .root--expanded @extend .root $control-height = 34px .control position absolute top 13px right 7px height $control-height display flex .control-newNoteButton display block width 32px height $control-height - 2 navButtonColor() font-size 16px line-height 28px padding 0 &:active border-color $ui-button--active-backgroundColor &:hover .control-newNoteButton-tooltip opacity 1 .control-newNoteButton-tooltip tooltip() position absolute pointer-events none top 26px right -43px width 124px z-index 200 padding 5px line-height normal border-radius 2px opacity 0 transition 0.1s body[data-theme="white"] .root, .root--expanded background-color $ui-white-noteList-backgroundColor .control-newNoteButton background-color $ui-white-noteList-backgroundColor body[data-theme="dark"] .root, .root--expanded background-color $ui-dark-noteList-backgroundColor .control border-color $ui-dark-borderColor .control-newNoteButton color $ui-inactive-text-color border-color $ui-dark-borderColor background-color $ui-dark-noteList-backgroundColor &:hover transition 0.15s color $ui-dark-text-color &:active background-color alpha($ui-dark-button--active-backgroundColor, 20%) border-color $ui-dark-button--active-backgroundColor .control-newNoteButton-tooltip darkTooltip() apply-theme(theme) body[data-theme={theme}] .root, .root--expanded background-color get-theme-var(theme, 'noteList-backgroundColor') for theme in 'solarized-dark' 'dracula' apply-theme(theme) for theme in $themes apply-theme(theme) ================================================ FILE: browser/main/NewNoteButton/index.js ================================================ import PropTypes from 'prop-types' import React from 'react' import CSSModules from 'browser/lib/CSSModules' import styles from './NewNoteButton.styl' import _ from 'lodash' import modal from 'browser/main/lib/modal' import NewNoteModal from 'browser/main/modals/NewNoteModal' import eventEmitter from 'browser/main/lib/eventEmitter' import i18n from 'browser/lib/i18n' import { createMarkdownNote, createSnippetNote } from 'browser/lib/newNote' const { remote } = require('electron') const { dialog } = remote const OSX = window.process.platform === 'darwin' class NewNoteButton extends React.Component { constructor(props) { super(props) this.state = {} this.handleNewNoteButtonClick = this.handleNewNoteButtonClick.bind(this) } componentDidMount() { eventEmitter.on('top:new-note', this.handleNewNoteButtonClick) } componentWillUnmount() { eventEmitter.off('top:new-note', this.handleNewNoteButtonClick) } handleNewNoteButtonClick(e) { const { location, dispatch, match: { params }, config } = this.props const { storage, folder } = this.resolveTargetFolder() if (config.ui.defaultNote === 'MARKDOWN_NOTE') { createMarkdownNote( storage.key, folder.key, dispatch, location, params, config ) } else if (config.ui.defaultNote === 'SNIPPET_NOTE') { createSnippetNote( storage.key, folder.key, dispatch, location, params, config ) } else { modal.open(NewNoteModal, { storage: storage.key, folder: folder.key, dispatch, location, params, config }) } } resolveTargetFolder() { const { data, match: { params } } = this.props let storage = data.storageMap.get(params.storageKey) // Find first storage if (storage == null) { for (const kv of data.storageMap) { storage = kv[1] break } } if (storage == null) this.showMessageBox(i18n.__('No storage to create a note')) const folder = _.find(storage.folders, { key: params.folderKey }) || storage.folders[0] if (folder == null) this.showMessageBox(i18n.__('No folder to create a note')) return { storage, folder } } showMessageBox(message) { dialog.showMessageBox(remote.getCurrentWindow(), { type: 'warning', message: message, buttons: ['OK'] }) } render() { const { config, style } = this.props return (
) } } NewNoteButton.propTypes = { dispatch: PropTypes.func, config: PropTypes.shape({ isSideNavFolded: PropTypes.bool }) } export default CSSModules(NewNoteButton, styles) ================================================ FILE: browser/main/NoteList/NoteList.styl ================================================ $control-height = 30px .root absolute left bottom top $topBar-height - 1 background-color $ui-noteList-backgroundColor .control absolute top left right user-select none height $control-height font-size 12px line-height 25px display flex background-color $ui-noteList-backgroundColor color $ui-inactive-text-color .control-sortBy flex 1 padding-left 22px .control-sortBy-select appearance: none; margin-left 5px color $ui-inactive-text-color padding 0 border none background-color transparent outline none cursor pointer font-size 12px &:hover transition 0.2s color $ui-text-color .control-button-area margin-right 12px .control-button width 25px padding 0 background-color transparent border none color alpha($ui-inactive-text-color, 60%) transition 0.15s &:active, &:active:hover color $ui-inactive-text-color &:hover color $ui-inactive-text-color .control-button--active @extend .control-button color $ui-inactive-text-color &:hover color $ui-inactive-text-color .list absolute left right bottom top $control-height overflow auto apply-theme(theme) body[data-theme={theme}] .root border-color get-theme-var(theme, 'borderColor') background-color get-theme-var(theme, 'noteList-backgroundColor') .control background-color get-theme-var(theme, 'noteList-backgroundColor') border-color get-theme-var(theme, 'borderColor') .control-sortBy-select &:hover transition 0.2s color get-theme-var(theme, 'text-color') background-color: get-theme-var(theme, 'noteList-backgroundColor') .control-button color get-theme-var(theme, 'inactive-text-color') &:hover color get-theme-var(theme, 'text-color') .control-button--active color get-theme-var(theme, 'text-color') &:active color get-theme-var(theme, 'text-color') for theme in 'white' 'dark' 'solarized-dark' 'dracula' apply-theme(theme) for theme in $themes apply-theme(theme) ================================================ FILE: browser/main/NoteList/index.js ================================================ /* global electron */ import PropTypes from 'prop-types' import React from 'react' import CSSModules from 'browser/lib/CSSModules' import styles from './NoteList.styl' import moment from 'moment' import _ from 'lodash' import ee from 'browser/main/lib/eventEmitter' import dataApi from 'browser/main/lib/dataApi' import attachmentManagement from 'browser/main/lib/dataApi/attachmentManagement' import ConfigManager from 'browser/main/lib/ConfigManager' import NoteItem from 'browser/components/NoteItem' import NoteItemSimple from 'browser/components/NoteItemSimple' import searchFromNotes from 'browser/lib/search' import fs from 'fs' import path from 'path' import { push, replace } from 'connected-react-router' import copy from 'copy-to-clipboard' import AwsMobileAnalyticsConfig from 'browser/main/lib/AwsMobileAnalyticsConfig' import Markdown from '../../lib/markdown' import i18n from 'browser/lib/i18n' import { confirmDeleteNote } from 'browser/lib/confirmDeleteNote' import context from 'browser/lib/context' import filenamify from 'filenamify' import queryString from 'query-string' const { remote } = require('electron') const { dialog } = remote const WP_POST_PATH = '/wp/v2/posts' const regexMatchStartingTitleNumber = new RegExp('^([0-9]*.?[0-9]+).*$') function sortByCreatedAt(a, b) { return new Date(b.createdAt) - new Date(a.createdAt) } function sortByAlphabetical(a, b) { const matchA = regexMatchStartingTitleNumber.exec(a.title) const matchB = regexMatchStartingTitleNumber.exec(b.title) if (matchA && matchA.length === 2 && matchB && matchB.length === 2) { // Both note titles are starting with a float. We will compare it now. const floatA = parseFloat(matchA[1]) const floatB = parseFloat(matchB[1]) const diff = floatA - floatB if (diff !== 0) { return diff } // The float values are equal. We will compare the full title. } return a.title.localeCompare(b.title) } function sortByUpdatedAt(a, b) { return new Date(b.updatedAt) - new Date(a.updatedAt) } function findNoteByKey(notes, noteKey) { return notes.find(note => note.key === noteKey) } function findNotesByKeys(notes, noteKeys) { return notes.filter(note => noteKeys.includes(getNoteKey(note))) } function getNoteKey(note) { return note.key } class NoteList extends React.Component { constructor(props) { super(props) this.selectNextNoteHandler = () => { this.selectNextNote() } this.selectPriorNoteHandler = () => { this.selectPriorNote() } this.focusHandler = () => { this.refs.list.focus() } this.alertIfSnippetHandler = (event, msg) => { this.alertIfSnippet(msg) } this.importFromFileHandler = this.importFromFile.bind(this) this.jumpNoteByHash = this.jumpNoteByHashHandler.bind(this) this.handleNoteListKeyUp = this.handleNoteListKeyUp.bind(this) this.handleNoteListBlur = this.handleNoteListBlur.bind(this) this.getNoteKeyFromTargetIndex = this.getNoteKeyFromTargetIndex.bind(this) this.cloneNote = this.cloneNote.bind(this) this.deleteNote = this.deleteNote.bind(this) this.focusNote = this.focusNote.bind(this) this.pinToTop = this.pinToTop.bind(this) this.getNoteStorage = this.getNoteStorage.bind(this) this.getNoteFolder = this.getNoteFolder.bind(this) this.getViewType = this.getViewType.bind(this) this.restoreNote = this.restoreNote.bind(this) this.copyNoteLink = this.copyNoteLink.bind(this) this.navigate = this.navigate.bind(this) // TODO: not Selected noteKeys but SelectedNote(for reusing) this.state = { ctrlKeyDown: false, shiftKeyDown: false, prevShiftNoteIndex: -1, selectedNoteKeys: [] } this.contextNotes = [] } componentDidMount() { this.refreshTimer = setInterval(() => this.forceUpdate(), 60 * 1000) ee.on('list:next', this.selectNextNoteHandler) ee.on('list:prior', this.selectPriorNoteHandler) ee.on('list:clone', this.cloneNote) ee.on('list:focus', this.focusHandler) ee.on('list:isMarkdownNote', this.alertIfSnippetHandler) ee.on('import:file', this.importFromFileHandler) ee.on('list:jump', this.jumpNoteByHash) ee.on('list:navigate', this.navigate) } componentWillReceiveProps(nextProps) { if (nextProps.location.pathname !== this.props.location.pathname) { this.resetScroll() } } resetScroll() { this.refs.list.scrollTop = 0 } componentWillUnmount() { clearInterval(this.refreshTimer) ee.off('list:next', this.selectNextNoteHandler) ee.off('list:prior', this.selectPriorNoteHandler) ee.off('list:clone', this.cloneNote) ee.off('list:focus', this.focusHandler) ee.off('list:isMarkdownNote', this.alertIfSnippetHandler) ee.off('import:file', this.importFromFileHandler) ee.off('list:jump', this.jumpNoteByHash) } componentDidUpdate(prevProps) { const { dispatch, location } = this.props const { selectedNoteKeys } = this.state const visibleNoteKeys = this.notes && this.notes.map(note => note.key) const note = this.notes && this.notes[0] const key = location.search && queryString.parse(location.search).key const prevKey = prevProps.location.search && queryString.parse(prevProps.location.search).key const noteKey = visibleNoteKeys.includes(prevKey) ? prevKey : note && note.key if (note && location.search === '') { if (!location.pathname.match(/\/searched/)) this.contextNotes = this.getContextNotes() // A visible note is an active note if (!selectedNoteKeys.includes(noteKey)) { if (selectedNoteKeys.length === 1) selectedNoteKeys.pop() selectedNoteKeys.push(noteKey) ee.emit('list:moved') } dispatch( replace({ // was passed with context - we can use connected router here pathname: location.pathname, search: queryString.stringify({ key: noteKey }) }) ) return } // Auto scroll if (_.isString(key) && prevKey === key) { const targetIndex = this.getTargetIndex() if (targetIndex > -1) { const list = this.refs.list const item = list.childNodes[targetIndex] if (item == null) return false const overflowBelow = item.offsetTop + item.clientHeight - list.clientHeight - list.scrollTop > 0 if (overflowBelow) { list.scrollTop = item.offsetTop + item.clientHeight - list.clientHeight } const overflowAbove = list.scrollTop > item.offsetTop if (overflowAbove) { list.scrollTop = item.offsetTop } } } } focusNote(selectedNoteKeys, noteKey, pathname) { const { dispatch } = this.props this.setState({ selectedNoteKeys }) dispatch( push({ pathname, search: queryString.stringify({ key: noteKey }) }) ) } getNoteKeyFromTargetIndex(targetIndex) { const note = Object.assign({}, this.notes[targetIndex]) const noteKey = getNoteKey(note) return noteKey } selectPriorNote() { if (this.notes == null || this.notes.length === 0) { return } let { selectedNoteKeys } = this.state const { shiftKeyDown } = this.state const { location } = this.props let targetIndex = this.getTargetIndex() if (targetIndex === 0) { return } targetIndex-- if (!shiftKeyDown) { selectedNoteKeys = [] } const priorNoteKey = this.getNoteKeyFromTargetIndex(targetIndex) if (selectedNoteKeys.includes(priorNoteKey)) { selectedNoteKeys.pop() } else { selectedNoteKeys.push(priorNoteKey) } this.focusNote(selectedNoteKeys, priorNoteKey, location.pathname) ee.emit('list:moved') } selectNextNote() { if (this.notes == null || this.notes.length === 0) { return } let { selectedNoteKeys } = this.state const { shiftKeyDown } = this.state const { location } = this.props let targetIndex = this.getTargetIndex() const isTargetLastNote = targetIndex === this.notes.length - 1 if (isTargetLastNote && shiftKeyDown) { return } else if (isTargetLastNote) { targetIndex = 0 } else { targetIndex++ if (targetIndex < 0) targetIndex = 0 else if (targetIndex > this.notes.length - 1) targetIndex = this.notes.length - 1 } if (!shiftKeyDown) { selectedNoteKeys = [] } const nextNoteKey = this.getNoteKeyFromTargetIndex(targetIndex) if (selectedNoteKeys.includes(nextNoteKey)) { selectedNoteKeys.pop() } else { selectedNoteKeys.push(nextNoteKey) } this.focusNote(selectedNoteKeys, nextNoteKey, location.pathname) ee.emit('list:moved') } jumpNoteByHashHandler(event, noteHash) { const { data } = this.props // first argument event isn't used. if (this.notes === null || this.notes.length === 0) { return } const selectedNoteKeys = [noteHash] let locationToSelect = '/home' const noteByHash = data.noteMap .map(note => note) .find(note => note.key === noteHash) if (noteByHash !== undefined) { locationToSelect = '/storages/' + noteByHash.storage + '/folders/' + noteByHash.folder } this.focusNote(selectedNoteKeys, noteHash, locationToSelect) ee.emit('list:moved') } handleNoteListKeyDown(e) { if (e.metaKey) return true // A key if (e.keyCode === 65 && !e.shiftKey) { e.preventDefault() ee.emit('top:new-note') } // E key if (e.keyCode === 69) { e.preventDefault() ee.emit('detail:focus') } // L or S key if (e.keyCode === 76 || e.keyCode === 83) { e.preventDefault() ee.emit('top:focus-search') } // UP or K key if (e.keyCode === 38 || e.keyCode === 75) { e.preventDefault() this.selectPriorNote() } // DOWN or J key if (e.keyCode === 40 || e.keyCode === 74) { e.preventDefault() this.selectNextNote() } if (e.shiftKey) { this.setState({ shiftKeyDown: true }) } else if (e.ctrlKey) { this.setState({ ctrlKeyDown: true }) } } handleNoteListKeyUp(e) { if (!e.shiftKey) { this.setState({ shiftKeyDown: false }) } if (!e.ctrlKey) { this.setState({ ctrlKeyDown: false }) } } handleNoteListBlur() { this.setState({ shiftKeyDown: false, ctrlKeyDown: false }) } getNotes() { const { data, match: { params }, location } = this.props if ( location.pathname.match(/\/home/) || location.pathname.match(/alltags/) ) { const allNotes = data.noteMap.map(note => note) this.contextNotes = allNotes return allNotes } if (location.pathname.match(/\/starred/)) { const starredNotes = data.starredSet .toJS() .map(uniqueKey => data.noteMap.get(uniqueKey)) this.contextNotes = starredNotes return starredNotes } if (location.pathname.match(/\/searched/)) { const searchInputText = params.searchword const allNotes = data.noteMap.map(note => note) this.contextNotes = allNotes if (searchInputText === undefined || searchInputText === '') { return this.sortByPin(this.contextNotes) } return searchFromNotes(this.contextNotes, searchInputText) } if (location.pathname.match(/\/trashed/)) { const trashedNotes = data.trashedSet .toJS() .map(uniqueKey => data.noteMap.get(uniqueKey)) this.contextNotes = trashedNotes return trashedNotes } if (location.pathname.match(/\/tags/)) { const listOfTags = params.tagname.split(' ') return data.noteMap .map(note => { return note }) .filter(note => listOfTags.every(tag => note.tags.includes(tag))) } return this.getContextNotes() } // get notes in the current folder getContextNotes() { const { data, match: { params } } = this.props const storageKey = params.storageKey const folderKey = params.folderKey const storage = data.storageMap.get(storageKey) if (storage === undefined) return [] const folder = _.find(storage.folders, { key: folderKey }) if (folder === undefined) { const storageNoteSet = data.storageNoteMap.get(storage.key) || [] return storageNoteSet.map(uniqueKey => data.noteMap.get(uniqueKey)) } const folderNoteKeyList = data.folderNoteMap.get(`${storage.key}-${folder.key}`) || [] return folderNoteKeyList.map(uniqueKey => data.noteMap.get(uniqueKey)) } sortByPin(unorderedNotes) { const pinnedNotes = [] const unpinnedNotes = [] unorderedNotes.forEach(note => { if (note.isPinned) { pinnedNotes.push(note) } else { unpinnedNotes.push(note) } }) return pinnedNotes.concat(unpinnedNotes) } getNoteIndexByKey(noteKey) { return this.notes.findIndex(note => { if (!note) return -1 return note.key === noteKey }) } handleNoteClick(e, uniqueKey) { const { dispatch, location } = this.props let { selectedNoteKeys, prevShiftNoteIndex } = this.state const { ctrlKeyDown, shiftKeyDown } = this.state const hasSelectedNoteKey = selectedNoteKeys.length > 0 if (ctrlKeyDown && selectedNoteKeys.includes(uniqueKey)) { const newSelectedNoteKeys = selectedNoteKeys.filter( noteKey => noteKey !== uniqueKey ) this.setState({ selectedNoteKeys: newSelectedNoteKeys }) return } if (!ctrlKeyDown && !shiftKeyDown) { selectedNoteKeys = [] } if (!shiftKeyDown) { prevShiftNoteIndex = -1 } selectedNoteKeys.push(uniqueKey) if (shiftKeyDown && hasSelectedNoteKey) { let firstShiftNoteIndex = this.getNoteIndexByKey(selectedNoteKeys[0]) // Shift selection can either start from first note in the exisiting selectedNoteKeys // or previous first shift note index firstShiftNoteIndex = firstShiftNoteIndex > prevShiftNoteIndex ? firstShiftNoteIndex : prevShiftNoteIndex const lastShiftNoteIndex = this.getNoteIndexByKey(uniqueKey) const startIndex = firstShiftNoteIndex < lastShiftNoteIndex ? firstShiftNoteIndex : lastShiftNoteIndex const endIndex = firstShiftNoteIndex > lastShiftNoteIndex ? firstShiftNoteIndex : lastShiftNoteIndex selectedNoteKeys = [] for (let i = startIndex; i <= endIndex; i++) { selectedNoteKeys.push(this.notes[i].key) } if (prevShiftNoteIndex < 0) { prevShiftNoteIndex = firstShiftNoteIndex } } this.setState({ selectedNoteKeys, prevShiftNoteIndex }) dispatch( push({ pathname: location.pathname, search: queryString.stringify({ key: uniqueKey }) }) ) } handleSortByChange(e) { const { dispatch, match: { params: { folderKey } } } = this.props const config = { [folderKey]: { sortBy: e.target.value } } ConfigManager.set(config) dispatch({ type: 'SET_CONFIG', config }) } handleListStyleButtonClick(e, style) { const { dispatch } = this.props const config = { listStyle: style } ConfigManager.set(config) dispatch({ type: 'SET_CONFIG', config }) } handleListDirectionButtonClick(e, direction) { const { dispatch } = this.props const config = { listDirection: direction } ConfigManager.set(config) dispatch({ type: 'SET_CONFIG', config }) } alertIfSnippet(msg) { const warningMessage = msg => ({ 'export-txt': 'Text export', 'export-md': 'Markdown export', 'export-html': 'HTML export', 'export-pdf': 'PDF export', print: 'Print' }[msg]) const targetIndex = this.getTargetIndex() if (this.notes[targetIndex].type === 'SNIPPET_NOTE') { dialog.showMessageBox(remote.getCurrentWindow(), { type: 'warning', message: i18n.__('Sorry!'), detail: i18n.__( warningMessage(msg) + ' is available only in markdown notes.' ), buttons: [i18n.__('OK')] }) } } handleDragStart(e, note) { let { selectedNoteKeys } = this.state const noteKey = getNoteKey(note) if (!selectedNoteKeys.includes(noteKey)) { selectedNoteKeys = [] selectedNoteKeys.push(noteKey) } const notes = this.notes.map(note => Object.assign({}, note)) const selectedNotes = findNotesByKeys(notes, selectedNoteKeys) const noteData = JSON.stringify(selectedNotes) e.dataTransfer.setData('note', noteData) this.selectNextNote() } handleExportClick(e, note, fileType) { const options = { defaultPath: filenamify(note.title, { replacement: '_' }), filters: [{ name: 'Documents', extensions: [fileType] }], properties: ['openFile', 'createDirectory'] } dialog.showSaveDialog(remote.getCurrentWindow(), options, filename => { if (filename) { const { config } = this.props dataApi .exportNoteAs(note, filename, fileType, config) .then(res => { dialog.showMessageBox(remote.getCurrentWindow(), { type: 'info', message: `Exported to ${filename}` }) }) .catch(err => { dialog.showErrorBox( 'Export error', err ? err.message || err : 'Unexpected error during export' ) throw err }) } }) } handleNoteContextMenu(e, uniqueKey) { const { location } = this.props const { selectedNoteKeys } = this.state const note = findNoteByKey(this.notes, uniqueKey) const noteKey = getNoteKey(note) if (selectedNoteKeys.length === 0 || !selectedNoteKeys.includes(noteKey)) { this.handleNoteClick(e, uniqueKey) } const pinLabel = note.isPinned ? i18n.__('Remove pin') : i18n.__('Pin to Top') const deleteLabel = i18n.__('Delete Note') const cloneNote = i18n.__('Clone Note') const restoreNote = i18n.__('Restore Note') const copyNoteLink = i18n.__('Copy Note Link') const publishLabel = i18n.__('Publish Blog') const updateLabel = i18n.__('Update Blog') const openBlogLabel = i18n.__('Open Blog') const templates = [] if (location.pathname.match(/\/trash/)) { templates.push( { label: restoreNote, click: this.restoreNote }, { label: deleteLabel, click: this.deleteNote } ) } else { if (!location.pathname.match(/\/starred/)) { templates.push({ label: pinLabel, click: this.pinToTop }) } templates.push( { label: deleteLabel, click: this.deleteNote }, { label: cloneNote, click: this.cloneNote.bind(this) }, { label: copyNoteLink, click: this.copyNoteLink.bind(this, note) } ) if (note.type === 'MARKDOWN_NOTE') { templates.push( { type: 'separator' }, { label: i18n.__('Export Note'), submenu: [ { label: i18n.__('Export as Plain Text (.txt)'), click: e => this.handleExportClick(e, note, 'txt') }, { label: i18n.__('Export as Markdown (.md)'), click: e => this.handleExportClick(e, note, 'md') }, { label: i18n.__('Export as HTML (.html)'), click: e => this.handleExportClick(e, note, 'html') }, { label: i18n.__('Export as PDF (.pdf)'), click: e => this.handleExportClick(e, note, 'pdf') } ] } ) if (note.blog && note.blog.blogLink && note.blog.blogId) { templates.push( { type: 'separator' }, { label: updateLabel, click: this.publishMarkdown.bind(this) }, { label: openBlogLabel, click: () => this.openBlog.bind(this)(note) } ) } else { templates.push( { type: 'separator' }, { label: publishLabel, click: this.publishMarkdown.bind(this) } ) } } } context.popup(templates) } updateSelectedNotes(updateFunc, cleanSelection = true) { const { selectedNoteKeys } = this.state const { dispatch } = this.props const notes = this.notes.map(note => Object.assign({}, note)) const selectedNotes = findNotesByKeys(notes, selectedNoteKeys) if (!_.isFunction(updateFunc)) { console.warn('Update function is not defined. No update will happen') updateFunc = note => { return note } } Promise.all( selectedNotes.map(note => { note = updateFunc(note) return dataApi.updateNote(note.storage, note.key, note) }) ).then(updatedNotes => { updatedNotes.forEach(note => { dispatch({ type: 'UPDATE_NOTE', note }) }) }) if (cleanSelection) { this.selectNextNote() } } pinToTop() { this.updateSelectedNotes(note => { note.isPinned = !note.isPinned return note }) } restoreNote() { this.updateSelectedNotes(note => { note.isTrashed = false return note }) } deleteNote() { const { dispatch } = this.props const { selectedNoteKeys } = this.state const notes = this.notes.map(note => Object.assign({}, note)) const selectedNotes = findNotesByKeys(notes, selectedNoteKeys) const firstNote = selectedNotes[0] const { confirmDeletion } = this.props.config.ui if (firstNote.isTrashed) { if (!confirmDeleteNote(confirmDeletion, true)) return Promise.all( selectedNotes.map(note => { return dataApi.deleteNote(note.storage, note.key) }) ) .then(data => { const dispatchHandler = () => { data.forEach(item => { dispatch({ type: 'DELETE_NOTE', storageKey: item.storageKey, noteKey: item.noteKey }) }) } ee.once('list:next', dispatchHandler) }) .then(() => ee.emit('list:next')) .catch(err => { console.error('Cannot Delete note: ' + err) }) } else { if (!confirmDeleteNote(confirmDeletion, false)) return Promise.all( selectedNotes.map(note => { note.isTrashed = true return dataApi.updateNote(note.storage, note.key, note) }) ) .then(newNotes => { newNotes.forEach(newNote => { dispatch({ type: 'UPDATE_NOTE', note: newNote }) }) AwsMobileAnalyticsConfig.recordDynamicCustomEvent('EDIT_NOTE') }) .then(() => ee.emit('list:next')) .catch(err => { console.error('Notes could not go to trash: ' + err) }) } this.setState({ selectedNoteKeys: [] }) } cloneNote() { const { selectedNoteKeys } = this.state const { dispatch, location } = this.props const { storage, folder } = this.resolveTargetFolder() const notes = this.notes.map(note => Object.assign({}, note)) const selectedNotes = findNotesByKeys(notes, selectedNoteKeys) const firstNote = selectedNotes[0] const eventName = firstNote.type === 'MARKDOWN_NOTE' ? 'ADD_MARKDOWN' : 'ADD_SNIPPET' AwsMobileAnalyticsConfig.recordDynamicCustomEvent(eventName) AwsMobileAnalyticsConfig.recordDynamicCustomEvent('ADD_ALLNOTE') dataApi .createNote(storage.key, { type: firstNote.type, folder: folder.key, title: firstNote.title + ' ' + i18n.__('copy'), content: firstNote.content, linesHighlighted: firstNote.linesHighlighted, description: firstNote.description, snippets: firstNote.snippets, tags: firstNote.tags, isStarred: firstNote.isStarred }) .then(note => { attachmentManagement.cloneAttachments(firstNote, note) return note }) .then(note => { dispatch({ type: 'UPDATE_NOTE', note: note }) this.setState({ selectedNoteKeys: [note.key] }) dispatch( push({ pathname: location.pathname, search: queryString.stringify({ key: note.key }) }) ) }) } copyNoteLink(note) { const noteLink = `[${note.title}](:note:${note.key})` return copy(noteLink) } navigate(sender, pathname) { const { dispatch } = this.props dispatch( push({ pathname, search: queryString.stringify({ // key: noteKey }) }) ) } save(note) { const { dispatch } = this.props dataApi.updateNote(note.storage, note.key, note).then(note => { dispatch({ type: 'UPDATE_NOTE', note: note }) }) } publishMarkdown() { if (this.pendingPublish) { clearTimeout(this.pendingPublish) } this.pendingPublish = setTimeout(() => { this.publishMarkdownNow() }, 1000) } publishMarkdownNow() { const { selectedNoteKeys } = this.state const notes = this.notes.map(note => Object.assign({}, note)) const selectedNotes = findNotesByKeys(notes, selectedNoteKeys) const firstNote = selectedNotes[0] const config = ConfigManager.get() const { address, token, authMethod, username, password } = config.blog let authToken = '' if (authMethod === 'USER') { authToken = `Basic ${window.btoa(`${username}:${password}`)}` } else { authToken = `Bearer ${token}` } const contentToRender = firstNote.content.replace( `# ${firstNote.title}`, '' ) const markdown = new Markdown() const data = { title: firstNote.title, content: markdown.render(contentToRender), status: 'publish' } let url = '' let method = '' if (firstNote.blog && firstNote.blog.blogId) { url = `${address}${WP_POST_PATH}/${firstNote.blog.blogId}` method = 'PUT' } else { url = `${address}${WP_POST_PATH}` method = 'POST' } // eslint-disable-next-line no-undef fetch(url, { method: method, body: JSON.stringify(data), headers: { Authorization: authToken, 'Content-Type': 'application/json' } }) .then(res => res.json()) .then(response => { if (_.isNil(response.link) || _.isNil(response.id)) { return Promise.reject() } firstNote.blog = { blogLink: response.link, blogId: response.id } this.save(firstNote) this.confirmPublish(firstNote) }) .catch(error => { console.error(error) this.confirmPublishError() }) } confirmPublishError() { const { remote } = electron const { dialog } = remote const alertError = { type: 'warning', message: i18n.__('Publish Failed'), detail: i18n.__('Check and update your blog setting and try again.'), buttons: [i18n.__('Confirm')] } dialog.showMessageBox(remote.getCurrentWindow(), alertError) } confirmPublish(note) { const buttonIndex = dialog.showMessageBox(remote.getCurrentWindow(), { type: 'warning', message: i18n.__('Publish Succeeded'), detail: `${note.title} is published at ${note.blog.blogLink}`, buttons: [i18n.__('Confirm'), i18n.__('Open Blog')] }) if (buttonIndex === 1) { this.openBlog(note) } } openBlog(note) { const { shell } = electron shell.openExternal(note.blog.blogLink) } importFromFile() { const options = { filters: [{ name: 'Documents', extensions: ['md', 'txt'] }], properties: ['openFile', 'multiSelections'] } dialog.showOpenDialog(remote.getCurrentWindow(), options, filepaths => { this.addNotesFromFiles(filepaths) }) } handleDrop(e) { e.preventDefault() const { location } = this.props const filepaths = Array.from(e.dataTransfer.files).map(file => { return file.path }) if (!location.pathname.match(/\/trashed/)) this.addNotesFromFiles(filepaths) } // Add notes to the current folder addNotesFromFiles(filepaths) { const { dispatch, location } = this.props const { storage, folder } = this.resolveTargetFolder() if (filepaths === undefined) return filepaths.forEach(filepath => { fs.readFile(filepath, (err, data) => { if (err) throw Error('File reading error: ', err) fs.stat(filepath, (err, { mtime, birthtime }) => { if (err) throw Error('File stat reading error: ', err) const content = data.toString() const newNote = { content: content, folder: folder.key, title: path.basename(filepath, path.extname(filepath)), type: 'MARKDOWN_NOTE', createdAt: birthtime, updatedAt: mtime } dataApi.createNote(storage.key, newNote).then(note => { attachmentManagement .importAttachments(note.content, filepath, storage.key, note.key) .then(newcontent => { note.content = newcontent dataApi.updateNote(storage.key, note.key, note) dispatch({ type: 'UPDATE_NOTE', note: note }) dispatch( push({ pathname: location.pathname, search: queryString.stringify({ key: getNoteKey(note) }) }) ) }) }) }) }) }) } getTargetIndex() { const { location } = this.props const key = queryString.parse(location.search).key const targetIndex = _.findIndex(this.notes, note => { return getNoteKey(note) === key }) return targetIndex } resolveTargetFolder() { const { data, match: { params } } = this.props let storage = data.storageMap.get(params.storageKey) // Find first storage if (storage == null) { for (const kv of data.storageMap) { storage = kv[1] break } } if (storage == null) this.showMessageBox('No storage for importing note(s)') const folder = _.find(storage.folders, { key: params.folderKey }) || storage.folders[0] if (folder == null) this.showMessageBox('No folder for importing note(s)') return { storage, folder } } showMessageBox(message) { dialog.showMessageBox(remote.getCurrentWindow(), { type: 'warning', message: message, buttons: [i18n.__('OK')] }) } getNoteStorage(note) { // note.storage = storage key return this.props.data.storageMap.toJS()[note.storage] } getNoteFolder(note) { // note.folder = folder key const storage = this.getNoteStorage(note) return storage ? _.find(storage.folders, ({ key }) => key === note.folder) : [] } getViewType() { const { pathname } = this.props.location const folder = /\/folders\/[a-zA-Z0-9]+/.test(pathname) const storage = /\/storages\/[a-zA-Z0-9]+/.test(pathname) && !folder const allNotes = pathname === '/home' if (allNotes) return 'ALL' if (folder) return 'FOLDER' if (storage) return 'STORAGE' } render() { const { location, config, match: { params: { folderKey } } } = this.props let { notes } = this.props const { selectedNoteKeys } = this.state const sortBy = _.get(config, [folderKey, 'sortBy'], config.sortBy.default) const sortDir = config.listDirection const sortFunc = sortBy === 'CREATED_AT' ? sortByCreatedAt : sortBy === 'ALPHABETICAL' ? sortByAlphabetical : sortByUpdatedAt const sortedNotes = location.pathname.match(/\/starred|\/trash/) ? this.getNotes().sort(sortFunc) : this.sortByPin(this.getNotes().sort(sortFunc)) this.notes = notes = sortedNotes.filter(note => { if ( // has matching storage !!this.getNoteStorage(note) && // this is for the trash box (note.isTrashed !== true || location.pathname === '/trashed') ) { return true } }) if (sortDir === 'DESCENDING') this.notes.reverse() moment.updateLocale('en', { relativeTime: { future: 'in %s', past: '%s ago', s: '%ds', ss: '%ss', m: '1m', mm: '%dm', h: 'an hour', hh: '%dh', d: '1d', dd: '%dd', M: '1M', MM: '%dM', y: '1Y', yy: '%dY' } }) const viewType = this.getViewType() const autoSelectFirst = notes.length === 1 || selectedNoteKeys.length === 0 || notes.every(note => !selectedNoteKeys.includes(note.key)) const noteList = notes.map((note, index) => { if (note == null) { return null } const isDefault = config.listStyle === 'DEFAULT' const uniqueKey = getNoteKey(note) const isActive = selectedNoteKeys.includes(uniqueKey) || notes.length === 1 || (autoSelectFirst && index === 0) const dateDisplay = moment( sortBy === 'CREATED_AT' ? note.createdAt : note.updatedAt ).fromNow('D') const storage = this.getNoteStorage(note) if (isDefault) { return ( ) } return ( ) }) return (
this.handleDrop(e)} >
this.handleNoteListKeyDown(e)} onKeyUp={this.handleNoteListKeyUp} onBlur={this.handleNoteListBlur} > {noteList}
) } } NoteList.contextTypes = { router: PropTypes.shape([]) } NoteList.propTypes = { dispatch: PropTypes.func, repositories: PropTypes.array, style: PropTypes.shape({ width: PropTypes.number }) } export default CSSModules(NoteList, styles) ================================================ FILE: browser/main/SideNav/ListButton.js ================================================ import PropTypes from 'prop-types' import React from 'react' import CSSModules from 'browser/lib/CSSModules' import styles from './SwitchButton.styl' import i18n from 'browser/lib/i18n' const ListButton = ({ onClick, isTagActive }) => ( ) ListButton.propTypes = { onClick: PropTypes.func.isRequired, isTagActive: PropTypes.bool.isRequired } export default CSSModules(ListButton, styles) ================================================ FILE: browser/main/SideNav/PreferenceButton.js ================================================ import PropTypes from 'prop-types' import React from 'react' import CSSModules from 'browser/lib/CSSModules' import styles from './PreferenceButton.styl' import i18n from 'browser/lib/i18n' const PreferenceButton = ({ onClick }) => ( ) PreferenceButton.propTypes = { onClick: PropTypes.func.isRequired } export default CSSModules(PreferenceButton, styles) ================================================ FILE: browser/main/SideNav/PreferenceButton.styl ================================================ .top-menu-preference navButtonColor() width 2em background-color transparent &:hover color $ui-button-default--active-backgroundColor background-color transparent .tooltip opacity 1 &:active, &:active:hover color $ui-button-default--active-backgroundColor body[data-theme="white"] .top-menu-preference navWhiteButtonColor() background-color transparent &:hover color #0B99F1 background-color transparent &:active, &:active:hover color #0B99F1 background-color transparent body[data-theme="dark"] .top-menu-preference navDarkButtonColor() background-color transparent &:active background-color alpha($ui-dark-button--active-backgroundColor, 20%) background-color transparent &:hover background-color alpha($ui-dark-button--active-backgroundColor, 20%) background-color transparent .tooltip tooltip() position absolute pointer-events none top 26px left -20px z-index 200 padding 5px line-height normal border-radius 2px opacity 0 transition 0.1s white-space nowrap ================================================ FILE: browser/main/SideNav/SearchButton.js ================================================ import PropTypes from 'prop-types' import React from 'react' import CSSModules from 'browser/lib/CSSModules' import styles from './SearchButton.styl' import i18n from 'browser/lib/i18n' const SearchButton = ({ onClick, isActive }) => ( ) SearchButton.propTypes = { onClick: PropTypes.func.isRequired, isActive: PropTypes.bool } export default CSSModules(SearchButton, styles) ================================================ FILE: browser/main/SideNav/SearchButton.styl ================================================ .top-menu-search navButtonColor() position relative margin-right 6px top 3px width 2em background-color transparent &:hover color $ui-button-default--active-backgroundColor background-color transparent .tooltip opacity 1 &:active, &:active:hover color $ui-button-default--active-backgroundColor .icon-search width 16px body[data-theme="white"] .top-menu-search navWhiteButtonColor() background-color transparent &:hover color #0B99F1 background-color transparent &:active, &:active:hover color #0B99F1 background-color transparent body[data-theme="dark"] .top-menu-search navDarkButtonColor() background-color transparent &:active background-color alpha($ui-dark-button--active-backgroundColor, 20%) background-color transparent &:hover background-color alpha($ui-dark-button--active-backgroundColor, 20%) background-color transparent .tooltip tooltip() position absolute pointer-events none top 26px left -20px z-index 200 padding 5px line-height normal border-radius 2px opacity 0 transition 0.1s white-space nowrap ================================================ FILE: browser/main/SideNav/SideNav.styl ================================================ .root absolute top left bottom width $sideNav-width background-color #2E3235 user-select none color $ui-text-color height: 100vh display: flex flex-direction column .top display flex align-items top justify-content space-between padding-bottom 10px margin 14px 14px 4px .switch-buttons background-color transparent border 0 display flex align-items center text-align center .extra-buttons position relative display flex align-items center .search position relative flex 1 display flex max-height 0 overflow hidden transition max-height .4s margin -5px 10px 0 .search-input flex 1 height 2em vertical-align middle font-size 14px border solid 1px $border-color border-radius 2px padding 2px 6px outline none .search-clear width 10px position absolute right 8px top 9px cursor pointer .top-menu-label margin-left 5px overflow ellipsis opacity 0 .tabBody flex 1 display flex flex-direction column .tag-control display flex height 30px line-height 25px overflow hidden .tag-control-title padding-left 15px padding-bottom 13px flex 1 p color $ui-button-default-color .tag-control-sortTagsBy user-select none font-size 12px color $ui-inactive-text-color margin-left 12px margin-right 12px .tag-control-sortTagsBy-select appearance: none; margin-left 5px color $ui-inactive-text-color padding 0 border none background-color transparent outline none cursor pointer font-size 12px .tagList overflow-y auto flex: 1 .root--folded height 100vh width $sideNav--folded-width background-color #2E3235 .switch-buttons display none .extra-buttons > button:first-of-type // hide search icon display none .top height 60px align-items center margin 0 justify-content center position relative left -4px .top-menu position static width $sideNav--folded-width height 60px text-align center &:hover .top-menu-label transition opacity 0.15s opacity 1 .top-menu-label position fixed display inline-block height 30px left $sideNav--folded-width padding 0 10px margin-top -8px opacity 0 margin-left 0 overflow hidden z-index 10 color white line-height 30px border-top-right-radius 2px border-bottom-right-radius 2px pointer-events none font-size 13px .top-menu-preference position absolute left 7px .search height 28px .search-input display none .search-clear display none .search-folded width 16px padding-left 4px margin-bottom 8px cursor pointer body[data-theme="white"] .root, .root--folded background-color #f9f9f9 color $ui-text-color .search .search-input background-color #f9f9f9 color $ui-text-color body[data-theme="dark"] .root, .root--folded border-right 1px solid $ui-dark-borderColor background-color $ui-dark-backgroundColor color $ui-dark-text-color .search .search-input background-color $ui-dark-backgroundColor color $ui-dark-text-color border-color $ui-dark-borderColor .top border-color $ui-dark-borderColor apply-theme(theme) body[data-theme={theme}] .root, .root--folded background-color get-theme-var(theme, 'backgroundColor') border-right 1px solid get-theme-var(theme, 'borderColor') .search .search-input background-color get-theme-var(theme, 'backgroundColor') color get-theme-var(theme, 'text-color') border-color get-theme-var(theme, 'borderColor') for theme in 'solarized-dark' 'dracula' apply-theme(theme) for theme in $themes apply-theme(theme) ================================================ FILE: browser/main/SideNav/StorageItem.js ================================================ import PropTypes from 'prop-types' import React from 'react' import CSSModules from 'browser/lib/CSSModules' import styles from './StorageItem.styl' import modal from 'browser/main/lib/modal' import CreateFolderModal from 'browser/main/modals/CreateFolderModal' import RenameFolderModal from 'browser/main/modals/RenameFolderModal' import dataApi from 'browser/main/lib/dataApi' import StorageItemChild from 'browser/components/StorageItem' import _ from 'lodash' import { SortableElement } from 'react-sortable-hoc' import i18n from 'browser/lib/i18n' import context from 'browser/lib/context' import { push } from 'connected-react-router' const { remote } = require('electron') const { dialog } = remote const escapeStringRegexp = require('escape-string-regexp') const path = require('path') class StorageItem extends React.Component { constructor(props) { super(props) const { storage } = this.props this.state = { isOpen: !!storage.isOpen, draggedOver: null } } handleHeaderContextMenu(e) { context.popup([ { label: i18n.__('Add Folder'), click: e => this.handleAddFolderButtonClick(e) }, { type: 'separator' }, { label: i18n.__('Export Storage'), submenu: [ { label: i18n.__('Export as Plain Text (.txt)'), click: e => this.handleExportStorageClick(e, 'txt') }, { label: i18n.__('Export as Markdown (.md)'), click: e => this.handleExportStorageClick(e, 'md') }, { label: i18n.__('Export as HTML (.html)'), click: e => this.handleExportStorageClick(e, 'html') }, { label: i18n.__('Export as PDF (.pdf)'), click: e => this.handleExportStorageClick(e, 'pdf') } ] }, { type: 'separator' }, { label: i18n.__('Unlink Storage'), click: e => this.handleUnlinkStorageClick(e) } ]) } handleUnlinkStorageClick(e) { const index = dialog.showMessageBox(remote.getCurrentWindow(), { type: 'warning', message: i18n.__('Unlink Storage'), detail: i18n.__( "This work will just detatches a storage from Boostnote. (Any data won't be deleted.)" ), buttons: [i18n.__('Confirm'), i18n.__('Cancel')] }) if (index === 0) { const { storage, dispatch } = this.props dataApi .removeStorage(storage.key) .then(() => { dispatch({ type: 'REMOVE_STORAGE', storageKey: storage.key }) }) .catch(err => { throw err }) } } handleExportStorageClick(e, fileType) { const options = { properties: ['openDirectory', 'createDirectory'], buttonLabel: i18n.__('Select directory'), title: i18n.__('Select a folder to export the files to'), multiSelections: false } dialog.showOpenDialog(remote.getCurrentWindow(), options, paths => { if (paths && paths.length === 1) { const { storage, dispatch, config } = this.props dataApi .exportStorage(storage.key, fileType, paths[0], config) .then(data => { dialog.showMessageBox(remote.getCurrentWindow(), { type: 'info', message: `Exported to ${paths[0]}` }) dispatch({ type: 'EXPORT_STORAGE', storage: data.storage, fileType: data.fileType }) }) .catch(error => { dialog.showErrorBox( 'Export error', error ? error.message || error : 'Unexpected error during export' ) throw error }) } }) } handleToggleButtonClick(e) { const { storage, dispatch } = this.props const isOpen = !this.state.isOpen dataApi.toggleStorage(storage.key, isOpen).then(storage => { dispatch({ type: 'EXPAND_STORAGE', storage, isOpen }) }) this.setState({ isOpen: isOpen }) } handleAddFolderButtonClick(e) { const { storage } = this.props modal.open(CreateFolderModal, { storage }) } handleHeaderInfoClick(e) { const { storage, dispatch } = this.props dispatch(push('/storages/' + storage.key)) } handleFolderButtonClick(folderKey) { return e => { const { storage, dispatch } = this.props dispatch(push('/storages/' + storage.key + '/folders/' + folderKey)) } } handleFolderMouseEnter(e, tooltipRef, isFolded) { if (isFolded) { const buttonEl = e.currentTarget const tooltipEl = tooltipRef.current tooltipEl.style.top = buttonEl.getBoundingClientRect().y + 'px' } } handleFolderButtonContextMenu(e, folder) { context.popup([ { label: i18n.__('Rename Folder'), click: e => this.handleRenameFolderClick(e, folder) }, { type: 'separator' }, { label: i18n.__('Export Folder'), submenu: [ { label: i18n.__('Export as Plain Text (.txt)'), click: e => this.handleExportFolderClick(e, folder, 'txt') }, { label: i18n.__('Export as Markdown (.md)'), click: e => this.handleExportFolderClick(e, folder, 'md') }, { label: i18n.__('Export as HTML (.html)'), click: e => this.handleExportFolderClick(e, folder, 'html') }, { label: i18n.__('Export as PDF (.pdf)'), click: e => this.handleExportFolderClick(e, folder, 'pdf') } ] }, { type: 'separator' }, { label: i18n.__('Delete Folder'), click: e => this.handleFolderDeleteClick(e, folder) } ]) } handleRenameFolderClick(e, folder) { const { storage } = this.props modal.open(RenameFolderModal, { storage, folder }) } handleExportFolderClick(e, folder, fileType) { const options = { properties: ['openDirectory', 'createDirectory'], buttonLabel: i18n.__('Select directory'), title: i18n.__('Select a folder to export the files to'), multiSelections: false } dialog.showOpenDialog(remote.getCurrentWindow(), options, paths => { if (paths && paths.length === 1) { const { storage, dispatch, config } = this.props dataApi .exportFolder(storage.key, folder.key, fileType, paths[0], config) .then(data => { dialog.showMessageBox(remote.getCurrentWindow(), { type: 'info', message: `Exported to ${paths[0]}` }) dispatch({ type: 'EXPORT_FOLDER', storage: data.storage, folderKey: data.folderKey, fileType: data.fileType }) }) .catch(error => { dialog.showErrorBox( 'Export error', error ? error.message || error : 'Unexpected error during export' ) throw error }) } }) } handleFolderDeleteClick(e, folder) { const index = dialog.showMessageBox(remote.getCurrentWindow(), { type: 'warning', message: i18n.__('Delete Folder'), detail: i18n.__( 'This will delete all notes in the folder and can not be undone.' ), buttons: [i18n.__('Confirm'), i18n.__('Cancel')] }) if (index === 0) { const { storage, dispatch } = this.props dataApi.deleteFolder(storage.key, folder.key).then(data => { dispatch({ type: 'DELETE_FOLDER', storage: data.storage, folderKey: data.folderKey }) }) } } handleDragEnter(e, key) { e.preventDefault() if (this.state.draggedOver === key) { return } this.setState({ draggedOver: key }) } handleDragLeave(e) { e.preventDefault() if (this.state.draggedOver === null) { return } this.setState({ draggedOver: null }) } dropNote(storage, folder, dispatch, location, noteData) { noteData = noteData.filter(note => folder.key !== note.folder) if (noteData.length === 0) return Promise.all( noteData.map(note => dataApi.moveNote(note.storage, note.key, storage.key, folder.key) ) ) .then(createdNoteData => { createdNoteData.forEach(newNote => { dispatch({ type: 'MOVE_NOTE', originNote: noteData.find( note => note.content === newNote.oldContent ), note: newNote }) }) }) .catch(err => { console.error(`error on delete notes: ${err}`) }) } handleDrop(e, storage, folder, dispatch, location) { e.preventDefault() if (this.state.draggedOver !== null) { this.setState({ draggedOver: null }) } const noteData = JSON.parse(e.dataTransfer.getData('note')) this.dropNote(storage, folder, dispatch, location, noteData) } render() { const { storage, location, isFolded, data, dispatch } = this.props const { folderNoteMap, trashedSet } = data const SortableStorageItemChild = SortableElement(StorageItemChild) const folderList = storage.folders.map((folder, index) => { const folderRegex = new RegExp( escapeStringRegexp(path.sep) + 'storages' + escapeStringRegexp(path.sep) + storage.key + escapeStringRegexp(path.sep) + 'folders' + escapeStringRegexp(path.sep) + folder.key ) const isActive = !!location.pathname.match(folderRegex) const tooltipRef = React.createRef(null) const noteSet = folderNoteMap.get(storage.key + '-' + folder.key) let noteCount = 0 if (noteSet) { let trashedNoteCount = 0 const noteKeys = noteSet.map(noteKey => { return noteKey }) trashedSet.toJS().forEach(trashedKey => { if ( noteKeys.some(noteKey => { return noteKey === trashedKey }) ) trashedNoteCount++ }) noteCount = noteSet.size - trashedNoteCount } return ( this.handleFolderButtonClick(folder.key)(e)} handleMouseEnter={e => this.handleFolderMouseEnter(e, tooltipRef, isFolded) } handleContextMenu={e => this.handleFolderButtonContextMenu(e, folder)} folderName={folder.name} folderColor={folder.color} isFolded={isFolded} noteCount={noteCount} handleDrop={e => { this.handleDrop(e, storage, folder, dispatch, location) }} handleDragEnter={e => { this.handleDragEnter(e, folder.key) }} handleDragLeave={e => { this.handleDragLeave(e, folder) }} /> ) }) const isActive = location.pathname.match( new RegExp( escapeStringRegexp(path.sep) + 'storages' + escapeStringRegexp(path.sep) + storage.key + '$' ) ) return (
this.handleHeaderContextMenu(e)} > {!isFolded && ( )}
{this.state.isOpen &&
{folderList}
}
) } } StorageItem.propTypes = { isFolded: PropTypes.bool } export default CSSModules(StorageItem, styles) ================================================ FILE: browser/main/SideNav/StorageItem.styl ================================================ .root width 100% user-select none padding-top 20px .header position relative height 36px width 100% margin-bottom 5px transition 0.15s display flex align-items center .header--active margin-bottom 5px background-color alpha($ui-button-default--active-backgroundColor, 20%) transition color background-color 0.15s display flex align-items center .header-toggleButton .header-info .header-addFolderButton color #1EC38B .header-toggleButton navButtonColor() position absolute left 0 width 25px height 25px padding 0 border none border-radius 50% &:hover transition 0.2s background-color alpha($ui-button-default--hover-backgroundColor, 40%) color $ui-text-color .header-info navButtonColor() display block width 100% height 36px padding-left 25px padding-right 15px line-height 36px cursor pointer font-size 14px border none overflow ellipsis text-align left font-weight 600; background-color transparent &:hover color #1EC38B background-color alpha($ui-button-default--active-backgroundColor, 20%) transition background-color 0.15s &:active, &:active:hover color #1EC38B background-color alpha($ui-button-default--active-backgroundColor, 20%) .header-info-path font-size 10px margin 0 5px .header-addFolderButton navButtonColor() position absolute right 7px width 25px height 25px padding 0 border none border-radius 50% &:hover transition 0.2s .root--folded @extend .root .header width 100% padding-left 5px .header-info overflow ellipsis padding 0 0 0 18px &:hover .header-info--folded-tooltip opacity 1 .header-info-path display none .header-toggleButton width 15px padding-left 9px .header-info--folded-tooltip tooltip() position fixed padding 0 10px left 44px z-index 10 pointer-events none opacity 0 border-top-right-radius 2px border-bottom-right-radius 2px .header-info--folded-tooltip-path font-size 10px margin 0 5px body[data-theme="white"] .header--active background-color $ui-button--active-backgroundColor transition color background-color 0.15s .header-toggleButton color $ui-text-color .header-info color $ui-text-color .header-addFolderButton color $ui-text-color .header-toggleButton navWhiteButtonColor() &:hover background-color alpha($ui-button--active-backgroundColor, 40%) color $ui-text-color .header-info navWhiteButtonColor() background-color alpha($ui-button--active-backgroundColor, 20%) .header-addFolderButton navWhiteButtonColor() &:hover background-color alpha($ui-button--active-backgroundColor, 40%) color $ui-text-color apply-theme(theme) body[data-theme={theme}] .header--active background-color get-theme-var(theme, 'button--active-backgroundColor') transition color background-color 0.15s .header--active .header-toggleButton color get-theme-var(theme, 'text-color') .header--active .header-info color get-theme-var(theme, 'text-color') background-color get-theme-var(theme, 'button--active-backgroundColor') &:active color get-theme-var(theme, 'text-color') background-color get-theme-var(theme, 'button--active-backgroundColor') .header--active .header-addFolderButton color get-theme-var(theme, 'text-color') .header-toggleButton &:hover transition 0.2s color get-theme-var(theme, 'text-color') background-color alpha(get-theme-var(theme, 'button--active-backgroundColor'), 60%) &:active, &:active:hover color get-theme-var(theme, 'text-color') background-color get-theme-var(theme, 'button--active-backgroundColor') .header-info background-color alpha(get-theme-var(theme, 'button--active-backgroundColor'), 20%) &:hover transition 0.2s color get-theme-var(theme, 'text-color') background-color alpha(get-theme-var(theme, 'button--active-backgroundColor'), 20%) &:active, &:active:hover color get-theme-var(theme, 'text-color') background-color get-theme-var(theme, 'button--active-backgroundColor') .header-addFolderButton &:hover transition 0.2s color get-theme-var(theme, 'text-color') background-color alpha(get-theme-var(theme, 'button--active-backgroundColor'), 60%) &:active, &:active:hover color get-theme-var(theme, 'text-color') background-color get-theme-var(theme, 'button--active-backgroundColor') apply-theme('dark') for theme in $themes apply-theme(theme) ================================================ FILE: browser/main/SideNav/SwitchButton.styl ================================================ .non-active-button color $ui-inactive-text-color font-size 16px border 0 background-color transparent transition 0.2s display flex text-align center margin-right 4px position relative &:hover color alpha(#239F86, 60%) .tooltip opacity 1 .active-button @extend .non-active-button color $ui-button-default--active-backgroundColor .tooltip tooltip() position absolute pointer-events none top 22px left -2px z-index 200 padding 5px line-height normal border-radius 2px opacity 0 transition 0.1s white-space nowrap body[data-theme="white"] .non-active-button color $ui-inactive-text-color &:hover color alpha(#0B99F1, 60%) .tag-title p color $ui-text-color .non-active-button &:hover color alpha(#0B99F1, 60%) .active-button @extend .non-active-button color #0B99F1 body[data-theme="dark"] .non-active-button color alpha($ui-dark-text-color, 60%) &:hover color alpha(#0B99F1, 60%) .tag-title p color alpha($ui-dark-text-color, 60%) ================================================ FILE: browser/main/SideNav/TagButton.js ================================================ import PropTypes from 'prop-types' import React from 'react' import CSSModules from 'browser/lib/CSSModules' import styles from './SwitchButton.styl' import i18n from 'browser/lib/i18n' const TagButton = ({ onClick, isTagActive }) => ( ) TagButton.propTypes = { onClick: PropTypes.func.isRequired, isTagActive: PropTypes.bool.isRequired } export default CSSModules(TagButton, styles) ================================================ FILE: browser/main/SideNav/index.js ================================================ import PropTypes from 'prop-types' import React from 'react' import { push } from 'connected-react-router' import CSSModules from 'browser/lib/CSSModules' import dataApi from 'browser/main/lib/dataApi' import styles from './SideNav.styl' import { openModal } from 'browser/main/lib/modal' import PreferencesModal from '../modals/PreferencesModal' import RenameTagModal from 'browser/main/modals/RenameTagModal' import ConfigManager from 'browser/main/lib/ConfigManager' import StorageItem from './StorageItem' import TagListItem from 'browser/components/TagListItem' import SideNavFilter from 'browser/components/SideNavFilter' import StorageList from 'browser/components/StorageList' import NavToggleButton from 'browser/components/NavToggleButton' import EventEmitter from 'browser/main/lib/eventEmitter' import PreferenceButton from './PreferenceButton' import SearchButton from './SearchButton' import ListButton from './ListButton' import TagButton from './TagButton' import { SortableContainer } from 'react-sortable-hoc' import i18n from 'browser/lib/i18n' import context from 'browser/lib/context' import { remote } from 'electron' import { confirmDeleteNote } from 'browser/lib/confirmDeleteNote' import ColorPicker from 'browser/components/ColorPicker' import { every, sortBy } from 'lodash' const { dialog } = remote function matchActiveTags(tags, activeTags) { return every(activeTags, v => tags.indexOf(v) >= 0) } class SideNav extends React.Component { // TODO: should not use electron stuff v0.7 constructor(props) { super(props) this.state = { colorPicker: { show: false, color: null, tagName: null, targetRect: null, showSearch: false, searchText: '' } } this.dismissColorPicker = this.dismissColorPicker.bind(this) this.handleColorPickerConfirm = this.handleColorPickerConfirm.bind(this) this.handleColorPickerReset = this.handleColorPickerReset.bind(this) this.handleSearchButtonClick = this.handleSearchButtonClick.bind(this) this.handleSearchInputChange = this.handleSearchInputChange.bind(this) this.handleSearchInputClear = this.handleSearchInputClear.bind(this) } componentDidMount() { EventEmitter.on('side:preferences', this.handleMenuButtonClick) } componentWillUnmount() { EventEmitter.off('side:preferences', this.handleMenuButtonClick) } deleteTag(tag) { const selectedButton = dialog.showMessageBox(remote.getCurrentWindow(), { type: 'warning', message: i18n.__('Confirm tag deletion'), detail: i18n.__('This will permanently remove this tag.'), buttons: [i18n.__('Confirm'), i18n.__('Cancel')] }) if (selectedButton === 0) { const { data, dispatch, location, match: { params } } = this.props const notes = data.noteMap .map(note => note) .filter(note => note.tags.indexOf(tag) !== -1) .map(note => { note = Object.assign({}, note) note.tags = note.tags.slice() note.tags.splice(note.tags.indexOf(tag), 1) return note }) Promise.all( notes.map(note => dataApi.updateNote(note.storage, note.key, note)) ).then(updatedNotes => { updatedNotes.forEach(note => { dispatch({ type: 'UPDATE_NOTE', note }) }) if (location.pathname.match('/tags')) { const tags = params.tagname.split(' ') const index = tags.indexOf(tag) if (index !== -1) { tags.splice(index, 1) dispatch( push( `/tags/${tags.map(tag => encodeURIComponent(tag)).join(' ')}` ) ) } } }) } } handleMenuButtonClick(e) { openModal(PreferencesModal) } handleSearchButtonClick(e) { const { showSearch } = this.state this.setState({ showSearch: !showSearch, searchText: '' }) } handleSearchInputClear(e) { this.setState({ searchText: '' }) } handleSearchInputChange(e) { this.setState({ searchText: e.target.value }) } handleHomeButtonClick(e) { const { dispatch } = this.props dispatch(push('/home')) } handleStarredButtonClick(e) { const { dispatch } = this.props dispatch(push('/starred')) } handleTagContextMenu(e, tag) { context.popup([ { label: i18n.__('Rename Tag'), click: this.handleRenameTagClick.bind(this, tag) }, { label: i18n.__('Customize Color'), click: this.displayColorPicker.bind( this, tag, e.target.getBoundingClientRect() ) }, { type: 'separator' }, { label: i18n.__('Export Tag'), submenu: [ { label: i18n.__('Export as Plain Text (.txt)'), click: e => this.handleExportTagClick(e, tag, 'txt') }, { label: i18n.__('Export as Markdown (.md)'), click: e => this.handleExportTagClick(e, tag, 'md') }, { label: i18n.__('Export as HTML (.html)'), click: e => this.handleExportTagClick(e, tag, 'html') }, { label: i18n.__('Export as PDF (.pdf)'), click: e => this.handleExportTagClick(e, tag, 'pdf') } ] }, { type: 'separator' }, { label: i18n.__('Delete Tag'), click: this.deleteTag.bind(this, tag) } ]) } handleExportTagClick(e, tag, fileType) { const options = { properties: ['openDirectory', 'createDirectory'], buttonLabel: i18n.__('Select directory'), title: i18n.__('Select a folder to export the files to'), multiSelections: false } dialog.showOpenDialog(remote.getCurrentWindow(), options, paths => { if (paths && paths.length === 1) { const { data, config } = this.props dataApi .exportTag(data, tag, fileType, paths[0], config) .then(data => { dialog.showMessageBox(remote.getCurrentWindow(), { type: 'info', message: `Exported to ${paths[0]}` }) }) .catch(error => { dialog.showErrorBox( 'Export error', error ? error.message || error : 'Unexpected error during export' ) throw error }) } }) } dismissColorPicker() { this.setState({ colorPicker: { show: false } }) } displayColorPicker(tagName, rect) { const { config } = this.props this.setState({ colorPicker: { show: true, color: config.coloredTags[tagName], tagName, targetRect: rect } }) } handleRenameTagClick(tagName) { const { data, dispatch } = this.props openModal(RenameTagModal, { tagName, data, dispatch }) } handleColorPickerConfirm(color) { const { dispatch, config: { coloredTags } } = this.props const { colorPicker: { tagName } } = this.state const newColoredTags = Object.assign({}, coloredTags, { [tagName]: color.hex }) const config = { coloredTags: newColoredTags } ConfigManager.set(config) dispatch({ type: 'SET_CONFIG', config }) this.dismissColorPicker() } handleColorPickerReset() { const { dispatch, config: { coloredTags } } = this.props const { colorPicker: { tagName } } = this.state const newColoredTags = Object.assign({}, coloredTags) delete newColoredTags[tagName] const config = { coloredTags: newColoredTags } ConfigManager.set(config) dispatch({ type: 'SET_CONFIG', config }) this.dismissColorPicker() } handleToggleButtonClick(e) { const { dispatch, config } = this.props const { showSearch, searchText } = this.state ConfigManager.set({ isSideNavFolded: !config.isSideNavFolded }) dispatch({ type: 'SET_IS_SIDENAV_FOLDED', isFolded: !config.isSideNavFolded }) if (showSearch && searchText.length === 0) { this.setState({ showSearch: false }) } } handleTrashedButtonClick(e) { const { dispatch } = this.props dispatch(push('/trashed')) } handleSwitchFoldersButtonClick() { const { dispatch } = this.props dispatch(push('/home')) } handleSwitchTagsButtonClick() { const { dispatch } = this.props dispatch(push('/alltags')) } onSortEnd(storage) { return ({ oldIndex, newIndex }) => { const { dispatch } = this.props dataApi.reorderFolder(storage.key, oldIndex, newIndex).then(data => { dispatch({ type: 'REORDER_FOLDER', storage: data.storage }) }) } } SideNavComponent(isFolded) { const { location, data, config, dispatch } = this.props const { showSearch, searchText } = this.state const isHomeActive = !!location.pathname.match(/^\/home$/) const isStarredActive = !!location.pathname.match(/^\/starred$/) const isTrashedActive = !!location.pathname.match(/^\/trashed$/) let component // TagsMode is not selected if ( !location.pathname.match('/tags') && !location.pathname.match('/alltags') ) { let storageMap = data.storageMap if (showSearch && searchText.length > 0) { storageMap = storageMap.map(storage => { const folders = storage.folders.filter( folder => folder.name.toLowerCase().indexOf(searchText.toLowerCase()) !== -1 ) return Object.assign({}, storage, { folders }) }) } const storageList = storageMap.map((storage, key) => { const SortableStorageItem = SortableContainer(StorageItem) return ( ) }) component = (
this.handleHomeButtonClick(e)} isStarredActive={isStarredActive} isTrashedActive={isTrashedActive} handleStarredButtonClick={e => this.handleStarredButtonClick(e)} handleTrashedButtonClick={e => this.handleTrashedButtonClick(e)} counterTotalNote={ data.noteMap._map.size - data.trashedSet._set.size } counterStarredNote={data.starredSet._set.size} counterDelNote={data.trashedSet._set.size} handleFilterButtonContextMenu={this.handleFilterButtonContextMenu.bind( this )} />
) } else { component = (

{i18n.__('Tags')}

{this.tagListComponent(data)}
) } return component } tagListComponent() { const { data, location, config } = this.props const { colorPicker, showSearch, searchText } = this.state const activeTags = this.getActiveTags(location.pathname) const relatedTags = this.getRelatedTags(activeTags, data.noteMap) let tagList = sortBy( data.tagNoteMap .map((tag, name) => ({ name, size: tag.size, related: relatedTags.has(name) })) .filter(tag => tag.size > 0), ['name'] ) if (showSearch && searchText.length > 0) { tagList = tagList.filter( tag => tag.name.toLowerCase().indexOf(searchText.toLowerCase()) !== -1 ) } if (config.ui.enableLiveNoteCounts && activeTags.length !== 0) { const notesTags = data.noteMap.map(note => note.tags) tagList = tagList.map(tag => { tag.size = notesTags.filter( tags => tags.includes(tag.name) && matchActiveTags(tags, activeTags) ).length return tag }) } if (config.sortTagsBy === 'COUNTER') { tagList = sortBy(tagList, item => 0 - item.size) } if (config.ui.showOnlyRelatedTags && relatedTags.size > 0) { tagList = tagList.filter(tag => tag.related) } return tagList.map(tag => { return ( ) }) } getRelatedTags(activeTags, noteMap) { if (activeTags.length === 0) { return new Set() } const relatedNotes = noteMap .map(note => ({ key: note.key, tags: note.tags })) .filter(note => activeTags.every(tag => note.tags.includes(tag))) const relatedTags = new Set() relatedNotes.forEach(note => note.tags.map(tag => relatedTags.add(tag))) return relatedTags } getTagActive(path, tag) { return this.getActiveTags(path).includes(tag) } getActiveTags(path) { const pathSegments = path.split('/') const tags = pathSegments[pathSegments.length - 1] return tags === 'alltags' ? [] : decodeURIComponent(tags).split(' ') } handleClickTagListItem(name) { const { dispatch } = this.props dispatch(push(`/tags/${encodeURIComponent(name)}`)) } handleSortTagsByChange(e) { const { dispatch } = this.props const config = { sortTagsBy: e.target.value } ConfigManager.set(config) dispatch({ type: 'SET_CONFIG', config }) } handleClickNarrowToTag(tag) { const { dispatch, location } = this.props const listOfTags = this.getActiveTags(location.pathname) const indexOfTag = listOfTags.indexOf(tag) if (indexOfTag > -1) { listOfTags.splice(indexOfTag, 1) } else { listOfTags.push(tag) } dispatch(push(`/tags/${encodeURIComponent(listOfTags.join(' '))}`)) } emptyTrash(entries) { const { dispatch } = this.props const deletionPromises = entries.map(note => { return dataApi.deleteNote(note.storage, note.key) }) const { confirmDeletion } = this.props.config.ui if (!confirmDeleteNote(confirmDeletion, true)) return Promise.all(deletionPromises) .then(arrayOfStorageAndNoteKeys => { arrayOfStorageAndNoteKeys.forEach(({ storageKey, noteKey }) => { dispatch({ type: 'DELETE_NOTE', storageKey, noteKey }) }) }) .catch(err => { console.error('Cannot Delete note: ' + err) }) } handleFilterButtonContextMenu(event) { const { data } = this.props const trashedNotes = data.trashedSet .toJS() .map(uniqueKey => data.noteMap.get(uniqueKey)) context.popup([ { label: i18n.__('Empty Trash'), click: () => this.emptyTrash(trashedNotes) } ]) } render() { const { location, config } = this.props const { showSearch, searchText, colorPicker: colorPickerState } = this.state let colorPicker if (colorPickerState.show) { colorPicker = ( ) } const isFolded = config.isSideNavFolded const style = {} if (!isFolded) style.width = this.props.width const isTagActive = /tag/.test(location.pathname) const navSearch = (
{isFolded && ( )}
) return (
{navSearch} {this.SideNavComponent(isFolded)} {colorPicker}
) } } SideNav.contextTypes = { router: PropTypes.shape({}) } SideNav.propTypes = { dispatch: PropTypes.func, storages: PropTypes.array, config: PropTypes.shape({ isSideNavFolded: PropTypes.bool }), location: PropTypes.shape({ pathname: PropTypes.string }) } export default CSSModules(SideNav, styles) ================================================ FILE: browser/main/StatusBar/StatusBar.styl ================================================ @import('../Detail/DetailVars') .root position absolute bottom 10px right 10px z-index 100 display flex .blank flex 1 .help navButtonColor() height 24px width 24px border-width 0 0 0 1px border-style solid border-color $ui-borderColor &:active .update-icon color white .zoom navButtonColor() color rgba(0,0,0,.54) height 20px display flex padding 0 align-items center background-color transparent &:hover color $ui-active-color &:active color $ui-active-color span margin-left 5px .update navButtonColor() height 24px border-width 0 0 0 1px border-style solid border-color $ui-borderColor &:active .update-icon color white .update-icon color $brand-color body[data-theme="default"] .zoom color $ui-text-color body[data-theme="white"] .zoom color $ui-text-color body[data-theme="dark"] .root border-color $ui-dark-borderColor box-shadow none .zoom border-color $ui-dark-borderColor background-color transparent color #f9f9f9 &:hover transition 0.15s color $ui-dark-text-color .help navButtonColor() border-color $ui-dark-borderColor border-left 1px solid $ui-dark-borderColor .update navDarkButtonColor() border-color $ui-dark-borderColor border-left 1px solid $ui-dark-borderColor apply-theme(theme) body[data-theme={theme}] .zoom border-color $ui-dark-borderColor color get-theme-var(theme, 'text-color') &:hover transition 0.15s color get-theme-var(theme, 'active-color') &:active color get-theme-var(theme, 'active-color') for theme in 'dracula' 'solarized-dark' apply-theme(theme) for theme in $themes apply-theme(theme) ================================================ FILE: browser/main/StatusBar/index.js ================================================ import PropTypes from 'prop-types' import React from 'react' import CSSModules from 'browser/lib/CSSModules' import styles from './StatusBar.styl' import ZoomManager from 'browser/main/lib/ZoomManager' import i18n from 'browser/lib/i18n' import context from 'browser/lib/context' import EventEmitter from 'browser/main/lib/eventEmitter' const electron = require('electron') const { remote, ipcRenderer } = electron const { dialog } = remote const zoomOptions = [ 0.8, 0.9, 1, 1.1, 1.2, 1.3, 1.4, 1.5, 1.6, 1.7, 1.8, 1.9, 2.0 ] class StatusBar extends React.Component { constructor(props) { super(props) this.handleZoomInMenuItem = this.handleZoomInMenuItem.bind(this) this.handleZoomOutMenuItem = this.handleZoomOutMenuItem.bind(this) this.handleZoomResetMenuItem = this.handleZoomResetMenuItem.bind(this) } componentDidMount() { EventEmitter.on('status:zoomin', this.handleZoomInMenuItem) EventEmitter.on('status:zoomout', this.handleZoomOutMenuItem) EventEmitter.on('status:zoomreset', this.handleZoomResetMenuItem) } componentWillUnmount() { EventEmitter.off('status:zoomin', this.handleZoomInMenuItem) EventEmitter.off('status:zoomout', this.handleZoomOutMenuItem) EventEmitter.off('status:zoomreset', this.handleZoomResetMenuItem) } updateApp() { const index = dialog.showMessageBox(remote.getCurrentWindow(), { type: 'warning', message: i18n.__('Update Boostnote'), detail: i18n.__('New Boostnote is ready to be installed.'), buttons: [i18n.__('Restart & Install'), i18n.__('Not Now')] }) if (index === 0) { ipcRenderer.send('update-app-confirm') } } handleZoomButtonClick(e) { const templates = [] zoomOptions.forEach(zoom => { templates.push({ label: Math.floor(zoom * 100) + '%', click: () => this.handleZoomMenuItemClick(zoom) }) }) context.popup(templates) } handleZoomMenuItemClick(zoomFactor) { const { dispatch } = this.props ZoomManager.setZoom(zoomFactor) dispatch({ type: 'SET_ZOOM', zoom: zoomFactor }) } handleZoomInMenuItem() { const zoomFactor = ZoomManager.getZoom() + 0.1 this.handleZoomMenuItemClick(zoomFactor) } handleZoomOutMenuItem() { const zoomFactor = ZoomManager.getZoom() - 0.1 this.handleZoomMenuItemClick(zoomFactor) } handleZoomResetMenuItem() { this.handleZoomMenuItemClick(1.0) } render() { const { config, status } = this.context return (
{status.updateReady ? ( ) : null}
) } } StatusBar.contextTypes = { status: PropTypes.shape({ updateReady: PropTypes.bool.isRequired }).isRequired, config: PropTypes.shape({}).isRequired, date: PropTypes.string } StatusBar.propTypes = { config: PropTypes.shape({ zoom: PropTypes.number }) } export default CSSModules(StatusBar, styles) ================================================ FILE: browser/main/TopBar/TopBar.styl ================================================ .root position relative background-color $ui-noteList-backgroundColor height $topBar-height - 1 .root--expanded @extend .root $control-height = 34px .control position absolute top 13px left 8px right 8px height $control-height overflow hidden display flex .control-search height 32px width 1px flex 1 background-color white position relative .control-search-input display block absolute top bottom right width 100% padding-left 12px background-color $ui-noteList-backgroundColor input width 100% height 100% outline none border none color $ui-text-color font-size 18px padding-bottom 2px background-color $ui-noteList-backgroundColor .control-search-input-clear height 16px width 16px position absolute right 40px top 10px z-index 300 border none background-color transparent color #999 &:hover .control-search-input-clear-tooltip opacity 1 .control-search-input-clear-tooltip tooltip() position fixed pointer-events none top 50px left 433px z-index 200 padding 5px line-height normal border-radius 2px opacity 0 transition 0.1s .control-search-optionList position fixed z-index 200 width 500px height 250px overflow-y auto background-color $modal-background border-radius 2px border-none box-shadow 0 0 1px rgba(76,86,103,.25), 0 2px 18px rgba(31,37,50,.32) .control-search-optionList-item height 50px border-bottom $ui-border transition background-color 0.15s padding 5px cursor pointer overflow ellipsis &:hover background-color alpha(#D4D4D4, 30%) .control-search-optionList-item-folder border-left 2px solid transparent padding 2px 5px color $ui-text-color overflow ellipsis font-size 12px height 16px margin-bottom 4px .control-search-optionList-item-folder-surfix font-size 10px margin-left 5px color $ui-inactive-text-color .control-search-optionList-item-type font-size 12px color $ui-inactive-text-color padding-right 3px .control-search-optionList-empty height 150px color $ui-inactive-text-color line-height 150px text-align center .control-newPostButton display block width 32px height $control-height - 2 navButtonColor() font-size 16px line-height 28px padding 0 &:active border-color $ui-button--active-backgroundColor &:hover .control-newPostButton-tooltip opacity 1 .control-newPostButton-tooltip tooltip() position fixed pointer-events none top 50px left 433px z-index 200 padding 5px line-height normal border-radius 2px opacity 0 transition 0.1s body[data-theme="white"] .root, .root--expanded background-color $ui-white-noteList-backgroundColor .control border-color $ui-dark-borderColor .control-search background-color $ui-white-noteList-backgroundColor .control-search-input background-color $ui-white-noteList-backgroundColor input background-color $ui-white-noteList-backgroundColor body[data-theme="dark"] .root, .root--expanded background-color $ui-dark-noteList-backgroundColor .control border-color $ui-dark-borderColor .control-search background-color $dark-background-color .control-search-icon absolute top bottom left line-height 32px width 35px color $ui-dark-inactive-text-color background-color $ui-dark-noteList-backgroundColor .control-search-input background-color $ui-dark-noteList-backgroundColor input background-color $ui-dark-noteList-backgroundColor color $ui-dark-text-color .control-search-optionList color white background-color $ui-dark-button--hover-backgroundColor border-color $ui-dark-borderColor box-shadow 2px 2px 10px black .control-search-optionList-item border-color $ui-dark-borderColor &:hover background-color alpha($ui-dark-button--active-backgroundColor, 20%) .control-search-optionList-item-folder color $ui-dark-text-color .control-search-optionList-item-folder-surfix font-size 10px margin-left 5px color $ui-inactive-text-color .control-search-optionList-item-type font-size 12px color $ui-inactive-text-color padding-right 3px .control-search-optionList-empty color $ui-inactive-text-color .control-newPostButton color $ui-inactive-text-color border-color $ui-dark-borderColor background-color $ui-dark-noteList-backgroundColor &:hover transition 0.15s color $ui-dark-text-color &:active background-color alpha($ui-dark-button--active-backgroundColor, 20%) border-color $ui-dark-button--active-backgroundColor .control-newPostButton-tooltip darkTooltip() apply-theme(theme) body[data-theme={theme}] .root, .root--expanded background-color get-theme-var(theme, 'noteList-backgroundColor') .control border-color get-theme-var(theme, 'borderColor') .control-search background-color get-theme-var(theme, 'noteList-backgroundColor') .control-search-icon absolute top bottom left line-height 32px width 35px color get-theme-var(theme, 'inactive-text-color') background-color get-theme-var(theme, 'noteList-backgroundColor') .control-search-input background-color get-theme-var(theme, 'noteList-backgroundColor') input background-color get-theme-var(theme, 'noteList-backgroundColor') color get-theme-var(theme, 'text-color') for theme in 'solarized-dark' 'dracula' apply-theme(theme) for theme in $themes apply-theme(theme) ================================================ FILE: browser/main/TopBar/index.js ================================================ import PropTypes from 'prop-types' import React from 'react' import CSSModules from 'browser/lib/CSSModules' import styles from './TopBar.styl' import _ from 'lodash' import ee from 'browser/main/lib/eventEmitter' import NewNoteButton from 'browser/main/NewNoteButton' import i18n from 'browser/lib/i18n' import debounce from 'lodash/debounce' import CInput from 'react-composition-input' import { push } from 'connected-react-router' class TopBar extends React.Component { constructor(props) { super(props) this.state = { search: '', searchOptions: [], isSearching: false } const { dispatch } = this.props this.focusSearchHandler = () => { this.handleOnSearchFocus() } this.codeInitHandler = this.handleCodeInit.bind(this) this.handleKeyDown = this.handleKeyDown.bind(this) this.handleSearchFocus = this.handleSearchFocus.bind(this) this.handleSearchBlur = this.handleSearchBlur.bind(this) this.handleSearchChange = this.handleSearchChange.bind(this) this.handleSearchClearButton = this.handleSearchClearButton.bind(this) this.debouncedUpdateKeyword = debounce( keyword => { dispatch(push(`/searched/${encodeURIComponent(keyword)}`)) this.setState({ search: keyword }) ee.emit('top:search', keyword) }, 1000 / 60, { maxWait: 1000 / 8 } ) } componentDidMount() { const { match: { params } } = this.props const searchWord = params && params.searchword if (searchWord !== undefined) { this.setState({ search: searchWord, isSearching: true }) } ee.on('top:focus-search', this.focusSearchHandler) ee.on('code:init', this.codeInitHandler) } componentWillUnmount() { ee.off('top:focus-search', this.focusSearchHandler) ee.off('code:init', this.codeInitHandler) } handleSearchClearButton(e) { const { dispatch } = this.props this.setState({ search: '', isSearching: false }) this.refs.search.childNodes[0].blur dispatch(push('/searched')) e.preventDefault() this.debouncedUpdateKeyword('') } handleKeyDown(e) { // Re-apply search field on ENTER key if (e.keyCode === 13) { this.debouncedUpdateKeyword(e.target.value) } // Clear search on ESC if (e.keyCode === 27) { return this.handleSearchClearButton(e) } // Next note on DOWN key if (e.keyCode === 40) { ee.emit('list:next') e.preventDefault() } // Prev note on UP key if (e.keyCode === 38) { ee.emit('list:prior') e.preventDefault() } } handleSearchChange(e) { const keyword = e.target.value this.debouncedUpdateKeyword(keyword) } handleSearchFocus(e) { this.setState({ isSearching: true }) } handleSearchBlur(e) { e.stopPropagation() let el = e.relatedTarget let isStillFocused = false while (el != null) { if (el === this.refs.search) { isStillFocused = true break } el = el.parentNode } if (!isStillFocused) { this.setState({ isSearching: false }) } } handleOnSearchFocus() { const el = this.refs.search.childNodes[0] if (this.state.isSearching) { el.blur() } else { el.select() } } handleCodeInit() { ee.emit('top:search', this.refs.searchInput.value || '') } render() { const { config, style, location } = this.props return (
{this.state.search !== '' && ( )}
{location.pathname === '/trashed' ? ( '' ) : ( )}
) } } TopBar.contextTypes = { router: PropTypes.shape({ push: PropTypes.func }) } TopBar.propTypes = { dispatch: PropTypes.func, config: PropTypes.shape({ isSideNavFolded: PropTypes.bool }) } export default CSSModules(TopBar, styles) ================================================ FILE: browser/main/global.styl ================================================ global-reset() @import '../styles/vars.styl' DEFAULT_FONTS = 'OpenSans', helvetica, arial, sans-serif html, body width 100% height 100% overflow hidden body font-family DEFAULT_FONTS color textColor font-size fontSize font-weight 200 -webkit-font-smoothing antialiased ::-webkit-scrollbar width 12px ::-webkit-scrollbar-corner background-color: transparent; ::-webkit-scrollbar-thumb background-color rgba(0, 0, 0, 0.15) button, input, select, textarea font-family DEFAULT_FONTS div, span, a, button, input, textarea box-sizing border-box a color $brand-color &:hover color lighten($brand-color, 5%) &:visited color $brand-color hr border-top none border-bottom solid 1px $border-color margin 15px 0 button font-weight 400 cursor pointer font-size 12px &:focus, &.focus outline none &:disabled cursor not-allowed input &:disabled cursor not-allowed .noSelect noSelect() .text-center text-align center .form-group margin-bottom 15px &>label display block margin-bottom 5px textarea.block-input resize vertical height 125px border-radius 5px padding 5px 10px #content fullsize() modalZIndex= 1000 modalBackColor = white .ace_focus outline-color rgb(59, 153, 252) outline-offset 0px outline-style auto outline-width 5px .ModalBase fixed top left bottom right z-index modalZIndex display flex align-items center justify-content center &.hide display none .modalBack absolute top left bottom right background-color modalBackColor z-index modalZIndex + 1 .CodeMirror font-family inherit !important line-height 1.4em height 100% .CodeMirror > div > textarea margin-bottom -1em .CodeMirror-focused .CodeMirror-selected background #B1D7FE .CodeMirror-line::selection, .CodeMirror-line > span::selection, .CodeMirror-line > span > span::selection background #B1D7FE .CodeMirror-line::-moz-selection, .CodeMirror-line > span::-moz-selection, .CodeMirror-line > span > span::-moz-selection background #B1D7FE ::selection background #B1D7FE .CodeMirror-foldmarker font-family: arial .CodeMirror-foldgutter width: .7em .CodeMirror-foldgutter-open, .CodeMirror-foldgutter-folded cursor: pointer .CodeMirror-foldgutter-open:after content: "\25BE" .CodeMirror-foldgutter-folded:after content: "\25B8" .CodeMirror-hover padding 2px 4px 0 4px position absolute z-index 99 .CodeMirror-hyperlink cursor pointer .sortableItemHelper z-index modalZIndex + 5 apply-theme(theme) body[data-theme={theme}] background-color get-theme-var(theme, 'backgroundColor') ::-webkit-scrollbar-thumb background-color rgba(0, 0, 0, 0.3) .ModalBase .modalBack background-color get-theme-var(theme, 'backgroundColor') .sortableItemHelper color get-theme-var(theme, 'text-color') for theme in 'dark' 'solarized-dark' 'dracula' apply-theme(theme) for theme in $themes apply-theme(theme) body[data-theme="default"] .SideNav ::-webkit-scrollbar-thumb background-color rgba(255, 255, 255, 0.3) @import '../styles/Detail/TagSelect.styl' ================================================ FILE: browser/main/index.js ================================================ import { Provider } from 'react-redux' import Main from './Main' import { store, history } from './store' import React, { Fragment } from 'react' import ReactDOM from 'react-dom' require('!!style!css!stylus?sourceMap!./global.styl') import config from 'browser/main/lib/ConfigManager' import { Route, Switch, Redirect } from 'react-router-dom' import { ConnectedRouter } from 'connected-react-router' import DevTools from './DevTools' require('./lib/ipcClient') require('../lib/customMeta') import i18n from 'browser/lib/i18n' import ConfigManager from './lib/ConfigManager' const electron = require('electron') const { remote, ipcRenderer } = electron const { dialog } = remote document.addEventListener('drop', function(e) { e.preventDefault() e.stopPropagation() }) document.addEventListener('dragover', function(e) { e.preventDefault() e.stopPropagation() }) // prevent menu from popup when alt pressed // but still able to toggle menu when only alt is pressed let isAltPressing = false let isAltWithMouse = false let isAltWithOtherKey = false let isOtherKey = false document.addEventListener('keydown', function(e) { if (e.key === 'Alt') { isAltPressing = true if (isOtherKey) { isAltWithOtherKey = true } } else { if (isAltPressing) { isAltWithOtherKey = true } isOtherKey = true } }) document.addEventListener('mousedown', function(e) { if (isAltPressing) { isAltWithMouse = true } }) document.addEventListener('keyup', function(e) { if (e.key === 'Alt') { if (isAltWithMouse || isAltWithOtherKey) { e.preventDefault() } isAltWithMouse = false isAltWithOtherKey = false isAltPressing = false isOtherKey = false } }) document.addEventListener('click', function(e) { const className = e.target.className if (!className && typeof className !== 'string') return const isInfoButton = className.includes('infoButton') const offsetParent = e.target.offsetParent const isInfoPanel = offsetParent !== null ? offsetParent.className.includes('infoPanel') : false if (isInfoButton || isInfoPanel) return const infoPanel = document.querySelector('.infoPanel') if (infoPanel) infoPanel.style.display = 'none' }) if (!config.get().ui.showScrollBar) { document.styleSheets[54].insertRule('::-webkit-scrollbar {display: none}') document.styleSheets[54].insertRule( '::-webkit-scrollbar-corner {display: none}' ) document.styleSheets[54].insertRule( '::-webkit-scrollbar-thumb {display: none}' ) } const el = document.getElementById('content') function notify(...args) { return new window.Notification(...args) } function updateApp() { const index = dialog.showMessageBox(remote.getCurrentWindow(), { type: 'warning', message: i18n.__('Update Boostnote'), detail: i18n.__('New Boostnote is ready to be installed.'), buttons: [i18n.__('Restart & Install'), i18n.__('Not Now')] }) if (index === 0) { ipcRenderer.send('update-app-confirm') } } function downloadUpdate() { const index = dialog.showMessageBox(remote.getCurrentWindow(), { type: 'warning', message: i18n.__('Update Boostnote'), detail: i18n.__('New Boostnote is ready to be downloaded.'), buttons: [i18n.__('Download now'), i18n.__('Ignore updates')] }) if (index === 0) { ipcRenderer.send('update-download-confirm') } else if (index === 1) { ipcRenderer.send('update-cancel') ConfigManager.set({ autoUpdateEnabled: false }) } } ReactDOM.render( {/* storages */} , el, function() { const loadingCover = document.getElementById('loadingCover') loadingCover.parentNode.removeChild(loadingCover) ipcRenderer.on('update-ready', function() { store.dispatch({ type: 'UPDATE_AVAILABLE' }) notify('Update ready!', { body: 'New Boostnote is ready to be installed.' }) updateApp() }) ipcRenderer.on('update-found', function() { downloadUpdate() }) ipcRenderer.on('update-not-found', function(_, msg) { notify('Update not found!', { body: msg }) }) ipcRenderer.send('update-check', 'check-update') window.addEventListener('online', function() { if (!store.getState().status.updateReady) { ipcRenderer.send('update-check', 'check-update') } }) } ) ================================================ FILE: browser/main/lib/AwsMobileAnalyticsConfig.js ================================================ const AWS = require('aws-sdk') const AMA = require('aws-sdk-mobile-analytics') const ConfigManager = require('browser/main/lib/ConfigManager') const remote = require('electron').remote const os = require('os') let mobileAnalyticsClient AWS.config.region = 'us-east-1' if (!getSendEventCond()) { AWS.config.credentials = new AWS.CognitoIdentityCredentials({ IdentityPoolId: 'us-east-1:xxxxxxxxxxxxxxxxxxxxxxxxx' }) const validPlatformName = convertPlatformName(os.platform()) mobileAnalyticsClient = new AMA.Manager({ appId: 'xxxxxxxxxxxxxxxxxxxxxxxxxxxxx', appTitle: 'xxxxxxxxxx', appVersionName: remote.app.getVersion().toString(), platform: validPlatformName }) } function convertPlatformName(platformName) { if (platformName === 'darwin') { return 'MacOS' } else if (platformName === 'win32') { return 'Windows' } else if (platformName === 'linux') { return 'Linux' } else { return '' } } function getSendEventCond() { const isDev = process.env.NODE_ENV !== 'production' const isDisable = !ConfigManager.default.get().amaEnabled const isOffline = !window.navigator.onLine return isDev || isDisable || isOffline } function initAwsMobileAnalytics() { if (getSendEventCond()) return AWS.config.credentials.get(err => { if (!err) { recordDynamicCustomEvent('APP_STARTED') recordStaticCustomEvent() } }) } function recordDynamicCustomEvent(type, options = {}) { if (getSendEventCond()) return try { mobileAnalyticsClient.recordEvent(type, options) } catch (analyticsError) { if (analyticsError instanceof ReferenceError) { console.error(analyticsError.name + ': ' + analyticsError.message) } } } function recordStaticCustomEvent() { if (getSendEventCond()) return try { mobileAnalyticsClient.recordEvent('UI_COLOR_THEME', { uiColorTheme: ConfigManager.default.get().ui.theme }) } catch (analyticsError) { if (analyticsError instanceof ReferenceError) { console.error(analyticsError.name + ': ' + analyticsError.message) } } } module.exports = { initAwsMobileAnalytics, recordDynamicCustomEvent } ================================================ FILE: browser/main/lib/Commander.js ================================================ let callees = [] function bind(name, el) { callees.push({ name: name, element: el }) } function release(el) { callees = callees.filter(callee => callee.element !== el) } function fire(command) { console.info('COMMAND >>', command) const splitted = command.split(':') const target = splitted[0] const targetCommand = splitted[1] const targetCallees = callees.filter(callee => callee.name === target) targetCallees.forEach(callee => { callee.element.fire(targetCommand) }) } export default { bind, release, fire } ================================================ FILE: browser/main/lib/ConfigManager.js ================================================ import _ from 'lodash' import RcParser from 'browser/lib/RcParser' import i18n from 'browser/lib/i18n' import ee from 'browser/main/lib/eventEmitter' const OSX = global.process.platform === 'darwin' const win = global.process.platform === 'win32' const electron = require('electron') const { ipcRenderer } = electron const consts = require('browser/lib/consts') const electronConfig = new (require('electron-config'))() let isInitialized = false const DEFAULT_MARKDOWN_LINT_CONFIG = `{ "default": true }` const DEFAULT_CSS_CONFIG = ` /* Drop Your Custom CSS Code Here */ [data-theme="default"] p code.inline, [data-theme="default"] li code.inline, [data-theme="default"] td code.inline { padding: 2px; border-width: 1px; border-style: solid; border-radius: 5px; background-color: #F4F4F4; border-color: #d9d9d9; color: #03C588; } ` export const DEFAULT_CONFIG = { zoom: 1, isSideNavFolded: false, listWidth: 280, navWidth: 200, sortBy: { default: 'UPDATED_AT' // 'CREATED_AT', 'UPDATED_AT', 'APLHABETICAL' }, sortTagsBy: 'ALPHABETICAL', // 'ALPHABETICAL', 'COUNTER' listStyle: 'DEFAULT', // 'DEFAULT', 'SMALL' listDirection: 'ASCENDING', // 'ASCENDING', 'DESCENDING' amaEnabled: true, autoUpdateEnabled: true, hotkey: { toggleMain: OSX ? 'Command + Alt + L' : 'Super + Alt + E', toggleMode: OSX ? 'Command + Alt + M' : 'Ctrl + M', toggleDirection: OSX ? 'Command + Alt + Right' : 'Ctrl + Alt + Right', deleteNote: OSX ? 'Command + Shift + Backspace' : 'Ctrl + Shift + Backspace', pasteSmartly: OSX ? 'Command + Shift + V' : 'Ctrl + Shift + V', prettifyMarkdown: OSX ? 'Command + Shift + F' : 'Ctrl + Shift + F', sortLines: OSX ? 'Command + Shift + S' : 'Ctrl + Shift + S', insertDate: OSX ? 'Command + /' : 'Ctrl + /', insertDateTime: OSX ? 'Command + Alt + /' : 'Ctrl + Shift + /', toggleMenuBar: 'Alt' }, ui: { language: 'en', theme: 'default', defaultTheme: 'default', enableScheduleTheme: false, scheduledTheme: 'monokai', scheduleStart: 1200, scheduleEnd: 360, showCopyNotification: true, disableDirectWrite: false, showScrollBar: true, defaultNote: 'ALWAYS_ASK', // 'ALWAYS_ASK', 'SNIPPET_NOTE', 'MARKDOWN_NOTE' showMenuBar: false, isStacking: false }, editor: { theme: 'base16-light', keyMap: 'sublime', fontSize: '14', fontFamily: win ? 'Consolas' : 'Monaco', indentType: 'space', indentSize: '2', lineWrapping: true, enableRulers: false, rulers: [80, 120], displayLineNumbers: true, matchingPairs: '()[]{}\'\'""$$**``~~__', matchingCloseBefore: ')]}\'":;>', matchingTriples: '```"""\'\'\'', explodingPairs: '[]{}``$$', codeBlockMatchingPairs: '()[]{}\'\'""``', codeBlockMatchingCloseBefore: ')]}\'":;>', codeBlockMatchingTriples: '', codeBlockExplodingPairs: '[]{}``', switchPreview: 'BLUR', // 'BLUR', 'DBL_CLICK', 'RIGHTCLICK' delfaultStatus: 'PREVIEW', // 'PREVIEW', 'CODE' scrollPastEnd: false, type: 'SPLIT', // 'SPLIT', 'EDITOR_PREVIEW' fetchUrlTitle: true, enableTableEditor: false, enableFrontMatterTitle: true, frontMatterTitleField: 'title', spellcheck: false, enableSmartPaste: false, enableMarkdownLint: false, customMarkdownLintConfig: DEFAULT_MARKDOWN_LINT_CONFIG, dateFormatISO8601: false, prettierConfig: `{ "trailingComma": "es5", "tabWidth": 2, "semi": false, "singleQuote": true }`, deleteUnusedAttachments: true, rtlEnabled: false }, preview: { fontSize: '14', fontFamily: win ? 'Segoe UI' : 'Lato', codeBlockTheme: 'dracula', lineNumber: true, latexInlineOpen: '$', latexInlineClose: '$', latexBlockOpen: '$$', latexBlockClose: '$$', plantUMLServerAddress: 'http://www.plantuml.com/plantuml', scrollPastEnd: false, scrollSync: true, smartQuotes: true, breaks: true, smartArrows: false, allowCustomCSS: false, customCSS: DEFAULT_CSS_CONFIG, sanitize: 'STRICT', // 'STRICT', 'ALLOW_STYLES', 'NONE' mermaidHTMLLabel: false, lineThroughCheckbox: true }, blog: { type: 'wordpress', // Available value: wordpress, add more types in the future plz address: 'http://wordpress.com/wp-json', authMethod: 'JWT', // Available value: JWT, USER token: '', username: '', password: '' }, export: { metadata: 'DONT_EXPORT', // 'DONT_EXPORT', 'MERGE_HEADER', 'MERGE_VARIABLE' variable: 'boostnote', prefixAttachmentFolder: false }, coloredTags: {}, wakatime: { key: null } } function validate(config) { if (!_.isObject(config)) return false if (!_.isNumber(config.zoom) || config.zoom < 0) return false if (!_.isBoolean(config.isSideNavFolded)) return false if (!_.isNumber(config.listWidth) || config.listWidth <= 0) return false return true } function _save(config) { window.localStorage.setItem('config', JSON.stringify(config)) } function get() { const rawStoredConfig = window.localStorage.getItem('config') const storedConfig = Object.assign( {}, DEFAULT_CONFIG, JSON.parse(rawStoredConfig) ) let config = storedConfig try { const boostnotercConfig = RcParser.parse() config = assignConfigValues(storedConfig, boostnotercConfig) if (!validate(config)) throw new Error('INVALID CONFIG') } catch (err) { console.warn('Boostnote resets the invalid configuration.') config = DEFAULT_CONFIG _save(config) } config.autoUpdateEnabled = electronConfig.get( 'autoUpdateEnabled', config.autoUpdateEnabled ) if (!isInitialized) { isInitialized = true let editorTheme = document.getElementById('editorTheme') if (editorTheme == null) { editorTheme = document.createElement('link') editorTheme.setAttribute('id', 'editorTheme') editorTheme.setAttribute('rel', 'stylesheet') document.head.appendChild(editorTheme) } const theme = consts.THEMES.find( theme => theme.name === config.editor.theme ) if (theme) { editorTheme.setAttribute('href', theme.path) } else { config.editor.theme = 'default' } } return config } function set(updates) { const currentConfig = get() const arrangedUpdates = updates if (updates.preview !== undefined && updates.preview.customCSS === '') { arrangedUpdates.preview.customCSS = DEFAULT_CONFIG.preview.customCSS } const newConfig = Object.assign( {}, DEFAULT_CONFIG, currentConfig, arrangedUpdates ) if (!validate(newConfig)) throw new Error('INVALID CONFIG') _save(newConfig) i18n.setLocale(newConfig.ui.language) let editorTheme = document.getElementById('editorTheme') if (editorTheme == null) { editorTheme = document.createElement('link') editorTheme.setAttribute('id', 'editorTheme') editorTheme.setAttribute('rel', 'stylesheet') document.head.appendChild(editorTheme) } const newTheme = consts.THEMES.find( theme => theme.name === newConfig.editor.theme ) if (newTheme) { editorTheme.setAttribute('href', newTheme.path) } electronConfig.set('autoUpdateEnabled', newConfig.autoUpdateEnabled) ipcRenderer.send('config-renew', { config: get() }) ee.emit('config-renew') } function assignConfigValues(originalConfig, rcConfig) { const config = Object.assign({}, DEFAULT_CONFIG, originalConfig, rcConfig) config.hotkey = Object.assign( {}, DEFAULT_CONFIG.hotkey, originalConfig.hotkey, rcConfig.hotkey ) config.wakatime = Object.assign( {}, DEFAULT_CONFIG.wakatime, originalConfig.wakatime, rcConfig.wakatime ) config.blog = Object.assign( {}, DEFAULT_CONFIG.blog, originalConfig.blog, rcConfig.blog ) config.ui = Object.assign( {}, DEFAULT_CONFIG.ui, originalConfig.ui, rcConfig.ui ) config.editor = Object.assign( {}, DEFAULT_CONFIG.editor, originalConfig.editor, rcConfig.editor ) config.preview = Object.assign( {}, DEFAULT_CONFIG.preview, originalConfig.preview, rcConfig.preview ) rewriteHotkey(config) return config } function rewriteHotkey(config) { const keys = [...Object.keys(config.hotkey)] keys.forEach(key => { config.hotkey[key] = config.hotkey[key].replace(/Cmd\s/g, 'Command ') config.hotkey[key] = config.hotkey[key].replace(/Opt\s/g, 'Option ') }) return config } export default { get, set, validate } ================================================ FILE: browser/main/lib/ThemeManager.js ================================================ import ConfigManager from 'browser/main/lib/ConfigManager' import uiThemes from 'browser/lib/ui-themes' const saveChanges = newConfig => { ConfigManager.set(newConfig) } const chooseTheme = config => { const { ui } = config if (!ui.enableScheduleTheme) { return } const start = parseInt(ui.scheduleStart) const end = parseInt(ui.scheduleEnd) const now = new Date() const minutes = now.getHours() * 60 + now.getMinutes() const isEndAfterStart = end > start const isBetweenStartAndEnd = minutes >= start && minutes < end const isBetweenEndAndStart = minutes >= start || minutes < end if ( (isEndAfterStart && isBetweenStartAndEnd) || (!isEndAfterStart && isBetweenEndAndStart) ) { if (ui.theme !== ui.scheduledTheme) { ui.defaultTheme = ui.theme ui.theme = ui.scheduledTheme applyTheme(ui.theme) saveChanges(config) } } else { if (ui.theme !== ui.defaultTheme) { ui.theme = ui.defaultTheme applyTheme(ui.theme) saveChanges(config) } } } const applyTheme = theme => { if (uiThemes.some(item => item.name === theme)) { document.body.setAttribute('data-theme', theme) if (document.body.querySelector('.MarkdownPreview')) { document.body .querySelector('.MarkdownPreview') .contentDocument.body.setAttribute('data-theme', theme) } } else { document.body.setAttribute('data-theme', 'default') } } module.exports = { chooseTheme, applyTheme } ================================================ FILE: browser/main/lib/ZoomManager.js ================================================ import ConfigManager from './ConfigManager' const electron = require('electron') const { remote } = electron _init() function _init() { setZoom(getZoom(), true) } function _saveZoom(zoomFactor) { ConfigManager.set({ zoom: zoomFactor }) } function setZoom(zoomFactor, noSave = false) { if (!noSave) _saveZoom(zoomFactor) remote.getCurrentWebContents().setZoomFactor(zoomFactor) } function getZoom() { const config = ConfigManager.get() return config.zoom } export default { setZoom, getZoom } ================================================ FILE: browser/main/lib/dataApi/addStorage.js ================================================ const _ = require('lodash') const keygen = require('browser/lib/keygen') const resolveStorageData = require('./resolveStorageData') const resolveStorageNotes = require('./resolveStorageNotes') const consts = require('browser/lib/consts') const path = require('path') const CSON = require('@rokt33r/season') /** * @param {Object} * name, path, type * * 1. check if BoostnoteJSON can be created * if the file doesn't exist or isn't valid, try to rewrite it. * if the rewriting failed, throw Error * 2. save metadata to localStorage * 3. fetch notes & folders * 4. return `{storage: {...} folders: [folder]}` */ function addStorage(input) { if (!_.isString(input.path)) { return Promise.reject(new Error('Path must be a string.')) } let rawStorages try { rawStorages = JSON.parse(localStorage.getItem('storages')) if (!_.isArray(rawStorages)) throw new Error('invalid storages') } catch (e) { console.warn(e) rawStorages = [] } let key = keygen() while (rawStorages.some(storage => storage.key === key)) { key = keygen() } let newStorage = { key, name: input.name, type: input.type, path: input.path, isOpen: false } return Promise.resolve(newStorage) .then(resolveStorageData) .then(function saveMetadataToLocalStorage(resolvedStorage) { newStorage = resolvedStorage rawStorages.push({ key: newStorage.key, type: newStorage.type, name: newStorage.name, path: newStorage.path, isOpen: false }) localStorage.setItem('storages', JSON.stringify(rawStorages)) return newStorage }) .then(function(storage) { return resolveStorageNotes(storage).then(notes => { let unknownCount = 0 notes.forEach(note => { if (!storage.folders.some(folder => note.folder === folder.key)) { unknownCount++ storage.folders.push({ key: note.folder, color: consts.FOLDER_COLORS[(unknownCount - 1) % 7], name: 'Unknown ' + unknownCount }) } }) if (unknownCount > 0) { CSON.writeFileSync( path.join(storage.path, 'boostnote.json'), _.pick(storage, ['folders', 'version']) ) } return notes }) }) .then(function returnValue(notes) { return { storage: newStorage, notes } }) } module.exports = addStorage ================================================ FILE: browser/main/lib/dataApi/attachmentManagement.js ================================================ const uniqueSlug = require('unique-slug') const fs = require('fs') const path = require('path') const findStorage = require('browser/lib/findStorage') const mdurl = require('mdurl') const fse = require('fs-extra') const escapeStringRegexp = require('escape-string-regexp') const sander = require('sander') const url = require('url') import i18n from 'browser/lib/i18n' import { isString } from 'lodash' const STORAGE_FOLDER_PLACEHOLDER = ':storage' const DESTINATION_FOLDER = 'attachments' const PATH_SEPARATORS = escapeStringRegexp(path.posix.sep) + escapeStringRegexp(path.win32.sep) /** * @description * Create a Image element to get the real size of image. * @param {File} file the File object dropped. * @returns {Promise} Image element created */ function getImage(file) { if (isString(file)) { return new Promise(resolve => { const img = new Image() img.onload = () => resolve(img) img.src = file }) } else { return new Promise(resolve => { const reader = new FileReader() const img = new Image() img.onload = () => resolve(img) reader.onload = e => { img.src = e.target.result } reader.readAsDataURL(file) }) } } /** * @description * Get the orientation info from iamges's EXIF data. * case 1: The 0th row is at the visual top of the image, and the 0th column is the visual left-hand side. * case 2: The 0th row is at the visual top of the image, and the 0th column is the visual right-hand side. * case 3: The 0th row is at the visual bottom of the image, and the 0th column is the visual right-hand side. * case 4: The 0th row is at the visual bottom of the image, and the 0th column is the visual left-hand side. * case 5: The 0th row is the visual left-hand side of the image, and the 0th column is the visual top. * case 6: The 0th row is the visual right-hand side of the image, and the 0th column is the visual top. * case 7: The 0th row is the visual right-hand side of the image, and the 0th column is the visual bottom. * case 8: The 0th row is the visual left-hand side of the image, and the 0th column is the visual bottom. * Other: reserved * ref: http://sylvana.net/jpegcrop/exif_orientation.html * @param {File} file the File object dropped. * @returns {Promise} Orientation info */ function getOrientation(file) { const getData = arrayBuffer => { const view = new DataView(arrayBuffer) // Not start with SOI(Start of image) Marker return fail value if (view.getUint16(0, false) !== 0xffd8) return -2 const length = view.byteLength let offset = 2 while (offset < length) { const marker = view.getUint16(offset, false) offset += 2 // Loop and seed for APP1 Marker if (marker === 0xffe1) { // return fail value if it isn't EXIF data if (view.getUint32((offset += 2), false) !== 0x45786966) { return -1 } // Read TIFF header, // First 2bytes defines byte align of TIFF data. // If it is 0x4949="II", it means "Intel" type byte align. // If it is 0x4d4d="MM", it means "Motorola" type byte align const little = view.getUint16((offset += 6), false) === 0x4949 offset += view.getUint32(offset + 4, little) const tags = view.getUint16(offset, little) // Get TAG number offset += 2 for (let i = 0; i < tags; i++) { // Loop to find Orientation TAG and return the value if (view.getUint16(offset + i * 12, little) === 0x0112) { return view.getUint16(offset + i * 12 + 8, little) } } } else if ((marker & 0xff00) !== 0xff00) { // If not start with 0xFF, not a Marker. break } else { offset += view.getUint16(offset, false) } } return -1 } return new Promise(resolve => { const reader = new FileReader() reader.onload = event => resolve(getData(event.target.result)) reader.readAsArrayBuffer(file.slice(0, 64 * 1024)) }) } /** * @description * Rotate image file to correct direction. * Create a canvas and draw the image with correct direction, then export to base64 format. * @param {*} file the File object dropped. * @return {String} Base64 encoded image. */ function fixRotate(file) { return Promise.all([getImage(file), getOrientation(file)]).then( ([img, orientation]) => { const canvas = document.createElement('canvas') const ctx = canvas.getContext('2d') if (orientation > 4 && orientation < 9) { canvas.width = img.height canvas.height = img.width } else { canvas.width = img.width canvas.height = img.height } switch (orientation) { case 2: ctx.transform(-1, 0, 0, 1, img.width, 0) break case 3: ctx.transform(-1, 0, 0, -1, img.width, img.height) break case 4: ctx.transform(1, 0, 0, -1, 0, img.height) break case 5: ctx.transform(0, 1, 1, 0, 0, 0) break case 6: ctx.transform(0, 1, -1, 0, img.height, 0) break case 7: ctx.transform(0, -1, -1, 0, img.height, img.width) break case 8: ctx.transform(0, -1, 1, 0, 0, img.width) break default: break } ctx.drawImage(img, 0, 0) return canvas.toDataURL() } ) } /** * @description * Copies a copy of an attachment to the storage folder specified by the given key and return the generated attachment name. * Renames the file to match a unique file name. * * @param {String} sourceFilePath The source path of the attachment to be copied * @param {String} storageKey Storage key of the destination storage * @param {String} noteKey Key of the current note. Will be used as subfolder in :storage * @param {boolean} useRandomName determines whether a random filename for the new file is used. If false the source file name is used * @return {Promise} name (inclusive extension) of the generated file */ function copyAttachment( sourceFilePath, storageKey, noteKey, useRandomName = true ) { return new Promise((resolve, reject) => { if (!sourceFilePath) { reject('sourceFilePath has to be given') } if (!storageKey) { reject('storageKey has to be given') } if (!noteKey) { reject('noteKey has to be given') } try { const isBase64 = typeof sourceFilePath === 'object' && sourceFilePath.type === 'base64' if (!isBase64 && !fs.existsSync(sourceFilePath)) { return reject('source file does not exist') } const sourcePath = sourceFilePath.sourceFilePath || sourceFilePath const sourceURL = url.parse( /^\w+:\/\//.test(sourcePath) ? sourcePath : 'file:///' + sourcePath ) let destinationName if (useRandomName) { destinationName = `${uniqueSlug()}${path.extname(sourceURL.pathname) || '.png'}` } else { destinationName = path.basename(sourceURL.pathname) } const targetStorage = findStorage.findStorage(storageKey) const destinationDir = path.join( targetStorage.path, DESTINATION_FOLDER, noteKey ) createAttachmentDestinationFolder(targetStorage.path, noteKey) const outputFile = fs.createWriteStream( path.join(destinationDir, destinationName) ) if (isBase64) { const base64Data = sourceFilePath.data.replace( /^data:image\/\w+;base64,/, '' ) const dataBuffer = Buffer.from(base64Data, 'base64') outputFile.write(dataBuffer, () => { resolve(destinationName) }) } else { const inputFileStream = fs.createReadStream(sourceFilePath) inputFileStream.pipe(outputFile) inputFileStream.on('end', () => { resolve(destinationName) }) } } catch (e) { return reject(e) } }) } function createAttachmentDestinationFolder(destinationStoragePath, noteKey) { let destinationDir = path.join(destinationStoragePath, DESTINATION_FOLDER) if (!fs.existsSync(destinationDir)) { fs.mkdirSync(destinationDir) } destinationDir = path.join( destinationStoragePath, DESTINATION_FOLDER, noteKey ) if (!fs.existsSync(destinationDir)) { fs.mkdirSync(destinationDir) } } /** * @description Moves attachments from the old location ('/images') to the new one ('/attachments/noteKey) * @param markdownContent of the current note * @param storagePath Storage path of the current note * @param noteKey Key of the current note */ function migrateAttachments(markdownContent, storagePath, noteKey) { if ( noteKey !== undefined && sander.existsSync(path.join(storagePath, 'images')) ) { const attachments = getAttachmentsInMarkdownContent(markdownContent) || [] if (attachments.length) { createAttachmentDestinationFolder(storagePath, noteKey) } for (const attachment of attachments) { const attachmentBaseName = path.basename(attachment) const possibleLegacyPath = path.join( storagePath, 'images', attachmentBaseName ) if (sander.existsSync(possibleLegacyPath)) { const destinationPath = path.join( storagePath, DESTINATION_FOLDER, attachmentBaseName ) if (!sander.existsSync(destinationPath)) { sander.copyFileSync(possibleLegacyPath).to(destinationPath) } } } } } /** * @description Fixes the URLs embedded in the generated HTML so that they again refer actual local files. * @param {String} renderedHTML HTML in that the links should be fixed * @param {String} storagePath Path of the current storage * @returns {String} postprocessed HTML in which all :storage references are mapped to the actual paths. */ function fixLocalURLS(renderedHTML, storagePath) { const encodedWin32SeparatorRegex = /%5C/g const storageRegex = new RegExp('/?' + STORAGE_FOLDER_PLACEHOLDER, 'g') const storageUrl = 'file:///' + path.join(storagePath, DESTINATION_FOLDER).replace(/\\/g, '/') /* A :storage reference is like `:storage/3b6f8bd6-4edd-4b15-96e0-eadc4475b564/f939b2c3.jpg`. - `STORAGE_FOLDER_PLACEHOLDER` will match `:storage` - `(?:(?:\\\/|%5C)[-.\\w]+)+` will match `/3b6f8bd6-4edd-4b15-96e0-eadc4475b564/f939b2c3.jpg` - `(?:\\\/|%5C)[-.\\w]+` will either match `/3b6f8bd6-4edd-4b15-96e0-eadc4475b564` or `/f939b2c3.jpg` - `(?:\\\/|%5C)` match the path seperator. `\\\/` for posix systems and `%5C` for windows. */ return renderedHTML.replace( new RegExp( '/?' + STORAGE_FOLDER_PLACEHOLDER + '(?:(?:\\/|%5C)[-.\\w]+)+', 'g' ), function(match) { return match .replace(encodedWin32SeparatorRegex, '/') .replace(storageRegex, storageUrl) } ) } /** * @description Generates the markdown code for a given attachment * @param {String} fileName Name of the attachment * @param {String} path Path of the attachment * @param {Boolean} showPreview Indicator whether the generated markdown should show a preview of the image. Note that at the moment only previews for images are supported * @returns {String} Generated markdown code */ function generateAttachmentMarkdown(fileName, path, showPreview) { return `${showPreview ? '!' : ''}[${fileName}](${path})` } /** * @description Handles the drop-event of a file. Includes the necessary markdown code and copies the file to the corresponding storage folder. * The method calls {CodeEditor#insertAttachmentMd()} to include the generated markdown at the needed place! * @param {CodeEditor} codeEditor Markdown editor. Its insertAttachmentMd() method will be called to include the markdown code * @param {String} storageKey Key of the current storage * @param {String} noteKey Key of the current note * @param {Event} dropEvent DropEvent */ function handleAttachmentDrop(codeEditor, storageKey, noteKey, dropEvent) { let promise if (dropEvent.dataTransfer.files.length > 0) { promise = Promise.all( Array.from(dropEvent.dataTransfer.files).map(file => { const filePath = file.path const fileType = file.type // EX) 'image/gif' or 'text/html' if (fileType.startsWith('image')) { if (fileType === 'image/gif' || fileType === 'image/svg+xml') { return copyAttachment(filePath, storageKey, noteKey).then( fileName => ({ fileName, title: path.basename(filePath), isImage: true }) ) } else { return getOrientation(file) .then(orientation => { if (orientation === -1) { // The image rotation is correct and does not need adjustment return copyAttachment(filePath, storageKey, noteKey) } else { return fixRotate(file).then(data => copyAttachment( { type: 'base64', data: data, sourceFilePath: filePath }, storageKey, noteKey ) ) } }) .then(fileName => ({ fileName, title: path.basename(filePath), isImage: true })) } } else { return copyAttachment(filePath, storageKey, noteKey).then( fileName => ({ fileName, title: path.basename(filePath), isImage: false }) ) } }) ) } else { let imageURL = dropEvent.dataTransfer.getData('text/plain') if (!imageURL) { const match = /]*[\s"']src="([^"]+)"/.exec( dropEvent.dataTransfer.getData('text/html') ) if (match) { imageURL = match[1] } } if (!imageURL) { return } promise = Promise.all([ getImage(imageURL) .then(image => { const canvas = document.createElement('canvas') const context = canvas.getContext('2d') canvas.width = image.width canvas.height = image.height context.drawImage(image, 0, 0) return copyAttachment( { type: 'base64', data: canvas.toDataURL(), sourceFilePath: imageURL }, storageKey, noteKey ) }) .then(fileName => ({ fileName, title: imageURL, isImage: true })) ]) } promise.then(files => { const attachments = files .filter(file => !!file) .map(file => generateAttachmentMarkdown( file.title, path.join(STORAGE_FOLDER_PLACEHOLDER, noteKey, file.fileName), file.isImage ) ) codeEditor.insertAttachmentMd(attachments.join('\n')) }) } /** * @description Creates a new file in the storage folder belonging to the current note and inserts the correct markdown code * @param {CodeEditor} codeEditor Markdown editor. Its insertAttachmentMd() method will be called to include the markdown code * @param {String} storageKey Key of the current storage * @param {String} noteKey Key of the current note * @param {DataTransferItem} dataTransferItem Part of the past-event */ function handlePasteImageEvent( codeEditor, storageKey, noteKey, dataTransferItem ) { if (!codeEditor) { throw new Error('codeEditor has to be given') } if (!storageKey) { throw new Error('storageKey has to be given') } if (!noteKey) { throw new Error('noteKey has to be given') } if (!dataTransferItem) { throw new Error('dataTransferItem has to be given') } const blob = dataTransferItem.getAsFile() const reader = new FileReader() let base64data const targetStorage = findStorage.findStorage(storageKey) const destinationDir = path.join( targetStorage.path, DESTINATION_FOLDER, noteKey ) createAttachmentDestinationFolder(targetStorage.path, noteKey) const imageName = `${uniqueSlug()}.png` const imagePath = path.join(destinationDir, imageName) reader.onloadend = function() { base64data = reader.result.replace(/^data:image\/png;base64,/, '') base64data += base64data.replace('+', ' ') const binaryData = new Buffer(base64data, 'base64').toString('binary') fs.writeFileSync(imagePath, binaryData, 'binary') const imageReferencePath = path.join( STORAGE_FOLDER_PLACEHOLDER, noteKey, imageName ) const imageMd = generateAttachmentMarkdown( imageName, imageReferencePath, true ) codeEditor.insertAttachmentMd(imageMd) } reader.readAsDataURL(blob) } /** * @description Creates a new file in the storage folder belonging to the current note and inserts the correct markdown code * @param {CodeEditor} codeEditor Markdown editor. Its insertAttachmentMd() method will be called to include the markdown code * @param {String} storageKey Key of the current storage * @param {String} noteKey Key of the current note * @param {NativeImage} image The native image */ function handlePasteNativeImage(codeEditor, storageKey, noteKey, image) { if (!codeEditor) { throw new Error('codeEditor has to be given') } if (!storageKey) { throw new Error('storageKey has to be given') } if (!noteKey) { throw new Error('noteKey has to be given') } if (!image) { throw new Error('image has to be given') } const targetStorage = findStorage.findStorage(storageKey) const destinationDir = path.join( targetStorage.path, DESTINATION_FOLDER, noteKey ) createAttachmentDestinationFolder(targetStorage.path, noteKey) const imageName = `${uniqueSlug()}.png` const imagePath = path.join(destinationDir, imageName) const binaryData = image.toPNG() fs.writeFileSync(imagePath, binaryData, 'binary') const imageReferencePath = path.join( STORAGE_FOLDER_PLACEHOLDER, noteKey, imageName ) const imageMd = generateAttachmentMarkdown( imageName, imageReferencePath, true ) codeEditor.insertAttachmentMd(imageMd) } /** * @description Returns all attachment paths of the given markdown * @param {String} markdownContent content in which the attachment paths should be found * @returns {String[]} Array of the relative paths (starting with :storage) of the attachments of the given markdown */ function getAttachmentsInMarkdownContent(markdownContent) { const preparedInput = markdownContent.replace( new RegExp('[' + PATH_SEPARATORS + ']', 'g'), path.sep ) const regexp = new RegExp( '/?' + STORAGE_FOLDER_PLACEHOLDER + '(' + escapeStringRegexp(path.sep) + ')' + '?([a-zA-Z0-9]|-)*' + '(' + escapeStringRegexp(path.sep) + ')' + '([a-zA-Z0-9]|\\.)+(\\.[a-zA-Z0-9]+)?', 'g' ) return preparedInput.match(regexp) } /** * @description Returns an array of the absolute paths of the attachments referenced in the given markdown code * @param {String} markdownContent content in which the attachment paths should be found * @param {String} storagePath path of the current storage * @returns {String[]} Absolute paths of the referenced attachments */ function getAbsolutePathsOfAttachmentsInContent(markdownContent, storagePath) { const temp = getAttachmentsInMarkdownContent(markdownContent) || [] const result = [] for (const relativePath of temp) { result.push( relativePath.replace( new RegExp(STORAGE_FOLDER_PLACEHOLDER, 'g'), path.join(storagePath, DESTINATION_FOLDER) ) ) } return result } /** * @description Copies the attachments to the storage folder and returns the mardown content it should be replaced with * @param {String} markDownContent content in which the attachment paths should be found * @param {String} filepath The path of the file with attachments to import * @param {String} storageKey Storage key of the destination storage * @param {String} noteKey Key of the current note. Will be used as subfolder in :storage */ function importAttachments(markDownContent, filepath, storageKey, noteKey) { return new Promise((resolve, reject) => { const nameRegex = /(!\[.*?]\()(.+?\..+?)(\))/g let attachPath = nameRegex.exec(markDownContent) const promiseArray = [] const attachmentPaths = [] const groupIndex = 2 while (attachPath) { let attachmentPath = attachPath[groupIndex] attachmentPaths.push(attachmentPath) attachmentPath = path.isAbsolute(attachmentPath) ? attachmentPath : path.join(path.dirname(filepath), attachmentPath) promiseArray.push( this.copyAttachment(attachmentPath, storageKey, noteKey) ) attachPath = nameRegex.exec(markDownContent) } let numResolvedPromises = 0 if (promiseArray.length === 0) { resolve(markDownContent) } for (let j = 0; j < promiseArray.length; j++) { promiseArray[j] .then(fileName => { const newPath = path.join( STORAGE_FOLDER_PLACEHOLDER, noteKey, fileName ) markDownContent = markDownContent.replace(attachmentPaths[j], newPath) }) .catch(e => { console.error('File does not exist in path: ' + attachmentPaths[j]) }) .finally(() => { numResolvedPromises++ if (numResolvedPromises === promiseArray.length) { resolve(markDownContent) } }) } }) } /** * @description Moves the attachments of the current note to the new location. * Returns a modified version of the given content so that the links to the attachments point to the new note key. * @param {String} oldPath Source of the note to be moved * @param {String} newPath Destination of the note to be moved * @param {String} noteKey Old note key * @param {String} newNoteKey New note key * @param {String} noteContent Content of the note to be moved * @returns {String} Modified version of noteContent in which the paths of the attachments are fixed */ function moveAttachments(oldPath, newPath, noteKey, newNoteKey, noteContent) { const src = path.join(oldPath, DESTINATION_FOLDER, noteKey) const dest = path.join(newPath, DESTINATION_FOLDER, newNoteKey) if (fse.existsSync(src)) { fse.moveSync(src, dest) } return replaceNoteKeyWithNewNoteKey(noteContent, noteKey, newNoteKey) } /** * Modifies the given content so that in all attachment references the oldNoteKey is replaced by the new one * @param noteContent content that should be modified * @param oldNoteKey note key to be replaced * @param newNoteKey note key serving as a replacement * @returns {String} modified note content */ function replaceNoteKeyWithNewNoteKey(noteContent, oldNoteKey, newNoteKey) { if (noteContent) { const preparedInput = noteContent.replace( new RegExp('[' + PATH_SEPARATORS + ']', 'g'), path.sep ) return preparedInput.replace( new RegExp( STORAGE_FOLDER_PLACEHOLDER + escapeStringRegexp(path.sep) + oldNoteKey, 'g' ), path.join(STORAGE_FOLDER_PLACEHOLDER, newNoteKey) ) } return noteContent } /** * @description replace all :storage references with given destination folder. * @param input Input in which the references should be replaced * @param noteKey Key of the current note * @param destinationFolder Destination folder of the attachements * @returns {String} Input without the references */ function replaceStorageReferences(input, noteKey, destinationFolder) { return input.replace( new RegExp('/?' + STORAGE_FOLDER_PLACEHOLDER + '[^"\\)<\\s]+', 'g'), function(match) { return match .replace(new RegExp(mdurl.encode(path.win32.sep), 'g'), path.posix.sep) .replace(new RegExp(mdurl.encode(path.posix.sep), 'g'), path.posix.sep) .replace( new RegExp(escapeStringRegexp(path.win32.sep), 'g'), path.posix.sep ) .replace( new RegExp(escapeStringRegexp(path.posix.sep), 'g'), path.posix.sep ) .replace( new RegExp( STORAGE_FOLDER_PLACEHOLDER + '(' + escapeStringRegexp(path.sep) + noteKey + ')?', 'g' ), destinationFolder ) } ) } /** * @description Deletes the attachment folder specified by the given storageKey and noteKey * @param storageKey Key of the storage of the note to be deleted * @param noteKey Key of the note to be deleted */ function deleteAttachmentFolder(storageKey, noteKey) { const storagePath = findStorage.findStorage(storageKey) const noteAttachmentPath = path.join( storagePath.path, DESTINATION_FOLDER, noteKey ) sander.rimrafSync(noteAttachmentPath) } /** * @description Deletes all attachments stored in the attachment folder of the give not that are not referenced in the markdownContent * @param markdownContent Content of the note. All unreferenced notes will be deleted * @param storageKey StorageKey of the current note. Is used to determine the belonging attachment folder. * @param noteKey NoteKey of the current note. Is used to determine the belonging attachment folder. */ function deleteAttachmentsNotPresentInNote( markdownContent, storageKey, noteKey ) { if (storageKey == null || noteKey == null || markdownContent == null) { return } const targetStorage = findStorage.findStorage(storageKey) const attachmentFolder = path.join( targetStorage.path, DESTINATION_FOLDER, noteKey ) const attachmentsInNote = getAttachmentsInMarkdownContent(markdownContent) const attachmentsInNoteOnlyFileNames = [] if (attachmentsInNote) { for (let i = 0; i < attachmentsInNote.length; i++) { attachmentsInNoteOnlyFileNames.push( attachmentsInNote[i].replace( new RegExp( STORAGE_FOLDER_PLACEHOLDER + escapeStringRegexp(path.sep) + noteKey + escapeStringRegexp(path.sep), 'g' ), '' ) ) } } if (fs.existsSync(attachmentFolder)) { fs.readdir(attachmentFolder, (err, files) => { if (err) { console.error( 'Error reading directory "' + attachmentFolder + '". Error:' ) console.error(err) return } files.forEach(file => { if (!attachmentsInNoteOnlyFileNames.includes(file)) { const absolutePathOfFile = path.join( targetStorage.path, DESTINATION_FOLDER, noteKey, file ) fs.unlink(absolutePathOfFile, err => { if (err) { console.error('Could not delete "%s"', absolutePathOfFile) console.error(err) return } console.info( 'File "' + absolutePathOfFile + '" deleted because it was not included in the content of the note' ) }) } }) }) } } /** * @description Get all existing attachments related to a specific note including their status (in use or not) and their path. Return null if there're no attachment related to note or specified parametters are invalid * @param markdownContent markdownContent of the current note * @param storageKey StorageKey of the current note * @param noteKey NoteKey of the currentNote * @return {Promise>} Promise returning the list of attachments with their properties */ function getAttachmentsPathAndStatus(markdownContent, storageKey, noteKey) { if (storageKey == null || noteKey == null || markdownContent == null) { return null } let targetStorage = null try { targetStorage = findStorage.findStorage(storageKey) } catch (error) { console.warn(`No stroage found for: ${storageKey}`) } if (!targetStorage) { return null } const attachmentFolder = path.join( targetStorage.path, DESTINATION_FOLDER, noteKey ) const attachmentsInNote = getAttachmentsInMarkdownContent(markdownContent) const attachmentsInNoteOnlyFileNames = [] if (attachmentsInNote) { for (let i = 0; i < attachmentsInNote.length; i++) { attachmentsInNoteOnlyFileNames.push( attachmentsInNote[i].replace( new RegExp( STORAGE_FOLDER_PLACEHOLDER + escapeStringRegexp(path.sep) + noteKey + escapeStringRegexp(path.sep), 'g' ), '' ) ) } } if (fs.existsSync(attachmentFolder)) { return new Promise((resolve, reject) => { fs.readdir(attachmentFolder, (err, files) => { if (err) { console.error( 'Error reading directory "' + attachmentFolder + '". Error:' ) console.error(err) reject(err) return } const attachments = [] for (const file of files) { const absolutePathOfFile = path.join( targetStorage.path, DESTINATION_FOLDER, noteKey, file ) if (!attachmentsInNoteOnlyFileNames.includes(file)) { attachments.push({ path: absolutePathOfFile, isInUse: false }) } else { attachments.push({ path: absolutePathOfFile, isInUse: true }) } } resolve(attachments) }) }) } else { return null } } /** * @description Remove all specified attachment paths * @param attachments attachment paths * @return {Promise} Promise after all attachments are removed */ function removeAttachmentsByPaths(attachments) { const promises = [] for (const attachment of attachments) { const promise = new Promise((resolve, reject) => { fs.unlink(attachment, err => { if (err) { console.error('Could not delete "%s"', attachment) console.error(err) reject(err) return } resolve() }) }) promises.push(promise) } return Promise.all(promises) } /** * Clones the attachments of a given note. * Copies the attachments to their new destination and updates the content of the new note so that the attachment-links again point to the correct destination. * @param oldNote Note that is being cloned * @param newNote Clone of the note */ function cloneAttachments(oldNote, newNote) { if (newNote.type === 'MARKDOWN_NOTE') { const oldStorage = findStorage.findStorage(oldNote.storage) const newStorage = findStorage.findStorage(newNote.storage) const attachmentsPaths = getAbsolutePathsOfAttachmentsInContent( oldNote.content, oldStorage.path ) || [] const destinationFolder = path.join( newStorage.path, DESTINATION_FOLDER, newNote.key ) if (!sander.existsSync(destinationFolder)) { sander.mkdirSync(destinationFolder) } for (const attachment of attachmentsPaths) { const destination = path.join( newStorage.path, DESTINATION_FOLDER, newNote.key, path.basename(attachment) ) sander.copyFileSync(attachment).to(destination) } newNote.content = replaceNoteKeyWithNewNoteKey( newNote.content, oldNote.key, newNote.key ) } else { console.debug( 'Cloning of the attachment was skipped since it only works for MARKDOWN_NOTEs' ) } } function generateFileNotFoundMarkdown() { return ( '**' + i18n.__( '⚠ You have pasted a link referring an attachment that could not be found in the storage location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠' ) + '**' ) } /** * Determines whether a given text is a link to an boostnote attachment * @param text Text that might contain a attachment link * @return {Boolean} Result of the test */ function isAttachmentLink(text) { if (text) { return ( text.match( new RegExp( '.*\\[.*\\]\\( *' + escapeStringRegexp(STORAGE_FOLDER_PLACEHOLDER) + '[' + PATH_SEPARATORS + ']' + '.*\\).*', 'gi' ) ) != null ) } return false } /** * @description Handles the paste of an attachment link. Copies the referenced attachment to the location belonging to the new note. * Returns a modified version of the pasted text so that it matches the copied attachment (resp. the new location) * @param storageKey StorageKey of the current note * @param noteKey NoteKey of the currentNote * @param linkText Text that was pasted * @return {Promise} Promise returning the modified text */ function handleAttachmentLinkPaste(storageKey, noteKey, linkText) { if (storageKey != null && noteKey != null && linkText != null) { const storagePath = findStorage.findStorage(storageKey).path const attachments = getAttachmentsInMarkdownContent(linkText) || [] const replaceInstructions = [] const copies = [] for (const attachment of attachments) { const absPathOfAttachment = attachment.replace( new RegExp(STORAGE_FOLDER_PLACEHOLDER, 'g'), path.join(storagePath, DESTINATION_FOLDER) ) copies.push( sander.exists(absPathOfAttachment).then(fileExists => { if (!fileExists) { const fileNotFoundRegexp = new RegExp( '!?' + escapeStringRegexp('[') + '[\\w|\\d|\\s|\\.]*\\]\\(\\s*' + STORAGE_FOLDER_PLACEHOLDER + '[\\w|\\d|\\-|' + PATH_SEPARATORS + ']*' + escapeStringRegexp(path.basename(absPathOfAttachment)) + escapeStringRegexp(')') ) replaceInstructions.push({ regexp: fileNotFoundRegexp, replacement: this.generateFileNotFoundMarkdown() }) return Promise.resolve() } return this.copyAttachment( absPathOfAttachment, storageKey, noteKey ).then(fileName => { const replaceLinkRegExp = new RegExp( escapeStringRegexp('(') + ' *' + STORAGE_FOLDER_PLACEHOLDER + '[\\w|\\d|\\-|' + PATH_SEPARATORS + ']*' + escapeStringRegexp(path.basename(absPathOfAttachment)) + ' *' + escapeStringRegexp(')') ) replaceInstructions.push({ regexp: replaceLinkRegExp, replacement: '(' + path.join(STORAGE_FOLDER_PLACEHOLDER, noteKey, fileName) + ')' }) return Promise.resolve() }) }) ) } return Promise.all(copies).then(() => { let modifiedLinkText = linkText for (const replaceInstruction of replaceInstructions) { modifiedLinkText = modifiedLinkText.replace( replaceInstruction.regexp, replaceInstruction.replacement ) } return modifiedLinkText }) } else { return Promise.resolve(linkText) } } module.exports = { copyAttachment, fixLocalURLS, generateAttachmentMarkdown, handleAttachmentDrop, handlePasteImageEvent, handlePasteNativeImage, getAttachmentsInMarkdownContent, getAbsolutePathsOfAttachmentsInContent, importAttachments, removeAttachmentsByPaths, replaceStorageReferences, deleteAttachmentFolder, deleteAttachmentsNotPresentInNote, getAttachmentsPathAndStatus, moveAttachments, cloneAttachments, isAttachmentLink, handleAttachmentLinkPaste, generateFileNotFoundMarkdown, migrateAttachments, STORAGE_FOLDER_PLACEHOLDER, DESTINATION_FOLDER } ================================================ FILE: browser/main/lib/dataApi/copyFile.js ================================================ import fs from 'fs' import fx from 'fs-extra' import path from 'path' /** * @description Copy a file from source to destination * @param {String} srcPath * @param {String} dstPath * @return {Promise} an image path */ function copyFile(srcPath, dstPath) { if (!path.extname(dstPath)) { dstPath = path.join(dstPath, path.basename(srcPath)) } return new Promise((resolve, reject) => { const dstFolder = path.dirname(dstPath) fx.ensureDirSync(dstFolder) const input = fs.createReadStream(decodeURI(srcPath)) const output = fs.createWriteStream(dstPath) output.on('error', reject) input.on('error', reject) input.on('end', () => { resolve(dstPath) }) input.pipe(output) }) } module.exports = copyFile ================================================ FILE: browser/main/lib/dataApi/createFolder.js ================================================ const _ = require('lodash') const keygen = require('browser/lib/keygen') const path = require('path') const resolveStorageData = require('./resolveStorageData') const CSON = require('@rokt33r/season') const { findStorage } = require('browser/lib/findStorage') /** * @param {String} storageKey * @param {Object} input * ``` * { * color: String, * name: String * } * ``` * * @return {Object} * ``` * { * storage: Object * } * ``` */ function createFolder(storageKey, input) { let targetStorage try { if (input == null) throw new Error('No input found.') if (!_.isString(input.name)) throw new Error('Name must be a string.') if (!_.isString(input.color)) throw new Error('Color must be a string.') targetStorage = findStorage(storageKey) } catch (e) { return Promise.reject(e) } return resolveStorageData(targetStorage).then(function createFolder(storage) { let key = keygen() while (storage.folders.some(folder => folder.key === key)) { key = keygen() } const newFolder = { key, color: input.color, name: input.name } storage.folders.push(newFolder) CSON.writeFileSync( path.join(storage.path, 'boostnote.json'), _.pick(storage, ['folders', 'version']) ) return { storage } }) } module.exports = createFolder ================================================ FILE: browser/main/lib/dataApi/createNote.js ================================================ const sander = require('sander') const resolveStorageData = require('./resolveStorageData') const _ = require('lodash') const keygen = require('browser/lib/keygen') const path = require('path') const CSON = require('@rokt33r/season') const { findStorage } = require('browser/lib/findStorage') function validateInput(input) { if (!_.isArray(input.tags)) input.tags = [] input.tags = input.tags.filter( tag => _.isString(tag) && tag.trim().length > 0 ) if (!_.isString(input.title)) input.title = '' input.isStarred = !!input.isStarred input.isTrashed = !!input.isTrashed switch (input.type) { case 'MARKDOWN_NOTE': if (!_.isString(input.content)) input.content = '' if (!_.isArray(input.linesHighlighted)) input.linesHighlighted = [] break case 'SNIPPET_NOTE': if (!_.isString(input.description)) input.description = '' if (!_.isArray(input.snippets)) { input.snippets = [ { name: '', mode: 'text', content: '', linesHighlighted: [] } ] } break default: throw new Error( 'Invalid type: only MARKDOWN_NOTE and SNIPPET_NOTE are available.' ) } } function createNote(storageKey, input) { let targetStorage try { if (input == null) throw new Error('No input found.') input = Object.assign({}, input) validateInput(input) targetStorage = findStorage(storageKey) } catch (e) { return Promise.reject(e) } return resolveStorageData(targetStorage) .then(function checkFolderExists(storage) { if (_.find(storage.folders, { key: input.folder }) == null) { throw new Error("Target folder doesn't exist.") } return storage }) .then(function saveNote(storage) { let key = keygen(true) let isUnique = false while (!isUnique) { try { sander.statSync(path.join(storage.path, 'notes', key + '.cson')) key = keygen(true) } catch (err) { if (err.code === 'ENOENT') { isUnique = true } else { throw err } } } const noteData = Object.assign( {}, { createdAt: new Date(), updatedAt: new Date() }, input, // input may contain more accurate dates { key, storage: storageKey } ) CSON.writeFileSync( path.join(storage.path, 'notes', key + '.cson'), _.omit(noteData, ['key', 'storage']) ) return noteData }) } module.exports = createNote ================================================ FILE: browser/main/lib/dataApi/createNoteFromUrl.js ================================================ const http = require('http') const https = require('https') const { createTurndownService } = require('../../../lib/turndown') const createNote = require('./createNote') import { push } from 'connected-react-router' import ee from 'browser/main/lib/eventEmitter' function validateUrl(str) { if ( /^(?:(?:(?:https?|ftp):)?\/\/)(?:\S+(?::\S*)?@)?(?:(?!(?:10|127)(?:\.\d{1,3}){3})(?!(?:169\.254|192\.168)(?:\.\d{1,3}){2})(?!172\.(?:1[6-9]|2\d|3[0-1])(?:\.\d{1,3}){2})(?:[1-9]\d?|1\d\d|2[01]\d|22[0-3])(?:\.(?:1?\d{1,2}|2[0-4]\d|25[0-5])){2}(?:\.(?:[1-9]\d?|1\d\d|2[0-4]\d|25[0-4]))|(?:(?:[a-z\u00a1-\uffff0-9]-*)*[a-z\u00a1-\uffff0-9]+)(?:\.(?:[a-z\u00a1-\uffff0-9]-*)*[a-z\u00a1-\uffff0-9]+)*(?:\.(?:[a-z\u00a1-\uffff]{2,})).?)(?::\d{2,5})?(?:[/?#]\S*)?$/i.test( str ) ) { return true } else { return false } } const ERROR_MESSAGES = { ENOTFOUND: 'URL not found. Please check the URL, or your internet connection and try again.', VALIDATION_ERROR: 'Please check if the URL follows this format: https://www.google.com', UNEXPECTED: 'Unexpected error! Please check console for details!' } function createNoteFromUrl( url, storage, folder, dispatch = null, location = null ) { return new Promise((resolve, reject) => { const td = createTurndownService() if (!validateUrl(url)) { reject({ result: false, error: ERROR_MESSAGES.VALIDATION_ERROR }) } const request = url.startsWith('https') ? https : http const req = request.request(url, res => { let data = '' res.on('data', chunk => { data += chunk }) res.on('end', () => { const markdownHTML = td.turndown(data) if (dispatch !== null) { createNote(storage, { type: 'MARKDOWN_NOTE', folder: folder, title: '', content: markdownHTML }).then(note => { const noteHash = note.key dispatch({ type: 'UPDATE_NOTE', note: note }) dispatch( push({ pathname: location.pathname, query: { key: noteHash } }) ) ee.emit('list:jump', noteHash) ee.emit('detail:focus') resolve({ result: true, error: null }) }) } else { createNote(storage, { type: 'MARKDOWN_NOTE', folder: folder, title: '', content: markdownHTML }).then(note => { resolve({ result: true, note, error: null }) }) } }) }) req.on('error', e => { console.error('error in parsing URL', e) reject({ result: false, error: ERROR_MESSAGES[e.code] || ERROR_MESSAGES.UNEXPECTED }) }) req.end() }) } module.exports = createNoteFromUrl ================================================ FILE: browser/main/lib/dataApi/createSnippet.js ================================================ import fs from 'fs' import crypto from 'crypto' import consts from 'browser/lib/consts' import fetchSnippet from 'browser/main/lib/dataApi/fetchSnippet' function createSnippet(snippetFile) { return new Promise((resolve, reject) => { const newSnippet = { id: crypto.randomBytes(16).toString('hex'), name: 'Unnamed snippet', prefix: [], content: '', linesHighlighted: [] } fetchSnippet(null, snippetFile) .then(snippets => { snippets.push(newSnippet) fs.writeFile( snippetFile || consts.SNIPPET_FILE, JSON.stringify(snippets, null, 4), err => { if (err) reject(err) resolve(newSnippet) } ) }) .catch(err => { reject(err) }) }) } module.exports = createSnippet ================================================ FILE: browser/main/lib/dataApi/deleteFolder.js ================================================ const _ = require('lodash') const path = require('path') const resolveStorageData = require('./resolveStorageData') const resolveStorageNotes = require('./resolveStorageNotes') const CSON = require('@rokt33r/season') const { findStorage } = require('browser/lib/findStorage') const deleteSingleNote = require('./deleteNote') /** * @param {String} storageKey * @param {String} folderKey * * @return {Object} * ``` * { * storage: Object, * folderKey: String * } * ``` */ function deleteFolder(storageKey, folderKey) { let targetStorage try { targetStorage = findStorage(storageKey) } catch (e) { return Promise.reject(e) } return resolveStorageData(targetStorage) .then(function assignNotes(storage) { return resolveStorageNotes(storage).then(notes => { return { storage, notes } }) }) .then(function deleteFolderAndNotes(data) { const { storage, notes } = data storage.folders = storage.folders.filter(function excludeTargetFolder( folder ) { return folder.key !== folderKey }) const targetNotes = notes.filter(function filterTargetNotes(note) { return note.folder === folderKey }) const deleteAllNotes = targetNotes.map(function deleteNote(note) { return deleteSingleNote(storageKey, note.key) }) return Promise.all(deleteAllNotes).then(() => storage) }) .then(function(storage) { CSON.writeFileSync( path.join(storage.path, 'boostnote.json'), _.pick(storage, ['folders', 'version']) ) return { storage, folderKey } }) } module.exports = deleteFolder ================================================ FILE: browser/main/lib/dataApi/deleteNote.js ================================================ const resolveStorageData = require('./resolveStorageData') const path = require('path') const sander = require('sander') const attachmentManagement = require('./attachmentManagement') const { findStorage } = require('browser/lib/findStorage') function deleteNote(storageKey, noteKey) { let targetStorage try { targetStorage = findStorage(storageKey) } catch (e) { return Promise.reject(e) } return resolveStorageData(targetStorage) .then(function deleteNoteFile(storage) { const notePath = path.join(storage.path, 'notes', noteKey + '.cson') try { sander.unlinkSync(notePath) } catch (err) { console.warn('Failed to delete note cson', err) } return { noteKey, storageKey } }) .then(function deleteAttachments(storageInfo) { attachmentManagement.deleteAttachmentFolder( storageInfo.storageKey, storageInfo.noteKey ) return storageInfo }) } module.exports = deleteNote ================================================ FILE: browser/main/lib/dataApi/deleteSnippet.js ================================================ import fs from 'fs' import consts from 'browser/lib/consts' import fetchSnippet from 'browser/main/lib/dataApi/fetchSnippet' function deleteSnippet(snippet, snippetFile) { return new Promise((resolve, reject) => { fetchSnippet(null, snippetFile).then(snippets => { snippets = snippets.filter( currentSnippet => currentSnippet.id !== snippet.id ) fs.writeFile( snippetFile || consts.SNIPPET_FILE, JSON.stringify(snippets, null, 4), err => { if (err) reject(err) resolve(snippet) } ) }) }) } module.exports = deleteSnippet ================================================ FILE: browser/main/lib/dataApi/exportFolder.js ================================================ import { findStorage } from 'browser/lib/findStorage' import resolveStorageData from './resolveStorageData' import resolveStorageNotes from './resolveStorageNotes' import getFilename from './getFilename' import exportNote from './exportNote' import getContentFormatter from './getContentFormatter' /** * @param {String} storageKey * @param {String} folderKey * @param {String} fileType * @param {String} exportDir * @param {Object} config * * @return {Object} * ``` * { * storage: Object, * folderKey: String, * fileType: String, * exportDir: String * } * ``` */ function exportFolder(storageKey, folderKey, fileType, exportDir, config) { let targetStorage try { targetStorage = findStorage(storageKey) } catch (e) { return Promise.reject(e) } const deduplicator = {} return resolveStorageData(targetStorage) .then(storage => { return resolveStorageNotes(storage).then(notes => ({ storage, notes: notes.filter( note => note.folder === folderKey && !note.isTrashed && note.type === 'MARKDOWN_NOTE' ) })) }) .then(({ storage, notes }) => { const contentFormatter = getContentFormatter(storage, fileType, config) return Promise.all( notes.map(note => { const targetPath = getFilename( note, fileType, exportDir, deduplicator ) return exportNote(storage.key, note, targetPath, contentFormatter) }) ).then(() => ({ storage, folderKey, fileType, exportDir })) }) } module.exports = exportFolder ================================================ FILE: browser/main/lib/dataApi/exportNote.js ================================================ import copyFile from 'browser/main/lib/dataApi/copyFile' import { findStorage } from 'browser/lib/findStorage' const fs = require('fs') const path = require('path') /** * Export note together with attachments * * If attachments are stored in the storage, creates 'attachments' subfolder in target directory * and copies attachments to it. Changes links to images in the content of the note * * @param {String} storageKey or storage path * @param {Object} note Note to export * @param {String} targetPath Path to exported file * @param {function} outputFormatter * @return {Promise.<*[]>} */ function exportNote(storageKey, note, targetPath, outputFormatter) { const storagePath = path.isAbsolute(storageKey) ? storageKey : findStorage(storageKey).path const exportTasks = [] if (!storagePath) { throw new Error('Storage path is not found') } const exportedData = Promise.resolve( outputFormatter ? outputFormatter(note, targetPath, exportTasks) : note.content ) const tasks = prepareTasks(exportTasks, storagePath, path.dirname(targetPath)) return Promise.all(tasks.map(task => copyFile(task.src, task.dst))) .then(() => exportedData) .then(data => { return saveToFile(data, targetPath) }) .catch(error => { rollbackExport(tasks) throw error }) } function prepareTasks(tasks, storagePath, targetPath) { return tasks.map(task => { if (!path.isAbsolute(task.src)) { task.src = path.join(storagePath, task.src) } if (!path.isAbsolute(task.dst)) { task.dst = path.join(targetPath, task.dst) } return task }) } function saveToFile(data, filename) { return new Promise((resolve, reject) => { fs.writeFile(filename, data, err => { if (err) return reject(err) resolve(filename) }) }) } /** * Remove exported files * @param tasks Array of copy task objects. Object consists of two mandatory fields – `src` and `dst` */ function rollbackExport(tasks) { const folders = new Set() tasks.forEach(task => { let fullpath = task.dst if (!path.extname(task.dst)) { fullpath = path.join(task.dst, path.basename(task.src)) } if (fs.existsSync(fullpath)) { fs.unlinkSync(fullpath) folders.add(path.dirname(fullpath)) } }) folders.forEach(folder => { if (fs.readdirSync(folder).length === 0) { fs.rmdirSync(folder) } }) } export default exportNote ================================================ FILE: browser/main/lib/dataApi/exportNoteAs.js ================================================ import { findStorage } from 'browser/lib/findStorage' import exportNote from './exportNote' import getContentFormatter from './getContentFormatter' /** * @param {Object} note * @param {String} filename * @param {String} fileType * @param {Object} config */ function exportNoteAs(note, filename, fileType, config) { const storage = findStorage(note.storage) const contentFormatter = getContentFormatter(storage, fileType, config) return exportNote(storage.key, note, filename, contentFormatter) } module.exports = exportNoteAs ================================================ FILE: browser/main/lib/dataApi/exportStorage.js ================================================ import { findStorage } from 'browser/lib/findStorage' import resolveStorageData from './resolveStorageData' import resolveStorageNotes from './resolveStorageNotes' import filenamify from 'filenamify' import path from 'path' import fs from 'fs' import exportNote from './exportNote' import getContentFormatter from './getContentFormatter' import getFilename from './getFilename' /** * @param {String} storageKey * @param {String} fileType * @param {String} exportDir * @param {Object} config * * @return {Object} * ``` * { * storage: Object, * fileType: String, * exportDir: String * } * ``` */ function exportStorage(storageKey, fileType, exportDir, config) { let targetStorage try { targetStorage = findStorage(storageKey) } catch (e) { return Promise.reject(e) } return resolveStorageData(targetStorage) .then(storage => { return resolveStorageNotes(storage).then(notes => ({ storage, notes: notes.filter( note => !note.isTrashed && note.type === 'MARKDOWN_NOTE' ) })) }) .then(({ storage, notes }) => { const contentFormatter = getContentFormatter(storage, fileType, config) const folderNamesMapping = {} const deduplicators = {} storage.folders.forEach(folder => { const folderExportedDir = path.join( exportDir, filenamify(folder.name, { replacement: '_' }) ) folderNamesMapping[folder.key] = folderExportedDir // make sure directory exists try { fs.mkdirSync(folderExportedDir) } catch (e) {} deduplicators[folder.key] = {} }) return Promise.all( notes.map(note => { const targetPath = getFilename( note, fileType, folderNamesMapping[note.folder], deduplicators[note.folder] ) return exportNote(storage.key, note, targetPath, contentFormatter) }) ).then(() => ({ storage, fileType, exportDir })) }) } module.exports = exportStorage ================================================ FILE: browser/main/lib/dataApi/exportTag.js ================================================ import exportNoteAs from './exportNoteAs' import getFilename from './getFilename' /** * @param {Object} data * @param {String} tag * @param {String} fileType * @param {String} exportDir * @param {Object} config */ function exportTag(data, tag, fileType, exportDir, config) { const notes = data.noteMap .map(note => note) .filter(note => note.tags.indexOf(tag) !== -1) const deduplicator = {} return Promise.all( notes.map(note => { const filename = getFilename(note, fileType, exportDir, deduplicator) return exportNoteAs(note, filename, fileType, config) }) ) } module.exports = exportTag ================================================ FILE: browser/main/lib/dataApi/fetchSnippet.js ================================================ import fs from 'fs' import consts from 'browser/lib/consts' function fetchSnippet(id, snippetFile) { return new Promise((resolve, reject) => { fs.readFile(snippetFile || consts.SNIPPET_FILE, 'utf8', (err, data) => { if (err) { reject(err) } const snippets = JSON.parse(data) if (id) { const snippet = snippets.find(snippet => { return snippet.id === id }) resolve(snippet) } resolve(snippets) }) }) } module.exports = fetchSnippet ================================================ FILE: browser/main/lib/dataApi/formatHTML.js ================================================ import path from 'path' import fileUrl from 'file-url' import fs from 'fs' import { remote } from 'electron' import consts from 'browser/lib/consts' import Markdown from 'browser/lib/markdown' import attachmentManagement from './attachmentManagement' import { version as codemirrorVersion } from 'codemirror/package.json' import { escapeHtmlCharacters } from 'browser/lib/utils' const { app } = remote const appPath = fileUrl( process.env.NODE_ENV === 'production' ? app.getAppPath() : path.resolve() ) let markdownStyle = '' try { markdownStyle = require('!!css!stylus?sourceMap!../../../components/markdown.styl')[0][1] } catch (e) {} export const CSS_FILES = [ `${appPath}/node_modules/katex/dist/katex.min.css`, `${appPath}/node_modules/codemirror/lib/codemirror.css`, `${appPath}/node_modules/react-image-carousel/lib/css/main.min.css` ] const macos = global.process.platform === 'darwin' const defaultFontFamily = ['helvetica', 'arial', 'sans-serif'] if (!macos) { defaultFontFamily.unshift('Microsoft YaHei') defaultFontFamily.unshift('meiryo') } const defaultCodeBlockFontFamily = [ 'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', 'source-code-pro', 'monospace' ] function unprefix(file) { if (global.process.platform === 'win32') { return file.replace('file:///', '') } else { return file.replace('file://', '') } } /** * ``` * { * fontFamily, * fontSize, * lineNumber, * codeBlockFontFamily, * codeBlockTheme, * scrollPastEnd, * theme, * allowCustomCSS, * customCSS * smartQuotes, * sanitize, * breaks, * storagePath, * export, * indentSize * } * ``` */ export default function formatHTML(props) { const { fontFamily, fontSize, codeBlockFontFamily, lineNumber, codeBlockTheme, scrollPastEnd, theme, allowCustomCSS, customCSS } = getStyleParams(props) const inlineStyles = buildStyle( fontFamily, fontSize, codeBlockFontFamily, lineNumber, scrollPastEnd, theme, allowCustomCSS, customCSS ) const { smartQuotes, sanitize, breaks } = props let indentSize = parseInt(props.indentSize, 10) if (!(indentSize > 0 && indentSize < 132)) { indentSize = 4 } const files = [getCodeThemeLink(codeBlockTheme), ...CSS_FILES] return function(note, targetPath, exportTasks) { const styles = files .map(file => ``) .join('\n') let inlineScripts = '' let scripts = '' let decodeEntities = false function addDecodeEntities() { if (decodeEntities) { return } decodeEntities = true inlineScripts += ` function decodeEntities (text) { var entities = [ ['apos', '\\''], ['amp', '&'], ['lt', '<'], ['gt', '>'], ['#63', '\\?'], ['#36', '\\$'] ] for (var i = 0, max = entities.length; i < max; ++i) { text = text.replace(new RegExp(\`&\${entities[i][0]};\`, 'g'), entities[i][1]) } return text }` } let lodash = false function addLodash() { if (lodash) { return } lodash = true exportTasks.push({ src: unprefix(`${appPath}/node_modules/lodash/lodash.min.js`), dst: 'js' }) scripts += `` } let raphael = false function addRaphael() { if (raphael) { return } raphael = true exportTasks.push({ src: unprefix(`${appPath}/node_modules/raphael/raphael.min.js`), dst: 'js' }) scripts += `` } let yaml = false function addYAML() { if (yaml) { return } yaml = true exportTasks.push({ src: unprefix(`${appPath}/node_modules/js-yaml/dist/js-yaml.min.js`), dst: 'js' }) scripts += `` } let chart = false function addChart() { if (chart) { return } chart = true addLodash() exportTasks.push({ src: unprefix(`${appPath}/node_modules/chart.js/dist/Chart.min.js`), dst: 'js' }) scripts += `` inlineScripts += ` function displayCharts() { _.forEach( document.querySelectorAll('.chart'), el => { try { const format = el.attributes.getNamedItem('data-format').value const chartConfig = format === 'yaml' ? jsyaml.load(el.innerHTML) : JSON.parse(el.innerHTML) el.innerHTML = '' const canvas = document.createElement('canvas') el.appendChild(canvas) const height = el.attributes.getNamedItem('data-height') if (height && height.value !== 'undefined') { el.style.height = height.value + 'vh' canvas.height = height.value + 'vh' } const chart = new Chart(canvas, chartConfig) } catch (e) { el.className = 'chart-error' el.innerHTML = 'chartjs diagram parse error: ' + e.message } } ) } document.addEventListener('DOMContentLoaded', displayCharts); ` } let codemirror = false function addCodeMirror() { if (codemirror) { return } codemirror = true addDecodeEntities() addLodash() exportTasks.push( { src: unprefix(`${appPath}/node_modules/codemirror/lib/codemirror.js`), dst: 'js/codemirror' }, { src: unprefix(`${appPath}/node_modules/codemirror/mode/meta.js`), dst: 'js/codemirror/mode' }, { src: unprefix( `${appPath}/node_modules/codemirror/addon/mode/loadmode.js` ), dst: 'js/codemirror/addon/mode' }, { src: unprefix( `${appPath}/node_modules/codemirror/addon/runmode/runmode.js` ), dst: 'js/codemirror/addon/runmode' } ) scripts += ` ` let className = `cm-s-${codeBlockTheme}` if (codeBlockTheme.indexOf('solarized') === 0) { const [refThema, color] = codeBlockTheme.split(' ') className = `cm-s-${refThema} cm-s-${color}` } inlineScripts += ` CodeMirror.modeURL = 'https://cdn.jsdelivr.net/npm/codemirror@${codemirrorVersion}/mode/%N/%N.js'; function displayCodeBlocks() { _.forEach( document.querySelectorAll('.code code'), el => { el.parentNode.className += ' ${className}' let syntax = CodeMirror.findModeByName(el.className) if (syntax == null) syntax = CodeMirror.findModeByName('Plain Text') CodeMirror.requireMode(syntax.mode, () => { const content = decodeEntities(el.innerHTML) el.innerHTML = '' CodeMirror.runMode(content, syntax.mime, el, { tabSize: ${indentSize} }) }) } ) } document.addEventListener('DOMContentLoaded', displayCodeBlocks); ` } let flowchart = false function addFlowchart() { if (flowchart) { return } flowchart = true addDecodeEntities() addLodash() addRaphael() exportTasks.push({ src: unprefix( `${appPath}/node_modules/flowchart.js/release/flowchart.min.js` ), dst: 'js' }) scripts += `` inlineScripts += ` function displayFlowcharts() { _.forEach( document.querySelectorAll('.flowchart'), el => { try { const diagram = flowchart.parse( decodeEntities(el.innerHTML) ) el.innerHTML = '' diagram.drawSVG(el) } catch (e) { el.className = 'flowchart-error' el.innerHTML = 'Flowchart parse error: ' + e.message } } ) } document.addEventListener('DOMContentLoaded', displayFlowcharts); ` } let mermaid = false function addMermaid() { if (mermaid) { return } mermaid = true addLodash() exportTasks.push({ src: unprefix(`${appPath}/node_modules/mermaid/dist/mermaid.min.js`), dst: 'js' }) scripts += `` inlineScripts += ` function displayMermaids() { _.forEach( document.querySelectorAll('.mermaid'), el => { const height = el.attributes.getNamedItem('data-height') if (height && height.value !== 'undefined') { el.style.height = height.value + 'vh' } } ) } document.addEventListener('DOMContentLoaded', displayMermaids); ` } let sequence = false function addSequence() { if (sequence) { return } sequence = true addDecodeEntities() addLodash() addRaphael() exportTasks.push({ src: unprefix( `${appPath}/node_modules/@rokt33r/js-sequence-diagrams/dist/sequence-diagram-min.js` ), dst: 'js' }) scripts += `` inlineScripts += ` function displaySequences() { _.forEach( document.querySelectorAll('.sequence'), el => { try { const diagram = Diagram.parse( decodeEntities(el.innerHTML) ) el.innerHTML = '' diagram.drawSVG(el, { theme: 'simple' }) } catch (e) { el.className = 'sequence-error' el.innerHTML = 'Sequence diagram parse error: ' + e.message } } ) } document.addEventListener('DOMContentLoaded', displaySequences); ` } const modes = {} const markdown = new Markdown({ typographer: smartQuotes, sanitize, breaks, onFence(type, mode) { if (type === 'chart') { addChart() if (mode === 'yaml') { addYAML() } } else if (type === 'code') { addCodeMirror() if (mode && modes[mode] !== true) { const file = unprefix( `${appPath}/node_modules/codemirror/mode/${mode}/${mode}.js` ) if (fs.existsSync(file)) { exportTasks.push({ src: file, dst: `js/codemirror/mode/${mode}` }) modes[mode] = true } } } else if (type === 'flowchart') { addFlowchart() } else if (type === 'mermaid') { addMermaid() } else if (type === 'sequence') { addSequence() } } }) let body = note.content if (sanitize === 'NONE') { body = escapeHtmlCharactersInCodeTag(body.split('```')) } body = markdown.render(note.content) const attachmentsAbsolutePaths = attachmentManagement.getAbsolutePathsOfAttachmentsInContent( note.content, props.storagePath ) files.forEach(file => { exportTasks.push({ src: unprefix(file), dst: 'css' }) }) const destinationFolder = props.export.prefixAttachmentFolder ? `${path.parse(targetPath).name} - ${ attachmentManagement.DESTINATION_FOLDER }` : attachmentManagement.DESTINATION_FOLDER attachmentsAbsolutePaths.forEach(attachment => { exportTasks.push({ src: attachment, dst: destinationFolder }) }) body = attachmentManagement.replaceStorageReferences( body, note.key, destinationFolder ) return ` ${styles} ${scripts} ${body} ` } } export function getStyleParams(props) { const { fontSize, lineNumber, codeBlockTheme, scrollPastEnd, theme, allowCustomCSS, customCSS, RTL } = props let { fontFamily, codeBlockFontFamily } = props fontFamily = _.isString(fontFamily) && fontFamily.trim().length > 0 ? fontFamily .split(',') .map(fontName => fontName.trim()) .concat(defaultFontFamily) : defaultFontFamily codeBlockFontFamily = _.isString(codeBlockFontFamily) && codeBlockFontFamily.trim().length > 0 ? codeBlockFontFamily .split(',') .map(fontName => fontName.trim()) .concat(defaultCodeBlockFontFamily) : defaultCodeBlockFontFamily return { fontFamily, fontSize, codeBlockFontFamily, lineNumber, codeBlockTheme, scrollPastEnd, theme, allowCustomCSS, customCSS, RTL } } export function getCodeThemeLink(name) { const theme = consts.THEMES.find(theme => theme.name === name) return theme != null ? theme.path : `${appPath}/node_modules/codemirror/theme/elegant.css` } export function buildStyle( fontFamily, fontSize, codeBlockFontFamily, lineNumber, scrollPastEnd, theme, allowCustomCSS, customCSS, RTL ) { return ` @font-face { font-family: 'Lato'; src: url('${appPath}/resources/fonts/Lato-Regular.woff2') format('woff2'), /* Modern Browsers */ url('${appPath}/resources/fonts/Lato-Regular.woff') format('woff'), /* Modern Browsers */ url('${appPath}/resources/fonts/Lato-Regular.ttf') format('truetype'); font-style: normal; font-weight: normal; text-rendering: optimizeLegibility; } @font-face { font-family: 'Lato'; src: url('${appPath}/resources/fonts/Lato-Black.woff2') format('woff2'), /* Modern Browsers */ url('${appPath}/resources/fonts/Lato-Black.woff') format('woff'), /* Modern Browsers */ url('${appPath}/resources/fonts/Lato-Black.ttf') format('truetype'); font-style: normal; font-weight: 700; text-rendering: optimizeLegibility; } @font-face { font-family: 'Material Icons'; font-style: normal; font-weight: 400; src: local('Material Icons'), local('MaterialIcons-Regular'), url('${appPath}/resources/fonts/MaterialIcons-Regular.woff2') format('woff2'), url('${appPath}/resources/fonts/MaterialIcons-Regular.woff') format('woff'), url('${appPath}/resources/fonts/MaterialIcons-Regular.ttf') format('truetype'); } ${markdownStyle} body { font-family: '${fontFamily.join("','")}'; font-size: ${fontSize}px; ${scrollPastEnd && 'padding-bottom: 90vh;box-sizing: border-box;'} ${RTL && 'direction: rtl;text-align: right;'} } @media print { body { padding-bottom: initial; } } code { font-family: '${codeBlockFontFamily.join("','")}'; background-color: rgba(0,0,0,0.04); text-align: left; direction: ltr; } p code.inline, li code.inline, td code.inline { padding: 2px; border-width: 1px; border-style: solid; border-radius: 5px; } [data-theme="default"] p code.inline, [data-theme="default"] li code.inline, [data-theme="default"] td code.inline { background-color: #F4F4F4; border-color: #d9d9d9; color: inherit; } [data-theme="white"] p code.inline, [data-theme="white"] li code.inline, [data-theme="white"] td code.inline { background-color: #F4F4F4; border-color: #d9d9d9; color: inherit; } [data-theme="dark"] p code.inline, [data-theme="dark"] li code.inline, [data-theme="dark"] td code.inline { background-color: #444444; border-color: #555; color: #FFFFFF; } [data-theme="dracula"] p code.inline, [data-theme="dracula"] li code.inline, [data-theme="dracula"] td code.inline { background-color: #444444; border-color: #555; color: #FFFFFF; } [data-theme="monokai"] p code.inline, [data-theme="monokai"] li code.inline, [data-theme="monokai"] td code.inline { background-color: #444444; border-color: #555; color: #FFFFFF; } [data-theme="nord"] p code.inline, [data-theme="nord"] li code.inline, [data-theme="nord"] td code.inline { background-color: #444444; border-color: #555; color: #FFFFFF; } [data-theme="solarized-dark"] p code.inline, [data-theme="solarized-dark"] li code.inline, [data-theme="solarized-dark"] td code.inline { background-color: #444444; border-color: #555; color: #FFFFFF; } [data-theme="vulcan"] p code.inline, [data-theme="vulcan"] li code.inline, [data-theme="vulcan"] td code.inline { background-color: #444444; border-color: #555; color: #FFFFFF; } .lineNumber { ${lineNumber && 'display: block !important;'} font-family: '${codeBlockFontFamily.join("','")}'; } .clipboardButton { color: rgba(147,147,149,0.8);; fill: rgba(147,147,149,1);; border-radius: 50%; margin: 0px 10px; border: none; background-color: transparent; outline: none; height: 15px; width: 15px; cursor: pointer; } .clipboardButton:hover { transition: 0.2s; color: #939395; fill: #939395; background-color: rgba(0,0,0,0.1); } h1, h2 { border: none; } h1 { padding-bottom: 4px; margin: 1em 0 8px; } h2 { padding-bottom: 0.2em; margin: 1em 0 0.37em; } body p { white-space: normal; } @media print { body[data-theme="${theme}"] { color: #000; background-color: #fff; } .clipboardButton { display: none } } ${allowCustomCSS ? customCSS : ''} ` } /** * @description Convert special characters between three ``` * @param {string[]} splitWithCodeTag Array of HTML strings separated by three ``` * @returns {string} HTML in which special characters between three ``` have been converted */ export function escapeHtmlCharactersInCodeTag(splitWithCodeTag) { for (let index = 0; index < splitWithCodeTag.length; index++) { const codeTagRequired = splitWithCodeTag[index] !== '```' && index < splitWithCodeTag.length - 1 if (codeTagRequired) { splitWithCodeTag.splice(index + 1, 0, '```') } } let inCodeTag = false let result = '' for (let content of splitWithCodeTag) { if (content === '```') { inCodeTag = !inCodeTag } else if (inCodeTag) { content = escapeHtmlCharacters(content) } result += content } return result } ================================================ FILE: browser/main/lib/dataApi/formatMarkdown.js ================================================ import attachmentManagement from './attachmentManagement' import yaml from 'js-yaml' import path from 'path' const delimiterRegExp = /^\-{3}/ /** * ``` * { * storagePath, * export * } * ``` */ export default function formatMarkdown(props) { return function(note, targetPath, exportTasks) { let result = note.content if (props.storagePath && note.key) { const attachmentsAbsolutePaths = attachmentManagement.getAbsolutePathsOfAttachmentsInContent( result, props.storagePath ) const destinationFolder = props.export.prefixAttachmentFolder ? `${path.parse(targetPath).name} - ${ attachmentManagement.DESTINATION_FOLDER }` : attachmentManagement.DESTINATION_FOLDER attachmentsAbsolutePaths.forEach(attachment => { exportTasks.push({ src: attachment, dst: destinationFolder }) }) result = attachmentManagement.replaceStorageReferences( result, note.key, destinationFolder ) } if (props.export.metadata === 'MERGE_HEADER') { const metadata = getFrontMatter(result) const values = Object.assign({}, note) delete values.content delete values.isTrashed for (const key in values) { metadata[key] = values[key] } result = replaceFrontMatter(result, metadata) } else if (props.export.metadata === 'MERGE_VARIABLE') { const metadata = getFrontMatter(result) const values = Object.assign({}, note) delete values.content delete values.isTrashed if (props.export.variable) { metadata[props.export.variable] = values } else { for (const key in values) { metadata[key] = values[key] } } result = replaceFrontMatter(result, metadata) } return result } } function getFrontMatter(markdown) { const lines = markdown.split('\n') if (delimiterRegExp.test(lines[0])) { let line = 0 while (++line < lines.length && !delimiterRegExp.test(lines[line])) {} return yaml.load(lines.slice(1, line).join('\n')) || {} } else { return {} } } function replaceFrontMatter(markdown, metadata) { const lines = markdown.split('\n') if (delimiterRegExp.test(lines[0])) { let line = 0 while (++line < lines.length && !delimiterRegExp.test(lines[line])) {} return `---\n${yaml.dump(metadata)}---\n${lines.slice(line + 1).join('\n')}` } else { return `---\n${yaml.dump(metadata)}---\n\n${markdown}` } } ================================================ FILE: browser/main/lib/dataApi/formatPDF.js ================================================ import formatHTML from './formatHTML' import { remote } from 'electron' export default function formatPDF(props) { return function(note, targetPath, exportTasks) { const printout = new remote.BrowserWindow({ show: false, webPreferences: { webSecurity: false, javascript: false } }) printout.loadURL( 'data:text/html;charset=UTF-8,' + formatHTML(props)(note, targetPath, exportTasks) ) return new Promise((resolve, reject) => { printout.webContents.on('did-finish-load', () => { printout.webContents.printToPDF({}, (err, data) => { if (err) reject(err) else resolve(data) printout.destroy() }) }) }) } } ================================================ FILE: browser/main/lib/dataApi/getContentFormatter.js ================================================ import formatMarkdown from './formatMarkdown' import formatHTML from './formatHTML' import formatPDF from './formatPDF' /** * @param {Object} storage * @param {String} fileType * @param {Object} config */ export default function getContentFormatter(storage, fileType, config) { if (fileType === 'md') { return formatMarkdown({ storagePath: storage.path, export: config.export }) } else if (fileType === 'html') { return formatHTML({ theme: config.ui.theme, fontSize: config.preview.fontSize, fontFamily: config.preview.fontFamily, codeBlockTheme: config.preview.codeBlockTheme, codeBlockFontFamily: config.editor.fontFamily, lineNumber: config.preview.lineNumber, indentSize: config.editor.indentSize, scrollPastEnd: config.preview.scrollPastEnd, smartQuotes: config.preview.smartQuotes, breaks: config.preview.breaks, sanitize: config.preview.sanitize, customCSS: config.preview.customCSS, allowCustomCSS: config.preview.allowCustomCSS, storagePath: storage.path, export: config.export, RTL: config.editor.rtlEnabled /* && this.state.RTL */ }) } else if (fileType === 'pdf') { return formatPDF({ theme: config.ui.theme, fontSize: config.preview.fontSize, fontFamily: config.preview.fontFamily, codeBlockTheme: config.preview.codeBlockTheme, codeBlockFontFamily: config.editor.fontFamily, lineNumber: config.preview.lineNumber, indentSize: config.editor.indentSize, scrollPastEnd: config.preview.scrollPastEnd, smartQuotes: config.preview.smartQuotes, breaks: config.preview.breaks, sanitize: config.preview.sanitize, customCSS: config.preview.customCSS, allowCustomCSS: config.preview.allowCustomCSS, storagePath: storage.path, export: config.export, RTL: config.editor.rtlEnabled /* && this.state.RTL */ }) } return null } ================================================ FILE: browser/main/lib/dataApi/getFilename.js ================================================ import filenamify from 'filenamify' import i18n from 'browser/lib/i18n' import path from 'path' /** * @param {Object} note * @param {String} fileType * @param {String} directory * @param {Object} deduplicator * * @return {String} */ function getFilename(note, fileType, directory, deduplicator) { const basename = note.title ? filenamify(note.title, { replacement: '_' }) : i18n.__('Untitled') if (deduplicator) { if (deduplicator[basename]) { const filename = path.join( directory, `${basename} (${deduplicator[basename]}).${fileType}` ) ++deduplicator[basename] return filename } else { deduplicator[basename] = 1 } } return path.join(directory, `${basename}.${fileType}`) } module.exports = getFilename ================================================ FILE: browser/main/lib/dataApi/index.js ================================================ const dataApi = { init: require('./init'), toggleStorage: require('./toggleStorage'), addStorage: require('./addStorage'), renameStorage: require('./renameStorage'), removeStorage: require('./removeStorage'), createFolder: require('./createFolder'), updateFolder: require('./updateFolder'), deleteFolder: require('./deleteFolder'), reorderFolder: require('./reorderFolder'), exportFolder: require('./exportFolder'), exportStorage: require('./exportStorage'), createNote: require('./createNote'), createNoteFromUrl: require('./createNoteFromUrl'), updateNote: require('./updateNote'), deleteNote: require('./deleteNote'), moveNote: require('./moveNote'), exportNoteAs: require('./exportNoteAs'), migrateFromV5Storage: require('./migrateFromV5Storage'), createSnippet: require('./createSnippet'), deleteSnippet: require('./deleteSnippet'), updateSnippet: require('./updateSnippet'), fetchSnippet: require('./fetchSnippet'), exportTag: require('./exportTag'), getFilename: require('./getFilename'), _migrateFromV6Storage: require('./migrateFromV6Storage'), _resolveStorageData: require('./resolveStorageData'), _resolveStorageNotes: require('./resolveStorageNotes') } module.exports = dataApi ================================================ FILE: browser/main/lib/dataApi/init.js ================================================ 'use strict' const _ = require('lodash') const resolveStorageData = require('./resolveStorageData') const resolveStorageNotes = require('./resolveStorageNotes') const consts = require('browser/lib/consts') const path = require('path') const fs = require('fs') const CSON = require('@rokt33r/season') /** * @return {Object} all storages and notes * ``` * { * storages: [...], * notes: [...] * } * ``` * * This method deals with 3 patterns. * 1. v1 * 2. legacy * 3. empty directory */ function init() { const fetchStorages = function() { let rawStorages try { rawStorages = JSON.parse(window.localStorage.getItem('storages')) // Remove storages who's location is inaccesible. rawStorages = rawStorages.filter(storage => fs.existsSync(storage.path)) if (!_.isArray(rawStorages)) throw new Error('Cached data is not valid.') } catch (e) { console.warn('Failed to parse cached data from localStorage', e) rawStorages = [] window.localStorage.setItem('storages', JSON.stringify(rawStorages)) } return Promise.all(rawStorages.map(resolveStorageData)) } const fetchNotes = function(storages) { const findNotesFromEachStorage = storages .filter(storage => fs.existsSync(storage.path)) .map(storage => { return resolveStorageNotes(storage).then(notes => { let unknownCount = 0 notes.forEach(note => { if ( note && !storage.folders.some(folder => note.folder === folder.key) ) { unknownCount++ storage.folders.push({ key: note.folder, color: consts.FOLDER_COLORS[(unknownCount - 1) % 7], name: 'Unknown ' + unknownCount }) } }) if (unknownCount > 0) { try { CSON.writeFileSync( path.join(storage.path, 'boostnote.json'), _.pick(storage, ['folders', 'version']) ) } catch (e) { console.log( 'Error writting boostnote.json: ' + e + ' from init.js' ) } } return notes }) }) return Promise.all(findNotesFromEachStorage) .then(function concatNoteGroup(noteGroups) { return noteGroups.reduce(function(sum, group) { return sum.concat(group) }, []) }) .then(function returnData(notes) { return { storages, notes } }) } return Promise.resolve(fetchStorages()) .then(storages => { return storages.filter(storage => { if (!_.isObject(storage)) return false return true }) }) .then(fetchNotes) } module.exports = init ================================================ FILE: browser/main/lib/dataApi/migrateFromV5Storage.js ================================================ const _ = require('lodash') const keygen = require('browser/lib/keygen') const resolveStorageData = require('./resolveStorageData') const consts = require('browser/lib/consts') const CSON = require('@rokt33r/season') const path = require('path') const sander = require('sander') function migrateFromV5Storage(storageKey, data) { let targetStorage try { const cachedStorageList = JSON.parse(localStorage.getItem('storages')) if (!_.isArray(cachedStorageList)) throw new Error("Target storage doesn't exist.") targetStorage = _.find(cachedStorageList, { key: storageKey }) if (targetStorage == null) throw new Error("Target storage doesn't exist.") } catch (e) { return Promise.reject(e) } return resolveStorageData(targetStorage).then(function(storage) { return importAll(storage, data) }) } function importAll(storage, data) { const oldArticles = data.articles const notes = [] data.folders.forEach(function(oldFolder) { let folderKey = keygen() while (storage.folders.some(folder => folder.key === folderKey)) { folderKey = keygen() } const newFolder = { key: folderKey, name: oldFolder.name, color: consts.FOLDER_COLORS[Math.floor(Math.random() * 7) % 7] } storage.folders.push(newFolder) const articles = oldArticles.filter( article => article.FolderKey === oldFolder.key ) articles.forEach(article => { let noteKey = keygen() let isUnique = false while (!isUnique) { try { sander.statSync(path.join(storage.path, 'notes', noteKey + '.cson')) noteKey = keygen() } catch (err) { if (err.code === 'ENOENT') { isUnique = true } else { console.error('Failed to read `notes` directory.') throw err } } } if (article.mode === 'markdown') { const newNote = { tags: article.tags, createdAt: article.createdAt, updatedAt: article.updatedAt, folder: folderKey, storage: storage.key, type: 'MARKDOWN_NOTE', isStarred: false, title: article.title, content: '# ' + article.title + '\n\n' + article.content, key: noteKey, linesHighlighted: article.linesHighlighted } notes.push(newNote) } else { const newNote = { tags: article.tags, createdAt: article.createdAt, updatedAt: article.updatedAt, folder: folderKey, storage: storage.key, type: 'SNIPPET_NOTE', isStarred: false, title: article.title, description: article.title, key: noteKey, snippets: [ { name: article.mode, mode: article.mode, content: article.content, linesHighlighted: article.linesHighlighted } ] } notes.push(newNote) } }) }) notes.forEach(function(note) { CSON.writeFileSync( path.join(storage.path, 'notes', note.key + '.cson'), _.omit(note, ['storage', 'key']) ) }) CSON.writeFileSync( path.join(storage.path, 'boostnote.json'), _.pick(storage, ['version', 'folders']) ) return { storage, notes } } module.exports = migrateFromV5Storage ================================================ FILE: browser/main/lib/dataApi/migrateFromV6Storage.js ================================================ const path = require('path') const sander = require('sander') const keygen = require('browser/lib/keygen') const _ = require('lodash') const CSON = require('@rokt33r/season') function migrateFromV5Storage(storagePath) { var boostnoteJSONPath = path.join(storagePath, 'boostnote.json') return Promise.resolve() .then(function readBoostnoteJSON() { return sander.readFile(boostnoteJSONPath, { encoding: 'utf-8' }) }) .then(function verifyVersion(rawData) { var boostnoteJSONData = JSON.parse(rawData) if (boostnoteJSONData.version === '1.0') throw new Error('Target storage seems to be transformed already.') if (!_.isArray(boostnoteJSONData.folders)) throw new Error('the value of folders is not an array.') return boostnoteJSONData }) .then(function setVersion(boostnoteJSONData) { boostnoteJSONData.version = '1.0' return sander .writeFile(boostnoteJSONPath, JSON.stringify(boostnoteJSONData)) .then(() => boostnoteJSONData) }) .then(function fetchNotes(boostnoteJSONData) { var fetchNotesFromEachFolder = boostnoteJSONData.folders.map(function( folder ) { const folderDataJSONPath = path.join( storagePath, folder.key, 'data.json' ) return sander .readFile(folderDataJSONPath, { encoding: 'utf-8' }) .then(function(rawData) { var data = JSON.parse(rawData) if (!_.isArray(data.notes)) throw new Error('value of notes is not an array.') return data.notes.map(function setFolderToNote(note) { note.folder = folder.key return note }) }) .catch(function failedToReadDataJSON(err) { console.warn('Failed to fetch notes from ', folderDataJSONPath, err) return [] }) }) return Promise.all(fetchNotesFromEachFolder) .then(function flatten(folderNotes) { return folderNotes.reduce(function concatNotes(sum, notes) { return sum.concat(notes) }, []) }) .then(function saveNotes(notes) { notes.forEach(function renewKey(note) { var newKey = keygen() while (notes.some(_note => _note.key === newKey)) { newKey = keygen() } note.key = newKey }) const noteDirPath = path.join(storagePath, 'notes') notes.map(function saveNote(note) { CSON.writeFileSync(path.join(noteDirPath, note.key) + '.cson', note) }) return true }) .then(function deleteFolderDir(check) { if (check) { boostnoteJSONData.folders.forEach(folder => { sander.rimrafSync(path.join(storagePath, folder.key)) }) } return check }) }) .catch(function handleError(err) { console.warn(err) return false }) } module.exports = migrateFromV5Storage ================================================ FILE: browser/main/lib/dataApi/moveNote.js ================================================ const resolveStorageData = require('./resolveStorageData') const _ = require('lodash') const path = require('path') const CSON = require('@rokt33r/season') const keygen = require('browser/lib/keygen') const sander = require('sander') const { findStorage } = require('browser/lib/findStorage') const attachmentManagement = require('./attachmentManagement') function moveNote(storageKey, noteKey, newStorageKey, newFolderKey) { let oldStorage, newStorage try { oldStorage = findStorage(storageKey) newStorage = findStorage(newStorageKey) if (newStorage == null) throw new Error("Target storage doesn't exist.") } catch (e) { return Promise.reject(e) } return resolveStorageData(oldStorage).then(function saveNote(_oldStorage) { oldStorage = _oldStorage let noteData const notePath = path.join(oldStorage.path, 'notes', noteKey + '.cson') try { noteData = CSON.readFileSync(notePath) } catch (err) { console.warn('Failed to find note cson', err) throw err } let newNoteKey return Promise.resolve() .then(function resolveNewStorage() { if (storageKey === newStorageKey) { newNoteKey = noteKey return oldStorage } return resolveStorageData(newStorage).then(function findNewNoteKey( _newStorage ) { newStorage = _newStorage newNoteKey = keygen(true) let isUnique = false while (!isUnique) { try { sander.statSync( path.join(newStorage.path, 'notes', newNoteKey + '.cson') ) newNoteKey = keygen(true) } catch (err) { if (err.code === 'ENOENT') { isUnique = true } else { throw err } } } return newStorage }) }) .then(function checkFolderExistsAndPrepareNoteData(newStorage) { if (_.find(newStorage.folders, { key: newFolderKey }) == null) throw new Error("Target folder doesn't exist.") noteData.folder = newFolderKey noteData.key = newNoteKey noteData.storage = newStorageKey noteData.updatedAt = new Date() noteData.oldContent = noteData.content return noteData }) .then(function moveAttachments(noteData) { if (oldStorage.path === newStorage.path) { return noteData } noteData.content = attachmentManagement.moveAttachments( oldStorage.path, newStorage.path, noteKey, newNoteKey, noteData.content ) return noteData }) .then(function writeAndReturn(noteData) { CSON.writeFileSync( path.join(newStorage.path, 'notes', noteData.key + '.cson'), _.omit(noteData, ['key', 'storage', 'oldContent']) ) return noteData }) .then(function deleteOldNote(data) { if (storageKey !== newStorageKey) { try { sander.unlinkSync( path.join(oldStorage.path, 'notes', noteKey + '.cson') ) } catch (err) { console.warn(err) } } return data }) }) } module.exports = moveNote ================================================ FILE: browser/main/lib/dataApi/removeStorage.js ================================================ const _ = require('lodash') /** * @param {String} key * @return {key} */ function removeStorage(key) { let rawStorages try { rawStorages = JSON.parse(localStorage.getItem('storages')) if (!_.isArray(rawStorages)) throw new Error('invalid storages') } catch (e) { console.warn(e) rawStorages = [] } rawStorages = rawStorages.filter(function excludeTargetStorage(rawStorage) { return rawStorage.key !== key }) localStorage.setItem('storages', JSON.stringify(rawStorages)) return Promise.resolve({ storageKey: key }) } module.exports = removeStorage ================================================ FILE: browser/main/lib/dataApi/renameStorage.js ================================================ const _ = require('lodash') const resolveStorageData = require('./resolveStorageData') /** * @param {String} key * @param {String} name * @return {Object} Storage meta data */ function renameStorage(key, name) { if (!_.isString(name)) return Promise.reject(new Error('Name must be a string.')) let cachedStorageList try { cachedStorageList = JSON.parse(localStorage.getItem('storages')) if (!_.isArray(cachedStorageList)) throw new Error('invalid storages') } catch (err) { console.error(err) return Promise.reject(err) } const targetStorage = _.find(cachedStorageList, { key: key }) if (targetStorage == null) return Promise.reject('Storage') targetStorage.name = name localStorage.setItem('storages', JSON.stringify(cachedStorageList)) targetStorage.path return resolveStorageData(targetStorage) } module.exports = renameStorage ================================================ FILE: browser/main/lib/dataApi/reorderFolder.js ================================================ const _ = require('lodash') _.move = require('lodash-move').default const path = require('path') const resolveStorageData = require('./resolveStorageData') const CSON = require('@rokt33r/season') const { findStorage } = require('browser/lib/findStorage') /** * @param {String} storageKey * @param {number} oldIndex * @param {number} newIndex * * @return {Object} * ``` * { * storage: Object * } * ``` */ function reorderFolder(storageKey, oldIndex, newIndex) { let targetStorage try { if (!_.isNumber(oldIndex)) throw new Error('oldIndex must be a number.') if (!_.isNumber(newIndex)) throw new Error('newIndex must be a number.') targetStorage = findStorage(storageKey) } catch (e) { return Promise.reject(e) } return resolveStorageData(targetStorage).then(function reorderFolder( storage ) { storage.folders = _.move(storage.folders, oldIndex, newIndex) CSON.writeFileSync( path.join(storage.path, 'boostnote.json'), _.pick(storage, ['folders', 'version']) ) return { storage } }) } module.exports = reorderFolder ================================================ FILE: browser/main/lib/dataApi/resolveStorageData.js ================================================ const _ = require('lodash') const path = require('path') const CSON = require('@rokt33r/season') const migrateFromV6Storage = require('./migrateFromV6Storage') function resolveStorageData(storageCache) { const storage = { key: storageCache.key, name: storageCache.name, type: storageCache.type, path: storageCache.path, isOpen: storageCache.isOpen } const boostnoteJSONPath = path.join(storageCache.path, 'boostnote.json') try { const jsonData = CSON.readFileSync(boostnoteJSONPath) if (!_.isArray(jsonData.folders)) throw new Error('folders should be an array.') storage.folders = jsonData.folders storage.version = jsonData.version } catch (err) { if (err.code === 'ENOENT') { console.warn("boostnote.json file doesn't exist the given path") CSON.writeFileSync(boostnoteJSONPath, { folders: [], version: '1.0' }) } else { console.error(err) } storage.folders = [] storage.version = '1.0' } const version = parseInt(storage.version, 10) if (version >= 1) { return Promise.resolve(storage) } return migrateFromV6Storage(storage.path).then(() => storage) } module.exports = resolveStorageData ================================================ FILE: browser/main/lib/dataApi/resolveStorageNotes.js ================================================ const sander = require('sander') const path = require('path') const CSON = require('@rokt33r/season') function resolveStorageNotes(storage) { const notesDirPath = path.join(storage.path, 'notes') let notePathList try { notePathList = sander.readdirSync(notesDirPath) } catch (err) { if (err.code === 'ENOENT') { console.error(notesDirPath, " doesn't exist.") sander.mkdirSync(notesDirPath) } else { console.warn('Failed to find note dir', notesDirPath, err) } notePathList = [] } const notes = notePathList .filter(function filterOnlyCSONFile(notePath) { return /\.cson$/.test(notePath) }) .map(function parseCSONFile(notePath) { try { const data = CSON.readFileSync(path.join(notesDirPath, notePath)) data.key = path.basename(notePath, '.cson') data.storage = storage.key return data } catch (err) { console.error(`error on note path: ${notePath}, error: ${err}`) } }) .filter(function filterOnlyNoteObject(noteObj) { return typeof noteObj === 'object' }) return Promise.resolve(notes) } module.exports = resolveStorageNotes ================================================ FILE: browser/main/lib/dataApi/toggleStorage.js ================================================ const _ = require('lodash') const resolveStorageData = require('./resolveStorageData') /** * @param {String} key * @param {Boolean} isOpen * @return {Object} Storage meta data */ function toggleStorage(key, isOpen) { let cachedStorageList try { cachedStorageList = JSON.parse(localStorage.getItem('storages')) if (!_.isArray(cachedStorageList)) throw new Error('invalid storages') } catch (err) { console.error(err) return Promise.reject(err) } const targetStorage = _.find(cachedStorageList, { key: key }) if (targetStorage == null) return Promise.reject('Storage') targetStorage.isOpen = isOpen localStorage.setItem('storages', JSON.stringify(cachedStorageList)) return resolveStorageData(targetStorage) } module.exports = toggleStorage ================================================ FILE: browser/main/lib/dataApi/updateFolder.js ================================================ const _ = require('lodash') const path = require('path') const resolveStorageData = require('./resolveStorageData') const CSON = require('@rokt33r/season') const { findStorage } = require('browser/lib/findStorage') /** * @param {String} storageKey * @param {String} folderKey * @param {Object} input * ``` * { * color: String, * name: String * } * ``` * * @return {Object} * ``` * { * storage: Object * } * ``` */ function updateFolder(storageKey, folderKey, input) { let targetStorage try { if (input == null) throw new Error('No input found.') if (!_.isString(input.name)) throw new Error('Name must be a string.') if (!_.isString(input.color)) throw new Error('Color must be a string.') targetStorage = findStorage(storageKey) } catch (e) { return Promise.reject(e) } return resolveStorageData(targetStorage).then(function updateFolder(storage) { const targetFolder = _.find(storage.folders, { key: folderKey }) if (targetFolder == null) throw new Error("Target folder doesn't exist.") targetFolder.name = input.name targetFolder.color = input.color CSON.writeFileSync( path.join(storage.path, 'boostnote.json'), _.pick(storage, ['folders', 'version']) ) return { storage } }) } module.exports = updateFolder ================================================ FILE: browser/main/lib/dataApi/updateNote.js ================================================ const resolveStorageData = require('./resolveStorageData') const _ = require('lodash') const path = require('path') const CSON = require('@rokt33r/season') const { findStorage } = require('browser/lib/findStorage') function validateInput(input) { const validatedInput = {} if (input.tags != null) { if (!_.isArray(input.tags)) validatedInput.tags = [] validatedInput.tags = input.tags.filter( tag => _.isString(tag) && tag.trim().length > 0 ) } if (input.title != null) { if (!_.isString(input.title)) validatedInput.title = '' else validatedInput.title = input.title } if (input.isStarred != null) { validatedInput.isStarred = !!input.isStarred } if (input.isTrashed != null) { validatedInput.isTrashed = !!input.isTrashed } if (input.isPinned !== undefined) { validatedInput.isPinned = !!input.isPinned } if (!_.isNil(input.blog)) { validatedInput.blog = input.blog } validatedInput.type = input.type switch (input.type) { case 'MARKDOWN_NOTE': if (input.content != null) { if (!_.isString(input.content)) validatedInput.content = '' else validatedInput.content = input.content if (!_.isArray(input.linesHighlighted)) validatedInput.linesHighlighted = [] else validatedInput.linesHighlighted = input.linesHighlighted } return validatedInput case 'SNIPPET_NOTE': if (input.description != null) { if (!_.isString(input.description)) validatedInput.description = '' else validatedInput.description = input.description } if (input.snippets != null) { if (!_.isArray(input.snippets)) { validatedInput.snippets = [ { name: '', mode: 'text', content: '', linesHighlighted: [] } ] } else { validatedInput.snippets = input.snippets } validatedInput.snippets.filter(snippet => { if (!_.isString(snippet.name)) return false if (!_.isString(snippet.mode)) return false if (!_.isString(snippet.content)) return false return true }) } return validatedInput default: throw new Error( 'Invalid type: only MARKDOWN_NOTE and SNIPPET_NOTE are available.' ) } } function updateNote(storageKey, noteKey, input) { let targetStorage try { if (input == null) throw new Error('No input found.') input = validateInput(input) targetStorage = findStorage(storageKey) } catch (e) { return Promise.reject(e) } return resolveStorageData(targetStorage).then(function saveNote(storage) { let noteData const notePath = path.join(storage.path, 'notes', noteKey + '.cson') try { noteData = CSON.readFileSync(notePath) } catch (err) { console.warn('Failed to find note cson', err) noteData = input.type === 'SNIPPET_NOTE' ? { type: 'SNIPPET_NOTE', description: [], snippets: [ { name: '', mode: 'text', content: '', linesHighlighted: [] } ] } : { type: 'MARKDOWN_NOTE', content: '', linesHighlighted: [] } noteData.title = '' if (storage.folders.length === 0) throw new Error('Failed to restore note: No folder exists.') noteData.folder = storage.folders[0].key noteData.createdAt = new Date() noteData.updatedAt = new Date() noteData.isStarred = false noteData.isTrashed = false noteData.tags = [] noteData.isPinned = false } if (noteData.type === 'SNIPPET_NOTE') { noteData.title } Object.assign(noteData, input, { key: noteKey, updatedAt: new Date(), storage: storageKey }) CSON.writeFileSync( path.join(storage.path, 'notes', noteKey + '.cson'), _.omit(noteData, ['key', 'storage']) ) return noteData }) } module.exports = updateNote ================================================ FILE: browser/main/lib/dataApi/updateSnippet.js ================================================ import fs from 'fs' import consts from 'browser/lib/consts' function updateSnippet(snippet, snippetFile) { return new Promise((resolve, reject) => { const snippets = JSON.parse( fs.readFileSync(snippetFile || consts.SNIPPET_FILE, 'utf-8') ) for (let i = 0; i < snippets.length; i++) { const currentSnippet = snippets[i] if (currentSnippet.id === snippet.id) { if ( currentSnippet.name === snippet.name && currentSnippet.prefix === snippet.prefix && currentSnippet.content === snippet.content && currentSnippet.linesHighlighted === snippet.linesHighlighted ) { // if everything is the same then don't write to disk resolve(snippets) } else { currentSnippet.name = snippet.name currentSnippet.prefix = snippet.prefix currentSnippet.content = snippet.content currentSnippet.linesHighlighted = snippet.linesHighlighted fs.writeFile( snippetFile || consts.SNIPPET_FILE, JSON.stringify(snippets, null, 4), err => { if (err) reject(err) resolve(snippets) } ) } } } }) } module.exports = updateSnippet ================================================ FILE: browser/main/lib/eventEmitter.js ================================================ const electron = require('electron') const { ipcRenderer, remote } = electron function on(name, listener) { ipcRenderer.on(name, listener) } function off(name, listener) { ipcRenderer.removeListener(name, listener) } function once(name, listener) { ipcRenderer.once(name, listener) } function emit(name, ...args) { remote.getCurrentWindow().webContents.send(name, ...args) } export default { emit, on, off, once } ================================================ FILE: browser/main/lib/ipcClient.js ================================================ import ConfigManager from './ConfigManager' const nodeIpc = require('node-ipc') const { remote, ipcRenderer } = require('electron') const { app } = remote const path = require('path') nodeIpc.config.id = 'main' nodeIpc.config.retry = 1500 nodeIpc.config.silent = true nodeIpc.connectTo( 'node', path.join(app.getPath('userData'), 'boostnote.service'), function() { nodeIpc.of.node.on('error', function(err) { console.error(err) }) nodeIpc.of.node.on('connect', function() { ipcRenderer.send('config-renew', { config: ConfigManager.get() }) }) nodeIpc.of.node.on('disconnect', function() { return }) } ) module.exports = nodeIpc ================================================ FILE: browser/main/lib/modal.js ================================================ import React from 'react' import { Provider } from 'react-redux' import ReactDOM from 'react-dom' import { store } from '../store' class ModalBase extends React.Component { constructor(props) { super(props) this.state = { component: null, componentProps: {}, isHidden: true } } close() { if (modalBase != null) modalBase.setState({ component: null, componentProps: null, isHidden: true }) // Toggle overflow style on NoteList const list = document.querySelector( '.NoteList__list___browser-main-NoteList-' ) list.style.overflow = 'auto' } render() { return (
this.close(e)} className='modalBack' /> {this.state.component == null ? null : ( )}
) } } const el = document.createElement('div') document.body.appendChild(el) const modalBase = ReactDOM.render(, el) export function openModal(component, props) { if (modalBase == null) { return } // Hide scrollbar by removing overflow when modal opens const list = document.querySelector( '.NoteList__list___browser-main-NoteList-' ) list.style.overflow = 'hidden' document.body.setAttribute('data-modal', 'open') modalBase.setState({ component: component, componentProps: props, isHidden: false }) } export function closeModal() { if (modalBase == null) { return } modalBase.close() } export function isModalOpen() { return !modalBase.state.isHidden } export default { open: openModal, close: closeModal, isOpen: isModalOpen } ================================================ FILE: browser/main/lib/notify.js ================================================ const path = require('path') function notify(title, options) { if (process.platform === 'win32') { options.icon = path.join( 'file://', global.__dirname, '../../resources/app.png' ) options.silent = false } return new window.Notification(title, options) } export default notify ================================================ FILE: browser/main/lib/shortcut.js ================================================ import ee from 'browser/main/lib/eventEmitter' module.exports = { toggleMode: () => { ee.emit('topbar:togglemodebutton') }, toggleDirection: () => { ee.emit('topbar:toggledirectionbutton') }, deleteNote: () => { ee.emit('hotkey:deletenote') }, toggleMenuBar: () => { ee.emit('menubar:togglemenubar') } } ================================================ FILE: browser/main/lib/shortcutManager.js ================================================ import Mousetrap from 'mousetrap' import CM from 'browser/main/lib/ConfigManager' import ee from 'browser/main/lib/eventEmitter' import { isObjectEqual } from 'browser/lib/utils' require('mousetrap-global-bind') import functions from './shortcut' let shortcuts = CM.get().hotkey ee.on('config-renew', function() { // only update if hotkey changed ! const newHotkey = CM.get().hotkey if (!isObjectEqual(newHotkey, shortcuts)) { updateShortcut(newHotkey) } }) function updateShortcut(newHotkey) { Mousetrap.reset() shortcuts = newHotkey applyShortcuts(newHotkey) } function formatShortcut(shortcut) { return shortcut.toLowerCase().replace(/ /g, '') } function applyShortcuts(shortcuts) { for (const shortcut in shortcuts) { const toggler = formatShortcut(shortcuts[shortcut]) // only bind if the function for that shortcut exists if (functions[shortcut]) { Mousetrap.bindGlobal(toggler, functions[shortcut]) } } } applyShortcuts(CM.get().hotkey) module.exports = applyShortcuts ================================================ FILE: browser/main/modals/CreateFolderModal.js ================================================ import PropTypes from 'prop-types' import React from 'react' import CSSModules from 'browser/lib/CSSModules' import styles from './CreateFolderModal.styl' import dataApi from 'browser/main/lib/dataApi' import { store } from 'browser/main/store' import consts from 'browser/lib/consts' import ModalEscButton from 'browser/components/ModalEscButton' import AwsMobileAnalyticsConfig from 'browser/main/lib/AwsMobileAnalyticsConfig' import i18n from 'browser/lib/i18n' class CreateFolderModal extends React.Component { constructor(props) { super(props) this.state = { name: '' } } componentDidMount() { this.refs.name.focus() this.refs.name.select() } handleCloseButtonClick(e) { this.props.close() } handleChange(e) { this.setState({ name: this.refs.name.value }) } handleKeyDown(e) { if (e.keyCode === 27) { this.props.close() } } handleInputKeyDown(e) { switch (e.keyCode) { case 13: this.confirm() } } handleConfirmButtonClick(e) { this.confirm() } confirm() { AwsMobileAnalyticsConfig.recordDynamicCustomEvent('ADD_FOLDER') if (this.state.name.trim().length > 0) { const { storage } = this.props const input = { name: this.state.name.trim(), color: consts.FOLDER_COLORS[Math.floor(Math.random() * 7) % 7] } dataApi .createFolder(storage.key, input) .then(data => { store.dispatch({ type: 'UPDATE_FOLDER', storage: data.storage }) this.props.close() }) .catch(err => { console.error(err) }) } } render() { return (
this.handleKeyDown(e)} >
{i18n.__('Create new folder')}
this.handleCloseButtonClick(e)} />
{i18n.__('Folder name')}
this.handleChange(e)} onKeyDown={e => this.handleInputKeyDown(e)} />
) } } CreateFolderModal.propTypes = { storage: PropTypes.shape({ key: PropTypes.string }) } export default CSSModules(CreateFolderModal, styles) ================================================ FILE: browser/main/modals/CreateFolderModal.styl ================================================ .root modal() width 500px height 270px overflow hidden position relative .header height 80px margin-bottom 10px margin-top 20px font-size 18px line-height 50px background-color $ui-backgroundColor color $ui-text-color .title font-size 36px font-weight 600 .control-folder-label text-align left font-size 14px color $ui-text-color .control-folder-input display block height 40px width 490px padding 0 5px margin 10px 0 border 1px solid $ui-input--create-folder-modal border-radius 2px background-color transparent outline none vertical-align middle font-size 16px &:disabled background-color $ui-input--disabled-backgroundColor &:focus, &:active border-color $ui-active-color .control-confirmButton display block height 35px width 140px border none border-radius 2px padding 0 25px margin 20px auto font-size 14px colorPrimaryButton() apply-theme(theme) body[data-theme={theme}] .root width 500px height 270px overflow hidden position relative position relative z-index $modal-z-index width 100% background-color get-theme-var(theme, 'backgroundColor') overflow hidden border-radius $modal-border-radius .header background-color transparent border-color $ui-dark-borderColor color get-theme-var(theme, 'text-color') .control-folder-label color get-theme-var(theme, 'text-color') .control-folder-input border 1px solid $ui-input--create-folder-modal color white .description color $ui-inactive-text-color .control-confirmButton colorThemedPrimaryButton(theme) for theme in 'dark' 'solarized-dark' 'dracula' apply-theme(theme) for theme in $themes apply-theme(theme) ================================================ FILE: browser/main/modals/CreateMarkdownFromURLModal.js ================================================ import PropTypes from 'prop-types' import React from 'react' import CSSModules from 'browser/lib/CSSModules' import styles from './CreateMarkdownFromURLModal.styl' import dataApi from 'browser/main/lib/dataApi' import ModalEscButton from 'browser/components/ModalEscButton' import i18n from 'browser/lib/i18n' class CreateMarkdownFromURLModal extends React.Component { constructor(props) { super(props) this.state = { name: '', showerror: false, errormessage: '' } } componentDidMount() { this.refs.name.focus() this.refs.name.select() } handleCloseButtonClick(e) { this.props.close() } handleChange(e) { this.setState({ name: this.refs.name.value }) } handleKeyDown(e) { if (e.keyCode === 27) { this.props.close() } } handleInputKeyDown(e) { switch (e.keyCode) { case 13: this.confirm() } } handleConfirmButtonClick(e) { this.confirm() } showError(message) { this.setState({ showerror: true, errormessage: message }) } hideError() { this.setState({ showerror: false, errormessage: '' }) } confirm() { this.hideError() const { storage, folder, dispatch, location } = this.props dataApi .createNoteFromUrl(this.state.name, storage, folder, dispatch, location) .then(result => { this.props.close() }) .catch(result => { this.showError(result.error) }) } render() { return (
this.handleKeyDown(e)} >
{i18n.__('Import Markdown From URL')}
this.handleCloseButtonClick(e)} />
{i18n.__('Insert URL Here')}
this.handleChange(e)} onKeyDown={e => this.handleInputKeyDown(e)} />
{this.state.errormessage}
) } } CreateMarkdownFromURLModal.propTypes = { storage: PropTypes.string, folder: PropTypes.string, dispatch: PropTypes.func, location: PropTypes.shape({ pathname: PropTypes.string }) } export default CSSModules(CreateMarkdownFromURLModal, styles) ================================================ FILE: browser/main/modals/CreateMarkdownFromURLModal.styl ================================================ .root modal() width 500px height 270px overflow hidden position relative .header height 80px margin-bottom 10px margin-top 20px font-size 18px line-height 50px background-color $ui-backgroundColor color $ui-text-color .title font-size 36px font-weight 600 .control-folder-label text-align left font-size 14px color $ui-text-color .control-folder-input display block height 40px width 490px padding 0 5px margin 10px 0 border 1px solid $ui-input--create-folder-modal border-radius 2px background-color transparent outline none vertical-align middle font-size 16px &:disabled background-color $ui-input--disabled-backgroundColor &:focus, &:active border-color $ui-active-color .control-confirmButton display block height 35px width 140px border none border-radius 2px padding 0 25px margin 20px auto font-size 14px colorPrimaryButton() .error text-align center color #F44336 apply-theme(theme) body[data-theme={theme}] .root background-color transparent width 500px height 270px overflow hidden position relative .header background-color transparent border-color get-theme-var(theme, 'borderColor') color get-theme-var(theme, 'text-color') .control-folder-label color get-theme-var(theme, 'text-color') .control-folder-input border 1px solid $ui-input--create-folder-modal color white .description color $ui-inactive-text-color .control-confirmButton colorThemedPrimaryButton(theme) for theme in 'dark' 'dracula' 'solarized-dark' apply-theme(theme) for theme in $themes apply-theme(theme) ================================================ FILE: browser/main/modals/NewNoteModal.js ================================================ import React from 'react' import CSSModules from 'browser/lib/CSSModules' import styles from './NewNoteModal.styl' import ModalEscButton from 'browser/components/ModalEscButton' import i18n from 'browser/lib/i18n' import { openModal } from 'browser/main/lib/modal' import CreateMarkdownFromURLModal from '../modals/CreateMarkdownFromURLModal' import { createMarkdownNote, createSnippetNote } from 'browser/lib/newNote' import queryString from 'query-string' class NewNoteModal extends React.Component { constructor(props) { super(props) this.lock = false this.state = {} } componentDidMount() { this.refs.markdownButton.focus() } handleCloseButtonClick(e) { this.props.close() } handleCreateMarkdownFromUrlClick(e) { this.props.close() const { storage, folder, dispatch, location } = this.props openModal(CreateMarkdownFromURLModal, { storage: storage, folder: folder, dispatch, location }) } handleMarkdownNoteButtonClick(e) { const { storage, folder, dispatch, location, config } = this.props const params = location.search !== '' && queryString.parse(location.search) if (!this.lock) { this.lock = true createMarkdownNote( storage, folder, dispatch, location, params, config ).then(() => { setTimeout(this.props.close, 200) }) } } handleMarkdownNoteButtonKeyDown(e) { if (e.keyCode === 9) { e.preventDefault() this.refs.snippetButton.focus() } } handleSnippetNoteButtonClick(e) { const { storage, folder, dispatch, location, config } = this.props const params = location.search !== '' && queryString.parse(location.search) if (!this.lock) { this.lock = true createSnippetNote( storage, folder, dispatch, location, params, config ).then(() => { setTimeout(this.props.close, 200) }) } } handleSnippetNoteButtonKeyDown(e) { if (e.keyCode === 9) { e.preventDefault() this.refs.markdownButton.focus() } } handleKeyDown(e) { if (e.keyCode === 27) { this.props.close() } } render() { return (
this.handleKeyDown(e)} >
{i18n.__('Make a note')}
this.handleCloseButtonClick(e)} />
{i18n.__('Tab to switch format')}
this.handleCreateMarkdownFromUrlClick(e)} > Or, create a new markdown note from a URL
) } } NewNoteModal.propTypes = {} export default CSSModules(NewNoteModal, styles) ================================================ FILE: browser/main/modals/NewNoteModal.styl ================================================ .root modal() max-width 540px overflow hidden position relative .header height 50px font-size 18px line-height 50px padding 0 15px color $ui-text-color margin-bottom 20px .title font-size 36px font-weight 600 .control padding 25px 0px text-align center display: flex .control-button width 240px height 220px margin 0 15px border $ui-border border-radius 5px color $ui-text-color colorDefaultButton() padding 10px &:focus colorPrimaryButton() .control-button-icon font-size 48px margin-bottom 25px .control-button-label font-size 18px line-height 32px .control-button-description font-size 12px .description color $ui-inactive-text-color text-align center margin-bottom 25px .from-url color $ui-inactive-text-color text-align center margin-bottom 25px cursor pointer apply-theme(theme) body[data-theme={theme}] .root background-color transparent .header color get-theme-var(theme, 'text-color') .control-button border-color get-theme-var(theme, 'borderColor') color get-theme-var(theme, 'text-color') background-color transparent &:focus colorThemedPrimaryButton(theme) .description color get-theme-var(theme, 'text-color') for theme in 'dark' 'solarized-dark' 'dracula' apply-theme(theme) for theme in $themes apply-theme(theme) ================================================ FILE: browser/main/modals/PreferencesModal/Blog.js ================================================ import React from 'react' import CSSModules from 'browser/lib/CSSModules' import styles from './ConfigTab.styl' import ConfigManager from 'browser/main/lib/ConfigManager' import { store } from 'browser/main/store' import PropTypes from 'prop-types' import _ from 'lodash' import i18n from 'browser/lib/i18n' const electron = require('electron') const { shell } = electron const ipc = electron.ipcRenderer class Blog extends React.Component { constructor(props) { super(props) this.state = { config: props.config, BlogAlert: null } } handleLinkClick(e) { shell.openExternal(e.currentTarget.href) e.preventDefault() } clearMessage() { _.debounce(() => { this.setState({ BlogAlert: null }) }, 2000)() } componentDidMount() { this.handleSettingDone = () => { this.setState({ BlogAlert: { type: 'success', message: i18n.__('Successfully applied!') } }) } this.handleSettingError = err => { this.setState({ BlogAlert: { type: 'error', message: err.message != null ? err.message : i18n.__('An error occurred!') } }) } this.oldBlog = this.state.config.blog ipc.addListener('APP_SETTING_DONE', this.handleSettingDone) ipc.addListener('APP_SETTING_ERROR', this.handleSettingError) } handleBlogChange(e) { const { config } = this.state config.blog = { password: !_.isNil(this.refs.passwordInput) ? this.refs.passwordInput.value : config.blog.password, username: !_.isNil(this.refs.usernameInput) ? this.refs.usernameInput.value : config.blog.username, token: !_.isNil(this.refs.tokenInput) ? this.refs.tokenInput.value : config.blog.token, authMethod: this.refs.authMethodDropdown.value, address: this.refs.addressInput.value, type: this.refs.typeDropdown.value } this.setState({ config }) if (_.isEqual(this.oldBlog, config.blog)) { this.props.haveToSave() } else { this.props.haveToSave({ tab: 'Blog', type: 'warning', message: i18n.__('Unsaved Changes!') }) } } handleSaveButtonClick(e) { const newConfig = { blog: this.state.config.blog } ConfigManager.set(newConfig) store.dispatch({ type: 'SET_UI', config: newConfig }) this.clearMessage() this.props.haveToSave() } render() { const { config, BlogAlert } = this.state const blogAlertElement = BlogAlert != null ? (

{BlogAlert.message}

) : null return (
{i18n.__('Blog')}
{i18n.__('Blog Type')}
{i18n.__('Blog Address')}
this.handleBlogChange(e)} ref='addressInput' value={config.blog.address} type='text' />
{blogAlertElement}
{i18n.__('Auth')}
{i18n.__('Authentication Method')}
{config.blog.authMethod === 'JWT' && (
{i18n.__('Token')}
this.handleBlogChange(e)} ref='tokenInput' value={config.blog.token} type='text' />
)} {config.blog.authMethod === 'USER' && (
{i18n.__('UserName')}
this.handleBlogChange(e)} ref='usernameInput' value={config.blog.username} type='text' />
{i18n.__('Password')}
this.handleBlogChange(e)} ref='passwordInput' value={config.blog.password} type='password' />
)}
) } } Blog.propTypes = { dispatch: PropTypes.func, haveToSave: PropTypes.func } export default CSSModules(Blog, styles) ================================================ FILE: browser/main/modals/PreferencesModal/ConfigTab.styl ================================================ @import('./Tab') .container display flex flex-direction column align-items center justify-content center position relative margin-bottom 2em margin-left 2em .box-minmax width 608px height 45px display flex justify-content space-between font-size $tab--button-font-size color $ui-text-color span first-child margin-top 18px padding-right 10px padding-left 10px padding-top 8px position relative border $ui-borderColor border-radius 5px background $ui-backgroundColor div[id^="secondRow"] position absolute z-index 2 left 0 top 0 margin-bottom -42px .rs-label margin-left -20px div[id^="firstRow"] position absolute z-index 2 left 0 top 0 margin-bottom -25px .rs-range &::-webkit-slider-thumb margin-top 0px transform rotate(180deg) .rs-label margin-bottom -85px margin-top 85px .rs-range margin-top 29px width 600px -webkit-appearance none &:focus outline black &::-webkit-slider-runnable-track width 100% height 0.1px cursor pointer box-shadow none background $ui-backgroundColor border-radius 0px border 0px solid #010101 cursor none &::-webkit-slider-thumb box-shadow none border 1px solid $ui-borderColor box-shadow 0px 10px 10px rgba(0, 0, 0, 0.25) height 32px width 32px border-radius 22px background white cursor pointer -webkit-appearance none margin-top -20px border-color $ui-default-button-backgroundColor height 32px border-top-left-radius 10% border-top-right-radius 10% .rs-label position relative transform-origin center center display block background transparent border-radius none line-height 30px font-weight normal box-sizing border-box border none margin-bottom -5px margin-top -10px clear both float left height 17px margin-left -25px left attr(value) color $ui-text-color font-style normal font-weight normal line-height normal font-size $tab--button-font-size .root padding 15px margin-bottom 30px .group margin-bottom 45px .group-header @extend .header color $ui-text-color .group-header2 font-size 20px margin-bottom 15px margin-top 30px .group-header--sub @extend .group-header margin-bottom 10px .group-header2--sub @extend .group-header2 margin-bottom 10px .group-section margin-bottom 20px display flex line-height 30px .group-section-label width 200px text-align left margin-right 10px font-size 14px .group-section-label-right width 200px text-align right margin-right 10px font-size 14px padding-right 1.5rem .group-section-control flex 1 margin-left 5px .group-section-control select outline none border 1px solid $ui-borderColor font-size 16px height 30px width 250px margin-bottom 5px background-color transparent .group-section-control-input height 30px vertical-align middle width 400px font-size $tab--button-font-size border solid 1px $border-color border-radius 2px padding 0 5px outline none &:disabled background-color $ui-input--disabled-backgroundColor .group-checkBoxSection margin-bottom 15px display flex line-height 30px padding-left 15px .group-control padding-top 10px box-sizing border-box height 40px text-align right :global .alert display inline-block position fixed top 130px right 100px font-size 14px .success color #1EC38B .error color red .warning color #FFA500 .group-control-leftButton colorDefaultButton() border none border-radius 2px font-size $tab--button-font-size height $tab--button-height padding 0 15px margin-right 10px .group-control-rightButton position fixed top 80px right 100px colorPrimaryButton() border none border-radius 2px font-size $tab--button-font-size height 40px width 120px padding 0 15px .group-hint border $ui-border padding 10px 15px margin 15px 0 border-radius 2px background-color $ui-backgroundColor color $ui-inactive-text-color ul list-style inherit padding-left 1em line-height 1.2 p line-height 1.2 .note-for-keymap font-size: 12px .code-mirror width 400px height 120px margin 5px 0 font-size 12px colorDarkControl() border-color $ui-dark-borderColor background-color $ui-dark-backgroundColor color $ui-dark-text-color colorThemedControl(theme) border none background-color get-theme-var(theme, 'button-backgroundColor') color get-theme-var(theme, 'text-color') body[data-theme="default"], body[data-theme="white"] .root color $ui-text-color .group-header2 color $ui-text-color body[data-theme="dark"] .root color $ui-dark-text-color .group-header .group-header--sub color $ui-dark-text-color border-color $ui-dark-borderColor .group-header2 .group-header2--sub color $ui-dark-text-color .group-section-control-input border-color $ui-dark-borderColor .group-control border-color $ui-dark-borderColor .group-control-leftButton colorDarkDefaultButton() border-color $ui-dark-borderColor .group-control-rightButton colorDarkPrimaryButton() .group-hint colorDarkControl() .group-section-control select, .group-section-control-input colorDarkControl() .rs-label color $ui-dark-text-color apply-theme(theme) body[data-theme={theme}] .root color get-theme-var(theme, 'text-color') .group-header .group-header--sub color get-theme-var(theme, 'text-color') border-color get-theme-var(theme, 'borderColor') .group-header2 .group-header2--sub color get-theme-var(theme, 'text-color') .group-section-control-input border-color get-theme-var(theme, 'borderColor') .group-control border-color get-theme-var(theme, 'borderColor') .group-control-leftButton colorDarkDefaultButton() border-color get-theme-var(theme, 'borderColor') .group-control-rightButton colorThemedPrimaryButton(theme) .group-hint colorThemedControl(theme) .group-section-control select, .group-section-control-input colorThemedControl(theme) .rs-label color get-theme-var(theme, 'text-color') for theme in 'solarized-dark' 'dracula' apply-theme(theme) for theme in $themes apply-theme(theme) ================================================ FILE: browser/main/modals/PreferencesModal/Crowdfunding.js ================================================ import React from 'react' import CSSModules from 'browser/lib/CSSModules' import styles from './Crowdfunding.styl' import i18n from 'browser/lib/i18n' const electron = require('electron') const { shell } = electron class Crowdfunding extends React.Component { constructor(props) { super(props) this.state = {} } handleLinkClick(e) { shell.openExternal(e.currentTarget.href) e.preventDefault() } render() { return (
{i18n.__('Crowdfunding')}

{i18n.__('Thank you for using Boostnote!')}


{i18n.__( 'We launched IssueHunt which is an issue-based crowdfunding / sourcing platform for open source projects.' )}

{i18n.__( 'Anyone can put a bounty on not only a bug but also on OSS feature requests listed on IssueHunt. Collected funds will be distributed to project owners and contributors.' )}

{i18n.__('Sustainable Open Source Ecosystem')}

{i18n.__( 'We discussed about open-source ecosystem and IssueHunt concept with the Boostnote team repeatedly. We actually also discussed with Matz who father of Ruby.' )}

{i18n.__( 'The original reason why we made IssueHunt was to reward our contributors of Boostnote project. We’ve got tons of Github stars and hundred of contributors in two years.' )}

{i18n.__( 'We thought that it will be nice if we can pay reward for our contributors.' )}

{i18n.__('We believe Meritocracy')}

{i18n.__( 'We think developers who have skills and do great things must be rewarded properly.' )}

{i18n.__( 'OSS projects are used in everywhere on the internet, but no matter how they great, most of owners of those projects need to have another job to sustain their living.' )}

{i18n.__('It sometimes looks like exploitation.')}

{i18n.__( 'We’ve realized IssueHunt could enhance sustainability of open-source ecosystem.' )}


{i18n.__( 'As same as issues of Boostnote are already funded on IssueHunt, your open-source projects can be also started funding from now.' )}


{i18n.__('Thank you,')}

{i18n.__('The Boostnote Team')}


) } } Crowdfunding.propTypes = {} export default CSSModules(Crowdfunding, styles) ================================================ FILE: browser/main/modals/PreferencesModal/Crowdfunding.styl ================================================ @import('./ConfigTab') p font-size 16px line-height 1.4 .cf-link height 35px border-radius 2px border none background-color alpha(#1EC38B, 90%) padding-left 20px padding-right 20px &:hover background-color #1EC38B transition 0.2s a text-decoration none color white font-weight 600 font-size 16px body[data-theme="dark"] p color $ui-dark-text-color apply-theme(theme) body[data-theme={theme}] .root color get-theme-var(theme, 'text-color') p color get-theme-var(theme, 'text-color') for theme in 'solarized-dark' 'dracula' apply-theme(theme) for theme in $themes apply-theme(theme) ================================================ FILE: browser/main/modals/PreferencesModal/ExportTab.js ================================================ import PropTypes from 'prop-types' import React from 'react' import CSSModules from 'browser/lib/CSSModules' import styles from './ConfigTab.styl' import ConfigManager from 'browser/main/lib/ConfigManager' import store from 'browser/main/store' import _ from 'lodash' import i18n from 'browser/lib/i18n' const electron = require('electron') const ipc = electron.ipcRenderer class ExportTab extends React.Component { constructor(props) { super(props) this.state = { config: props.config } } clearMessage() { _.debounce(() => { this.setState({ ExportAlert: null }) }, 2000)() } componentDidMount() { this.handleSettingDone = () => { this.setState({ ExportAlert: { type: 'success', message: i18n.__('Successfully applied!') } }) } this.handleSettingError = err => { this.setState({ ExportAlert: { type: 'error', message: err.message != null ? err.message : i18n.__('An error occurred!') } }) } this.oldExport = this.state.config.export ipc.addListener('APP_SETTING_DONE', this.handleSettingDone) ipc.addListener('APP_SETTING_ERROR', this.handleSettingError) } componentWillUnmount() { ipc.removeListener('APP_SETTING_DONE', this.handleSettingDone) ipc.removeListener('APP_SETTING_ERROR', this.handleSettingError) } handleSaveButtonClick(e) { const newConfig = { export: this.state.config.export } ConfigManager.set(newConfig) store.dispatch({ type: 'SET_UI', config: newConfig }) this.clearMessage() this.props.haveToSave() } handleExportChange(e) { const { config } = this.state config.export = { metadata: this.refs.metadata.value, variable: !_.isNil(this.refs.variable) ? this.refs.variable.value : config.export.variable, prefixAttachmentFolder: this.refs.prefixAttachmentFolder.checked } this.setState({ config }) if (_.isEqual(this.oldExport, config.export)) { this.props.haveToSave() } else { this.props.haveToSave({ tab: 'Export', type: 'warning', message: i18n.__('Unsaved Changes!') }) } } render() { const { config, ExportAlert } = this.state const ExportAlertElement = ExportAlert != null ? (

{ExportAlert.message}

) : null return (
{i18n.__('Export')}
{i18n.__('Metadata')}
{config.export.metadata === 'MERGE_VARIABLE' && (
{i18n.__('Variable Name')}
this.handleExportChange(e)} ref='variable' value={config.export.variable} type='text' />
)}
{ExportAlertElement}
) } } ExportTab.propTypes = { dispatch: PropTypes.func, haveToSave: PropTypes.func } export default CSSModules(ExportTab, styles) ================================================ FILE: browser/main/modals/PreferencesModal/FolderItem.js ================================================ import PropTypes from 'prop-types' import React from 'react' import CSSModules from 'browser/lib/CSSModules' import ReactDOM from 'react-dom' import styles from './FolderItem.styl' import dataApi from 'browser/main/lib/dataApi' import { store } from 'browser/main/store' import { SketchPicker } from 'react-color' import { SortableElement, SortableHandle } from 'react-sortable-hoc' import i18n from 'browser/lib/i18n' class FolderItem extends React.Component { constructor(props) { super(props) this.state = { status: 'IDLE', folder: { showColumnPicker: false, colorPickerPos: { left: 0, top: 0 }, color: props.color, name: props.name } } } handleEditChange(e) { const { folder } = this.state folder.name = this.refs.nameInput.value this.setState({ folder }) } handleConfirmButtonClick(e) { this.confirm() } confirm() { const { storage, folder } = this.props dataApi .updateFolder(storage.key, folder.key, { color: this.state.folder.color, name: this.state.folder.name }) .then(data => { store.dispatch({ type: 'UPDATE_FOLDER', storage: data.storage }) this.setState({ status: 'IDLE' }) }) } handleColorButtonClick(e) { const folder = Object.assign({}, this.state.folder, { showColumnPicker: true, colorPickerPos: { left: 0, top: 0 } }) this.setState({ folder }, function() { // After the color picker has been painted, re-calculate its position // by comparing its dimensions to the host dimensions. const { hostBoundingBox } = this.props const colorPickerNode = ReactDOM.findDOMNode(this.refs.colorPicker) const colorPickerBox = colorPickerNode.getBoundingClientRect() const offsetTop = hostBoundingBox.bottom - colorPickerBox.bottom const folder = Object.assign({}, this.state.folder, { colorPickerPos: { left: 25, top: offsetTop < 0 ? offsetTop - 5 : 0 // subtract 5px for aestetics } }) this.setState({ folder }) }) } handleColorChange(color) { const folder = Object.assign({}, this.state.folder, { color: color.hex }) this.setState({ folder }) } handleColorPickerClose(event) { const folder = Object.assign({}, this.state.folder, { showColumnPicker: false }) this.setState({ folder }) } handleCancelButtonClick(e) { this.setState({ status: 'IDLE' }) } handleFolderItemBlur(e) { let el = e.relatedTarget while (el != null) { if (el === this.refs.root) { return false } el = el.parentNode } this.confirm() } renderEdit(e) { const popover = { position: 'absolute', zIndex: 2 } const cover = { position: 'fixed', top: 0, right: 0, bottom: 0, left: 0 } const pickerStyle = Object.assign( {}, { position: 'absolute' }, this.state.folder.colorPickerPos ) return (
this.handleFolderItemBlur(e)} tabIndex='-1' ref='root' >
this.handleEditChange(e)} />
) } handleDeleteConfirmButtonClick(e) { const { storage, folder } = this.props dataApi.deleteFolder(storage.key, folder.key).then(data => { store.dispatch({ type: 'DELETE_FOLDER', storage: data.storage, folderKey: data.folderKey }) }) } renderDelete() { return (
{i18n.__('Are you sure to ')}{' '} {i18n.__(' delete')}{' '} {i18n.__('this folder?')}
) } handleEditButtonClick(e) { const { folder: propsFolder } = this.props const { folder: stateFolder } = this.state const folder = Object.assign({}, stateFolder, propsFolder) this.setState( { status: 'EDIT', folder }, () => { this.refs.nameInput.select() } ) } handleDeleteButtonClick(e) { this.setState({ status: 'DELETE' }) } renderIdle() { const { folder } = this.props return (
this.handleEditButtonClick(e)} >
{folder.name} ({folder.key})
) } render() { switch (this.state.status) { case 'DELETE': return this.renderDelete() case 'EDIT': return this.renderEdit() case 'IDLE': default: return this.renderIdle() } } } FolderItem.propTypes = { hostBoundingBox: PropTypes.shape({ bottom: PropTypes.number, height: PropTypes.number, left: PropTypes.number, right: PropTypes.number, top: PropTypes.number, width: PropTypes.number }), storage: PropTypes.shape({ key: PropTypes.string }), folder: PropTypes.shape({ key: PropTypes.string, color: PropTypes.string, name: PropTypes.string }) } class Handle extends React.Component { render() { return (
) } } class SortableFolderItemComponent extends React.Component { render() { const StyledHandle = CSSModules(Handle, styles) const DragHandle = SortableHandle(StyledHandle) const StyledFolderItem = CSSModules(FolderItem, styles) return (
) } } export default CSSModules(SortableElement(SortableFolderItemComponent), styles) ================================================ FILE: browser/main/modals/PreferencesModal/FolderItem.styl ================================================ .folderItem height 35px box-sizing border-box padding 2.5px 15px display flex &:hover background-color darken(white, 3%) .folderItem-drag-handle height 35px border none padding 0 10px line-height 35px float left cursor row-resize .folderItem-left height 30px border-left solid 2px transparent padding 0 10px line-height 30px flex 1 white-space nowrap text-overflow ellipsis overflow hidden .folderItem-left-danger color $danger-color font-weight bold .folderItem-left-key color $ui-inactive-text-color font-size 13px margin 0 5px border none .folderItem-left-colorButton colorDefaultButton() height 25px width 25px line-height 23px padding 0 box-sizing border-box vertical-align middle border $ui-border border-radius 2px margin-right 5px margin-left -15px .folderItem-left-nameInput height 25px box-sizing border-box vertical-align middle border $ui-border border-radius 2px padding 0 5px outline none .folderItem-right -webkit-box-flex: 1 white-space nowrap .folderItem-right-button vertical-align middle height 25px margin-top 2px colorDefaultButton() border-radius 2px border $ui-border margin-right 5px padding 0 5px &:last-child margin-right 0 .folderItem-right-confirmButton @extend .folderItem-right-button border none colorPrimaryButton() .folderItem-right-dangerButton @extend .folderItem-right-button border none colorDangerButton() body[data-theme="dark"] .folderItem &:hover background-color lighten($ui-dark-button--hover-backgroundColor, 5%) .folderItem-left-danger color $danger-color font-weight bold .folderItem-left-key color $ui-dark-inactive-text-color .folderItem-left-colorButton colorDarkDefaultButton() border-color $ui-dark-borderColor .folderItem-right-button colorDarkDefaultButton() border-color $ui-dark-borderColor .folderItem-right-confirmButton colorDarkPrimaryButton() .folderItem-right-dangerButton colorDarkDangerButton() apply-theme(theme) body[data-theme={theme}] .folderItem &:hover background-color get-theme-var(theme, 'button-backgroundColor') .folderItem-left-danger color $danger-color .folderItem-left-key color $ui-dark-inactive-text-color .folderItem-left-colorButton colorThemedPrimaryButton(theme) .folderItem-right-button colorThemedPrimaryButton(theme) .folderItem-right-confirmButton colorThemedPrimaryButton(theme) .folderItem-right-dangerButton colorThemedPrimaryButton(theme) for theme in 'solarized-dark' 'dracula' apply-theme(theme) for theme in $themes apply-theme(theme) ================================================ FILE: browser/main/modals/PreferencesModal/FolderList.js ================================================ import PropTypes from 'prop-types' import React from 'react' import CSSModules from 'browser/lib/CSSModules' import dataApi from 'browser/main/lib/dataApi' import styles from './FolderList.styl' import { store } from 'browser/main/store' import FolderItem from './FolderItem' import { SortableContainer } from 'react-sortable-hoc' import i18n from 'browser/lib/i18n' class FolderList extends React.Component { render() { const { storage, hostBoundingBox } = this.props const folderList = storage.folders.map((folder, index) => { return ( ) }) return (
{folderList.length > 0 ? ( folderList ) : (
{i18n.__('No Folders')}
)}
) } } FolderList.propTypes = { hostBoundingBox: PropTypes.shape({ bottom: PropTypes.number, height: PropTypes.number, left: PropTypes.number, right: PropTypes.number, top: PropTypes.number, width: PropTypes.number }), storage: PropTypes.shape({ key: PropTypes.string }), folder: PropTypes.shape({ key: PropTypes.number, color: PropTypes.string, name: PropTypes.string }) } class SortableFolderListComponent extends React.Component { constructor(props) { super(props) this.onSortEnd = ({ oldIndex, newIndex }) => { const { storage } = this.props dataApi.reorderFolder(storage.key, oldIndex, newIndex).then(data => { store.dispatch({ type: 'REORDER_FOLDER', storage: data.storage }) this.setState() }) } } render() { const StyledFolderList = CSSModules(FolderList, this.props.styles) const SortableFolderList = SortableContainer(StyledFolderList) return ( ) } } export default CSSModules(SortableFolderListComponent, styles) ================================================ FILE: browser/main/modals/PreferencesModal/FolderList.styl ================================================ ================================================ FILE: browser/main/modals/PreferencesModal/HotkeyTab.js ================================================ import PropTypes from 'prop-types' import React from 'react' import CSSModules from 'browser/lib/CSSModules' import styles from './ConfigTab.styl' import ConfigManager from 'browser/main/lib/ConfigManager' import { store } from 'browser/main/store' import _ from 'lodash' import i18n from 'browser/lib/i18n' const electron = require('electron') const ipc = electron.ipcRenderer class HotkeyTab extends React.Component { constructor(props) { super(props) this.state = { isHotkeyHintOpen: false, config: props.config } } componentDidMount() { this.handleSettingDone = () => { this.setState({ keymapAlert: { type: 'success', message: i18n.__('Successfully applied!') } }) } this.handleSettingError = err => { if ( this.state.config.hotkey.toggleMain === '' || this.state.config.hotkey.toggleMode === '' || this.state.config.hotkey.toggleDirection === '' ) { this.setState({ keymapAlert: { type: 'success', message: i18n.__('Successfully applied!') } }) } else { this.setState({ keymapAlert: { type: 'error', message: err.message != null ? err.message : i18n.__('An error occurred!') } }) } } this.oldHotkey = this.state.config.hotkey ipc.addListener('APP_SETTING_DONE', this.handleSettingDone) ipc.addListener('APP_SETTING_ERROR', this.handleSettingError) } componentWillUnmount() { ipc.removeListener('APP_SETTING_DONE', this.handleSettingDone) ipc.removeListener('APP_SETTING_ERROR', this.handleSettingError) } handleSaveButtonClick(e) { const newConfig = { hotkey: this.state.config.hotkey } ConfigManager.set(newConfig) store.dispatch({ type: 'SET_UI', config: newConfig }) this.clearMessage() this.props.haveToSave() } handleHintToggleButtonClick(e) { this.setState({ isHotkeyHintOpen: !this.state.isHotkeyHintOpen }) } handleHotkeyChange(e) { const { config } = this.state config.hotkey = Object.assign({}, config.hotkey, { toggleMain: this.refs.toggleMain.value, toggleMode: this.refs.toggleMode.value, toggleDirection: this.refs.toggleDirection.value, deleteNote: this.refs.deleteNote.value, pasteSmartly: this.refs.pasteSmartly.value, prettifyMarkdown: this.refs.prettifyMarkdown.value, toggleMenuBar: this.refs.toggleMenuBar.value, insertDate: this.refs.insertDate.value, insertDateTime: this.refs.insertDateTime.value }) this.setState({ config }) if (_.isEqual(this.oldHotkey, config.hotkey)) { this.props.haveToSave() } else { this.props.haveToSave({ tab: 'Hotkey', type: 'warning', message: i18n.__('Unsaved Changes!') }) } } clearMessage() { _.debounce(() => { this.setState({ keymapAlert: null }) }, 2000)() } render() { const keymapAlert = this.state.keymapAlert const keymapAlertElement = keymapAlert != null ? (

{keymapAlert.message}

) : null const { config } = this.state return (
{i18n.__('Hotkeys')}
{i18n.__('Show/Hide Boostnote')}
this.handleHotkeyChange(e)} ref='toggleMain' value={config.hotkey.toggleMain} type='text' />
{i18n.__('Show/Hide Menu Bar')}
this.handleHotkeyChange(e)} ref='toggleMenuBar' value={config.hotkey.toggleMenuBar} type='text' />
{i18n.__('Toggle Editor Mode')}
this.handleHotkeyChange(e)} ref='toggleMode' value={config.hotkey.toggleMode} type='text' />
{i18n.__('Toggle Direction')}
this.handleHotkeyChange(e)} ref='toggleDirection' value={config.hotkey.toggleDirection} type='text' />
{i18n.__('Delete Note')}
this.handleHotkeyChange(e)} ref='deleteNote' value={config.hotkey.deleteNote} type='text' />
{i18n.__('Paste HTML')}
this.handleHotkeyChange(e)} ref='pasteSmartly' value={config.hotkey.pasteSmartly} type='text' />
{i18n.__('Prettify Markdown')}
this.handleHotkeyChange(e)} ref='prettifyMarkdown' value={config.hotkey.prettifyMarkdown} type='text' />
{i18n.__('Insert Current Date')}
{i18n.__('Insert Current Date and Time')}
{keymapAlertElement}
{this.state.isHotkeyHintOpen && (

{i18n.__('Available Keys')}

  • 0 to 9
  • A to Z
  • F1 to F24
  • Punctuations like ~, !,{' '} @, #, $, etc.
  • Plus
  • Space
  • Backspace
  • Delete
  • Insert
  • Return (or Enter as alias)
  • Up, Down, Left and{' '} Right
  • Home and End
  • PageUp and PageDown
  • Escape (or Esc for short)
  • VolumeUp, VolumeDown and{' '} VolumeMute
  • MediaNextTrack, MediaPreviousTrack,{' '} MediaStop and MediaPlayPause
  • Control (or Ctrl for short)
  • Shift
)}
) } } HotkeyTab.propTypes = { dispatch: PropTypes.func, haveToSave: PropTypes.func } export default CSSModules(HotkeyTab, styles) ================================================ FILE: browser/main/modals/PreferencesModal/InfoTab.js ================================================ import React from 'react' import CSSModules from 'browser/lib/CSSModules' import styles from './InfoTab.styl' import ConfigManager from 'browser/main/lib/ConfigManager' import { store } from 'browser/main/store' import AwsMobileAnalyticsConfig from 'browser/main/lib/AwsMobileAnalyticsConfig' import _ from 'lodash' import i18n from 'browser/lib/i18n' const electron = require('electron') const { shell, remote } = electron const appVersion = remote.app.getVersion() class InfoTab extends React.Component { constructor(props) { super(props) this.state = { config: this.props.config, subscriptionFormStatus: 'idle', subscriptionFormErrorMessage: null, subscriptionFormEmail: '' } } componentDidMount() { const { autoUpdateEnabled, amaEnabled } = ConfigManager.get() this.setState({ config: { autoUpdateEnabled, amaEnabled } }) } handleLinkClick(e) { shell.openExternal(e.currentTarget.href) e.preventDefault() } handleConfigChange(e) { const newConfig = { amaEnabled: this.refs.amaEnabled.checked, autoUpdateEnabled: this.refs.autoUpdateEnabled.checked } this.setState({ config: newConfig }) return newConfig } handleSubscriptionFormSubmit(e) { e.preventDefault() this.setState({ subscriptionFormStatus: 'sending', subscriptionFormErrorMessage: null }) fetch( 'https://boostmails.boostio.co/api/public/lists/5f434dccd05f3160b41c0d49/subscriptions', { headers: { Accept: 'application/json', 'Content-Type': 'application/json' }, method: 'POST', body: JSON.stringify({ email: this.state.subscriptionFormEmail }) } ) .then(response => { if (response.status >= 400) { return response.text().then(text => { throw new Error(text) }) } this.setState({ subscriptionFormStatus: 'done' }) }) .catch(error => { this.setState({ subscriptionFormStatus: 'idle', subscriptionFormErrorMessage: error.message }) }) } handleSubscriptionFormEmailChange(e) { this.setState({ subscriptionFormEmail: e.target.value }) } handleSaveButtonClick(e) { const newConfig = this.state.config if (!newConfig.amaEnabled) { AwsMobileAnalyticsConfig.recordDynamicCustomEvent('DISABLE_AMA') this.setState({ amaMessage: i18n.__('We hope we will gain your trust') }) } else { this.setState({ amaMessage: i18n.__("Thank's for trusting us") }) } _.debounce(() => { this.setState({ amaMessage: '' }) }, 3000)() ConfigManager.set(newConfig) store.dispatch({ type: 'SET_CONFIG', config: newConfig }) } infoMessage() { const { amaMessage } = this.state return amaMessage ?

{amaMessage}

: null } handleAutoUpdateChange() { const { autoUpdateEnabled } = this.handleConfigChange() ConfigManager.set({ autoUpdateEnabled }) } render() { return (
{i18n.__('Community')}

Subscribe Update Notes
{this.state.subscriptionFormStatus === 'done' ? (
Thanks for the subscription!
) : (
{this.state.subscriptionFormErrorMessage != null && (
{this.state.subscriptionFormErrorMessage}
)}
this.handleSubscriptionFormSubmit(e)}> this.handleSubscriptionFormEmailChange(e)} disabled={this.state.subscriptionFormStatus === 'sending'} />
)}
{i18n.__('About')}
Boostnote Legacy {appVersion}
{i18n.__( 'An open source note-taking app made for programmers just like you.' )}

{i18n.__('Analytics')}
{i18n.__( 'Boostnote collects anonymous data for the sole purpose of improving the application, and strictly does not collect any personal information such the contents of your notes.' )}
{i18n.__('You can see how it works on ')} this.handleLinkClick(e)} > GitHub .

{i18n.__('You can choose to enable or disable this option.')}
this.handleConfigChange(e)} checked={this.state.config.amaEnabled} ref='amaEnabled' type='checkbox' /> {i18n.__('Enable analytics to help improve Boostnote')}

{this.infoMessage()}
) } } InfoTab.propTypes = {} export default CSSModules(InfoTab, styles) ================================================ FILE: browser/main/modals/PreferencesModal/InfoTab.styl ================================================ @import('./ConfigTab.styl') .icon-space margin 20px 0 height 100px .icon display inline-block vertical-align middle .icon-right display inline-block vertical-align middle margin-left 20px .appId font-size 24px margin-bottom 13px .description font-size 14px .list list-style square padding-left 2em li white-space normal padding-bottom 10px a color #4E8EC6 text-decoration none .separate-line margin 40px 0 .subscription-email-input height 35px vertical-align middle width 200px font-size $tab--button-font-size border solid 1px $border-color border-radius 2px padding 0 5px margin-right 5px outline none &:disabled background-color $ui-input--disabled-backgroundColor .subscription-submit-button margin-top 10px height 35px border-radius 2px border none background-color alpha(#1EC38B, 90%) padding-left 20px padding-right 20px text-decoration none color white font-weight 600 font-size 16px &:hover background-color #1EC38B transition 0.2s .policy-submit margin-top 10px height 35px border-radius 2px border none background-color alpha(#1EC38B, 90%) padding-left 20px padding-right 20px text-decoration none color white font-weight 600 font-size 16px &:hover background-color #1EC38B transition 0.2s .policy-confirm margin-top 10px font-size 12px body[data-theme="dark"] .root color alpha($tab--dark-text-color, 80%) .appId color $ui-dark-text-color apply-theme(theme) body[data-theme={theme}] .root color get-theme-var(theme, 'text-color') .appId color get-theme-var(theme, 'text-color') .list a color get-theme-var(theme, 'active-color') for theme in 'solarized-dark' 'dracula' apply-theme(theme) for theme in $themes apply-theme(theme) ================================================ FILE: browser/main/modals/PreferencesModal/PluginsTab.js ================================================ import PropTypes from 'prop-types' import React from 'react' import CSSModules from 'browser/lib/CSSModules' import styles from './ConfigTab.styl' import ConfigManager from 'browser/main/lib/ConfigManager' import { store } from 'browser/main/store' import _ from 'lodash' import i18n from 'browser/lib/i18n' import { sync as commandExists } from 'command-exists' const electron = require('electron') const ipc = electron.ipcRenderer const { remote } = electron const { dialog } = remote class PluginsTab extends React.Component { constructor(props) { super(props) this.state = { config: props.config } } componentDidMount() { this.handleSettingDone = () => { this.setState({ pluginsAlert: { type: 'success', message: i18n.__('Successfully applied!') } }) } this.handleSettingError = err => { this.setState({ pluginsAlert: { type: 'error', message: err.message != null ? err.message : i18n.__('An error occurred!') } }) } this.oldWakatimeConfig = this.state.config.wakatime ipc.addListener('APP_SETTING_DONE', this.handleSettingDone) ipc.addListener('APP_SETTING_ERROR', this.handleSettingError) } componentWillUnmount() { ipc.removeListener('APP_SETTING_DONE', this.handleSettingDone) ipc.removeListener('APP_SETTING_ERROR', this.handleSettingError) } checkWakatimePluginRequirement() { const { wakatime } = this.state.config if (wakatime.isActive && !commandExists('wakatime')) { this.setState({ wakatimePluginAlert: { type: i18n.__('Warning'), message: i18n.__('Missing wakatime cli') } }) const alertConfig = { type: 'warning', message: i18n.__('Missing Wakatime CLI'), detail: i18n.__( `Please install Wakatime CLI to use Wakatime tracker feature.` ), buttons: [i18n.__('OK')] } dialog.showMessageBox(remote.getCurrentWindow(), alertConfig) } else { this.setState({ wakatimePluginAlert: null }) } } handleSaveButtonClick(e) { const newConfig = { wakatime: { isActive: this.state.config.wakatime.isActive, key: this.state.config.wakatime.key } } ConfigManager.set(newConfig) store.dispatch({ type: 'SET_CONFIG', config: newConfig }) this.clearMessage() this.props.haveToSave() this.checkWakatimePluginRequirement() } handleIsWakatimePluginActiveChange(e) { const { config } = this.state config.wakatime.isActive = !config.wakatime.isActive this.setState({ config }) if (_.isEqual(this.oldWakatimeConfig.isActive, config.wakatime.isActive)) { this.props.haveToSave() } else { this.props.haveToSave({ tab: 'Plugins', type: 'warning', message: i18n.__('Unsaved Changes!') }) } } handleWakatimeKeyChange(e) { const { config } = this.state config.wakatime = { isActive: true, key: this.refs.wakatimeKey.value } this.setState({ config }) if (_.isEqual(this.oldWakatimeConfig.key, config.wakatime.key)) { this.props.haveToSave() } else { this.props.haveToSave({ tab: 'Plugins', type: 'warning', message: i18n.__('Unsaved Changes!') }) } } clearMessage() { _.debounce(() => { this.setState({ pluginsAlert: null }) }, 2000)() } render() { const pluginsAlert = this.state.pluginsAlert const pluginsAlertElement = pluginsAlert != null ? (

{pluginsAlert.message}

) : null const wakatimeAlert = this.state.wakatimePluginAlert const wakatimePluginAlertElement = wakatimeAlert != null ? (

{wakatimeAlert.message}

) : null const { config } = this.state return (
{i18n.__('Plugins')}
{i18n.__('Wakatime')}
{i18n.__('Wakatime key')}
this.handleWakatimeKeyChange(e)} disabled={!config.wakatime.isActive} ref='wakatimeKey' value={config.wakatime.key} type='text' /> {wakatimePluginAlertElement}
{pluginsAlertElement}
) } } PluginsTab.propTypes = { dispatch: PropTypes.func, haveToSave: PropTypes.func } export default CSSModules(PluginsTab, styles) ================================================ FILE: browser/main/modals/PreferencesModal/PreferencesModal.styl ================================================ @import('./Tab') top-bar--height = 50px .root modal() max-width 100vw min-height 100vh height 100vh width 100vw overflow hidden position relative .top-bar absolute top left right height top-bar--height background-color $ui-backgroundColor border-bottom solid 1px $ui-borderColor p text-align center font-size 18px line-height top-bar--height .nav absolute top left right top top-bar--height left 0 width 170px margin-left 10px margin-top 20px background-color $ui-backgroundColor .nav-button font-size 14px text-align left width 150px margin 5px 0 padding 7px 0 padding-left 10px border none border-radius 2px background-color transparent color $ui-text-color font-size 16px .saving--warning haveToSave() .nav-button--active @extend .nav-button color $ui-text-color background-color $ui-button--active-backgroundColor &:hover color $ui-text-color .saving--warning haveToSave() .nav-button-icon display block .content absolute left right bottom top top-bar--height left 170px margin-top 10px overflow-y auto apply-theme(theme) body[data-theme={theme}] .root background-color transparent .top-bar background-color transparent border-color get-theme-var(theme, 'borderColor') p color get-theme-var(theme, 'text-color') .nav background-color transparent border-color get-theme-var(theme, 'borderColor') .nav-button background-color transparent color get-theme-var(theme, 'text-color') &:hover color get-theme-var(theme, 'text-color') .nav-button--active @extend .nav-button color get-theme-var(theme, 'button--active-color') background-color get-theme-var(theme, 'button--active-backgroundColor') for theme in 'dark' 'solarized-dark' 'dracula' apply-theme(theme) for theme in $themes apply-theme(theme) ================================================ FILE: browser/main/modals/PreferencesModal/SnippetEditor.js ================================================ import CodeMirror from 'codemirror' import React from 'react' import _ from 'lodash' import styles from './SnippetTab.styl' import CSSModules from 'browser/lib/CSSModules' import dataApi from 'browser/main/lib/dataApi' import snippetManager from '../../../lib/SnippetManager' const defaultEditorFontFamily = [ 'Monaco', 'Menlo', 'Ubuntu Mono', 'Consolas', 'source-code-pro', 'monospace' ] const buildCMRulers = (rulers, enableRulers) => enableRulers ? rulers.map(ruler => ({ column: ruler })) : [] class SnippetEditor extends React.Component { componentDidMount() { this.props.onRef(this) const { rulers, enableRulers } = this.props this.cm = CodeMirror(this.refs.root, { rulers: buildCMRulers(rulers, enableRulers), lineNumbers: this.props.displayLineNumbers, lineWrapping: true, theme: this.props.theme, indentUnit: this.props.indentSize, tabSize: this.props.indentSize, indentWithTabs: this.props.indentType !== 'space', keyMap: this.props.keyMap, scrollPastEnd: this.props.scrollPastEnd, dragDrop: false, foldGutter: true, gutters: ['CodeMirror-linenumbers', 'CodeMirror-foldgutter'], autoCloseBrackets: { codeBlock: { pairs: this.props.codeBlockMatchingPairs, closeBefore: this.props.codeBlockMatchingCloseBefore, triples: this.props.codeBlockMatchingTriples, explode: this.props.codeBlockExplodingPairs }, markdown: { pairs: this.props.matchingPairs, closeBefore: this.props.matchingCloseBefore, triples: this.props.matchingTriples, explode: this.props.explodingPairs } }, mode: 'null' }) this.cm.setSize('100%', '100%') let changeDelay = null this.cm.on('change', () => { this.snippet.content = this.cm.getValue() clearTimeout(changeDelay) changeDelay = setTimeout(() => { this.saveSnippet() }, 500) }) } componentWillUnmount() { this.props.onRef(undefined) } onSnippetChanged(newSnippet) { this.snippet = newSnippet this.cm.setValue(this.snippet.content) } onSnippetNameOrPrefixChanged(newSnippet) { this.snippet.name = newSnippet.name this.snippet.prefix = newSnippet.prefix .toString() .replace(/\s/g, '') .split(',') this.saveSnippet() } saveSnippet() { dataApi .updateSnippet(this.snippet) .then(snippets => snippetManager.assignSnippets(snippets)) .catch(err => { throw err }) } render() { const { fontSize } = this.props let fontFamily = this.props.fontFamily fontFamily = _.isString(fontFamily) && fontFamily.length > 0 ? [fontFamily].concat(defaultEditorFontFamily) : defaultEditorFontFamily return (
) } } SnippetEditor.defaultProps = { readOnly: false, theme: 'xcode', keyMap: 'sublime', fontSize: 14, fontFamily: 'Monaco, Consolas', indentSize: 4, indentType: 'space' } export default CSSModules(SnippetEditor, styles) ================================================ FILE: browser/main/modals/PreferencesModal/SnippetList.js ================================================ import React from 'react' import styles from './SnippetTab.styl' import CSSModules from 'browser/lib/CSSModules' import dataApi from 'browser/main/lib/dataApi' import i18n from 'browser/lib/i18n' import eventEmitter from 'browser/main/lib/eventEmitter' import context from 'browser/lib/context' class SnippetList extends React.Component { constructor(props) { super(props) this.state = { snippets: [] } } componentDidMount() { this.reloadSnippetList() eventEmitter.on('snippetList:reload', this.reloadSnippetList.bind(this)) } reloadSnippetList() { dataApi.fetchSnippet().then(snippets => { this.setState({ snippets }) this.props.onSnippetSelect(this.props.currentSnippet) }) } handleSnippetContextMenu(snippet) { context.popup([ { label: i18n.__('Delete snippet'), click: () => this.deleteSnippet(snippet) } ]) } deleteSnippet(snippet) { dataApi .deleteSnippet(snippet) .then(() => { this.reloadSnippetList() this.props.onSnippetDeleted(snippet) }) .catch(err => { throw err }) } handleSnippetClick(snippet) { this.props.onSnippetSelect(snippet) } createSnippet() { dataApi .createSnippet() .then(() => { this.reloadSnippetList() // scroll to end of list when added new snippet const snippetList = document.getElementById('snippets') snippetList.scrollTop = snippetList.scrollHeight }) .catch(err => { throw err }) } defineSnippetStyleName(snippet) { const { currentSnippet } = this.props if (currentSnippet == null) { return 'snippet-item' } if (currentSnippet.id === snippet.id) { return 'snippet-item-selected' } else { return 'snippet-item' } } render() { const { snippets } = this.state return (
    {snippets.map(snippet => (
  • this.handleSnippetContextMenu(snippet)} onClick={() => this.handleSnippetClick(snippet)} > {snippet.name}
  • ))}
) } } export default CSSModules(SnippetList, styles) ================================================ FILE: browser/main/modals/PreferencesModal/SnippetTab.js ================================================ import React from 'react' import CSSModules from 'browser/lib/CSSModules' import styles from './SnippetTab.styl' import SnippetEditor from './SnippetEditor' import i18n from 'browser/lib/i18n' import dataApi from 'browser/main/lib/dataApi' import SnippetList from './SnippetList' import eventEmitter from 'browser/main/lib/eventEmitter' import copy from 'copy-to-clipboard' const path = require('path') class SnippetTab extends React.Component { constructor(props) { super(props) this.state = { currentSnippet: null } this.changeDelay = null } notify(title, options) { if (global.process.platform === 'win32') { options.icon = path.join( 'file://', global.__dirname, '../../resources/app.png' ) } return new window.Notification(title, options) } handleSnippetNameOrPrefixChange() { clearTimeout(this.changeDelay) this.changeDelay = setTimeout(() => { // notify the snippet editor that the name or prefix of snippet has been changed this.snippetEditor.onSnippetNameOrPrefixChanged(this.state.currentSnippet) eventEmitter.emit('snippetList:reload') }, 500) } handleSnippetSelect(snippet) { const { currentSnippet } = this.state if (snippet !== null) { if (currentSnippet === null || currentSnippet.id !== snippet.id) { dataApi.fetchSnippet(snippet.id).then(changedSnippet => { // notify the snippet editor to load the content of the new snippet this.snippetEditor.onSnippetChanged(changedSnippet) this.setState({ currentSnippet: changedSnippet }) }) } } } onSnippetNameOrPrefixChanged(e, type) { const newSnippet = Object.assign({}, this.state.currentSnippet) if (type === 'name') { newSnippet.name = e.target.value } else { newSnippet.prefix = e.target.value } this.setState({ currentSnippet: newSnippet }) this.handleSnippetNameOrPrefixChange() } handleDeleteSnippet(snippet) { // prevent old snippet still display when deleted if (snippet.id === this.state.currentSnippet.id) { this.setState({ currentSnippet: null }) } } handleCopySnippet(e) { const showCopyNotification = this.props.config.ui.showCopyNotification copy(this.state.currentSnippet.content) if (showCopyNotification) { this.notify('Saved to Clipboard!', { body: 'Paste it wherever you want!', silent: true }) } } render() { const { config, storageKey } = this.props const { currentSnippet } = this.state let editorFontSize = parseInt(config.editor.fontSize, 10) if (!(editorFontSize > 0 && editorFontSize < 101)) editorFontSize = 14 let editorIndentSize = parseInt(config.editor.indentSize, 10) if (!(editorFontSize > 0 && editorFontSize < 132)) editorIndentSize = 4 return (
{i18n.__('Snippets')}
{i18n.__('Snippet name')}
{ this.onSnippetNameOrPrefixChanged(e, 'name') }} type='text' />
{i18n.__('Snippet prefix')}
{ this.onSnippetNameOrPrefixChanged(e, 'prefix') }} type='text' />
{ this.snippetEditor = ref }} />
) } } SnippetTab.PropTypes = {} export default CSSModules(SnippetTab, styles) ================================================ FILE: browser/main/modals/PreferencesModal/SnippetTab.styl ================================================ @import('./ConfigTab') .group margin-bottom 45px .group-header @extend .header color $ui-text-color .group-header2 font-size 20px color $ui-text-color margin-bottom 15px margin-top 30px .group-section margin-bottom 20px display flex line-height 30px .group-section-label width 150px text-align left margin-right 10px font-size 14px .group-section-control flex 1 margin-left 5px .group-section-control select outline none border 1px solid $ui-borderColor font-size 16px height 30px width 250px margin-bottom 5px background-color transparent .group-section-control-input height 30px vertical-align middle width 400px font-size $tab--button-font-size border solid 1px $border-color border-radius 2px padding 0 5px outline none &:disabled background-color $ui-input--disabled-backgroundColor .group-control-button height 30px border none border-top-right-radius 2px border-bottom-right-radius 2px colorPrimaryButton() vertical-align middle padding 0 20px .group-checkBoxSection margin-bottom 15px display flex line-height 30px padding-left 15px .group-control padding-top 10px box-sizing border-box height 40px text-align right :global .alert display inline-block position absolute top 60px right 15px font-size 14px .success color #1EC38B .error color red .warning color #FFA500 .snippet-list width 30% height calc(100% - 200px) position absolute .snippets height calc(100% - 8px) overflow scroll background: #f5f5f5 .snippet-item height 50px font-size 15px line-height 50px padding 0 5% cursor pointer position relative &::after width 90% height 1px background rgba(0, 0, 0, 0.1) position absolute top 100% left 5% content '' &:hover background darken(#f5f5f5, 5) .snippet-item-selected @extend .snippet-list .snippet-item background darken(#f5f5f5, 5) .snippet-detail width 67% height calc(100% - 200px) position absolute left 33% .SnippetEditor position absolute width 100% height 90% body[data-theme="default"], body[data-theme="white"] .snippets background $ui-backgroundColor .snippet-item color black &::after background $ui-borderColor &:hover background darken($ui-backgroundColor, 5) .snippet-item-selected background darken($ui-backgroundColor, 5) apply-theme(theme) body[data-theme={theme}] .snippets background get-theme-var(theme, 'backgroundColor') .snippet-item color get-theme-var(theme, 'text-color') &::after background get-theme-var(theme, 'borderColor') &:hover background darken(get-theme-var(theme, 'backgroundColor'), 5) .snippet-item-selected background darken(get-theme-var(theme, 'backgroundColor'), 5) .snippet-detail color get-theme-var(theme, 'text-color') .group-control-button colorThemedPrimaryButton(theme) for theme in 'dark' 'solarized-dark' 'dracula' apply-theme(theme) for theme in $themes apply-theme(theme) ================================================ FILE: browser/main/modals/PreferencesModal/StorageItem.js ================================================ import PropTypes from 'prop-types' import React from 'react' import CSSModules from 'browser/lib/CSSModules' import styles from './StorageItem.styl' import consts from 'browser/lib/consts' import dataApi from 'browser/main/lib/dataApi' import { store } from 'browser/main/store' import FolderList from './FolderList' import i18n from 'browser/lib/i18n' const { shell, remote } = require('electron') const { dialog } = remote class StorageItem extends React.Component { constructor(props) { super(props) this.state = { isLabelEditing: false } } handleNewFolderButtonClick(e) { const { storage } = this.props const input = { name: i18n.__('New Folder'), color: consts.FOLDER_COLORS[Math.floor(Math.random() * 7) % 7] } dataApi .createFolder(storage.key, input) .then(data => { store.dispatch({ type: 'UPDATE_FOLDER', storage: data.storage }) }) .catch(err => { console.error(err) }) } handleExternalButtonClick() { const { storage } = this.props shell.showItemInFolder(storage.path) } handleUnlinkButtonClick(e) { const index = dialog.showMessageBox(remote.getCurrentWindow(), { type: 'warning', message: i18n.__('Unlink Storage'), detail: i18n.__( 'Unlinking removes this linked storage from Boostnote. No data is removed, please manually delete the folder from your hard drive if needed.' ), buttons: [i18n.__('Unlink'), i18n.__('Cancel')] }) if (index === 0) { const { storage } = this.props dataApi .removeStorage(storage.key) .then(() => { store.dispatch({ type: 'REMOVE_STORAGE', storageKey: storage.key }) }) .catch(err => { throw err }) } } handleLabelClick(e) { const { storage } = this.props this.setState( { isLabelEditing: true, name: storage.name }, () => { this.refs.label.focus() } ) } handleLabelChange(e) { this.setState({ name: this.refs.label.value }) } handleLabelBlur(e) { const { storage } = this.props dataApi.renameStorage(storage.key, this.state.name).then(_storage => { store.dispatch({ type: 'RENAME_STORAGE', storage: _storage }) this.setState({ isLabelEditing: false }) }) } render() { const { storage, hostBoundingBox } = this.props return (
{this.state.isLabelEditing ? (
this.handleLabelChange(e)} onBlur={e => this.handleLabelBlur(e)} />
) : (
this.handleLabelClick(e)} >   {storage.name}  ({storage.path}) 
)}
) } } StorageItem.propTypes = { hostBoundingBox: PropTypes.shape({ bottom: PropTypes.number, height: PropTypes.number, left: PropTypes.number, right: PropTypes.number, top: PropTypes.number, width: PropTypes.number }), storage: PropTypes.shape({ key: PropTypes.string }) } export default CSSModules(StorageItem, styles) ================================================ FILE: browser/main/modals/PreferencesModal/StorageItem.styl ================================================ .root position relative margin-bottom 15px .header height 35px line-height 30px padding 0 10px 5px box-sizing border-box border-bottom $default-border margin-bottom 5px display flex .header-label cursor pointer &:hover .header-label-editButton opacity 1 flex 1 white-space nowrap text-overflow ellipsis overflow hidden .header-label-path color $ui-inactive-text-color font-size 10px margin 0 5px .header-label-editButton color $ui-text-color opacity 0 transition 0.2s .header-label--edit @extend .header-label .header-label-input height 25px box-sizing border-box vertical-align middle border $ui-border border-radius 2px padding 0 5px outline none .header-control -webkit-box-flex: 1 white-space nowrap .header-control-button width 30px height 25px colorDefaultButton() border-radius 2px border $ui-border margin-right 5px position relative &:last-child margin-right 0 &:hover .header-control-button-tooltip opacity 1 .header-control-button-tooltip tooltip() position absolute opacity 0 padding 5px top 25px z-index 10 white-space nowrap body[data-theme="dark"] .header border-color $ui-dark-borderColor .header-label-path color $ui-dark-inactive-text-color .header-label-editButton color $ui-dark-text-color .header-control-button colorDarkDefaultButton() border-color $ui-dark-borderColor .header-control-button-tooltip tooltip() position absolute opacity 0 padding 5px top 25px z-index 10 white-space nowrap body[data-theme="solarized-dark"] .header border-color $ui-solarized-dark-button-backgroundColor .header-label-path color $ui-solarized-dark-text-color .header-label-editButton color $ui-solarized-dark-text-color .header-control-button border-color $ui-solarized-dark-button-backgroundColor background-color $ui-solarized-dark-button-backgroundColor color $ui-solarized-dark-text-color apply-theme(theme) body[data-theme={theme}] .header border-color get-theme-var(theme, 'borderColor') .header-control-button colorThemedPrimaryButton(theme) border-color get-theme-var(theme, 'borderColor') for theme in 'dracula' apply-theme(theme) for theme in $themes apply-theme(theme) ================================================ FILE: browser/main/modals/PreferencesModal/StoragesTab.js ================================================ import PropTypes from 'prop-types' import React from 'react' import CSSModules from 'browser/lib/CSSModules' import styles from './StoragesTab.styl' import dataApi from 'browser/main/lib/dataApi' import attachmentManagement from 'browser/main/lib/dataApi/attachmentManagement' import StorageItem from './StorageItem' import i18n from 'browser/lib/i18n' import { humanFileSize } from 'browser/lib/utils' import fs from 'fs' const electron = require('electron') const { shell, remote } = electron function browseFolder() { const dialog = remote.dialog const defaultPath = remote.app.getPath('home') return new Promise((resolve, reject) => { dialog.showOpenDialog( { title: i18n.__('Select Directory'), defaultPath, properties: ['openDirectory', 'createDirectory'] }, function(targetPaths) { if (targetPaths == null) return resolve('') resolve(targetPaths[0]) } ) }) } class StoragesTab extends React.Component { constructor(props) { super(props) this.state = { page: 'LIST', newStorage: { name: 'Unnamed', type: 'FILESYSTEM', path: '' }, attachments: [] } this.loadAttachmentStorage() } loadAttachmentStorage() { const promises = [] this.props.data.noteMap.map(note => { const promise = attachmentManagement.getAttachmentsPathAndStatus( note.content, note.storage, note.key ) if (promise) promises.push(promise) }) Promise.all(promises) .then(data => { const result = data.reduce((acc, curr) => acc.concat(curr), []) this.setState({ attachments: result }) }) .catch(console.error) } handleAddStorageButton(e) { this.setState( { page: 'ADD_STORAGE', newStorage: { name: 'Unnamed', type: 'FILESYSTEM', path: '' } }, () => { this.refs.addStorageName.select() } ) } handleLinkClick(e) { shell.openExternal(e.currentTarget.href) e.preventDefault() } handleRemoveUnusedAttachments(attachments) { attachmentManagement .removeAttachmentsByPaths(attachments) .then(() => this.loadAttachmentStorage()) .catch(console.error) } renderList() { const { data, boundingBox } = this.props const { attachments } = this.state const unusedAttachments = attachments.filter( attachment => !attachment.isInUse ) const inUseAttachments = attachments.filter( attachment => attachment.isInUse ) const totalUnusedAttachments = unusedAttachments.length const totalInuseAttachments = inUseAttachments.length const totalAttachments = totalUnusedAttachments + totalInuseAttachments const totalUnusedAttachmentsSize = unusedAttachments.reduce((acc, curr) => { const stats = fs.statSync(curr.path) const fileSizeInBytes = stats.size return acc + fileSizeInBytes }, 0) const totalInuseAttachmentsSize = inUseAttachments.reduce((acc, curr) => { const stats = fs.statSync(curr.path) const fileSizeInBytes = stats.size return acc + fileSizeInBytes }, 0) const totalAttachmentsSize = totalUnusedAttachmentsSize + totalInuseAttachmentsSize const unusedAttachmentPaths = unusedAttachments.reduce( (acc, curr) => acc.concat(curr.path), [] ) if (!boundingBox) { return null } const storageList = data.storageMap.map(storage => { return ( ) }) return (
{i18n.__('Storage Locations')}
{storageList.length > 0 ? ( storageList ) : (
{i18n.__('No storage found.')}
)}
{i18n.__('Attachment storage')}

Unused attachments size: {humanFileSize(totalUnusedAttachmentsSize)} ( {totalUnusedAttachments} items)

In use attachments size: {humanFileSize(totalInuseAttachmentsSize)} ( {totalInuseAttachments} items)

Total attachments size: {humanFileSize(totalAttachmentsSize)} ( {totalAttachments} items)

) } handleAddStorageBrowseButtonClick(e) { browseFolder() .then(targetPath => { if (targetPath.length > 0) { const { newStorage } = this.state newStorage.path = targetPath this.setState({ newStorage }) } }) .catch(err => { console.error('BrowseFAILED') console.error(err) }) } handleAddStorageChange(e) { const { newStorage } = this.state newStorage.name = this.refs.addStorageName.value newStorage.path = this.refs.addStoragePath.value this.setState({ newStorage }) } handleAddStorageCreateButton(e) { dataApi .addStorage({ name: this.state.newStorage.name, path: this.state.newStorage.path }) .then(data => { const { dispatch } = this.props dispatch({ type: 'ADD_STORAGE', storage: data.storage, notes: data.notes }) this.setState({ page: 'LIST' }) }) } handleAddStorageCancelButton(e) { this.setState({ page: 'LIST' }) } renderAddStorage() { return (
{i18n.__('Add Storage')}
{i18n.__('Name')}
this.handleAddStorageChange(e)} />
{i18n.__('Type')}
{i18n.__('Setting up 3rd-party cloud storage integration:')}{' '} this.handleLinkClick(e)} > {i18n.__('Cloud-Syncing-and-Backup')}
{i18n.__('Location')}
this.handleAddStorageChange(e)} />
) } renderContent() { switch (this.state.page) { case 'ADD_STORAGE': case 'ADD_FOLDER': return this.renderAddStorage() case 'LIST': default: return this.renderList() } } render() { return
{this.renderContent()}
} } StoragesTab.propTypes = { boundingBox: PropTypes.shape({ bottom: PropTypes.number, height: PropTypes.number, left: PropTypes.number, right: PropTypes.number, top: PropTypes.number, width: PropTypes.number }), dispatch: PropTypes.func } export default CSSModules(StoragesTab, styles) ================================================ FILE: browser/main/modals/PreferencesModal/StoragesTab.styl ================================================ @import('./ConfigTab') .list margin-bottom 15px font-size 14px .folderList padding 0 15px .folderList-item height 30px line-height 30px border-bottom $ui-border .folderList-empty height 30px line-height 30px font-size 12px color $ui-inactive-text-color .list-empty height 30px color $ui-inactive-text-color .list-control height 30px .list-control-addStorageButton position absolute top 7px right 20px height $tab--button-height padding 0 15px border $ui-border colorDefaultButton() font-size $tab--button-font-size border-radius 2px .list-attachment-label margin-bottom 10px color $ui-text-color .list-attachement-clear-button height 30px border none border-top-right-radius 2px border-bottom-right-radius 2px colorPrimaryButton() vertical-align middle padding 0 20px .addStorage margin-bottom 15px .addStorage-header font-size 24px color $ui-text-color padding 5px border-bottom $default-border margin-bottom 15px .addStorage-body-section margin-bottom 15px display flex line-height 30px .addStorage-body-section-label width 150px text-align right margin-right 10px .addStorage-body-section-name flex 1 .addStorage-body-section-name-input height 30px vertical-align middle width 150px font-size 12px border solid 1px $border-color border-radius 2px padding 0 5px .addStorage-body-section-type flex 1 .addStorage-body-section-type-select height 30px .addStorage-body-section-type-description margin 5px font-size 12px color $ui-inactive-text-color line-height 16px .addStorage-body-section-path flex 1 .addStorage-body-section-path-input height 30px vertical-align middle width 150px font-size 12px border-style solid border-width 1px 0 1px 1px border-color $border-color border-top-left-radius 2px border-bottom-left-radius 2px padding 0 5px .addStorage-body-section-path-button height 30px border none border-top-right-radius 2px border-bottom-right-radius 2px colorPrimaryButton() vertical-align middle .addStorage-body-control border-top $default-border padding-top 10px box-sizing border-box height 40px text-align right .addStorage-body-control-createButton colorPrimaryButton() border none border-radius 2px height 30px padding 0 15px margin-right 5px .addStorage-body-control-cancelButton colorDefaultButton() border $default-border border-radius 2px height 30px padding 0 15px body[data-theme="dark"] .root padding 15px color $ui-dark-text-color .folderList-item border-bottom $ui-dark-border .folderList-empty color $ui-dark-inactive-text-color .list-empty color $ui-dark-inactive-text-color .list-control-addStorageButton border-color $ui-dark-borderColor colorDarkDefaultButton() border-radius 2px .addStorage-header color $ui-dark-text-color border-color $ui-dark-borderColor .addStorage-body-section-name-input border-color $ui-dark-borderColor .addStorage-body-section-type-description color $ui-dark-inactive-text-color .addStorage-body-section-path-button colorPrimaryButton() .addStorage-body-control border-color $ui-dark-borderColor .addStorage-body-control-createButton colorDarkPrimaryButton() .addStorage-body-control-cancelButton colorDarkDefaultButton() border-color $ui-dark-borderColor .list-attachement-clear-button colorDarkPrimaryButton() apply-theme(theme) body[data-theme={theme}] .root color get-theme-var(theme, 'text-color') .folderList-item border-bottom get-theme-var(theme, 'borderColor') .folderList-empty color get-theme-var(theme, 'text-color') .list-empty color get-theme-var(theme, 'text-color') .list-control-addStorageButton border-color get-theme-var(theme, 'button-backgroundColor') background-color get-theme-var(theme, 'button-backgroundColor') color get-theme-var(theme, 'text-color') .addStorage-header color get-theme-var(theme, 'text-color') border-color get-theme-var(theme, 'borderColor') .addStorage-body-section-name-input border-color $get-theme-var(theme, 'borderColor') .addStorage-body-section-type-description color get-theme-var(theme, 'text-color') .addStorage-body-section-path-button colorPrimaryButton() .addStorage-body-control border-color get-theme-var(theme, 'borderColor') .addStorage-body-control-createButton colorDarkPrimaryButton() .addStorage-body-control-cancelButton colorDarkDefaultButton() border-color get-theme-var(theme, 'borderColor') .list-attachement-clear-button colorThemedPrimaryButton(theme) for theme in 'solarized-dark' 'dracula' apply-theme(theme) for theme in $themes apply-theme(theme) ================================================ FILE: browser/main/modals/PreferencesModal/Tab.styl ================================================ /** * Common style for tabs on config modal. */ $tab--input-border-radius = 5px $tab--button-border-radius = 5px $tab--button-height = 40px $tab--button-font-size = 14px $tab--dark-text-color = #E5E5E5 .header font-size 36px margin-bottom 60px .header--sub font-size 36px margin-bottom 20px body[data-theme="dark"] .header color $tab--dark-text-color haveToSave() color #FFA500 font-size 10px margin-top 3px ================================================ FILE: browser/main/modals/PreferencesModal/UiTab.js ================================================ import PropTypes from 'prop-types' import React from 'react' import CSSModules from 'browser/lib/CSSModules' import styles from './ConfigTab.styl' import ConfigManager from 'browser/main/lib/ConfigManager' import { store } from 'browser/main/store' import consts from 'browser/lib/consts' import ReactCodeMirror from 'react-codemirror' import CodeMirror from 'codemirror' import 'codemirror-mode-elixir' import _ from 'lodash' import i18n from 'browser/lib/i18n' import { getLanguages } from 'browser/lib/Languages' import normalizeEditorFontFamily from 'browser/lib/normalizeEditorFontFamily' import uiThemes from 'browser/lib/ui-themes' import { chooseTheme, applyTheme } from 'browser/main/lib/ThemeManager' const OSX = global.process.platform === 'darwin' const electron = require('electron') const ipc = electron.ipcRenderer class UiTab extends React.Component { constructor(props) { super(props) this.state = { config: props.config, codemirrorTheme: props.config.editor.theme } } componentDidMount() { CodeMirror.autoLoadMode( this.codeMirrorInstance.getCodeMirror(), 'javascript' ) CodeMirror.autoLoadMode(this.customCSSCM.getCodeMirror(), 'css') CodeMirror.autoLoadMode( this.customMarkdownLintConfigCM.getCodeMirror(), 'javascript' ) CodeMirror.autoLoadMode(this.prettierConfigCM.getCodeMirror(), 'javascript') // Set CM editor Sizes this.customCSSCM.getCodeMirror().setSize('400px', '400px') this.prettierConfigCM.getCodeMirror().setSize('400px', '400px') this.customMarkdownLintConfigCM.getCodeMirror().setSize('400px', '200px') this.handleSettingDone = () => { this.setState({ UiAlert: { type: 'success', message: i18n.__('Successfully applied!') } }) } this.handleSettingError = err => { this.setState({ UiAlert: { type: 'error', message: err.message != null ? err.message : i18n.__('An error occurred!') } }) } ipc.addListener('APP_SETTING_DONE', this.handleSettingDone) ipc.addListener('APP_SETTING_ERROR', this.handleSettingError) } componentWillUnmount() { ipc.removeListener('APP_SETTING_DONE', this.handleSettingDone) ipc.removeListener('APP_SETTING_ERROR', this.handleSettingError) } handleUIChange(e) { const { codemirrorTheme } = this.state let checkHighLight = document.getElementById('checkHighLight') if (checkHighLight === null) { checkHighLight = document.createElement('link') checkHighLight.setAttribute('id', 'checkHighLight') checkHighLight.setAttribute('rel', 'stylesheet') document.head.appendChild(checkHighLight) } const newConfig = { ui: { theme: this.refs.uiTheme.value, defaultTheme: this.refs.uiTheme.value, enableScheduleTheme: this.refs.enableScheduleTheme.checked, scheduledTheme: this.refs.uiScheduledTheme.value, scheduleStart: this.refs.scheduleStart.value, scheduleEnd: this.refs.scheduleEnd.value, language: this.refs.uiLanguage.value, defaultNote: this.refs.defaultNote.value, tagNewNoteWithFilteringTags: this.refs.tagNewNoteWithFilteringTags .checked, showCopyNotification: this.refs.showCopyNotification.checked, confirmDeletion: this.refs.confirmDeletion.checked, showOnlyRelatedTags: this.refs.showOnlyRelatedTags.checked, showTagsAlphabetically: this.refs.showTagsAlphabetically.checked, saveTagsAlphabetically: this.refs.saveTagsAlphabetically.checked, enableLiveNoteCounts: this.refs.enableLiveNoteCounts.checked, showScrollBar: this.refs.showScrollBar.checked, showMenuBar: this.refs.showMenuBar.checked, disableDirectWrite: this.refs.uiD2w != null ? this.refs.uiD2w.checked : false }, editor: { theme: this.refs.editorTheme.value, fontSize: this.refs.editorFontSize.value, fontFamily: this.refs.editorFontFamily.value, indentType: this.refs.editorIndentType.value, indentSize: this.refs.editorIndentSize.value, enableRulers: this.refs.enableEditorRulers.value === 'true', rulers: this.refs.editorRulers.value.replace(/[^0-9,]/g, '').split(','), displayLineNumbers: this.refs.editorDisplayLineNumbers.checked, lineWrapping: this.refs.editorLineWrapping.checked, switchPreview: this.refs.editorSwitchPreview.value, keyMap: this.refs.editorKeyMap.value, snippetDefaultLanguage: this.refs.editorSnippetDefaultLanguage.value, scrollPastEnd: this.refs.scrollPastEnd.checked, fetchUrlTitle: this.refs.editorFetchUrlTitle.checked, enableTableEditor: this.refs.enableTableEditor.checked, enableFrontMatterTitle: this.refs.enableFrontMatterTitle.checked, frontMatterTitleField: this.refs.frontMatterTitleField.value, matchingPairs: this.refs.matchingPairs.value, matchingCloseBefore: this.refs.matchingCloseBefore.value, matchingTriples: this.refs.matchingTriples.value, explodingPairs: this.refs.explodingPairs.value, codeBlockMatchingPairs: this.refs.codeBlockMatchingPairs.value, codeBlockMatchingCloseBefore: this.refs.codeBlockMatchingCloseBefore .value, codeBlockMatchingTriples: this.refs.codeBlockMatchingTriples.value, codeBlockExplodingPairs: this.refs.codeBlockExplodingPairs.value, spellcheck: this.refs.spellcheck.checked, enableSmartPaste: this.refs.enableSmartPaste.checked, enableMarkdownLint: this.refs.enableMarkdownLint.checked, customMarkdownLintConfig: this.customMarkdownLintConfigCM .getCodeMirror() .getValue(), dateFormatISO8601: this.refs.dateFormatISO8601.checked, prettierConfig: this.prettierConfigCM.getCodeMirror().getValue(), deleteUnusedAttachments: this.refs.deleteUnusedAttachments.checked, rtlEnabled: this.refs.rtlEnabled.checked }, preview: { fontSize: this.refs.previewFontSize.value, fontFamily: this.refs.previewFontFamily.value, codeBlockTheme: this.refs.previewCodeBlockTheme.value, lineNumber: this.refs.previewLineNumber.checked, latexInlineOpen: this.refs.previewLatexInlineOpen.value, latexInlineClose: this.refs.previewLatexInlineClose.value, latexBlockOpen: this.refs.previewLatexBlockOpen.value, latexBlockClose: this.refs.previewLatexBlockClose.value, plantUMLServerAddress: this.refs.previewPlantUMLServerAddress.value, scrollPastEnd: this.refs.previewScrollPastEnd.checked, scrollSync: this.refs.previewScrollSync.checked, smartQuotes: this.refs.previewSmartQuotes.checked, breaks: this.refs.previewBreaks.checked, smartArrows: this.refs.previewSmartArrows.checked, sanitize: this.refs.previewSanitize.value, mermaidHTMLLabel: this.refs.previewMermaidHTMLLabel.checked, allowCustomCSS: this.refs.previewAllowCustomCSS.checked, lineThroughCheckbox: this.refs.lineThroughCheckbox.checked, customCSS: this.customCSSCM.getCodeMirror().getValue() } } const newCodemirrorTheme = this.refs.editorTheme.value if (newCodemirrorTheme !== codemirrorTheme) { const theme = consts.THEMES.find( theme => theme.name === newCodemirrorTheme ) if (theme) { checkHighLight.setAttribute('href', theme.path) } } this.setState( { config: newConfig, codemirrorTheme: newCodemirrorTheme }, () => { const { ui, editor, preview } = this.props.config this.currentConfig = { ui, editor, preview } if (_.isEqual(this.currentConfig, this.state.config)) { this.props.haveToSave() } else { this.props.haveToSave({ tab: 'UI', type: 'warning', message: i18n.__('Unsaved Changes!') }) } } ) } handleSaveUIClick(e) { const newConfig = { ui: this.state.config.ui, editor: this.state.config.editor, preview: this.state.config.preview } chooseTheme(newConfig) applyTheme(newConfig.ui.theme) ConfigManager.set(newConfig) store.dispatch({ type: 'SET_UI', config: newConfig }) this.clearMessage() this.props.haveToSave() } clearMessage() { _.debounce(() => { this.setState({ UiAlert: null }) }, 2000)() } formatTime(time) { let hour = Math.floor(time / 60) let minute = time % 60 if (hour < 10) { hour = '0' + hour } if (minute < 10) { minute = '0' + minute } return `${hour}:${minute}` } render() { const UiAlert = this.state.UiAlert const UiAlertElement = UiAlert != null ? (

{UiAlert.message}

) : null const themes = consts.THEMES const { config, codemirrorTheme } = this.state const codemirrorSampleCode = 'function iamHappy (happy) {\n\tif (happy) {\n\t console.log("I am Happy!")\n\t} else {\n\t console.log("I am not Happy!")\n\t}\n};' const enableEditRulersStyle = config.editor.enableRulers ? 'block' : 'none' const fontFamily = normalizeEditorFontFamily(config.editor.fontFamily) return (
{i18n.__('Interface')}
{i18n.__('Interface Theme')}
{i18n.__('Theme Schedule')}
{i18n.__('Scheduled Theme')}
{`End: ${this.formatTime(config.ui.scheduleEnd)}`} this.handleUIChange(e)} />
{`Start: ${this.formatTime(config.ui.scheduleStart)}`} this.handleUIChange(e)} />
00:00 24:00
{i18n.__('Language')}
{i18n.__('Default New Note')}
{global.process.platform === 'win32' ? (
) : null}
Tags
Editor
{i18n.__('Editor Theme')}
(this.codeMirrorInstance = e)} value={codemirrorSampleCode} options={{ lineNumbers: true, readOnly: true, mode: 'javascript', theme: codemirrorTheme }} />
{i18n.__('Editor Font Size')}
this.handleUIChange(e)} type='text' />
{i18n.__('Editor Font Family')}
this.handleUIChange(e)} type='text' />
{i18n.__('Editor Indent Style')}
 
{i18n.__('Editor Rulers')}
this.handleUIChange(e)} type='text' />
{i18n.__('Switch to Preview')}
{i18n.__('Editor Keymap')}

{i18n.__( '⚠️ Please restart boostnote after you change the keymap' )}

{i18n.__('Snippet Default Language')}
{i18n.__('Front matter title field')}
this.handleUIChange(e)} type='text' />
{i18n.__('Matching character pairs')}
this.handleUIChange(e)} type='text' />
{i18n.__('in code blocks')}
this.handleUIChange(e)} type='text' />
{i18n.__('Close pairs before')}
this.handleUIChange(e)} type='text' />
{i18n.__('in code blocks')}
this.handleUIChange(e)} type='text' />
{i18n.__('Matching character triples')}
this.handleUIChange(e)} type='text' />
{i18n.__('in code blocks')}
this.handleUIChange(e)} type='text' />
{i18n.__('Exploding character pairs')}
this.handleUIChange(e)} type='text' />
{i18n.__('in code blocks')}
this.handleUIChange(e)} type='text' />
{i18n.__('Custom MarkdownLint Rules')}
this.handleUIChange(e)} checked={this.state.config.editor.enableMarkdownLint} ref='enableMarkdownLint' type='checkbox' />   {i18n.__('Enable MarkdownLint')}
this.handleUIChange(e)} ref={e => (this.customMarkdownLintConfigCM = e)} value={config.editor.customMarkdownLintConfig} options={{ lineNumbers: true, mode: 'application/json', theme: codemirrorTheme, lint: true, gutters: [ 'CodeMirror-linenumbers', 'CodeMirror-foldgutter', 'CodeMirror-lint-markers' ] }} />
{i18n.__('Preview')}
{i18n.__('Preview Font Size')}
this.handleUIChange(e)} type='text' />
{i18n.__('Preview Font Family')}
this.handleUIChange(e)} type='text' />
{i18n.__('Code Block Theme')}
{i18n.__('Sanitization')}
{i18n.__('LaTeX Inline Open Delimiter')}
this.handleUIChange(e)} type='text' />
{i18n.__('LaTeX Inline Close Delimiter')}
this.handleUIChange(e)} type='text' />
{i18n.__('LaTeX Block Open Delimiter')}
this.handleUIChange(e)} type='text' />
{i18n.__('LaTeX Block Close Delimiter')}
this.handleUIChange(e)} type='text' />
{i18n.__('PlantUML Server')}
this.handleUIChange(e)} type='text' />
{i18n.__('Custom CSS')}
this.handleUIChange(e)} checked={config.preview.allowCustomCSS} ref='previewAllowCustomCSS' type='checkbox' />   {i18n.__('Allow custom CSS for preview')}
this.handleUIChange(e)} ref={e => (this.customCSSCM = e)} value={config.preview.customCSS} options={{ lineNumbers: true, mode: 'css', theme: codemirrorTheme }} />
{i18n.__('Prettier Config')}
this.handleUIChange(e)} ref={e => (this.prettierConfigCM = e)} value={config.editor.prettierConfig} options={{ lineNumbers: true, mode: 'application/json', lint: true, theme: codemirrorTheme }} />
{UiAlertElement}
) } } UiTab.propTypes = { user: PropTypes.shape({ name: PropTypes.string }), dispatch: PropTypes.func, haveToSave: PropTypes.func } export default CSSModules(UiTab, styles) ================================================ FILE: browser/main/modals/PreferencesModal/index.js ================================================ import PropTypes from 'prop-types' import React from 'react' import { connect } from 'react-redux' import HotkeyTab from './HotkeyTab' import UiTab from './UiTab' import InfoTab from './InfoTab' import Crowdfunding from './Crowdfunding' import StoragesTab from './StoragesTab' import ExportTab from './ExportTab' import SnippetTab from './SnippetTab' import PluginsTab from './PluginsTab' import Blog from './Blog' import ModalEscButton from 'browser/components/ModalEscButton' import CSSModules from 'browser/lib/CSSModules' import styles from './PreferencesModal.styl' import RealtimeNotification from 'browser/components/RealtimeNotification' import _ from 'lodash' import i18n from 'browser/lib/i18n' class Preferences extends React.Component { constructor(props) { super(props) this.state = { currentTab: 'STORAGES', UIAlert: '', HotkeyAlert: '', BlogAlert: '', ExportAlert: '' } } componentDidMount() { this.refs.root.focus() const boundingBox = this.getContentBoundingBox() this.setState({ boundingBox }) } switchTeam(teamId) { this.setState({ currentTeamId: teamId }) } handleNavButtonClick(tab) { return e => { this.setState({ currentTab: tab }) } } handleEscButtonClick() { this.props.close() } renderContent() { const { boundingBox } = this.state const { dispatch, config, data } = this.props switch (this.state.currentTab) { case 'INFO': return case 'HOTKEY': return ( this.setState({ HotkeyAlert: alert })} /> ) case 'UI': return ( this.setState({ UIAlert: alert })} /> ) case 'CROWDFUNDING': return case 'BLOG': return ( this.setState({ BlogAlert: alert })} /> ) case 'EXPORT': return ( this.setState({ ExportAlert: alert })} /> ) case 'SNIPPET': return case 'PLUGINS': return ( this.setState({ PluginsAlert: alert })} /> ) case 'STORAGES': default: return ( ) } } handleKeyDown(e) { if (e.keyCode === 27) { this.props.close() } } getContentBoundingBox() { return this.refs.content.getBoundingClientRect() } haveToSaveNotif(type, message) { return

{message}

} render() { const content = this.renderContent() const tabs = [ { target: 'STORAGES', label: i18n.__('Storage') }, { target: 'HOTKEY', label: i18n.__('Hotkeys'), Hotkey: this.state.HotkeyAlert }, { target: 'UI', label: i18n.__('Interface'), UI: this.state.UIAlert }, { target: 'INFO', label: i18n.__('About') }, { target: 'CROWDFUNDING', label: i18n.__('Crowdfunding') }, { target: 'BLOG', label: i18n.__('Blog'), Blog: this.state.BlogAlert }, { target: 'EXPORT', label: i18n.__('Export'), Export: this.state.ExportAlert }, { target: 'SNIPPET', label: i18n.__('Snippets') }, { target: 'PLUGINS', label: i18n.__('Plugins') } ] const navButtons = tabs.map(tab => { const isActive = this.state.currentTab === tab.target const isUiHotkeyTab = _.isObject(tab[tab.label]) && tab.label === tab[tab.label].tab return ( ) }) return (
this.handleKeyDown(e)} >

{i18n.__('Your preferences for Boostnote')}

this.handleEscButtonClick(e)} />
{navButtons}
{content}
) } } Preferences.propTypes = { dispatch: PropTypes.func } export default connect(x => x)(CSSModules(Preferences, styles)) ================================================ FILE: browser/main/modals/RenameFolderModal.js ================================================ import PropTypes from 'prop-types' import React from 'react' import CSSModules from 'browser/lib/CSSModules' import styles from './RenameModal.styl' import dataApi from 'browser/main/lib/dataApi' import { store } from 'browser/main/store' import ModalEscButton from 'browser/components/ModalEscButton' import i18n from 'browser/lib/i18n' class RenameFolderModal extends React.Component { constructor(props) { super(props) this.state = { name: props.folder.name } } componentDidMount() { this.refs.name.focus() this.refs.name.select() } handleCloseButtonClick(e) { this.props.close() } handleChange(e) { this.setState({ name: this.refs.name.value }) } handleKeyDown(e) { if (e.keyCode === 27) { this.props.close() } } handleInputKeyDown(e) { switch (e.keyCode) { case 13: this.confirm() } } handleConfirmButtonClick(e) { this.confirm() } confirm() { if (this.state.name.trim().length > 0) { const { storage, folder } = this.props dataApi .updateFolder(storage.key, folder.key, { name: this.state.name, color: folder.color }) .then(data => { store.dispatch({ type: 'UPDATE_FOLDER', storage: data.storage }) this.props.close() }) } } render() { return (
this.handleKeyDown(e)} >
{i18n.__('Rename Folder')}
this.handleCloseButtonClick(e)} />
this.handleChange(e)} onKeyDown={e => this.handleInputKeyDown(e)} />
) } } RenameFolderModal.propTypes = { storage: PropTypes.shape({ key: PropTypes.string }), folder: PropTypes.shape({ key: PropTypes.string, name: PropTypes.string }) } export default CSSModules(RenameFolderModal, styles) ================================================ FILE: browser/main/modals/RenameModal.styl ================================================ .root modal() max-width 340px overflow hidden position relative .header height 50px font-size 16px line-height 50px padding 0 15px background-color $ui-backgroundColor border-bottom solid 1px $ui-borderColor color $ui-text-color .control padding 25px 15px 15px text-align center .control-input display block height 30px width 240px padding 0 5px margin 0 auto 15px border none border-bottom solid 1px $border-color border-radius 2px background-color transparent outline none vertical-align middle font-size 14px text-align center &:disabled background-color $ui-input--disabled-backgroundColor &:focus, &:active border-color $ui-active-color .control-confirmButton display block height 30px border none border-radius 2px padding 0 25px margin 0 auto font-size 14px colorPrimaryButton() .error text-align center color #F44336 height 20px apply-theme(theme) body[data-theme={theme}] .root background-color transparent .header background-color transparent border-color get-theme-var(theme, 'borderColor') color get-theme-var(theme, 'text-color') .description color $ui-inactive-text-color .control-input border-color get-theme-var(theme, 'borderColor') color get-theme-var(theme, 'text-color') .control-confirmButton colorThemedPrimaryButton(theme) for theme in 'dark' 'solarized-dark' 'dracula' apply-theme(theme) for theme in $themes apply-theme(theme) ================================================ FILE: browser/main/modals/RenameTagModal.js ================================================ import PropTypes from 'prop-types' import React from 'react' import CSSModules from 'browser/lib/CSSModules' import styles from './RenameModal.styl' import dataApi from 'browser/main/lib/dataApi' import ModalEscButton from 'browser/components/ModalEscButton' import i18n from 'browser/lib/i18n' import { replace } from 'connected-react-router' import ee from 'browser/main/lib/eventEmitter' import { isEmpty } from 'lodash' import electron from 'electron' const { remote } = electron const { dialog } = remote class RenameTagModal extends React.Component { constructor(props) { super(props) this.nameInput = null this.handleChange = this.handleChange.bind(this) this.setTextInputRef = el => { this.nameInput = el } this.state = { name: props.tagName, oldName: props.tagName } } componentDidMount() { this.nameInput.focus() this.nameInput.select() } handleChange(e) { this.setState({ name: this.nameInput.value, showerror: false, errormessage: '' }) } handleKeyDown(e) { if (e.keyCode === 27) { this.props.close() } } handleInputKeyDown(e) { switch (e.keyCode) { case 13: this.handleConfirm() } } handleConfirm() { if (this.state.name.trim().length > 0) { const { name, oldName } = this.state this.renameTag(oldName, name) } } showError(message) { this.setState({ showerror: true, errormessage: message }) } renameTag(tag, updatedTag) { const { data, dispatch } = this.props if (tag === updatedTag) { // confirm with-out any change - just dismiss the modal this.props.close() return } if ( data.noteMap .map(note => note) .some(note => note.tags.indexOf(updatedTag) !== -1) ) { const alertConfig = { type: 'warning', message: i18n.__('Confirm tag merge'), detail: i18n.__( `Tag ${tag} will be merged with existing tag ${updatedTag}` ), buttons: [i18n.__('Confirm'), i18n.__('Cancel')] } const dialogButtonIndex = dialog.showMessageBox( remote.getCurrentWindow(), alertConfig ) if (dialogButtonIndex === 1) { return // bail early on cancel click } } const notes = data.noteMap .map(note => note) .filter( note => note.tags.indexOf(tag) !== -1 && note.tags.indexOf(updatedTag) ) .map(note => { note = Object.assign({}, note) note.tags = note.tags.slice() note.tags[note.tags.indexOf(tag)] = updatedTag return note }) if (isEmpty(notes)) { this.showError(i18n.__('Tag exists')) return } Promise.all( notes.map(note => dataApi.updateNote(note.storage, note.key, note)) ) .then(updatedNotes => { updatedNotes.forEach(note => { dispatch({ type: 'UPDATE_NOTE', note }) }) }) .then(() => { if (window.location.hash.includes(tag)) { dispatch(replace(`/tags/${updatedTag}`)) } ee.emit('sidebar:rename-tag', { tag, updatedTag }) this.props.close() }) } render() { const { close } = this.props const { errormessage } = this.state return (
this.handleKeyDown(e)} >
{i18n.__('Rename Tag')}
this.handleInputKeyDown(e)} />
{errormessage}
) } } RenameTagModal.propTypes = { storage: PropTypes.shape({ key: PropTypes.string }), folder: PropTypes.shape({ key: PropTypes.string, name: PropTypes.string }) } export default CSSModules(RenameTagModal, styles) ================================================ FILE: browser/main/store.js ================================================ import { combineReducers, createStore, compose, applyMiddleware } from 'redux' import { connectRouter, routerMiddleware } from 'connected-react-router' import { createHashHistory as createHistory } from 'history' import ConfigManager from 'browser/main/lib/ConfigManager' import { Map, Set } from 'browser/lib/Mutable' import _ from 'lodash' import DevTools from './DevTools' function defaultDataMap() { return { storageMap: new Map(), noteMap: new Map(), starredSet: new Set(), storageNoteMap: new Map(), folderNoteMap: new Map(), tagNoteMap: new Map(), trashedSet: new Set() } } function data(state = defaultDataMap(), action) { switch (action.type) { case 'INIT_ALL': state = defaultDataMap() action.storages.forEach(storage => { state.storageMap.set(storage.key, storage) }) action.notes.some(note => { if (note === undefined) return true const uniqueKey = note.key const folderKey = note.storage + '-' + note.folder state.noteMap.set(uniqueKey, note) if (note.isStarred) { state.starredSet.add(uniqueKey) } if (note.isTrashed) { state.trashedSet.add(uniqueKey) } const storageNoteList = getOrInitItem( state.storageNoteMap, note.storage ) storageNoteList.add(uniqueKey) const folderNoteSet = getOrInitItem(state.folderNoteMap, folderKey) folderNoteSet.add(uniqueKey) if (!note.isTrashed) { assignToTags(note.tags, state, uniqueKey) } }) return state case 'UPDATE_NOTE': { const note = action.note const uniqueKey = note.key const folderKey = note.storage + '-' + note.folder const oldNote = state.noteMap.get(uniqueKey) state = Object.assign({}, state) state.noteMap = new Map(state.noteMap) state.noteMap.set(uniqueKey, note) updateStarredChange(oldNote, note, state, uniqueKey) if (oldNote == null || oldNote.isTrashed !== note.isTrashed) { state.trashedSet = new Set(state.trashedSet) if (note.isTrashed) { state.trashedSet.add(uniqueKey) state.starredSet.delete(uniqueKey) removeFromTags(note.tags, state, uniqueKey) } else { state.trashedSet.delete(uniqueKey) assignToTags(note.tags, state, uniqueKey) if (note.isStarred) { state.starredSet.add(uniqueKey) } } } // Update storageNoteMap if oldNote doesn't exist if (oldNote == null) { state.storageNoteMap = new Map(state.storageNoteMap) let storageNoteSet = state.storageNoteMap.get(note.storage) storageNoteSet = new Set(storageNoteSet) storageNoteSet.add(uniqueKey) state.storageNoteMap.set(note.storage, storageNoteSet) } // Update foldermap if folder changed or post created updateFolderChange(oldNote, note, state, folderKey, uniqueKey) if (oldNote != null) { updateTagChanges(oldNote, note, state, uniqueKey) } else { assignToTags(note.tags, state, uniqueKey) } return state } case 'MOVE_NOTE': { const originNote = action.originNote const originKey = originNote.key const note = action.note const uniqueKey = note.key const folderKey = note.storage + '-' + note.folder const oldNote = state.noteMap.get(uniqueKey) state = Object.assign({}, state) state.noteMap = new Map(state.noteMap) state.noteMap.delete(originKey) state.noteMap.set(uniqueKey, note) // If storage chanced, origin key must be discarded if (originKey !== uniqueKey) { // From isStarred if (originNote.isStarred) { state.starredSet = new Set(state.starredSet) state.starredSet.delete(originKey) } if (originNote.isTrashed) { state.trashedSet = new Set(state.trashedSet) state.trashedSet.delete(originKey) } // From storageNoteMap state.storageNoteMap = new Map(state.storageNoteMap) let noteSet = state.storageNoteMap.get(originNote.storage) noteSet = new Set(noteSet) noteSet.delete(originKey) state.storageNoteMap.set(originNote.storage, noteSet) // From folderNoteMap state.folderNoteMap = new Map(state.folderNoteMap) const originFolderKey = originNote.storage + '-' + originNote.folder let originFolderList = state.folderNoteMap.get(originFolderKey) originFolderList = new Set(originFolderList) originFolderList.delete(originKey) state.folderNoteMap.set(originFolderKey, originFolderList) removeFromTags(originNote.tags, state, originKey) } updateStarredChange(oldNote, note, state, uniqueKey) if (oldNote == null || oldNote.isTrashed !== note.isTrashed) { state.trashedSet = new Set(state.trashedSet) if (note.isTrashed) { state.trashedSet.add(uniqueKey) } else { state.trashedSet.delete(uniqueKey) } } // Update storageNoteMap if oldNote doesn't exist if (oldNote == null) { state.storageNoteMap = new Map(state.storageNoteMap) let noteSet = state.storageNoteMap.get(note.storage) noteSet = new Set(noteSet) noteSet.add(uniqueKey) state.storageNoteMap.set(folderKey, noteSet) } // Update foldermap if folder changed or post created updateFolderChange(oldNote, note, state, folderKey, uniqueKey) // Remove from old folder map if (oldNote != null) { updateTagChanges(oldNote, note, state, uniqueKey) } else { assignToTags(note.tags, state, uniqueKey) } return state } case 'DELETE_NOTE': { const uniqueKey = action.noteKey const targetNote = state.noteMap.get(uniqueKey) state = Object.assign({}, state) // From storageNoteMap state.storageNoteMap = new Map(state.storageNoteMap) let noteSet = state.storageNoteMap.get(targetNote.storage) noteSet = new Set(noteSet) noteSet.delete(uniqueKey) state.storageNoteMap.set(targetNote.storage, noteSet) if (targetNote != null) { // From isStarred if (targetNote.isStarred) { state.starredSet = new Set(state.starredSet) state.starredSet.delete(uniqueKey) } if (targetNote.isTrashed) { state.trashedSet = new Set(state.trashedSet) state.trashedSet.delete(uniqueKey) } // From folderNoteMap const folderKey = targetNote.storage + '-' + targetNote.folder state.folderNoteMap = new Map(state.folderNoteMap) let folderSet = state.folderNoteMap.get(folderKey) folderSet = new Set(folderSet) folderSet.delete(uniqueKey) state.folderNoteMap.set(folderKey, folderSet) removeFromTags(targetNote.tags, state, uniqueKey) } state.noteMap = new Map(state.noteMap) state.noteMap.delete(uniqueKey) return state } case 'UPDATE_FOLDER': case 'REORDER_FOLDER': case 'EXPORT_FOLDER': case 'RENAME_STORAGE': case 'EXPORT_STORAGE': state = Object.assign({}, state) state.storageMap = new Map(state.storageMap) state.storageMap.set(action.storage.key, action.storage) return state case 'DELETE_FOLDER': { state = Object.assign({}, state) state.storageMap = new Map(state.storageMap) state.storageMap.set(action.storage.key, action.storage) // Get note list from folder-note map // and delete note set from folder-note map const folderKey = action.storage.key + '-' + action.folderKey const noteSet = state.folderNoteMap.get(folderKey) state.folderNoteMap = new Map(state.folderNoteMap) state.folderNoteMap.delete(folderKey) state.noteMap = new Map(state.noteMap) state.storageNoteMap = new Map(state.storageNoteMap) let storageNoteSet = state.storageNoteMap.get(action.storage.key) storageNoteSet = new Set(storageNoteSet) state.storageNoteMap.set(action.storage.key, storageNoteSet) if (noteSet != null) { noteSet.forEach(function handleNoteKey(noteKey) { // Get note from noteMap const note = state.noteMap.get(noteKey) if (note != null) { state.noteMap.delete(noteKey) // From storageSet storageNoteSet.delete(noteKey) // From starredSet if (note.isStarred) { state.starredSet = new Set(state.starredSet) state.starredSet.delete(noteKey) } if (note.isTrashed) { state.trashedSet = new Set(state.trashedSet) state.trashedSet.delete(noteKey) } // Delete key from tag map state.tagNoteMap = new Map(state.tagNoteMap) note.tags.forEach(tag => { const tagNoteSet = getOrInitItem(state.tagNoteMap, tag) tagNoteSet.delete(noteKey) }) } }) } } return state case 'ADD_STORAGE': state = Object.assign({}, state) state.storageMap = new Map(state.storageMap) state.storageMap.set(action.storage.key, action.storage) state.noteMap = new Map(state.noteMap) state.storageNoteMap = new Map(state.storageNoteMap) state.storageNoteMap.set(action.storage.key, new Set()) state.folderNoteMap = new Map(state.folderNoteMap) state.tagNoteMap = new Map(state.tagNoteMap) action.notes.forEach(note => { const uniqueKey = note.key const folderKey = note.storage + '-' + note.folder state.noteMap.set(uniqueKey, note) if (note.isStarred) { state.starredSet.add(uniqueKey) } const storageNoteList = getOrInitItem(state.tagNoteMap, note.storage) storageNoteList.add(uniqueKey) let folderNoteSet = state.folderNoteMap.get(folderKey) if (folderNoteSet == null) { folderNoteSet = new Set(folderNoteSet) state.folderNoteMap.set(folderKey, folderNoteSet) } folderNoteSet.add(uniqueKey) note.tags.forEach(tag => { const tagNoteSet = getOrInitItem(state.tagNoteMap, tag) tagNoteSet.add(uniqueKey) }) }) return state case 'REMOVE_STORAGE': state = Object.assign({}, state) const storage = state.storageMap.get(action.storageKey) state.storageMap = new Map(state.storageMap) state.storageMap.delete(action.storageKey) // Remove folders from folderMap if (storage != null) { state.folderMap = new Map(state.folderMap) storage.folders.forEach(folder => { const folderKey = storage.key + '-' + folder.key state.folderMap.delete(folderKey) }) } // Remove notes from noteMap and tagNoteMap const storageNoteSet = state.storageNoteMap.get(action.storageKey) state.storageNoteMap = new Map(state.storageNoteMap) state.storageNoteMap.delete(action.storageKey) if (storageNoteSet != null) { const notes = storageNoteSet .map(noteKey => state.noteMap.get(noteKey)) .filter(note => note != null) state.noteMap = new Map(state.noteMap) state.tagNoteMap = new Map(state.tagNoteMap) state.starredSet = new Set(state.starredSet) notes.forEach(note => { const noteKey = note.key state.noteMap.delete(noteKey) state.starredSet.delete(noteKey) note.tags.forEach(tag => { let tagNoteSet = state.tagNoteMap.get(tag) tagNoteSet = new Set(tagNoteSet) tagNoteSet.delete(noteKey) }) }) } return state case 'EXPAND_STORAGE': state = Object.assign({}, state) state.storageMap = new Map(state.storageMap) action.storage.isOpen = action.isOpen state.storageMap.set(action.storage.key, action.storage) return state } return state } const defaultConfig = ConfigManager.get() function config(state = defaultConfig, action) { switch (action.type) { case 'SET_IS_SIDENAV_FOLDED': state.isSideNavFolded = action.isFolded return Object.assign({}, state) case 'SET_ZOOM': state.zoom = action.zoom return Object.assign({}, state) case 'SET_LIST_WIDTH': state.listWidth = action.listWidth return Object.assign({}, state) case 'SET_NAV_WIDTH': state.navWidth = action.navWidth return Object.assign({}, state) case 'SET_CONFIG': return Object.assign({}, state, action.config) case 'SET_UI': return Object.assign({}, state, action.config) } return state } const defaultStatus = { updateReady: false } function status(state = defaultStatus, action) { switch (action.type) { case 'UPDATE_AVAILABLE': return Object.assign({}, defaultStatus, { updateReady: true }) } return state } function updateStarredChange(oldNote, note, state, uniqueKey) { if (oldNote == null || oldNote.isStarred !== note.isStarred) { state.starredSet = new Set(state.starredSet) if (note.isStarred) { state.starredSet.add(uniqueKey) } else { state.starredSet.delete(uniqueKey) } } } function updateFolderChange(oldNote, note, state, folderKey, uniqueKey) { if (oldNote == null || oldNote.folder !== note.folder) { state.folderNoteMap = new Map(state.folderNoteMap) let folderNoteList = state.folderNoteMap.get(folderKey) folderNoteList = new Set(folderNoteList) folderNoteList.add(uniqueKey) state.folderNoteMap.set(folderKey, folderNoteList) if (oldNote != null) { const oldFolderKey = oldNote.storage + '-' + oldNote.folder let oldFolderNoteList = state.folderNoteMap.get(oldFolderKey) oldFolderNoteList = new Set(oldFolderNoteList) oldFolderNoteList.delete(uniqueKey) state.folderNoteMap.set(oldFolderKey, oldFolderNoteList) } } } function updateTagChanges(oldNote, note, state, uniqueKey) { const discardedTags = _.difference(oldNote.tags, note.tags) const addedTags = _.difference(note.tags, oldNote.tags) if (discardedTags.length + addedTags.length > 0) { removeFromTags(discardedTags, state, uniqueKey) assignToTags(addedTags, state, uniqueKey) } } function assignToTags(tags, state, uniqueKey) { state.tagNoteMap = new Map(state.tagNoteMap) tags.forEach(tag => { const tagNoteList = getOrInitItem(state.tagNoteMap, tag) tagNoteList.add(uniqueKey) }) } function removeFromTags(tags, state, uniqueKey) { state.tagNoteMap = new Map(state.tagNoteMap) tags.forEach(tag => { let tagNoteList = state.tagNoteMap.get(tag) if (tagNoteList != null) { tagNoteList = new Set(tagNoteList) tagNoteList.delete(uniqueKey) state.tagNoteMap.set(tag, tagNoteList) } }) } function getOrInitItem(target, key) { let results = target.get(key) if (results == null) { results = new Set() target.set(key, results) } return results } const history = createHistory() const reducer = combineReducers({ data, config, status, router: connectRouter(history) }) const store = createStore( reducer, undefined, process.env.NODE_ENV === 'development' ? compose( applyMiddleware(routerMiddleware(history)), DevTools.instrument() ) : applyMiddleware(routerMiddleware(history)) ) export { store, history } ================================================ FILE: browser/styles/Detail/TagSelect.styl ================================================ .TagSelect .react-autosuggest__input box-sizing border-box border none background-color transparent outline none padding 2px 4px margin 0px 2px 2px font-size 13px height 23px ul position fixed z-index 999 box-sizing border-box list-style none padding 0 margin 0 border-radius 4px margin .5rem 0 0 background-color $ui-noteList-backgroundColor border 1px solid rgba(0,0,0,.3) box-shadow .05em .2em .6em rgba(0,0,0,.2) text-shadow none &:empty, &[hidden] display none &:before content "" position absolute top -7px left 14px width 0 height 0 padding 6px background-color $ui-noteList-backgroundColor border inherit border-right 0 border-bottom 0 -webkit-transform rotate(45deg) transform rotate(45deg) li position relative padding 6px 18px 6px 10px cursor pointer li[aria-selected="true"] background-color alpha($ui-button--active-backgroundColor, 40%) color $ui-text-color body[data-theme="white"] .TagSelect ul background-color $ui-white-noteList-backgroundColor li[aria-selected="true"] background-color $ui-button--active-backgroundColor apply-theme(theme) body[data-theme={theme}] .TagSelect .react-autosuggest__input color get-theme-var(theme, 'text-color') ul border-color get-theme-var(theme, 'borderColor') background-color get-theme-var(theme, 'noteList-backgroundColor') color get-theme-var(theme, 'text-color') &:before background-color $ui-dark-noteList-backgroundColor li[aria-selected="true"] background-color get-theme-var(theme, 'button-backgroundColor') color get-theme-var(theme, 'text-color') for theme in 'dark' 'solarized-dark' 'dracula' apply-theme(theme) for theme in $themes apply-theme(theme) ================================================ FILE: browser/styles/index.styl ================================================ // Default theme $brand-color = #6AA5E9 $danger-color = #c9302c $danger-lighten-color = lighten(#c9302c, 5%) // Layouts $statusBar-height = 28px $sideNav-width = 200px $sideNav--folded-width = 44px $topBar-height = 60px // UI default $ui-text-color = #333333 $ui-inactive-text-color = #939395 $ui-borderColor = #D1D1D1 $ui-backgroundColor = #FFFFFF $ui-noteList-backgroundColor = #FBFBFB $ui-noteDetail-backgroundColor = #FFFFFF $ui-border = solid 1px $ui-borderColor $ui-active-color = #6AA5E9 $ui-tag-backgroundColor = rgba(0, 0, 0, 0.3) // UI Default Button $ui-button-default-color = #FBFBFB $ui-button-default--hover-backgroundColor = #2B8976 $ui-button-default--active-color = white $ui-button-default--active-backgroundColor = #2B8976 $ui-button-default--focus-borderColor = lighten(#369DCD, 25%) // UI Tooltip $ui-tooltip-text-color = white $ui-tooltip-backgroundColor = alpha(#444, 70%) $ui-tooltip-button-backgroundColor = #D1D1D1 $ui-tooltip-button--hover-backgroundColor = lighten(#D1D1D1, 30%) $ui-tooltip-font-size = 12px tooltip() background-color $ui-tooltip-backgroundColor = alpha(#444, 70%) color $ui-tooltip-text-color = white font-size $ui-tooltip-font-size pointer-events none transition 0.1s // UI Input $ui-input--focus-borderColor = #369DCD $ui-input--disabled-backgroundColor = #DDD $ui-input--create-folder-modal = #C9C9C9 // Parts $ui-favorite-star-button-color = #FFC216 /* * # Border */ $border-color = #D0D0D0 $active-border-color = #369DCD $focus-border-color = #369DCD $default-border = solid 1px $border-color $active-border = solid 1px $active-border-color /** * # Button styles */ // Default button $default-button-background = white $default-button-background--hover = #e6e6e6 $default-button-background--active = #D9D9D9 colorDefaultButton() background-color $default-button-background &:hover background-color transparent &:active &:active:hover background-color $default-button-background--active // Primary button(Brand color) $primary-button-background = alpha($brand-color, 60%) $primary-button-background--hover = darken($brand-color, 5%) $primary-button-background--active = darken($brand-color, 10%) colorPrimaryButton() color $ui-text-color background-color $default-button-background--hover &:hover transition 0.2s background-color $default-button-background--active &:active &:active:hover background-color $default-button-background--active // Dark Primary button(Brand color) $dark-primary-button-background = alpha(#3A404C, 80%) $dark-primary-button-background--hover = #3A404C $dark-primary-button-background--active = #3A404C colorDarkPrimaryButton() color white background-color $dark-primary-button-background &:hover background-color $dark-primary-button-background--hover &:active &:active:hover background-color $dark-primary-button-background--active colorThemedPrimaryButton(theme) if theme == 'dark' colorDarkPrimaryButton() else color get-theme-var(theme, 'text-color') background-color get-theme-var(theme, 'button-backgroundColor') border none &:hover background-color get-theme-var(theme, 'button--hover-backgroundColor') &:active &:active:hover background-color get-theme-var(theme, 'button--active-backgroundColor') // Danger button(Brand color) $danger-button-background = #c9302c $danger-button-background--hover = darken(#c9302c, 5%) $danger-button-background--active = darken(#c9302c, 10%) colorDangerButton() color white background-color $danger-button-background &:hover background-color $danger-button-background--hover &:active &:active:hover background-color $danger-button-background--active /** * SideNav */ SideNavFilter() background-color $ui-button-default--active-backgroundColor .counters color $ui-button-default-color .menu-button-label color $ui-button-default-color &:hover background-color alpha($ui-button-default--hover-backgroundColor, 20%) &:active, &:active:hover background-color alpha($ui-button-default--hover-backgroundColor, 20%) .menu-button-label color #1EC38B /** * Nav */ navButtonColor() border none color $ui-button-color background-color transparent transition 0.15s &:hover transition 0.15s color $ui-button-default-color &:active, &:active:hover color $ui-button-default-color transition 0.15s /** * # Modal Stuff * These will be moved lib/modal */ $modal-z-index = 1002 $modal-background = white $modal-margin = 64px auto 64px $modal-border-radius = 5px modal() position relative z-index $modal-z-index width 100% margin-left 80px margin-right 80px margin-bottom 80px margin-top 100px background-color $modal-background overflow hidden border-radius $modal-border-radius topBarButtonRight() width 34px height 34px border-radius 17px font-size 14px border none color alpha($ui-button-color, 0.2) fill $ui-button-color background-color transparent &:active border-color $ui-button--active-backgroundColor &:hover // transform scale(1.1) transition 0.4s color $ui-button-color .control-lockButton-tooltip opacity 1 // White theme $ui-white-noteList-backgroundColor = #F3F3F3 $ui-white-noteDetail-backgroundColor = #F4F4F4 /** * Nav */ navWhiteButtonColor() border none color $ui-button-color background-color transparent transition 0.15s &:hover background-color alpha($ui-button--active-backgroundColor, 20%) transition 0.15s &:active, &:active:hover background-color $ui-button--active-backgroundColor transition 0.15s // UI Button $ui-button-color = #939395 $ui-button--hover-backgroundColor = #F6F6F6 $ui-button--active-color = white $ui-button--active-backgroundColor = #D9D9D9 $ui-button--focus-borderColor = lighten(#369DCD, 25%) /******* Dark theme ********/ $ui-dark-active-color = #3A404C $ui-dark-borderColor = #444444 $ui-dark-backgroundColor = #2C3033 $ui-dark-noteList-backgroundColor = #2C3033 $ui-dark-noteDetail-backgroundColor = #2C3033 $ui-dark-tagList-backgroundColor = #FFFFFF $ui-dark-tag-backgroundColor = #3A404C $dark-background-color = lighten($ui-dark-backgroundColor, 10%) $ui-dark-text-color = #DDDDDD $ui-dark-button--active-color = #f4f4f4 $ui-dark-button--active-backgroundColor = #3A404C $ui-dark-button--hover-color = #c0392b $ui-dark-button--hover-backgroundColor = lighten($ui-dark-backgroundColor, 10%) $ui-dark-button--focus-borderColor = lighten(#369DCD, 25%) $ui-dark-topbar-button-color = #939395 $dark-default-button-background = $ui-dark-backgroundColor $dark-default-button-background--hover = $ui-dark-button--hover-backgroundColor $dark-default-button-background--active = $ui-dark-button--active-backgroundColo colorDarkDefaultButton() border-color $ui-dark-borderColor color $ui-dark-text-color background-color $dark-default-button-background &:hover background-color $dark-default-button-background--hover &:active &:active:hover background-color $ui-dark-button--active-backgroundColor $dark-danger-button-background = #c9302c $dark-danger-button-background--hover = darken(#c9302c, 5%) $dark-danger-button-background--active = darken(#c9302c, 10%) colorDarkDangerButton() color white background-color $dark-danger-button-background &:hover background-color $dark-danger-button-background--hover &:active &:active:hover background-color $dark-danger-button-background--active navDarkButtonColor() border none color $ui-dark-button-color background-color transparent transition 0.15s &:hover color $ui-dark-text-color background-color $ui-dark-button--hover-backgroundColor transition 0.15s &:active &:active:hover transition 0.15s color $ui-dark-text-color topBarButtonDark() border-color $ui-dark-borderColor color $ui-dark-topbar-button-color &:hover color $ui-dark-tooltip-text-color &:active border-color $ui-dark-button--focus-borderColor &:active:hover color $ui-dark-tooltip-text-color &:focus border-color $ui-button--focus-borderColor $ui-dark-tooltip-text-color = white $ui-dark-tooltip-backgroundColor = alpha(#444, 70%) $ui-dark-tooltip-button-backgroundColor = #D1D1D1 $ui-dark-tooltip-button--hover-backgroundColor = lighten(#D1D1D1, 30%) $ui-tooltip-font-size = 12px darkTooltip() background-color $ui-dark-tooltip-backgroundColor = alpha(#444, 70%) color $ui-dark-tooltip-text-color = white font-size $ui-dark-tooltip-font-size pointer-events none transition 0.1s /******* Solarized Dark theme ********/ $ui-solarized-dark-backgroundColor = #073642 $ui-solarized-dark-noteList-backgroundColor = #073642 $ui-solarized-dark-noteDetail-backgroundColor = #073642 $ui-solarized-dark-tagList-backgroundColor = #FFFFFF $ui-solarized-dark-text-color = #93a1a1 $ui-solarized-dark-active-color = #2aa198 $ui-solarized-dark-borderColor = #586e75 $ui-solarized-dark-tag-backgroundColor = #002b36 $ui-solarized-dark-button-backgroundColor = #002b36 $ui-solarized-dark-button--active-color = #93a1a1 $ui-solarized-dark-button--active-backgroundColor = #073642 $ui-solarized-dark-button--hover-color = #c0392b $ui-solarized-dark-button--hover-backgroundColor = lighten($ui-dark-backgroundColor, 10%) $ui-solarized-dark-button--focus-borderColor = lighten(#369DCD, 25%) $ui-solarized-dark-kbd-backgroundColor = darken(#21252B, 10%) $ui-solarized-dark-kbd-color = $ui-solarized-dark-text-color $ui-solarized-dark-table-odd-backgroundColor = $ui-solarized-dark-noteDetail-backgroundColor $ui-solarized-dark-table-even-backgroundColor = darken($ui-solarized-dark-noteDetail-backgroundColor, 10%) $ui-solarized-dark-table-head-backgroundColor = $ui-solarized-dark-table-even-backgroundColor $ui-solarized-dark-table-borderColor = lighten(darken(#21252B, 10%), 20%) /******* Monokai theme ********/ $ui-monokai-backgroundColor = #272822 $ui-monokai-noteList-backgroundColor = #272822 $ui-monokai-noteDetail-backgroundColor = #272822 $ui-monokai-tagList-backgroundColor = #FFFFFF $ui-monokai-text-color = #f8f8f2 $ui-monokai-active-color = #f92672 $ui-monokai-borderColor = #373831 $ui-monokai-tag-backgroundColor = #373831 $ui-monokai-button-backgroundColor = #373831 $ui-monokai-button--active-color = white $ui-monokai-button--active-backgroundColor = #f92672 $ui-monokai-button--hover-color = #f92672 $ui-monokai-button--hover-backgroundColor = lighten($ui-dark-backgroundColor, 10%) $ui-monokai-button--focus-borderColor = lighten(#369DCD, 25%) $ui-monokai-kbd-backgroundColor = darken(#21252B, 10%) $ui-monokai-kbd-color = $ui-monokai-text-color $ui-monokai-table-odd-backgroundColor = $ui-monokai-noteDetail-backgroundColor $ui-monokai-table-even-backgroundColor = darken($ui-monokai-noteDetail-backgroundColor, 10%) $ui-monokai-table-head-backgroundColor = $ui-monokai-table-even-backgroundColor $ui-monokai-table-borderColor = lighten(darken(#21252B, 10%), 20%) /******* Dracula theme ********/ $ui-dracula-backgroundColor = #282a36 $ui-dracula-noteList-backgroundColor = #282a36 $ui-dracula-noteDetail-backgroundColor = #282a36 $ui-dracula-tagList-backgroundColor = #f8f8f2 $ui-dracula-text-color = #f8f8f2 $ui-dracula-active-color = #bd93f9 $ui-dracula-borderColor = #44475a $ui-dracula-tag-backgroundColor = #8be9fd $ui-dracula-button-backgroundColor = #44475a $ui-dracula-button--active-color = #f8f8f2 $ui-dracula-button--active-backgroundColor = #bd93f9 $ui-dracula-button--hover-color = #ff79c6 $ui-dracula-button--hover-backgroundColor = lighten($ui-dracula-backgroundColor, 10%) $ui-dracula-button--focus-borderColor = lighten(#44475a, 25%) $ui-dracula-kbd-backgroundColor = darken(#21252B, 10%) $ui-dracula-kbd-color = $ui-monokai-text-color $ui-dracula-table-odd-backgroundColor = $ui-dracula-noteDetail-backgroundColor $ui-dracula-table-even-backgroundColor = darken($ui-dracula-noteDetail-backgroundColor, 10%) $ui-dracula-table-head-backgroundColor = $ui-dracula-table-even-backgroundColor $ui-dracula-table-borderColor = lighten(darken(#21252B, 10%), 20%) /******* Nord theme ********/ $ui-nord-backgroundColor = #2e3440 $ui-nord-noteList-backgroundColor = #2e3440 $ui-nord-noteDetail-backgroundColor = #2e3440 $ui-nord-tagList-backgroundColor = #FFFFFF $ui-nord-text-color = #d8dee9 $ui-nord-inactive-text-color = #8fbcbb $ui-nord-active-color = #5e81ac $ui-nord-borderColor = #3b4252 $ui-nord-tag-backgroundColor = #3b4252 $ui-nord-button-backgroundColor = #434c5e $ui-nord-button--active-color = #d8dee9 $ui-nord-button--active-backgroundColor = #5e81ac $ui-nord-button--hover-color = #c0392b $ui-nord-button--hover-backgroundColor = #434c5e $ui-nord-kbd-backgroundColor = $ui-nord-text-color $ui-nord-kbd-color = $ui-nord-backgroundColor $ui-nord-table-odd-backgroundColor = $ui-nord-noteDetail-backgroundColor $ui-nord-table-even-backgroundColor = darken($ui-nord-noteDetail-backgroundColor, 10%) $ui-nord-table-head-backgroundColor = $ui-nord-table-even-backgroundColor $ui-nord-table-borderColor = lighten(darken(#21252B, 10%), 20%) /******* Vulcan theme ********/ $ui-vulcan-backgroundColor = #161719 $ui-vulcan-noteList-backgroundColor = #161719 $ui-vulcan-noteDetail-backgroundColor = #161719 $ui-vulcan-tagList-backgroundColor = #FFFFFF $ui-vulcan-text-color = #999999 $ui-vulcan-inactive-text-color = #999999 $ui-vulcan-active-color = #ffffff $ui-vulcan-borderColor = #282a2e $ui-vulcan-tag-backgroundColor = #282a2e $ui-vulcan-button-backgroundColor = #282a2e $ui-vulcan-button--active-color = #a3a8ae $ui-vulcan-button--active-backgroundColor = #282a2e $ui-vulcan-button--hover-backgroundColor = #282a2e $ui-vulcan-kbd-backgroundColor = lighten($ui-vulcan-text-color, 50%) $ui-vulcan-kbd-color = $ui-vulcan-backgroundColor $ui-vulcan-table-odd-backgroundColor = $ui-vulcan-noteDetail-backgroundColor $ui-vulcan-table-even-backgroundColor = darken($ui-vulcan-noteDetail-backgroundColor, 10%) $ui-vulcan-table-head-backgroundColor = $ui-vulcan-table-even-backgroundColor $ui-vulcan-table-borderColor = lighten(darken(#21252B, 10%), 20%) debug-theme-var(theme, suffix) '$ui-' + theme + '-' + suffix get-theme-var(theme, suffix) lookup('$ui-' + theme + '-' + suffix) $themes = 'monokai' 'nord' 'vulcan' ================================================ FILE: browser/styles/mixins/alert.styl ================================================ alertSuccess() background-color successBackgroundColor color successTextColor alertError() background-color errorBackgroundColor color errorTextColor alertInfo() background-color infoBackgroundColor color infoTextColor ================================================ FILE: browser/styles/mixins/btn.styl ================================================ btnDefault() border-style solid border-width 1px border-color lightButtonColor background-color transparent color lightButtonColor &:hover, &.hover, &:focus, &.focus border-color darken(lightButtonColor, 50%) color darken(lightButtonColor, 50%) &:active, &.active border-color darken(brandBorderColor, 10%) background-color brandColor color white &:disabled, &.disabled opacity 0.6 btnPrimary() border-style solid border-width 1px border-color brandBorderColor background-color transparent color brandColor &:hover, &.hover, &:focus, &.focus border-color darken(brandBorderColor, 30%) color darken(brandColor, 30%) &:active, &.active background-color brandColor color white &:disabled, &.disabled opacity 0.6 btnStripDefault() border none background-color transparent color lightButtonColor &:hover, &.hover, &:focus, &.focus color darken(lightButtonColor, 50%) &:active, &.active color brandColor ================================================ FILE: browser/styles/mixins/circle.styl ================================================ circle() border-radius 50% overflow hidden ================================================ FILE: browser/styles/mixins/fullsize.styl ================================================ fullsize() position absolute top 0 left 0 right 0 bottom 0 ================================================ FILE: browser/styles/mixins/input.styl ================================================ stripInput() border none border-bottom 1px solid borderColor padding 5px 15px transition 0.1s font-size 14px &:focus, &.focus border-bottom 1px solid brandBorderColor outline none borderInput() border solid 1px borderColor padding 5px 15px transition 0.1s font-size 14px &:focus, &.focus border-color brandBorderColor outline none ================================================ FILE: browser/styles/mixins/marked.styl ================================================ marked() font-size 14px div.math-rendered text-align center .math-failed background-color alpha(red, 0.1) color darken(red, 15%) padding 5px margin 5px 0 border-radius 5px sup position relative top -.4em font-size 0.8em vertical-align top sub position relative bottom -.4em font-size 0.8em vertical-align top a color brandColor text-decoration none padding 0 5px border-radius 5px margin -5px transition .1s display inline-block img vertical-align sub &:hover color lighten(brandColor, 5%) text-decoration underline background-color alpha(#FFC95C, 0.3) &:visited color brandColor &.lineAnchor padding 0 margin 0 display block font-size 0 height 0 hr border-top none border-bottom solid 1px borderColor margin 15px 0 h1, h2, h3, h4, h5, h6 margin 0 0 15px font-weight 600 *:not(a.lineAnchor) + h1, *:not(a.lineAnchor) + h2, *:not(a.lineAnchor) + h3, *:not(a.lineAnchor) + h4, *:not(a.lineAnchor) + h5, *:not(a.lineAnchor) + h6 margin-top 25px h1 font-size 1.8em border-bottom solid 2px borderColor line-height 2em h2 font-size 1.66em line-height 1.8em h3 font-size 1.33em line-height 1.6625em h4 font-size 1.15em line-height 1.4375em h5 font-size 1em line-height 1.25em h6 font-size 0.8em line-height 1em *:not(a.lineAnchor) + p, *:not(a.lineAnchor) + blockquote, *:not(a.lineAnchor) + ul, *:not(a.lineAnchor) + ol, *:not(a.lineAnchor) + pre margin-top 15px p line-height 1.9em margin 0 0 15px img max-width 100% strong, b font-weight bold em, i font-style italic s, del, strike text-decoration line-through u text-decoration underline blockquote border-left solid 4px brandBorderColor margin 0 0 15px padding 0 25px ul list-style-type disc padding-left 25px margin-bottom 15px li display list-item line-height 1.8em &>li>ul, &>li>ol margin 0 &>li>ul list-style-type circle &>li>ul list-style-type square ol list-style-type decimal padding-left 25px margin-bottom 15px li display list-item line-height 1.8em &>li>ul, &>li>ol margin 0 code font-family Monaco, Menlo, 'Ubuntu Mono', Consolas, source-code-pro, monospace padding 2px 4px border solid 1px alpha(borderColor, 0.3) border-radius 4px font-size 0.9em text-decoration none margin-right 2px *:not(a.lineAnchor) + code margin-left 2px pre padding 5px border solid 1px alpha(borderColor, 0.3) border-radius 5px overflow-x auto margin 0 0 15px line-height 1.35 code margin 0 padding 0 border none border-radius 0 pre border none margin -5px &>span.lineNumber font-family Monaco, Menlo, 'Ubuntu Mono', Consolas, source-code-pro, monospace display none float left margin 0 0.5em 0 -0.5em border-right 1px solid text-align right &>span display block padding 0 .5em 0 1em table width 100% margin 15px 0 25px thead tr background-color tableHeadBgColor th border-style solid padding 15px 5px border-width 1px 0 2px 1px border-color borderColor &:last-child border-right solid 1px borderColor tbody tr:nth-child(2n + 1) background-color tableOddBgColor tr:nth-child(2n) background-color tableEvenBgColor td border-style solid padding 15px 5px border-width 0 0 1px 1px border-color borderColor &:last-child border-right solid 1px borderColor ================================================ FILE: browser/styles/mixins/tooltip.styl ================================================ tooltip() position fixed z-index popupZIndex background-color transparentify(invBackgroundColor, 80%) color invTextColor padding 6px 15px font-size 12px font-weight normal line-height 20px white-space nowrap opacity 0 transition 0.1s pointer-events none ================================================ FILE: browser/styles/mixins/util.styl ================================================ borderBox() box-sizing border-box noSelect() -webkit-user-select none cursor default ================================================ FILE: browser/styles/shared/btn.styl ================================================ .btn-primary, .btn-default border-style solid border-width 1px background-image none height 44px padding 0 15px border-radius 5px box-sizing border-box font-size 1em font-family 'Lato' font-weight 400 transition 0.1s cursor pointer margin 0 5px .btn-block display block width 100% margin 0 auto .btn-square display inline-block width 44px padding 0 border-width 1px .btn-sm height 32px border-radius 16px &.btn-square width 32px .btn-primary border-color brandBorderColor background-color transparent color brandColor &:hover, &.hover, &:focus, &.focus border-color darken(brandBorderColor, 30%) color darken(brandColor, 30%) &:active, &.active background-color brandColor color white .btn-default border-color lightButtonColor background-color transparent color lightButtonColor &:hover, &.hover, &:focus, &.focus border-color darken(lightButtonColor, 50%) color darken(lightButtonColor, 50%) &:active, &.active border-color darken(brandBorderColor, 10%) background-color brandColor color white ================================================ FILE: browser/styles/theme/dark.styl ================================================ @import '../vars' themeDarkBackground = darken(#21252B, 10%) themeDarkModal = darken(#21252B, 10%) themeDarkList = #282C34 themeDarkPreview = #282C34 themeDarkSidebar = darken(#21252B, 10%) themeDarkText = #DDDDDD themeDarkBorder = lighten(themeDarkBackground, 20%) themeDarkTopicColor = #369dcd themeDarkTooltip = rgba(0, 0, 0, 0.7) themeDarkFocusText = #FFFFFF themeDarkFocusButton = lighten(themeDarkTopicColor, 30%) themeDarkBoxShadow = alpha(lighten(themeDarkTopicColor, 10%), 0.4); themeDarkTableOdd = themeDarkPreview themeDarkTableEven = darken(themeDarkPreview, 10%) themeDarkTableHead = themeDarkTableEven themeDarkTableBorder = themeDarkBorder themeDarkModalButtonDefault = themeDarkPreview themeDarkModalButtonDanger = #BF360C body[data-theme="dark"] background-color themeDarkBackground .Main .ArticleNavigator .userInfo .settingBtn .tooltip, .ArticleNavigator .ArticleNavigator-folders .ArticleNavigator-folders-header .addBtn .tooltip, .ArticleTopBar>.ArticleTopBar-left>.ArticleTopBar-left-search .tooltip, .ArticleTopBar>.ArticleTopBar-left .ArticleTopBar-left-control button.ArticleTopBar-left-control-new-post-button .tooltip .ArticleTopBar>.ArticleTopBar-right>button .tooltip, .ArticleTopBar>.ArticleTopBar-right>.ArticleTopBar-right-links-button-dropdown, .ArticleDetail .ArticleDetail-info .ArticleDetail-info-control>button .tooltip, .ArticleDetail .ArticleDetail-info .ArticleDetail-info-control .ShareButton-open-button .tooltip { background-color themeDarkTooltip } .ArticleNavigator border-color lighten(themeDarkBorder, 10%) background-color themeDarkSidebar .userInfo border-color themeDarkBorder .userName color themeDarkText .ArticleNavigator-folders border-color lighten(themeDarkBorder, 10%) background-color themeDarkSidebar .ArticleNavigator-folders-header border-color themeDarkBorder .title color themeDarkText .folderList, .folderList>button color themeDarkText .folderList>button transition 0.1s &:hover background-color lighten(themeDarkSidebar, 10%) &.active, $:active background-color darken(brandColor, 15%) .userInfo .settingBtn, .ArticleNavigator-folders .ArticleNavigator-folders-header .addBtn transition 0.1s color themeDarkText border none background-color lighten(themeDarkBackground, 10%) .userInfo .settingBtn:hover, .ArticleNavigator-folders .ArticleNavigator-folders-header .addBtn:hover background-color themeDarkTopicColor .userInfo .settingBtn:focus, .ArticleNavigator-folders .ArticleNavigator-folders-header .addBtn:focus background-color darken(themeDarkTopicColor, 20%) .ArticleTopBar color themeDarkText background-color themeDarkBackground .ArticleTopBar-left .ArticleTopBar-left-search input color themeDarkText background-color lighten(themeDarkBackground, 10%) .ArticleTopBar-left-control button.ArticleTopBar-left-control-new-post-button color themeDarkText background-color lighten(themeDarkBackground, 10%) &:hover color themeDarkText background-color themeDarkTopicColor &:focus color themeDarkText background-color darken(themeDarkTopicColor, 20%) .ArticleTopBar-right &>button color themeDarkText border none background-color lighten(themeDarkBackground, 10%) &:hover color themeDarkText background-color themeDarkTopicColor &:focus color themeDarkText background-color darken(themeDarkTopicColor, 20%) .ArticleList color themeDarkText border-color themeDarkBorder background-color themeDarkList .ArticleList-item color themeDarkText background-color themeDarkList &:hover background-color lighten(themeDarkList, 5%) .ArticleList-item-top .folderName color darken(themeDarkText, 15%) .divider border-color themeDarkBorder .ArticleDetail color themeDarkText border-color themeDarkBorder background-color themeDarkBackground .ArticleDetail-info .ArticleDetail-info-folder color themeDarkText background-color lighten(themeDarkBackground, 10%) .ArticleDetail-info-row2 .TagSelect .TagSelect-tags border-color themeDarkBorder background-color themeDarkBackground input color themeDarkText .ArticleDetail-info-control &>button, & .ShareButton-open-button transition 0.1s color themeDarkText border none background-color lighten(themeDarkBackground, 10%) &>button:hover, & .ShareButton-open-button:hover background-color themeDarkTopicColor &>button:focus, & .ShareButton-open-button:focus background-color darken(themeDarkTopicColor, 20%) & .ShareButton-dropdown color themeDarkText box-shadow 0px 0px 10px 1px themeDarkBoxShadow; border 1px solid themeDarkBorder; background-color themeDarkBackground & .ShareButton-dropdown>button color themeDarkText &:hover background-color darken(themeDarkTopicColor, 20%) .ArticleDetail-panel border-color themeDarkBackground .ArticleDetail-panel-header, .ArticleDetail-panel-header .ArticleDetail-panel-header-title input color themeDarkText border-color themeDarkBorder background-color themeDarkPreview .ArticleEditor .CodeEditor border-color themeDarkBorder border-radius 0 &>.ArticleDetail-panel-header .ArticleDetail-panel-header-mode transition 0.1s color themeDarkText background-color lighten(themeDarkBackground, 10%) input color themeDarkText &.idle border-color themeDarkBorder background-color themeDarkPreview &.idle:hover background-color themeDarkTopicColor &.edit .ModeSelect-options color themeDarkText border-color themeDarkBackground background-color themeDarkBackground .ModeSelect-options-item &:hover color lighten(themeDarkText, 100%) background-color darken(themeDarkTopicColor, 20%) .ModalBase .modal color themeDarkText background-color themeDarkModal box-shadow 0px 0px 10px 1px themeDarkBoxShadow; input color themeDarkText border-color lighten(themeDarkBackground, 10%) background-color lighten(themeDarkBackground, 10%) &:hover border-color themeDarkBorder &:focus border-color themeDarkTopicColor button &:hover background-color lighten(themeDarkBackground, 10%) .CreateNewFolder.modal .closeBtn transition 0.1s border-radius 24px color themeDarkText &:hover background-color darken(#BF360C, 10%) .confirmBtn background-color darken(brandColor, 10%) &:hover background-color brandColor .DeleteArticleModal.modal .control button transition 0.1s color themeDarkText border-color lighten(themeDarkModalButtonDefault, 20%) background-color themeDarkModalButtonDefault &:hover background-color: lighten(themeDarkModalButtonDefault, 10%) &:focus border-color themeDarkTopicColor &.danger background-color themeDarkModalButtonDanger border-color lighten(themeDarkModalButtonDanger, 30%) &:hover background-color: lighten(themeDarkModalButtonDanger, 10%) &:focus border-color lighten(themeDarkModalButtonDanger, 50%) .Preferences.modal .sectionInput input, .sectionSelect select .sectionMultiSelect .sectionMultiSelect-input select color themeDarkText border-color lighten(themeDarkBackground, 10%) background-color lighten(themeDarkBackground, 10%) &:hover border-color themeDarkBorder &:focus border-color themeDarkTopicColor .header border-color themeDarkBorder background-color darken(themeDarkModal, 40%) .nav border-color themeDarkBorder background-color darken(themeDarkModal, 20%) &>button &:hover color themeDarkFocusText background-color lighten(themeDarkModal, 10%) &.active, &:active background-color darken(brandColor, 15%) .section border-color themeDarkBorder &>.content &.AppSettingTab .description code color themeDarkText border-color darken(themeDarkBorder, 10%) background-color lighten(themeDarkPreview, 5%) &.FolderSettingTab .folderTable &>div border-color themeDarkBorder &:last-child border-color transparent &>div.FolderRow .sortBtns button transition 0.1s color themeDarkText &:hover color themeDarkFocusButton .folderColor &>button, .options color themeDarkText border-color themeDarkBorder &>button border-color lighten(themeDarkBackground, 10%) background-color lighten(themeDarkBackground, 10%) &:hover border-color themeDarkBorder &:focus border-color themeDarkTopicColor .options background-color themeDarkBackground &>div.FolderRow .folderName input, &>div.newFolder .folderName input color themeDarkText border-color lighten(themeDarkBackground, 10%) background-color lighten(themeDarkBackground, 10%) &:hover border-color themeDarkBorder &:focus border-color themeDarkTopicColor .folderControl button transition 0.1s color themeDarkText &:hover color themeDarkFocusButton .ArticleDetail-panel border-radius 0 // Markdown Preview .ArticleDetail .ArticleDetail-panel .ArticleEditor .MarkdownPreview color themeDarkText border-color themeDarkBorder background-color themeDarkPreview a:hover background-color alpha(lighten(brandColor, 30%), 0.2) !important code border-color darken(themeDarkBorder, 10%) background-color lighten(themeDarkPreview, 5%) pre code background-color transparent table thead tr background-color themeDarkTableHead th border-color themeDarkTableBorder &:last-child border-right solid 1px themeDarkTableBorder tbody tr:nth-child(2n + 1) background-color themeDarkTableOdd tr:nth-child(2n) background-color themeDarkTableEven td border-color themeDarkTableBorder &:last-child border-right solid 1px themeDarkTableBorder ================================================ FILE: browser/styles/vars.styl ================================================ borderColor = #D0D0D0 // using highlightenBorderColor = darken(borderColor, 20%) invBorderColor = #404849 brandBorderColor = #3FB399 focusBorderColor = #369DCD buttonBorderColor = #4C4C4C lightButtonColor = #898989 hoverBackgroundColor= transparentify(#444, 4%) // using inactiveTextColor = #888 // using textColor = #4D4D4D // using backgroundColor= white fontSize= 14px // using shadowColor= #C5C5C5 invBackgroundColor = #4C4C4C invTextColor = white btnColor = #888 btnHighlightenColor = #000 brandColor = #2BAC8F popupShadow = 0 0 5px 0 #888 tableHeadBgColor = white tableOddBgColor = #F9F9F9 tableEvenBgColor = white facebookColor= #3b5998 githubBtn= #201F1F // using successBackgroundColor= #E0F0D9 successTextColor= #3E753F errorBackgroundColor= #F2DEDE errorTextColor= #A64444 infoBackgroundColor= #D9EDF7 infoTextColor= #34708E popupZIndex= 500 ================================================ FILE: contributing.md ================================================ > [Please consider to contribute to the new Boost Note app too!](https://github.com/BoostIO/BoostNote.next) # Contributing to Boostnote (English) ### When you open an issue or a bug report There is an issue template for you to follow. Please provide as much information as you can according to the template. Thank you in advance for your help. ### When you open a pull request There is a pull request template for your to follow. Please fill in the template before submitting your code. Your pull request will be reviewed faster if we know exactly what it does. Make sure that you have: - Checked [`code_style.md`](docs/code_style.md) for information on code style - Write tests for your code and run test with the following command ``` npm run test ``` - Lint your code using the following command ``` npm run lint ``` ### Concerning Copyright By making a pull request you agree to transfer ownership of your code to BoostIO. This doesn't mean Boostnote will become a paid app. If we want to earn money, we will find other way. Potentially some kind of cloud storage, mobile app integration, or some premium features. GPL v3 is too strict to be compatible with another license, so we thought it might be necessary to replace the license with a more open one (like BSD, MIT) eventually. --- # Contributing to Boostnote (Russian) ### Когда у вас появляется сообщение об ошибке У нас нет шаблона, по которому вы должны описать ошибку. Просто расскажите, как вы получили ее **Вставьте скриншот Boostnote с открытым инструментом разработчика (dev tools)** Благодарим Вас за помощь! ### Об авторских правах Pull Request Если вы делаете pull request, значит вы согласны передать авторские права на изменения кода в BoostIO. Это не означает, что Boostnote станет платным приложением. Если мы захотим заработать немного денег, мы найдем другой способ. Например, использование облачного хранилища, интеграцией мобильных приложений или другими специальными функциями. Так как лицензия GPL v3 слишком строгая, чтобы быть совместимой с любой другой лицензией, мы думаем, что нужно заменить лицензию на более свободную (например, BSD, MIT). --- # Contributing to Boostnote (Korean) ### 이슈 또는 버그 리포트를 제출하는 절차 이슈를 제기할 때에 사용하는 양식(issue template)이 준비되어 있으니, 해당 양식에 맞추어 최대한 구체적인 정보를 첨부하여 주시기 바랍니다. 도움을 주셔서 감사합니다. ### Pull Request를 제출하는 절차 Pull Request에 사용하는 양식(pull request template)이 준비되어 있으니, 코드를 접수하기 전에 미리 해당 양식을 작성해 주시기 바랍니다. 코드가 해결하고자 하는 문제가 무엇인지 정확히 알면 저희가 훨씬 신속하게 해당 pull request를 검토할 수 있습니다. 다음 사항을 준수하여 주십시오: - [`code_style.md`](docs/code_style.md) 에 정리된 코드 스타일 정보를 확인할 것 - 테스트 코드를 작성하고, 아래와 같은 테스트 커맨드를 실행할 것 ``` npm run test ``` - 아래와 같은 린팅 커맨드로 코드를 확인할 것 ``` npm run lint ``` ### 저작권에 관한 기준 당신이 pull request를 요청하면, 코드 변경에 대한 저작권을 BoostIO에 양도한다는 것에 동의한다는 의미입니다. 이것은 Boostnote가 유료화가 되는 것을 의미하는 건 아닙니다. 만약 우리가 자금이 필요하다면, 우리는 클라우드 연동, 모바일 앱 통합 혹은 특수한 기능 같은 것을 사용해 수입 창출을 시도할 것입니다. GPL v3 라이센스는 다른 라이센스와 혼합해 사용하기엔 너무 엄격하므로, 우리는 BSD, MIT 라이센스와 같은 더 자유로운 라이센스로 교체하는 것을 생각하고 있습니다. --- # Contributing to Boostnote (Japanese) ### バグレポートに関してのissueを立てる時 イシューテンプレートがあります。このテンプレートに従って、できるだけ多くの情報を提供してください。 よろしくお願いします。 ### Pull requestを出す時 Pull requestのテンプレートがあります。このテンプレートを埋めてからコードをサブミットしてください。内容を正確に把握できるPull requestが作られていれば、迅速にレビューを行えます。 以下のことを必ず行ってください: - [`code_style.md`](docs/code_style.md)を読み、コーディングスタイルを確認する - 変更分のコードに対するテストコードを書き、以下のコマンドでテストを実行する ``` npm run test ``` - 以下のコマンドを使って、コードの静的解析を実行する ``` npm run lint ``` ### Pull requestの著作権について Pull requestをすることはその変化分のコードの著作権をBoostIOに譲渡することに同意することになります。 アプリケーションのLicenseをいつでも変える選択肢を残したいと思うからです。 これはいずれかBoostnoteが有料の商用アプリになる可能性がある話ではありません。 もし、このアプリケーションに料金が発生する時は、Boostnote専用のCloud storageの提供やMobile appとの連動、何か特殊なプレミアム機能の提供など形になります。 現在考えられているのは、GPL v3の場合、他のライセンスとの互換が不可能であるため、もしより自由なLicense(BSD, MIT)に変える時に改めて著作権者としてライセンスし直す選択肢を残すイメージです。 --- # Contributing to Boostnote (Simplified Chinese) ### 当您创建一个issue的时候 我们对您的issue格式没有要求,但是我们有一个请求: **如果可能,请在开发者模式打开的情况下,为我们提供屏幕截图** (您可以通过`Ctrl+Shift+I`打开开发者模式)。 感谢您对我们的支持。 ### 关于您提供的Pull Request的著作权(版权)问题 如果您提供了一个Pull Request,这表示您将您所修改的代码的著作权移交给BoostIO。 这并不表示Boostnote会成为一个需要付费的软件。如果我们想获得收益,我们会尝试一些其他的方法,比如说云存储、绑定手机软件等。 因为GPLv3过于严格,不能和其他的一些协议兼容,所以我们有可能在将来会把BoostNote的协议改为一些较为宽松的协议,比如说BSD、MIT。 --- # Contributing to Boostnote (Français) ### Lorsque vous signalez un problème ou un bug Il n'y a pas de modèle pour un signaler problème. Mais nous vous demandons : **Merci de founir une capture d'écran de Boostnote avec l'outil de développement ouvert** (vous pouvez l'ouvrir avec `Ctrl+Shift+I`) Merci en avance pour votre aide. ### À propos des droits d'auteurs et des requêtes (`Pull Request`) Si vous faites une requête, vous acceptez de transmettre les modifications du code à BoostIO. Cela ne veut pas dire que Boostnote deviendra une application payante. Si nous voulons gagner de l'argent, nous trouverons un autre moyen, comme un service de sauvegarde sur le Cloud, une application mobile ou des options payantes. Puisque GPL v3 est trop strict pour être compatible avec n'importe quelle autre licence, nous pensons avoir un jour besoin de la remplacer avec une licence bien plus libre (comme BSD, MIT). ================================================ FILE: dev-scripts/dev.js ================================================ const webpack = require('webpack') const WebpackDevServer = require('webpack-dev-server') const config = require('../webpack.config') const signale = require('signale') const { spawn } = require('child_process') const electron = require('electron') const port = 8080 let server = null let firstRun = true const options = { publicPath: config.output.publicPath, hot: true, inline: true, quiet: true } function startServer() { config.plugins.push(new webpack.HotModuleReplacementPlugin()) config.entry.main.unshift( `webpack-dev-server/client?http://localhost:${port}/`, 'webpack/hot/dev-server' ) const compiler = webpack(config) server = new WebpackDevServer(compiler, options) return new Promise((resolve, reject) => { server.listen(port, 'localhost', function(err) { if (err) { reject(err) } signale.success(`Webpack Dev Server listening at localhost:${port}`) signale.watch(`Waiting for webpack to bundle...`) compiler.plugin('done', stats => { if (!stats.hasErrors()) { signale.success(`Bundle success !`) resolve() } else { if (!firstRun) { console.log(stats.compilation.errors[0]) } else { firstRun = false reject(stats.compilation.errors[0]) } } }) }) }) } function startElectron() { spawn(electron, ['--hot', './index.js'], { stdio: 'inherit' }) .on('close', () => { server.close() }) .on('error', err => { signale.error(err) server.close() }) .on('disconnect', () => { server.close() }) .on('exit', () => { server.close() }) } startServer() .then(() => { startElectron() signale.success('Electron started') }) .catch(err => { signale.error(err) process.exit(1) }) ================================================ FILE: dictionaries/de_DE/LICENSE ================================================ From https://github.com/elastic/hunspell/blob/master/dicts/de_DE/README_de_DE.txt GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc. 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Library General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS How to Apply These Terms to Your New Programs If you develop a new program, and you want it to be of the greatest possible use to the public, the best way to achieve this is to make it free software which everyone can redistribute and change under these terms. To do so, attach the following notices to the program. It is safest to attach them to the start of each source file to most effectively convey the exclusion of warranty; and each file should have at least the "copyright" line and a pointer to where the full notice is found. Copyright (C) 19yy This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation; either version 2 of the License, or (at your option) any later version. This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details. You should have received a copy of the GNU General Public License along with this program; if not, write to the Free Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA Also add information on how to contact you by electronic and paper mail. If the program is interactive, make it output a short notice like this when it starts in an interactive mode: Gnomovision version 69, Copyright (C) 19yy name of author Gnomovision comes with ABSOLUTELY NO WARRANTY; for details type `show w'. This is free software, and you are welcome to redistribute it under certain conditions; type `show c' for details. The hypothetical commands `show w' and `show c' should show the appropriate parts of the General Public License. Of course, the commands you use may be called something other than `show w' and `show c'; they could even be mouse-clicks or menu items--whatever suits your program. You should also get your employer (if you work as a programmer) or your school, if any, to sign a "copyright disclaimer" for the program, if necessary. Here is a sample; alter the names: Yoyodyne, Inc., hereby disclaims all copyright interest in the program `Gnomovision' (which makes passes at compilers) written by James Hacker. , 1 April 1989 Ty Coon, President of Vice This General Public License does not permit incorporating your program into proprietary programs. If your program is a subroutine library, you may consider it more useful to permit linking proprietary applications with the library. If this is what you want to do, use the GNU Library General Public License instead of this License. ================================================ FILE: dictionaries/de_DE/de_DE.aff ================================================ SET ISO8859-1 TRY esianrtolcdugmphbyfvkwäüößáéêàâñESIANRTOLCDUGMPHBYFVKWÄÜÖ PFX G N 1 PFX G 0 ge . PFX U Y 1 PFX U 0 un . PFX V Y 1 PFX V 0 ver . SFX F N 7 SFX F 0 nen in SFX F e in e SFX F e innen e SFX F 0 in [^i]n SFX F 0 innen [^i]n SFX F 0 in [^en] SFX F 0 innen [^en] SFX L N 12 SFX L 0 tlich n SFX L 0 tliche n SFX L 0 tlicher n SFX L 0 tliches n SFX L 0 tlichem n SFX L 0 tlichen n SFX L 0 lich [^n] SFX L 0 liche [^n] SFX L 0 licher [^n] SFX L 0 liches [^n] SFX L 0 lichem [^n] SFX L 0 lichen [^n] SFX H N 2 SFX H 0 heit . SFX H 0 heiten . SFX K N 2 SFX K 0 keit . SFX K 0 keiten . SFX M N 12 SFX M 0 chen [^s][^s] SFX M 0 chens [^s][^s] SFX M 0 chen [^e] SFX M 0 chens [^e] SFX M ass ässchen ass SFX M ass ässchens ass SFX M oss össchen oss SFX M oss össchens oss SFX M uss üsschen uss SFX M uss üsschens uss SFX M e chen e SFX M e chens e SFX A Y 46 SFX A 0 r e SFX A 0 n e SFX A 0 m e SFX A 0 s e SFX A 0 e [^elr] SFX A 0 er [^elr] SFX A 0 en [^elr] SFX A 0 em [^elr] SFX A 0 es [^elr] SFX A 0 e [^e][rl] SFX A 0 er [^e][rl] SFX A 0 en [^e][rl] SFX A 0 em [^e][rl] SFX A 0 es [^e][rl] SFX A 0 e [^u]er SFX A 0 er [^u]er SFX A 0 en [^u]er SFX A 0 em [^u]er SFX A 0 es [^u]er SFX A er re uer SFX A er rer uer SFX A er ren uer SFX A er rem uer SFX A er res uer SFX A 0 e [eil]el SFX A 0 er [eil]el SFX A 0 en [eil]el SFX A 0 em [eil]el SFX A 0 es [eil]el SFX A el le [^eil]el SFX A el ler [^eil]el SFX A el len [^eil]el SFX A el lem [^eil]el SFX A el les [^eil]el SFX A lig elig [^aeiouhlräüö]lig SFX A lig elige [^aeiouhlräüö]lig SFX A lig eliger [^aeiouhlräüö]lig SFX A lig eligen [^aeiouhlräüö]lig SFX A lig eligem [^aeiouhlräüö]lig SFX A lig eliges [^aeiouhlräüö]lig SFX A erig rig [^hi]erig SFX A erig rige [^hi]erig SFX A erig riger [^hi]erig SFX A erig rigen [^hi]erig SFX A erig rigem [^hi]erig SFX A erig riges [^hi]erig SFX C Y 80 SFX C 0 ere [^elr] SFX C 0 erer [^elr] SFX C 0 eren [^elr] SFX C 0 erem [^elr] SFX C 0 eres [^elr] SFX C 0 re e SFX C 0 rer e SFX C 0 ren e SFX C 0 rem e SFX C 0 res e SFX C 0 ere [^e][lr] SFX C 0 erer [^e][lr] SFX C 0 eren [^e][lr] SFX C 0 erem [^e][lr] SFX C 0 eres [^e][lr] SFX C el lere el SFX C el lerer el SFX C el leren el SFX C el lerem el SFX C el leres el SFX C er rere uer SFX C er rerer uer SFX C er reren uer SFX C er rerem uer SFX C er reres uer SFX C 0 ere [^u]er SFX C 0 erer [^u]er SFX C 0 eren [^u]er SFX C 0 erem [^u]er SFX C 0 eres [^u]er SFX C lig eligere [^aeiouhlräüö]lig SFX C lig eligerer [^aeiouhlräüö]lig SFX C lig eligeren [^aeiouhlräüö]lig SFX C lig eligerem [^aeiouhlräüö]lig SFX C lig eligeres [^aeiouhlräüö]lig SFX C erig rigere [^hi]erig SFX C erig rigerer [^hi]erig SFX C erig rigeren [^hi]erig SFX C erig rigerem [^hi]erig SFX C erig rigeres [^hi]erig SFX C 0 este [kßsuxz] SFX C 0 ester [kßsuxz] SFX C 0 esten [kßsuxz] SFX C 0 estem [kßsuxz] SFX C 0 estes [kßsuxz] SFX C 0 ste et SFX C 0 ster et SFX C 0 sten et SFX C 0 stem et SFX C 0 stes et SFX C 0 este [^e]t SFX C 0 ester [^e]t SFX C 0 esten [^e]t SFX C 0 estem [^e]t SFX C 0 estes [^e]t SFX C 0 ste [^kßstxz] SFX C 0 ster [^kßstxz] SFX C 0 sten [^kßstxz] SFX C 0 stem [^kßstxz] SFX C 0 stes [^kßstxz] SFX C 0 ste nd SFX C 0 ster nd SFX C 0 sten nd SFX C 0 stem nd SFX C 0 stes nd SFX C 0 este [^n]d SFX C 0 ester [^n]d SFX C 0 esten [^n]d SFX C 0 estem [^n]d SFX C 0 estes [^n]d SFX C lig eligste [^aeiouhlräüö]lig SFX C lig eligster [^aeiouhlräüö]lig SFX C lig eligsten [^aeiouhlräüö]lig SFX C lig eligstem [^aeiouhlräüö]lig SFX C lig eligstes [^aeiouhlräüö]lig SFX C erig rigste [^hi]erig SFX C erig rigster [^hi]erig SFX C erig rigsten [^hi]erig SFX C erig rigstem [^hi]erig SFX C erig rigstes [^hi]erig SFX E Y 1 SFX E 0 e . SFX f Y 4 SFX f ph f ph SFX f ph fen ph SFX f phie fie phie SFX f phie fien phie SFX N Y 1 SFX N 0 n . SFX P Y 1 SFX P 0 en . SFX p Y 24 SFX p auf äufe auf SFX p auf äufen auf SFX p aus äuser haus SFX p aus äusern haus SFX p arkt ärkte markt SFX p arkt ärkten markt SFX p ang änge ang SFX p ang ängen ang SFX p uß üße uß SFX p uß üßen uß SFX p oß öße oß SFX p oß ößen oß SFX p aum äume aum SFX p aum äumen aum SFX p ag äge ag SFX p ag ägen ag SFX p ug üge ug SFX p ug ügen ug SFX p all älle all SFX p all ällen all SFX p ass ässe ass SFX p ass ässen ass SFX p uss üsse uss SFX p uss üssen uss SFX R Y 3 SFX R 0 er [^e] SFX R 0 ern [^e] SFX R 0 r e SFX S Y 1 SFX S 0 s . SFX q Y 2 SFX q s sse s SFX q s ssen s SFX Q Y 3 SFX Q s sse s SFX Q s ssen s SFX Q s sses s SFX T Y 1 SFX T 0 es . SFX J Y 12 SFX J n ung [bgkpßsz]eln SFX J n ungen [bgkpßsz]eln SFX J eln lung eln SFX J n ung ern SFX J en ung en SFX J eln lungen eln SFX J n ungen ern SFX J en ungen en SFX J 0 ung [^n] SFX J 0 ungen [^n] SFX J el lung el SFX J el lungen el SFX B N 12 SFX B n bar e[lr]n SFX B n bare e[lr]n SFX B n baren e[lr]n SFX B n barer e[lr]n SFX B n bares e[lr]n SFX B n barem e[lr]n SFX B en bar en SFX B en bare en SFX B en baren en SFX B en barer en SFX B en bares en SFX B en barem en SFX D Y 6 SFX D 0 d n SFX D 0 de n SFX D 0 den n SFX D 0 der n SFX D 0 des n SFX D 0 dem n SFX W Y 8 SFX W en 0 [^imn]en SFX W en 0 eien SFX W en 0 [^bght][mn]en SFX W en 0 [^c]hnen SFX W n 0 e[lr]n SFX W st 0 [^s]st SFX W t 0 sst SFX W t 0 [^s]t SFX I Y 16 SFX I n 0 en SFX I eln le eln SFX I n e eln SFX I ern re ern SFX I n e ern SFX I n t e[lr]n SFX I n t [dt]en SFX I en t [^dimnt]en SFX I en t eien SFX I n t [^e]ien SFX I n t chnen SFX I en t [^c]h[mn]en SFX I n t [^aäehilmnoöuür][mn]en SFX I en t [aäeilmnoöuür][mn]en SFX I n e un SFX I n t un SFX X Y 26 SFX X n t e[lr]n SFX X n t [dtw]en SFX X en t eien SFX X n t [^e]ien SFX X en t [^ditmnw]en SFX X n t chnen SFX X en t [^c]h[mn]en SFX X n t [^aäehilmnoöuür][mn]en SFX X en t [aäeilmnoöuür][mn]en SFX X n t un SFX X st 0 tst SFX X n st e[lr]n SFX X n st [dtw]en SFX X en st [^dimnßstwzx]en SFX X en st eien SFX X n st [^e]ien SFX X n st chnen SFX X en st [^c]h[mn]en SFX X n st [^aäehilmnoöuür][mn]en SFX X en st [aäeilmnoöuür][mn]en SFX X n st un SFX X n st [ßsxz]en SFX X n st ssen SFX X n st schen SFX X t st [^sz]t SFX X t est zt SFX Y Y 36 SFX Y n te e[lr]n SFX Y n te [dtw]en SFX Y en te [^dimntw]en SFX Y en te eien SFX Y n te [^e]ien SFX Y n te chnen SFX Y en te [^c]h[mn]en SFX Y n te [^aäehilmnoöuür][mn]en SFX Y en te [aäeilmnoöuür][mn]en SFX Y n test e[lr]n SFX Y n test [dtw]en SFX Y en test [^dimntw]en SFX Y en test eien SFX Y n test [^e]ien SFX Y n test chnen SFX Y en test [^c]h[mn]en SFX Y n test [^aäehilmnoöuür][mn]en SFX Y en test [aäeilmnoöuür][mn]en SFX Y n tet e[lr]n SFX Y n tet [dtw]en SFX Y en tet [^dimntw]en SFX Y en tet eien SFX Y n tet [^e]ien SFX Y n tet chnen SFX Y en tet [^c]h[mn]en SFX Y n tet [^aäehilmnoöuür][mn]en SFX Y en tet [aäeilmnoöuür][mn]en SFX Y n ten e[lr]n SFX Y n ten [dtw]en SFX Y en ten [^dimntw]en SFX Y en ten eien SFX Y n ten [^e]ien SFX Y n ten chnen SFX Y en ten [^c]h[mn]en SFX Y n ten [^aäehilmnoöuür][mn]en SFX Y en ten [aäeilmnoöuür][mn]en SFX Z Y 13 SFX Z 0 st [^hßsz] SFX Z 0 st [^c]h SFX Z 0 st [^s]ch SFX Z 0 est [dfkstz] SFX Z 0 est ch SFX Z 0 est [au]ß SFX Z 0 est ieß SFX Z 0 est [io]ss SFX Z 0 t [^dt] SFX Z 0 et [dt] SFX Z 0 n e SFX Z 0 en ie SFX Z 0 en [^e] SFX O Y 21 SFX O n tes e[lr]n SFX O n tes [dtw]en SFX O en tes [^dmntw]en SFX O n tes chnen SFX O en tes [^c]h[mn]en SFX O n tes [^aäehilmnoöuür][mn]en SFX O en tes [aäeilmnoöuür][mn]en SFX O n ter e[lr]n SFX O n ter [dtw]en SFX O en ter [^dmntw]en SFX O n ter chnen SFX O en ter [^c]h[mn]en SFX O n ter [^aäehilmnoöuür][mn]en SFX O en ter [aäeilmnoöuür][mn]en SFX O n tem e[lr]n SFX O n tem [dtw]en SFX O en tem [^dmntw]en SFX O n tem chnen SFX O en tem [^c]h[mn]en SFX O n tem [^aäehilmnoöuür][mn]en SFX O en tem [aäeilmnoöuür][mn]en REP 15 REP f ph REP ph f REP ß ss REP ss ß REP s ss REP ss s REP i ie REP ie i REP ee e REP o oh REP oh o REP a ah REP ah a REP e eh REP eh e ================================================ FILE: dictionaries/de_DE/de_DE.dic ================================================ 80470 Äbte/N Äbtissin/F Ächtens Ächtung/P Äcker/N Äderchen/S Äffin/F Ägide Ägypten/S Ägypter/FNS Ähnlichkeit/P Ähre/N Ährenkranz Ältestenrat/T Ämter/N Ämterverteilung Änderns Änderung/P Änderungsantrag/STp Änderungsgesetz/E Änderungsindex Änderungsketten Änderungsrichtlinie Änderungsstand Änderungstabelle/N Änderungswünsche/N Änderungswunsch/ST Änderungszeichnung/P Änderungszeit/P Ängste/N Ängstigens Ängstigung/P Ängstlichkeit Äpfel/N Äquator/S Äquatorialafrika Äquatorialströmung Äquivalents Äquivalenz/P Äquivalenzklasse/N Äquivalenzklassenbildung Äquivalenzrelation/P Ära Ärgernis/Qq Ärgers Ärmel/NS Ärmelkanal/S Ärmeltrick/S Ärsche/N Ärzte/FN Ärzteberuf/EPST Ärztebesprechung/P Ärzteblatt/ST Ärztegruppe/N Ärztehonorar/EPS Ärztekammer/N Ärzteorganisation/P Ärzteroman/P Ärzteschaft Ärztestreik/PS Ärztetag/EPST Ärztetreffen/S Ärztetreuhand Ärzteverbände/N Ärzteverband/ST Ärztevereinigung/P Ästhet/P Ästhetik Äthanol/S Äther/S Äthiopien Äthiopier/FNS Äthyl Ätna Ätzens Ätzung/P Äugelchen/S Äußerlichkeit/P Äußerns Äußerung/P Äxte/N ABC ABM ACL ACPI ADAC ADSL AEG AG AGP AI AKW AMD ANSI AOK AOL API ARD ASCII ASTA AT ATM Aachen/S Aal/EPST Aas/T Aasgeier/NS Abänderns Abänderung/P Abänderungsantrag/STp Abänderungsvorschlag/STp Abakus Abarbeitens Abarbeitung/P Abarbeitungsgeschwindigkeit/P Abarbeitungsreihenfolge/N Abart/P Abb Abb. Abbau/S Abbaubarkeit/P Abbaufortschritt/S Abbaufortschrittsmessung Abbaufront Abbaugerät Abbaugeräusche Abbauleistung Abbauleitzentrale/N Abbaumaschine/N Abbaumaterial/S Abbaumenge/N Abbaumöglichkeit/P Abbausituation/P Abbausysteme/N Abbauwerkzeug/EPST Abberufens Abberufung/P Abbestellens Abbestellung/P Abbild/JRT Abblendlicht/RST Abblendschalter/NS Abbrände/N Abbrand/S Abbremsens Abbremsgeschwindigkeit/P Abbremsung/P Abbremsverhalten/S Abbruch/S Abbrucharbeit/P Abbruchbedingung/P Abbruchobjekt/EPST Abbruchunternehmen/S Abbruchunternehmer/S Abbuchens Abbuchung/P Abdankens Abdankung/P Abdeckblech/EPS Abdeckens Abdecker/NS Abdeckerei/P Abdeckkappe/N Abdeckklappe/N Abdeckmaterial/S Abdeckplane/N Abdeckplatte/N Abdeckrahmen/S Abdeckung/P Abdichtens Abdichtfuge/N Abdichtung/P Abdrift Abdrosselns Abdrosselung/P Abdrosslung/P Abdruck/ST Abel/S Abend/EP Abendandacht/P Abendanzug/STp Abendblatt/ST Abendbrot Abenddämmerung/P Abendessen/S Abendgala Abendgarderobe/N Abendgebete/NS Abendgesellschaft/P Abendgymnasien Abendgymnasium/S Abendhimmel/NS Abendkleid/RST Abendkurs/EPT Abendland/ST Abendluft Abendmahl/S Abendnachricht/P Abendprogramm/EPS Abendröte/N Abendrots Abendschau/P Abendschuhe/N Abendschule/N Abendsonne/N Abendspaziergang/STp Abendstern/EPST Abendstudio Abendunterhaltung/P Abendunterricht Abendvorstellung Abendwind/E Abendzeitung/P Abenteuer/NS Abenteuerfilm/EPS Abenteuerlust Abenteuerreise/N Abenteuerroman/EPS Abenteurer/FNS Abenteurernatur/P Abenteurertyp/P Aberglaube/N Aberkennens Aberkennung/P Aberwitz Abessinien Abessinienkrieg Abeter/S Abfahrten Abfahrtshang/Sp Abfahrtsläufer/FN Abfahrtsrennen Abfahrtsstelle/N Abfahrtsstrecke/N Abfall/Sp Abfallaufbereitung Abfalleimer/N Abfallgraben Abfallkurve/N Abfallpapier/S Abfallprodukt/EPST Abfallstoffe/N Abfangjäger/NS Abfangrakete/N Abfassens Abfassung/P Abfertigens Abfertigung/P Abfertigungsschalter/NS Abfertigungsstelle/N Abfindens Abfindung/P Abflachens Abflachung/P Abflug/Sp Abflugflughafen Abflugland Abfluss/Tp Abflusskanäle/N Abflusskanal/S Abflussrohr/EPS Abflussverstopfung/P Abfördermenge/N Abfolge/N Abfragesprache/N Abführens Abführmittel/NS Abführung/P Abfüllanlage/N Abfüllens Abfüllfiliale/N Abfüllstation/P Abfüllung/P Abgabe Abgabebereitschaft Abgabedruck Abgabengesetze/N Abgabenneigung Abgabepreise/N Abgaberate/N Abgabesache/N Abgang/Sp Abgangszeugnis/Qq Abgas/EPT Abgasentgiftung Abgaswerte Abgelten/JS Abgeordnetenausweis/E Abgeordnetenbänke/N Abgeordnetengruppe/N Abgeordnetenhaus/Tp Abgeordnetenimmunität Abgeordnetenmandat/ES Abgeschiedenheit Abgeschlossenheit Abgespanntheit Abglanz Abgleich Abgötter/N Abgott/S Abgrenzens Abgrenzung/P Abgriff/P Abgriffspannung/P Abgründe/N Abgrund/ST Abguss/Tp Abhängigkeit/P Abhängigkeitsverhältnis/Qq Abhärten/JS Abhandeln/JS Abhang/S Abhebens Abhebung/P Abhilfe/N Abhörgerät/EPST Abhörmaßnahme/N Abhörmöglichkeit/P Abholens Abholung/P Abi Abitur/S Abiturient/FP Abiturientenzahlen Abk Abk. Abkapselns Abkapselung/P Abkapslung/P Abkehr Abklärens Abklärung/P Abklatsch Abklingverhalten Abkömmling/EPS Abkocher/NS Abkommens Abkopplen/JS Abkühlens Abkühlung/P Abkühlungspause Abkürzens Abkürzung/P Abkürzungszeichen/S Abkunft Abladens Abladeplätze/N Abladeplatz/T Ablader/NS Abladung/P Abladungspreise Ablage Ablageraum/STp Ablagerns Ablagerung/P Ablagerungsplatz Ablass/T Ablassbrief/EPST Ablasshandel/S Ablativ/S Ablauf/STp Ablaufdiagramm/EPS Ablauffolge/N Ablaufsteuerung/P Ablaufsteuerwerk/S Ablaufverkehr/S Ablaut/EPST Ableger/NS Ablehnens Ablehnung/P Ableistens Ableistung/P Ableitens Ableitung/P Ableitungskanäle/N Ableitungskanal/S Ableitungsregel/N Ablenkbarkeit/P Ablenkens Ablenkung/P Ablenkungsmanöver/NS Ablesens Ableseperiode Ablesung/P Ablichtens Ablichtung/P Ablieferns Ablieferung/P Ablieferungsgewicht Ablösens Ablösesumme/N Ablösung/P Ablösungskredit Abmärsche/N Abmachens Abmachung/P Abmagerns Abmagerung/P Abmagerungskuren Abmahnens Abmahner/NS Abmahnung/P Abmarsch/S Abmeldens Abmeldung/P Abmessens Abmessung/P Abmilderns Abmilderung/P Abmischens Abmischung/P Abnahme Abnahmebescheinigung/P Abnahmemenge/N Abnahmepreis/EPT Abnahmeprotokoll/PS Abnahmestückzahl/P Abnehmer/NS Abnehmerkreis/EPT Abnehmerschaft Abneigen/JS Abnützens Abnützung/P Abnutzens Abnutzung/P Abnutzungskosten Abo Abonnement/S Abonnementsabbestellung/P Abonnementsangebot/E Abonnementsgebühr/P Abonnementspreis/EPT Abonnementvorstellung/P Abonnent/P Abordnens Abordnung/P Abort/EPST Abortfrau/P Abortus Abplatten/JS Abprall/ST Abraham/S Abraum/S Abrechnens Abrechnung/P Abrechnungsperiode Abrechnungsunterlagen Abrechnungsverfahren/S Abrechnungszeitraum/STp Abrede/N Abreibens Abreibung/P Abreißkante/N Abreißvorrichtung Abreisetag/EPST Abrieb Abriegelns Abriegelung/P Abrieglung/P Abrissbirne/N Abrisse/S Abrisskante/N Abrollwiderstand/T Abrüstens Abrüstung/P Abrüstungsbeteuerung/P Abrüstungsdebatte/N Abrüstungsexperte/N Abrüstungsfrage/N Abrüstungsgespräch/EPT Abrüstungskommission/P Abrüstungskonferenz/P Abrüstungspolitik Abrüstungsproblem/PS Abrüstungsrede/N Abrüstungsverhandlung/P Abrüstungsvorschlag/Sp Abruf/JS Abrufauftrag/STp Abrundens Abrundung/P Abs Abs. Absätze/N Absahner/FNS Absatz/T Absatzaussicht/P Absatzausweitung Absatzeinbuße/N Absatzende/N Absatzerfahrung/P Absatzfinanzierung/P Absatzflaute/N Absatzförderung/P Absatzgebiete/NS Absatzkonjunktur Absatzkosten Absatzkrise/N Absatzländer/N Absatzmarkt/STp Absatzmöglichkeit/P Absatzproblem/EPS Absatzrückgang/S Absatzsteigerung/P Absatzstockung/P Absatzverhältnis/Qq Absatzverluste/N Absatzvolumen/S Absatzzahl/P Absatzzuwachs Abschätzens Abschätzung/P Abschaffens Abschaffung/P Abschaltens Abschaltgrenze/N Abschaltkriterien Abschaltrelais Abschaltsystem Abschaltung/P Abschaltvorgang/Sp Abschaum/ST Abscheidens Abscheider/NS Abscheidung/P Abscheu/S Abscheulichkeit/P Abschiebens Abschiebung/P Abschiede/S Abschieds Abschiedsbesuch/EPS Abschiedsbrief/EPST Abschiedsempfang Abschiedsfeier/N Abschiedsgeschenk/EPS Abschiedsgesuche/NS Abschiedskuss/Tp Abschiedsparade/N Abschiedsrede/N Abschiedsschmerz/EPT Abschiedsspiel/EPS Abschiedstrank/EST Abschiedswort/EPST Abschirmdienst Abschirmeffekt/EPS Abschirmens Abschirmplatte/N Abschirmung/P Abschirmzuleitung/P Abschlachtens Abschlachtung/P Abschlagszahlung/P Abschleppdienst/EPT Abschleppfahrer/S Abschleppfirma Abschleppgurt/PS Abschleppseil/EPST Abschleppwagen/S Abschluss/Tp Abschlussarbeit/P Abschlussball/Sp Abschlussbericht/EPST Abschlussbesprechung/P Abschlusseinheit/P Abschlusserklärung/P Abschlussexamen/S Abschlussexamina Abschlussfeier/N Abschlussformel/N Abschlussgespräch/EPST Abschlussprotokoll/EPS Abschlussprüfung/P Abschlussrechnung Abschlussreferat/S Abschlussschnitt/PST Abschlussspiel/EPS Abschlussspringen/S Abschlussstecker/NS Abschlusstätigkeit/P Abschlussteil/EPS Abschlusstreffen/S Abschlussuntersuchung/P Abschlussverhandlung/P Abschlusswiderstand/S Abschlusszahlung/P Abschlusszeichen/S Abschlusszeugnis/Qq Abschlussziffer/N Abschmiernippel/NS Abschneider Abschneidevorrichtung/P Abschneidvorrichtung/P Abschnittes Abschnitts Abschnürens Abschnürung/P Abschöpfens Abschöpfung/P Abschottens Abschottklappe/N Abschottung/P Abschottzylinder/NS Abschreckens Abschreckung/P Abschreckungseffekt/EPST Abschreckungserfolg/PS Abschreckungsmittel/NS Abschreckungswaffe/N Abschreibegrenze/N Abschreibens Abschreiber/NS Abschreibung/P Abschreibungsdauer Abschreibungserfordernis/Qq Abschreibungsgeschäft/EPST Abschreibungshotel/S Abschreibungsmöglichkeit/P Abschreibungsvolumen/S Abschrift/P Abschürfens Abschürfung/P Abschuss/Tp Abschussbasen Abschussbasis Abschussliste Abschussrampe/N Abschussstelle/N Abschussvorrichtung/P Abschwächens Abschwächung/P Abschweifens Abschweifung/P Abschwung/S Abseitsposition Abseitsstellung Absendens Absender/NS Absendung/P Absenkens Absenkung/P Absetzbewegung/P Absetzens Absetzung/P Absetzungsantrag/Sp Absicherns Absicherung/P Absicht/P Absichtlichkeit Absichtserklärung/P Absinkens Absolutheitsanspruch Absolutismus Absolutposition Absolvent/FP Absolvierens Absolvierung/P Absonderns Absonderung/P Absorption/P Abspaltens Abspaltung/P Abspannwerke/N Abspeicherung/P Absperrens Absperrmaßnahme/N Absperrung/P Abspieler/NS Absprache Absprünge/N Absprung/S Absprunghäfen Abspulens Abstände/N Abstammens Abstammung/P Abstammungslehre/N Abstand/ST Abstandhalter/NS Abstandsberechnung/P Abstandsbereich/P Abstandsecho/S Abstandsgrenze/N Abstandsplättchen Abstandswerte/NS Abstecher/NS Abstellens Abstellfläche/N Abstellgleis/EPT Abstellkammer/N Abstellraum/STp Abstellung/P Abstellzeit/P Abstieg/EPS Abstiegskampf/S Abstiegskandidat/P Abstimmens Abstimmung/P Abstimmungsbedarf Abstimmungsergebnis/Qq Abstimmungsfrage/N Abstimmungsmechanismus Abstimmungsmodi Abstimmungsmodus Abstimmungsniederlage/N Abstimmungsübertragung/P Abstimmungsunterschied/ES Abstinenz Abstoß/JTp Abstrahlcharakteristik/P Abstrahlwinkel/NS Abstraktion/P Abstraktionsebene/N Abstraktionsfunktion/P Abstraktionsgrad Abstraktionsniveau/S Abstreifer/NS Abstrich/EPS Abstützens Abstützung/P Abstufens Abstufung/P Absturz/T Absturzgebiet/EPST Absturzort/ES Absturzursache/N Absud/EPT Absurdität/P Abszess/EPT Abszisse/N Abt/T Abtastens Abtastgrenze/N Abtasthebel/NS Abtastrate/N Abtastung/P Abtauchens Abtei/P Abteil/JS Abteilfenster/S Abteilungsleiter/FNS Abteilungsstufe Abtransport Abtreibens Abtreibung/P Abtreibungsparagraph/Pf Abtreibungspille/N Abtrennens Abtrennung/P Abtretens Abtreter/N Abtretung/P Abtrieb/S Abtritt/EPS Abtrünnigkeit Aburteilens Aburteilung/P Abwägens Abwägung/P Abwälzens Abwälzung/P Abwärme Abwärtsbewegung/P Abwärtskompatibliltät Abwärtsrevision Abwärtstrend/S Abwässer/N Abwahl/P Abwandelns Abwandelung/P Abwanderns Abwanderung/P Abwandlung/P Abwasch Abwaschbecken/S Abwasser/S Abwassertechnik Abwechselns Abwechselung/P Abwechslung/P Abweg/EPS Abwehr Abwehraufgabe/N Abwehrbereitschaft Abwehrbuch Abwehrchef/S Abwehrdienst/T Abwehrdienststelle/N Abwehrfehler/N Abwehrkämpfe/N Abwehrkräfte/N Abwehrmauer/N Abwehrmöglichkeit/P Abwehrorgan/P Abwehrpotential/EPS Abwehrpotenzial/EPS Abwehrriegel/N Abwehrschlacht/P Abwehrspieler/NS Abwehrstelle/N Abwehrstoff/EPST Abwehrsystem/EPS Abweichens Abweichung/P Abweisens Abweisung/P Abwendens Abwendung/P Abwerbens Abwerbung/P Abwertens Abwertung/P Abwertungsanhänger/NS Abwertungsländer/N Abwertungsspanne/N Abwesenheit Abwickelns Abwickelrichtung Abwickelung/P Abwicklung/P Abwind/PT Abwrackgelände/NS Abwürfe/N Abwurf/ST Abwurfquote/N Abzählbarkeit Abzahlens Abzahlung/P Abzahlungsgeschäft/EPS Abzahlungsgesetz/EPT Abzahlungskauf/STp Abzahlungsvertrag/STp Abzehren/JS Abzeichen/S Abzeichenaktion Abziehbild/RST Abzug/STp Abzugsbügel/NS Abzugsfähigkeit Abzugsfenster/NS Abzugshebel/NS Abzugsverfahren/S Abzweigens Abzweigung/P Access Accessoire/S Account/S Accounting/S Aceton/S Achilles Achillesferse/N Achim/S Achse/N Achsel/N Achselhöhle/N Achselzuckens Achsenmächte/N Achslast/P Achsmächte/N Achtbarkeit Achteck/EPST Achtens Achterbahn/P Achterdeck/S Achtern Achters Achtklässler/FNS Achtlosigkeit Achtsamkeit/P Achtstundentag/P Achtung/P Achtungsbeifall/S Achtzigerjahre/N Achtzylinder/N Acidum Acker/S Ackerbau/RS Ackerbaubetrieb/EPS Ackerbauer/NS Ackerboden/S Ackerfläche/N Ackergäule/N Ackergaul/ST Ackergeräte/N Ackermann/S Ackerschlepperfabrik Ackerwagen Acryl/S Acrylglas Action Ada Adäquatheit Adam/S Adamek/S Adamsapfel Adamskostüm/S Adaptec Adapter/NS Adaptergehäuse/NS Adapterkabel/NS Adapterkarte/N Adapterleiste/N Adaptermodul/NS Adapterplatine/N Adaptierens Adaptierung/P Adaption/P Adaptionsplatine Addition/P Additionsfunktion/P Additivs Adebar Adel/JS Adelns Adelsgeschlecht/RS Adelspaläste/N Adelsstand/T Adelstände/N Adelstitel/N Adelsverschwörung/P Adenauer/S Ader/N Aderlass/ET Adhäsionsbruch Adiabat/EPS Adidas Adipositas Adjektiv/EPS Adjunktion/P Adjutant/P Adler/NS Adlerhorst/EPT Adlernase/N Administration/P Administrator/FPS Admiral/EFPS Admiralfahrer/NS Admiralität/P Admiralsmarsch Admiralstäbe/N Admiralstab/ST Adobe Adoleszent Adolf/S Adolph/S Adonis Adoption/P Adoptionsrecht/S Adoptiveltern Adoptivtochter Adorno/S Adrenalin/S Adressat/EP Adressberechnung/P Adressbit/S Adressbücher/N Adressbuch/ST Adressbus/Qq Adressdatei/P Adresse/N Adressenangabe/N Adressenaustausch/S Adressengenerierung Adressenkatalog Adressenliste/N Adresserweiterung/P Adressgenerator/P Adressgenerierung Adressierung Adressierungsart/P Adresskarte/N Adressliste/N Adressoffset/S Adressraum/STp Adressraumerweiterung Adressregister/S Adressverwaltung Adria/N Adrian/EST Adrianopel Advent Adventsschmuck Adventssonntag/EPS Adventszeit Adverb/S Adverbien Advokat/P Aerodynamik/R Aeronautik Aerosole/N Aerostatik AfA Affäre/N Affe/N Affekt/EPST Affekthandlung/P Affektiertheit/P Affektion/P Affektivität Affenfleisch/ST Affenhaus/Tp Affenkommentar Affenliebe Affenmensch/P Affenschande Affentheater/S Afferenz/P Affinität/P Affront/S Afghane/FN Afghanistan Afrika/S Afrikaarmee Afrikafront Afrikaner/FNS Afrikareferat Afrolook After/S Agadir Agave/N Agenda Agende/N Agent/FP Agentenabwehr Agentenaustausch/S Agentenfilm/EPS Agentenjagd/P Agentenliste/N Agentennetz/EP Agentenorganisation/P Agentenring/EPST Agententätigkeit/P Agentur/P Agenturmeldung/P Agfa Aggregat/EPT Aggregatzustände/N Aggregatzustand/ST Aggression/P Aggressionskontrolle Aggressionspolitik Aggressionstrieb/ES Aggressivität/P Aggressor/P Agio/S Agitation/P Agitationskampagne Agitationsmaterial Agitator/FPS Agonie Agrarausfuhr/P Agrarchemikalie/N Agrarerzeugnis/Qq Agrarexperte/N Agrarexporte/NS Agrarfinanzfrage/N Agrarfinanzierungspolitik Agrarfinanzverordnung Agrarfonds Agrarfunktionären Agrargebiet/EPST Agrargesellschaft/P Agrarhaushalt/EPS Agrarimport/EPS Agrarkonferenz/P Agrarland/S Agrarmarkt/STp Agrarmarktordnung Agrarpartei/P Agrarparteiler Agrarpolitik/R Agrarpreisregelung/P Agrarprodukt/P Agrarproduktion Agrarreform/P Agrarsektor/PS Agrarstaat/PST Agrarstruktur Agrarwirtschaft Agronom/P Ahle/N Ahndens Ahndung/P Ahnenforschung/P Ahnenkult/S Ahnens Ahnentafel/N Ahnfrau/P Ahnherr/NP Ahnung/P Ahnungslosigkeit Ahorn/S Aids Airbag/S Airbrush Airbus Airline/S Ajatollah/S Akaba Akademie/N Akademiemitglied/RST Akademieprofessor/P Akademieveranstaltung/P Akademiker/FNS Akademikerschaft Akademikertochter Akklamation/P Akklimatisierens Akklimatisierung/P Akkolade/N Akkomodation Akkord/EPST Akkordarbeit/PR Akkordarbeiter/FNS Akkordeon/S Akkordlöhne/N Akkordlohn/S Akkordmodulation/P Akkordwesen/S Akkreditierens Akkreditierung/P Akkreditierungsschreiben Akkreditiv/S Akku/S Akkubetrieb/S Akkubohrer/S Akkumulation Akkumulator/PS Akkumulatorenbatterie/N Akkumulatorfahrzeug/EP Akkupunktur Akkuratesse Akkusativ/EPS Akkusativobjekt/EPST Akne Akontozahlung/P Akquisiteur/EFPS Akquisition/P Akribie Akrobat/FP Akrobatenkunststück/EPS Akrobatik Akronym/EPS Akropolis Akt/EPST Aktant/P Aktenbände/N Aktenberg/EPS Aktendeckel/NS Akteneinsicht Aktenfotokopie/N Aktenklammer/N Aktenkoffer/NS Aktenkofferformat/S Aktenmappe/N Aktennachlass/Tp Aktennotiz/P Aktenordner/N Aktenpaket/PS Aktenstück/PS Aktenstudium Aktentasche/N Aktenvermerk/EPS Aktenzeichen/S Akteur/EFPS Aktfigur/P Aktgemälde/NS Aktie/N Aktienanlage/N Aktienauswahl Aktienbesitz/ET Aktienbestände/N Aktienbörse/N Aktienbrauerei Aktienertrag/STp Aktienexperte/N Aktienfonds Aktiengeschäft/ES Aktiengesellschaft/P Aktiengesetze/N Aktiengewinn/EPS Aktienhandel/S Aktienindex/EPT Aktienindices Aktienindizes Aktieninhaber/FNS Aktieninvestment/S Aktienkapital/S Aktienkauf/Sp Aktienkurs/EPT Aktienmarkt/STp Aktienmehrheit Aktienoption/P Aktienpaket/EPS Aktienpreis/EPT Aktienrecht/EPS Aktienumsätze Aktienumtausch Aktion/P Aktionär/EFPS Aktionärsbrief Aktionärskreisen Aktionärsrechte Aktionärsregisterverwalter Aktionärsvereinigungen Aktionärsversammlung Aktionärsvertreter Aktionärszeitschrift Aktionismus Aktionsausschuss/Tp Aktionsbewegung Aktionsgemeinschaft Aktionsgruppe Aktionshaus/Tp Aktionslos Aktionspartei Aktionsplan/S Aktionsprogramme Aktionsradius Aktionssemantik/P Aktionsstrategie Aktionstrupps Aktiva Aktivbezüge/N Aktivgeschäft Aktivierens Aktivierung/P Aktivierungssegment/E Aktivierungstendenzen Aktivist/P Aktivistenbewegung Aktivität/P Aktivitätsmessung Aktivitätsschub Aktivitätssteigerung Aktivposten/S Aktivrechtsschutz Aktivsaldo Aktivsein Aktivseite Aktor/P Aktstudie/N Aktualisierens Aktualisierung/P Aktualität Aktuar/EPS Akupressur/P Akupunktur/P Akustik Akustiksensor/P Akzeleration Akzent/EPST Akzentsetzung/P Akzentuierens Akzentuierung/P Akzentverschiebung/P Akzept/EPT Akzeptanz Akzeptkredite Akzeptkreditvolumen Akzepttausch Alabaster/S Aladin/S Alarm/EPS Alarmanlage/N Alarmausgang Alarmbereitschaft/P Alarmglocke/N Alarmkette/N Alarmklingel/N Alarmknopf Alarmmeldung/P Alarmruf/EPS Alarmsendung/P Alarmsignal Alarmsonderstab Alarmübung Alarmzeichen Alarmzustand Alaska Alaskastraße Alb/P Albaner/FNS Albanien Albatros/Qq Albdruck Albernheit/P Alberts Albinismus Albino/S Albion/S Albrecht/S Albtraum/STp Album Alchemie Alchemist/P Alchimie Aldi Alemanne/FN Alembert/S Alex Alexander/S Alexanderschlacht Alexandra/S Alexandria/S Alf/S Alfa Alfons Alfred/S Alge/N Algebra Algebraisierung/P Algebren Algerien Algerienpolitik Algerier/FNS Algier/S Algorithmen Algorithmenfamilie/N Algorithmentheorie/N Algorithmisierbarkeit Algorithmus Aliase Alibi/S Alice/S Alimente/N Alkali/PS Alkohol Alkoholbestandteil/EPS Alkoholeinwirkung Alkoholgehalt/EPST Alkoholgenuss/Tp Alkoholhersteller/FNS Alkoholika Alkoholiker/FNS Alkoholismus Alkoholkonsum/S Alkoholmissbrauch/S Alkoholspiegel Alkoholsteuern Alkoholtest/S Alkoholvergiftung/P Alkoholverträglichkeitstest Alkoholvorrat Alkoholzusatz Alkoven/S Allah/S Allee/N Alleebaum/STp Allegorie/N Alleinausschank Alleinbesitz/EPT Alleinerbe/FS Alleinflug/STp Alleingang/Sp Alleingestelltsein Alleinherren Alleinherrschaft Alleinherrscher/FS Alleinhersteller Alleinimport Alleininhaber/FNS Alleinrechten Alleinsein/S Alleinstellungsmerkmal/EPS Alleinverkauf/STp Alleinvertreter/FNS Alleinvertretungsanbefugnis/q Alleinvertretungsanspruch Alleinvertrieb/EPST Allergie/N Allergiefördernd/AEPT Allerheiligen Allerweltsgesicht Allg. Allgäu Allgegenwart/P Allgemeinbildung Allgemeingut Allgemeinheit Allgemeininteresse/S Allgemeinmedizin Allgemeinstimmung Allgemeintendenz Allgemeinverfassung Allgemeinwissen/S Allgemeinzustand/ST Allheilmittel/NS Allianz/P Allianzsystem Allmacht Allquantifizierung/P Allquantor/PS Allradkipper Allroundeinsatz Allroundtalent Alls Alltäglichkeit/P Alltag/ST Alltagsablauf/Sp Alltagsarbeit/P Alltagsbetrieb/S Alltagsfragen Alltagsfreuden Alltagsgeschäft/ST Alltagsmanieren Alltagsmenschen Alltagspelz Alltagsschwächen Alltagstonart Alltagsverhalten Allwetterjäger Allwissenheit Allzuständigkeit Allzweckfahrzeuges Alm/P Almanach/EPS Almgrund Almmusik Almosen/S Almosengeben/S Almwirt Alp/P Alpdruck Alpenblick Alpencup Alpenferien Alpengarten Alpengebiet Alpenglühen Alpenjäger Alpenkette Alpenländer/N Alpenland Alpenmilch Alpenpokal Alpenpokalspiel Alpenrose Alpenstraße/N Alpenveilchen Alpenverein/EPS Alpenvorland Alpenwelt Alphabet/EPS Alpinist/FP Alptraum/STp Alster Alsterdorf Alsternähe Alsterufer Altäre/N Altaktie Altamerikaner Altamira Altar/S Altarbild Altargemälden Altbabylonisch/AEPT Altbau/S Altbauten Altbauwohnung/P Altbayern Altbundespräsident/P Altbundestrainer/N Altenheim/EPST Altenhilfe Altenholz Altenklub Altenpension Altenrenten Altentagesstätte/N Altenteiler Altenwerk Altenwohnsitz/E Alternativeinstellung Alternativfrage/N Alternativfragestellung/P Alternativkandidat/FP Alternativlösung/P Alternativmethode/N Alternativplan Alternativverfahren Alternativvorschlag/Sp Alternativwahl/P Alterns Alters Altersaufbau/S Alterserscheinung/P Altersfaktor/P Altersfalte/N Altersgenosse/FN Altersgrenzen Altersgründe/N Altersgruppe/N Altersheim/EPST Altershilfe/N Altersklasse/N Altersmüdigkeit Alterspension Altersrente/N Altersruhegeld Altersschichten Altersschwäche/N Alterssicherung Alterssitz Altersstarrsinn Altersstufe/N Altersunterschied/EPST Altersversicherung/P Altersversorgung/P Alterswert Alterswohnsitz Altertum/S Altertumsforscher/NS Altertumskunde/N Alterung/P Alterungsprozess/EPT Altgeräte/N Altgeselle/N Altgold Altguthaben Althausbesitzer Altherren Altherrenschaft Altkanzler/S Altkönig/EPS Altkommunist/P Altkunde/FN Altlast/P Altmaterial/S Altmeister/NS Altmetall/EPS Altöl/EPS Altösterreichisch/AEPT Altona Altpapier/S Altphilologe/N Altphilologie Altpreußisch/AEPT Altschulden Altsparergesetz Altsparguthaben Altstadt Altstadtsanierung Altstadtsprüche Altstadtwidersprüche Altwagen/S Altwageneintausch Altwarenhändler/FNS Altweibersommer/S Alu Alufelgen Alugehäuse/NS Aluminium/S Aluminiumblech Aluminiumfolie/N Aluminiumgehäuse/N Aluminiumhalle/N Aluminiumkonzern/EPS Aluminiumproduzent/P Aluminiumpulver Aluminiumrinnen Aluminiumwerk Alumodell Aluplättchen Aluplatte/N Alzheimer/S Amadeus Amateur/EFPS Amateurband/S Amateurboxen Amateurboxmeisterschaft Amateurdetektiv Amateurfotograf Amateurfunk/S Amateurfunkbetrieb Amateurfunkdienst Amateurfunkfrequenzen Amateurfunkprüfung Amateurfunkverbände Amateurfußball/S Amateurgrundsätze/N Amateurklub Amateurkräfte Amateurligen Amateurmannschaft Amateurprinzipien Amateurregel/N Amateursport/S Amateursteher/NS Amateurverteidiger/N Amateurvorstellung/P Amazonas Amazone/N Ambiente Ambition/P Ambivalenz/P Amboss/EPT Ambulanz/P Ameise/N Ameisenbär/P Ameisenhaufen/S Ameisensäure/N Ameisenstaat/PS Amerika/S Amerikahaus Amerikaner/FNS Amerikanertums Amerikareise/N Ami/S Aminosäure/N Amme/N Ammenmärchen/S Ammoniak Ammonit Ammonium/S Amnesie/N Amnestie/N Amnestiegesetz/EP Amnestievorlage/N Amnesty/S Amok Amokläufer/FNS Amor/S Amortisation/P Ampel/N Ampere Amphetamin/EPS Amphibie/N Amphibienfahrzeuge Amphitheater/S Amplitude/N Amplitudenbereich Amplitudendämpfung Amplitudenmodulation Amplitudenregelung Amplitudenverteilung Amplitudenwerte Ampulle/N Amputation/P Amsel/N Amsterdam/RS Amsterdamer/FNS Amt/ST Amtmann Amtsärzte/FN Amtsanmaßung/P Amtsantritt/EPST Amtsarzt/T Amtsbefugnis/q Amtsbereich/EPS Amtsbezeichnung/P Amtsbezirk/ET Amtsblätter/N Amtsblatt/T Amtsbrüder/N Amtsbruder/S Amtschef Amtschinesisch Amtsdiener/NS Amtseid/EPST Amtseinführung/P Amtsenthebung/P Amtsenthebungsverfahren/S Amtsführung Amtsgebäude/N Amtsgeheimnis/Qq Amtsgericht/EPST Amtsgerichtsgefängnis/Qq Amtsgeschäft/EPST Amtsgewalt Amtshandlung/P Amtshilfe/N Amtsinhaber/FNS Amtskollege/N Amtsleiter Amtsmissbrauch/S Amtsmonate Amtsmühle/N Amtsnachfolger/N Amtsniederlegung/P Amtsobersekretär Amtsperiode/N Amtsperson/P Amtspflicht/P Amtsraum/STp Amtsrichter/FNS Amtssitz Amtssprache Amtsstelle/N Amtsstellung Amtsstube/N Amtsstunde/N Amtstermin Amtsträger/N Amtstracht/P Amtsübernahme/N Amtsüberschreitung/P Amtsunterschlagung Amtsverbrechen Amtsverletzung/P Amtsverwaltung Amtsvorgänger/N Amtsvormund/T Amtsvorstand Amtsvorsteher/FNS Amtswechsel/S Amtsweg/P Amtswohnsitz Amtswohnung Amtszeichen/S Amtszeit/P Amtszimmer Amüsement/S Amulett/EPST Anästhesist/FP Anästhetika Anästhetikum/S Anachoret/P Anachronismen Anachronismus Analogausgänge Analogausgabe Analogausgang/ST Analogbus Analogeingang/p Analogie/N Analogkanäle Analogkarten Analogmultiplexer Analogon/S Analogschalter Analogsignal/EPS Analogspannung/P Analogspannungsspeicher Analogteil/S Analogtor Analogwandler Analogwert/E Analphabet/FP Analphabetentum Analphabetismus Analysator/PS Analyseaufwand Analyseergebnis/Qq Analysegeräte/N Analysehilfsmittel/N Analysemethode/N Analysen/I Analysephase/N Analyseschritt/EPST Analyseverfahren/S Analysierbarkeit Analysis Analyst/P Analytik/R Analytiker/FNS Anamnese Anapher/N Anarchie/N Anarchismus Anarchist/FP Anatol/S Anatolien Anatomie/N Anbau/RS Anbauabsicht/P Anbauer/NS Anbaufläche/N Anbaugebiete/N Anbaumethode/N Anbauplatte Anbeginn Anbetens Anbeter/FNS Anbetracht Anbetung/P Anbieter/FNS Anbindens Anbindung/P Anblick/S Anbringens Anbringung/P Anbrüche/N Anbruch/S Andacht/P Andachtshalle/N Andalusien Andalusier/FNS Anden Andenken/S Andenkenläden Anderkonten Andeutens Andeutung/P Andorra Andrängen Andrang/ST Andrea/S Androgene/N Androhens Androhung/P Androide/N Andromeda/S Andromedanebel Andruck/S Andruckbügel/NS Andy/S Aneignens Aneignung/P Aneinanderreihen/JS Anekdote/N Anemone/N Anempfehlen/JS Anerbieten/S Anerkennens Anerkenntnis/q Anerkennung/P Anerkennungswürdigkeit Anfälligkeit/P Anfänger/FNS Anfahrten Anfahrtermin Anfahrtsweg/EPS Anfahrverzögerung Anfall/Sp Anfang/p Anfangsbedingung/P Anfangsbestand/S Anfangsbetrag/STp Anfangsbuchstabe/N Anfangsdruck/S Anfangserfolg/EPS Anfangsgehälter/N Anfangsgehalt/ST Anfangsgehaltswünsche/N Anfangsgewinn/ES Anfangsgründe/N Anfangsjahr/PS Anfangskante/N Anfangskapital/T Anfangskoordinate/N Anfangskurs/EPT Anfangspassage/N Anfangsphase/N Anfangsplanung/P Anfangsproblem/EPS Anfangsschwierigkeit/P Anfangssituation/P Anfangsstadien Anfangsstadium/S Anfangstempo/S Anfangstermin/S Anfangstest/S Anfangsunterricht/T Anfangsverlust/EPST Anfangswert/EPST Anfangszeit/P Anfangszeitpunkt/EPS Anfechtens Anfechtung/P Anfechtungsklage/N Anfeindens Anfeindung/P Anfertigens Anfertigung/P Anflug/STp Anforderns Anforderung/P Anforderungsdefinition/P Anforderungsdetail/S Anforderungserfassung/P Anforderungskatalog/EST Anforderungsliste/N Anforderungsprofil/PS Anforderungsschreiben/S Anfügens Anfügung/P Anführens Anführer/FNS Anführung/P Anführungsstrich/EPST Anführungszeichen/S Angabe Angeber/FNS Angeberei/P Angebot/EST Angebotsbereich/EPST Angebotsliste/N Angebotsmappe/N Angebotspalette/N Angebotspreis/EPT Angebotsstand/S Angebotssteigerung/P Angebotsvoraussetzung/P Angehörigkeit Angel Angela/S Angelegenheit/P Angelei Angelgelegenheit/P Angelgerät/EPST Angelhaken/S Angelika/S Angelpunkt/EPST Angelrute/N Angelsachse/N Angelsport/S Angelteich/EPST Angemessenheit Angepasstheit/P Angesicht/RT Angestammtheit Angestelltengehälter Angestelltenkrankenkasse Angestelltenverhältnis/Qq Angewöhnens Angewöhnung/P Angewohnheit/P Angina Angleichens Angleichung/P Angler/FNS Anglerglück/S Angliederns Angliederung/P Anglistik Anglizismen Anglizismus Anglokanadier/FNS Angola Angorawolle Angreifer/FNS Angriff/EPS Angriffsdrohung/P Angriffsfläche/N Angriffsflüge/N Angriffskrieg/EPST Angriffspause Angriffspunkt Angriffsseite Angriffsspiel Angriffstaktik Angriffsübung/P Angriffswaffen Angriffswirbel Angstblick Angstdioden Angstentscheidung Angstgefühl/EPST Angsthase/N Angstmoment/EPS Angstneurose/N Angstschweiß/ET Angstschwelle Angstzustände/N Angstzustand/ST Anhänger/FNS Anhängerbau/S Anhängerfabrik/P Anhängerschaft/P Anhängerzahl/P Anhänglichkeit Anhängsel/NS Anhäufens Anhäufung/P Anhalt/R Anhalter/FNS Anhaltspunkt/EPST Anhang/S Anhebens Anhebung/P Anhieb/S Anhöhe/N Anhörens Anhörung/P Anhörungsrecht/S Anhörungsverfahren/S Anilin/S Animation/P Animierens Animierung/P Animosität/P Anis Anita/S Ankara Ankathete/N Ankauf/Sp Ankaufgeschäft/EPST Ankaufkredit/EPST Ankaufkurs/EPT Ankaufspreis/EPT Ankaufswoche/N Anke/RS Anker/S Ankerbohrmaschine/N Ankergründe/N Ankergrund/S Ankerkette/N Ankermanöver/NS Ankerpflöcke/N Ankerplätze/N Ankerplatz/T Ankerstellung/P Ankeruhr/P Ankerwicklung/P Ankerwinde/N Ankick Ankläger/FNS Anklagebänke/N Anklagebank/P Anklagebehörde/N Anklageerhebung/P Anklagematerial/S Anklagepunkt/EPST Anklagerede/N Anklageschrift/P Anklagevertreter/FNS Anklang/Sp Anklemmung Anknüpfens Anknüpfung/P Ankömmling/EPS Ankoppelns Ankoppelung/P Ankopplung/P Ankündigens Ankündigung/P Ankündigungstafel/N Ankünfte/N Ankunft Ankunftshalle/N Ankunftszeit/P Ankurbelns Ankurbelung/P Ankurblung/P Anlage/N Anlagebedarf/S Anlagebedürfnis/Qq Anlageberater/FNS Anlageberatung/P Anlagebeschreibung/P Anlagebetrag/Sp Anlagebrief/P Anlagedauer Anlageempfehlung/P Anlageentscheidung/P Anlageerfolg/EPST Anlageform/P Anlagegeschäft/P Anlagegesellschaft/P Anlagegüter/N Anlageinstrument/EPST Anlagekapital/S Anlagekapitalien Anlagekauf/Sp Anlageklima/S Anlagekunde/N Anlageland/ST Anlagemittel/N Anlagenauslastung Anlagenbau/ST Anlagenbereich/EPST Anlagengeschäft/EPST Anlagenplanung/P Anlagensteuerung Anlagenteil/EPST Anlagenzugang/Sp Anlageobjekt/EPST Anlagepapier/EPS Anlagephilosophie/N Anlagepolitik/P Anlageproblem/EPS Anlagestrategie/N Anlagetätigkeit/P Anlagetipp/S Anlageverkauf/Sp Anlagevermittler/FNS Anlagevermögen/S Anlagevolk/T Anlagewert/EPST Anlagezweck/EPST Anlass/RTp Anlasser/NS Anlauf/Sp Anlaufbahn/P Anlaufhäfen Anlaufschwierigkeit/P Anlaufstelle/N Anlaufzeit/P Anlaut/EPT Anlegemanöver/NS Anlegens Anlegeplatz/T Anleger/N Anlegergeld/RST Anlegergruppe/N Anlegermagazin/EPS Anlegerschar/P Anlegerschutz/T Anlegerverhalten/S Anlegervolk/S Anlegestelle/N Anlehnens Anlehnung/P Anleihe/N Anleihebedarf/S Anleiheerlös/T Anleihemarkt/STp Anleihepläne/N Anleiheschuld/P Anleitens Anleitung/P Anlernling/EPS Anlieferns Anlieferung/P Anliegens Anlieger/NS Anliegerstaat/P Anm Anm. Anmärsche/N Anmarsch/T Anmaßens Anmaßung/P Anmeldeformular/EPS Anmeldefrist/P Anmeldegebühr/P Anmeldens Anmeldepflicht/P Anmelder/NS Anmeldeschein/EPST Anmeldestelle/N Anmeldevordruck/EPST Anmeldevorschrift/P Anmeldung/P Anmerkens Anmerkung/P Anmietens Anmietung/P Anmut/J Annäherns Annäherung/P Annäherungspolitik/P Annäherungsversuch/EPST Anna/S Annahme/N Annahmefrist/P Annahmeschluss/T Annahmestelle/N Annahmeverweigerung/P Annalen Anne/S Annehmlichkeit/P Anneliese/S Annemarie/S Annette/S Annexe/NS Annexion/P Annie/S Annonce/N Annoncenbüro/S Annullierens Annullierung/P Anode/N Anomalie/N Anonymität/P Anorak/S Anordnens Anordnung/P Anordnungspläne/N Anpassens Anpasshardware Anpassung/P Anpassungsänderung/P Anpassungsdruck/S Anpassungsfähigkeit/P Anpassungsprogramm/EPS Anpassungsprozess/EPT Anpassungsschwierigkeit/P Anpassungssumme/N Anpassungsvermögen/S Anpfiff/EPS Anpflanzens Anpflanzung/P Anprall/S Anprechverzögerung/P Anpreisens Anpreisung/P Anpressdruck/S Anprobe/N Anrechnens Anrechnung/P Anrechnungsverfahren/S Anrechnungsverordnung/P Anrecht/EPS Anrechtskarte/N Anregens Anregung/P Anregungsenergie/N Anregungsmittel/NS Anreicherns Anreicherung/P Anreicherungsschritt Anreisetermin/EPS Anreiz/T Anrisses Anrollens Anruf/JST Anrufbeantworter/NS Anrufer/FS Ansätze/N Ansager/FNS Ansammelns Ansammlung/P Ansatz/T Ansatzpunkt/EPST Ansatzstück/EPS Ansbach/S Anschaffens Anschaffung/P Anschaffungsdarlehen Anschaffungskosten Anschaffungspreis/EPT Anschaffungswert/EPT Anschauens Anschaulichkeit Anschauung/P Anschauungsform/P Anschauungsmaterial/S Anschauungsunterricht/T Anschauungsweise/N Anschein/S Anschiss/EPT Anschlag/STp Anschlagbrett/T Anschlagkontrolle Anschlagmaschine Anschlagsäule/N Anschlagzettel/NS Anschlußgebühr/P Anschluss/Tp Anschlussadapter Anschlussarten Anschlussbelegung/P Anschlussblock Anschlussbuchse/N Anschlussbuchung/P Anschlussdaten Anschlussdose/N Anschlussdrähte/N Anschlussersuchen Anschlussfehler Anschlussforderung Anschlussgleis Anschlusskabel/NS Anschlusskarte Anschlusskennung Anschlussklemme/N Anschlussleiste Anschlussleitung/P Anschlusslinie/N Anschlussmöglichkeit/P Anschlussmodus Anschlussort Anschlussplan Anschlussplatine Anschlussrohr Anschlussschrank Anschlussspannung/P Anschlussstation/P Anschlussstecker/S Anschlussstelle/N Anschlussstück/EPS Anschlusstreffer/S Anschlussverbindung/P Anschlussvereinbarung Anschlussverteilung Anschlussvorschlag/STp Anschlusszeit Anschlusszug/STp Anschnallgurt/EPST Anschnitt/EPT Anschreibekredite Anschrift/P Anschub/S Anschuldigens Anschuldigung/P Ansehens Ansehnlichkeit/P Ansicht/P Ansichtskarte/N Ansichtssache Ansichtssendung/P Ansiedelns Ansiedler/NS Ansiedlung/P Ansinnen/S Anspannens Anspannung/P Anspielens Anspielung/P Ansporn/S Ansprache Ansprechbarkeit Ansprechhöhe Ansprechpartner/NS Ansprechzeit Ansprüche/N Anspruch/S Anspruchsberechtigung/P Anspruchslosigkeit Anspruchsniveau/S Anstalt/P Anstaltsinsasse/N Anstand/S Anstandsdame/N Anstandsröcke Anstandsunterricht Ansteckens Anstecknadel/N Ansteckung/P Anstellens Anstellung/P Anstellungsbedingung/P Anstellungsprüfung/P Anstellungsvertrag/Tp Ansteuerboard/S Ansteuerelektronik/P Ansteuerkarte Ansteuerleitung Ansteuerlogik Ansteuerns Ansteuerplatinen Ansteuerspannung Ansteuerung/P Ansteuerungsleitung Ansteuerungszeit Ansteuerverstärker Ansteuerzeit Anstieg/EPS Anstiegszeit/P Anstiftens Anstifter/FNS Anstiftung/P Anstoß/Tp Anstreicher/NS Anstrengens Anstrengung/P Anstrich/EPS Ansturm/S Antagonismus Antarktika Antarktis Anteil/EPS Anteilnahme Anteilschein/EPST Anteilsinhaber Anteilsscheine Anteilswert Anteilumlauf/Sp Anteilwert/T Antenne/N Antennenanlage/N Antennenträger Anthologie/N Anthrazitfeinkohlen Anthropoide/N Anthropologe/N Anthropologie Anthroposoph/P Anthroposophie Antialiasing Antialkoholiker/FNS Antibabypille/N Antibiotika Antibiotikum/S Antichrist Antidot/ES Antiemetikum/S Antifaschismus Antifaschist/P Antigen/EP Antiheld Antihistaminika Antiinflationspolitik Antikörper Antikomintern Antikonformismus Antikriegslyrik Antillen Antilleninsel Antilope/N Antimaterie Antimykotikum/S Antipathie/N Antiquar/EFPS Antiquariat/EPST Antiquariatskatalog/E Antiquariatslisten Antiquität/P Antisemit/P Antisemitismus Antiserum Antithese/N Antizipation/P Antje/S Antlitz/ET Anton/S Antonio/S Antonius Antrag/STp Antragsformular/EPS Antragsfrist/P Antragstellen/JS Antragsteller/FNS Antragszeitraum/Sp Antriebe Antriebs Antriebsgetriebe Antriebsmittel Antriebsmotor/PS Antriebsräder Antriebsrechner Antriebsschlitten Antriebsstörung/P Antriebssystem Antriebsüberwachung Antriebswelle Antriebszylinder Antritte/NS Antritts Antrittsball/Sp Antrittsbesuch/EPS Antrittsgepäck Antrittsrede/N Antrittstermin/EPS Antrittsvorstellung Antwort Antwortbogen Antwortkarte/N Antwortnote Antwortscheine Antwortspiel Antworttext/EPST Antwortzeit/P Anverwandlung Anverwandte/N Anwälte/N Anwärter/FNS Anwahl Anwalt/ST Anwaltsbüro Anwaltserfahrung/P Anwaltsgebühr/P Anwaltskammer Anwaltskosten Anwaltspraxis Anwaltsrecht Anwaltsspiel Anwaltstochter Anwaltszwang Anwandeln/JS Anwandelung/P Anwar/S Anwartschaft/P Anweisens Anweisung/P Anweisungsfolge/N Anweisungssequenz/P Anweisungsteil/EPS Anwendbarkeit Anwendens Anwender/FNS Anwenderhinweis/EPT Anwenderoberfläche Anwenderproblem/EPS Anwenderprogramm/E Anwenderseite/N Anwendersicht/P Anwendersoftware Anwendung/P Anwendungsbeispiel/EPS Anwendungsbereich/EPS Anwendungsbeziehung/P Anwendungsbezug/STp Anwendungsentwicklung/P Anwendungsexperten Anwendungsfeld/R Anwendungsfolie Anwendungsgebiet/EPST Anwendungshinweis/EPT Anwendungsideen Anwendungskriterien Anwendungsmöglichkeit/P Anwendungsmodule Anwendungspalette Anwendungsprogramm/EPS Anwendungsprogrammierer Anwendungsprogrammierung Anwendungssituation/P Anwendungssoftware Anwendungsspektrum/S Anwendungssystem/EPS Anwendungstechniker/NS Anwendungsunterstützung/P Anwerben/JS Anwerbestopp/S Anwesen/S Anwesenheit Anwesenheitsliste/N Anwesenheitspflicht Anwesenheitsrecht Anwesenheitstag Anwesenheitszeit/P Anwohner/NS Anz Anz. Anzahl/J Anzahlungsrate/N Anzeichen/S Anzeigeaufgaben Anzeigebalken Anzeigebereich/EPS Anzeigecharakteristik Anzeigeeinheit/P Anzeigeelemente/N Anzeigefeld/RT Anzeigefunktionen Anzeigegenauigkeit Anzeigegerät/EPST Anzeigemöglichkeit Anzeigemonitor Anzeigenaufkommen Anzeigenaufträge Anzeigenblätter/N Anzeigenblatt/ST Anzeigenbüro/S Anzeigeneinnahmen Anzeigenelemente Anzeigenentziehung Anzeigenfeld/T Anzeigengesellschaft Anzeigengruppen Anzeigeninhalte Anzeigenkampagne Anzeigenkunden Anzeigenpreise Anzeigenrubrik Anzeigenteil/EPS Anzeigentreiber Anzeigenvolumen Anzeigepflicht Anzeigeplatine Anzeiger Anzeigesoftware Anzeigesystem/EPS Anzeigetafel/N Anzeigeteil Anzeigetreiber Anziehens Anziehung/P Anziehungskräfte/N Anziehungskraft Anziehungspunkt/EPST Anzüglichkeit/P Anzug/STp Apache/N Apartheid Apartment Apartmenthaus/Tp Apartmenthotel Aperitif/S Apertur/P Apfel/S Apfelbäume/MN Apfelbaum/STp Apfelmost Apfelmus/T Apfelschimmel Apfelsine/N Apfeltorte/N Apfelwein/S Apfelweinkneipe Aphorismus Aphrodite/S Apokalypse Apoll/S Apollo/S Apologet/P Apostel/NS Apostelbrief Apostelfürsten Aposteltanne Apostroph/EPS Apotheke/NR Apothekenbesitzers Apothekenräume/N Apotheker/FNS Apothekerrezept Appalachen Apparat/EPS Apparateglasbläser Apparatur/P Appartement/S Appartementhaus/Tp Appartementtür/EP Appartementwohnung Appell/EPS Appellationsgericht Appetenz/P Appetit/S Applaus/T Applet/SW Applikation/P Applikationsberatung/P Applikationsebene/N Applikationsprogramm/E Applikationsprozess/EPT Applikationssoftware Applikationstechnologie/N Applikationsversion/P Approbation/P Approximation/P Aprikose/N April/S Aprilscherz/EPT Apside Apsis Apulien Aquarell/EPS Aquarien Aquarium/S Aquitanien Araber/FNS Araberliga Arabeske/N Arabien Arafat/S Aral Araldit Ararat Arbeit/R Arbeitens Arbeiter/FNS Arbeiterbewegung Arbeiterdemostration Arbeiterfakultät Arbeiterfrage Arbeiterfront Arbeitergeberseite Arbeiterheer Arbeiterkammern Arbeiterklasse Arbeiterkonferenz Arbeiterparadies/P Arbeiterpartei/P Arbeiterpriestern Arbeiterrat Arbeiterrentenversicherung Arbeiterrevolution Arbeiterschaft Arbeiterschichten Arbeiterschulung Arbeitersiedlung/P Arbeitervereine Arbeitervereinigung Arbeitervertreter Arbeiterwehr Arbeiterwohlfahrt Arbeiterwohnhaus/Tp Arbeitgeber/FNS Arbeitgeberbeisitzer Arbeitgeberkreisen Arbeitgebertagung Arbeitgeberverbänden Arbeitgebervereinigung/P Arbeitnehmer/FNS Arbeitnehmerbeisitzer Arbeitnehmerkreise Arbeitnehmerrechten Arbeitnehmerschaft Arbeitnehmervertreter Arbeitnehmervertretung Arbeitsämter/N Arbeitsablauf/Sp Arbeitsamkeit Arbeitsamt/ST Arbeitsamtsbänken Arbeitsanweisung/P Arbeitsanzug/STp Arbeitsarray/S Arbeitsatmosphäre/N Arbeitsaufkommen Arbeitsaufwand/ST Arbeitsausfall/Sp Arbeitsausschuss/Tp Arbeitsbedingung/P Arbeitsbefreiung/P Arbeitsbeginn/S Arbeitsbelastung/P Arbeitsbereich/EPST Arbeitsbericht/EPS Arbeitsbeschaffung/P Arbeitsbeschaffungsmaßnahme/N Arbeitsbescheinigung/P Arbeitsbeschreibung/P Arbeitsbesuch/EPS Arbeitsbetrieb Arbeitsbewältigung Arbeitsbögen Arbeitsbreite Arbeitsbrigaden Arbeitsdaten Arbeitsdienst/EPST Arbeitsdirectory Arbeitseifer/S Arbeitseinheit/P Arbeitseinsatz/T Arbeitseinstellung/P Arbeitsende Arbeitsentgelt/EPS Arbeitsentgeltung Arbeitserlaubnis/q Arbeitserleichterung/P Arbeitsessen/S Arbeitsfähigkeit/P Arbeitsfanatiker/NS Arbeitsfeld/RST Arbeitsfläche/N Arbeitsförderung Arbeitsfolge/N Arbeitsfrage/N Arbeitsfreude/N Arbeitsfrieden/S Arbeitsfront Arbeitsgang/Sp Arbeitsgebiet/EPS Arbeitsgemeinschaft/P Arbeitsgerät/EPS Arbeitsgericht/EPT Arbeitsgruppe/N Arbeitshaus/Tp Arbeitshilfe Arbeitshypothese/N Arbeitsinspektion Arbeitsjahr/EPST Arbeitsjubiläum Arbeitskämpfe/N Arbeitskalender Arbeitskamerad/P Arbeitskampf/ST Arbeitskleidung/P Arbeitsklima/S Arbeitskollege/N Arbeitskolonnen Arbeitskommandos Arbeitskonferenz Arbeitskopie/N Arbeitskräfte/N Arbeitskraft Arbeitskraftreserve/N Arbeitskredit Arbeitskreis/EPT Arbeitslager/NS Arbeitslast/P Arbeitsleben/S Arbeitslehre Arbeitsleistung/P Arbeitsliste Arbeitslöhne/N Arbeitslosenentwicklung Arbeitslosengeld/RST Arbeitslosenkurve Arbeitslosenproblem/EPS Arbeitslosenquote Arbeitslosenrate/N Arbeitslosenstatistik/P Arbeitslosenunterstützung/P Arbeitslosenversicherung/P Arbeitslosenversicherungsbeitrag/Sp Arbeitslosenziffer/N Arbeitslosigkeit Arbeitsmantel Arbeitsmarkt/STp Arbeitsmaschine/N Arbeitsmaterial/S Arbeitsmedizin Arbeitsmethode/N Arbeitsministerien Arbeitsmittel/NS Arbeitsmöglichkeit/P Arbeitsmütze Arbeitsnorm Arbeitsordnung Arbeitsorganisation Arbeitspaket/EPST Arbeitspapier/EPS Arbeitspause/N Arbeitspflicht/P Arbeitsphase/N Arbeitspläne/N Arbeitsplätze/N Arbeitsplan/S Arbeitsplanung/P Arbeitsplatz/T Arbeitsplatzcomputer/NS Arbeitsplatzwechsel/S Arbeitsprogramm/S Arbeitsprotokoll/EPS Arbeitsprozess/EPT Arbeitspunkt/EPST Arbeitsraum/Sp Arbeitsrecht/S Arbeitsreihenfolge Arbeitsrichtung/P Arbeitsringes Arbeitsruhe Arbeitsschluss Arbeitsschritt/EPS Arbeitsschwerpunkt/EPS Arbeitssitzung/P Arbeitsspeicher/S Arbeitsstätte/N Arbeitsstab/S Arbeitsstelle/N Arbeitsstil/EPS Arbeitsstoff/EPS Arbeitsstunde/N Arbeitssuchende/NR Arbeitstag/EPS Arbeitstakt/EPS Arbeitsteam/S Arbeitsteilung Arbeitstemperatur/P Arbeitstext/EPST Arbeitstier/EPS Arbeitstisch/EPT Arbeitstreffen/S Arbeitsüberlastung Arbeitsumgebung/P Arbeitsumstände/N Arbeitsunfall/Sp Arbeitsunlust Arbeitsunterbrechung/P Arbeitsunterlage/N Arbeitsventil Arbeitsverhältnis/Qq Arbeitsverteilung/P Arbeitsvertrag/Sp Arbeitsverwaltung/P Arbeitsvolumen Arbeitsvorbereitung/P Arbeitsvorgabe/N Arbeitsvorgang/Sp Arbeitsweise/N Arbeitswelt Arbeitswiderstand/T Arbeitswille/N Arbeitswoche/N Arbeitszeit/P Arbeitszeitaufwand Arbeitszeitpolitik Arbeitszeitregelung Arbeitszimmer/NS Arbeitszwang/Sp Arbeitszyklus Archäologe/N Archäologie Arche Archenholz Archimedes Archipel/EPS Architekt/FP Architektenbüro Architektengruppe Architektonik Architektur/P Architekturepoche Architekturstudenten Archiv/EPS Archivdisketten Archivgebäude Archivierens Archivierung/P Archivierungskonzept/EPS Archivierungssystem/EPS Archivkopien Areal/EPS Arena Arenen Argau Argentinien/S Arglist Arglosigkeit Argon/S Argonaut/P Argument/EPST Argumentanzahl Argumentation/P Argumentationshilfe/N Argumentationslinie/N Argumentauswertung/P Argumentbereich/EPS Argumentgruppen Argumentkennzeichner Argumentliste/N Argumenttyp/P Argumentwert/P Argus Argusaugen Argwohn/S Ariadne/S Ariane/S Arie/NR Arier/NS Aristokrat/FP Aristokratenfamilien Aristokratie Aristoteles Arithmetik Arizona Arkade/N Arkadenhof Arkansas Arktis Arktisforscher Armachse/N Armada Armagnac Armatur/P Armaturenbranche Armaturenbrett/S Armaturenbrettern Armaturenfabrik Armbänder/N Armband/ST Armbanduhr/P Armbinde/N Armbrüche/N Armbrüste Armbruch/ST Armbrust Armee/N Armeeblatt Armeechef Armeeeinheit/P Armeeführung Armeekosten Armeeministerium Armeeoffizier/EPS Armeerat Armeestärke/N Armeetradition Armeeuniformen Armenhaus/Tp Armenien Armenier/FNS Armenviertel/N Armflügeln Armhaltung/P Armhebel Armkettchen Armlehne/N Armreif/P Arms Armseligkeit Armsessel Armstellung Armstrong/S Armut Armutsgebiet/EPS Armutszeugnis/Qq Arndt/S Arnika Arno/S Arnold/S Aroma/S Aromen Arosa Arrangement/S Arrangierens Array/S Arrest/EPST Arroganz Arrondieren/JS Arrondissement/S Arsch Arschgeige/N Arschlöcher/N Arschloch/S Arsen/S Arsenal/EPS Art/W Artaxerxes Artefakt/EPST Artemis Artenreichtum/S Artentod Artenverarmung Artenwandel Arterhaltung Arterie/N Arterienverkalkung/P Arteriosklerose Artgenosse/N Arthritis Arthrose/N Arthur/S Artigkeit/P Artikel/NS Artikelnummer/N Artikelreihe Artikelstamm Artikulation/P Artikulationsfähigkeit Artikulationsstätte/N Artillerie Artillerieangriff Artilleriebeschuss/Tp Artillerieeinheit/P Artilleriefeuer Artischocke/N Artist/FP Artus Arznei/P Arzneikosten Arzneimittel/NS Arzneimittelgesetz Arzneimittelhersteller Arzneimittelindustrie Arzneimittelpreise Arzneimittelprüfung Arzneischränke/N Arzneischrank Arzneiware/N Arzt/T Arztberuf Arztehepaar Arztfrau Arztgeschichten Arzthelfer/FNS Arzthonorare Arztpraxen Arztpraxis Arztroman Arztsohn Arzttochter Arztzimmer Asbest Asbestfasern Asbestgewinnung Asbestverarbeitung Aschaffenburg/S Asche Aschenbahn/P Aschenbecher/NS Aschenberg Aschenbrödel/S Aschenputtel/S Aschenstummel Aschermittwoch/S Ascona Asiat/FP Asien/S Asienabteilung Asienbild Asienexperte Asienkenntnisse Asienkonferenz Asienliteratur Asienzone Askese Asket/P Aspekt/EPST Asphalt/S Asphaltbahnen Asphaltschlangen Asphaltstraße/N Aspik Aspirant/P Aspiration/P Aspirin Ass/EPT Assekuranz/P Assembler/NS Assemblerprogramm/EPS Assessor/P Assimilation Assisi Assistent/FP Assistenz/P Assistenzärzte/FN Assistenzarzt/T Assistenzarztstelle Assoziation/P Assoziationslust Assoziationsrat Assoziationstechnik Assoziativität Assuanstaudamm Assyrien Ast/RT Asterblüte Asterix Asteroid/P Asteroidengürtel Asthma Astlöcher/N Astoria/S Astrid/S Astrologe/FN Astrologie Astronaut/P Astronautentraining Astronautik Astronomie Astrophysiker/N Asyl/S Asylant/P Asylrecht/EPST Asymmetrie/N Asymptote/N Asynchronmotor/PS Atari Atelier/S Atelierfest Atelierleiter Atem/S Atembeschwerde Atemlosigkeit Atemnot Atempause/N Atemtechnik Atemübung/P Atemvorrat Atemwege Atemzug/Sp Atheismus Atheist/FP Athen/ET Athlet/FP Athletenfigur Athletik Atlant/P Atlanta/S Atlantik/S Atlantikkonferenzen Atlantikküste Atlantikpakt Atlantikwall Atlantis Atlas Atlasgebirge Atmens Atmosphäre/N Atmung/P Atmungsorgan/EPS Atmungstherapie Atoll/EPS Atom/EPS Atomabkommen Atomantrieb Atomarbeit Atomaufrüstung Atombehörde Atombetrieb Atombewaffnung Atombombe/NR Atombombenabwurf Atombombenangriff Atombombenproduktion/P Atombombenversuch Atombrennstoff Atomenergie Atomenergiebehörde Atomenergiekommission/P Atomenergieprojekte Atomexplosion/P Atomflugzeugträger Atomforscher/S Atomforschung/P Atomfragen Atomgemeinschaft Atomgesetz Atomium Atomkomitee/S Atomkommission Atomkraftwerk/EPST Atomkrieg/S Atomkriegskatastrophe Atommächte Atommodell Atommunition Atomphysik Atompilz Atompolitik Atompotential/EPS Atompotenzial/EPS Atomraketen Atomreaktor/S Atomschirm Atomsperrvertrag/STp Atomsphäre Atomsprengköpfe Atomsprengkopf Atomsprengsatz Atomstopp Atomstrahlen Atomstreitkraft Atomtest/S Atomversuch Atomversuchsübung/P Atomvertrag/STp Atomwaffe/N Atomwaffenbegrenzung Atomwaffenherstellung Atomwaffenversuche Atomwissenschaftler Atomzeitalter/S Atomzertrümmerung Attaché/S Attacke/N Attentäter/NS Attentat/EPST Attentatsdrohung/P Attentatsopfer Attentatsserie Attentatsversuch Attest/EPST Attika Attila/S Attitüde/N Attraktion/P Attraktivität Attrappe/N Attrappenversuche Attribuierens Attribuierung/P Attribut/EPS Atü Aubergine/N Audi Audienz/P Auditorien Auditorium/S Audrey/S Aue/N Auerhähne/N Auerhahn/S Auerochse/N Aufarbeiten/JS Aufbau/ST Aufbaublech Aufbaufinanzierung Aufbaugesellschaft Aufbaukurs/EPT Aufbauphase/N Aufbaupläne/N Aufbauplan/S Aufbauprinzip/S Aufbauprogramm/EPS Aufbaus/M Aufbauschen/JS Aufbaustudium/S Aufbautermin/EPS Aufbauwerk/EPS Aufbauzeit/P Aufbereitens Aufbereitung/P Aufbereitungsanlage/N Aufbesserns Aufbesserung/P Aufbewahrens Aufbewahrung/P Aufbewahrungsort/EPT Aufbieten/JS Aufbrüche/N Aufbruch/S Aufbruchstimmung Aufdeckens Aufdeckung/P Aufdruck/S Aufeinanderfolge Aufenthalt/EPST Aufenthaltserlaubnis/q Aufenthaltsfrist/P Aufenthaltsgenehmigung/P Aufenthaltsjahr/EPS Aufenthaltsort/EPST Aufenthaltspreis/EPT Aufenthaltsraum/Sp Aufenthaltsverbot/EPST Aufenthaltsverlängerung Auferstehens Auferstehung/P Auferstehungsfest Auffächerns Auffächerung/P Auffälligkeit/P Auffahrtsweg Auffangbecken/S Auffassens Auffassung/P Auffassungsgabe/N Auffassungsvermögen/S Auffindbarkeit/P Auffindens Auffindung/P Aufflackern/S Aufforderns Aufforderung/P Aufforstens Aufforstung/P Auffrischens Auffrischung/P Aufführens Aufführung/P Aufführungsstatistik Aufführungsstil/EPS Auffüllens Auffüllung/P Aufgabe Aufgabenbereich/EPS Aufgabenbeschreibung/P Aufgabenfeld/RST Aufgabenheft/EPST Aufgabenkreis/EPT Aufgabenschein/EPS Aufgabenschwerpunkt/EPST Aufgabenstellung/P Aufgang/STp Aufgebot/ES Aufgeklärtheit Aufgeld/RST Aufgeschlossenheit Aufgliederns Aufgliederung/P Aufguss/Tp Aufhängens Aufhänger/NS Aufhängung/P Aufhäufens Aufhäufung/P Aufhebens Aufhebung/P Aufhebungsbeschluss/Tp Aufheiterns Aufheiterung/P Aufheizens Aufheizung/P Aufhellens Aufhellung/P Aufhetzens Aufhetzer/FNS Aufhetzung/P Aufholbedarf/S Aufkäufe/NR Aufkäufer/N Aufkauf/STp Aufklärens Aufklärer/N Aufklärung/P Aufklärungsauftrag/STp Aufklärungsbeitrag/STp Aufklärungsbücher Aufklärungsflugzeug Aufklärungskampagne/N Aufklärungsmöglichkeit/P Aufkleber/S Aufl Aufl. Aufladens Auflader/N Aufladevorgang/S Aufladung/P Auflage/N Auflagefläche/N Auflagenerhöhung/P Auflagenzahl/P Auflagenziffer/N Auflassens Auflassung/P Auflauf/Sp Auflehnens Auflehnung/P Aufliegeschema Auflistens Auflistung/P Auflösens Auflösung/P Auflösungsbeschluss/Tp Auflösungserscheinung/P Auflösungsprozess/EP Auflockerns Auflockerung/P Auflockerungstendenz/P Aufloderns Aufmärsche/N Aufmachens Aufmachung/P Aufmarsch/T Aufmarschbewegung Aufmerksamkeit/P Aufmunterns Aufmunterung/P Aufnahme Aufnahmeantrag/STp Aufnahmebedingung/P Aufnahmebeitrag/Sp Aufnahmebereitschaft Aufnahmedauer/N Aufnahmefähigkeit/P Aufnahmegebühr/P Aufnahmegerät/EPST Aufnahmekopf Aufnahmekraft Aufnahmeprüfung/P Aufnahmevermögen/S Aufnehmer/N Aufopferns Aufopferung/P Aufpasser/FNS Aufpolierung Aufprall/S Aufpreis/EPT Aufputschmittel/NS Aufputz/T Aufrauens Aufrauung/P Aufrechnens Aufrechnung/P Aufrechterhalten/JS Aufrechtstehen/S Aufregens Aufregung/P Aufrichtens Aufrichtigkeit Aufrichtung/P Aufriss/EPT Aufrüstens Aufrüstung/P Aufrüstungsprogramm/EPS Aufruf/RS Aufrufer/NS Aufrufkontext/EPT Aufrufstelle/N Aufruhr/S Aufsätze/N Aufsatz/T Aufschaukeln Aufschlag/Sp Aufschlageisen Aufschlagspiel Aufschlagstelle Aufschlagzünder Aufschlüsselns Aufschlüsselung/P Aufschlüsslung/P Aufschluss/Tp Aufschneider/NS Aufschneiderei/P Aufschnitt/ET Aufschrei/S Aufschrift/P Aufschübe/N Aufschüttungsebene Aufschub/S Aufschwung/S Aufsehens Aufseher/FNS Aufsicht/P Aufsichtsbehörde/N Aufsichtsorgan/EPS Aufsichtsperson/P Aufsichtspersonal/S Aufsichtspflicht Aufsichtsräte/N Aufsichtsrat/T Aufsichtsratsgremien Aufsichtsratsitze Aufsichtsratsmitglied/R Aufsichtsratsvergütung Aufsichtsratvertreter Aufspaltens Aufspaltung/P Aufsplittung Aufstände/N Aufstands Aufstandsbewegung/P Aufstecknetzteil Aufsteiger/N Aufstellens Aufstellort/EPS Aufstellpläne/N Aufstellplan/S Aufstellung/P Aufstellungsplanung/P Aufstiegs Aufstiegschance/N Aufstiegskandidat/P Aufstockens Aufstockmöglichkeit/P Aufstockung/P Aufstrich/EPS Aufsuchung Aufsummierens Aufsummierung/P Auftakt/EPS Aufteilens Aufteilung/P Auftrag/JSTp Auftraggeber/NS Auftragsabschluss/Tp Auftragsabwicklung Auftragsangebot/EPST Auftragsannahme/N Auftragsausfall/S Auftragsbearbeitung Auftragsbestände/N Auftragsbestätigung/P Auftragsbestand/T Auftragseingang/S Auftragseinheit/P Auftragseinwerbung/P Auftragsentwicklung Auftragsergänzung Auftragserteilung/P Auftragserweiterung/P Auftragsfernschreiber Auftragsformular/EPS Auftragsforschung Auftragsgröße/N Auftragslage/N Auftragsnummer/N Auftragsordner/NS Auftragsphase/N Auftragssperre/N Auftragssumme/N Auftragstrend/S Auftragsvergabe/N Auftragsverhandlung/P Auftragsvolumen/S Auftragswerk/EPS Auftragswert/T Auftragswesen/S Auftrennens Auftrennung/P Auftretens Auftrieb/EPS Auftriebskräfte/N Auftriebskraft Auftritte/NS Auftritts Auftrittsverbot/EPST Aufwände/N Aufwärmens Aufwärmübung/P Aufwärmung/P Aufwärtsbewegung/P Aufwärtsentwicklung/P Aufwärtskorrektur/P Aufwärtsspirale/N Aufwärtstrend/S Aufwärtswelle/N Aufwachmeldung/P Aufwallens Aufwallung/P Aufwand/S Aufwartefrau/P Aufwartens Aufwartung/P Aufweichens Aufweichung/P Aufwendens Aufwendung/P Aufwertens Aufwertung/P Aufwickelrolle Aufwickelvorrichtung/P Aufwind/EPT Aufwurf Aufzählens Aufzählung/P Aufzeichnens Aufzeichnung/P Aufzeichnungsträger Aufzucht Aufzug/Sp Aufzuganlage Aug/EPT Augapfel/S Augenärzte/FN Augenarzt/T Augenaufschlag/Sp Augenblick/EPST Augenbrauen Augendeckel Augenfehler Augenfleck Augenheilkunde Augenhöhe Augenhöhlen Augenlicht/S Augenlid/R Augenmaß/EPT Augenmerk Augenoperation/P Augenpaare Augenpartie Augenschein/S Augenschmerzen Augenstellung Augentierchen/S Augenübel Augenweide/N Augenwinkel/N Augenwischerei/P Augenzeuge/N Augenzeugenberichten Augenzwinkern Augmentation/P Augsburg/R Augsburger/FNS August/S Augustabend Augustin/S Augustinerstift Augustus Auktion/P Auktionskosten Auktionsverkauf/Sp Aula Aura Aurel/S Aureole/N Außenabmessung/P Außenamt Außenanlage/N Außenansicht/P Außenantenne/N Außenbahn Außenbeleuchtung Außenbeschichtung/P Außenbeziehung/P Außenbezirk/EPS Außenborder Außenbordmotor/PS Außendienst/T Außendienstmitarbeiter/FNS Außendienstorganisation/P Außendruck/S Außenfassade/N Außenfläche/N Außengehäuse/N Außengruppe/N Außenhandel/S Außenhandelsberater Außenhandelsbereich/S Außenhandelsbilanz Außenhandelsdirektor Außenhandelsgeschäfte Außenhandelsgesellschaft Außenhandelsgesetz Außenhandelskammer Außenhandelsminister Außenhandelsministerium Außenhandelspolitik Außenhandelssituation Außenhandelsspezialist Außenhandelsstatistik Außenhandelsumsatz Außenhandelsunternehmen Außenhandelsverbände Außenhandelszahlen Außenhaut Außeninstallation Außenkante/N Außenleiter Außenlinie/N Außenmaße/N Außenminister/NS Außenministerium/S Außenministerkonferenz Außenministertagung Außenpolitik/R Außenposten/S Außenprüfung/P Außenraum/STp Außenreihe/N Außenseite/NR Außenseiter/FNS Außenspiegel Außenstände/N Außenstecker Außenstelle/N Außenstürmer Außentemperatur/P Außentür/P Außenverhältnis/Qq Außenverteidiger Außenvertretung/P Außenwände/N Außenwelt Außenwirtschaft Außenwirtschaftsverordnung Außerachtlassen/JS Außerbetriebnahme/N Ausarbeitens Ausarbeitung/P Ausartens Ausartung/P Ausbau/S Ausbaudach/T Ausbaueinheit/P Ausbaufunktion/P Ausbaugerät Ausbaugestell/EPST Ausbaugruppen Ausbauingenieure Ausbauinitiierung Ausbaumaßnahmen Ausbaunummer Ausbauparameter Ausbaupläne Ausbausimulator/P Ausbaustellung Ausbausteuergeräte Ausbausteuerung/P Ausbaustrecke Ausbaustufe Ausbesserns Ausbesserung/P Ausbesserungsarbeit/P Ausbeutens Ausbeutung/P Ausbeutungsmöglichkeit Ausbildens Ausbilder/NS Ausbilderprüfung/P Ausbildung/P Ausbildungsabschnitt/EPS Ausbildungsbedingung/P Ausbildungsbeihilfe/N Ausbildungsbetrieb/EPS Ausbildungsdauer Ausbildungsförderung Ausbildungsjahr/EPS Ausbildungslehrgang/Sp Ausbildungsmandat Ausbildungsmöglichkeit/P Ausbildungsordnung Ausbildungsplätze/N Ausbildungsplan Ausbildungsprobleme Ausbildungsprogramm Ausbildungsstätte/N Ausbildungstätigkeit Ausbildungsteile Ausbildungsunterlagen Ausbildungswesen/S Ausbildungszeit/P Ausbildungszentrum Ausbildungszulage Ausbildungszweck/EPS Ausblick/EPS Ausbrecher/NS Ausbrecherkönig Ausbreitens Ausbreitung/P Ausbreitungsbedingung/P Ausbreitungsflüssigkeit Ausbreitungsmedium Ausbreitungsvolumen Ausbreitungsweg/EPS Ausbrüche/N Ausbruch/S Ausbruchsversuch/EPS Ausbürgerns Ausbürgerung/P Ausbuchtens Ausbuchtung/P Auschwitz Ausdauer Ausdehnens Ausdehnung/P Ausdehnungskoeffizient/P Ausdehnungsmöglichkeit/P Ausdehnungsvermögen/S Ausdrückstift Ausdruck/ST Ausdrucksbewegung/P Ausdrucksform/P Ausdrucksfunktion/P Ausdruckskraft Ausdruckskunst Ausdrucksmittel/NS Ausdrucksmöglichkeit/P Ausdrucksweise/N Ausdünnens Ausdünnung/P Ausdünsten/JS Auseinandersetzen/JS Ausfahrten Ausfall/Sp Ausfallberechnung/P Ausfallgarantie/N Ausfallmuster Ausfallquote/N Ausfallrate/N Ausfallstraße/N Ausfallursache/N Ausfallwahrscheinlichkeit/P Ausfallzeit/P Ausfertigens Ausfertigung/P Ausflüchte/N Ausflügler/FNS Ausflucht Ausflug/Sp Ausflugsdampfer Ausflugsfahrt/P Ausflugskarten Ausflugslokal Ausflugsmöglichkeit/P Ausflugsort/P Ausflugspunkt Ausflugsverkehr Ausflugsziel Ausfluss/Tp Ausflusshahn Ausformens Ausformung/P Ausführens Ausführlichkeit Ausführung/P Ausführungsbestimmung/P Ausführungsform/P Ausführungsgeschwindigkeit/P Ausführungsgesetz/EPT Ausführungsreihenfolge/N Ausführungszeit/P Ausfüllanleitung/P Ausfüllens Ausfüllung/P Ausfuhr Ausfuhrbeschränkung Ausfuhrbestimmung/P Ausfuhrerfahrung/P Ausfuhrerlös Ausfuhrgenehmigung Ausfuhrgeschäft Ausfuhrindustrie Ausfuhrkontrakt/ST Ausfuhrkredite Ausfuhrliste Ausfuhrlizenzen Ausfuhrmöglichkeit/P Ausfuhrquote Ausfuhrsperre/N Ausfuhrverbot/EPST Ausfuhrwert Ausfuhrzölle/N Ausfuhrzoll/S Ausgabe Ausgabeaufschlag/Sp Ausgabebaugruppen Ausgabebehandlung Ausgabeeinheit/P Ausgabeermächtigung Ausgabefunktion Ausgabegeschwindigkeit Ausgabekanäle Ausgabekanal Ausgabekarte Ausgabeknoten Ausgabekommando/S Ausgabemöglichkeit/P Ausgabemodul/E Ausgabenansätze/N Ausgabenanstieg/S Ausgabenposten/S Ausgabenseite/N Ausgabensenkung/P Ausgabenverpflichtung/P Ausgabenvolumen/S Ausgabenwirtschaft Ausgaberechner Ausgabespannung Ausgabestelle/N Ausgabetag/EPST Ausgabetreiber Ausgabezahl Ausgang/STp Ausgangsbasis Ausgangsbus Ausgangsdruck/S Ausgangsfunktion/P Ausgangshypothese/N Ausgangsimpuls Ausgangskanäle Ausgangslage/N Ausgangsleistung/P Ausgangsmaterial Ausgangspin/S Ausgangsposition/P Ausgangspunkt/EPT Ausgangsregister Ausgangsseite Ausgangssignal Ausgangssituation/P Ausgangsspannung/P Ausgangsspannungsbereich Ausgangsstellung Ausgangsstromstärke Ausgangstest/S Ausgangstext Ausgangstransistor Ausgangszustand/ST Ausgasung Ausgeber/N Ausgeburt/P Ausgeglichenheit Ausgehsperre/N Ausgehverbot/EPT Ausgelassenheit Ausgereiftheit Ausgesetztheit/P Ausgestaltens Ausgestaltung/P Ausgewogenheit Ausgleich/JRS Ausgleicher/NS Ausgleichsanspruch Ausgleichsbetrag/STp Ausgleichsfunktion/P Ausgleichsposten Ausgleichsregelung Ausgleichsrente Ausgleichstreffer Ausgleichsvertrag/STp Ausgleichszahlung/P Ausgleichszonen Ausgliederns Ausgliederung/P Ausgrabens Ausgrabung/P Ausgrenzen/JS Ausguck Ausguss/Tp Aushändigens Aushändigung/P Aushängeschild/R Aushärtevorgang/ST Aushandlung Aushang/S Aushebens Aushebung/P Aushilfe/N Aushilfskellner Aushöhlens Aushöhlung/P Ausklammerns Ausklammerung/P Auskoppeln/JS Auskünfte/N Auskunft Auskunftsbüro/S Auskunftsdienst Auskunftsersuchens Auskunftserteilung Auskunftsklausel Auskunftsperson/P Auskunftspflichtig/P Auskunftsstelle/N Auskunftsverfahren/S Auskunftsverkehr/S Ausländer/FNS Ausländergesetz Ausländerguthaben Ausländerhass/T Ausländerlager Ausländersperre Ausläufe/NR Ausläufer/N Ausladens Ausladung/P Auslage/N Auslagerns Auslagerung/P Ausland/ST Auslandsabnehmer Auslandsabonnement Auslandsaktien Auslandsangebot Auslandsanlagen Auslandsarbeit Auslandsaufenthalt/EPS Auslandsbanken Auslandsbasen Auslandsbedarf Auslandsbetriebe Auslandsbeziehung/P Auslandsbutter Auslandschuld Auslandsdeutscher Auslandserfahrung/P Auslandsfahrer Auslandsfakultät Auslandsfirmen Auslandsgelder Auslandsgeschäfte Auslandsgesellschaften Auslandsgespräche Auslandsgrundbesitz Auslandsheimkehrer Auslandshilfe Auslandsimmobilien Auslandsinvestitionen Auslandsinvestoren Auslandsjournal Auslandskapital Auslandskonzessionen Auslandskorrespondent/P Auslandskunden Auslandsleser Auslandslieferanten Auslandsmagazin/EPS Auslandsmarkt/Tp Auslandspapiere Auslandspass/Tp Auslandsplätze Auslandspresse Auslandsprojekte Auslandsreferat Auslandsreise/N Auslandsscheck Auslandsschulden Auslandsschuldenlast Auslandssender/N Auslandsstudenten Auslandstätigkeit Auslandstournee/N Auslandsunternehmen Auslandsverkauf/Sp Auslandsvermögen Auslandsvertreter Auslandsvertretung/P Auslandswechsel Auslandswerte Auslandszahlung/P Auslass/J Auslassens Auslassungszeichen/S Auslasten/JS Auslauf/STp Auslaufmodell/EPS Auslaut/T Auslegens Ausleger/NS Auslegerarme Auslegerbefestigung Auslegerbewegung/P Auslegergeometrie Auslegerneigung/P Auslegersteuerung Auslegerteile Auslegerzylindern Auslegesteuerung Auslegung/P Ausleihens Ausleiher/FNS Ausleihung/P Ausleihungsgeschäft Auslenken/JS Auslesens Ausleseprozess/EPT Ausleseverfahren/S Auslesung/P Auslieferer/N Auslieferns Auslieferung/P Auslieferungsantrag/STp Auslieferungsfall Auslieferungstermin Auslieferungsvertrag/STp Auslöschens Auslöschung/P Auslöseeffekt Auslösemechanismen Auslösens Auslöser/NS Auslösung/P Auslobung/P Auslosens Auslosung/P Ausmärsche/N Ausmarsch/T Ausmaß/EPT Ausmerzens Ausmerzung/P Ausmessens Ausmessung/P Ausmündung Ausnahme Ausnahmebestimmung/P Ausnahmebewilligung Ausnahmeerscheinung/P Ausnahmefall/STp Ausnahmegenehmigung/P Ausnahmeliste Ausnahmepreise Ausnahmesituation/P Ausnahmetarife Ausnahmewünsche Ausnahmezustände/N Ausnahmezustand/T Ausnützens Ausnützung/P Ausnutzens Ausnutzung/P Ausnutzungsgrad/EPST Ausplünderns Ausplünderung/P Ausprägens Ausprägung/P Auspuff/EPST Auspuffgase/S Ausrechnens Ausrechnung/P Ausreißer/FNS Ausreiseerlaubnis/q Ausreisegenehmigung Ausreisevisen Ausreisevisum/S Ausrichtens Ausrichtung/P Ausritt/T Ausrottens Ausrottung/P Ausrüstens Ausrüster/NS Ausrüstung/P Ausrüstungsgegenstände/N Ausrüstungsteil/EPS Ausruf/S Ausrufezeichen/S Ausrufungszeichen/S Ausrutscher/NS Aussaat Aussagegehalt/ST Aussagekraft Ausschänke/N Ausschaltens Ausschalter/N Ausschaltfunktion/P Ausschaltung/P Ausschank/ST Ausschau Ausscheidens Ausscheidung/P Ausscheidungskämpfe Ausscheidungskampf Ausscheidungsspiel Ausscheidungswettbewerbe Ausschlag/Sp Ausschluss/Tp Ausschlussfrist Ausschlussverfahren/S Ausschnitt/EPST Ausschöpfens Ausschöpfung/P Ausschreibens Ausschreibung/P Ausschreitens Ausschreitung/P Ausschüttens Ausschüttung/P Ausschuss/Tp Ausschussberatung/P Ausschussbericht Ausschussmitglied/R Ausschusssitzung/P Ausschusstagung/P Ausschussvorsitzende/NR Ausschussware/N Ausschweifens Ausschweifung/P Aussehens Aussendens Aussendung/P Aussetzens Aussetzer/NS Aussetzung/P Aussicht/P Aussichtslage/N Aussichtslosigkeit Aussichtspunkt/EPT Aussichtstürme/N Aussichtsturm Aussiedler/N Aussöhnens Aussöhnung/P Aussöhnungspartner Aussonderungswege Ausspannung Aussparens Aussparung/P Aussperrens Aussperrung/P Ausspielens Ausspielung/P Aussprache Aussprüche/N Ausspruch/S Ausstände/N Ausstaffierens Ausstaffierung/P Ausstand/ST Ausstattens Ausstatter/N Ausstattung/P Ausstattungschef Aussteigens Aussteiger/NS Aussteigermentalität Aussteigerparadies Aussteigewarnung/P Ausstellens Aussteller/FNS Ausstellerfirmen Ausstellergruppe Ausstellfenster Ausstellung/P Ausstellungsdatum Ausstellungsfläche Ausstellungsgegenstände Ausstellungshallen Ausstellungslokal Ausstellungsmöglichkeit Ausstellungsplakat Ausstellungsspiegel Ausstellungsstand Ausstellungsstück/EPST Ausstellungstag/EPS Aussterbens Aussteuern/JSW Ausstieg/EPST Ausstiegsdaten Ausstiegspunkt Ausstiegssignal/E Ausstiegswarnung/P Ausstoß/JTp Ausstrahlens Ausstrahlung/P Ausstrahlungskraft Ausströmens Ausströmung/P Austausch/ST Austauschbarkeit Austauschfolie Austauschgerät/E Austauschkarten Austauschmöglichkeit/P Austauschplatinen Austauschprogramm/EP Austauschrechner Austauschstudent/FP Austauschteile Austauschverfahren Austauschvertrag/STp Austeilens Austeilung/P Austenit/EPS Auster/N Austragens Austragung/P Austragungsstätte/N Australien Australier/FNS Austreibens Austreibung/P Austriazismen Austriazismus Austritt/EPT Austrittsdüse/N Austrittserklärung/P Austrittskosten Austrittsmöglichkeit Ausübens Ausübung/P Ausuferns Ausuferung/P Ausverkauf/Sp Ausverkaufspreise/N Auswärtsspiel/EPS Auswahl Auswahlband Auswahlkatalog Auswahlkomitee/S Auswahlliste/N Auswahlmenü Auswahlmöglichkeit/P Auswahloperation/P Auswahloperator/P Auswahlsendung/P Auswahlsignal Auswahlspieler Auswahlverfahren/S Auswanderer/NS Auswandererberatungsstelle Auswanderns Auswanderung/P Auswanderungspolitik Auswechselns Auswechselung/P Auswechslung/P Ausweg/EPS Ausweichmöglichkeit/P Ausweichstelle/N Ausweis/JT Ausweisinhaber Ausweiskarten Ausweiskontrolle Ausweispapier/EPS Ausweispflicht Ausweisungsbefehl/EPS Ausweisungsbeschluss/Tp Ausweiszwang Ausweitens Ausweitung/P Auswerteeinheit/P Auswerteelektronik Auswertekarte Auswertens Auswerterechner Auswertesoftware Auswerteteil Auswerteverfahren Auswertezyklus Auswertung/P Auswertungsreihenfolge/N Auswirkens Auswirkung/P Auswüchse/N Auswürfe/N Auswuchs/T Auswurf/S Auszahlens Auszahlung/P Auszahlungsautomat/P Auszahlungsverfügung Auszehren/JS Auszeichnens Auszeichnung/P Auszeit Auszug/STp Auszugsschiene/N Autarkie Authentifizierens Authentifizierung/P Authentisierens Authentisierung/P Authentizität Auto/S Autoausstellung Autobahn/P Autobahnanschluss/Tp Autobahnauffahrt Autobahnausfahrten Autobahnbau Autobahnbrücke Autobahneinfahrten Autobahnfahrt Autobahngebühren Autobahnkreuz Autobahnparkplätze Autobahnsteuer Autobahnstrecken Autobahntote Autobahnzubringer/NS Autobatterie Autobiographie/Nf Autobox Autobrücke Autobus/Qq Autobusbahnhöfe Autobusbahnhof/S Autobushaltestelle Autobuslinie Autobusreifen Autobusreisen Autodidakt/P Autodidaktik Autodiebe Autodiebstahl Autodienst Autodrom Autofähren Autofabrik/P Autofahren/S Autofahrer/NS Autofahrt/P Autofriedhöfen Autofriedhof Autogeschäft Autogramm/EPS Autogrammjäger Autogrammsammlung Autogrammstunde Autograph/P Autohändler/N Autohalde Autohandel Autohersteller Autohilfen Autohupe/N Autoimport Autoinsasse Autokarosserie/N Autokarte Autokauf/Sp Autokino/S Autoknacker Autokolonne Autokonzern/E Autokult Autolack Automagazin/EPS Automarkt/STp Automat/P Automatengeschäft Automatenhändler Automatenknacker Automatentheorie Automatik/P Automatikablauf/Sp Automatikbetrieb Automatikdatei/P Automatikfahrt/P Automatikfunktion/P Automatikprogramm/S Automatikprogrammierung Automatikregelung/P Automatikstart Automatiktypen Automatikzyklen Automatikzyklus Automation/P Automatisierens Automatisierung/P Automatisierungsgrad/EPST Automatisierungsstufen Automatismus Automechaniker/S Automobil/EPS Automobilabsatz Automobilbau Automobilbereich Automobilfabrik Automobilfirma Automobilfirmen Automobilhandlung Automobilimporte Automobilisten Automobilklub/S Automobilkonzern/E Automobilproduzenten Automobilrennen Automobilrevue Automobilunternehmen Automobilverbände Automobilverkäufer Automobilwerk/E Automobilwirtschaft Automorphismen Automorphismus Automotor/PS Automuseum Autonamen Autonomie Autonomiebestrebung/P Autonummer Autopilot Autopreis/EPT Autopsie/N Autor/FPS Autoräuber Autoreise Autoreisenden Autorenkollektiv/S Autorennpläne Autorenrecht/E Autoreparaturwerkstatt Autorisierens Autorisierung/P Autorität/P Autoritätsverlust/ST Autorschaft Autoschau Autoschlange/N Autoschlüssel Autositze Autoskooter/N Autosport Autostimulationsfunktion Autostopp Autostraße/N Autoteile Autotelefon Autotür/P Autouhren Autounfall/Sp Autoverkäufer Autoverkehr/S Autoverleih/EPRS Autoverleiher/NS Autovermietung Autoverwertung Autoveteran Autowerk Autowerkstätten Autowerkstatt Autowrack/S Autozeitschrift Autozentrum Autozubehör/EPS Autozusammenstoß/Tp Auvergne Avantgarde/N Avantgardefilme Aversion/P Aviv Avocado/S Avogadro/S Axel/S Axiom/EPS Axt Azalee/N Azetat/EPS Azoren Azteken Aztekenreich Azur BASF BBC BGB BH BIOS BKA BLZ BMW BND BP BRD BSE BTX BVG Bäche/N Bächlein/S Bäcker/FNS Bäckerei/P Bäckergehilfe Bäckergesellen Bäckerjunge Bäckerlehre Bäckermeister Bäder/N Bälde Bälle/N Bände/NR Bändel/S Bänden Bänder/N Bänderriss/EPT Bändigens Bändigung/P Bänke/NR Bänker/NS Bär/FP Bärendreck Bärenkräfte Bärenmütze/N Bärte/N Bässe/N Bäuche/N Bäuerin/F Bäume/N Babel Baby/S Babyboom Babyjahr Babylon Babylonier Babynahrung Babypflege Babysachen Babysocken Bach/ST Bachufer Backblech/EPS Backenbärte/N Backenbart Backenknochen Backenzähne/N Backenzahn/S Backfisch/E Backgammon Background/S Backhuhn Backöfen Backofen/S Backpulver/S Backslash/S Backstein/E Backstube Backup/S Backware/N Backwarenindustrie Backzeit Bad/T Badeanlagen Badeanstalt/P Badeanzug/STp Badeeinrichtung Badeerlebnis/Qq Badegäste Badegast/T Badegelegenheit Badehaus/Tp Badehose/N Badekappen Badekostüm Badekur Bademäntel/N Bademantel Bademeister/NS Badeort/ET Badesaison Badestrände Badestrand/T Badetücher Badetuch/T Badewanne/N Badewasser Badezimmer/N Badezimmerwand Badminton Bafög Bagatelle/N Bagdad Bagger/S Baggerarbeit/P Baggerarm/EPST Baggerbetrieb Baggerfahrer Baggergeräte Baggerlöffel/S Baggermaschine/N Baggerobjekte Baggerposition Baggerreichweite Baggerschaufel Baggersee/NS Baggerstandort Baggersteuerung Bahamas Bahnangestellter Bahnanleihe Bahnarbeiter/FNS Bahnbeamte/NR Bahnbrecher/NS Bahndämme/N Bahndamm/T Bahnexpress/EPT Bahnfahrt/P Bahnfracht/P Bahngebiet Bahngleis/EPT Bahngleisanschluss/Tp Bahnhöfe/N Bahnhof/ST Bahnhofsanlagen Bahnhofskiosk/E Bahnhofskommission Bahnhofspennern Bahnhofsplatz Bahnhofstraße Bahnhofswartesaal Bahnhofswirtschaft Bahnknotenpunkt Bahnkurve/N Bahnlasten Bahnlinie/N Bahnreise/N Bahnrekord Bahnservice Bahnsteig/EPT Bahnsteigkante Bahnstörung/P Bahnstrecken Bahntarife/N Bahnübergang/Tp Bahnverwaltung/P Bahnwärter Bahnweg Bahnwerke Bahrain Bahre/N Bahrein Bai/P Baiser Baisse/N Baissedeckung/P Baissemeldung/P Baissier/S Bajonett/EPS Bajonettflansch Bajonettverschluss/Tp Bakschisch Bakterie/N Bakterienkultur Bakterienträger Bakteriologe/N Balance/N Balanceakt/EPST Balancierens Balancierung/P Balboa Balearen Bali Balkan Balkankrieg Balkanländer Balkanpakt Balken/S Balkenanzeige/N Balkendarstellung/P Balkenform Balkenlettern Balkennummerierung Balkenwaage/N Balkon/EPS Balkonfenster Ball/JS Ballade/N Ballannahme Ballartisten Ballast/T Ballaststoffe/N Ballbesucher Balldame Ballduelle Ballens Ballerina Ballerinen Ballerspiel/EPS Ballett/ST Ballettabende Ballettchef Ballettdirektor/P Ballettleistung/P Ballettleiter Ballettmeister Ballettmusik Ballettpartituren Ballettratten Ballettromantik Balletttänzer/FNS Ballettwettbewerb Ballgesellschaft Ballistik Balljungen Ballkleider/N Ballkleides Ballnächte Ballnacht Ballon/EPS Ballonfahrer/FNS Ballonflug/STp Ballonmütze Ballonsatellit Ballpassagen Ballsäle/N Ballsaal/ST Ballspiele/N Ballspielplatz Ballungsgebiet/EPST Ballungsraum/STp Ballungszentrum Ballwechsel Ballwurfmaschinen Balsam/S Balte/FN Baltikum Balzverhalten Bamberg Bambi Bambus Banalität/P Banane/N Bananenladung Bananenparadiese Bananenrepublik Banause/N Banausentum Bandage/N Bandagist/P Bandanlage/N Bandaufnahme Bandbreite/N Bande/S Bandenchef Bandenmitglieder Bandensystem Bandes Bandfabrik Bandförderer/S Bandit/P Banditeninsel Bandkeramik Bandpass/Tp Bands Bandscheiben Bandspeicherung Bandstahlwerkzeug Bangemänner Bangkok Bangladesh Banjo/S Bank/PR Bankaktivitäten Bankangestellten Bankangestellter Bankanweisung Bankarbeitstag Bankaufsichtsbehörde Bankauskunft Bankbeamte/N Bankbescheinigung/P Bankbosse Bankbürgschaften Bankbuch Bankcomputer Bankdarlehen Bankdaten Bankdirektor/PS Bankdividende Bankeinlagen Bankenapparat Bankenaufsichtsbehörde Bankenausschuss/Tp Bankenautomation/P Bankenbeteiligung Bankenfachpresse Bankengagements Bankengelder Bankengemeinschaft Bankengeschäft Bankengewerbe Bankengruppe Bankenhandel Bankenkonsortium Bankenkrach Bankenkrise Bankenmentalität Bankenprobleme Bankenpublikums Bankensoftware Bankenstory/S Bankensystems Bankentage Bankenverstaatlichung Bankenvorstände Bankenwelt Bankenwesen Bankenzusammenbrüche Bankenzusammenbruch/S Banker/NS Bankerfahrung Bankett/EPS Bankfach Bankfeiertag/E Bankfiliale Bankfirmen Bankgarantie/N Bankgebühren Bankgefüge/N Bankgeheimnis/Qq Bankgeschäft/P Bankgesellschaft/P Bankgewerbe Bankgruppen Bankguthaben Bankhallen Bankhalter/N Bankhaus/Tp Bankier/S Bankinstitut Bankkarten Bankkaufmann Bankkonten Bankkonto/S Bankkredite Bankkreisen Bankkrise Bankkunde/N Bankkurs Bankleiter Bankleitzahl Banklizenz Bankmanager Banknote/N Banknotendeckung Banknotenkurse Banknotenumlauf/Sp Bankpleite Bankpleitenwelle Bankpräsident Bankpraktiker Bankprofis Bankräuber/S Bankreferenzen Bankregel Bankreport Bankrotterklärung/P Bankschätzwert Bankschalter Bankschließung/P Banksonderkonto Bankspesen Bankstelle Banktitel Banktransaktionen Banktresor Banküberfall/Sp Banküberweisung/P Bankunternehmen Bankverbindung Bankverkehr Bankwelt Bankwesen/S Bankzinsen Bankzusammenbruch Bann/R Bannens Banner/NS Bannerträger Bannstrahl Bannung/P Bantamgewichtsmeister Bantu Baptist/P Baptisterium/S Baracke/N Barackenlager Baranzahlung Barausschüttung Barauszahlung/P Barbados Barbar/P Barbara/S Barbarei Barbarella/S Barbarentrupps Barbarossa/S Barbesitzerin Barbestände/N Barbestand/T Barbetrag/STp Barbetrieb Barbie/RS Barbier/EPS Barcelona Barclays Barcode/S Bardame/N Barde/N Bareinnahme/N Bareinzahlung Barentssee Bargeld/RST Bargeldbestände Bargeldbestand Bargeldmenge Bargeldtransaktion/P Bargeldumlauf/Sp Bariton/EPS Barium Bark/EP Barkasse/N Barkauf/Sp Barleistung Barliquidität Barmherzigkeit Barmittel Barnabas Barock Barockorchester Barockstadt Barometer Barometerstände Barometerstand/T Baron/EFPS Barrakuda/S Barrel Barren/S Barreserve/N Barriere/N Barrikade/N Bars Barschaft/P Bart/T Barterrasse/N Bartholdy/S Bartträger/N Bartwuchs Barüberschuss/Tp Barverdienst Barverkauf/Sp Barverkaufspreis Barverlust/EPT Barzahlung/P Basalt Basaltplateau Basar/EPS Baseball Baseballsaison Basel Basen/I Basic Basilika Basis Basisadresse/N Basisarbeit/P Basisbaustein/EPS Basisblöcke/N Basisblock/S Basisdaten Basisdatentyp/PS Basisertrag/STp Basisfirmware Basisgröße/N Basisjahr/EPS Basislager/S Basismaterial Basismischung Basisoperation/P Basispaket/EPST Basispreis/EPT Basisrate/N Basissoftware Basisstrecke/N Basissystem/EPS Basistechnik/P Basistyp/PS Basisvektor/PS Basiswährung/P Basiswissen/S Basiszinsen Basken Baskenland/T Baskenmütze/N Basketball/Sp Basketballkämpfe Basler/N Bass/T Bassfigur Bassgeige/N Bassin/S Bassist/P Bassschlüssel/NS Bassstimme/N Bast/T Bastard/EPST Bastelei/P Bastelstube/N Bastelstunde/N Bastille Bastion/P Bataillon/EPS Bataillonsstärke Batik/P Batist/ET Bator Batterie/N Batterieanschluss/Tp Batteriesäure/N Batteriespannung Batteriestromversorgung Batterieversorgung Batteriewechsel Batzen Bau/RS Bauämter/N Bauabfall/Sp Bauabschnitt/EPS Bauabteilung Bauamt Bauanleitung/P Bauantrag/STp Bauarbeiter/FNS Bauart/P Bauauflage/N Bauausgaben Baubeginn Bauberatung Baubereich Bauberuf Baubeschränkung Baubestandteile Bauboom Baubreite/N Baubüro Bauch/T Bauchdecke Bauchgrimmen Bauchlandung/P Bauchmuskel/N Bauchreden Bauchredner/N Bauchschmerzen Bauchspeicheldrüse Bauchtänzerin Bauchweh Baud Baudarlehen Baudenkmäler Baudirektor Baudrate/N Baudratenbestimmung Bauelement/EPST Bauer/NS Bauernaufstand Bauerndorf Bauernerhebung/P Bauernfängerei Bauernfamilien Bauernfrau/P Bauernführer Bauerngut Bauernhaus/Tp Bauernhöfe/N Bauernhof/T Bauernjunge Bauernkonkurse Bauernkunst Bauernland Bauernpartei Bauernpräsident Bauernrevolte Bauernschaft Bauernschrank Bauernsöhne Bauernstaat Bauernstühle Bauerntrampel Bauerntum Bauernverband Bauernwirtschaft Bauersfrau Baufachmann Baufachschule Baufirma Baufirmen Baufläche Bauform/P Baufortschritt Bauführung Baugebiete Baugelände/S Baugenehmigung/P Baugeräten Baugerüst/ET Baugeschäft/EPS Baugewerbe/S Baugröße/N Baugründen Baugrube Baugrundstück Baugruppe/N Baugruppenlieferant Baugruppenträger Bauhandwerker/NS Bauherr/FNP Bauholz/T Bauhütte Bauingenieur/PS Bauingenieurwesen Baujahr/EPS Baukästen Baukasten/S Baukastensystem/EPS Baukaufmann Baukeramik Baukörper Baukolonnen Baukomplex Baukonjunktur Baukonto Baukontrolleur Baukreditbank Baukunst Bauland Baulandmangel Baulast Bauleistung/P Baulöwe Baum/ST Baumaßnahme/N Baumaschinen Baumaschinenfabrik Baumaschinenfertigung Baumaterialien Baumdarstellung Baumeister/S Baumethoden Baumgruppen Baumhöhle/N Bauminister Bauministerium Baumkronen Baumschere Baumschule/N Baumspitzen Baumsprache/N Baumstämme/N Baumstamm/S Baumstrünke Baumstümpfe Baumstumpf Baumuster Baumusterprüfung/P Baumwipfel Baumwollartikel Baumwollbekleidung Baumwollbranche Baumwollernte Baumwollerzeugnis/Qq Baumwollexport Baumwollfarmer Baumwollfelder Baumwollgewebe Baumwollproduktion Baumwollsituation Baumwollverarbeiter Baumwollvorräte Baumwollware/N Baumwollweißwaren Baumzapfen Bauordnungsrecht Bauparzelle/N Baupläne Bauplätze/N Bauplan/ST Bauplanung Bauplatz/T Baupolizei Baupreisen Baupreiserhöhung Baupreissituation/P Bauprojekt/S Baureihe/N Baurisiko Bauruinen Bausätze/N Bausatz/T Bauschlosser/NS Bausektor Bauskizzen Bauspardarlehen Bauspareinlagen Bausparern Bausparkasse/N Bausparkassenkatastrophe Bausparkassenkrise Bausparkassensicherungsfonds Bausparprämie Bausparsumme/N Bausparvertrag/Tp Bausparwesen Bausperren Baustadtrat Baustein/EPST Baustelle/N Baustellenbesetzung Baustellenbesuch/S Baustil/EPT Baustoff/EPT Baustofffirma Baustoffhandlung/P Baustoffindustrie/N Baustufe/N Bausubstanz Bausumme/N Bautätigkeit/P Bautechniker/S Bauteil/EPS Bauteilekosten Bauteilename/N Bauteileseite Bauteilseite Bauträger/S Bauträgerakrobaten Bauträgergesellschaften Bauträgerpleiten Bauunternehmen Bauunternehmer/NS Bauverlag Bauvorhaben/S Bauvorschriften Bauweise/N Bauwelt Bauwerk/EPST Bauwert Bauwirtschaft Bauxit Bauzeit/P Bauzuschuss/Tp Bauzustand Bavaria/S Bayer/FN Bayern/SW Bayeux Bayonne Bayreuth Bazillen Bazillus Bde Bea/S Beachtens Beachtung/P Beamer/NS Beamte/FNR Beamtenabbau Beamtenapparate Beamtenbeleidigung Beamtenbesoldung Beamtenbund/T Beamteneid Beamtenerfahrung/P Beamtengehälter Beamtengesetz Beamtengruppe Beamtenordnung Beamtenschaft Beamtenstellen Beanspruchens Beanspruchung/P Beanstandens Beanstandung/P Beantragens Beantragung/P Beantragungsfrist/P Beantwortens Beantwortung/P Bearbeitens Bearbeiter/FNS Bearbeitung/P Bearbeitungsfunktion/P Beate/S Beatfan Beatgruppe/N Beatles Beatlokal Beatmens Beatmung/P Beatmusik Beatplatte Beatrice/S Beatrix Beaufschlagens Beaufschlagung/P Beaufsichtigens Beaufsichtigung/P Beauftragens Beauftragung/P Beaujolais Bebauens Bebauung/P Bebauungsplan/S Becher/S Becken/S Beckenbauer/S Becker/S Beckmann/S Becquerel/S Bedachtsamkeit Bedarfs Bedarfsäußerung/P Bedarfsartikel/NS Bedarfsfall/S Bedarfsidentität Bedarfssituation/P Bedeckens Bedeckung/P Bedenkenträger/N Bedenklichkeit/P Bedenkzeit/P Bedeutens Bedeutsamkeit Bedeutung/P Bedeutungserweiterung/P Bedeutungslosigkeit Bedienanleitung/P Bedienbarkeit Bedienebene/N Bedieneinheit/P Bedieneinrichtung/P Bedienelement/EPST Bedienens Bediener/NS Bedieneroberfläche/N Bedienfeld/S Bedienfolie Bedienfunktion/P Bedienkomfort Bedienmannschaft/P Bedienmöglichkeit/P Bedienoberfläche/N Bedienperson/P Bedienpersonal/S Bedienpult Bedienstete/NR Bedientastatur/P Bedientaste/N Bedienung/P Bedienungsanleitung/P Bedienungseinrichtung/P Bedienungselement/EPST Bedienungsweise/N Bedienwünsche/N Bedingens Bedingung/P Bedrängnis/q Bedrohens Bedrohung/P Bedrohungsängste/N Bedrouille Bedrückens Bedrückung/P Bedürfnis/Qq Bedürfnisanstalt/P Bedürfnisreduzierung/P Bedürftigkeit Beefsteak/S Beeinflussbarkeit Beeinflussens Beeinflussung/P Beeinflussungsfähigkeit Beeinflussungsmittel Beeinträchtigens Beeinträchtigung/P Beelzebub Beendigens Beendigung/P Beengens Beengtheit Beengung/P Beerdigens Beerdigung/P Beerdigungsinstitut/EPS Beere/N Beet/EPT Beethoven/S Befähigens Befähigung/P Befehl/S Befehlsangebot Befehlsausführung Befehlscode/S Befehlseingang/Sp Befehlsfolge/N Befehlsform/P Befehlsgeräten Befehlshaber/NS Befehlsliste Befehlsmodus Befehlssatz Befehlssequenzen Befehlsstruktur/P Befehlston/S Befehlsvorrat Befehlswörter/N Befehlswort/EPST Befehlszeile Befestigens Befestigung/P Befestigungsbleche Befestigungsgewinde Befestigungslöcher Befestigungsschraube Befestigungsteil Befestigungswand Befeuchtens Befeuchtung/P Befindlichkeit/P Befleckens Befleckung/P Beförderns Beförderung/P Beförderungszahl Befolgens Befolger Befolgung/P Befragens Befrager Befragung/P Befragungsaktion/P Befragungsgruppe/N Befragungstag Befreiens Befreier/FNS Befreiung/P Befreiungsantrag/STp Befreiungsarmee/N Befreiungsbewegung Befreiungsfeier Befreiungsfront Befreiungskomitee/S Befreiungsorganisation/P Befreiungsschlag/STp Befremdens Befremdung/P Befriedens Befriedigens Befriedigung/P Befriedung/P Befruchtens Befruchtung/P Befürchtens Befürchtung/P Befürwortens Befürworter/N Befürwortung/P Befugnis/q Befund/ET Begabtenauslese/N Begabtenförderung Begabung/P Begattens Begattung/P Begebenheit/P Begegnens Begegnung/P Begehens Begehrlichkeit/P Begehrtheit Begehung/P Begeisterns Begeisterung/P Begeisterungsruf/EPS Begierde/N Beginns Beglaubigens Beglaubigung/P Beglaubigungsschreiben/S Begleichens Begleichung/P Begleitbrief/EPST Begleitens Begleiter/FNS Begleitergruppe Begleiterscheinung/P Begleitheft/EPST Begleitmusik Begleitnote Begleitperson/P Begleitpersonal/S Begleitschiff Begleitschreiben/S Begleitumstände/N Begleitumstand/T Begleitung/P Beglückwünschung Begnadigens Begnadigung/P Begnadigungsaktion/P Begonie/N Begräbnis/Qq Begradigen/JS Begrenzens Begrenztheit Begrenzung/P Begrenzungslinie/N Begrenzungsmauer Begrenzungswarnung Begriffe/S Begriffs Begriffsbestimmung/P Begriffsbildung/P Begriffsebene/N Begriffserklärung/P Begriffsvermögen/S Begriffsverwirrung/P Begriffswörterbuch Begründens Begründer/FNS Begründung/P Begründungsschritt/EPS Begrüßens Begrüßung/P Begrüßungsansprache Begrüßungsempfang Begrüßungsfeierlichkeit/P Begrüßungskanon Begrüßungskuss/Tp Begrüßungspalaver Begrüßungsworte Begünstigens Begünstigung/P Begutachtens Begutachtung/P Behäbigkeit Behälter/NS Behälterbau Behältnis/Qq Behändigkeit Behaglichkeit Behandelns Behandelung/P Behandlung/P Behandlungserfolge/N Behandlungsgerät Behandlungsmethode/N Behang/STp Beharrlichkeit Behauptens Behauptung/P Behausens Behausung/P Behaviorist/P Behebens Behebung/P Behebungsversuch/EPS Beheizens Beheizung/P Behelf/ST Behelligens Behelligung/P Beherrschens Beherrscher Beherrschtheit Beherrschung/P Beherztheit Behinderns Behindertenwerkstatt Behinderung/P Behörde/N Behördenaufträge Behördenbauten Behördendeutsch Behördenfehler Behördengeschäft Behördenleiter Behördenstellen Behördenwillkür Behr/S Behutsamkeit Beibehaltens Beibehaltung/P Beiblatt/S Beichtgeheimnis/Qq Beichtkind/RST Beichtstühlen Beichtstuhl/T Beichtvätern Beichtvater/S Beiersdorf Beifahrer/FNS Beifahrersitz Beifall/S Beifallsruf/EPS Beifallsstürme/N Beifallssturm Beifügens Beifügung/P Beigeschmack/ST Beihilfe/N Beil/EPST Beilage/N Beilagenänderung/P Beilagscheiben Beilegens Beilegung/P Beileid Beileidsbesuche Beileidsbrief/ET Beileidskundgebung/P Beileidstelegramme Beimengens Beimengung/P Beimischungszwecke Bein/EGMPST Beiname/N Beinamen/S Beinarbeit Beinbrüche/N Beinbruch Beine/GMNS Beinhaus Beinmuskeln Beinpaar Beinprothesen Beinverletzung/P Beipflichtens Beipflichtung/P Beiräte/N Beirat/ST Beiratstreffen/S Beirut/S Beisammensein Beischläfer Beischlaf Beisein/S Beisetzens Beisetzung/P Beisitzer/FN Beisitzrecht Beispiel/EPS Beispieldialog/EPS Beispielfall/Sp Beispiellosigkeit/P Beispielprogramm/E Beistanderklärung Beistandsbemühung/P Beistandserklärung Beistandskredit Beistandspakt Beistandsverträge Beistellens Beistellnetzteil Beistellung/P Beitrag/STp Beitragsaufkommen/S Beitragseinnahme/N Beitragserhöhung/P Beitragshöhe/N Beitragspflicht Beitragsrückerstattung/P Beitragsrückvergütung Beitragsüberträge Beitragszahlung/P Beitragszuwachs Beitritte/N Beitritts Beitrittsantrag/STp Beitrittsbedingung/P Beitrittsgebühr Beiwagen/S Beiwörter/N Beiwort/ST Bejahens Bejahung/P Bekämpfens Bekämpfung/P Bekanntenkreis/EPT Bekanntgabe Bekanntgeben/S Bekanntheit Bekanntheitsgrad/T Bekanntmachen/JS Bekanntschaft/P Bekanntwerden/S Bekehrens Bekehrung/P Bekennerschreiben/S Bekenntnis/Qq Bekenntnisfreiheit Bekleidens Bekleidung/P Bekleidungsbranche Bekleidungsindustrie Bekleidungskonjunktur Bekleidungspreise Bekleidungsproduktion Bekleidungstextilien Bekleidungsvorschriften Bekleidungswerk/T Beklemmens Beklemmung/P Bekömmlichkeit Beköstigen/JS Bekräftigens Bekräftigung/P Bekümmernis/q Bekundens Bekundung/P Belästigens Belästigung/P Beladens Beladezentrum Beladung/P Belag/STp Belagerer/N Belagerns Belagerung/P Belagerungszuständen Belagerungszustand/T Belang/EPS Belanglosigkeit/P Belastbarkeit Belastens Belastung/P Belastungsanzeige Belastungsgrad Belastungsgrenze/N Belastungsprobe/N Belastungstest/S Belastungsunterlagen Belastungszeugen Belebens Belebung/P Belebungsmaßnahme/N Beleg/JST Belegausdruck Belegens Belegnummer Belegschaft/P Belegschaftsmitglieder Belegschaftsvertreter Belegschaftszunahme Belegschein/EPT Belegstelle/N Belegungsliste/N Belehrens Belehrung/P Beleidigens Beleidigung/P Beleidigungsverfahren Beleihens Beleihung/P Beleihungsfähigkeit Beleihungsgrenze/N Beleihungsmaßstäbe Beleihungsrichtlinien Belesenheit Beleuchtens Beleuchtung/P Beleuchtungskörper Beleuchtungstechnik Belfast Belgien/S Belgier/FNS Belgrad/S Belgrader Belichtens Belichtung/P Belichtungsdauer Belichtungsmesser/NS Belichtungstabellen Belichtungszeit/P Beliebigkeit Beliebtheit Beliebtheitsgrad Belieferns Belieferung/P Belize Belletristik Belobigen/JS Belohnens Belohnung/P Belustigens Belustigung/P Bemalens Bemalung/P Bemaßens Bemaßung/P Bemerkens Bemerkung/P Bemessens Bemessung/P Bemühens Bemühung/P Bemusterns Bemusterung/P Ben/S Benachrichtigens Benachrichtigung/P Benachteiligens Benachteiligung/P Benchmark/S Benediktiner/FNS Benediktinerabtei Benediktinermönche Benefiz/EPT Benehmens Benelux Beneluxhäfen Beneluxstaaten Benennens Benennung/P Benetton Bengel/NS Benjamin/S Benommenheit Benotens Benotung/P Benotungssystem/EPS Bentley/S Benützer Benutzbarkeit Benutzens Benutzer/NS Benutzerebene/N Benutzerhäufigkeit Benutzerinterface/S Benutzerkomfort Benutzernummer Benutzeroberfläche/N Benutzerprogramm/EPS Benutzerwünsche/N Benutzung/P Benutzungshinweis/EPT Benutzungsmöglichkeit/P Benutzungsrecht/EPST Benz Benzin/S Benzindämpfe Benzindiebe Benzinfass/T Benzinflecken Benzingutscheine Benzinkanister/N Benzinkosten Benzinmarken Benzinmarkt/STp Benzinmotor/PS Benzinpreis Benzinsynthese Benzintank/S Benzinuhr/P Benzinverbrauch/S Benzinzufuhr Benzol Beo/S Beobachtens Beobachter/FNS Beobachterperspektive/N Beobachtertruppe Beobachtung/P Beobachtungsgabe/N Beobachtungsgruppen Beobachtungsplatz Beobachtungsposten/S Beobachtungsstation/P Beobachtungstürme Beobachtungsturm/ST Bepflanzens Bepflanzung/P Beplanken/JS Bequemlichkeit/P Bequemlichkeitsdepot/S Bequemlichkeitsgründe/N Beratens Berater/FNS Beraterhonorar Beraterverhältnis/Qq Beratervertrag/STp Beratschlager/NS Beratschlagungsstelle/N Beratung/P Beratungsaufgabe/N Beratungsausschuss/Tp Beratungsbüro/S Beratungsgegenstände/N Beratungsgegenstand/ST Beratungsgesellschaft/P Beratungslehrer Beratungsnotwendigkeit Beratungsphase/N Beratungspunkt/EPST Beratungsraum/STp Beratungsstelle/N Beratungstätigkeit/P Beratungstisch/ST Beratungsverfahren/S Beraubens Beraubung/P Berauschens Berauschtheit Berauschung/P Berechenbarkeit Berechenbarkeitstheorie/N Berechnens Berechnung/P Berechnungsergebnis/Qq Berechnungsfall/Sp Berechnungsgrundlage/N Berechnungsmaterial Berechnungsmethode/N Berechnungspreise Berechnungsunterlagen Berechnungsverfahren/S Berechnungsvorschriften Berechtigens Berechtigung/P Berechtigungsgrundlagen Berechtigungsnachweis/PT Berechtigungsschein/EPST Beredsamkeit Bereich/EPST Bereicherns Bereicherung/P Bereichsbegrenzung/P Bereichsgrenze/N Bereichsmaximum Bereichsminimum Bereichsmitte Bereichsüberschreitung/P Bereifen/JS Bereinigens Bereinigung/P Bereinigungsprozess/EPT Bereitens Bereithaltens Bereithaltung/P Bereitschaft/P Bereitschaftsdienst/EPT Bereitschaftsleiter Bereitschaftsmaßnahme Bereitschaftsmeldung/P Bereitschaftspolizist Bereitstellens Bereitstellung/P Bereitstellungsräume/N Bereitung/P Bereitwilligkeit Berg/JST Bergamt Bergarbeiter/FNS Bergarbeiterdorf Bergarbeiterschaft Bergarbeiterstreik Bergbach Bergbad Bergbahn Bergbau/S Bergbauaktien Bergbauanwendung Bergbauausführung Bergbauausrüstung/P Bergbaubereich Bergbaueinsatz Bergbauelektronik Bergbauergebnis/Qq Bergbauforschung Bergbaugebiet Bergbaugehäuse Bergbaugesellschaft/P Bergbaukomponenten Bergbaumeinung Bergbaunachwuchs Bergbauprämien Bergbauprodukte Bergbaustecker Bergbautarife Bergbautechnik Bergbautechnologie Bergbauten Bergbauversion/P Bergbauzulieferer Bergbauzwecke Bergbehörde Bergbesteigung/P Bergbewohner/FNS Bergdorf Bergens Bergführer/NS Berggasthof Berggelände Berggewerkschaft Berggipfel Bergheim Berghotel Berghütte Bergkette/N Bergkrankheit Bergkristall/EPS Bergland Bergler Bergleute/N Berglift Bergmänner/N Bergmann Bergmannsbetreuung Bergmannsglück Bergmannslöhne Bergmassiv/EPS Bergnot Bergpension Bergpredigten Bergrettungsaktion Bergrettungsdienst Bergrutsch/EPT Bergschuh/EPS Bergschule Bergspitze Bergsport Bergstämme Bergstationen Bergsteiger/FNS Bergsteigerdrama Bergsteigerei Bergsturz Bergungsaktion/P Bergungsarbeiten Bergungsexperten Bergungsflotte Bergungskapitän Bergungskommando Bergungsmanöver Bergungsschiff Bergungsversuch/E Bergwälder Bergwacht Bergwanderung Bergwerk/EPS Bergwerksbesitz Bergwerksbetriebe Bergwerksgesellschaft Bergwerksleitung Bergwerksmesse Bergwerksunglück Bergwerksunternehmen Bergwerksverein Bericht/ST Berichterstatten/JS Berichterstatter/FNS Berichtigens Berichtigung/P Berichtigungsbuchung/P Berichtsbände Berichtsheft/EPST Berichtskritik Berichtszeitraum/S Beriemen/JS Berieselns Berieselung/P Berieslung/P Berkeley/S Berlin/RS Berliner/FNS Berlinförderungsgesetz Berlinverhandlung/P Bermudas Bermudashorts Bern/GR Bernadotte/S Bernd/S Bernhard/S Bernhardiner/S Bernhardt/SW Bernoulli/S Bernstein/S Berserker/S Bert/S Berta/S Bertelsmann Berthold/S Berücksichtigung/P Berühmtheit/P Berührens Berührung/P Berührungsfläche/N Berührungslinie/N Berührungspunkt/EPST Beruf/JST Beruferaten Berufoffiziere Berufsanfänger/NS Berufsangabe Berufsausbildung/P Berufsausübung Berufsbekleidung/P Berufsberater/FNS Berufsberatung Berufsbild/RST Berufsbildung Berufsbildungsgesetz Berufsbildungszentrum Berufsboxen Berufsboxer/NS Berufschance/N Berufserfolg Berufsfachschule Berufsfahrer Berufsfeld/RT Berufsflugzeugführer Berufsforschung Berufsfortbildung Berufsgeheimnis/Qq Berufsgenossenschaft Berufsgründe/N Berufsgrundbildungsjahr Berufsgruppe/N Berufsinstanz Berufsjahr/EPS Berufsjubiläum Berufskleidung Berufskrankheit/P Berufskunde Berufslaufbahn Berufsleben/S Berufsliste Berufsmusikern Berufsoffizier/S Berufsordnung Berufsorganisation/P Berufspraktikum Berufsradfahrer Berufsreife Berufsrisiko Berufsschichten Berufsschule/N Berufsspieler/NS Berufssportler/S Berufsstand Berufstennis Berufsunfähigkeit Berufsunfall/Sp Berufsverbände Berufsverband Berufsverbot Berufsvereinigung/P Berufsverkehr/S Berufsvertretung/P Berufsvorschulen Berufswahl Berufswelt Berufszeichen Berufsziel Berufszweig/EPST Berufungsgericht/EPST Berufungsinstanzen Berufungslisten Berufungspraktiken Berufungsrecht/EPST Berufungsverfahren Berufungsvorschläge Beruhigens Beruhigung/P Beruhigungsmittel/NS Beruhigungspillen Beruhigungstabletten Beryll Besänftigens Besänftigung/P Besätze/N Besatz/JRT Besatzungsangehörigen Besatzungsbehörden Besatzungsetat Besatzungsmächte/N Besatzungsmacht Besatzungspersonal Besatzungsrecht Besatzungssoldat Besatzungstruppen Besatzungszeit Besatzungszone Beschädigens Beschädigung/P Beschäftigens Beschäftigung/P Beschäftigungsdauer Beschäftigungslosigkeit Beschäftigungsmöglichkeit/P Beschäftigungsniveau Beschäftigungsprogramm/P Beschäftigungsquote Beschäftigungsrückgang Beschäftigungsverhältnis/Qq Beschäftigungszahl/P Beschämens Beschämung/P Beschaffenheit Beschaffens Beschaffung/P Beschaffungsprogramm Beschaffungsstelle/N Beschaffungsverfahren/S Beschaltens Beschaltung/P Beschattens Beschattung/P Beschaulichkeit/P Bescheid/JST Bescheidenheit Bescheidens Bescheinigens Bescheinigung/P Bescherens Bescherung/P Beschichtens Beschichtung/P Beschießens Beschießung/P Beschimpfens Beschimpfung/P Beschiss Beschlag/STp Beschlagenheit Beschleunigens Beschleuniger/S Beschleunigung/P Beschleunigungskräften Beschleunigungsmessung Beschleunigungsvektoren Beschleunigungsversuch Beschleunigungswerte Beschluss/Tp Beschlussfähigkeit Beschlussfassen/JS Beschlussunfähigkeit Beschneidens Beschneidung/P Beschönigens Beschönigung/P Beschränkens Beschränktheit/P Beschränkung/P Beschreibens Beschreibung/P Beschreibungsformalismen Beschreibungsmöglichkeit/P Beschreibungssprache/N Beschreibungstext Beschriftens Beschriftung/P Beschützer/FNS Beschuldigen/JS Beschuss Beschwerde/N Beschwerdebrief/EPS Beschwerderecht Beschwerdeverfahren Beschwerens Beschwerung/P Beschwichtigens Beschwichtigung/P Beschwichtigungspolitik Beschwörens Beschwörung/P Beschwörungsformel/N Beseitigens Beseitigung/P Besen/S Besenstiel/EPS Besessenheit Besetzens Besetztzeichen/S Besetzung/P Besetzungsaktion/P Besetzungsliste/N Besichtigens Besichtigung/P Besichtigungsfahrten Besichtigungsflug/STp Besichtigungsreise/N Besichtigungsrunde Besichtigungstermin/EPS Besiedelns Besiedelung/P Besiedlung/P Besiegens Besiegung/P Besinnens Besinnung/P Besinnungsfrage Besinnungslosigkeit Besitz/JRT Besitzer/FNS Besitzergreifen/JS Besitzerrecht/P Besitzfirma Besitzlosigkeit Besitznachweis/EPT Besitznahme/N Besitzstände/N Besitzstand Besitzsteuern Besitztitel Besitztümer/N Besitztum/S Besitzwechsel Besoldens Besoldung/P Besoldungserhöhung Besoldungsgesetz Besoldungsgruppe Besoldungsordnung Besoldungsproblem/EPS Besoldungsunterschiede Besonderheit/P Besonnenheit Besorgens Besorgnis/q Besorgung/P Bespannens Bespannung/P Bespitzeln/JS Besprechens Besprechung/P Besprechungsgegenstand Besprechungsnotiz Besprechungsprotokoll/S Besserns Besserung/P Besserungsanstalt/P Besserungshoffnung/P Besserwisser/NS Bestände/N Beständigkeit Bestärkens Bestärkung/P Bestätigens Bestätigung/P Bestätigungsanforderung Bestätigungsvermerk/EPS Bestallen/JS Bestandes Bestands Bestandsänderung/P Bestandsaufnahme/N Bestandserhöhung/P Bestandsliste/N Bestandsrenten Bestandssicherung Bestandsüberblick Bestandsveränderung/P Bestandsverminderung/P Bestandteil/EPS Bestattens Bestattung/P Bestattungsamt Bestattungsinstitut/EPST Bestattungsvorsorge Bestechens Bestechlichkeit Bestechung/P Bestechungsgeld/RST Bestechungsprozess/EPT Besteck/EPT Besteckindustrie Bestehens Besteigens Besteigung/P Bestelländerung Bestellbedingung/P Bestellbezeichnung/P Bestellbücher/N Bestellbuch Bestelleingang Bestellens Besteller/NS Bestellformular/EPS Bestellliste/N Bestellnr Bestellnr. Bestellnummer/N Bestellschein/EPS Bestelltexten Bestellumfängen Bestellung/P Bestellzettel/NS Besteuerns Besteuerung/P Besteuerungsinteresse Besteuerungspraktiken Besteuerungsrechte Besteuerungsverfahren/S Bestie/N Bestimmens Bestimmtheit/P Bestimmung/P Bestimmungsbuch Bestimmungsgründe Bestimmungshafen Bestimmungsländern Bestimmungsland/T Bestimmungsort/EPST Bestleistung/P Bestnr Bestnr. Bestrafens Bestrafung/P Bestrahlens Bestrahlung/P Bestrahlungsgerät Bestrebens Bestrebung/P Bestseller Bestückens Bestückung/P Bestückungsoption/P Bestückungspläne Bestückungsplan Bestückungsvarianten Bestückungsversion/P Bestürmens Bestürmung/P Bestürzens Bestürzung/P Bestuhlen/JS Bestzeit/P Besuch/RST Besucher/FNS Besucherstamm Besucherstrom Besucherzahlen Besucherziffern Besuchsbericht Besuchsfahrten Besuchsgenehmigung/P Besuchsperiode Besuchsprogramm/S Besuchsprotokoll Besuchsregelung/P Besuchstage Besuchstermin Besuchsverbote Besuchszeit/P Besuchsziel Betätigens Betätigung/P Betätigungsfeld/S Betätigungskolben Betätigungsmöglichkeit/P Betätigungsschritten Betäubens Betäubung/P Betäubungsmittel/NS Betaversion/P Beteiligens Beteiligung/P Beteiligungsangebot/T Beteiligungsbesitz Beteiligungsertrag/STp Beteiligungsfirma Beteiligungsformen Beteiligungskapital Beteiligungsmöglichkeit/P Beteiligungspolitik Beteiligungsquote Beteiligungsrechte Beteiligungstitel Betel Beteuerns Beteuerung/P Betörens Betörung/P Betonarten Betonbalken Betonbandeisen Betondamm Betondecke/N Betondruck/S Betondruckregelung Betoneinfüllung Betonens Betonförderleistung Betonfördermenge Betonierdruck Betoniereinrichtung Betoniergeschwindigkeit Betonierleistung Betonierregelung Betoniersteuerung Betoniersystem Betonklötzen Betonmauer Betonmischer Betonpfeiler Betonpiste Betonplatten Betonpumpe Betonpumpenverstellung Betonregelung Betons Betonsorten Betonstäbe Betonstahl Betonturm Betonumrandung Betonung/P Betonwarenfabrik Betonwerk Betonwüste Betracht/JR Betrachtens Betrachter/FNS Betrachtungseinheit Betrachtungsflächen Betrachtungsweise/N Betrag/STp Betragssumme/N Betrauens Betrauung/P Betreff Betreibens Betreiber/NS Betretens Betretung/P Betreuens Betreuer/FNS Betreuung/P Betreuungsbetrieb Betreuungsgehilfen Betriebe/S Betriebs Betriebsablauf/Sp Betriebsabmachung/P Betriebsabschluss/Tp Betriebsabteilung/P Betriebsamkeit Betriebsangehörige/NR Betriebsanlage/N Betriebsanleitung/P Betriebsanzeige/N Betriebsart/P Betriebsausflug/STp Betriebsausgabe/N Betriebsbahnhof Betriebsbedingung/P Betriebsbereich/EPS Betriebsbereitschaft Betriebsbeschreibung/P Betriebsbuchhalter Betriebsdaten Betriebsdatenerfassung Betriebsdauer Betriebsdirektor/P Betriebseinkommen Betriebseinnahmen Betriebseinrichtung/P Betriebserde Betriebserfahrung Betriebsergebnis/Qq Betriebsertrag/STp Betriebsfahrt Betriebsferien Betriebsfest/EPST Betriebsforderung Betriebsgebäude/N Betriebsgeheimnis/Qq Betriebsgerichte Betriebsgesellschaft/P Betriebsgröße/N Betriebsgrundstück Betriebshalle/N Betriebshinweis/EPT Betriebshygiene Betriebsingenieur Betriebsinhaber/NS Betriebsjahren Betriebskalkulation Betriebskapital Betriebsklima/S Betriebskollegen Betriebskoordinaten Betriebskosten Betriebslehre Betriebsleiter/NS Betriebsleitung/P Betriebsmaterial Betriebsmeister Betriebsmittel/NS Betriebsmodus Betriebsneubau Betriebsorganisation/P Betriebspanne Betriebspannung Betriebsparameter Betriebspause/N Betriebsprogramme Betriebsprüfer Betriebsprüfung/P Betriebspsychologie Betriebsräte/N Betriebsrat/ST Betriebsratmitglied Betriebsratsmitglieder Betriebsratssitzung/P Betriebsraum/STp Betriebsreinhaltung Betriebsrentenansprüche Betriebsrisiko/S Betriebsschließung Betriebsschluss Betriebsschreinereien Betriebssicherheit Betriebssituation/P Betriebssoftware Betriebsspannung/P Betriebsstätte/N Betriebsstörung/P Betriebsstoffe/N Betriebsstopp Betriebsstrom/S Betriebsstunden Betriebsstundenzähler Betriebssystem/EPS Betriebssystemfehler Betriebstechnik Betriebsteile Betriebstemperatur Betriebsüberschuss/Tp Betriebsüberwachung Betriebsumgebung/P Betriebsumständen Betriebsunfall/Sp Betriebsunterbrechung/P Betriebsurlaub Betriebsveränderung Betriebsverfassungsgesetz Betriebsverhalten Betriebsverlagerungspläne Betriebsverlust/EPS Betriebsvermögen/S Betriebsversammlung/P Betriebsversuche Betriebsweise/N Betriebswirt/EFPST Betriebswirtschaft Betriebswirtschaftler/N Betriebswirtschaftslehre Betriebswochen Betriebszeit/P Betriebszugehörigkeit Betriebszulassung Betriebszustände/N Betriebszustand/ST Betriebszweig/EPS Betriebverlagerung Betroffenheit Betroffensein Betrübnis/q Betrüger/FNS Betrügerei/P Betruges Betrugs Betrugsaktionen Betrugsdezernat Betrugsmanöver Betrugsskandal Betrunkenheit Betstunde/N Bett/MT Bettauflage/N Bettbezug/STp Bettdecke/N Bettelbrief/EPS Bettelei Bettelgang Bettelmönch/EPST Bettelorganisation/P Betteltour/P Bettenbau Bettfeder/N Bettflaschen Bettgenossin Bettgestell/PS Bettina/S Bettlaken/S Bettlektüre Bettler/NS Bettnässer/FN Bettnachbar/FNS Bettpreise Bettsitten Betttruhe Betttücher/N Betttuch/S Bettüberzug/STp Bettwäsche Betty/S Bettzeug Beugehaft Beugens Beugung/P Beugungsform/P Beule/N Beunruhigens Beunruhigung/P Beurkundens Beurkundung/P Beurlaubens Beurlaubung/P Beurteilens Beurteilung/P Beurteilungskriterien Beutel/S Beutelfabrik Beutelschneider/NS Beutetier Bevölkerns Bevölkerung/P Bevölkerungsanteil Bevölkerungsbaum/STp Bevölkerungsdichte Bevölkerungsdruck Bevölkerungsdurchschnitt Bevölkerungsexplosion/P Bevölkerungsfragen Bevölkerungsgruppen Bevölkerungshöchststand Bevölkerungskreise/N Bevölkerungsmehrheit Bevölkerungspolitik Bevölkerungsproblem/EPS Bevölkerungsschichten Bevölkerungsschwund Bevölkerungsüberschuss/Tp Bevölkerungswachstum/S Bevölkerungsziffer Bevölkerungszuwachs Bevollmächtigens Bevollmächtigung/P Bevormundens Bevormundung/P Bevorzugens Bevorzugung/P Bewährens Bewährung/P Bewährungsfristen Bewährungshilfe Bewährungsprobe/N Bewältigens Bewältigung/P Bewässerns Bewässerung/P Bewässerungsanlagen Bewässerungsnetz Bewässerungsprojekte Bewachens Bewacher/NS Bewachung/P Bewachungsketten Bewachungspersonal Bewaffnens Bewaffnung/P Bewahrens Bewahrer/NS Bewahrung/P Bewandtnis/q Bewegens Beweggründe/N Beweggrund/ST Beweglichkeit Bewegung/P Bewegungsablauf/Sp Bewegungsart/P Bewegungscharakteristik Bewegungseindruck/S Bewegungsfreiheit Bewegungsgleichung/P Bewegungskette/N Bewegungskorrelation Bewegungspause Bewegungsprofilen Bewegungsrichtung/P Bewegungssensoren Bewegungssignale Bewegungsspielraum/Sp Bewegungssteuerung Bewegungsstopp Bewegungsunterbrechung Beweihräucherns Beweihräucherung/P Beweis/RT Beweisaufnahme/N Beweisbarkeit Beweisens Beweiser/NS Beweisführung/P Beweisidee/N Beweiskräfte/N Beweiskraft Beweismaterial/S Beweismaterialien Beweisschritt/EPS Beweissicherung Beweisstück/EPT Beweissystem/EPS Beweisverpflichtungen Bewerbens Bewerber/FNS Bewerberangebot Bewerbung/P Bewerbungsfrist/P Bewerbungsschreiben/S Bewerbungsunterlagen Bewertens Bewertung/P Bewertungsgutachten/S Bewertungskriterien Bewertungsmaßstäbe/N Bewertungsmethode/N Bewertungsschema Bewertungsverfahren/S Bewertungsverlust Bewilligens Bewilligung/P Bewilligungsausschuss/Tp Bewirtens Bewirtschaftens Bewirtschaftung/P Bewirtung/P Bewirtungskosten Bewölken/JS Bewölkungszunahme Bewohnbarkeit Bewohner/FNS Bewunderer/NS Bewunderin/F Bewunderns Bewunderung/P Bewunderungsrufe Bewusstheit Bewusstlosigkeit Bewusstsein/S Bewusstseinsbildung Bezahlens Bezahlung/P Bezauberns Bezauberung/P Bezeichnens Bezeichner/NS Bezeichnung/P Bezeugens Bezeugung/P Beziehens Bezieher Beziehung/P Bezierkurve/N Bezirk/EPS Bezirksämter Bezirksausgaben Bezirksdirektion/P Bezirksdirektor Bezirksebene Bezirksliga Bezirksorganisation/P Bezirksparade Bezirksräte Bezirksrat Bezirksregierung Bezirkssekretär Bezirkssparkasse Bezirkstierschau Bezirksverband Bezirksversammlung Bezirksvertreter Bezirksvorsitzende Bezug/STp Bezugnahme Bezugsfrist/P Bezugsmaße/N Bezugsmöglichkeit/P Bezugspotential/EPS Bezugspotenzial/EPS Bezugspreis/EPT Bezugspunkt/EPST Bezugsquelle/N Bezugsquellennachweis/EPT Bezugsrahmen/S Bezugsrecht/EPST Bezugsschein/EPS Bezugsspannung Bezugssystem/EPS Bezwingens Bezwinger/FNS Bezwingung/P Biafra Biarritz Bias Bibel/N Bibelbearbeitung/P Bibelkreis/EPT Bibelsprüchen Bibelspruch/S Biber/N Biberpelz Bibliographie/Nf Bibliothek/P Bibliothekar/EFPS Bibliotheksfunktion/P Bibliotheksgeschichte Biedenkopf/S Biedermeiersessel Biegens Biegsamkeit Biegung/P Bielefeld Biene/N Bienenhaus/Tp Bienenkönigin/F Bienenschlag/STp Bienenschwärmen Bienenschwarm/T Bienenstöcken Bienenstock/T Bienenwaben Bienenwachs/T Bienenzüchter/FNS Bier/EPS Bierabend Bierbar Bierbrauer/NS Bierbrauereien Bierdeckeln Bierfässer/N Bierfass/MT Biergarten Biergläsern Bierglas/T Bierimport Bierkonzern Bierkrug/STp Bierlachen Bierlokale Biermarkt/STp Bierpreiserhöhung Bierschänke Bierschwemme Biersteuer Biersteuergesetz Bierstuben Biertisch Biertrinker Bierwirtschaft/P Bierzelt Biest/RT Bieter/FGNS Bigamie Bigband/S Bijektion/P Bijektivität Bikini/S Bilanz/P Bilanzbesprechung Bilanzbuchhalter Bilanzerstellung Bilanzierens Bilanzierung/P Bilanzierungsgründen Bilanzierungsrichtlinien Bilanzkurs/EPT Bilanzposition/P Bilanzrelationen Bilanzsicherheit Bilanzsitzung Bilanzstellung Bilanzstichtage Bilanzsumme Bilanztermin Bilanzunterlagen Bilanzverlust Bilanzverschleierung/P Bilanzvolumen Bilanzzahlen Bild/JMRT Bildaufbau/S Bildausdruck Bildausschnitt/EPS Bildbände/N Bildband/S Bildbeitrag/STp Bildbereich/EPS Bildberichterstatter/N Bilddarstellung/P Bilddruck Bildens Bilderbogen/S Bilderbücher/N Bilderbuch/T Bilderfolge/N Bildergeschichte/N Bilderkasten Bilderrätsel/N Bilderrahmen/S Bilderreichtum Bildersaal Bilderschau Bilderschrift Bilderskandal Bilderstürmer/N Bildersturm Bilderteil Bildfläche/N Bildflimmern Bildfolge/N Bildfragment/EPS Bildgeschehen Bildgeschichte/N Bildgießerei Bildhauer/FNS Bildhauerei Bildinhalt/EPST Bildlegende Bildmaterial/S Bildnis/Qq Bildprospekt/EPST Bildpunkt/EPST Bildqualität/P Bildraum/STp Bildreihe Bildröhre/N Bildröhrenhals Bildromane Bildschärfe Bildschema Bildschirm/EPST Bildschirmanzeige/N Bildschirmauflösung/P Bildschirmaufteilung Bildschirmausfall Bildschirmausgabe Bildschirmbereiche Bildschirmdarstellung/P Bildschirmeingabe Bildschirmeinheit/P Bildschirmfeld/RST Bildschirmfläche/N Bildschirmfunktionen Bildschirmgehäuse/S Bildschirmgeräte Bildschirmgrafik Bildschirmgröße Bildschirmgruppen Bildschirmliebling Bildschirmmaske/N Bildschirmmeldung/P Bildschirmprogramm/EPS Bildschirmrand Bildschirmseite/N Bildschirmsoftware Bildschirmtext Bildschirmumschaltung Bildschirmunterhaltung Bildschirmzeile Bildsendung Bildstörung/P Bildstreifen/S Bildtafel/N Bildteppiche/N Bildübertragung/P Bildungsanstalt/P Bildungsbeamten Bildungsbedürfnis/Qq Bildungsbehörden Bildungsberatung/P Bildungschance/N Bildungseinrichtung/P Bildungsförderung Bildungsgesamtplan Bildungsgesetz/EPT Bildungsgrad/EPS Bildungsgut Bildungshilfe Bildungshunger Bildungsinteresse Bildungsinvestitionen Bildungskapazitäten Bildungskommission Bildungslücke/N Bildungsminister Bildungsmisere Bildungsmittel Bildungsnotstand Bildungspolitik Bildungsprogramm/EPS Bildungsprojekt Bildungsrate Bildungsreform Bildungsreserven Bildungsroman Bildungsstätte/N Bildungsstand Bildungsstelle Bildungsstoff Bildungsveranstaltung/P Bildungsweg/EPS Bildungswesen/S Bildungswilligen Bildungszentren Bildungsziele Bildungszwecke Bildveränderung Bildverarbeitung Bildverarbeitungsrechner Bildverzeichnis/Qq Bildverzerrung Bildwandler Bildwechsel Bildwerke Bildwiederholfrequenz Bildzeitung Bildzuschrift Bill/S Billard Billardkugel/N Billet/S Billiarde/N Billigens Billigfliegern Billiggeräten Billiggütern Billiglösung/P Billigsoftware Billigstkaufaufträge Billigung/P Billion/P Billy/S Binärbaum/Sp Binärcode/S Binärdatei/P Binärdaten Binärformat/EPS Binärwort/EPS Binaries Binary Bindegewebe Bindeglied/RT Bindehaut Bindehautentzündung/P Bindehautreizung Bindemittel/S Bindens Bindeplatz Binder/N Bindestrich/EPST Bindewörter/N Bindewort/ST Bindfäden Bindfaden Bindung/P Bindungsbereich/EPS Bindungsprüfgerät Bindungsregel/N Bindungsrelation/P Bindungsumgebung/P Bindungsverfälschung/P Bingen Binnenformen Binnengewässer/N Binnengrenze/N Binnenhäfen Binnenhafen/S Binnenhandel/S Binnenklima Binnenländer Binnenland/T Binnenmarkt/STp Binnenmeer Binnennachfrage Binnenschiff/EPS Binnenschiffe/NR Binnenschifffahrt/P Binnenschifffahrtsstraße/N Binnenschifffahrtsstreit Binnenschiffsflotte Binnensee/NS Binnenverkehr/S Binnenwasserstraße/N Binnenzölle Binnenzollsenkung Binom/EPS Binominialkoeffizient/P Binominialreihe/N Binse/N Binsenweisheit/P Biochemie Biochemiker/FNS Biograph/P Biographie/Nf Bioladen Biologe/FN Biologie Biomasse Biopsie/N Biorhythmus Biosatellit Biotechnologie Biotop/EPS Biplot/S Birgit/S Birke/N Birkenau Birmingham Birnbaum/S Birne/N Bischöfe/N Bischof/S Bischofsamt/T Bischofskollegen Bischofskonferenz Bischofsprotest Bischofssitz Bischofsstadt Bischofsverweser Bischofswahlen Bischofswahlgesetz Bisimulation Biskaya Biskuit/S Bismarck/S Bismut/S Bisse/GS Bistümer/N Bistum/S Bistumsblatt Bistumsgrenze/N Bit/S Bitbus/Qq Bitlänge/N Bitmap/S Bitmaske/N Bitmaskierung Bitmuster Bitnummer/N Bitpattern Bitport/S Bitstrom/T Bittbrief/EPS Bitterkeit/P Bitternis/q Bittgesuch/EPT Bittschreiben/S Bittschrift/P Bittsteller/FNS Bitumen Bitzuordnung Biwak/S Bizeps Björn/S Blähens Blähung/P Bläschen/S Bläser/N Bläserakzente Bläserquintett Blässe Blässhuhn/S Blättchen/S Blätterteig/EPT Blätterwald Blackjack Blacklist/S Blamage/N Blankoscheck Blankovollmachten Blasenfreiheit Blasinstrument/EPST Blaskapelle/N Blatt/T Blattanfang/S Blatteinzug/Sp Blattgrün/S Blattläuse/N Blattlaus Blattrand/ST Blattvorschub/S Blaubeere/N Blaubeertorte Blaupause/N Blautanne/N Blauwal/PS Blech/ST Blechbüchse/N Blecheimer/N Blecheinleger Blechfrontplatte Blechgehäuse Blechgeschirr/ST Blechhütte/N Blechinstrument/EPT Blechkanister/N Blechkonstruktion/P Blechlaschen Blechnapf/S Blechschaden/S Blechscheren Blechstreifen Blechtablett Blechteile Blechwalzwerk Blechwarenindustrie Blei/S Bleiberecht/S Bleikugel Bleioxyd/S Bleisoldaten Bleistift/EPST Bleistiftanspitzer/N Bleivergiftung Blendens Blendung/P Blesshuhn/S Blickes Blickfänge/NR Blickfänger/NS Blickfang/STp Blickfeld/RST Blickpunkt/EPST Blickrichtung/P Blicks Blickwinkel/NS Blinddärme/N Blinddarm/S Blindenanstalt Blindenarbeit Blindenbücherei Blindenhund/EPT Blindenschrift Blindflug Blindgänger/NS Blindheit Blindschleiche/N Blinkalgorithmus Blinkanzeige/N Blinker Blinkleuchte/N Blinklicht/R Blinkwarnung Blitz/T Blitzableiter/NS Blitzaktion/P Blitzbesuch Blitzeinschlag/STp Blitzkarriere/N Blitzlicht/RT Blitzlichtaufnahmen Blitzpistole Blitzschlag/STp Blitzstrahl Blitzturniere Blitzverfahren Blitzwörterbücher Blitzwörterbuch Blitzzug/STp Blöcke/N Blödelei/P Blödheit/P Blödian Blödsinn/S Blöße/N Blockade/N Blockadezeit Blockanfang/S Blockbefehle/N Blockbildung/P Blockbuster Blockes Blockflöte/N Blockform Blockfunktion/P Blockgrafik Blockgraphik Blockhaus/Tp Blockierens Blockierung/P Blockkondensator/P Blockmarkierung/P Blockprüfzeichen Blocks Blocksatz Blockschachtelung Blockschaltbild/RST Blockschema Blockstruktur Blocktastatur Blondine/N Bloßlegens Bloßlegung/P Bloßstellens Bloßstellung/P Blouson/S Blümchen/S Blümlein Blüte/N Blütennektar Blütenstaub Blütezeit Bluejeans Blues Bluff Blume/N Blumenbeet/E Blumenbindearbeiten Blumenbukett Blumenfest Blumenfrau Blumengaben Blumengebiete Blumengeschäft/ET Blumenhändler/N Blumenkästen Blumenketten Blumenkinder Blumenkohl Blumenkränze Blumenladen Blumenpracht Blumenriviera Blumenschmuck Blumenstöcke Blumensträuße Blumenstrauß/T Blumentöpfe/N Blumentopf/ST Bluse/N Blut/JST Blutabnahme Blutarmut Blutbäder/N Blutbad/ST Blutbahn Blutbank Blutbild/RST Blutdruck/S Blutdruckmesser Blutegel/S Blutentnahme Bluterguss/Tp Blutgefäße/N Blutgefäßzellen Blutgerinnsel/NS Blutgruppe/N Blutgruppenfaktor Bluthochzeit Bluthunde Blutkreislauf/Sp Blutlache/N Blutmischung Blutopfer Blutpfütze Blutprobe/N Blutprobenuntersuchung Blutsauerstoff Blutschänder/S Blutspende/NR Blutspendenaktionen Blutspender/NS Blutspenderschaft Blutspuren Blutsturz Blutsverwandten Blutsverwandtschaft/P Bluttat Bluttransfusion/P Blutuntersuchung Blutvergießen Blutvergiftung/P Blutverlust/EPT Blutwürste Blutzirkulation Blutzucker Blutzuckergehalt Bö/EP Böblingen Böcke/N Böden Bögen Böhmen Böllerschuss/Tp Börse/N Börsenabteilung Börsenangestellten Börsenaufträge Börsenausschuss/Tp Börsenaussichten Börsenberater Börsenbericht/ET Börsenblätter/N Börsenblattanzeige Börsenblattes Börsenbrief Börsencrash Börsendaten Börsendesaster Börsendiensten Börsendingen Börseneinbrüchen Börsenentscheidung/P Börsenentwicklung Börseneuphorie Börsengang/S Börsengerüchten Börsengeschäft/ET Börsengeschichte Börsengesetz Börsengewinne/R Börsenhändler Börsenhausse Börsenindex/T Börsenjahre Börsenjournalist Börsenkrach Börsenkurs/ET Börsenlage Börsenmakler/S Börsenmodell Börsennotierung/P Börsenpapiere Börsenpapiers Börsenpflichtblatt Börsenplätze Börsenplatz Börsenpreise/N Börsenprospekt Börsenpublikationen Börsensaal Börsenschlusses Börsenschwäche Börsenspekulant/P Börsenspekulation/P Börsenstunde Börsentage/N Börsentendenz Börsentrend Börsenumsätze Börsenverein/S Börsenverfassung Börsenverlaufs Börsenwerten Börsenwoche Börsenzeit/P Börsenzeitung Börsenzettel/NS Börsianer/FNS Bösartigkeit/P Böschung/P Böschungsprofilierung Bösewicht/EPT Böswilligkeit Boa/S Bob/S Bobfahren Bobkonstruktion Bobrennen Bobverband/T Boccia Bocciakugeln Bochum/R Bock/ST Bockbier Bockfuß/T Bocksprünge/N Bocksprung/S Bockwürste/N Bockwurst Bocuse/S Boden/S Bodenaushub/S Bodenbearbeitungsgerät/P Bodenbelag/STp Bodenbesteuerung Bodenbewertung Bodenbewirtschaftung Bodenblech/EPS Bodenerhebung/P Bodenfeind/E Bodenfliesen Bodenfrostgrenze Bodengehäuse Bodengüte Bodenkammer/N Bodenkür Bodenlage Bodenmeißel/S Bodennähe Bodenniveau/S Bodenpersonal/S Bodenplatte/N Bodenpreis/EPT Bodenprobe/N Bodenrakete Bodenreform Bodenreformgesetz Bodenschätze/N Bodenschatz/T Bodensee/S Bodenseeraum/ST Bodenstation/P Bodentrockenheit Bodenturnen/S Bodenversuch/E Bodenwelle/N Bodenwert/EPST Boeing Bogenfenster/NS Bogengang/Tp Bogenlampen Bogenmaß/ET Bogens Bogota Bohle/N Bohne/N Bohnenkaffee/S Bohnenstange/N Bohr/JRS Bohrachse Bohranlage/N Bohrantrieb/S Bohrbetrieb Bohrens Bohrer/NS Bohrgebiet Bohrgerät Bohrgesellschaften Bohrgestänge/NS Bohrhaken/S Bohrinsel Bohrkatze Bohrkopf/S Bohrkopfantrieb Bohrkopfglocke Bohrkopfklappen Bohrkopfmittelpunkt Bohrkopfradius Bohrkopfvolumen Bohrkopfwinkel Bohrlafette Bohrlöcher Bohrloch Bohrmaschine/N Bohrprogramm Bohrstange/N Bohrtürme/N Bohrturm Bohrvorhaben Bohrvorschub/S Bohrwagen Boiler/NS Boje/N Bolero Bolivien Bollwerk/ST Bologna Bolognese Bolschewik/P Bolschewiki Bolschewist/P Bolschoi/S Boltzmann/S Bolzano/S Bolzen/S Bombardement/S Bombardierens Bombardierung/P Bombay Bombe/NR Bombenabwurf Bombenalarm Bombenangriff/PS Bombenangst Bombenanschlag/STp Bombenattentat/E Bombenaufschlag/STp Bombenerfolge/NS Bombenexplosionen Bombenflug/Sp Bombenflugzeug Bombenform Bombengeschäft/EPT Bombenjungen Bombenkampagne Bombenleger Bombenopfer Bombenschuss/Tp Bombenspuren Bombenstimmung Bombenteppichen Bombenterror Bombenverdienste Bombenwerfer Bomber/S Bomberkommando Bomberpilot Bon/NS Bonbedrucken Bonbon/S Bonboniere/N Bonbonniere/N Bonderträge Bondhandel Bondinhaber Bondkurse Bondmarkt/Tp Bondportefeuille Bondpreis/E Bondrucker/NS Bonerkennung Bonerkennungslöcher Bonerkennungsloch/T Bongo Bonieren Bonifikation/P Bonitätsabwertung/P Bonitätsbewertung/P Bonitätsprüfung/P Bonlänge/N Bonmot Bonn/RS Bonpapier Bonsai Bonsynchronisierung Bonus Bonze/N Bonzeile Boogie Booklet/S Boom/S Boomgründen Boomkinder Boomphase Boomzeiten Boot/ST Bootdiskette/N Bootfahren Bootimage/S Bootkonzept/EPS Bootmanager/NS Bootmechanismus Bootmenü/S Bootparameter/NS Bootphase Bootprompt/S Bootreihenfolge Bootsbau Bootsbaumeister Bootsektor/PS Bootsfahrt/P Bootsführers Bootsgattung/P Bootshaus/Tp Bootsklassen Bootsmänner/N Bootsmann Bootsrumpf Bootsschau Bootsschuppen Bootstrapping Bootstrip Bootstrümmer Bootsvermieter Bootvorgang Bord Bordeaux Bordelektronik Bordell/EPS Bordflugzeug/EPS Bordfunker/FNS Bordhund Bordmechaniker/FNS Bordstein/EPS Bordüre/N Bordvorführung/P Bordwände Bordwaffen Boris Borke/N Borkenkäfer Borland Borste/N Borte/N Borussia Bosch Bosheit/P Bosnien/S Bosporus Boss/EPT Boston Botanik/R Botaniker/FNS Botanikstunde Botank Bote/FG Botendienst/EPT Botenflieger Botengang/STp Botschaft/PR Botschafter/FNS Botschafteraustausch Botschaftergespräch/E Botschafterkonferenz Botschafterposten Botschafterwechsel Botschaftsangestellten Botschaftsarztes Botschaftsmitglieds Botschaftspersonal Botschaftsportal Botschaftssprecher Bottich/EPS Bouclé/S Bougainville Bouillabaisse Bouillon Bouillonwürfel Boulevard/S Boulevardlustspiel Boulevardpresse Boulevardzeitung Bourbone/N Bourgogne Bourrée/S Boutique/N Bowiemesser Bowle Bowling Box/R Boxer/FNS Boxeraufstand Boxerhund Boxeuropameister Boxfans Boxhandschuh Boxheld Boxidol Boxkämpfe/N Boxkampftag Boxlizenz Boxmarkt/ST Boxring Boxsaison Boxsport/S Boxtitel Boxunion Boxveranstaltung Boxverband/T Boxweltmeister Boy/S Boykott/S Boykottpolitik Bozener Brände/N Bräuche/GN Bräuchen/G Bräute/N Bräutigam/S Brabant Brachland Brackwasser Brahmane/N Brahmanentum Brahmanismus Brahms Brainstorming/S Branche/N Branchendaten Branchendurchschnitt Branchenentwicklung/P Branchenerfahrener Branchenerfahrung/P Branchenführer Branchengliederung Branchenkenntnis/q Branchenkollegen Branchenkreisen Branchenrendite Branchenverzeichnis/Qq Brand/JS Brandblase/N Brandenburg/R Brandfackel Brandflecken/S Brandgefahr Brandgerüche/N Brandgeruch Brandmal/EPT Brandmalerei Brandmarken Brandmarkung Brandmauer/N Brandplatz Brandreden Brandsalbe Brandschäden Brandschaden/S Brandsohle/N Brandstätte Brandstelle/N Brandstifter/FNS Brandstiftung/P Brandt/SW Brandungswelle/N Brandursachen Brandwunde/N Brandzeichen Branntwein/S Branntweinbrennerei/P Branntweinsteuer Branntweinsteuersatzes Branntweinvorräte Brasilianer/FNS Brasilien Bratäpfel Bratapfel/S Bratkartoffeln Bratpfanne/N Bratschenkonzert Bratspieß/EPT Bratwürste/N Bratwurst Braubeteiligung/P Brauch/GST Brauchbarkeit Brauchs/G Brauchtum Brauerbund Brauerei/P Brauereiaktien Brauereibesitzer Brauereifonds Brauereigewerbe/S Braugerste Braugewerbe/S Braumeister Braunhemden Braunkohle Braunkohlenlieferung/P Braunkohlenwerk Braunkohlesand Braunschweig/S Braunschweiger/S Braunstein Brausebad Brausepulver/NS Braustätte Brautausstattung Brautführer/NS Brautgemach Brautjungfern Brautkleid/RT Brautleute Brautmutter Brautnächten Brautnacht Brautpaar/EPS Brautschau Brautschleier/NS Brautvater Brautwerber Brauwirtschaft Bravour Bravourstück Bravourstückchen Bravur Breakcontroller Breaksignal/E Brecheisen/S Brechens/G Brecher/NS Brechmittel/NS Brechstange/N Brechung/P Brechungsindex Brechungswinkel/N Bredouille Bregenz Brei/EPS Breisach Breitbandigkeit Breitbandkabelnetz/EP Breitbandnetzwerk Breitengrad/EPST Breitenkreis/EPT Breitenleistung Breitensport/S Breitschrift Breitseite/N Breitwand Bremen/S Bremer/FNS Bremerhaven/S Bremsabstände Bremsaktion/P Bremsbelag/STp Bremseffekt Bremsens Bremser/S Bremsfunktion/P Bremsklötze/N Bremsklotz Bremskurs Bremslicht/R Bremsmanöver Bremspedal/PS Bremsprobe Bremsspur/P Bremsstrecke Bremsung/P Bremsventil/EPS Bremsversuch/EPS Bremsvorgang/ST Bremsvorrichtung Bremsweg/EPS Bremswegparameter/S Bremswirkung Brenndauer Brenner/NS Brennerei/P Brennerpass/T Brennhölzer/N Brennholz/T Brennkunst Brennmaterial/S Brennnessel/N Brennpunkt/EPT Brennpunktlage Brennspiegel/NS Brennspiritus Brennstäben Brennstoff/EPT Brennstoffkosten Brennstoffverbrauch Brennstoffversorgung Brennstoffzellen Brennweite/N Brenzligkeit Bresche/N Breslau Brest Brett/MRST Bretterbuden Bretterwänden Bretterzäune/N Bretterzaun Brettmitte Bretton Brettspiel/EPS Breughel/S Brevier/S Brezel Brie Brief/EPST Briefadresse/N Briefaktion/P Briefanreden Briefbeschwerer/N Briefbögen Briefbogen/S Briefbote Briefbund Briefempfänger Briefgeheimnis/Qq Briefkästen Briefkarten Briefkasten/S Briefkastenfirmen Briefkastengesellschaft/P Briefkopf/S Briefmappe Briefmarke/N Briefmarkenberge Briefmarkenhandelshauses Briefmarkensammeln/J Briefmarkensammler/FNS Briefmarkenverkaufs Briefmonolog Briefnotiz/P Brieföffner/NS Briefpapier/S Briefporti Briefporto/S Briefsache/N Briefschlitz Briefschreiberin Briefstil Brieftasche/N Brieftauben Brieftelegramm/EPS Briefträger/N Briefumschlag/Sp Briefwechsel/NS Brigade/N Brigadeführer Brigadegeneral Brigadier/S Brighton Brigitte/S Brikett/EPS Brikettbestände Brikettfabrik Brikettfabrikation Brikettherstellung Brikettpreis/E Brikettpresse/N Brillantbrosche Brillantring/EPT Brillanz Brille/N Brillenaustausch Brillengläser/N Brillenschlangen Brillenträger/FNS Brimborium Bringschuld Brisanz Brise/N Bristol Bristolkanal Brite/FN Britenwährung Brixen Brötchen/S Brötchenhälften Brötchenjungen Brötchenpreis Broadcast/S Brockdorf Brocken/S Brockhaus Brokat Brokdorf Broker/FNS Brokerhaus/Tp Brokerkontos Brokerkreisen Brokerspesen Brokerverbindung Brombeere/N Brombeergestrüpp Brombeersträucher/N Brombeerstrauch/T Bronchialasthma Bronchien Bronchitis Bronze Bronzegruppe Bronzemedaillengewinner/FNS Bronzeplastik Bronzezeit Brosame/N Brosche/N Broschüre/N Brot/EPT Brotaufstrich/EPS Brotbeutel/NS Broterwerb/EPS Broterwerbers Brotfabriken Brotgeber/N Brotgetreideernte Brotkasten Brotkörbe/N Brotkorb/ST Brotkrume/N Brotmesser Brotpreis Brotpreiserhöhung/P Brotrinde/N Brotschneidemaschine Brotschnitte/N Brotteig Brotzeit Browser/NS Brüche/N Brüchigkeit/P Brücke/N Brückenamt Brückenbau Brückenbaupolier Brückenbaustelle Brückenbauten Brückenbauunternehmer Brückenköpfe/N Brückenkommandant Brückenkopf/T Brückenkräne Brückenpfeiler/NS Brückenprojekt Brückenzoll Brüder/GMN Brüderlichkeit Brüderorden Brüderschaft Brügge Brüskierens Brüskierung/P Brüssel Brüstens Brüstung/P Brüter Bruch/S Bruchband Bruchbude/N Bruchkantenausbaugestell Bruchlandung/P Bruchlast Bruchraumbedüsung Bruchrechnung/P Bruchschaden/S Bruchstein/EPT Bruchstelle/N Bruchstrich/EPS Bruchstück/EPT Bruchteil/EPS Bruchzahl/P Bruder/S Bruderbundes Brudermörder Brudermord Bruderpartei Bruderschaft/P Bruderstreit Brudervolk Bruderzwist Brummbär/P Brummbass/Tp Brummer/S Brummschädel/NS Brunch Brunhild/ET Brunnen/S Brunnenschacht Brunnenvergiftung Brunst Brustbein/T Brustbeschwerden Brustbilder/N Brustbildes Brustfell/S Brustkasten/S Brustkorb/T Brustkrebs/T Brustschwimmer Brusttaschen Brustton/S Brustumfängen Brustumfang/T Brustwarzen Brustweite Brustwickel Brut/X Brutalität Brutapparat/T Brutei/R Brutgewohnheit/P Bruthenne/N Brutkasten/S Brutofen/S Brutpflege Brutreaktor Brutstätte/N Bruttobeiträgen Bruttobetrag/STp Bruttoeinkommen Bruttoeinnahmen Bruttoertrag/STp Bruttogewicht/EPST Bruttomieten Bruttoregistertonnen Bruttorendite Bruttosozialprodukt/EPS Bruttoverdienst/EPT Bryan/S Bsp Bsp. Bücher/N Bücherbord/EPST Bücherbrett Bücherbrettern Bücherei/P Bücherfreund/EPT Büchergilde Bücherkabinett Büchermachen Büchermacher Büchermappen Büchermarkt/STp Büchernarr/P Bücherregal/EPS Bücherrevisor Bücherschränke/N Bücherschrank Bücherschreiben Bücherstube/N Bücherwunsch Bücherwurm/S Büchlein/S Büchner Büchse/N Büchsenfleisch Büchsenmacher/NS Büchsenöffner/N Bücklinge/N Büfett/ST Büffel/S Bügel/S Bügelbrett/RST Bügeleisen/S Bügelfalte/N Bügelpresse Bühne/N Bühnenanweisung/P Bühnenarbeiter Bühnenausstattung/P Bühnenautor Bühnenbearbeitung/P Bühnenbild/RST Bühnendichter/N Bühnenentwürfen Bühnenerfahrung Bühnenfassung Bühnenhumorist Bühneninszenierung Bühnenkasten Bühnenlaufbahn Bühnenleute Bühnenmöglichkeit Bühnenmodelle Bühnenmuseum Bühnenmusik Bühnenpartner Bühnenproduktionen Bühnenraum/STp Bühnenschriftsteller Bühnensicherheit Bühnenstück/EPT Bühnentür Bühnenwand Bühnenwerk/E Bündelns Bündels Bündelung/P Bündelungsschärfe Bündigkeit Bündlung/P Bündnis/Qq Bündnisangebot Bündnisgemeinschaft Bündnislosigkeit Bündnisorganisation/P Bündnispartnern Bündnispolitik Bündnisproblem/EPS Bündnisstruktur Bündnisverhandlung/P Bündnisverpflichtung Bündnisversprechen Bündnisverzicht Bürdelast Bürgenstock Bürger/FNS Bürgerinitiative/N Bürgerkönig Bürgerkomitee/S Bürgerkrieg/EPST Bürgerkriegsarmee/N Bürgermeister/FNS Bürgermeisterämter/N Bürgermeisteramt/ST Bürgermeistersohn Bürgermeisterwahl/P Bürgerpflicht/P Bürgerrechtler Bürgerrechtsbewegung Bürgerrechtsgesetze Bürgerrechtskämpfer/N Bürgerrechtsprogramm Bürgerrechtsreform Bürgerrechtsvorlage Bürgersaal Bürgerschaft Bürgerschaftswahlen Bürgerschreck Bürgersicht Bürgersinn/S Bürgersleute Bürgersteig/EPST Bürgersteuer Bürgertum/S Bürgerverein/S Bürgervereinigung Bürgerwiese Bürgschaft/P Büro/S Büroanbau Büroangestellte/NR Büroarbeit/P Büroartikel/N Büroautomation/P Bürobedarf Bürobedarfsartikel/NS Bürobote/N Bürochef/S Büroeinrichtung/P Büroetage/N Büroganoven Bürogebäude/S Bürohausneubau Bürohengst Bürohochhaus/Tp Bürokenntnis/q Büroklammer/N Bürokopien Bürokopiergerät Bürokosten Bürokrat/P Bürokratie/N Bürokratismus Büroleiter Büromaschine/N Büromaschinenfabrik Büromaschinenindustrie Büromaterial/S Büromöbel/N Büroorganisation/P Büropersonal/S Büroraum/STp Büroschluss/Tp Büroschrank Bürostunden Bürosysteme Bürotätigkeit Bürotisch Bürovorsteher Bürowirtschaft Büßer/FNS Büßerhemd Büsche/GN Büschel/N Büste/N Büstenhalter/NS Bütt Büttel/NS Büttenpapier/EPS Bub/EP Bubenstreich/EPT Bubenstück/EPT Buch/JST Buchautor/PS Buchbesprechung/P Buchbinden Buchbinder/S Buchbindereien Buchbinderhandwerk Buchbindermeister Buchdruck/PRS Buchdrucker/NS Buchdruckereien Buchdruckkunst Bucheckern Buchenholz Buchens Buchenwald Buchfink/P Buchforderung/P Buchform Buchführer/FNS Buchführung Buchführungsunterlagen Buchgemeinschaft Buchgenossenschaft Buchgewinn Buchhändler/FNS Buchhändlerverband Buchhalten Buchhalter/FNS Buchhaltung Buchhaltungsabteilung Buchhaltungstrick/S Buchhandel/S Buchhandlung/P Buchhülle Buchinhaber Buchkatalog Buchkredite Buchkritik Buchladen/S Buchmacher/FNS Buchmarkt/STp Buchmesse/N Buchpreisbindung Buchpreise Buchprüfer/N Buchreihe Buchs/EP Buchschraube Buchseite/N Buchsendurchbrüche Buchseneinsatz Buchsengehäuse Buchsenkontakthalter Buchsenstecker/N Buchspenden Buchstabe/N Buchstaben/S Buchstabenabstand Buchstabenfeld Buchstabenkürzel Buchstabenprojekt Buchstabenrätsel/NS Buchstabenrechnungen Buchstabenschlösser/N Buchstabenschlosses Buchstabenschrift Buchstabenzeilen Buchtitel Buchumschlag/Tp Buchung/P Buchungsautomat/P Buchungsbelege Buchungsbüro Buchungsdatum Buchungsjournale Buchungssystem Buchungswert Buchverlag/EST Buchvertrieb Buchwert/ET Buckel Buckingham Budapest Buddha Buddhismus Buddhist/FP Bude/N Budenzauber Budget/S Budgetdebatte Budgetdirektor Budgetvorlage Buenos Bufferausgang/Sp Bufferflush Buffergatter/N Buffet/ST Bug/ST Bugfix/T Buhmänner Bukarest Bukett/EPS Buklee/S Bulette/N Bulgarenreich Bulgarien Bulimie Bull/EP Bulldog Bulldogge/N Bulletin Bumerang/S Bummelant/P Bummelei/P Bummelstreik/S Bummler Bund/ET Bundesakte Bundesamt/ST Bundesanstalt Bundesanwalt Bundesanzeiger/S Bundesatomgesetz/T Bundesaufsichtsamt Bundesaufträge Bundesausbildungsförderungsgesetz Bundesausschuss/Tp Bundesautobahn Bundesbahn/P Bundesbahnanleihe/N Bundesbahnarbeiter Bundesbahnbedienstete Bundesbahndirektion Bundesbahnstrecke Bundesbank Bundesbankpräsident Bundesbeamten Bundesbeauftragte/NR Bundesbedienstete/NR Bundesbehörde/N Bundesbesoldungsgesetz Bundesbevollmächtigte/NR Bundesbürger/FNS Bundesbürgschaft/P Bundesdatenschutzgesetz/T Bundesdienst Bundesdienststelle/N Bundesebene/N Bundesermächtigung/P Bundesernährungsminister/NS Bundesfachverband Bundesfinanzen Bundesfinanzhof Bundesflagge/N Bundesforschungsminister Bundesforschungsministerium/S Bundesfraktion/P Bundesgarantie/N Bundesgartenschau Bundesgebiet/EPT Bundesgeld/R Bundesgenosse/N Bundesgericht/S Bundesgerichtshof/S Bundesgesetz/ET Bundesgesundheitsminister/NS Bundesgesundheitsministerium/S Bundesgrenzschutz Bundesgruppen Bundeshaus Bundeshaushalt Bundeshaushaltsplan/S Bundesheer/T Bundesinnenminister/S Bundesjugendplan Bundesjustizminister/S Bundeskanzler/NS Bundeskanzleramt/ST Bundeskasse/N Bundeskongress/EPT Bundeskriminalamt Bundeskriminalpolizei Bundeskulturministerium/S Bundeskuratorium/S Bundesländer/N Bundesland Bundeslandwirtschaftsminister/NS Bundeslaufbahn Bundesleitung Bundesliga Bundesligaabsteiger Bundesligaausschuss/Tp Bundesligadebüt Bundesligakampf Bundesligaklub Bundesligamannschaft Bundesliganeuling Bundesliganiveau Bundesligarunde Bundesligaspiel/EPRS Bundesligaspieler/NS Bundesligastadien Bundesligator/E Bundesligatorhüter Bundesligavereine Bundesligazeit Bundesligist Bundesluftfahrtamt Bundesluftwaffe Bundesmietengesetz Bundesminister/FNS Bundesministerien Bundesministerium/S Bundesmittel Bundesorgane Bundespartei Bundesparteitag Bundespolitik/R Bundespost Bundespostminister Bundespostministerium Bundespräsenz Bundespräsident/FP Bundespräsidentenamt Bundespräsidialamt Bundesrahmengesetz Bundesrat Bundesratsbank Bundesratsministerium Bundesratssitzung Bundesrecht Bundesreform Bundesregierung/P Bundesrepublik/P Bundesrichter/N Bundesrundfunkgesetz Bundessammellager Bundesschatzminister Bundesschiedsgericht Bundessieger Bundessozialgericht Bundessozialhilfegesetz Bundesstaat/P Bundesstaatsgrenzen Bundesstatistik Bundesstatuten Bundesstellen Bundessteuern Bundesstraße/N Bundesstraßenverwaltung Bundestag/ST Bundestagsabgeordnete/NR Bundestagsausschuss/Tp Bundestagsdebatte Bundestagsdelegation/P Bundestagsfraktion/P Bundestagsgremium Bundestagshandbuch Bundestagsplenardebatte Bundestagspräsidentin Bundestagssitzung/P Bundestagsvizepräsident/P Bundestagswahl/P Bundestagswahlkampf Bundestheater Bundestheaterverwaltung Bundestrainer/NS Bundesverdienstorden Bundesverfassung Bundesverfassungsgericht/S Bundesverkehrsausschuss/Tp Bundesverkehrsminister Bundesvermögensverwaltung Bundesversorgungsgesetz/T Bundesverteidigungsministerium/S Bundesvertretung Bundesverwaltung/P Bundesvorsitzender Bundesvorstandssitzung Bundeswahl Bundeswehr Bundeswehrauswahl Bundeswehrdepot Bundeswehrgefreite/NR Bundeswehrlazarett Bundeswehrleutnant Bundeswehrmajor Bundeswehroberst Bundeswehrrekruten Bundeswehrverband Bundeszentrale Bundeszollverwaltung Bundeszuschuss/Tp Bundstift/EPT Bungalow/S Bungalowhotel Bungalowstil Bunker/NS Bunkerpreis Bunsen/S Bunsenbrenner Buntdruck Buntglasfenster Bunthölzer Buntprospekt Buntstift/EPST Burchard/S Burda/S Burenkrieg Burg/P Burgadel Burgenbau Burgenland Burggraf Burghardt/S Burghof Burgtheater Burgtor Burgund/R Burgunder/NS Burgunderreich Burma Bursche/N Burschenschaft/P Burundi Bus/PQq Buße/N Bußgeld/RST Bußgeldbescheid Bußgeldbestimmung/P Bußhemd Bußpredigt/P Bußtag/EPT Busabschnitt/E Busanschluss/Tp Busblockade Busch/T Buschland Buschleute Buschmesser Buschwerk/EPT Busen/SW Busenfreund/EFPST Busenpolster Buserweiterung/P Busfahrschein Busfahrt Bush/S Bushaltestellen Business Businterface/S Buslinie/N Busmaster/S Bussard/EPS Busschnittstelle/N Busseite Busstruktur/P Bussystem/EPS Buswrack Butler/NS Butter Butterberge Butterblume/N Butterbrot/EPST Butterdose/N Buttereinfuhr Buttererzeugung Butterfässer/N Butterfass/MT Butterherstellung Butterkauf/Sp Buttermarkt/T Buttermilch Butterpreis/E Butterteig/EPS Butterverbrauch Butterversorgung Butterzoll Button/S Butzenscheibe/N Buxtehude Bypass Byte/S Byzantiner Byzanz Béchamel/S CAD CD CDC CDU CDs CIA CPU CPUs CSFR CSU Cäsar/S Cäsarismus Cäsium/S Cabaret Cabrio/S Cabriolet/S Cache/S Cadillac Cadiz Caen Cafeteria Café/S Calabrien Calamares Calcium/S Californium Call/S Callgirl Calvin/S Calvinist/P Cambridge Camembert Camion Camp Campari/S Camping Campingplätze/N Campingplatz/T Campus Canberra Candela Cannes Canon Canossa Cappuccino/S Caravan/S Cardin Caritas Caritasverband Carlo/S Carol/S Carola/S Carotinoid/EPS Cartoon/S Caruso/S Casanova/S Casino Casinoabend Castro/S Catcherveranstaltung/P Cathy/S Cayenne CeBIT Celle Cellist/FP Cellokonzert Cellophaneinschlag/STp Cellophanpapier Celsius Cembalo Cembalomusik Cent/S Center/S Centronics Cervelatwurst Ceylon Ch Chalet/S Chamäleon/S Champagner/S Champagnerkorken Champignon/S Champion/S Chance/N Chanel Chanson/S Chaos Chaot/P Chaplin/S Charakter/EPS Charakterbild/JRT Charaktereigenschaft/P Charakterentwicklung Charakterfehler/N Charakterfrage/N Charaktergröße/N Charakterisierens Charakterisierung/P Charakteristik/P Charakteristika Charakterköpfe/N Charakterlosigkeit Charaktermängel Charakterschwäche/N Charakterstärke/N Charakterstudie/N Charakterzug/STp Charge/N Chargenheft Chargenwagen Chargenzeit Charisma Charles Charlie/S Charlottenburg Charme/S Charmeur/S Chart/S Charta Charterangebote Charterdienst Charterflug/STp Charterfluggesellschaft Charterflugzeuge Chartergebühr Chartergeschäft Chartergesellschaft Charterluftfahrt Chartermaschine/N Charterunternehmen Charterverkehr Chartervertrag/STp Chartres Chassis Chassisbeschädigung Chassisblech Chat/S Chateau/S Chateaubriand/S Chauffeur/EFPS Chauffeuruniform Chaussee/N Chauvinismen Chauvinismus Check/S Checkliste/N Checkpoint Checksumme Chef/FS Chefärzte/FN Chefärzteverband Chefarzt/T Chefarztstellen Chefberater/S Chefbesprechung/P Chefdenker Chefdirigenten Chefdolmetscher Chefelektriker Chefetage Chefflugleiter Chefideologe Chefkapellmeister Chefkoch Chefkonstrukteur Chefputzfrau Chefredakteur/EFPS Chefsache/N Chefsekretär/EFPS Cheftreuhänder Chefunterhändler/FNS Chefvilla Chefzimmer Chemie Chemieaktien Chemieanlagenbau Chemieanteil Chemieausfuhr Chemiefaser Chemiefaserausfuhr Chemiefaserindustrie Chemiegesellschaften Chemieindustrie Chemiekaufmann Chemiekonzern/S Chemielieferung/P Chemiepapieren Chemieprodukt/EPST Chemieproduktion Chemieschule Chemiestudent Chemieunternehmen Chemieverwaltung Chemiewerte Chemiewirtschaft Chemikalie/N Chemikalienbeständigkeit Chemikaliengebiet Chemikalienhändler Chemiker/FNS Chemnitz Chemotechniker Chemotherapie/N Cheops Cheopspyramide Cherusker Cheyenne Chicago/S Chicorée/S Chiemsee/S Chiffre/N Chiffreanzeige/N Chiffrenummern Chiffreschrift/P Chile China/S Chinareise Chinchilla Chinese/FN Chinesenviertel Chinin/S Chininfabrik Chintz Chip/S Chipsatz Chirac/S Chirotherapie/N Chirurg Chirurgenleben Chirurgie Chlor/S Chlorid/EPS Chlornitrat Chloroform Chlorophyll Chlorophyllzusatz Chöre/N Choke Cholera Choleraepidemie Cholesky/S Cholesterin/S Chopin/S Chor/S Choral Chordirektor Chordirigent Choreograph/FP Chorgesang/Sp Chorist/P Chorknabe/N Chorliteratur Chormelodien Chorsänger/FNS Chorwerke Chr Chr. Christ/FP Christa/S Christbaum/STp Christdemokrat/P Christenheit Christentum Christenverfolgung/P Christi/N Christian/EST Christianisierung Christin/EFT Christina/S Christkind/T Christlichkeit Christmarkt/Tp Christmesse Christoph/S Christophorus Christstollen/S Christus Christusfigur Christuskopf Christusvisionen Chrom/S Chromausfuhr/P Chromerze Chromosom/EPS Chronik Chronist/P Chronologie Chronometer Chronometrie Chruschtschow/S Chrysantheme/N Chrysler/S Chur Churchill/S Château/S Cineast/P Cinemascope Circus Citibank Citroen Citroenfahrer City/S Citygrundstück/E Cityhaus Citylage/N Civil Claude/S Claudia/S Clausewitz Client/S Clip/S Clipart/S Clique/N Clochard/S Clockausgang Clone/S Clonehersteller Closure/S Clou Clown/S Clownsfigur Club/S Clubmitglieder Cluny Cluster/NS Cmos Co Coatingmaße Coats Coautor Cobalt/S Cobol Coburg/S Coca Cockerspaniel Cockpit/S Cocktail/S Cocteau/S Code/S Codec/S Codegenerator/PS Codegeneratorgenerator/PS Codegenerierung Codegenerierungsphase/N Codequalität Codestück/EPS Codetransformation Codewort/E Codex Codezeichen/S Codierens Codiernase Codierung/P Cognac Coitus Cola Collage/N Collie/S Colmar Colombo/S Colorglas Colorscheiben Colorverglasung Colt Columbus Comeback Comecon Comic/S Commerzbank Commodore Commonwealth/S Commune Compaq Compiegne Compiler/NS Compilerbau Computer/NS Computeraktien Computeranalysen Computeranimation/P Computeranlage/N Computerausdruck/EPS Computerbenutzer/NS Computerbild Computercamp/S Computerclub/S Computerdisplay/S Computerfachzeitschrift/P Computerfamilie Computerfirma Computerfirmen Computergehirn Computergeneration/P Computergeschichte Computergrafik/R Computerhandel Computerhersteller/NS Computerhilfe/N Computerkriminelle/NR Computerkünstler Computerland Computerleistung Computermodell/E Computerperipherie Computerpresse Computerprobelauf/Sp Computerprogramme/N Computersimulation/P Computerspiel/EPS Computersprache Computersteuerung Computerstörung/P Computersystem/EPS Computertechnik/R Computerüberwachung Computerviren Computerzentrum Concorde/S Conferencier/S Connectzustand Connor/S Consulter/NS Container/NS Contergan/S Continuation/S Controller/NS Controllerbox/P Controllerplatine/N Cookie/S Coprozessor Copyright Corazon/S Cornedbeef Cornichon/S Cornwall Cortison Cottbus Couchgarnitur Couleur Coulomb Countdown Coup/EST Coupon/S Courage Courtage/N Cousin/EPS Couture Coventry Cover/NS Cowboystiefel Crash/S Creme/NS Crew/S Crimpen Croupier/S Cruz Crêpe/S Ctrl Cunnilingus Cupfinale Cupgewinner Cupkämpfe Cupsieger Cupslalom Cupspiel Curacao Curie/S Curriculum Curry Currywurst Cursor/S Cursorbewegung/P Cursorposition/P Cursorspur Cursorsteuerungsbefehl/E Cyberspace DAX DB DDR DFB DFÜ DGB DHCP DIN DKP DNS DNVP DOS DPA DRK DSL DVD/S Dächer/N Dämmerlicht Dämmerns Dämmerschlaf Dämmerstunde/N Dämmerung/P Dämon/FPS Dämonenglaube Dämonenhand Dämonie Dämpfens Dämpfung/P Dämpfungskomponente Dämpfungsteil Däne/FN Dänemark/S Dänenherrschaft Därme/N Däumchen/S Dach/ST Dachau Dachauer Dachbalken Dachböden Dachboden/S Dachdecker/FNS Dachfenster/NS Dachgärten Dachgarten/S Dachgeschoss/EPT Dachgesellschaft Dachgiebeln Dachkammer/N Dachkonstruktion/P Dachorganisation/P Dachpappe Dachrinne/N Dachs/EPT Dachstube/N Dachstuhl Dachterrasse Dachterrassenwohnung/P Dachziegel/NS Dackel/S Dackeldame Dagmar/S Daimler Dakar Dali/S Dallas Dalmatien Damaskus Damast/T Dame/N Damenbegleitung Damenbekleidung Damenbesuch/EPST Damenbinden Damendoppel Dameneinzel Damenfigur Damenfriseur/EPS Damenfrisör/EPS Damenhandtasche Damenhüte Damenhutindustrie Damenkleider Damenkleidung Damenkonfektion/P Damenlanglauf/Sp Damenmannschaft/P Damenmantelmode Damennachthemd Damenoberbekleidung Damenopfer Damenschmuck Damenspiele Damenstrumpf Damentoiletten Damenunterwäsche Damenverkehr Damm/ST Dammbrüche/N Dammbruch/T Dammtor Damokles Damoklesschwert Dampf/RST Dampfbäder Dampfbad/T Dampfdruck Dampferladung/P Dampferpartie Dampfheizung/P Dampfkessel/NS Dampfkochtöpfe Dampfkochtopf/T Dampfkraftwerk Dampfleistung Dampflokomotiven Dampfmaschine Dampfmengen Dampfschiff/EPT Dampfschifffahrt/P Dampfsensor Dampfturbinen Dandy/S Daniel/S Dankadresse/N Dankbarkeit Dankbrief/EPS Dankes Dankeschön Dankesspende/N Dankesworte/N Dankgebet/EPT Dankgottesdienst Dankopfer/NS Danks Danksagen/JS Dankschreiben/S Dankspende/N Danktelegramm/EPS Dante/S Danton/S Danziger Darbietens Darbietung/P Darbringens Darbringung/P Dardanellensperre Darlegens Darlegung/P Darlehen/S Darlehensabgang/Sp Darlehensantrag/STp Darlehensgebern Darlehensgeschäft Darlehenskasse/N Darlehensnehmer Darlehensschulden Darlehenssumme Darlehensvolumen Darlehenszusagen Darlehenszuteilung Darlehn/S Darlehnsvergabe Darlehnsvertrag/Sp Darm/ST Darmbeschwerden Darmerkrankung/P Darmgeschwür/EPS Darmleiden Darmsaite/N Darmstädter Darmstadt Darmverschluss/Tp Darstellens Darsteller/FNS Darstellung/P Darstellungsanweisung/P Darstellungsart/P Darstellungsauffassung/P Darstellungsbefehl Darstellungsform/P Darstellungsfunktion/P Darstellungsgeschwindigkeit Darstellungskunst Darstellungsmöglichkeit/P Darstellungsparameter Darstellungsweise/N Darstellungswelt Darwin/S Dasein/S Daseinsberechtigung/P Daseinsentwurf Daseinsgrenze/N Daseinskampf Dasssätze/N Dasssatz/ET Data Databook Dataframe/S Dataphon Datei/P Dateianfang Dateiende Dateifeldern Dateiformat/E Dateigröße Dateileiche/N Dateiname/N Dateistruktur Dateisystem/EPS Daten Datenabstraktion/P Datenanschluss/Tp Datenanzug Datenaufnahme/N Datenausgabe/N Datenausgabegeräte/N Datenausgang/Sp Datenaustausch Datenauswertung/P Datenbank/P Datenbankprogramm/E Datenbankserver/NS Datenbanksprache/N Datenbanktechnik/P Datenbankverwaltung/P Datenbankzugriff/EPS Datenbasis Datenbereich/EPS Datenbestände/N Datenbestand Datenbit/S Datenblätter/N Datenblatt Datenblock Datenblocksicherung Datenbücher Datenbuch Datenbus/Qq Datenbyte/S Datendarstellung Dateneingabe/N Dateneingabestation/P Dateneingang/Sp Datenempfang Datenendgerät/EPT Datenerfassung Datenerfassungsrechner/S Datenerfassungssystem/S Datenerfassungsteil/EPS Datenerhalt Datenfeld/R Datenfernübertragung/P Datenfernverarbeitung Datenfile/S Datenfluss/Tp Datenflussanalyse/N Datenflussgraph/P Datenflussplan Datenflussschema Datenformat/EPS Datenframe/S Datengeräte/N Datenhandschuh Dateningenieure Dateninterface/S Datenkabel/S Datenkanäle/N Datenkanal/S Datenkanalmultiplexer Datenkanalnummer/N Datenkassette Datenkommunikation Datenkommunikationsleitung/P Datenleitung/P Datenlieferanten Datenlink Datenlogbüchern Datenmasse/N Datenmenge/N Datenmodell/EPS Datenmodul/S Datenmodulformat Datennetz/EPT Datennetzinterface/S Datennetztopologie Datennetzwerk/E Datenobjekt/EPS Datenorganisation Datenpegel Datenpuffer Datenquelle/N Datenregal Datenrepräsentation/P Datenrichtung Datensätze/N Datensammlung/P Datensatz/T Datenschnittstelle/N Datenschützer/FS Datenschutz/T Datenschutzbeauftragte/NR Datenschutzgesetz Datenschwankung/P Datenserien Datenserver Datensicherheit Datensicherung/P Datensichtgerät/EPST Datenspeicher/S Datenspeicherung Datensprungweite Datenströme/N Datenstrom/S Datenstruktur/P Datentakt Datentauschkassette Datentechnik Datentelegramme Datenterminal/S Datenträger/NS Datentransfer Datentransferrate/N Datentyp/P Datenübergabe Datenübermittlung Datenübernahme Datenübertragung Datenübertragungskosten Datenübertragungsprogramm/EPS Datenübertragungsrate/N Datenübertragungsrichtung/P Datenübertragungssoftware Datenübertragungsstrecke/N Datenübertragungswegen Datenurheber/NS Datenverarbeitung/P Datenverarbeitungsanlage/N Datenverarbeitungsexperte/N Datenverarbeitungssystem/EPS Datenverarbeitungszentrale/N Datenverbindung/P Datenverkehr/S Datenverlust Datenverwaltung Datenvisualisierung/P Datenvolumen Datenweg/EPS Datenweitergabe Datenwert/EPS Datenwort/S Datenzugriff/E Datex Datexteilnehmer Dativ/S Dattel/N Datum/S Datumsangabe/N Dauer Dauerarbeiter/FNS Dauerarbeitsplatz Dauerauftrag/STp Dauerbackwaren Dauerbefürworter Dauerbehandlung Dauerbelastung/P Dauerbelegung Dauerbeschäftigung Dauerbrenner Dauereinkommen Dauereinrichtung Dauererfolg Dauerertrag/STp Dauerexistenz Dauerfestigkeit Dauerflug/STp Dauerflugrekord Dauerfreunde Dauergeschäft Dauerhaftigkeit Dauerheim Dauerkarte/N Dauerkrach Dauerkunden Dauerkurzschluss/Tp Dauerladeschaltung Dauerladestrom Dauerlauf/STp Dauerlösung Daueroptimist Dauerparker Dauerpassierschein Dauerregen/S Dauerschlaf Dauerschmerzen Dauerschnupfen Dauerstellung/P Dauerstress/T Dauertätigkeit Dauertests Dauerverdienst Dauervermietung Dauerwellen Dauerwirtschaftswunder Dauerwohnrecht Dauerwohnung/P Dauerwürste Dauerzustände/N Dauerzustand/ST Daumen/S Daumenabdruck Daune/N Daunendecken David/S Davidson/S Davidswache Davis Daviscup Davispokal Davos Deadline/S Deaktivierens Deaktivierung/P Deal/RS Dealer/FNS Debakel/S Debatte/N Debattenpunkt Debattierklub/S Debitorengefüge Debitorenliste Debüt/S Debütant/P Debuggen/S Debugger/NS Debuglevel/S Debussy/S Deckadresse/N Deckaufbauten Deckbett/PST Deckblätter Deckblatt/T Deckel/NS Deckelblatt Deckelblech/EPS Deckelrand Deckelscharnier Deckenbeleuchtung/P Deckenfluter/NS Deckenfresko Deckengemälde/N Deckens Deckfarbe/N Deckkraft Deckmäntel/N Deckmantel/S Deckname/N Decknamen/S Deckschicht/P Deckung/P Deckungsbeitrag/STp Deckungsdarlehen Deckungskäufen Deckungskapital Deckungslücke Deckungsnachweis Deckungsperioden Deckungsregister Deckungsreihen Deckungsrückstellungen Deckungsschwächen Deckungsverhältnis/Qq Decoder Decodiereinheit/P Decodierens Decodierung/P Deduktion/P Deduktionsmethode/N Deduktionsregel/N Deduktionsschema Defätismus Defaultwert/EPS Defekts Defensivposition/P Defensivpotential/EPS Defensivpotenzial/EPS Defensivschlacht Defilee/S Definiertheit Definition/P Definitionsbereich/EPS Definitionszeit Defizit/EPS Defizitländer Defizitlawine/N Deflation/P Deflationsbekämpfung Deflationsfalle Deflationsjahre Deflationskrise Deflationsphase Deflationspolitik Deformation/P Deformieren/JS Degen/S Degeneration Degradierens Degradierung/P Degression Degussa/S Dehnbarkeit Dehnens Dehnung/P Deich/EPT Deichbauer Deichpavillon Deichsel/N Deichwiesen Deinstallation Deismus Dekade/N Dekadenz Dekalog Dekan/EFPS Dekanat Deklamation/P Deklamator/PS Deklaration/P Deklarationspflicht Deklarationsteil/EPS Deklination Dekolletee/S Dekolleté/S Dekompression Dekor/S Dekorateur/EFPS Dekoration/P Dekorationsbände Dekorationsersatz Dekorationslehrling Dekorationsmaterial Dekorationsmeister Dekrementierung Dekret/EPST Delaware Delegation/P Delegationschef/S Delegationsführer/S Delegationsleiter Delegationsmitglieder Delegationsrecht Delegiertengesetz Delegiertenstärke Delegiertenstimmen Delegiertenversammlung Delegiertenzahl Delfin/EPS Delhi Delikatesse/N Delikatessenhandlung Delikt/EPST Deliktgruppe/N Delirien Delirium Dell/EP Delors Delphi/N Delphin/EPS Delphinschwimmer Deltainsel Deltas Deltasegler Demagoge/N Demagogenverfolgung Demagogie Demarkationslinie/N Dementi Dementierens Dementierung/P Demo Demobilisierens Demobilisierung/P Demographie Demokassette Demokrat/P Demokratie/N Demokratiebegriff/S Demokratiedefizit/ES Demokratieverständnis/Qq Demokratisierens Demokratisierung/P Demokratisierungsprozess/EPT Demolierens Demolierung/P Demonstrant/P Demonstration/P Demonstrationsfreiheit Demonstrationsgeräte Demonstrationskästen Demonstrationsobjekte Demonstrationsrecht Demonstrationsverbot Demonstrationszug/STp Demontage/N Demontagebefehle Demontageeinstellung Demontagefall Demontagefirma Demontageliste Demontagepolitik Demontageprogramm/S Demontageprotest Demontagetrupp Demonteur Demoralisation Demosoftware Demoversion/P Demütigens Demütigung/P Demut Denkansätze/N Denkansatz/T Denkanstoß/Tp Denkbarkeit Denkens Denker/NS Denkfabrik Denkfaulheit Denkfehler/NS Denkfreiheit/P Denklinie/N Denkmäler/N Denkmal/PS Denkmaljahr Denkmalpflege Denkmalschutz/T Denkmalschutzjahr Denkmalsschutz Denkmethode/N Denkpause/N Denkprozess/EPT Denkschema/S Denkschemata Denkschrift/P Denkspiel Denkstühle Denktradition/P Denkvermögen/S Denkweise/N Denkwürdigkeit Denkzettel/NS Denkzwang/Sp Dennis Dentaltechnik Dentist/FP Denunziant/FP Denunziation/P Departement/S Depesche/N Deponie/N Deportation/P Depositen Depositenbank/P Depositengeldern Depositenkasse/N Depositenkonto/S Depot/S Depotumschichtung/P Depotwert Depp/PS Depression/P Depressionsphasen Derbyfeld Derbysieger/S Dereferenzierung Deregulierens Deregulierung/P Derivat/EPS Derivation/P Desaster/S Descartes Deserteur/EFPS Desertion/P Design/RS Designänderung Designer/FNS Designgrundsätze/N Designziel Desillusion/P Desillusionierung Desinfektion/P Desinfektionsmittel/NS Desinfizierens Desinfizierung/P Desintegration/P Desinteresse/S Desktop/S Desktoppublishing/S Desoxyribonukleinsäure/N Despot/P Despotie Dessert/S Dessous Destabilisierens Destabilisierung/P Destillat Destillateur Destillation/P Destillierens Destillierung/P Destination/P Destruktion Detail/S Detailausarbeitung/P Detailfrage/N Detailfülle Detailgenauigkeit Detailgeschäft/EPT Detailhändler/FNS Detailhandel/S Detailinformation/P Detailkenntnis/q Detailkonstrukteur Detaillierens Detaillierung/P Detaillierungsgrad/EPST Detailliste/N Detailvorschlag/STp Detektierens Detektierung/P Detektion Detektiv/EFPS Detektor/S Detektorenempfänger Determinante/N Determinismus Detlef/S Detlev/S Detonation/P Detroit Deut/J Deuterium Deutlichkeit Deutschenfeindlichkeit Deutschland/S Deutschlandbüro Deutschlandmodell Deutschlandpokal Deutschlandreise Deutschlandserie Deutschsprechen Deutschstunde Deutschunterricht Devalvation/P Device/S Devise/N Devisenausgaben Devisenausgleichsfonds Devisenbescheinigung Devisenbeschränkung/P Devisenbörsen Devisenentwicklung Devisenerlöse Devisengeschäft Devisenhändler/FNS Devisenhandel Devisenhilfe Devisenkontrolle/N Devisenkontrollstelle Devisenkurse Devisenmarkt/Tp Devisenprobleme Devisenquelle Devisenschmuggel Devisenspekulationen Devisenspekulationsgeschäft/EPS Devisensperren Devisenspritzen Devisensucht Devisenvergehen Devisenwoge Devon/S Dez Dez. Dezember/S Dezemberausgaben Dezemberhälfte Dezemberschnee Dezemberwoche Dezentralisation Dezentralisierung Dezernat/EPS Dezernent/FP Dezibel Dezimalbetrag/STp Dezimaldarstellung Dezimalformat Dezimalpunkt Dezimalrechnung/P Dezimalsystem/S Dezimalwert/EPST Dezimalzahl Dhabi Diät/P Diätsanatorium Dia/S Diabetes Diabetiker/FNS Diadem Diagnose/N Diagnoseeinrichtung Diagnosegerät Diagnosekomponente Diagnosemöglichkeit/P Diagnosestudien Diagnosesystem/EPS Diagnostik Diagramm/EPS Diakone/N Diakonie Dialekt/EPST Dialektik Dialektunabhängigkeit Dialog/EPST Dialogablauf/Sp Dialogpartner Dialogsteuerung Dialyse Diamant/P Diamanthändler/FNS Diamantring Diaphragma/S Diapositiv/EPS Diaprojektor/S Diaschau Diaspora Dichotomie Dichtens Dichterfürst Dichterin/F Dichterliebe Dichtern Dichters Dichtfläche/N Dichtgummi Dichtheit Dichtigkeit Dichtkante/N Dichtkünste Dichtkunst Dichtung/P Dichtungsraupe Dichtungsring Dichtungsüberprüfung Dickbauch Dickdärme/N Dickdarm/S Dickhäuter/NS Dickicht/EPS Dickköpfe/N Dickkopf Dickleibigkeit Didaktik/R Didaktiker/FNS Dieb/EFPST Diebesbande/N Diebesbeute Diebesgut Diebstähle/N Diebstahl/S Diele/N Diener/NS Dienerschaft Dienstälteste/NR Dienstag/EP Dienstagnacht Dienstagsforum Dienstalter/NS Dienstantritt/T Dienstanweisung/P Dienstanzug/STp Dienstausrüstung/P Dienstbarkeit Dienstbote/N Dienste/NS Diensteifer/S Dienstgeheimnis/Qq Dienstgespräch/EPS Dienstgrad/EPST Dienstherr/NP Dienstjahr/EPST Dienstleister/NS Dienstleistung/P Dienstleistungsangebot/EPS Dienstleistungsbereich Dienstleistungsberuf/E Dienstleistungsbetrieb/EPS Dienstleistungsgesellschaft Dienstleistungsgewerbe Dienstleistungspaket Dienstleistungssektor Dienstleistungsstaat/PS Dienstleistungsunternehmen/S Dienstleistungszweigen Dienstmädchen/S Dienstmänner/N Dienstmann Dienstordnung/P Dienstpersonal Dienstpflicht/P Dienstpistole/N Dienstprogramm/EPS Dienstraum/STp Dienstreise/N Dienstreisebericht Dienstsiegel Dienstsitz Dienststelle/N Dienststrafverfahren Dienststunde/N Dienstverhältnis/Qq Dienstvertrag/STp Dienstvorgesetzten Dienstvorschrift/P Dienstwagen/S Dienstweg/EPT Dienstwohnung/P Dienstzeit/P Dienstzeitregelung Dienstzweig/EPS Diesel Diesellok Diesellokomotiven Dieselmaschinen Dieselmotor/PS Dieselmotorenbau Dieselöl/S Dieselölfackeln Dieselölverbraucher Dieter/S Dietrich/EPS Diffamierens Diffamierung/P Diffamierungskampagne Diffamierungsmethode Differential/EPS Differentialfaktor/PS Differentialgleichung/P Differentialrechnung Differentialteil/EPS Differentiation/P Differenz/P Differenzbetrag/STp Differenzdruckmesser/NS Differenzeingang/Sp Differenzenbildung Differenzial/EPS Differenzialfaktor/PS Differenzialgleichung/P Differenzialrechnung Differenzialteil/EPS Differenziation/P Differenzierens Differenzierung/P Differenzierungsverlust Differenzspektrum Differenzvektor/PS Diffusion Digitalanzeige/N Digitalausgabe/N Digitalausgang/Sp Digitaleingabe/N Digitaleingang/Sp Digitalisierens Digitalisierung/P Digitalkamera/S Digitalrechner/NS Digitalschaltung/P Digitalteil Digitaluhr Digitalvoltmeter Digitalwandler Diktafon/ES Diktaphon/ES Diktat/EPT Diktator/FPS Diktatur/P Diktiergerät/EPST Diktiermaschine/N Diktion/P Diktum/S Dilemma/S Dilettant/P Dilettantismus Dill/S Dilschalter/S Dilschaltereinstellung/P Dilschalterstellung/P Dilswitch/T Dimension/P Dimensionierens Dimensionierung/P Dimensionierungsänderung/P Dinar Ding/EPRS Dinosaurier Diözesan/EPS Diözesanbischöfe Diözesanbischof Diözesangrenzen Diözese/N Diözesenbischöfe Diözesengebiete Diözesengrenzen Diode/N Diodenbrücke Diodenbuchse Diodensteckbuchse Diogenes Dionysios Dioptrie/N Dioxin/EPS Diphtherie Diphtheriebazille/N Diphthong/EPS Dipl Dipl. Diplom/EPS Diplomand/FP Diplomarbeit/P Diplomarbeitsthema/S Diplomat/P Diplomatenanzug/STp Diplomatengepäck Diplomatenhäppchen Diplomatenkoffer Diplomatenkreise Diplomatenstab Diplomatie Diplomfeier Diplomingenieur/EPS Diplomingenieurtitel Diplomkaufmann/S Diplomlehrer Diplomprüfung/P Diplomvolkswirt Dipol/EPS Directories Directory Direktabschluss/Tp Direktbehandlung Direkterzeugung Direktflug/STp Direktimport/E Direktinvestition/P Direktion/P Direktionsassistent Direktionsfahrzeug Direktionssekretärin Direktionswagen Direktive/N Direktmeldung Direktor/FP Direktorat/EPST Direktorium Direktrice/N Direktsendung Direktspiel Direktübertragung Direktverbindung Direktverhandlung/P Direktverkäufe/NR Direktverkauf/Sp Direktversicherung Direktversicherungsverträge Direktvertrieb Direktwahl Direktzugriff Dirigent/P Dirigentenpult Dirk/S Dirndl Dirne/N Disagiokosten Discountkrieg Disharmonie Disjunktion/P Disk Diskette/N Diskettenerstellung Diskettenlaufwerk/EPS Diskettenplatz Diskettensatz Diskettenspezifikation/P Diskettentausch Diskont/EPS Diskontgeschäfte Diskontinuität Diskontpolitik Diskontpreisen Diskontsätze/N Diskontsatz/T Diskothek/P Diskquota/S Diskrepanz/P Diskretion Diskriminierens Diskriminierung/P Diskurs/EPT Diskus/Qq Diskussion/P Diskussionsbeitrag/STp Diskussionseifer Diskussionsforum Diskussionsgegenstand Diskussionsgrundlage/N Diskussionsgruppe/N Diskussionskreis/EPT Diskussionsleiter Diskussionspapier Diskussionspartner Diskussionspunkt Diskussionsreaktion/P Diskussionsrunde/N Diskussionsstand Diskussionsstoff Diskussionsteilnehmer/NS Diskussionsthema Diskussionsveranstaltung/P Diskussionsvorschlag/Sp Diskussionszeit Diskuswerfer Diskzugriff/EPS Disney/S Disparität/P Dispens/P Dispersion Display/S Displayabdeckung/P Displaycontroller/S Displayeinheit/P Displayfeld Displayfenster/NS Displayfensterumrisse Displayinterface/S Displaysteckverbinder Disposition/P Dispositionsänderung Disproportion/P Disproportionalität/P Disput/EPST Disqualifikation Disqualifizierens Disqualifizierung/P Dissens/T Dissertation/P Dissident/P Dissonanz/P Distanz/P Distanzbolzen Distanzeinrichtung Distanzhülsen Distanzierens Distanzierung/P Distanzmessung/P Distel/N Distelfinken Distribution/P Distributionsverlag/EST Distributor/PS Distrikt/EPT Distrikthauptstadt Disziplin/P Disziplinarausschuss/Tp Disziplinarmaßnahmen Disziplinarstrafe Disziplinarverfahren/S Disziplinierens Disziplinierung/P Disziplinierungsinstrument Disziplinlosigkeit Diva/S Divergenz/P Divergenzwinkel Diversifikation/P Dividende/N Dividendenausfall/Sp Dividendenberechtigte Dividendenempfänger Dividendenerhöhung/P Dividendenhöhe Dividendenkonto Dividendenkürzung/P Dividendenprognose Dividendenrückgang Dividendensätze Dividendenverzicht Dividendenzahlung/P Division/P Divisionsraum/STp Divisionsstärke Divisor/S Diwan/S Dixieland Dnjepr Döner/NS Dörfchen/S Dörfer/N Dörrfleisch/T Dörrobst Dobermann Docht/EPST Dock/S Dockbetrieb Doge/N Dogge/N Dogma/S Dogmatik/R Dogmatiker/NS Dogmatismus Dogmen Dohle/N Dohlennest Dohlenpärchen Doktor/FPS Doktorand/FP Doktorarbeit/P Doktordiplom Doktorexamen/S Doktorgrade/N Doktorväter Doktorwürde/N Doktrin/P Doku Dokument/EPST Dokumentarbeitrag/STp Dokumentarbericht/EPS Dokumentarfilm/EPS Dokumentarspiel Dokumentarstreifen Dokumentation/P Dokumentationsanweisung Dokumentationsstelle/N Dokumentationsvorschrift/P Dokumentationszweck/EPS Dokumentenbreite Dokumentenerstellung Dokumentengeschäft Dokumentvorlage/N Dolch/EPS Dolchstich/EPST Dolchstoß/Tp Dollar/S Dollarabwertung Dollaranleihe Dollaranteils Dollarbasis Dollarbeträge Dollarerlös Dollarfall Dollarguthaben Dollarhalter Dollarhausse Dollarkredit Dollarkurs/EPT Dollarlücke Dollarmangel Dollarnote/N Dollarnotierung Dollarnotiz Dollaroptionen Dollarraum/ST Dollarreserven Dollarschwäche/N Dollarstärke/N Dollarstück Dollarverfall/S Dollarverluste Dollarvermögens Dolly/S Dolmetscher/FNS Dolmetscherinstitut Dolmetscherschulen Dolmetscherservice Dom/EPT Domäne/N Domain/S Domchor/ST Domglocke/N Domherr/FNP Dominanz Dominanzstreben/S Dominik/S Dominikaner Domino/S Dominoeffekt Domizil/EPS Dompfaff Dompfarrer Dompteur/FS Dompteuse/N Don Donald/S Donator/PS Donau Donaudelta Donaukraftwerk Donaumonarchie Donauwalzer Donner/S Donnergang Donnerschlag/STp Donnerstag/EP Donnerstimme/N Doping/S Dopingkontrolle/N Dopingmittel Doppel/JS Doppelabitur Doppelabschuss/Tp Doppelaufgabe/N Doppelbesteuerung/P Doppelbesteuerungsabkommen Doppelbett/PS Doppelbildnis/Qq Doppeldecker/S Doppeldrehbühne Doppeldruck Doppeleurokarte Doppelfehler/NS Doppelfenster Doppelgänger/NS Doppelgrab Doppelhaus/Tp Doppelheft Doppelimpuls/EPT Doppelinklinometer Doppeljubiläum Doppelkabine Doppelkinn/EPS Doppelklick/S Doppelkopf Doppellaut/EPT Doppelleben Doppelleitung/P Doppelliter Doppelminister Doppelmoral Doppelmord Doppelname/N Doppelnamen/S Doppelnetzteil Doppelns Doppelpack/S Doppelpaket Doppelpartner Doppelpass/Tp Doppelpunkt/EPST Doppelsalto Doppelschnitt Doppelsieger Doppelsinn/EPS Doppelsitzer Doppelspiel/EPS Doppelspule Doppelstart Doppelsteckdosen Doppelstecker/NS Doppelstrategie/N Doppelstromversorgung Doppeltasten Doppeltitel Doppeltür/EP Doppelung/P Doppelunternehmen Doppelventil Doppelventilbeschaltung Doppelverdiener Doppelwährung/P Doppelwaffe Doppelweltmeister Doppelwirkung/P Doppelzählung Doppelzaun Doppelzentner/S Doppelzimmer/N Doppelzone Dopplung/P Dora/S Dorado Dorf/ET Dorfbevölkerung Dorfbewohner Dorfeinwohner Dorfgemeinschaft Dorfkapelle Dorfkaplan Dorfkirche Dorfmusik Dorfpfarrer Dorfplatz Dorfpolizist/P Dorfrand Dorfschöne/N Dorfschullehrer Dorfschwalben Dorfstolz Dorftratsch/T Dorftrottel Dorfwirtschaft Doris Dorn/PS Dornenkrone Dornier/S Dornröschen/S Dorothee/S Dorsch/EPST Dortmund/RS Dortmunder/FNS Dose/N Dosenbier Dosenfleisch Dosenöffner/N Dosierens Dosiergerät/T Dosierparameter Dosierpumpe/N Dosierspritze/N Dosierung/P Dosimeter/NS Dosis Dosiswert/EPST Dossier/S Dotbuffer/S Dotierens Dotierung/P Dotoffset/S Dotposition/P Dotreihe/N Dotter/N Dotterblume/N Double/S Dover Dow Downloads Dozent/FP Dr Dr. Drähte/N Drängens Drache/N Drachenboot/EPST Drachenkampf Drachentier/S Drachme/N Dracula/S Dragee/S Drageeform Dragoner Dragée/S Draht/T Drahtanschluss/Tp Drahtbein/EPS Drahtbeinchen Drahtbrücken Drahtbürste Drahtesel Drahtgeflecht/EPT Drahtgitter Drahtseil Drahtseilakt/T Drahtseilbahn Drahtstück/EPST Drahtwarenfabrik Drahtweberei Drahtzange/N Drahtzaun Drainage/N Drama/S Dramatik/R Dramatiker/FNS Dramatikerpreis/EPT Dramatisierens Dramatisierung/P Dramaturg/P Dramaturgentagung Dramaturgie Dramen Dramenfragment Dramenstoff Drangperiode Drangs Drangzeit Draufgänger/FNS Draufgängertum Draufgabe/N Draufsicht Drechsler Drechslerei/P Dreck/ST Dreckhaufen/S Drecksache/N Drecksarbeit Dreckszeug Drehachse/N Drehantrieb Dreharbeit/P Drehbänke/N Drehbank/P Drehbewegung/P Drehbleistift/EPT Drehbücher/N Drehbühne/N Drehbuch/T Drehbuchautor Drehbuchschreiber Drehdurchführung Drehens Drehentriegelung Dreher/FNS Drehfrequenz Drehgeber/N Drehgelenke/N Drehgestell Drehgriff/EPS Drehimpuls/EPT Drehknöpfe/N Drehknopf/ST Drehkranz Drehkreuz/EPT Drehlänge/N Drehleiter Drehmaschine/N Drehmoment/EPS Drehorgel Drehpotentiometer/NS Drehpoti Drehpunkt/EPT Drehrichtung/P Drehrichtungserkennung Drehscheibe/N Drehsinn/S Drehstrom Drehstromfrequenz Drehstrommotor/PS Drehstühle/N Drehstuhl/S Drehteil/EPS Drehtransformation/P Drehtür/EP Drehung/P Drehwinkel/NS Drehwinkelermittlung Drehwinkelgeber Drehzahl/P Drehzahlbestimmung Drehzahlerhöhung Drehzahlmesser Drehzahlmessung Drehzahlsteller Dreieck/EPS Dreieckauskünfte Dreieckauskunft Dreiecksflug Dreieckstuch Dreiecksverhältnis/Qq Dreiecksverkehr Dreiergruppe/N Dreiermannschaft/P Dreifaltigkeit Dreifuß/Tp Dreijahresabkommen Dreijahresplan/ST Dreijahresvertrag/STp Dreiklang Dreikönigstag Dreiländereck Dreimächteabkommen Dreimächtekonferenz Dreimeilenzone/N Dreimonatsoption/P Dreimonatspreis/EPT Dreimonatszeitraum Dreingabe/N Dreiräder/N Dreirad Dreiradfahrzeuge Dreiradklasse Dreißigern Dreisatz Dreistaatentheorie Dreistigkeit/P Dreitagewoche Dreiteilen/JS Dreivierteljahr Dreiviertelmehrheit Dreivierteltakt/T Dreizimmer Dreschflegel/N Dresden/S Dresdner/FN Dress/ET Dresseur/EPS Dressman Dressur/P Dressuraufgaben Dressurpferde Dressurpreis/EPT Dressurreiten Dressurreiter Dribbelkünstler/S Drift Drilling/EPS Drillingstaufe Dringlichkeit Dringlichkeitsantrag/STp Dringlichkeitslisten Dringlichkeitsstufe/N Drink/S Dritteln Drittels Drittklässler/FNS Drittländer Drittmittel/NS Drittstaaten Droge/N Drogenbarone Drogengefasel Drogengeheimdienst Drogengelder Drogenhandel/S Drogenproblem/S Drogenschmuggelzwecke Drogenwelt Drogerie/N Drogeriekette Drogist/P Drohbrief/EPT Drohens Drohung/P Dromedar/EPS Droschke/N Drossel/J Drosselns Drückeberger/NS Drückebergereien Drücker/N Drüse/N Druck/RS Druckänderung Druckabfall/S Druckamplitude Druckanstieg Druckanzeige/N Druckaufbau Druckaufnehmer/N Druckaufträge/N Druckausgabe Druckbalken Druckbarkeit Druckbefehl/EPS Druckbeginn Druckbelastung Druckbereich Druckbereitschaft Druckbetrieb Druckbild Druckbilddarstellung Druckbildfenster Druckbögen Druckbreite Druckbuchstabe/N Druckbuchstaben/S Druckdichte Druckeinstellung Druckens Druckentspannung Drucker/NS Druckeranpassung/P Druckeranschluss/Tp Druckeransteuerung Druckerausgabe Druckerausgang Druckerbefehl/EPS Druckerbereich/EPS Druckerbild Druckerbilddarstellung/P Druckerbuffer/S Druckerei/P Druckereibetrieb Druckereigewerkschaft Druckereinstellung/P Druckerfamilie/N Druckerfunktion/P Druckergehäuse/S Druckergeneration/P Druckerhardware Druckerhöhung Druckerinitialisierung/P Druckerinstallation/P Druckerinterface/S Druckerkabel Druckerkombination/P Druckerlaubnis/q Druckermagnet/PS Druckermechanik/P Druckermotor Druckernadel/N Druckerplatine/N Druckerprogramm/EPS Druckerpuffer Druckerregal Druckerschlitz Druckerschnittstelle/N Druckerschwärze Druckerseite Druckerserie Druckersteckverbinder Druckersteuerzeichen Druckertask Druckerteil/S Druckertreiber/S Druckertyp/PS Druckerverbindungskabel Druckexemplare Druckfarbe/N Druckfehler/N Druckfehlerverzeichnis/Qq Druckfestigkeit Druckformat Druckfunktion/P Druckgeber Druckgefälle Druckgeschwindigkeit Druckgrafik Druckgraphik Druckhardware Druckhaus/Tp Druckimpulsen Druckkabinen Druckkammer/N Druckkapselung Druckknöpfe/N Druckknopf Druckköpfe Druckkoeffizient Druckkopf/ST Druckkopfbelastung Druckkopfhalteschrauben Druckkopfjustierung Druckkopflebensdauer Druckkopfmotor Druckkopfnadel/N Druckkopftausch Druckkopfwagen/S Druckkostenanhebung/P Drucklegung Druckleistung Druckluft Druckluftanschluss/Tp Druckmaschine/N Druckmechanik Druckmechanismus Druckmedium/S Druckmessdose Druckmesser Druckmessstelle/N Druckmessung Druckmesswerte Druckmittel Druckmodus Drucknadelansteuerung Drucknadelsteuerung Druckposition/P Druckpresse Druckprinzip Druckprogramm Druckpuffer Druckpunkt Druckrand Druckregelung Druckrichtung Druckroutine Drucksache/N Drucksachengebühren Druckschalter/NS Druckschlägen Druckschlitz Druckschraube Druckschrift Druckschwankung/P Druckseite/N Drucksensor/P Drucksimulator Druckspitze/N Drucksteuerleitung/P Drucksteuerzeichen Druckstück/E Drucktaste/NR Drucktaster/N Drucktechnik/P Druckunterschied/E Druckverhältnis/Qq Druckverlauf/Sp Druckvorgang/ST Druckvorlagen Druckvorrichtung Druckwasser Druckweise Druckwelle/N Druckwerk/EPST Druckwerktest Druckwert/E Druckzeichen Druckzeile/N Druckzeilenhöhen Druide/N Drusen Dschibuti/S Dschingis Dschungel/S Dschungelbuch Dschungelkämpfer/N Dschungelkampf Dschungelpfade/N Düfte/N Düne/N Düngegerät Düngekalk Düngemaschine Düngemittel/NS Düngemittelanlagen Düngemittelfabrik Düngemittelgeschäftes Düngens Dünger/NS Düngung/P Dünkirchen Dünndarm/S Dünndruckpapier/S Dünnschiss/T Dürer/S Dürftigkeit Dürregebiete Dürrenmatt/S Düse/N Düsenantrieb Düsenbomber Düsenclipper Düsenflugzeug/EPS Düsenjäger/S Düsenkampfflugzeug Düsenmaschinen Düsenpiloten Düsenstrecke Düsentreiber Düsentrieb/S Düsenverkabelung Düsenverkehrsflughäfen Düsenverkehrsmaschine Düsseldorf/RS Düsseldorfer/FNS Düsterkeit Dualismus Dualität Dubai/S Dubcek/S Dublette/N Dublin Dudelsack Dudelsackpfeifer/N Duden Duell/EPS Duett/EPS Duft Duftnote/N Duftprobe/N Duftstoff/EPST Duftwasser Duftwolke Duisburg/S Dukaten Duktus Duldens Duldsamkeit Duldung/P Dumas Dummerchenrolle Dummheit/P Dummköpfe/N Dummkopf/ST Dummy/S Dummyfunktion/P Dumpfheit Dumpingpreise/N Dung/ST Dunkelbleiben Dunkelheit Dunkelkammer Dunkelmänner/N Dunkeln Dunst/T Dunstabzugshaube/N Dunsthimmel Dunstkreis/PT Dunstwolke/N Duo/S Duplexdruck Duplikat/EPT Duplikationsrate Duplizierens Duplizierung/P Duplizität Duralith Durcharbeitens Durcharbeitung/P Durchblick/S Durchblutung Durchblutungsstörung Durchbrüche/N Durchbruch/S Durchbruchsoffensive Durchdringens Durchdringung/P Durchdrücken Durcheinanders Durchfahrten Durchfahrtsschein Durchfall/S Durchfallquote/N Durchfluss/T Durchflusserfassung Durchflussmesser/N Durchflussmessung Durchflussquerschnitte Durchflusszähler Durchfluten/JS Durchführens Durchführung/P Durchführungsauftrag/STp Durchführungsbefugnis/q Durchgabe Durchgang/Sp Durchgangslager Durchgangsstation/P Durchgangsstraße/N Durchgangsstudium/S Durchgangsverkehr/S Durchhaltebefehl Durchhalteparole/N Durchhaltevermögen/S Durchhaltungsvermögens Durchkontaktierung Durchkontaktierungsplatine Durchlässigkeit Durchlass/Tp Durchlaucht Durchlauf/STp Durchlaufrichtung Durchlaufverkehr Durchlaufzeit Durchleuchtens Durchleuchtung/P Durchmärsche/N Durchmarsch/T Durchmarscherlaubnis/q Durchmesser/S Durchmischens Durchmischung/P Durchquerens Durchquerung/P Durchreisevisum Durchsatz Durchschlag/STp Durchschlagpapier/S Durchschlagskraft Durchschleifen/JS Durchschnitt/EPST Durchschnittsalter Durchschnittsanstieg Durchschnittsbetrag/STp Durchschnittsbildung Durchschnittsbürgers Durchschnittseinkommen Durchschnittsergebnis/Qq Durchschnittsertrag/STp Durchschnittsgetränk Durchschnittsgewicht Durchschnittsgewinne Durchschnittslöhne Durchschnittslohn Durchschnittsmeinung Durchschnittsmiete/N Durchschnittspreis/EPT Durchschnittstief Durchschnittsverbrauch Durchschnittswein Durchschnittswert/P Durchschreiten/JS Durchschrift/P Durchschuss/Tp Durchsetzbarkeit Durchsetzens Durchsetzung/P Durchsetzungschance/N Durchsetzungsvermögen/S Durchsicht/P Durchsteiger/NS Durchsuchens Durchsuchung/P Durchsuchungsbefehl/EPS Durchtriebenheit Durchwahl Durchzug/ST Durst/TW Durstlöscher Durststrecke/N Duschbad Duschnische/N Dusel Dusseligkeit/P Dussligkeit/P Dutt/ES Dutzend/P Dynamik Dynamikumfang/ST Dynamisieren/JS Dynamit/S Dynamitladung Dynamo/S Dynamomaschine Dynastie/N Dynastiegründer Dyslexie/N EDV EFTA EG EKG EM EPROM ETH EU EWG EWS EWU Ebbe/N Ebenbild/RT Ebenheit Ebenholz Eber/NS Eberhard/S Ebert/SW Echnaton/S Echo/S Echoabstände Echoerkennung Echolänge Echolaufzeit Echolot Echomessung Echomethode Echosignal/EPS Echoverfahren/S Echozeit Echozeitmessung Echtheit Echtzeit Echtzeitaufgaben Echtzeitbedingung/P Echtzeitbetriebssystem/EPS Echtzeiteigenschaften Echtzeitkopplung/P Echtzeitreaktion/P Echtzeituhr Echtzeitverarbeitung Eckball/Sp Eckchen/S Eckenklarheit Eckenschliff Eckernförde Eckgrundstücke Ecklage Eckpfeiler/S Eckplätze/N Eckplatz/T Eckstein Eckzähne/N Eckzahn/ST Eckzimmer Eckzylinder Eckzylinderansteuerung Eckzylinderautomatik/P Economyklasse Ecu/S Ecuador Edeka Edelbranntwein Edelgas/T Edelgaskonfiguration Edelhölzer Edelknabe Edelmänner/N Edelmann/ST Edelmenschen Edelmetall/EPS Edelmetallerzeugnis/Qq Edelmetallprodukt/EP Edelmut Edelobstgarten Edelpelze Edelstahl Edelstahlindustrie Edelstahlproduzenten Edelstahlwerk Edelstein/EPS Edelsteinkette Edeltannen Edeltraud/S Edelweiß/EPT Edelwildleder Eden/S Eder/S Edinburgh Edison/S Edith/S Edition/P Editor/PS Editorial Editorinstallation Edmund/S Edukation Edukt/EPST Eduscho Efeu/S Effekt/EPST Effektenabteilung Effektenanlage Effektenbörsen Effektenhändler/N Effektenhandel/S Effektenmakler/S Effektenmarkt/STp Effektenschalter Effekthascherei Effektivität Effektivverzinsung Effizienz Effizienzgewinn/EPS Effizienzsteigerung/P Effizienzverbesserung Effizienzverlust/EPST Egalisierens Egalisierung/P Egel/NS Egge/N Ego/NS Egoismen Egoismus Egoist/FP Egon/S Egozentrik Eheanbahnung/P Eheangebote Eheberater/S Eheberatung Ehebett/T Ehebrecher/FNS Ehebrüche/N Ehebruch/S Ehefrau/P Ehefrieden Ehegatte/FN Ehegefährte/N Ehegefährtin Ehegerüchte Ehegesetz/T Eheglück Ehehälfte Eheinstitut Ehejahr/E Ehekandidat/P Ehekonflikte Ehekrach Eheleben/S Eheleute/N Ehelosigkeit/P Ehemänner/N Ehemann/T Ehen Ehepaar/EPST Ehepartner/FNS Ehepraxis Eherecht/ST Eheregister Ehering/EPST Ehescheidung Ehescheidungsgesetz Ehescheidungsgrund Ehescheidungsklage Ehescheidungsprozesse Ehescheidungsrecht Eheschließung Eheseminar Ehestände/N Ehestand/T Ehesteuer Ehestifter/FNS Ehestreit/S Ehetragödie Ehevermittlung Eheversprechen/S Ehevertrag/Tp Ehezwist Ehrabschneider/FNS Ehrbarkeit Ehrbegriff/EPS Ehrenämter/N Ehrenabzeichen Ehrenamt/ST Ehrenbataillon/S Ehrenbürger/NS Ehrenbürgerbrief Ehrenbürgerrecht Ehrenbürgerschaft Ehrendame/N Ehrendoktor/PS Ehrenerklärung Ehrenformation/P Ehrenfriedhöfe Ehrengäste/N Ehrengast Ehrengeleit Ehrengericht/ET Ehrenhandel/S Ehrenkodex Ehrenlegion Ehrenliste Ehrenmänner Ehrenmann/ST Ehrenmitglied/RST Ehrenname/N Ehrenplätze/N Ehrenplatz Ehrenpräsident/P Ehrenpreis/EPT Ehrenrechte/N Ehrenrunde/N Ehrens Ehrensache/N Ehrenschuld/P Ehrensenator Ehrenspalier Ehrentag/EPT Ehrentitel/N Ehrentor Ehrentreffer Ehrentribüne/N Ehrenvorsitzende/N Ehrenwache/N Ehrenwort/T Ehrenzeichen/S Ehrerbieten/JS Ehrfurcht Ehrgefühl/S Ehrgeiz/T Ehrlichkeit Ehrlosigkeit Ehrsamkeit Ehrung/P Ehrungsliste/N Ei/RS Eiabstoßung Eibe/N Eichamt Eichel/N Eichenbalken Eichenbestände Eichengrund Eichens Eichentonne/N Eichenwald Eichfaktor/P Eichhörnchen/S Eichhorn Eichkätzchen Eichmeister/S Eichmessung Eichparameter Eichtonnen Eichung/P Eid/EPT Eidechse/N Eidgenosse/N Eidgenossenschaft Eidotter/NS Eierangebot Eierbecher/N Eiereinfuhr Eiergeschäft Eiergroßhändler Eierkuchen/S Eiermarkt/ST Eierproduktion Eierschale Eierschwemme Eierspätzle Eierstöcke Eieruhr/P Eifel Eifelberge Eifer/S Eifersucht Eifersuchtsszene Eiffelturm Eigelb/EPS Eigenart/P Eigenautomatik/P Eigenbau Eigenbedarf Eigenbesitz Eigenbetrieb Eigenbrötler/NS Eigendynamik Eigenentwicklung/P Eigenerfahrung Eigenfabrikat/EPT Eigenfertigungsanteil Eigenfinanzierung Eigenfrequenz Eigengesetzlichkeit Eigengewicht/EPST Eigenheim/EPST Eigenheit/P Eigenherstellung Eigeninitiative Eigeninteresse/N Eigenkapital/S Eigenkapitalbasis Eigenkapitaldeckung Eigenkapitalien Eigenkapitalverhältnis/Qq Eigenleben/S Eigenliebe/N Eigenlob Eigenmächtigkeit/P Eigenmittel Eigenname/N Eigennamen/S Eigennotierung/P Eigennutz/T Eigennutzung Eigenproduktion/P Eigenrauschen Eigenschaft/P Eigenschaftswörter/N Eigenschaftswort/T Eigensicherheit Eigensinn/ST Eigenständigkeit Eigentümer/FNS Eigentümerschaft Eigentümlichkeit/P Eigentum/S Eigentumsanspruch Eigentumsbildung Eigentumsdelikte Eigentumsgarantie Eigentumspolitik Eigentumsrecht/ET Eigentumsschutz Eigentumsübergang Eigentumsübertragung Eigentumsverhältnis/Qq Eigentumswohnung/P Eigenvektor/PS Eigenverantwortlichkeit/P Eigenverantwortung Eigenvermögen Eigenvertrieb Eigenwechsel/NS Eigenwert/EPST Eigenwille/N Eigenwillen/S Eigenwilligkeit Eigernordwand Eignens Eigner/N Eignung/P Eignungsprüfung/P Eiland/T Eilauftrag/STp Eilbedürftigkeit Eilbestellung Eilbote/N Eilbrief/EPT Eileiter/NS Eilfertigkeit Eilfracht/P Eilgütern Eilgut/T Eilpäckchen/S Eiltempo Eilzug/STp Eilzuschläge Eilzuschrift/P Eilzustellung/P Eimer/NS Einakter/NS Einarbeitens Einarbeitung/P Einarbeitungszeit Einbände/N Einbahnstraße/N Einbalsamierens Einbalsamierung/P Einband Einbau Einbaudrucker Einbaudruckerversion Einbaugehäuse Einbaugerät Einbauküche/N Einbaulage Einbaumöglichkeit/P Einbaumodalität Einbaumodell Einbauort Einbauprobleme Einbaurahmen/S Einbauraum/STp Einbausatz Einbauschränke Einbausituation/P Einbaustelle Einbauteile Einbautiefe Einbautypen Einbauvoraussetzung/P Einbauvorschlag/STp Einbauvorschriften Einbauwannen Einbauzeichnung/P Einberufens Einberufung/P Einbettens Einbettung/P Einbettzimmer/N Einbeziehens Einbeziehung/P Einbildens Einbildung/P Einbindens Einbindung/P Einblendens Einblendung/P Einblick/EPS Einbrecher/N Einbrecherbande Einbrecherkönig Einbrüche/N Einbruch/S Einbruchhöhe Einbruchschlitz Einbruchschneiden Einbruchsdiebstahl Einbruchswerkzeug Einbruchtiefe/N Einbuchen/JS Einbuchten/JS Einbuße/N Eindämmens Eindämmung/P Eindämmungspolitik Eindeutigkeit Eindringens Eindringlichkeit Eindringling/EPS Eindruck/S Einehe Eineindeutigkeit/P Einengens Einengung/P Einfärbens Einfärbung/P Einfachheit Einfall/Sp Einfallsreichtum Einfallswinkel/NS Einfalt Einfaltspinsel/NS Einfamilienhaus/Tp Einfamilienhausbesitzer Einfamilienvilla Einfassens Einfassung/P Einflüstern/JS Einflugschneise Einfluss/Tp Einflussbereich/EPS Einflussgröße/N Einflussmöglichkeit/P Einflussnahme Einflusszone Einförmigkeit Einfrierens Einfrierung/P Einfügemodus Einfügens Einfügung/P Einfühlens Einfühlung/P Einfühlungskraft Einfühlungsvermögen/S Einführens Einführung/P Einführungstage Einführungszeit Einfülldruck Einfuhranträge Einfuhrausschusses Einfuhrbedarf Einfuhrbestimmung/P Einfuhrbewilligung/P Einfuhrfirmen Einfuhrgenehmigung/P Einfuhrkohle Einfuhrkontingent/E Einfuhrlizenzen Einfuhrmengen Einfuhrmöglichkeit/P Einfuhrpolitik Einfuhrquote/N Einfuhrsperre Einfuhrstelle Einfuhrstrom Einfuhrüberschuss/Tp Einfuhrverbot/EPST Einfuhrvolumen Einfuhrzölle Einfuhrzoll Eingabe Eingabeaufforderung Eingabedaten Eingabedialog/E Eingabefeld/R Eingabefenster/NS Eingabeformat Eingabegerät/EPS Eingabekanal Eingabemaske/N Eingabemodus Eingabeparameter/N Eingabestring/S Eingabetastatur/P Eingabetaste/N Eingabeterm Eingabewert/EPST Eingang/Tp Eingangsbedingung/P Eingangsdaten Eingangsdiode Eingangsgröße/N Eingangshalle/N Eingangsimpuls/EPT Eingangsklemmen Eingangsklemmengruppen Eingangskontrolle/N Eingangsleistung Eingangsmonolog Eingangsmultiplexer Eingangspegel Eingangspin/S Eingangsplatine Eingangspost Eingangspuffer Eingangsraum/STp Eingangsreferat Eingangsschaltkreis/E Eingangssichtkontrolle Eingangssignal/E Eingangsspannung/P Eingangsteil Eingangstest Eingangstor/EPS Eingangstrigger Eingangsverbindung/P Eingangszustand/S Eingebens Eingebung/P Eingehens Eingehung/P Eingeständnis/Qq Eingeweide/N Eingewöhnens Eingewöhnung/P Eingliederns Eingliederung/P Eingreifens Eingrenzens Eingrenzung/P Eingriffes Eingriffs Eingriffsmöglichkeit/P Einhalt/JST Einheit/P Einheitlichkeit Einheitsbauten Einheitsbestrebung/P Einheitseinrichtung Einheitsgemeinden Einheitsgesellschaft Einheitsgewerkschaften Einheitskandidat/P Einheitskurse Einheitsliste Einheitsnummer Einheitspreis/EPT Einheitssätze Einheitsspannung Einheitsstaat/P Einheitsstreben/S Einheitstarif Einheitsvektor/PS Einheitsverpackung Einheitswert/ET Einhörner/N Einholens Einholung/P Einhorn/S Einigens Einigkeit Einigung/P Einigungsbewegung Einigungsform Einigungsformel Einigungskrieg Einigungspolitik Einigungsprozess/EPT Einigungsversuch Einjahresvertrag/STp Einkäufer/FNS Einkanal Einkanalsystem/EPS Einkauf/Sp Einkaufsassistent Einkaufsbedarf Einkaufsbedingung/P Einkaufsermächtigung/P Einkaufsführer Einkaufsgelegenheit Einkaufsgesellschaft Einkaufskorb Einkaufsmöglichkeit/P Einkaufsnetz/EPT Einkaufspotential/EPS Einkaufspotenzial/EPS Einkaufspreis/ET Einkaufsrecherchen Einkaufsstraße/N Einkaufstasche/N Einkaufstipp/S Einkaufswochenende Einkaufszentralen Einkaufszentren Einkaufszentrum/S Einkehr Einkellerungspreis Einklang/Sp Einkommen/S Einkommensart Einkommensempfänger Einkommenserhöhung/P Einkommenserklärung Einkommenshöhe Einkommensklassen Einkommenspolitik Einkommensrückstand Einkommenssteigerung/P Einkommensstufe/N Einkommensteuer/N Einkommensteuererklärung/P Einkommensteuergesetz Einkommensteuersenkung Einkommensverlust Einkommensvorstellung Einkommenswährung Einkommenswünsche Einkoppeln/JS Einkreisens Einkreisung/P Einkünfte/N Einladens Einladung/P Einladungsliste/N Einlage/N Einlagekonto Einlagengeschäft Einlagenschutzes Einlagensicherungsfonds Einlagensicherungsschutz Einlagensicherungsverein Einlagenversicherung Einlagenzuwachs Einlagepflicht Einlagerns Einlagerung/P Einlass/JTp Einlassens Einlauf/Sp Einlegebleche Einleger Einleitens Einleitung/P Einlieferns Einlieferung/P Einlieferungsschein/EPT Einlieger/N Einlösens Einlösung/P Einlösungsstellen Einlötversion/P Einmärsche/N Einmaligkeit Einmalzahlung Einmannbetrieb/EPST Einmarsch/T Einmischens Einmischung/P Einmischungsrecht Einmündens Einmündung/P Einnahme Einnahmearten Einnahmeausfall/Sp Einnahmenminderung Einnahmequelle Einnahmeschätzung/P Einnahmeverlust Einöde/N Einordnens Einordnung/P Einparteiensystem Einpendeln/S Einpflanzens Einpflanzung/P Einplatinencomputer Einplatinensystems Einprägsamkeit Einpunktaufhängung Einquartierens Einquartierung/P Einräder/N Einrad/S Einreihungsbescheid Einreisedokument Einreiseerlaubnis/q Einreisegenehmigung/P Einreiseverweigerung Einreisevisa Einreisevisum Einrichtens Einrichtung/P Einrichtungsbranche Einrichtungsgegenstände/N Einrichtungsgegenstand/T Einriss/EPT Einrückens Einrückung/P Einsätze/N Einsamkeit Einsatz/T Einsatzabrechnung Einsatzarten Einsatzbedingung/P Einsatzbereich/EPS Einsatzbereitschaft Einsatzfähigkeit Einsatzfälle/N Einsatzfahrt Einsatzfreude Einsatzgebiet/EPST Einsatzgrenze Einsatzgruppen Einsatzkapital Einsatzkontrolle Einsatzmöglichkeit/P Einsatzort/EPST Einsatzplatz/T Einsatzreife Einsatzspektrum Einsatzumgebung Einsatzwagen Einsatzzahlung Einsatzzeit Einsatzzentrale/N Einschätzens Einschätzung/P Einschaltbegrenzung Einschaltens Einschaltfunktion/P Einschaltquote/N Einschaltsequenz Einschaltstrom Einschaltstrombegrenzung Einschaltung/P Einschaltverhalten Einschaltversuche/N Einschaltvorgang Einschaltziffern Einschiebens Einschiebung/P Einschiffens Einschiffung/P Einschlag/STp Einschleifen Einschließens Einschließung/P Einschluss/Tp Einschmelzung Einschnitt/EPT Einschnüren/JS Einschränkens Einschränkung/P Einschraubgewinde Einschraubhilfe Einschraubmuffe/N Einschreibebrief/EPT Einschreibegebühr/P Einschreibens Einschreibung/P Einschübe/N Einschüchterns Einschüchterung/P Einschüchterungsversuch/EPS Einschub Einschubgehäuse Einschubgeräte Einschubschlitz Einschulens Einschulung/P Einschuss/Tp Einschussstelle/N Einseitigkeit Einsen Einsendens Einsender/N Einsendeschluss/Tp Einsendetermin Einsendung/P Einsendungstermin Einsetzbarkeit Einsetzens Einsetzung/P Einsicht/P Einsichtnahme/N Einsiedler/FNS Einsitzer Einspannens Einspannung/P Einsparens Einsparung/P Einsparungsmaßnahme/N Einspeiseadapter Einspeisens Einspeisung/P Einsprache/N Einsprengsel Einsprüche/N Einspruch/ST Einspruchsgründe Einspruchsrecht/EPST Einsprungadressen Einstandskosten Einstandspreis/EPT Einsteiger/NS Einsteigerpreis/P Einstein/S Einstellbereich Einstellens Einstellgröße/N Einstellschritte Einstelltabelle Einstellung/P Einstellwert/EPST Einstiegsmarke Einstiegssignal/E Einstimmigkeit Einstimmigkeitsprinzip/S Einstimmigkeitsregel/N Einstreuens Einstreuung/P Einstufens Einstufung/P Einsturz/T Eintagsfliege/N Eintauschmöglichkeit Einteilens Einteilung/P Eintönigkeit Eintopf Einträglichkeit Eintracht Eintrag/JSp Eintreibens Eintreibung/P Eintritte/N Eintritts Eintrittsalter Eintrittsausweis/EPT Eintrittsgeld/R Eintrittskarte/N Eintrittskartenverkauf/Sp Eintrittswünsche Einübens Einübung/P Einverleibens Einverleibung/P Einvernehmen/S Einverständnis/Qq Einwände/N Einwahl Einwand/T Einwanderer/NS Einwanderns Einwanderung/P Einwanderungsbehörde Einwanderungsquote Einweihens Einweihung/P Einweisens Einweisung/P Einweisungsflug/STp Einwendens Einwendung/P Einwickelpapier/S Einwilligens Einwilligung/P Einwirkens Einwirkung/P Einwohner/FNS Einwohnermeldeämtern Einwohnermeldeamt/T Einwohnerschaft Einwohnerzahl Einwürfe/N Einwurf/ST Einzahl/J Einzahlungsschein/EPS Einzeichnens Einzeichnung/P Einzel/H Einzelabnehmer Einzelabsätze/N Einzeladern Einzelaktion/P Einzelaktionär Einzelanfertigung/P Einzelanschluss/T Einzelansteuerung/P Einzelarme Einzelauftrag/STp Einzelbefehle Einzelbetätigung Einzelbewerber Einzelbezug/STp Einzelbit/S Einzelbitsteuerung/P Einzelblätter Einzelblattzuführung Einzelblattzufuhr Einzelbon Einzelbriefen Einzelbuchstabe/N Einzeldaten Einzeldefekt Einzeldrucke/N Einzeldurchgang Einzelelement/EPST Einzelentscheidung/P Einzelerscheinung/P Einzelerschießung Einzelersuchen/S Einzelexemplar/EPS Einzelfähigkeit/P Einzelfall/STp Einzelfehler Einzelfirma Einzelfrage/N Einzelfunktion/P Einzelgänger/NS Einzelgerät/EPS Einzelgeschäft/E Einzelgespräch/EPS Einzelhändler/FNS Einzelhandel/S Einzelhandelskaufleute/N Einzelhandelskunden Einzelhandelspraxis Einzelhandelsumsätze Einzelhandelsumsatz Einzelhandelsumsatzzahlen Einzelhaushalten Einzelheft Einzelimpulse/S Einzelinformation/P Einzelinteresse/N Einzelkämpfe/NR Einzelkämpfer/NS Einzelkabine Einzelkampf Einzelkaufmann Einzelkind Einzelklemmen Einzelknoten Einzelkommando/S Einzelkomponenten Einzelkürzung/P Einzelkundenpflege Einzellage Einzelleistung/P Einzeller Einzellizenz Einzelmaschine/N Einzelmeißeln Einzelmeisterschaften Einzelmeldung Einzelmenge Einzelmessung/P Einzelmodule Einzelnachweis/EPT Einzelnadel Einzelnadelansteuerung Einzelnummer Einzelobjekte Einzelperson/P Einzelplan Einzelplanung/P Einzelposition/P Einzelposten/S Einzelpreis/EPT Einzelprodukt/EPS Einzelprojekte Einzelpunkt Einzelpunktansteuerung Einzelradaufhängung Einzelrechner Einzelreisende Einzelrennen Einzelrichter Einzelschicksal Einzelschrift/P Einzelschritt/EPST Einzelschrittweite Einzelsieger Einzelsignale Einzelspiel/ET Einzelstaaten Einzelsteuer Einzelsteuergerät/EPS Einzelsteuerung Einzelstück/EPS Einzeltasten Einzelteil/EPS Einzeltöne Einzelturner Einzelturnier Einzelunterricht Einzelurkunden Einzelverkauf/Sp Einzelversicherung/P Einzelvertrag/STp Einzelvorschläge Einzelwertung Einzelwiderstände/N Einzelwiderstand/S Einzelwörtern Einzelworte Einzelzeichen/S Einzelzellen Einzelzimmer/N Einzelzimmerzuschlag/STp Einzigartigkeit Einzimmerappartement Einzug/STp Einzugschlitz Einzugsroute Einzugstermin/EPS Eis/PT Eisbär/P Eisbahnen Eisbecher Eisberg/PST Eisbeutel/NS Eisblumen Eisbombe/N Eisbrecher/NS Eiscreme Eisdecken Eisdiele/N Eisen/SW Eisenausfuhr Eisenbahn/P Eisenbahnabteil/EPS Eisenbahnanschluss/Tp Eisenbahnbau Eisenbahnbehörde Eisenbahnbonds Eisenbahnbrücken Eisenbahndirektion/P Eisenbahner/S Eisenbahnerlöhne Eisenbahnerstreik Eisenbahnfähre Eisenbahnfahrplan Eisenbahnfahrt Eisenbahngesellschaften Eisenbahngleis/EPT Eisenbahnkatastrophe Eisenbahnminister Eisenbahnnetz/ET Eisenbahnpersonal Eisenbahnräuber Eisenbahnstation/P Eisenbahnstrecke Eisenbahntarife Eisenbahnunglück/T Eisenbahnverbindung Eisenbahnverkehr Eisenbahnverwaltung Eisenbahnwagen/S Eisenbahnwaggon/S Eisenbearbeitung Eisenbeschlag/STp Eisenbeton Eisenblech Eisendraht Eiseneinfuhr Eisenerz/EPT Eisenerzlager Eisenerzproduktion/P Eisenerzvorkommen Eisenfresser Eisengeländer Eisengerümpel Eisengießerei Eisengitter/N Eisengittertore Eisenguss/Tp Eisenhändler/FNS Eisenhammer/S Eisenhandel Eisenhütte Eisenindustrie Eisenkabel Eisenkern Eisenklopfer Eisenkonstruktion Eisenleiter Eisenoxyd/EPS Eisenproduktion/P Eisenpumpen Eisenrohre Eisens Eisenschienen Eisenstange/N Eisenstapel Eisenstein Eisenträger Eisenverarbeitung Eisenwaren Eisenwarengeschäfte Eisenwarenhändler/NS Eisenwarenhandlung/P Eisenwarenmesse Eisenwerk/EPT Eisenzeit Eisgang Eishersteller Eishockey/S Eishockeymannschaft Eiskunstläufer/FNS Eiskunstlauf/STp Eisläufe/NR Eislauf/Sp Eismädchen Eismaschinen Eismeer Eismitte Eispulver Eisrevue Eisschnellläufer/FNS Eisschnelllaufen Eissport/S Eisstar/S Eistanz Eistanzpaar Eiswasser Eiswoche Eiswürfel/NS Eiszapfen Eiszeit/P Eiszeitformen Eitelkeit/P Eiter Eiweiß/EPT Eiweißfuttermitteln Eiweißkörper Eiweißkonzentrat Eiweißmolekül/E Eiweißproduktion/P Eiweißwerte Eizelle/N Ekels Eklat Eklipse/N Ekstase/N Ekzem/EPS Elaborat/EPST Elan/S Elastizität Elastizitätsmodule Elba Elbe Elbmündung Elbtunnel Elch/EPST Elchjagd Elefant/P Elefantengedächtnis/Qq Elefantenzähne Eleganz Elegie/N Elektrifizieren/JS Elektrik/R Elektriker/NS Elektrizität Elektrizitätsangebot/S Elektrizitätsgesellschaft/P Elektrizitätskraftwerke Elektrizitätswerk/EPS Elektroaktien Elektroartikel Elektroauto/S Elektrobereich Elektrobetrieb Elektrobranche Elektrode/N Elektrodynamik Elektrogerät/EPT Elektrogeräteindustrie Elektrogroßhandel Elektrogroßvertrieb Elektroheizung Elektroherd/EPST Elektrohydraulik Elektroingenieur/EPS Elektroinstallationsgeschäft Elektrokonzern Elektroküche Elektrolokomotive Elektrolyse Elektrolyt Elektrolytkupfer Elektromagnet/P Elektromagnetismus Elektromarkt/STp Elektromeister Elektromonteur Elektromotor/PS Elektron/PS Elektronenbahn/P Elektronenbewegung Elektronengas/EPT Elektronengehirn/S Elektronenkonfiguration/P Elektronenladung/P Elektronenmasse/N Elektronenmechanik Elektronenrechner/S Elektronenstrahl/PS Elektronenvolt Elektronik/PR Elektronikanordnung Elektronikbauteil Elektronikeingang Elektronikfertigung Elektronikfirma Elektronikgehäuse Elektronikherstellern Elektronikingenieur Elektronikkarten Elektronikmaße Elektronikplatine/N Elektronikseite Elektroschläge Elektroschock/S Elektroschweißen Elektrosteiger Elektrotechnik/R Elektrovolt Elektrowerkzeug Element/EPST Elementarladung/P Elementarschule/N Elementarteilchen/S Elementarunterricht/EPST Elends Elendsbaracken Elendsviertel/NS Eleonore/S Elfe/N Elfenbein/S Elfenbeinküste Elfenbeinturm Elfenkind Elfmeter Elfmeterball/Sp Elfmeterpfiff Elfmeterschießen Elftklässler/FNS Eli/S Elias Elimination Eliminierens Eliminierung/P Elisabeth Elite/N Eliteformation/P Elitegruppen Elitetruppen Elixier/EPS Eliza/S Elke/S Elko Ellbogen/S Ellbogenfreiheit/P Ellbogenstoß/Tp Elle/N Ellenbogen/S Ellipse/N Elsässer/FNS Elsass/T Elster/N Eltern Elternbeirat Elternbund Elternferien Elternhaus/Tp Elternkampf Elternkreis/EPT Elternpaar Elternrecht/S Elternschule Elternsprechtag/EP Elternteil/EPS Elternverband/ST Elternvereinigung Elternversammlung/P Elternvertretung/P Elternzimmer Emanuel/S Emanuela/S Emanzipation Emanzipierens Emanzipierung/P Embargo/S Embargopolitik Emblem/EPS Embolie/N Embryo/S Embryonalentwicklung Embryonen Emeritierens Emeritierung/P Emeritus Emigrant/P Emigrantenroman Emigrantenzeitung Emigration/P Emigrationsfrage Emil/S Emilia/S Eminenz/P Emirat/EPS Emission/P Emissionsergebnis/Qq Emissionskeulen Emissionspause Emissionsstatistik Emissionswert/EPST Emittent/P Emitter/S Emma/S Emmentaler Emoticon/S Emotion/P Emotionalität Empfänge/NR Empfänger/NS Empfängerfläche Empfängerland Empfängerleitung Empfängermodus Empfängerprogramm Empfängerstaaten Empfängerteil Empfänglichkeit Empfängnis/q Empfängnisverhütung Empfang/STp Empfangsantenne Empfangsarray/S Empfangsbereich/EPS Empfangsbereitschaft Empfangsbestätigung/P Empfangschef Empfangsdame/N Empfangsdaten Empfangsgerät/EPT Empfangsgruppe Empfangsimpedanz Empfangsknotenpunkt Empfangsköpfe/N Empfangskomitee/S Empfangskopf/S Empfangsland Empfangsleitung Empfangslisten Empfangsmodus Empfangspegel Empfangsprogramm Empfangspuffer Empfangsraum/STp Empfangsschalter/NS Empfangsschein/EPT Empfangsstation/P Empfangstag/EPS Empfangsteil Empfangsverweigerung Empfangsvorgang Empfangszimmer/NS Empfehlens Empfehlung/P Empfehlungsbrief Empfehlungskurse Empfehlungsliste Empfehlungsschreiben/S Empfindens Empfindlichkeit/P Empfindung/P Empfindungslosigkeit Empfindungsvermögen/S Emphysem/EPS Empirie Empörens Empörung/P Empore/N Emporkömmling/EPS Emsigkeit/P Emulation/P Emulator/PS Emulsion/P Endabnehmer Endabrechnung/P Endabschaltung Endanwender Endarbeit/P Endausbau Endausbaustufe/N Endbahnhof Endbenutzer Endbereich Enddaten Enddruck/S Endeffekt Endens Enderfolg Endergebnis/Qq Endes Endeschalter Endfunktionstest Endgehäuse Endgehalt Endgerät Endkämpfe Endkontrolle/N Endkunde/N Endlage/N Endlauf/Sp Endlichkeit Endlösung Endlosadressträger Endlosdruck Endlosfernsehserie Endlosformularsätze Endloshausse Endlosigkeit/P Endlosschleife/N Endmontage/N Endogamie Endomorphismen Endomorphismus Endoskopie Endphase/N Endprodukt/EPT Endpunkt/EPST Endrekursion/P Endrekursionseliminierung Endresultat/EPST Endrunde/N Endschalter/NS Endsilbe/N Endspiel/EPS Endspielgegner Endspielort/E Endspieltag Endspurt/EPST Endstadien Endstadium Endstand Endstufe/N Endsumme/N Endtest/S Endung/P Endverbraucher/NS Endverkaufspreise Endwert/EPS Endzahl/P Endzeit Endzeittraum/STp Endziel/EPS Endzustände/N Endzustand/ST Energie/N Energieagentur Energieausfall/Sp Energiebedarf Energiebereich Energiebilanz/P Energiedebatte Energieerhaltung Energieerzeuger Energieerzeugung Energieexperte Energiegruppe Energiehunger Energieinhalt Energiekonferenz Energiekosten Energiekreise Energiekrise/N Energielücken Energiemarkt/ST Energieminister Energieniveau/S Energiepreise Energieproblem/E Energiequelle/N Energiereserve Energiesektor Energiespektrum/S Energietechnologie/N Energieträger Energieumwandlung Energieverbrauch Energieversorgungsanlage/N Energiewandler/N Engagement/S Engel/MNS Engelhaar Engelsgeduld Engerling/EPS Engländer/FNS England/S Englandreisen Englischheit/P Englischkurse Englischlehrer Englischunterricht Engpass/Tp Engpassproblem/EPS Engstirnigkeit Enkel/FNS Enkelkind/RST Enklave/N Enquete/N Ensemble/S Ensembleleistung Ensemblespiel Ensemblestimmen Entäußern/JS Entartens Entartung/P Entbehrens Entbehrlichkeit Entbehrung/P Entbindens Entbindung/P Entbindungsabteilung Entbindungsgeld Entbindungsheim/EPST Entblößens Entblößung/P Entdeckens Entdecker/FNS Entdeckung/P Entdeckungsreise Ente/N Entebbe Enteignens Enteignung/P Enteignungsmaßnahmen Enteisungsanlage/N Entenbraten/S Enteneier Entenjagd Entenmutter Entente Enterich/S Entertaste Entfaltens Entfaltung/P Entfaltungsmöglichkeit/P Entfernens Entfernung/P Entfernungsberechnung Entfernungsbestimmung Entfernungsmesser/S Entfernungsmessung Entfesselungskünstler Entflechtens Entflechtung/P Entfremdens Entfremdung/P Entführens Entführer/FNS Entführung/P Entgegennahme Entgegnens Entgegnung/P Entgelt/EPST Entgleisens Entgleisung/P Enthaarungsmittel/NS Enthaltens Enthaltsamkeit Enthaltung/P Enthüllens Enthüller Enthüllung/P Enthusiasmus Enthusiast/P Entindustrialisierung Entkolonialisierung Entkoppelns Entkoppelung/P Entkopplung/P Entkräftens Entkräftung/P Entladebetrieb Entladens Entladeströme/N Entladestrom Entladezeit/P Entladung/P Entlassens Entlassung/P Entlassungsgesuch/EPT Entlassungspapiere Entlastens Entlastung/P Entlastungsangriff Entlastungsgrad Entlastungsstraße/N Entlastungszeuge/N Entleerens Entleerung/P Entlohnens Entlohnung/P Entlüftens Entlüftung/P Entmachtens Entmachtung/P Entmilitarisierung Entminungsspezialisten Entmündigens Entmündigung/P Entmutigens Entmutigung/P Entnahme Entnahmestelle/N Entnerven/JS Entpacker/NS Entpolitisierung Entprellung Entprellzeit Entrechtens Entrechtung/P Entrepreneur/S Entrichtens Entrichtung/P Entropie Entrückens Entrückung/P Entrüstens Entrüstung/P Entsagens Entsagung/P Entsalzungsanlagen Entschädigens Entschädigung/P Entschädigungsanspruch Entschädigungsleistung/P Entschädigungssummen Entschärfens Entschärfung/P Entscheid/JRST Entscheidbarkeit Entscheidens Entscheidungsbaum/STp Entscheidungsbefugnis/q Entscheidungsdruck/S Entscheidungsebene/N Entscheidungsfindung Entscheidungsfindungsprozess/EPT Entscheidungsfragen Entscheidungsgrundlage/N Entscheidungshilfe/N Entscheidungskampf Entscheidungskompetenz/P Entscheidungskriterien Entscheidungskriterium Entscheidungslauf/Sp Entscheidungsmodell Entscheidungsmodus Entscheidungsmuster/S Entscheidungsprozedur/P Entscheidungsprozess/EPT Entscheidungsrecht Entscheidungsregel/N Entscheidungssituation/P Entscheidungsspiel/EPS Entscheidungsspielraum/STp Entscheidungsstruktur Entscheidungsträger/N Entscheidungsverfahren/S Entscheidungsverhalten/S Entscheidungswege/N Entscheidungszentren Entschiedenheit Entschlackens Entschlackung/P Entschließens Entschließung/P Entschlossenheit Entschlüsselns Entschlüsselung/P Entschlüsslung/P Entschluss/Tp Entschlussfassung/P Entschlusskraft Entschlussschwankung Entschuldigens Entschuldigung/P Entschuldigungsgründe Entschuldigungsgrund/T Entsendens Entsendung/P Entsetzens Entseuchungsanstalt Entsorgens Entsorgung/P Entspannens Entspannung/P Entspannungsbemühung/P Entspannungsmöglichkeit/P Entspannungstendenzen Entspannungszone Entsprechens Entsprechung/P Entstehens Entstehung/P Entstehungsgeschichte/N Entstehungsursache/N Entstellens Entstellung/P Entstörbausteine Entstören/JS Enttäuschens Enttäuschung/P Enttarnens Enttarnung/P Entwässerns Entwässerung/P Entwässerungsanlage/N Entwaffnens Entwaffnung/P Entwarnen/JS Entweihens Entweihung/P Entwendens Entwendung/P Entwerfens Entwertens Entwertung/P Entwertungsmaschine/N Entwickelns Entwickelung/P Entwickler/NS Entwicklerlizenz Entwicklerversion/P Entwicklung/P Entwicklungsabteilung/P Entwicklungsanlage Entwicklungsanleihe Entwicklungsarbeit Entwicklungsauftrag/STp Entwicklungsaufwand Entwicklungsbank Entwicklungsbemühung/P Entwicklungsbereiches Entwicklungscomputer Entwicklungsdienst Entwicklungsentscheidung Entwicklungserfahrung Entwicklungsfirma Entwicklungsfonds Entwicklungsforschung Entwicklungsfortschritt Entwicklungsgebiet/P Entwicklungsgeschäft Entwicklungsgeschichte/N Entwicklungsgeschwindigkeit Entwicklungshardware Entwicklungshelfer/N Entwicklungshilfe/N Entwicklungshilfepolitik Entwicklungshilfsmittel Entwicklungsingenieur Entwicklungskommandos Entwicklungskosten Entwicklungskostenbeteiligung Entwicklungskurven Entwicklungsländer/N Entwicklungslaboratorium Entwicklungslabors Entwicklungsland/ST Entwicklungslehren Entwicklungsleiters Entwicklungslibrary/S Entwicklungslinie/N Entwicklungsmethode/N Entwicklungsmöglichkeit/P Entwicklungsmodell Entwicklungspaket Entwicklungsphase/N Entwicklungsplätze Entwicklungsplan Entwicklungsplaner Entwicklungsplanung Entwicklungsprobleme Entwicklungsprojekt/E Entwicklungsprozess/EPT Entwicklungsrechner Entwicklungsschritt/EPST Entwicklungsstaaten Entwicklungsstand/ST Entwicklungsstation Entwicklungsstrategie/N Entwicklungsstufe/N Entwicklungssystem/EPS Entwicklungstätigkeit Entwicklungstechnik/P Entwicklungstendenzen Entwicklungsumgebung/P Entwicklungsvorhaben/S Entwicklungswerkzeug/EPS Entwicklungswünsche/N Entwicklungszeit/P Entwicklungszentrum Entwicklungsziel/EPST Entwicklungszwecke/N Entwöhnens Entwöhnung/P Entwöhnungskur Entwürfe/N Entwurf/ST Entwurfsentscheidung/P Entwurfsfassung/P Entwurfsmethode/N Entwurfsprinzipien Entwurfsprozess/EPT Entwurzelns Entwurzelung/P Entwurzlung/P Entzauberns Entzauberung/P Entzerrens Entzerrung/P Entziehens Entziehung/P Entziehungskur/P Entzifferns Entzifferung/P Entzifferungsarbeit Entzückens Entzückung/P Entzündbarkeit Entzündens Entzündung/P Entzug/STp Entzweiens Entzweiung/P Enzian/S Enzmann/S Enzyklopädie/N Enzym/EPS Enzymbiotechnologie Epen Epidemie/N Epidemiologie Epigramm Epikur/S Epilepsie Epileptiker/FNS Epilog/EPS Epimorphismen Epimorphismus Episode/N Episodendrama Episodenpropagierung Epizentrum Epoche/N Epos Epoxiplättchen Epoxischeibe Epoxyd Epromnummer Epromversion/P Epson Equalizer/NS Equipe Erachtens Erarbeitens Erarbeitung/P Erasmus Eratosthenes Erbärmlichkeit Erbanlage/N Erbansprüchen Erbanspruch/T Erbauens Erbauer/NS Erbauung/P Erbbesitz Erbenaufgebot Erbenaufruf Erbens Erbes Erbfaktor/PS Erbfehler/NS Erbfeind/EPT Erbfeindschaft Erbfolge/N Erbfolgekrieg Erbgut/S Erbin Erbittern/JS Erbkrankheit/P Erblasser/FNS Erblindens Erblindung/P Erbmasse Erbmaterial Erbmerkmale Erbprinz Erbrechte/S Erbringens Erbringung/P Erbschäden Erbschaft/P Erbschaftssteuer/N Erbschein Erbschleicher/FNS Erbse/N Erbsensuppe/N Erbsteuern Erbstück/PS Erbsünde/N Erbteil/EPS Erbteilung Erbträger Erbverzicht Erdantenne/N Erdanziehung Erdatmosphäre Erdaushebung/P Erdball/S Erdbeben/S Erdbebenaktivität Erdbebengebiete Erdbebenkatastrophe Erdbebenwarte Erdbeere/N Erdbeerernte Erdbeschleunigung Erdbevölkerung Erdbewegung/P Erdbohrer Erddruck/S Erddruckautomatik Erddruckbetrieb Erddruckdosen Erddruckregelung Erddruckregler Erddrucksensoren Erddruckstabilisierung Erdeinsatz Erdenbürger/N Erdens Erdgas/T Erdgasaktien Erdgasausstoß/Tp Erdgaseinfuhren Erdgasgeschäft Erdgasgewinnung Erdgasleitung Erdgasreserven Erdgasspeicheranlagen Erdgastransport Erdgaswerte Erdgeschoss/EPT Erdgewächs/EPT Erdkampf Erdkugel Erdkunde Erdkundeunterricht Erdmagnetismus Erdmantel Erdmittelpunkt/T Erdnuss/Mp Erdnusskern Erdnussöl Erdöl Erdölaktien Erdölausschusses Erdölbergbau Erdölbohrung/P Erdöldestillation Erdölembargo/S Erdölfeld Erdölfirmen Erdölförderung Erdölgeschäft/S Erdölgesellschaften Erdölindustriellen Erdölkonzern/S Erdöllager Erdölleitung Erdöllieferung/P Erdölprodukte Erdölproduktion Erdölquelle Erdölsektor Erdölstadt Erdölverknappung Erdölvorkommen Erdölwerte/N Erdoberfläche Erdpotential/EPS Erdpotenzial/EPS Erdreich/S Erdrotation Erdrutsch/EPT Erdsatelliten Erdschluss/Tp Erdschlusssuche Erdstation/P Erdstoß/Tp Erdteil/EPS Erdteilkampf Erdumdrehung/P Erdumfang Erdumflüge/N Erdumkreisung/P Erdumlauf/Sp Erdumlaufbahn/P Erdung/P Erdungskabel Erdungsleitung/P Erdverbindung/P Erdvermessung Erdverwehung/P Erdwall/Sp Erdziele Ereignis/Qq Ereignisablauf/Sp Ereignisinformation/P Ereignislosigkeit Ereignisschleife/N Erektion/P Erektorbrücke Eremit/P Eremitage/N Eremitenorden Erfahrenheit Erfahrens Erfahrung/P Erfahrungsaustausch/T Erfahrungsbericht/EPS Erfahrungssache/N Erfahrungstatsache/N Erfahrungstausch Erfahrungswert/EPST Erfassens Erfassung/P Erfassungsgesellschaft Erfassungsknoten Erfassungsmethoden Erfassungsmodule Erfassungssystem/EPS Erfassungszeit Erfindens Erfinder/FNS Erfinderangaben Erfindergeist/T Erfindergeld Erfinderverordnung Erfindung/P Erfindungsgabe/N Erfindungsreichtum Erfolg/ST Erfolglosigkeit Erfolgsanteil/EPS Erfolgsaussicht/P Erfolgsautor/PS Erfolgsbeteiligung/P Erfolgsbilanz/P Erfolgsbücher/N Erfolgsbuch/ST Erfolgschance/N Erfolgseuphorie Erfolgsfirmen Erfolgsformel Erfolgsgeheimnis/Qq Erfolgshonorar Erfolgsjahre Erfolgsmeldung/P Erfolgsmöglichkeit/P Erfolgsmusical Erfolgsprovision/P Erfolgsquote/N Erfolgsrechnung/P Erfolgsschlager Erfolgsschriftsteller Erfolgsserie/N Erfolgstrainer Erfolgsvoraussetzung/P Erforderlichkeit Erfordernis/Qq Erforschens Erforscher/FNS Erforschung/P Erfragens Erfragung/P Erfrierens Erfrierung/P Erfrischens Erfrischung/P Erfrischungsraum/STp Erfrischungsstand Erfüllens Erfüllung/P Erfüllungsort/EPST Erfüllungspolitik Erfurt Ergänzens Ergänzung/P Ergänzungsabgabe/N Ergänzungsangebot Ergänzungseinheit/P Ergänzungsfunktion/P Ergänzungsgesetz Ergänzungspaket Ergänzungsprogramm Ergänzungsteil/EPS Ergänzungsvorschlag/STp Ergänzungswahlen Ergebenheit Ergebens Ergebnis/Qq Ergebnisbericht/EPST Ergebnisprotokoll/EPS Ergebnisverbesserung Ergebung/P Ergiebigkeit Ergonomie Ergreifens Ergreifung/P Ergriffenheit Ergründens Ergründung/P Erguss/Tp Erhältlichkeit/P Erhalt/JST Erhaltens Erhaltungsladebetrieb Erhaltungsmaßnahme/N Erhardt/S Erhebens Erheblichkeit Erhebung/P Erhebungstag Erhebungszeitraum/STp Erheiterns Erheiterung/P Erhellens Erhellung/P Erhöhens Erhöhung/P Erhörens Erhörung/P Erholens Erholung/P Erholungsaufenthalt Erholungsbewegung Erholungsgäste/N Erholungsgebiet/EPST Erholungsheim/EPST Erholungsmöglichkeit/P Erholungsort Erholungspark Erholungspause/N Erholungsphase/N Erholungsraum/STp Erholungstag/EPST Erholungsuchende/NR Erholungsurlaub/EPT Erholungszeit Erholungszentrum/S Erholzeit/P Erich/S Erika/S Erinnerns Erinnerung/P Erinnerungsbuch Erinnerungsstück/EPS Erinnerungsvermögen/S Erinnerungswert/EPST Eritrea Erkältens Erkältung/P Erkältungsgefahr Erkältungskrankheit Erkennbarkeit Erkennens Erkenntlichkeit Erkenntnis/q Erkenntnisgrundlage/N Erkenntnislehre Erkenntnisprivileg Erkenntnisquelle/N Erkenntnistheorie/N Erkenntnisvermögen/S Erkennung/P Erkennungsmarke/N Erkennungsmelodie Erkennungswort/EPST Erkennungszeichen/S Erker/NS Erkerfenster/NS Erklärens Erklärung/P Erklärungsansätze Erklärungsansatz/T Erklärungsmöglichkeit/P Erklärungsmuster/NS Erkrankens Erkrankung/P Erkrankungsgefahr Erkundens Erkundigens Erkundigung/P Erkundung/P Erkundungsflug/STp Erkundungsreise/N Erläuterns Erläuterung/P Erlahmens Erlahmung/P Erlangens Erlangung/P Erlass/JT Erlassens Erlaubnis/q Erle/N Erlebens Erlebnis/Qq Erledigens Erledigung/P Erleichterns Erleichterung/P Erlernbarkeit Erleuchtens Erleuchtung/P Erlkönig/EPS Erlös/JRT Erlöseinbußen Erlöser/NS Erlössteigerung/P Ermächtigens Ermächtigung/P Ermäßigens Ermäßigung/P Ermahnens Ermahnung/P Ermangeln/JS Ermattens Ermattung/P Ermessensentscheidung/P Ermessensfrage/N Ermittelns Ermittelung/P Ermittler/FNS Ermittlung/P Ermittlungsbefugnis/q Ermittlungsbehörde/N Ermittlungsergebnis/Qq Ermittlungshandlung/P Ermittlungsmaßnahme/N Ermittlungsmöglichkeit/P Ermittlungsrichter/S Ermittlungsverfahren/S Ermöglichens Ermöglichung/P Ermordens Ermordung/P Ermüdens Ermüdung/P Ermüdungserscheinung/P Ermunterns Ermunterung/P Ermutigens Ermutigung/P Ernährens Ernährer/NS Ernährung/P Ernährungsamt/ST Ernährungsfachleute/N Ernährungsfachmann Ernährungsfaktor/PS Ernährungslage Ernährungslehre/N Ernährungsminister/S Ernährungsministerium/S Ernährungsproblem/EPS Ernährungsreferent Ernährungsschwierigkeit/P Ernährungsstandard Ernährungsstörung Ernährungstherapie/N Ernährungsweisen Ernährungswirtschaft Ernährungswissenschaft Ernährungswissenschaftler/FNS Ernährungszustand/ST Ernennens Ernennung/P Ernennungsurkunde/N Erneuerns Erneuerung/P Erneuerungsrückstände Erneuerungsschein/PS Erniedrigens Erniedrigung/P Ernstfall/STp Ernsthaftigkeit Ernteaussichten Erntedankfest/ET Ernteergebnis/Qq Ernteerträge Ernteerwartung/P Erntejahr/ET Erntemaschine/N Ernteschäden Ernteschätzung Erntesegen Erntetechnik Erntewetter Erntezeit Ernüchterns Ernüchterung/P Eröffnens Eröffnung/P Eröffnungsabend Eröffnungsansprache/N Eröffnungsbilanz Eröffnungsfeier/N Eröffnungsgottesdienst Eröffnungskonzert Eröffnungskurs/EPT Eröffnungsphase/N Eröffnungsprogramm Eröffnungsreferat Eröffnungssitzung/P Eröffnungsspiel Eröffnungstermin Eröffnungszeremonie/N Erörterns Erörterung/P Eroberer/NS Eroberns Eroberung/P Eroberungsfeldzug/STp Eroberungskrieg/EPT Eroberungsrecht Eroberungszug/Sp Eros Erosion/P Erotik Erpressbarkeit Erpressens Erpresser/FNS Erpressung/P Erpressungsgeld Erpressungsversuch/EPST Erprobens Erprobung/P Erprobungsarbeit Erprobungsprogramm Erprobungsstelle/N Erquickens Erquickung/P Erregbarkeit Erregens Erreger/NS Erregertyp Erregung/P Erregungsspannung/P Erregungswert Erreichbarkeit/P Erreichens Erreichung/P Errettens Erretter/FNS Errettung/P Errichtens Errichtung/P Errichtungskommission/P Errorroutine/N Errungenschaft/P Ersatz/T Ersatzansprüche/N Ersatzanspruch/ST Ersatzbedarf/S Ersatzbeschaffung Ersatzdienst/EPT Ersatzflamme Ersatzgelände Ersatzgerät/EPS Ersatzinvestition/P Ersatzkanister Ersatzkarte/N Ersatzkasse Ersatzkomponente/N Ersatzleistung/P Ersatzlieferung/P Ersatzlinie/N Ersatzlösung Ersatzmänner Ersatzmann/ST Ersatzmaterialien Ersatzmittel/NS Ersatzmotor/PS Ersatzpläne/N Ersatzräder/N Ersatzrad/ST Ersatzraum/STp Ersatzrechner Ersatzreifen/S Ersatzschaltbild Ersatzschirm Ersatzsensor/P Ersatzsicherung Ersatzspeicherkarte/N Ersatzstoff Ersatzstück/EPS Ersatzteil/EPS Ersatzteilbeschaffung Ersatzteilbestellung Ersatzteilhaltung Ersatzteilkataloge Ersatzteilpreisliste Ersatztermin Ersatztorwart Ersatzwerke Erschaffens Erschaffer/FNS Erschaffung/P Erscheinens Erscheinung/P Erscheinungsform/P Erscheinungstag/EPS Erschießens Erschießung/P Erschießungsbefehl/E Erschlaffens Erschlaffung/P Erschließens Erschließung/P Erschöpfens Erschöpfung/P Erschöpfungszustand Erschrockenheit Erschütterns Erschütterung/P Erschwerens Erschwernis/q Erschwerung/P Ersetzbarkeit Ersetzens Ersetzung/P Ersetzungsregel/N Ersetzungssystem/EPS Ersparnis/q Ersparnisgründe/N Erstanwendung Erstarrens Erstarrung/P Erstattens Erstattung/P Erstaufführung Erstauflage/N Erstauftrag/STp Erstaunens Erstausgabe/N Erstbesitzer Erstbesteigung Erstbezug/ST Erstehungskosten Ersteigerns Ersteigerung/P Ersteingabe/N Erstellens Ersteller/FNS Erstellung/P Erstellungsaufwand Erstellungsdatum Erstellungskosten Erstempfehlung Erstflug Erstgeräte Ersthypotheken Erstickens Erstickung/P Erstickungsanfall/Sp Erstinbetriebnahme/N Erstinformation/P Erstklässler/FNS Erstlieferung Erstling/EPS Erstlingsfilm Erstlingswerk Erstmotivation Erstserie Erstürmens Erstürmung/P Erstversicherer Erstvorlage Erstzulassung Erteilens Erteilung/P Erträge/N Ertrages Ertrags Ertragsanteile Ertragsdifferenz Ertragsdruck Ertragsdurchschnitt Ertragsentwicklung Ertragsgruppen Ertragsgüter Ertragskraft Ertragskurve/N Ertragsposition/P Ertragsprämie Ertragsreduzierung Ertragsrückgang Ertragsschätzung Ertragsscheine Ertragssteigerung Ertragssteuer Ertragsteueraufwand Ertragsverbesserung/P Ertragsverhältnis/Qq Ertragsverlauf/Sp Ertragswert/P Ertragszinse Ertüchtigen/JS Eruption/P Erwägens Erwägung/P Erwähnens Erwähnung/P Erwärmens Erwärmung/P Erwachsenenbildung Erwachsenentaufe Erwartens Erwartung/P Erwartungsbereich/EPST Erwartungswert Erweckens Erweckung/P Erweisens Erweisung/P Erweiterbarkeit Erweiterns Erweiterung/P Erweiterungsbau/S Erweiterungseinheit/P Erweiterungskarte Erweiterungsmöglichkeit/P Erweiterungsmodul Erweiterungspaket Erweiterungspläne/N Erweiterungsprojekt Erweiterungssoftware Erweiterungsverfahren/S Erweiterungszone/N Erwerb/JRS Erwerbsfähigkeit Erwerbsgenossenschaft/P Erwerbsgut Erwerbsleben/S Erwerbsminderung Erwerbsquelle/N Erwerbssteuer Erwerbstätigkeit/P Erwiderns Erwiderung/P Erwin/S Erz/EPT Erzählens Erzähler/FNS Erzählung/P Erzbergbau Erzbischöfe Erzbischof Erzbistum Erzdiözese Erzeinfuhr/P Erzengel/NS Erzeugens Erzeugerbetriebe Erzeugergruppen Erzeugerländer Erzeugerpreis/E Erzeugerprogramm Erzeugnis/Qq Erzeugung/P Erzeugungsgrundlage Erzfeind/EFPST Erzfrachter Erzgebirge Erzgruben Erzherzog Erziehens Erzieher/FNS Erziehung/P Erziehungsanstalten Erziehungsarbeit Erziehungsheim Erziehungsmaßregeln Erziehungsmethode/N Erziehungsministerium/S Erziehungsmonopol Erziehungsprobleme Erziehungsprogramme Erziehungsrevolution/P Erziehungssystem Erziehungsverwahrung Erziehungswesen/S Erzielens Erzielung/P Erzkähne Erzladung/P Erzlager Erztransporte Erzvater Erzvorkommen Erzwingens Erzwingung/P Esc Escapesequenz/P Esche/NR Escher/S Escudo/S Esel/MNS Eselei Eselsbrücke/N Eselsohr Eskalation/P Eskapade/N Eskorte/N Eskudo/S Esoterik/R Esoteriker/FNS Espenlaub Esperanto Espresso/S Essay/S Essbesteck/S Essenmaschine Essensausgabe Essensbestellung/P Essensgeld Essensgewohnheit/P Essensmarke/N Essenszeit Essenszwang Essenz/P Essgabel Essgeschirr/EPS Essgewohnheit/P Essgier Essig/S Essigflasche Essiggurke Esslöffel/S Esso Esstisch/EPT Esswaren Esszimmer/N Estland Estrade/N Etablierens Etablierung/P Etablissement/S Etage/N Etagenebene/N Etagenwohnung/P Etappe/N Etappenplätze Etappensieg/EPS Etappenziel Etat/S Etaterhöhung/P Etatjahr Etatposten/S Etatrede Etatsumme Etatvoranschlag/STp Ethanol/S Ethernet Ethernetadapter Ethik/PR Ethnografie Ethnograph/P Ethnographie Ethnologe/N Ethologe/N Ethologie Ethos Etikett/EPS Etikettendrucker Etikettenschwindel Etikettierens Etikettierung/P Eton/S Etruskerreich Etüde/N Etui Eudämonie Euklid/S Eule/NR Eulenauge Eulenspiegel/N Eulenspiegelei/P Euler/S Eunuch/P Eupen Euphemismen Euphemismus Euphorie Euphrat Euratom Euro/S Eurobanken Eurobinnenmarkt/STp Eurobonds Eurocard Eurodollar/S Euroformat Eurokarte/N Eurokartenformat Eurokommunisten Euromarkt/STp Euronorm Europäer/FNS Europäerviertels Europa/S Europabeauftragte Europacup/S Europacupfinal/E Europacupsieg Europacupsieger Europacupspiele Europaexekutiven Europaformat Europafreundlichen Europahalle Europahilfe Europahotel Europakarte/N Europameister/FNS Europameisterschaftsspiel/EPS Europameistertitel Europaparlament/T Europapokal/S Europapokalsieger Europapokalspiel Europapolitik Europapolitiker Europaprogramm Europarat Europarecht/S Europareise Europarekord/E Europarekordlerin Europasprachklub Europatitelkampf Europaunion Europaverlag/EST Europawelle Europazone Europazug Europrogramme Euroscheck/S Eurotunnel Eurovision Eurowährung Eurozentren Eurozentrum Eurythmie Euter/NS Euthanasie Eva/S Evakuierens Evakuierung/P Evakuierungsbefehl/EPS Evaluation/P Evangeliar/S Evangelien Evangelist/P Evangelium/S Eventualfall/Sp Eventualität/P Everest Evergreens Evidenz Evolution Evolutionsstufe/N Evolutionstheorie/N Ewigkeit/P Exaktheit Examen/S Examensfeier/N Examina Exbotschafter Exbundeskanzler Exbundesligisten Exekution/P Exekutionskommando Exekutivbefugnis/q Exekutivgewalt Exekutivkomitee/S Exekutivorgan/EPS Exekutivrat Exekutor/P Exempel Exemplar/EPS Exfeldmarschall Exgauleiter Exgouverneur Exhumierens Exhumierung/P Exil/EPS Exilorganisation/P Exilregierung Existentialismus Existenz Existenzangst Existenzberechtigung Existenzerhaltung Existenzfähigkeit Existenzfrage/N Existenzgefährdung Existenzgrundlage/N Existenzialismus Existenzkämpfe/N Existenzkampf Existenzminimum/S Existenzquantifizierung/P Existenzquantor/PS Existenzrecht Existenzsicherung Existenzsorge/N Exitcode/S Exkaiser Exkanzler/S Exklusivität Exklusivrecht/E Exklusivvertrag/STp Exklusivvertrieb Exkönig Exkurs/EPT Exkursion/P Exminister/S Exmission/P Exorzist/P Exot/P Exotenvögel Expandierens Expansion/P Expansionsaktion/P Expansionsbestrebung/P Expansionsgelüste/N Expansionskurs/T Expansionslinse Expansionsphase/N Expansionspolitik Expansionsverfahren Expedition/P Expeditionsfahrt Expeditionsleiter Experiment/EPST Experimentierflug/STp Experimentierfreudigkeit Experte/N Expertenebene/N Expertengespräch/EPS Expertengruppe/N Expertenkomitee/S Expertenkommission/P Expertenschätzung/P Expertenspektrum Expertensystem/EPS Expertensystemtechnik/P Expertensystemwerkzeug/EPS Expertenurteil/EPS Expertise/N Exploration/P Explorationskredite Explorationswelle Explosion/P Explosionsgefahr Explosionskurs/EPT Explosionsschwade/N Explosionsstoff Explosivkörper Explosivkraft Expo/S Exponent/P Exponentialfaktor/PS Exponentialfunktion/P Exponentialgesetz/EPT Export/EPS Exportabsatz Exportabschluss/Tp Exportabteilung Exportanteil/EPS Exportartikel Exportaufgaben Exportauftrag/STp Exportautos Exportbeschränkung/P Exportbrauerei Exportbüro Exportbuchhandlung Exporterfahrung Exporterfolge Exporterlöse Exporterschwerung/P Exporteur/EPS Exportfähigkeit Exportfirma Exportförderung Exportforderung/P Exportfreigabe Exportgeschäfte Exportgesellschaft Exportgewinne Exporthandel Exportindustrien Exportkatastrophe Exportkontrollen Exportkorrespondenten Exportkredite Exportländer Exportlehre Exportlizenzen Exportmanager Exportmarkt/Tp Exportmesse Exportnation/P Exportorganisation Exportplanung Exportpraxis Exportpreise/S Exportprodukte Exportrestriktion/P Exportrückerstattung/P Exportrückgang Exportrückvergütung Exportschiffbau Exportschwierigkeit/P Exportsituation/P Exportspediteur Exportsteigerung Exportüberschuss/Tp Exportumsatz Exportunternehmen Exportverträge Exportvolumen Exportwaren Exportwirtschaft Exportzeitschrift Exportziffer Exposee/S Exposition/P Exposé/S Expräsident Expressgut Expressionismus Expressionist/P Extension/P Externat/EPST Extrakt/EPT Extrapolation/P Extraprämien Extras Extravaganz/P Extrawürste/N Extrazimmer Extremfall/Sp Extremismus Extremist/FP Extremistenführer Extremistengesetz Extremität/P Extremsignalen Extremvorstellung/P Extremwert Exzellenz/P Exzentrizität Exzess/EPT FAQ FAZ FBI FC FCKW FDGB FDJ FDP FFr FG FLN Fächer/S Fächerkombination/P Fädchen/S Fäden Fähigkeit/P Fähnchen/S Fähnlein/S Fähnrich/EPS Fähranlage Fähre/N Fährgeschäft Fährhaus/Tp Fährleute Fährlinie/N Fährschiff Fährschiffverbindung Fährte/GN Fäkalien Fällens Fälligkeit/G Fälligkeitsdatum Fälligkeitstag/EPS Fällung/P Fälschens Fälscher/FNS Fälschung/P Fälschungsmöglichkeit/P Fänge/N Färbemittel/S Färbens Färber/NS Färberei/P Färbkosten Färbung/P Fässchen/S Fässer/N Fäule Fäulnis/q Fäulnisbakterien Fäuste/MN Fa. Fa/N Fabel/N Fabelpferd Fabian/S Fabrik/P Fabrikanlagen Fabrikant/FP Fabrikarbeit/PR Fabrikarbeiter/FNS Fabrikat/EPS Fabrikation/P Fabrikationserfahrung/P Fabrikationsfehler/N Fabrikationsfläche Fabrikationsgebäude Fabrikationsgemeinschaft Fabrikationsnummer/N Fabrikationsprobleme Fabrikationsprozess/EPT Fabrikationsraum/STp Fabrikationsrechte Fabrikationsstätten Fabrikausrüstung/P Fabrikbau Fabrikbesitzer Fabrikeinrichtung/P Fabrikhalle Fabriklager/N Fabrikmakler Fabrikneubau Fabrikobjekt Fabrikschiffe Fabriktoren Fabrikvertretung Facette/N Facettenreichtum/S Fachärzte/FN Fachabteilung/P Facharbeiter/FNS Facharbeiterprüfung Facharzt/T Facharztausbildung Fachausbildung/P Fachausdrücke/N Fachausdruck/S Fachausschuss/Tp Fachbegriff/EPS Fachbeitrag/Sp Fachberater/FNS Fachberatung/P Fachbereich Fachbereichleiter/NS Fachbericht/EPST Fachbetrieb/EPST Fachblatt/T Fachbücher/N Fachbuch/S Fachbuchhandlung/P Fachbuchverlag/S Fachdozent/P Fachdrogerie/N Facherörterung/P Fachgebiet/EPST Fachgemeinschaft Fachgeschäft/ET Fachgespräch/EPS Fachgroßhandlung Fachgruppe/N Fachgruppenmitglied/R Fachgruppentreffen/S Fachhandel Fachhistoriker Fachhochschule/N Fachidiot Fachingenieur Fachinteressent/P Fachkenntnis/q Fachklinik Fachkollege/N Fachkommission/P Fachkompetenz/P Fachkräfte/N Fachkraft Fachkreis/EPT Fachkurs/EPT Fachlehrer Fachlehrerausbildung Fachleute/N Fachlexikon Fachliteratur Fachmänner/N Fachmagazin/S Fachmann/S Fachmarkt/STp Fachmesse/N Fachminister Fachministerien Fachorgan/EPS Fachpersonal/S Fachphilosophen Fachpresse Fachpublikum Fachqualifikation Fachreise Fachrichtung/P Fachring Fachs Fachschaft/P Fachschüler Fachschulabschluss/Tp Fachschulbesuche Fachschulbildung Fachschuldirektor Fachschulingenieur Fachseminar Fachsprache/N Fachstelle/N Fachstellengesetz Fachtagung/P Fachteil/EPS Fachübersetzen Fachunterricht/S Fachverbände/N Fachverband/T Fachvereinigung Fachverkäufer Fachverlag/EST Fachvortrag/STp Fachwelt/P Fachwerk/S Fachwerkbauten Fachwerkhaus/Tp Fachwissen/S Fachwissenschaftler/NS Fachwörter/N Fachwörterbücher Fachwoche Fachwort/EST Fachzeitschrift/P Fachzeitung/P Fachzweige/N Fackel Fackelschein/PS Fackelspalier Fackelträger/FNS Fadenscheinigkeit Fahndens Fahnder/NS Fahndung/P Fahndungsbeamte Fahndungsbuch Fahndungsdienst Fahndungsstelle Fahne/N Fahneneid Fahnenfabrik Fahnenflucht Fahnenjunker Fahnenmasten Fahnenschmuck Fahrauftrag/STp Fahrbahn/P Fahrbahnseite Fahrbericht Fahrbewegung/P Fahreigenschaften Fahrenheit Fahrer/FNS Fahrergehäuse Fahrerhaus/Tp Fahrerkabinen Fahrerleitstand Fahrersitz Fahrerstand Fahrertür Fahrgäste/N Fahrgast/T Fahrgeld/RT Fahrgelderstattung Fahrgelegenheit/P Fahrgemeinschaft/P Fahrgeschwindigkeit/P Fahrgestell/EPS Fahrkarte/N Fahrkartenausgaben Fahrkartenautomat/P Fahrkartenschalter/NS Fahrkilometer Fahrkomfort Fahrlässigkeit/P Fahrlehrer/NS Fahrleitzentrale/N Fahrminuten Fahrpisten Fahrpläne Fahrplan/S Fahrplankonferenz Fahrpreis/ET Fahrpreisermäßigung/P Fahrprüfung/P Fahrräder/N Fahrrad/T Fahrradfabrik Fahrradfahren Fahrradlampe Fahrradnarr Fahrradreifen Fahrrinne/N Fahrschein/PS Fahrscheinsorten Fahrschüler/FNS Fahrschulen Fahrschullehrer Fahrsport Fahrstrecke Fahrstühlen Fahrstuhl/S Fahrstunden Fahrtablauf/Sp Fahrtanlass/Tp Fahrtantritt Fahrtaufwand Fahrtbeginn Fahrtbericht Fahrtechniken Fahrten Fahrtenboot Fahrtenbücher/N Fahrtenbuch/ST Fahrtenlieder Fahrtenschreiber/S Fahrtest/S Fahrtfrequenz Fahrtgebiet Fahrtgelegenheit Fahrtgeschwindigkeit Fahrtkosten Fahrtmöglichkeit/P Fahrtrichtung/P Fahrtroute/N Fahrtteilnehmer Fahrttermin Fahrtverlauf/Sp Fahrtwind Fahrtzeit/P Fahrtziel Fahrtzweck Fahrunterbrechung/P Fahrverbot/S Fahrvergnügen Fahrvorschrift Fahrwasser/NS Fahrweg/EPST Fahrweise Fahrwerk/EPST Fahrwerkbewegung Fahrwerkgetriebe Fahrwerksansteuerung Fahrzeit/P Fahrzeitverlängerung Fahrzeug/EPST Fahrzeugaktien Fahrzeugbau/RS Fahrzeugfederung Fahrzeugflotten Fahrzeugführer Fahrzeughalter/FNS Fahrzeughaltung Fahrzeugmarkt/STp Fahrzeugpapiere Fahrzeugpark Fahrzeugschlange Fahrzeugverkehr Fahrzeugwerk Fahrzeugzahl Fahrziel Faible Fairness Fakt/PST Faktenanalyse/N Faktensammlung/P Faktor/PS Faktum Fakturierens Fakturierung/P Fakultät/P Fakultätsfunktion Falke/N Falkenjagd Falklandinsel Falklandkrieg/T Fall Fallbeil Fallbeispiel/EPS Fallensteller/NS Falles Fallgeschwindigkeit/P Fallgesetz Fallobst/T Fallout Fallschirm/EPS Fallschirmabsprünge/N Fallschirmabsprungs Fallschirmjägerbrigade Fallschirmjägereinsatz/T Fallschirmjägergeneral Fallschirmspringer/NS Fallschirmtruppe/N Fallstrick/EPT Fallstudie/N Falltür/EP Fallunterscheidung/P Fallwind/EPST Falschaussage/N Falschgeld/T Falschgelddruckerei Falschgeldhersteller Falschgeldschaden Falschgeldsuche Falschheit/P Falschmeldung/P Falschmünzer Falschmünzerbande Falschmünzerei Falschpolung Falschspieler/N Falsifikation/P Faltblätter Faltblatt Faltboot Faltdach Faltenröcke/N Faltenrock Faltens Faltenwände/N Falter/N Faltkisten Faltschachteln Faltung/P Familie/N Familienähnlichkeit/P Familienangehörige/N Familienangelegenheit/P Familienanschluss/Tp Familienanzeigen Familienbedürfnis/Qq Familienberatung Familienbetrieb Familienbeziehung/P Familiencafe Familiendrama Familieneinkommen/S Familienermäßigung Familienfahrten Familienfirma Familienfoto Familienfußball Familiengemälde Familiengerede Familiengeschäft Familiengespräch Familienglück/T Familiengründung Familienhaus/Tp Familienhaushalt Familienidyll Familienkongress/EPT Familienkreis/EPT Familienleben/S Familienminister/FNS Familienmitglied Familiennachrichten Familienname/N Familiennamen/S Familienpackung Familienpension Familienpflege Familienplanung/P Familienpolitik Familienprobleme Familienrats Familienrecht Familienrummel Familienschmuck Familiensendung/P Familiensinn Familienstand/ST Familientest Familientragödie Familientraktat Familienumstände Familienunterkunft Familienunternehmen Familienväter/N Familienvater/S Familienverband Familienverhältnis/Qq Familienvermögen Familienwochenhilfe Familienzusammenführung Familienzuschuss/Tp Familienzuwachs/T Fan/S Fanatiker/NS Fanatismus Fanfare/N Fanfarenstoß/Tp Fanfarenzug/STp Fang/S Fangarm/EPS Fangflotte Fanggebiet Fanggründe Fangmengen Fangmöglichkeit/P Fango Fangopackung/P Fangquoten Fangtechnik/P Fantasie/N Fantasieprojekte Fantast/P Faraday/S Farbaufnahme/N Farbauftrag/STp Farbbänder/N Farbbalken Farbband/ST Farbbandabdeckung Farbbandaufnahme Farbbandeinlegen Farbbandkassette/N Farbbandrollen Farbbandspule Farbbandtransport Farbbandwechsel Farbbildschirm/EPS Farbbildwerk Farbblindheit Farbdia/S Farbdisplay/S Farbdrucker/NS Farbe/N Farbeier Farbenfabrik Farbenfreudigkeit Farbenindustrie Farbenkombinationsgabe Farbenlehre/N Farbennachfolger Farbenpracht Farbenproduktion/P Farbensinn Farbenspiel/EPS Farbentiefe Farbenunternehmen Farbenzusammenstellung/P Farbexplosion/P Farbfernsehen/S Farbfernseher Farbfernsehgerät/EPST Farbfernsehspiel Farbfilm/EPS Farbfleck/EPS Farbfontänen Farbforschung Farbfoto/S Farbfotografie/N Farbgebung/P Farbgefühl Farbhinweis/EPT Farbigkeit Farbillustration/P Farbkissen/S Farbkleckse/N Farbkomposition/P Farbkontrast Farbkopierer Farbmarkierung/P Farbmonitor/EPS Farbphoto/S Farbphotographie/N Farbprospekt Farbreport Farbreportage Farbschlieren Farbserie Farbskala Farbspritzen Farbstift/EPT Farbstoff/EPT Farbtafel/N Farbtiefe/N Farbtöne/N Farbton/S Farbtupfer/NS Farbumkehr Farbverfälschung/P Farm/PR Farmer/NS Farmerfamilien Farmergenossenschaft Farmland Farn/EPST Farngebüsch Farnkraut Fasan/EPS Fasanenhähne Fasching Faschingsaufgabe Faschingsball/Sp Faschingsgäste Faschingshochburgen Faschingssaison Faschingsveranstaltung Faschingszeit Faschismus Faschist/FP Faschistenmarsch Faselei/P Faser/N Faserholz Faserzeug Fass/JT Fassade/N Fassadengeschäft Fassadenverkleidung Fassbier Fassens Fassette/N Fassettenreichtum/S Fasshälfte Fassung/P Fassungsgabe/N Fassungskraft Fassungslosigkeit Fassungsvermögen/S Fastensynode Fastenzeit/P Fastnacht Fastnachtsbeichte Fastnachtsdekoration Fastnulltarif Faszination/P Fata Fatalismus Fatalität Fatima/S Fatum/S Faulenzer/FNS Faulenzerei/P Faulheit Faulpelz/EPT Faultier/EPS Faun/EPS Fauna Faust Fausthandschuh/EPT Faustkämpfe/N Faustkampf/ST Faustkeil Faustpfänder/N Faustpfand/T Faustrecht/EPST Faustregel/N Faustschlag/STp Fauteuil/S Fauxpas Favorit/FP Fax Faxanschluss/Tp Faxenmacher/N Fazit/EPS Feature/S Feb Feb. Februar/S Februarabend Februarergebnis/Qq Februarhälfte Februarrevolution Februarwahlen Fechter/NS Fechtkunst Fechtlanze Fechtmeister/S Fechtmeisterschaften Fechtschule Fechtwettkämpfe Feder/J Federball/Sp Federballspiel/S Federbett/T Federboa Federbusch Federdorne Federdruckstücke Federführen/JS Federgewicht/EPST Federgewichtskampf Federhalter/NS Federhütchen Federkästen Federkasten Federkiel/EPS Federkraft Federleiste Federlesens Federstärken Federstifte/N Federstrich/EPS Federvieh/S Federwaage/N Federzeichnung/P Federzug/STp Fedora Fee/N Feedback Fegefeuer Fehde/N Fehdehandschuh/EPT Fehlanpassung/P Fehlanzeige/N Fehlbarkeit Fehlbedienung Fehlbehandlung/P Fehlbestände/N Fehlbestand Fehlbetrag/STp Fehlbeurteilung/P Fehlbildung/P Fehldiagnose/N Fehldrucken Fehleinschätzung/P Fehlens Fehlentscheid/J Fehlentwicklung/P Fehler/NS Fehlerabschätzung Fehleranalyse/N Fehlerausgang/S Fehlerbedingung Fehlerbehandlung Fehlerbehandlungsroutine/N Fehlerbehebung Fehlerbericht/EPS Fehlerbeschreibung/P Fehlerbeseitigung Fehlerbild Fehlerbit/S Fehlerdiagnose/N Fehlereinengung Fehlereingrenzung Fehlerfall/S Fehlerfortpflanzung Fehlerkorrektur/P Fehlerliste/N Fehlermaske Fehlermeldung/P Fehlermerkmal Fehlermitteilung/P Fehlermöglichkeit/P Fehlermodell/EPS Fehlernummer Fehlerpunkt/EPST Fehlerquelle/N Fehlerquote/N Fehlerrate/N Fehlerrisiken Fehlerrisiko Fehlerroutine Fehlersignal Fehlerstatistik Fehlerstatus Fehlersuche Fehlersuchprogramm Fehlertyp Fehlerübersicht/P Fehlerüberwachung Fehlerursache/N Fehlervariable/N Fehlerwirkung Fehlerzustände/N Fehlerzustand/S Fehlfunktion/P Fehlgeburt/P Fehlgriff/EPS Fehlhandlung/P Fehlinformation/P Fehlinterpretation/P Fehlkalkulation/P Fehlkonstruktion/P Fehlmaß/EPT Fehlmenge/N Fehlmessung/P Fehlpass/Tp Fehlplanung/P Fehlpunkten Fehlschlag/STp Fehlschluss/Tp Fehlschuss/Tp Fehlsignale Fehlspekulation/P Fehlstart/EPST Fehltritt/S Fehlurteil/EPS Fehlverhalten/S Fehlversuch/EPS Fehlweg Fehlzündung/P Feier Feierabend/EP Feierabendverkehr/S Feierlichkeit/P Feiertag/EPST Feiertagsgesetz Feiertagstarif Feiertagsunterbrechung Feiertagszeit Feigenbaum/Tp Feigenblätter/N Feigenblatt/T Feigheit/P Feigling/EPS Feinanpassung/P Feinbäckerei/P Feinblech/EPS Feinblechpackung/P Feinblechwalzwerk/ST Feind/EFPT Feindberührung Feindbild/RST Feindlichkeit/P Feindpropaganda Feindruck Feindrundfunk Feindschaft/P Feindseligkeit/P Feineinstellung/P Feinfühligkeit Feingefühl/EPS Feingliedrigkeit Feingold Feinheit/P Feinkost Feinkostfabrik Feinmechanik/P Feinmechaniker/S Feinpapier Feinpapierfabrik Feinschmecker/NS Feinsicherung Feinspinnerei Feinsteuerung Feinstruktur/P Feinwaschprogramm Feinwerktechnik Feld/ERST Feldarbeit/P Feldarchäologe Feldbett/PST Felddienst Feldfrüchte/N Feldfrucht Feldgröße/N Feldherr/NP Feldkirchen Feldküche/N Feldlager/NS Feldmäuse/N Feldmarschall/S Feldmaus Feldmesser/NS Feldnummer Feldplatten Feldrechner Feldschlösschen Feldspiel/R Feldstecher/NS Feldtelefon Feldüberlegenheit Feldwebel/NS Feldweg/EPT Feldzug/STp Felge/N Felix Fell/EPS Fellatio Fellausfall Fellhändler/FNS Fellstiefel Felsblöcke Felsblock/T Felsbrocken Felsen/SW Felsenerhebung Felsenkirche Felsenlandschaften Felsenschluchten Felsentempel Felsgebiet Felshügel Felsklippe Felsmalereien Felsplateau Felsschlucht Felsspalten Felsstück Felswände/N Felswand Feminismus Feministin/F Fenchel Fenchelsträucher/N Fenster/MNS Fensterbänke/N Fensterbank Fensterbrett/RST Fenstereinfassung/P Fensterflügel/NS Fenstergläser/N Fensterglas/T Fenstergucker Fensterkreuz Fensterläden Fensterladen/S Fensterleder/N Fensterplätze/N Fensterplatz/T Fensterrahmen Fensterrose/N Fensterscheibe/N Fenstersims/ET Fenstersturz Fenstersystem/EPS Fensterwand Ferien Ferienaktion/P Ferienaufenthalte Ferienbeginn Feriendomizil Feriendorf Ferienerinnerung Ferienfahrt Ferienflugreisen Ferienführer Feriengast Feriengebiete Feriengegend Ferienhaus/Tp Ferienhauserwerb Ferienhinweise Ferienidyll Ferieninseln Ferienkataloge Ferienkolonie/N Ferienkursus Ferienmonat Ferienmüdigkeit Ferienort/E Ferienparadies/EPT Ferienpark/S Ferienplätze/N Ferienprojekte Ferienreise/N Ferienreisenden Ferienreisender Ferienreiseplan Ferienstadt Ferienstrafkammer Ferientag/E Ferienvergnügen Ferienverkehr Ferienvorschläge Ferienwelt Ferienwochen Ferienwohnung Ferienzeit/P Ferienziele Ferkel/NS Fermat/S Fermi/S Fernämter/N Fernamt/ST Fernando/S Fernanzeige Fernbedienen/JS Fernbedienstation/P Fernbild/RST Ferndiagnose/N Ferndrucker Fernerkennung Fernfahrer/FNS Fernfahrplan Ferngas/T Ferngasleitung Ferngespräch/EPS Ferngläser Fernglas/T Fernheiznetz/T Fernheizung/P Fernheizwerke Fernkommunikation Fernkurs/EPT Fernkursus Fernladbarkeit Fernladen Fernlastfahrer Fernlastfahrerhotel Fernlastzug/STp Fernlehrgang Fernlenkens Fernlenkung/P Fernlicht/R Fernmeldebataillon/S Fernmeldebereich Fernmeldedienste Fernmeldegesetz Fernmeldekabeltechnik Fernmeldepersonal Fernmeldetechnik Fernmeldeturm Fernmeldeverwaltung/P Fernmeldewesen/S Fernost Fernostabteilung Fernostverkehr Fernraketen Fernrohr/EPS Fernschreibdienst Fernschreiben/S Fernschreiber/NS Fernschreibgebühren Fernschreibstation/P Fernsehagenten Fernsehakademie Fernsehansager/FNS Fernsehanstalt/P Fernsehantenne Fernsehapparat/EPT Fernsehaufnahmen Fernsehauftritte/N Fernsehautor Fernsehbeauftragte Fernsehbeteiligung Fernsehbild/RT Fernsehdebatte Fernsehdirektor/PS Fernsehdiskussion/P Fernsehens Fernseher/NS Fernseherklärung Fernsehfilm/PS Fernsehfunk Fernsehgaudi Fernsehgebühren Fernsehgenehmigung/P Fernsehgerät/EPST Fernsehgericht Fernsehgesellschaft/P Fernsehgroßhandlung Fernsehhandel Fernsehhonorare Fernsehinterview Fernsehkamera/S Fernsehkassette/N Fernsehkomödie Fernsehkritik/P Fernsehländern Fernsehlotterie/N Fernsehmacher Fernsehpause Fernsehprogramm/EPS Fernsehrat/S Fernsehregisseure Fernsehreporter Fernsehsatellit/P Fernsehschauspieler/FNS Fernsehschirm/EPS Fernsehseite Fernsehsektor Fernsehsender/S Fernsehsendung/P Fernsehserie/N Fernsehspiel/EPS Fernsehsprecher Fernsehstar/S Fernsehstation/P Fernsehsystem/S Fernsehteam/S Fernsehteilnehmer Fernsehtest Fernsehtheater Fernsehtipp/S Fernsehtürme Fernsehturm/S Fernsehübertragung/P Fernsehvorführung/P Fernsehwesen/S Fernsehwirt Fernsehzuschauer/N Fernsicht Fernsprechämtern Fernsprechamt/T Fernsprechanschluss/Tp Fernsprechapparat/EPST Fernsprechautomat/P Fernsprechbereich Fernsprechbücher Fernsprechdichte Fernsprechdienst Fernsprecheinrichtung/P Fernsprechgebühren Fernsprechnetz Fernsprechtechnik Fernsprechverbindung Fernsprechverkehr Fernsprechzelle Fernsteuerkommando Fernsteuern/JS Fernstraße/N Fernstudenten Fernstudien Fernstudium Fernübertragung/P Fernumzüge Fernuniversität/P Fernunterricht/S Fernverarbeitung Fernverkehr/S Fernwaffe/N Fernwarten/JS Fernweh Fernziel Fernzünden/JS Fernzug/STp Ferrara Ferrari/S Ferromagnetismus Ferse/N Fersengegend Fersengeld/RST Fertigbau Fertigbauweise Fertigens Fertigerzeugnis/Qq Fertigfabrikat/EPST Fertighaus/Tp Fertigkeit/P Fertigkleidung Fertigmeldung Fertigprodukte Fertigprogramme Fertigschneiden Fertigstellen/JS Fertigtermin Fertigung/P Fertigungsablauf/Sp Fertigungsanlagen Fertigungsanlauf/Sp Fertigungsaufträge Fertigungsbau Fertigungsbereich/E Fertigungsbetrieb/E Fertigungschargen Fertigungseinrichtung/P Fertigungsfläche Fertigungsfragen Fertigungsgarantie Fertigungsindustrie Fertigungsingenieur Fertigungskapazität Fertigungskosten Fertigungsmengen Fertigungsmethoden Fertigungsprogramm Fertigungsprozess/EPT Fertigungsqualität Fertigungsschritte Fertigungsspezialisten Fertigungsstätten Fertigungssteuerung Fertigungsstraße/N Fertigungstechnik/P Fertigungstoleranzen Fertigungsunterlagen Fertigungsverfahren Fertigungswerkzeug Fertigungszeit/P Fertigungszweig/EPS Fertigwaren Fertigwarenbestände Fesselns Fesselung/P Fesslung/P Festakt/EPT Festansprache/N Festartikel Festauftrag/STp Festausschuss/Tp Festbestellung/P Festeinstellung Festempfang Festessen/S Festgelage/N Festgeld Festgeldanlage/N Festgeldkonto Festgeldsätze Festgeschenk Festgottesdienste Festhalle/N Festigens Festigkeit Festigung/P Festival/S Festivalprogramm Festivaltagen Festkleid/R Festkörper/NS Festkörperphysik/R Festländer/N Festland Festlandscholle Festlandseite Festlandsluft Festlegens Festlegung/P Festlichkeit/P Festmahl/EPS Festnahme/N Festplatte/N Festplattenpartition/P Festplattenplatz/T Festplattenspeicher/S Festplatz Festpreis/EPT Festpreisangebot Festpreisaufträge Festpreisverträgen Festprogramm Festrede Festsäle/N Festsaal Festschmaus Festschreibung Festschrift/P Festsetzens Festsetzung/P Festspeicher/S Festspiel/EPS Festspielbeitrag/STp Festspielgesellschaft Festspielhaus/Tp Festspielort Festspielprogramme Festspielpublikum Feststellbarkeit Feststellbremse Feststellens Feststellschraube Feststellung/P Feststellungsklage Feststoffrakete Festtag/EPT Festteilnehmer Festung/P Festungsgürtel Festungsstadt Festungsturm Festveranstaltung Festverzinsung Festvorstellung Festvortrag/STp Festwiese Festzeit Festzins/P Festzug/STp Fetisch Fetischglaube Fettansatz Fettaugen Fettbäuche/N Fettbauch/ST Fettdrücke/N Fettdruck/ST Fettfleck/EPST Fettflöckchen Fettgehalt/EPS Fettmasse Fettnäpfchen Fettnahrung Fettschrift Fettsucht Fettverbrauch Fetzen/S Feuchtigkeit Feuchtigkeitsgehalt/PST Feuchtigkeitsmesser/S Feuchtigkeitsschutz/T Feuchtigkeitsunempfindlichkeit Feuchtwangen Feuchtwiesen Feudalherren Feudalherrschaft Feudalismus Feudalstaat Feudalsystem Feuer/JMS Feueralarm/EPS Feuerbestattung/P Feuerbiene Feuerbusch Feuereifer Feuerflecken Feuergarben Feuerglocke Feuergürtel Feuerleiter/N Feuerlöscher/N Feuermelder/S Feuerpause Feuerpolice Feuerprobe/N Feuersbrünste Feuersbrunst Feuerschäden Feuerschaden Feuersgefahr/P Feuersglut Feuerstätte/N Feuerstein/EPS Feuerstelle/N Feuertaufe/N Feuerteufel Feuerversicherung Feuerversicherungsgesellschaft Feuervorhang/Sp Feuerwache Feuerwaffen Feuerwasser Feuerwehr Feuerwehrmänner/N Feuerwehrmann/ST Feuerwerk/EPRS Feuerwerkskörper/S Feuerzange/N Feuerzeichen/S Feuerzeug/PS Feuilleton/S Fez Fiasko/S Fiat Fibel/N Fiber Fibrille/N Fibu Fichte/N Fichtenhölzer/N Fichtenholz/T Fichtennadel/N Fidibus Fieber/S Fieberanfall/Sp Fieberhitze Fieberkurven Fiebermittel/N Fieberschauer/N Fiebertabelle/N Fieberthermometer/S Fiebertraum/STp Fieberwahn Fiesling/EPS Figur/P Fiktion/P File/S Filename/N Filepointer Fileserver/NS Filesystem/EPS Filesystemtyp/S Filet/SW Filetbraten/S Filialchef Filiale/N Filibuster Film/MST Filmarchiv Filmatelier/S Filmaufnahmen Filmbeiträge Filmbericht/S Filmbesucher Filmemacher Filmfestspiele/N Filmgeschichte Filmgesellschaften Filmhersteller Filmindustrie Filmkamera/S Filmklub Filmkosten Filmkritiker/FNS Filmländer Filmlexikon Filmliebhaber Filmliebling Filmmagazin/EPS Filmmaterial Filmmusik Filmprogramm Filmrechte Filmregisseur/EPS Filmreportage/N Filmrollen Filmsatz/T Filmschauspieler/FNS Filmspule/N Filmstar/PS Filmstudio/S Filmszene Filmverleih/EPS Filmvorschau/P Filmvorstellung/P Filter/JS Filteralgorithmen Filterangaben Filterdaten Filterelement Filterns Filterprogramm Filtersystem Filtertrafo Filterzigarette/N Filz/T Filzhüte/N Filzhut/T Filzstift/P Fimmel Finalspiel Finanz/P Finanzämter/N Finanzabteilung Finanzakrobaten Finanzakrobatik Finanzamt/ST Finanzamtsbeauftragten Finanzausschuss/Tp Finanzbeamte/N Finanzbedingung/P Finanzbehörde/N Finanzbeiträge/N Finanzberatung Finanzbereich Finanzbeschluss/Tp Finanzblatt Finanzbuchhaltung Finanzchef Finanzdirektion/P Finanzdisposition/P Finanzexperten Finanzforschung Finanzführung Finanzgenie/S Finanzgericht Finanzgeschichte Finanzgesellschaft Finanzgewalt Finanzhai Finanzhaus/Tp Finanzhilfe/N Finanzier/JS Finanzierens Finanzierungsaufgaben Finanzierungsbeihilfe Finanzierungsberatern Finanzierungsbestätigung Finanzierungsdienst Finanzierungsfrage Finanzierungsgeschäft Finanzierungsgesellschaft Finanzierungshilfe Finanzierungsinstitute/N Finanzierungsklausel Finanzierungslücke/N Finanzierungsmittel Finanzierungsmöglichkeit/P Finanzierungsobjekte Finanzierungsplan Finanzierungsprobleme Finanzierungsquelle Finanzierungssystem/E Finanzierungstricks Finanzierungsunternehmen Finanzierungswelt Finanzinstitute Finanzinstitution/P Finanzjahr/EPT Finanzkapitalismus Finanzkatastrophe/N Finanzkommission Finanzkonferenzen Finanzkontrollbehörde Finanzkrach Finanzkraft Finanzkreise/N Finanzlage Finanzlast Finanzlawine Finanzleichen Finanzlücke/N Finanzluftblase Finanzmänner/N Finanzmacht Finanzmanager Finanzmann/ST Finanzmarketing Finanzmarkt/Tp Finanzmasse Finanzminister/S Finanzministerien Finanzministerium/S Finanzmisere Finanzmittel Finanzplätzen Finanzplanung Finanzplatz/T Finanzpolitiker Finanzpolizei Finanzpräsident Finanzproblemen Finanzrahmen Finanzrat Finanzressort/S Finanzschulden Finanzsituation/P Finanzskandal Finanzspezialist Finanzspritzen Finanzströme Finanzsystem Finanzvereinbarung Finanzverhandlung/P Finanzverpflichtung/P Finanzvertrag/STp Finanzverwaltung Finanzvorlagen Finanzwesen/S Finanzwirtschaft Finanzzeitschriften Finanzzentrum Findelhaus/Tp Findelkind/T Findelkindern Findens Finder/FNS Finderlohn/S Findigkeit/P Findling/EPS Findung/P Finesse/N Finger/NS Fingerabdrücke Fingerabdruck/S Fingerfertigkeit Fingergespräch Fingerhüte/N Fingerhut/T Fingerkuppen Fingerling/S Fingermaske Fingernägel/N Fingernagel/S Fingerspitzen Fingerspitzengefühl/S Fingerübung/P Fingerzeig/EPS Fink/P Finne/N Finnin Finnland Finsternis/q Finte/N Firewall/S Firlefanz Firma Firmament/ST Firmen/J Firmenangehörige Firmenanteile Firmenaufdruck Firmenbereich Firmenberichten Firmenbezeichnung Firmenbild/ST Firmenbroschüre Firmenchef/S Firmenchroniken Firmenemblem Firmenentscheidung/P Firmenfahrzeug/EPS Firmengebäude Firmengelände Firmengewinne Firmengröße/N Firmengründer Firmeninhaber/FNS Firmeninhalte Firmenjubiläum Firmenkennung Firmenkonglomerat Firmenkontakt/EPST Firmenküche Firmenmakler Firmenmantel Firmennamen/S Firmenparkplatz/T Firmenpensionskasse/N Firmenpleite/N Firmenprospekt/EPST Firmenschild/RST Firmenschrift Firmenschriftzug/STp Firmensitz Firmenumsatz Firmenverband/T Firmenverbund/ST Firmenzeichen Firmenziel Firmenzusammenbrüche Firmenzusammenschlüsse/N Firmware Firmwareänderung/P Firmwareeigenschaft/P Firmwareveränderung/P First/EPST Firsthöhe Fisch/RST Fischauktion Fischbein/ES Fischbestände Fischblase Fischdampfer/NS Fischeinfuhren Fischeinkauf/Sp Fischeinzelhandel Fischer/FNS Fischerboot/EPS Fischerdörfer/N Fischerdorf Fischerei Fischereiboot Fischereiflotte Fischereigenossenschaft/P Fischereikonferenz Fischereiprodukten Fischereirecht/E Fischereiunternehmen Fischergemeinschaft Fischernetz Fischerring Fischfang/Sp Fischfarm Fischgericht/EPT Fischgerüche/N Fischgeruch Fischgeschäft Fischgräte/N Fischgroßhandel Fischhändler/N Fischhandlung Fischindustrie Fischkonserven Fischkonservenfabriken Fischkunde/N Fischkutter/S Fischlaich/ES Fischleim/S Fischmarkt/STp Fischmehl/S Fischmilch Fischöl Fischotter Fischreichtum Fischreiher/S Fischsalat Fischschleusen Fischschuppen Fischschwärme Fischspezialgeschäfte Fischsuppe Fischteich/EPST Fischvergiftung/P Fischwerbung Fischzüchter Fischzubereitung/P Fischzucht Fischzug/p Fiskaljahr Fiskalpolitik Fiskus Fistel/N Fistelstimme Fitness Fitnesscenter/NS Fitnessraum/Sp Fittich/EPS Fitzgerald/S Fixierbäder/N Fixierbad Fixierens Fixiermittel/NS Fixierschraube/N Fixierung/P Fixpunkt/EPT Fixpunktbildung Fixpunktgleichung/P Fixpunktiteration/P Fixpunktoperator Fixpunktsatz/T Fixpunktverfahren Fixstern/EPS Fjord/EPS Fkt Fläche/N Flächenangriffe Flächenbombardement Flächenertrag/STp Flächeninhalt/EPT Flächenleistung Flächenmaß/EPT Flächenraum/STp Flächenstaat/P Flämmchen/S Fläschchen/S Flachbandkabel Flachbettdrucker Flachdächer/N Flachdach Flachglas/T Flachheit/P Flachkabel Flachkabelanschluss/Tp Flachländern Flachland/T Flachs/T Flachschreibmaschinen Flachschuss/Tp Flachstahlprodukte Flachsteckverbinder Flachverbinder Flackerschein/S Fladen/S Flaggendiskriminierung Flaggenmast Flaggenmeer Flaggenstreit Flaggschiff/ET Flair Flak Flakfeuer Flakinsel Flakon/S Flakschießen Flamen Flamenco Flamingo/S Flammenmeer/EPS Flammenofen/S Flammenwerfer/S Flandern Flanell Flanke/N Flankenangriff/PS Flankendeckung Flankensteilheit Flankentriggerung Flansch/T Flasche/N Flaschenbier/EPS Flaschenhälse/N Flaschenhals/T Flaschenkind/RT Flaschenöffner/N Flaschenpost Flaschenwein Flaschenzug/STp Flatterhaftigkeit Flattersatz Flaum/S Flausen Flaute/N Flautezeit/P Fleck/MPST Fleckengruppe Fleckenreiniger/NS Fleckenreinigung/P Fleckfieber Fleckwasser/NS Fledermäuse/N Fledermaus Flegel Flegelalter/S Flegeljahre/N Fleiß/T Fleißarbeit/P Fleisch/RT Fleischbank/P Fleischbeschauer/S Fleischbrühe/N Fleischer/FNS Fleischerei/P Fleischereibedarf Fleischereibetrieb Fleischereimaschinen Fleischereiwerkzeuge Fleischergeselle/N Fleischerhandwerk Fleischerladen/S Fleischerverband Fleischeslüste Fleischeslust Fleischesser Fleischextrakt/P Fleischfarbe Fleischkloß/Tp Fleischkost Fleischkugeln Fleischmann Fleischmarkt/STp Fleischpasteten Fleischpreise Fleischschnitte/N Fleischsendung/P Fleischtransporte Fleischvergiftung/P Fleischware/N Fleischwarenbranche Fleischwolf Fleischwunden Fleischwurst Fleischzentrale Flensburg Flexibilität Flexion/P Flexionsform/P Flickarbeit/P Flickenteppich Flicker/FNS Flickerei/P Flickwerk/S Flickzeug/S Flieder/N Fliegenfenster/N Fliegengewicht/EPS Fliegengewichtler/FNS Fliegenklatschen Fliegenpilz/ET Fliegenpilzsuppe Fliegens Fliegenschränken Fliegenschrank/T Fliegerabwehr Fliegeralarm/ES Fliegerangriff Fliegerbombe Fliegerdenkmal Fliegerdress/ET Fliegerei Fliegergrab Fliegerhorst/EPT Fliegerin Fliegerkombination Fliegerkorps Fliegermajor Fliegernachwuchs Fliegeroffizier/ES Fliegerrekruten Fliegerrennen Fliegerschule/N Fliegersoldaten Fliegerstiefel Fliegerzulage Fliehkraft Fließbänder/N Fließband/T Fließbandarbeit/R Fließbandarbeiter/FNS Fließbandfertigung Fließbandkleider Fließbandproduktion/P Fließfertigung Fließkommaberechnung/P Fließkommaoperation/P Fließkommaprozessor Fließkommazahl/P Fließpapier/EPS Fließproduktion/P Fliese/N Fliesenabteilung Fliesenmarkt/STp Flimmer/S Flinkheit Flinte/N Flintenlauf/Sp Flintenschuss/Tp Flipper Flipperkasten Flirt/S Flittchen/S Flitter Flitterkleid Flitterwerk Flitterwochen Flitzer/N Flötenklang Flötenspieler/S Flötenstimmen Flötespielen/S Flötist/P Flöz Flohmarkt/Tp Flohs Flop Floppyabdeckung/P Floppybetrieb Floppydisk Floppydisketten Floppylaufwerk/E Floppystation/P Flora Florenz Florett Florian/S Florida Floß/T Floskel/N Flottenabkommen/S Flottenangriff Flotteneinheit/P Flottenexpedition Flottengesetz Flottenmanöver Flottenparade Flottenpolitik Flottenstation/P Flottenstützpunkt/EPT Flottenüberfall Flottenverbände Flottenverein Flottenvorstoß/Tp Flottillenarzt/T Flow Flowerpower Flüche/N Flüchtigkeit Flüchtigkeitsfehler/NS Flüchtling/EPS Flüchtlingsärzte Flüchtlingsdorf Flüchtlingsdurchgangslager Flüchtlingselend Flüchtlingsfamilien Flüchtlingsfrage Flüchtlingsgruppen Flüchtlingsjagd Flüchtlingsjuristen Flüchtlingskinder Flüchtlingslager/NS Flüchtlingsminister Flüchtlingsproblem/EPS Flüchtlingsstellen Flüchtlingsstrom Flüchtlingstrecks Flüchtlingswaisen Flüchtlingszentrum Flügel/GN Flügelfenster/NS Flügelschlag/Sp Flügelspiel Flügelstürmer/N Flügeltor Flügeltüre/N Flüssiggas/T Flüssigkeit/P Flüssigkeitsmedium Flüssigkeitssäule Flüssigkeitsumgebung Flüssigmittel Flüssigwährung Flüsterkampagne Fluch/RS Flucher/NS Fluchtauto Fluchtburg Fluchtfall/Sp Fluchtgefahr Fluchtgelder Fluchtgeschichte Fluchtgrund Fluchthelfer Fluchtlinie/N Fluchtmöglichkeit/P Fluchttunnel Fluchtunternehmen Fluchtverdacht Fluchtversuch/EPST Fluchtweg/EPS Flug/ETp Flugabwehr Flugabwehrrakete/N Flugapparaten Flugbahn Flugball/Sp Flugbasen Flugbetrieb/EPS Flugbillet Flugblätter/N Flugblatt/ST Flugboot Flugdauer Flugdienste/N Flugerlebnis/Qq Flugerprobung Flugfeld Flugfigur Fluggäste Fluggast/T Fluggebiet Fluggerät/EPST Fluggeschäft Fluggeschwindigkeit/P Fluggesellschaft/P Flughäfen Flughafen/S Flughafenbehörde Flughafengesellschaft Flughafenleiter/S Flughafenneubauten Flughafensicherung Flugkapitän/PS Flugkarte Flugkilometer/N Flugkomfort Fluglehrer/NS Flugleitoffizier Flugleitsystem/EPS Flugleitung Flugleitzentrale Fluglinien Fluglotse/N Flugmaschine Flugmöglichkeit Flugnetz Flugpassagier/EPS Flugpauschalreisen Flugpersonal Flugplätze/N Flugplan Flugplatz/T Flugplatzgelände Flugpost Flugpreis/EPT Flugprogramme Flugreise/N Flugreisegesellschaft Flugreisende/NR Flugroute Flugsand Flugschanze Flugschein/E Flugschneise Flugschrift/P Flugsicherung/P Flugsicherungsboot Flugsport/ST Flugsteig Flugstrecken Flugstützpunkt Flugstunden Flugtag Flugticket Flugtransporte Flugunfall/Sp Flugunfallentschädigung Flugverkehr/S Flugverlauf/Sp Flugversuche Flugweg/ET Flugwettbewerb Flugwetter Flugzeit/P Flugzettel Flugzeug/EPT Flugzeugabsturz/T Flugzeugabwehr Flugzeugbau/S Flugzeugbesatzung Flugzeugentführung Flugzeugentwicklung Flugzeugfabriken Flugzeugführer/S Flugzeugherstellung Flugzeugkanzel Flugzeugkatastrophe Flugzeugkonstrukteur Flugzeugkonzept Flugzeugmechaniker Flugzeugmotor/PS Flugzeugrumpf/T Flugzeugsitze Flugzeugträger/NS Flugzeugunglück/S Flugzeugwerk/ET Flugzeugwrack/S Flugziel Flugzustand Fluid Fluktuation/P Flunder Flunkerei/P Fluor/S Fluoreszenz Flur/EPST Flurbereinigung/P Flurbereinigungsgesetz Flurgarderobe/N Flurmühle Flurschäden Flurstück Fluss/MTp Flussabschnitt Flussbett/PST Flussbrücke Flussdiagramm/EPS Flusslage Flusslauf/STp Flussmittel Flussmodell/EPS Flussmündung/P Flusspferd/EPST Flussschifffahrt/P Flussstahl/S Flussstützpunkte Flusstal Flussufer/NS Flut/P Flutkatastrophe Flutlicht/RST Flutlichtanlage/N Flutwelle/N Föderalismus Föderation/P Föhn/S Föhneinbruch/S Föhre/N Föhrengehölz Föhrenzapfen Förderanlage/N Förderausfall Förderbändern Förderband Fördereinrichtung Förderer Fördererantriebs Fördererbewegung Fördererbruch Fördererlage Fördererposition/P Fördererrückautomatik/P Fördererweg Fördererzylinders Fördererzylinderweg Förderfahrten Fördergebiete Fördergemeinschaft/P Fördergeräte Fördergesellschaft/P Förderkosten Förderkurs/EPT Förderländern Förderleistung Fördermaschine Fördermenge/N Fördermethoden Förderns Förderöffnung Förderpumpe Förderquote/N Förderschnecke Förderstunden Fördertechnik Fördertürme Förderung/P Förderungsabfall/Sp Förderungsgesellschaft/P Förderungsprogramm/EPS Förderungsvorschlag/STp Förderungsweg/EPST Förderungswettbewerb/EPST Förderunterricht Förderverein/EPS Förderzoll Förmlichkeit/P Förster/FNS Försterei Föten Fötus Fockmast Fohlen/S Fokker/S Fokus Fokussierens Fokussierung/P Folgeauftrag/STp Folgeband Folgeerscheinung/P Folgejahre/N Folgekosten Folgelast/P Folgenerscheinung Folgenglied/RS Folgeposition/P Folgerichtigkeit Folgerns Folgerung/P Folgesätze/N Folgesatz Folgeschäden Folgeseite/N Folgesteuern Folgetreffen/S Folgewidrigkeit Folgewirkung/P Folgezeit Folgezustand Folgsamkeit Folie/N Folienabdeckung Folienbeschriftung Folienentwurf Foliengewänder Folienhersteller Folienlösung Folienmaß/EPT Folientastatur Folientausch Folienüberstand Folklore Folter/J Folterbank/P Folterinstrument/EPST Folterkammern Folterknecht/EPS Foltermethode/N Folterqual Fond/S Fondsanteile/N Fondsdaten Fondsleitung Fondsmanager Fondsvermögen Fondsverwaltung Fondswerte Fonografie Font/S Fontäne/N Fontainebleau Foppereien Ford/S Forderns Forderung/P Forelle/N Forellenfilet/S Forellenfischerei Foren Form/J Formalisierbarkeit Formalisierens Formalisierung/P Formalismen Formalismus Formalität/P Format/EPST Formatänderung/P Formatbefehl/E Formatierens Formatierer Formatierkommando/S Formatierkorrektur/P Formatierprogramm/EPS Formatiersoftware Formatierung/P Formation/P Formationsflug/STp Formatpapier/S Formbewusstsein Formblätter Formblatt Formbrief Formel/N Formelmenge/N Formenbau Formenlehre Formens Formensprache Formenwelt Formfeed Formfehler Formfrage/N Formmodell/EPS Formosa Formosastraße Formphantasie Formsache/N Formstahl Formstücke/N Formtabelle/N Formular/EPS Formulardruck Formularsätze Formularvorschub/ST Formularwechsel Formulierens Formulierung/P Formulierungsentwurf Formung/P Forschens Forschergruppe/N Forscherin/F Forschern Forschers Forscherstreik Forschung/P Forschungsabteilung/P Forschungsanstalt/P Forschungsarbeit/P Forschungsauftrag/STp Forschungsausbildung Forschungsbemühung/P Forschungsbereich Forschungseinrichtung/P Forschungsergebnis/Qq Forschungsfeld/RST Forschungsflugkörper Forschungsförderung Forschungsgebiet/EPS Forschungsgemeinschaft Forschungsgesellschaft Forschungsgruppe/N Forschungsingenieur Forschungsinstitut/T Forschungslabor/EPS Forschungslaboratorien Forschungslaboratorium Forschungsmaterial Forschungsministerium Forschungsmittel/N Forschungspolitik Forschungsprogramm Forschungsprojekt/EPS Forschungsreise/N Forschungsreisende/NR Forschungsrichtung/P Forschungssatellit Forschungsschiff Forschungsschwerpunkt/EPS Forschungsstab Forschungsstation Forschungsstelle/N Forschungsvorhaben/S Forschungszentrale/N Forschungszentrum Forschungszwecke/N Forschungszweig/ES Forst/EPT Forstamt Forstaufseher/NS Forstbeamten Forstbeamter Forstfrevel/S Forsthaus/Tp Forstmänner Forstmann/T Forstmeister/S Forstrevier/EPS Forstverein/S Forstwesen/S Forstwirtschaft Fortbestand Fortbewegens Fortbewegung/P Fortbildens Fortbildung/P Fortbildungsanstalt/P Fortbildungsbeihilfe/N Fortbildungskurs/EPT Fortbildungsmaßnahmen Fortdauer Fortfall/Sp Fortführens Fortführung/P Fortgang/Sp Fortgeschrittenenkurs/EPT Fortpflanzens Fortpflanzung/P Fortran Fortschreiben/JS Fortschritt/EPS Fortschrittlichkeit Fortschrittsglaube Fortschrittsquote/N Fortschrittswerk Fortsetzens Fortsetzung/P Fortsetzungsgespräch/EPS Fortsetzungsromanen Fortune Forum Fossilien Foto/S Fotoapparat/EPST Fotoausrüstung/P Fotoausstellung Fotobericht/EPS Fotodiode/N Fotograf/FP Fotografie/N Fotoindustrie Fotokopie/N Fotokopierkosten Fotolaborantin Fotoliebhaber Fotomodell Fotoreportage Fotoserie Fotosynthese Fototechnik Fotovoltaik Fotze/N Foul/S Foulspiel Fourier/S Fourieranalyse/N Fouriertransformation/P Foxtrott/S Foyer Fr Fräcke/N Fräsarm/S Fräskopf Fräskopferrechnung Fräskopfposition/P Fräsparametervariation/P Fräsprofil/EPS Fräsvorgang Fräswalze/N Fräswalzenarme/N Fräswalzenhöhe Fräulein/S Fracht/PR Frachtbauch Frachtbrief/EPS Frachtdampfer Frachtenindex Frachtenkartell Frachtenverlust Frachterhöhung/P Frachtersparnis/q Frachtgeschäft Frachtgüter/N Frachtgut/T Frachtkosten Frachtraum/Sp Frachtsätze Frachtschiff/ST Frachtschiffsflotte Frachtstundung Frachttarife Frachttonnage/N Frachtvergütung Frachtverkehr/S Frack/S Fragebögen Fragebogen/S Fragebogenfälschung/P Frageform Frageliste/N Fragemethode/N Fragenkomplex/EPT Fragenkreis/EPT Frager/FNS Fragesätze/N Fragesatz/T Fragesteller/NS Fragestellung/P Fragestunde/N Fragewörter/N Fragewort/T Fragezeichen/S Fragment/EPST Fragmentierens Fragmentierung/P Fragwürdigkeit Fraktion/P Fraktionsausschuss/Tp Fraktionsbeschluss/Tp Fraktionschef Fraktionsführer/FNS Fraktionskollege/N Fraktionsmitglieder Fraktionsstärke Fraktionsstatus Fraktionsvorsitzende Fraktionsvorstände Fraktionsvorstand Fraktionszwang Fraktur/P Frakturschrift Frameblock/S Framelänge Frameword Franc Francabwertung Francisco Franco/S Frank/PS Franken/SW Frankenstein/S Frankfurt/S Frankfurter/FS Frankreich/S Frankreichreise Franse/N Fransentasche Franz Franziska/S Franziskaner Franziskanerorden Franziskus Französin/F Franzose/N Fraße/S Fraternisation Fratze/N Frau/MP Frauenärzte/FN Frauenarbeit Frauenarzt/T Frauenbataillon Frauenbeilage Frauenberuf Frauenbildnis/Qq Frauenblock/S Frauenbriefe Frauendasein/S Frauenemanzipation Frauenfeld Frauenfrage Frauengestalten Frauenhaus/Tp Frauenheim Frauenheld Frauenkleider/N Frauenklinik Frauenkloster/S Frauenkrankheit Frauenleben Frauenleiden/S Frauenliga Frauenmission Frauenmörder Frauenname Frauenorganisation/P Frauenrechte Frauenrechtler/FNS Frauenschmerzen Frauensport/ST Frauenstimme Frauenstimmrecht Frauenstirn Frauentyp Frauenverbände Frauenvereinsfilm Frauenwelt Frauenweltrekord Frauenzimmer/NS Fraunhofer/S Freak/S Frechheit/P Freeclimbing/S Freejazz Freeware Fregatte/N Fregattenkapitän Fregattenvögel Freiabonnement/S Freibädern Freibad Freibadanlage Freibadrecht Freibankfleisch Freibecken Freiberufler/NS Freibetrag/Sp Freibeuter/NS Freibeuterei Freibier Freibillet/S Freibrief/EPS Freiburg/R Freidenker/NS Freiern Freifläche/N Freiflug/STp Freigabe Freigabemodul Freigebigkeit Freigepäck/S Freigiebigkeit Freihäfen Freihafen/S Freihaltung Freihandel Freihandelszone Freiheit/P Freiheitsarmee/N Freiheitsberaubung/P Freiheitsbeschränkung/P Freiheitsbestrebung/P Freiheitsbewegung Freiheitsentzug/S Freiheitsfreunden Freiheitsfront Freiheitsgedanken Freiheitsgrad/E Freiheitskämpfe/NR Freiheitskämpfer/NS Freiheitskampf/ST Freiheitskundgebung Freiheitsmedaille Freiheitsschlacht Freiheitssender/NS Freiheitsstatue Freiheitsstrafe/N Freiheitswille/N Freiherr/FNP Freikarte/N Freilagerplatz Freilandsalat Freilassens Freilassung/P Freilauf/Sp Freileitungsseile Freilichtaufführung/P Freilichtbühne Freilichtkino/S Freilichtspiele Freiluftsaison Freiluftveranstaltung Freimaßtoleranzen Freimaurer/S Freimaurerei Freimaurerloge Freimütigkeit Freimut/S Freiprospekt Freiraum/STp Freischärler/N Freischaltung/P Freischneider/NS Freischnitt Freischwimmbad Freischwimmbecken Freisetzens Freisetzung/P Freising Freisitz Freisprechens Freisprechung/P Freisprüche/N Freispruch/S Freistaat Freistaatsbürger Freistadt Freistellens Freistellung/P Freistellungsauftrag/Sp Freistilringen Freistoß/Tp Freistunde/N Freitag/EP Freiterrasse Freitod/T Freitreppe/N Freiverkehr Freiwassertraining Freiwild/T Freiwilligengruppe Freiwilligenverbände Freiwilligenverband Freizeit Freizeitaktivität/P Freizeitbekleidung Freizeitbeschäftigung/P Freizeitgestaltung Freizeitgrundstücke Freizeitheim Freizeitkapitäne Freizeitkleidung/P Freizeitreporter Freizeitsitz Freizeitsport Freizeitwert Freizeitzentrum Freizeitzone Freizügigkeit Fremdanleitung/P Fremdarbeiter/FNS Fremdatome Fremdbesitz Fremdbestimmung Fremdenblattes Fremdenführer/FNS Fremdenheim/ES Fremdenindustrie/N Fremdenlegion Fremdenlegionäre Fremdenliste Fremdenpension Fremdenpolizei Fremdenverkehr Fremdenverkehrsamt Fremdenverkehrsbüro/S Fremdenverkehrsgebiet Fremdenverkehrsverbände Fremdenverkehrsverein Fremdenverkehrswerbung Fremdenzimmer/N Fremdfertigung Fremdfinanzierung Fremdgerät Fremdgutachten/S Fremdherrschaft/P Fremdkörper/N Fremdleistung/P Fremdlicht Fremdlieferung/P Fremdling/EPS Fremdmittel/N Fremdmittelaufnahme Fremdsprache/N Fremdsprachenkenntnis/q Fremdsprachensekretärin Fremdstoff Fremdumsätze Fremdwährung/P Fremdwährungsbeträge Fremdwährungsguthaben Fremdwährungskonto Fremdwörter/N Fremdwörterbuch Fremdwörtermanie Fremdwort/ST Frequenz/P Frequenzanalyse Frequenzanteile Frequenzausgängen Frequenzband Frequenzbereich/EPS Frequenzcharakteristik Frequenzfilter Frequenzinformation/P Frequenzkomponenten Frequenzschranke Frequenzspektren Frequenzspektrum Frequenzuntersetzung Frequenzverhältnis/Qq Frequenzverteilung Freske/N Freskendarstellung/P Fresser Fresspaket/EPST Freud/EP Freudenfeuer Freudenjauchzer Freudenkelch Freudenmädchen Freudentag Freudentaumel Freudenträne/N Freudigkeit Freund/EFPT Freundeskreis/EPT Freundesmund Freundlichkeit/P Freundschaft Freundschaftlichkeit Freundschaftsbesuch/E Freundschaftsdienst Freundschaftsgeschenk Freundschaftsgeste Freundschaftspakt Freundschaftsreise Freundschaftsspiel/PS Freundschaftssprüche Freundschaftsvertrag/Tp Frevel Freveltat Friede/N Frieden/S Friedensaktion/P Friedensangebot Friedensappell/PS Friedensaussichten Friedensauszeichnung Friedensbemühen Friedensbereitschaft Friedensbewegung/P Friedensbrüchen Friedensbruch/T Friedensdemonstration/P Friedensdoktrinen Friedensengel Friedensfrist Friedensfühler Friedensgespräch/P Friedensgeste Friedensgipfel Friedensinitiative/N Friedensinstrument Friedenskämpfer Friedenskanzler Friedenskonferenz Friedenskonvention/P Friedenskonzeption Friedenskorps Friedensliebe Friedenslied Friedensmenge Friedensmission/P Friedensmöglichkeit/P Friedensnobelpreis/EPT Friedensnobelpreisträger Friedensordnung Friedensparolen Friedenspetition/P Friedenspfeife/N Friedensplan Friedenspolitik Friedenspreis/EPT Friedenspreisträger Friedensproblem/EPS Friedensprogramm Friedensregelung Friedensschluss/Tp Friedensschritte Friedenssicherung Friedensstand Friedensstifter/FNS Friedensstörer Friedenssystem Friedenstaube Friedenstifter/FNS Friedensverhandlung/P Friedensvermittler Friedensvermittlung Friedensversammlung Friedensvertrag/STp Friedensvorschläge Friedenswillen/S Friedenswirtschaft Friedenszeichen Friedenszeit/P Friedenszustand Friedfertigkeit Friedhöfe/N Friedhof/ST Friedland Friedrich/S Friedrichshafen Friedrichstadt Friese/N Friesland Frikadelle/N Frisbee/S Frischei Frischfisch Frischfischfänger Frischfleisch Frischgemüse/S Frischhaltebeutel Frischmilch Frischobst Frischwasser Friseur/EFPS Friseurbedarf Friseurmeister Friseurverband Friseuse/N Frisiertisch Frisör/EFPS Frist Fristablauf/Sp Fristenmodell/EPS Fristsetzung Fristverlängerung/P Frisur/P Fritteuse/N Fritz Frl Frl. Fröhlichkeit Frömmigkeit Frösche/N Frohnatur/P Frohsinn/S Fron/P Fronarbeit/P Frondienst/EPT Fronleichnamsfest/EPT Front/PW Frontabschnitt Frontalangriff/EPS Frontansicht/P Fronteinsatz Frontend Frontendapplikation Frontendfirmware Frontendprozessor/S Frontfolie/N Frontgebiete Frontjargon Frontkämpfer Frontkommando Frontleiterplatte Frontlinie Frontplatte/N Frontplattengestaltung Frontplattentastatur Frontring Frontscheibe/N Frontseite/N Frontstellung/P Frosch Froschkönig Froschmänner/N Froschperspektive/N Froschschenkel Frost/ST Frostbeule/N Frostperiode Frostschäden Frostschaden Frostschutz Frostschutzmittel Frostwetter Frotteemantel Frottiertücher/N Frottiertuch/ST Früchte/N Früchtekörbe/N Früchtekorb/ST Früchtelieferung/P Frühaufsteher/NS Frühbarock Frühbeet Früheisenzeit Früherkennung Frühgeburten Frühgemüse/S Frühgottesdienst/EPST Frühjahr/S Frühjahrsoffensive Frühling/S Frühlingsabend Frühlingsblumen Frühlingsferien Frühlingsgefühle/N Frühlingsnacht Frühlingssonne Frühlingsstimmung Frühlingstraum/STp Frühlingswetter Frühlingswind Frühnebel Frühpensionierung Frührenaissance Frühromantik Frühschicht Frühschoppen/S Frühsport Frühstück/S Frühwarnanlage Frühwarnsystem Frühwarnung Frühzeit Frühzeitigkeit Frühzündung Frühzug/Tp Frucht Fruchtbarkeit Fruchtknoten/S Fruchtpressanlage Fruchtpresse/N Fruchtsäften Fruchtsaft/T Fruchtsaftpresserei Frugalität Frust Frustration/P Füchse/FN Fügens Fügsamkeit Fügung/P Fühlbarkeit Fühler/NS Fühlerlehre Fühlungsnahme/N Führens Führer/FNS Führerbefehl Führergarde Führerhauptquartier Führerpersönlichkeit/P Führerprinzip Führerrolle/N Führerschaft/P Führerschein/EPS Führerscheinentziehung Führerscheinentzug/S Führerscheinverfahren Führersitz/EPT Führerstaat Führung/P Führungsakademie Führungsapparat Führungsaufgabe/N Führungsauswahl Führungsbegabung Führungsblech Führungsentschluss/Tp Führungsgabel Führungsgremium Führungsgrundsätze/N Führungsgruppe/N Führungshilfe/N Führungskräfte/N Führungskraft Führungskreise/N Führungskrise/N Führungslaschen Führungsmann Führungsmannschaft Führungsmodell Führungsnuten Führungsorgan Führungsorganisation/P Führungspersönlichkeit/P Führungsposition/P Führungspraxis Führungsqualität/P Führungsrad Führungsrinne Führungsrollen Führungsschale/N Führungsschicht/P Führungsschlitz Führungsstäbe/N Führungsstaat Führungsstab/S Führungsstifte Führungssystem/EPS Führungsteam Führungstor Führungstreffer Führungswechsel Führungszapfen Führungszeugnis/Qq Führungszuordnung Führungszylinder/S Füllbeton Füllens Füller/NS Füllfederhalter Füllhalter Füllkraft Füllmenge/N Füllung/P Füllzeichen/S Fünfeck/EPT Fünfer Fünferreihe Fünfjahresplan/S Fünfkämpfe/N Fünfkampf/T Fünfkampfmeister Fünflinge/N Fünfmächtevertrag/STp Fünfsitzer Fünftelsekunde Fünftklässler/FNS Fünfzeiler Fünfzigerjahren Fünkchen/S Fürbitte/N Fürsorge/NR Fürsorgeämter/N Fürsorgeamt/T Fürsorgearzt/T Fürsorgeausgaben Fürsorgeausschuss/Tp Fürsorgeempfänger Fürsorgekasse Fürsorgepflicht Fürsorger/FNS Fürsprache/N Fürsprecher/FNS Fürst/FP Fürstenaufstand Fürstenberg Fürstenfeldbruck Fürstenhaus/Tp Fürstenhöfe Fürstenhof Fürstenkongress/EPT Fürstenmacht Fürstenplatz Fürstenthronen Fürstentümer/N Fürstentum/S Fürstenwall Fürth Fürwörter/N Fürwort/S Fürze/N Füße/N Fütterns Fütterung/P Fuchs/T Fuchsjagd/P Fuchspelz/EPT Fuchsschwänzen Fuchsschwanz/T Fuchtel Fuder/N Fug/EP Fugger/S Fuhre Fuhrgeld/RST Fuhrpärke/N Fuhrpark Fuhrunternehmen/S Fuhrunternehmer/NS Fuji Fujitsu Fulda/S Fulltimejob/S Fummel Fummelei/P Fund/EPT Fundament/EPST Fundamentalaussichten Fundamentaldaten Fundamentalismus Fundamentalist/P Fundbüro/S Fundgrube/N Fundierens Fundierung/P Fundort/EPS Fundsache/N Fundus Funk/RS Funkamateur/EPS Funkanlage/N Funkapparat/EPST Funkausstellung/P Funkdienst/EPT Funkeinrichtung Funkelektroniker Funkempfang Funkenbildung Funkentstörung Funkfernsteuerung Funkgerät/EPST Funkhaus/Tp Funkortung/P Funkpeilnetz Funkpeilung Funksignal/EPS Funksprechgerät/EPS Funksprüche/N Funkspruch/S Funkstation/P Funkstörgrad Funkstreifenwagen/S Funktaxi/S Funktechnik/P Funktelegramm/EPS Funktion/P Funktionär/EPS Funktionalität/P Funktionsablauf/Sp Funktionsanwendung/P Funktionsaufruf/EPS Funktionsbereich/EPS Funktionsbereitschaft Funktionsbeschreibung Funktionsbeurteilung/P Funktionsdefinition/P Funktionsdeklaration/P Funktionsdiagramm/EPS Funktionsergebnis/Qq Funktionsfähigkeit Funktionsfolge/N Funktionsgarantie/N Funktionsgruppe/N Funktionsidentifikator/P Funktionskompatibel Funktionskontrolle/N Funktionsmerkmale/N Funktionsmuster Funktionsobjekt/EPST Funktionspläne/N Funktionsplot/S Funktionsprobe/N Funktionsproblem/EPS Funktionsprüfung Funktionsrümpfe/N Funktionsrumpf/ST Funktionssicherheit Funktionssymbol/EPS Funktionstaste/N Funktionstest/S Funktionstoleranz/P Funktionsträger/NS Funktionsüberprüfung Funktionsumfang Funktionsversion/P Funktionsweise/N Funktionszeit/P Funktionsziel/EPS Funktionszustände/N Funktor/P Funktürme Funkturm Funkübertragung Funküberwachungsdienst Funküberwachungsnetz/EPT Funkverbindung/P Funkverkehr Funkwagen/S Funkwesen/S Funkwetterdienst Funkzeichen Funkzentrale Furchen/I Furchtlosigkeit Furie/N Furnier/EPS Furnierholz Furnierholzfabriken Furore Furt/P Furunkel/NS Furz/T Fuß/T Fußabdrücke/N Fußabstreicher/NS Fußabtreter/NS Fußangel Fußbäder Fußbad Fußball/RSTp Fußballamateure Fußballanhänger Fußballarbeiter Fußballbeinen Fußballberichte Fußballbesessene Fußballbund Fußballduell Fußballeben Fußballehre Fußballer/FNS Fußballereignis/Qq Fußballerkrankheit Fußballfan/S Fußballfanatiker Fußballfelder Fußballfreunde/N Fußballgeschichte Fußballglück Fußballhüne Fußballidole Fußballinstanz Fußballkampf/T Fußballkarriere Fußballkunst Fußballländerspiel/E Fußballliga Fußballmacht Fußballmannschaften Fußballmauer Fußballmeister/S Fußballmeisterschaftsspiel Fußballmetropole Fußballnachwuchs Fußballnationalelf Fußballnationalmannschaft Fußballnationalspieler Fußballoberliga Fußballparadies Fußballpause Fußballplätzen Fußballplatz/T Fußballpokalsieger Fußballprofi/S Fußballquoten Fußballregeln Fußballriesen Fußballsaison Fußballsieg Fußballspiel/PRS Fußballsport Fußballstadium Fußballstiefel/N Fußballsystem Fußballteam Fußballtemperament Fußballtor Fußballtrainer Fußballturnier/S Fußballunternehmen Fußballverbände/N Fußballverband/ST Fußballverein/S Fußballvolk Fußballweisheit Fußballwelten Fußballwesten Fußballzauberer Fußballzeitschrift Fußbank Fußbekleidung Fußböden Fußboden/S Fußbodenstandpunkt Fußbremse Fußdrehung/P Fußgänger/FNS Fußgängerübergang/Sp Fußgängerunterführung/P Fußgängerzone/N Fußgelenk Fußmärsche Fußmatte/N Fußnote/N Fußpfad/EPST Fußpflege/N Fußschalter Fußsohle/N Fußspitzen Fußspur Fußstapfen Fußstellung Fußstrecke Fußstützen Fußtritt/EPS Fußverletzung Fußvolk/T Fußweg/EPST Fußzeile/N Fusel Fusion/P Fusionsbeschluss/Tp Fusionsgesetz Fusionskraftwerk Fusionsvertrag/STp Futter/S Futteral/EPS Futterauswahl Futterbasis Futterbeutel/S Futtererzeugung Futtergetreide Futterkästen Futterkasten/S Futterkrippen Futtermais Futtermittel/NS Futtermittelindustrie Futternäpfen Futternapf/T Futterneid/T Futterrüben Futterstoff/ET Futterstofffabriken Futterstroh Futtertechnik Futtertrögen Futtertrog/T Futur/EST Futurologie GATT GAU GB GBit GByte GEW GI GMT GPL GPS GUS Gähnens Gämse/N Gänge/N Gängelband Gänse/MN Gänseblümchen/S Gänsebraten/S Gänsefeder/N Gänsefüßchen/S Gänseküken Gänseleber Gänseleberpastete Gänsemärsche/N Gänsemarkt/STp Gänsemarsch/ST Gänserich/S Gänseschmalz Gänze Gärens Gärmittel/S Gärstoff/ET Gärtchen/S Gärtner/FNS Gärtnerei/P Gärtnereibesitzer Gärtnergehilfe Gärtnerlehrling Gärung/P Gärungsprozess/EPT Gässchen/S Gäste/N Gästebewirtung Gästebücher Gästebuch/T Gästehaus/Tp Gästemannschaft Gästesaal Gästezimmer/NS Gäule/N Gabe Gabel Gabelfisch Gabelhubwagen Gabellichtschranke Gabelstapler/N Gabenliste/N Gabler/NS Gabriel/EST Gabun Gaddafi/S Gag/EPS Gagenerhöhung Gala Galaempfang Galakleid Galakonzert Galapagos Galapremiere Galavorstellung/P Galaxie/N Galaxis Galeere/N Galerie/N Galeriegebäude Galgen/S Galgenfrist/P Galgenhumor/S Galgenstrick/PS Galgenvögel Galgenvogel/S Galilei/S Galizien Galle/N Gallenanfall Gallenblase Gallenleiden/S Gallenstein/EPS Gallien Gallier/FNS Gallone/N Gallonenweise Galopp/S Galopprennen Galopprennsport Galoppsport Galoppwechsel Galvanometer Gamasche/N Gameboy/S Gammler/NS Gandhi/S Gang/EST Gangart/P Ganggräber Gangreserve/N Gangschaltung/P Gangster/N Gangsterjagd Gangsterkrieg Gangsterstück/E Gangstersyndikat Gangway/S Ganove/N Gans Ganzaufnahme Ganzgewebe Ganzheit Ganzheitsbeziehung Ganzheitsgefühl/EPS Ganztagsbeschäftigung/P Ganztagsschule Ganzwortmethode Garage/N Garagenfahrzeuge Garagenhof Garagenmieten Garagentür Garagenwagen Garant Garantie/N Garantieabgeltung Garantieabkommen/S Garantiebedingung/P Garantiefall/Sp Garantiefonds Garantieforderung/P Garantieleistung/P Garantiemacht Garantiemittel/N Garantiesatz Garantieschein/EPS Garantiestaaten Garantieträger Garantieversprechen/S Garantievertrag/STp Garantiezeit Garbe/N Garbo/S Garching Garde/N Gardeoffiziere/N Garderobe/N Garderobenfrau/P Garderobenschränke/N Garderobenschrank Garderobenständer/NS Garderobiere/N Gardine/N Garn/EPST Garnele/N Garnherstellung Garnierens Garnierung/P Garnison/P Garnisonskaserne Garnisonsorten Garnisonstadt Garnitur Garnpreise Garten/S Gartenanlage/N Gartenanteil Gartenarbeiten Gartenarchitekt/P Gartenbaubetriebe Gartenbauer Gartenbaukunst Gartenbeet Gartenerde Gartenfreunde Gartengeräte Gartengestaltung Gartenhaus/Tp Gartenlaube Gartenmauer Gartenmesser/N Gartenpflege Gartenschau Gartenschere Gartenstadt Gartenstuhl Gartenteil Gartentisch Gartenzäune/N Gartenzaun/S Gartenzwerg/E Gas/EPTq Gasabgabe Gasanalyse Gasangriff/ES Gasanzünder Gasbehälter/S Gasbeleuchtung/P Gasbläschen Gasblasen Gasbombe/N Gasbrenner/S Gasdichte Gasdiffusion Gasdruck Gasen/IW Gasexploration Gasfernleitung Gasfeuerung Gasfeuerzeuge Gasflaschen Gasgeräte Gasgeschäft Gasgesellschaft Gashähne/N Gashahn Gashebel/NS Gasheizung/P Gasherd/ET Gaskammer/N Gaskocher/NS Gaskonzerne Gasleitung/P Gasleitungsmonteur Gaslicht/R Gaslieferung/P Gasmaske/N Gasöfen Gasöl Gasölexporte Gasölverbilligung Gasofen/S Gasometer Gaspedal/EPS Gaspistole Gaspreise Gasrohrleitung/P Gassenjargon Gast/T Gastarbeiter/FNS Gastarbeiterinvasion Gastarbeiterproblem/EPS Gastarbeiterwelle Gastbuch Gastchoreographen Gastdirektion/P Gastdozent Gasteig Gastfreiheit/P Gastfreund/EPT Gastfreundlichkeit Gastfreundschaft Gastgeber/FNS Gastgeschenk Gasthaus/Tp Gasthöfe/N Gasthof/ST Gastländer/N Gastland Gastmahl Gastod Gastprofessur/P Gastregisseure Gastritis Gastrolle/N Gastronom/P Gastronomie Gastschüler/FNS Gastspiel/EPS Gastspielaufführung Gastspielfahrt Gastspielreise Gaststätte/N Gaststättenbesitzer Gaststättenbetriebe Gaststätteninventar Gaststättenkonzept Gaststättennetzwerk Gaststättenpächter Gaststättenumsatz Gastvorlesung/P Gastvorstellung Gastwirt/EFPS Gastwirtschaft Gastwirtseheleute Gastzimmer Gasverbrauch Gasversorgung Gaswerk/EPS Gaswirtschaft Gaszähler/S Gaszündung Gateleitung/P Gateway/S Gatte/FNR Gatten/J Gattenmörder Gatter/NS Gattungsgeschichte Gattungsname/N Gaucho/S Gauda Gaudeamus Gaukelbild/R Gaukelei/P Gaukelspiel/PS Gaukler/FNS Gaul/S Gauleiter Gaulle/S Gaullist/P Gaumeister Gaumen/S Gaumenlaut/EPT Gaumenplatte Gauner/FNS Gaunerei/P Gaze/N Gazelle/N Gazeschleier Gazette/N Gazevorhang GbR Geäst/EPT Gebäck Gebälk/S Gebärmüttern Gebärmutter Gebäude/NS Gebäudeflügel Gebäudeform Gebäudegrundfläche Gebäudekomplex Gebäudenutzfläche Gebäudeschäden Gebäudesicherung Gebäudesteuer Gebäudeversicherung Gebein/EPST Gebell/S Geber/NS Geberoberfläche Geberwiderstand Gebet/ES Gebetsmühlen Gebiet/RST Gebieter/FNS Gebietsabtretung Gebietseinheit/P Gebietsforderung Gebietsreform Gebietsstelle/N Gebietsverlust Gebietsvertretung Gebilde/NS Gebimmel/S Gebinde/N Gebirge/NS Gebirgsbewohner/FNS Gebirgsblick Gebirgsgegenden Gebirgsjäger Gebirgskämme Gebirgskamm/S Gebirgskette Gebirgslage Gebirgsland Gebirgsstrecken Gebirgswand Gebirgswelt Gebirgszug/STp Gebiss/ET Gebissbild Gebläse/N Gebots Gebotsschild/RST Gebräu/S Gebrauchsanweisung/P Gebrauchsartikel/NS Gebrauchsfähigkeit Gebrauchsfahrzeug/EPS Gebrauchsgegenstände/N Gebrauchsgegenstand/ST Gebrauchsgraphik Gebrauchsgüter/N Gebrauchskugelschreiber Gebrauchsmuster/N Gebrauchsmusteranmeldung/P Gebrauchswagen Gebrauchtfahrzeuge Gebrauchtwagen/S Gebrauchtwagenabteilung Gebrauchtwagenhandel Gebrauchtwagenkauf/Sp Gebrauchtware/N Gebrechen/S Gebrechlichkeit Gebrüll/S Gebrumm Gebühr Gebühreneinheit/P Gebührenordnung/P Gebührenpolitik Gebührensätze/N Gebüsch/EPS Gebundenheit Geburt/P Geburtenbeschränkung/P Geburtenkontrollen Geburtenrate Geburtenregelung/P Geburtenrückgang Geburtenschwund Geburtenüberschuss/Tp Geburtenziffern Geburtenzunahme Geburtsanzeige Geburtsbeihilfe Geburtsdaten Geburtsdatum Geburtsfehler/NS Geburtshelfer/FNS Geburtshilfe/N Geburtsjahr/EPST Geburtsländer Geburtsland/T Geburtsname/N Geburtsort/EPT Geburtsrate/N Geburtsschein/EPS Geburtsstätte Geburtsstadt Geburtsstunde/N Geburtstag/EPST Geburtstagsbild Geburtstagsfeier/N Geburtstagsgeschenk Geburtstagsgruß/Tp Geburtstagskarte/N Geburtstagsmorgen Geburtstagsparade/N Geburtstagsparty/S Geburtstagsrede Geburtsurkunde/N Geburtswehen Geck/P Gedächtnis/Qq Gedächtnisfeier/N Gedächtnishilfe/N Gedächtnisschwäche/N Gedächtnisschwund Gedächtnisstörung/P Gedächtnisstütze/N Gedächtnisverlust/T Gedanke/N Gedanken/S Gedankenarmut Gedankenaustausch/T Gedankenblitz/EPT Gedankenfreiheit/P Gedankengang/STp Gedankengespräche/N Gedankengut Gedankenkette/N Gedankenkreis/EPT Gedankenlesen Gedankenleser/FNS Gedankenlosigkeit/P Gedankenreichtum Gedankenschema Gedankensplitter/N Gedankenstrich/EPS Gedankenübertragung/P Gedankenwelt/P Gedankenwerk Gedeck/EPS Gedenkbriefmarke/N Gedenkfeier/N Gedenkrede/N Gedenkschleife Gedenkstätten Gedenkstein/EPS Gedenkstunde Gedenktafel Gedenktag/EPS Gedenkwort Gedenkzug/STp Gedicht/EPST Gedichtsammlung/P Gedichtzyklus Gediegenheit Gedränge/NS Gedröhn/ES Geduld Geduldsfaden Geduldspiel/EPS Geduldsprobe/N Gefährdens Gefährdung/P Gefährlichkeit Gefährt/EFP Gefälle/NS Gefälligkeit/P Gefängnis/Qq Gefängnisdirektor/PS Gefängnisstrafen Gefängnisverwaltung Gefängniswärter/S Gefängniswesen/S Gefängniszelle Gefäß/EPT Gefäßerkrankung/P Gefäßschädigung/P Gefahr Gefahrenherd/EPS Gefahrenmoment/EPS Gefahrenquelle/N Gefahrensignal/EPS Gefahrenwolke/N Gefahrenzone/N Gefahrenzulage/N Gefahrlosigkeit Gefallenenehrung Gefallenenfriedhöfe Gefallsucht Gefangenenbefreiung Gefangenenlager/S Gefangenenpflege Gefangenenproblem/EPS Gefangenhaltung/P Gefangenschaft/P Gefasel/S Gefecht/EPS Gefechtsstände/N Gefechtszentrum Gefieder/N Gefilde/N Geflecht/EPS Geflügel/S Geflügelfarm/P Geflügelfleisch Geflügelhändler/FNS Geflügelschere/N Geflügelzüchter Geflüster/S Geflunker/S Gefolge/N Gefolgschaft/P Gefolgsmann/S Gefräßigkeit Gefreitenbeförderung/P Gefrieranlage/N Gefrierfach/S Gefriermaschine/N Gefrierpunkt/ET Gefrierschränke Gefrierschrank/S Gefrierschutz Gefriertruhe/N Gefüge/NS Gefühl/EPS Gefühllosigkeit Gefühlsargument Gefühlsduselei/P Gefühlserguss/T Gefühlsleben/S Gefühlsmensch/P Gegebenheit/P Gegenagent/P Gegenaktion/P Gegenangriff/EPS Gegenanklage/N Gegenantrag/STp Gegenantwort Gegenargument/EPS Gegenbefehl/EPS Gegenbeispiel/EPS Gegenbeschuldigung/P Gegenbesuch/EPT Gegenbewegung/P Gegenbeweis/EPT Gegend/P Gegendarstellung/P Gegendienst/EPT Gegendiskriminierung Gegendruck Gegeneinanderwirken Gegenentwurf Gegenerklärung Gegenerwiderung Gegenfeuer Gegenforderung Gegenfrage/N Gegengerade/N Gegengeschenk/EPS Gegengewicht/EPST Gegengift/EPST Gegenidee/N Gegenindizien Gegenkandidat/P Gegenkandidatur Gegenklage/N Gegenkräfte/N Gegenkraft Gegenküste Gegenleistung/P Gegenliebe Gegenmaßnahme/N Gegenmedikament Gegenmittel/N Gegenoffensive/N Gegenpäpste Gegenpart Gegenpartei/P Gegenpol Gegenposition/P Gegenprobe/N Gegenreaktion/P Gegenrechnen/JS Gegenrede/N Gegenreformation Gegenrevolution/P Gegenrichtung Gegenruf/EPS Gegensätze/N Gegensatz/T Gegensatzpaaren Gegenschraube Gegenseite/N Gegenseitigkeit Gegenspieler/NS Gegenspionage Gegensprechanlage Gegenstände/N Gegenständlichkeit Gegenstand/ST Gegenstandsbereich Gegenstelle/N Gegenstimme/N Gegenstück/EPS Gegenteil/EPS Gegenthese/N Gegentor Gegentreffer Gegentrend Gegenüberstellens Gegenüberstellung/P Gegenufer Gegenverkehr/S Gegenvorschlag/S Gegenwart Gegenwartsaufgaben Gegenwartskunde Gegenwartsliteratur Gegenwartsproblem/EPS Gegenwartstheater/S Gegenwehr Gegenwende/N Gegenwert/EPT Gegenwind/EPT Gegenwinkel/NS Gegenwirkung/P Gegenzeuge/N Gegenzug/STp Gegner/FNS Gegnerschaft/P Gehälter/N Gehässigkeit/P Gehäuse/NS Gehäuseänderung/P Gehäuseabmessung/P Gehäusebau Gehäuseboden/S Gehäuseform Gehäusegröße/N Gehäusekonstruktion/P Gehäusematerial Gehäusemodifikation/P Gehäusemuster Gehäuseoberflächenbehandlung Gehäuseoberseite Gehäusepreis/EPT Gehäuserand Gehäuseschaden Gehäuseunterseite Gehäusevarianten Gehäusewand Gehabe Gehalt/S Gehaltlosigkeit/P Gehaltsabrechnung Gehaltsabteilung/P Gehaltsabzug/Sp Gehaltsangebot Gehaltsanspruch Gehaltsaufbesserung/P Gehaltsentwicklung Gehaltserhöhung/P Gehaltsfrage Gehaltshöhe Gehaltsklassen Gehaltskosten Gehaltsliste Gehaltsniveau Gehaltssteigerung/P Gehaltsstufe Gehaltssummen Gehaltstabelle Gehaltstüten Gehaltsverbesserung/P Gehaltsvereinbarung Gehaltsvergleiche Gehaltsvertrag/STp Gehaltsvorschlag/STp Gehaltsvorstellung Gehaltswünsche Gehaltswunsch/T Gehaltszulage/N Gehege/NS Geheimabstimmung Geheimagent Geheimakten Geheimaktion/P Geheimbefehl Geheimbericht Geheimbesprechung/P Geheimbünde/N Geheimbund Geheimdienst/EPT Geheimdienstagenten Geheimdienstaktivitäten Geheimdienstbeamten Geheimdienstberichte Geheimdienstchef Geheimdienstexperte Geheimdienstkoffer Geheimdienststellen Geheimdiplomatie Geheimdokumenten Geheimfächer/N Geheimfach/ST Geheimgespräch/E Geheimhalten/J Geheimhaltungsbestimmung/P Geheimhaltungspflicht Geheimkammern Geheimkonferenz Geheimmission/P Geheimnis/Qq Geheimniskrämerei Geheimnistuerei Geheimorganisation/P Geheimplan Geheimpolizei Geheimpolizist Geheimprotokoll Geheimräte/N Geheimrat/ST Geheimrezept Geheimsachen Geheimschrift/P Geheimsitzung/P Geheimsprache/N Geheimtipp/S Geheimtuerei/P Geheimunternehmen Geheimverhandlung/P Geheimverhöre Geheimverstecken Geheimvertrag/STp Geheimwaffe Geheimzahl/P Geheiß/T Geheul/S Gehilfe/FN Gehilfenbrief Gehirn/EPS Gehirnblutung Gehirnerschütterung/P Gehirnschaden Gehirnschlag/Tp Gehirnspezialist Gehirnstrommessung Gehirntumor/EPS Gehirnwäsche/N Gehöft/EPST Gehölz/EPT Gehör/S Gehörgang/Sp Gehörknöchelchen Gehorsamkeit Gehorsams Gehsteig/EPST Gehupe Gehversuch/EPS Gehweg/EPS Geier/N Geifer Geige/NR Geigenbogen/S Geigenharz/EPT Geigenkasten/S Geigenmacher/FNS Geiger/FNS Geigerzähler/N Geilheit Geiß/P Geißblätter/N Geißblatt/T Geißböcke/N Geißbock/ST Geißelns Geißelung/P Geißlung/P Geisel/N Geiseldrama Geiselerschießung Geiselnahme/N Geiselnehmer/NS Geist/ET Geiste/RS Geisterbeschwörer/N Geisterbewegung/P Geistererscheinung/P Geisterfahrer Geisterhand Geisterhaus/Tp Geisterkegler Geisterstunde/N Geisterwelt/P Geistesarbeit/PR Geistesarbeiter/FNS Geistesblitz/EPT Geistesgabe/N Geistesgegenwart Geistesgeschichte Geisteshaltung/P Geisteskräfte/N Geisteskraft Geisteskrankheit/P Geistesleben/S Geistesprodukte Geistesrichtung/P Geistesschwäche/N Geistesstärke Geistesstörung Geistesverfassung/P Geistesverwandtschaft Geistesverwirrung/P Geisteswissenschaft Geisteszustände/N Geisteszustand/ST Geistigkeit Geistlichkeit Geistlosigkeit Geiz/T Geizhälse/N Geizhals/T Geizkragen/S Gejohle/S Gekeife/S Gekeuche/S Gekicher/S Gekläff/S Geklatsche Geklimper/S Geklirr/S Geknatter/S Geknister/S Gekreisch/ET Gekritzel/S Gekröse/S Gelächter/N Gelände/RS Geländefahrt/P Geländefahrzeug/EPS Geländelauf/Sp Geländeritt Geländewagen/S Geläufigkeit/P Geläut/T Gelaber/S Gelage/NS Gelass/ET Gelassenheit Gelatine/N Gelaufe/S Gelbschnäbel/N Gelbschnabel/S Gelbsucht Geld/ERST Geldabfluss/Tp Geldabwertung Geldabzüge/N Geldadel/S Geldangelegenheit/P Geldanlage/N Geldanlagealltag Geldanlagebriefe Geldanlagediensten Geldanlageform Geldanlagestrategien Geldanlagethema Geldanlegern Geldanleihe/N Geldanweisung/P Geldaristokratie Geldaufwand Geldaufwendung Geldaufwertung Geldausgabe/N Geldautomat/P Geldbedarf/S Geldbeschaffungskosten Geldbesitzer Geldbestand Geldbetrag/Tp Geldbeutel/NS Geldbewegung/P Geldbörsenersatz Geldbrief/EPS Geldbriefträger Geldbuße/N Gelddinge/N Geldentwertung/P Geldentwicklung Geldersatz Geldfälschung Geldforderung/P Geldgeber/NS Geldgebernation/P Geldgeschäft/EPS Geldgeschenk/EPS Geldhähne Geldhahn Geldheirat/P Geldhunger Geldinstitut/EPS Geldkäufer Geldklemme/N Geldknappheit/P Geldkreislauf/Sp Geldkrise Geldlotterie Geldmänner/N Geldmagneten Geldmakler/FNS Geldmangel Geldmann/T Geldmarkt/STp Geldmarktanlagen Geldmarktgeschäfte Geldmarktinstrumente Geldmarktpapiere Geldmarktpolitik Geldmarktsätze Geldmenge/N Geldmengenentwertung Geldmengenexpansion Geldmengenexplosion Geldmengenimplosion Geldmengenpolitik Geldmengenschöpfung Geldmengenschub Geldmengenwachstum/S Geldmittel/S Geldmünzen Geldnöte/N Geldpolitik Geldpreise Geldpresse Geldprobleme Geldquelle/N Geldsätze Geldsache Geldsammlung Geldschein/EPST Geldschöpfung Geldschränke Geldschrank/T Geldschrankfabrik Geldschwemme Geldsendung/P Geldsorten Geldsparen Geldspende Geldspritze Geldstrafe Geldströme Geldstrom Geldstück/EPS Geldsüchtigkeit Geldsucht Geldsumme Geldtaschen Geldtöpfe/N Geldtopf/S Geldüberhang Geldumlauf/Sp Geldumschlag/STp Geldverfügung/P Geldverkehr Geldverlegenheit Geldverleih/R Geldverleihung Geldverlust Geldvermehrung Geldverschieber Geldverschwendung/P Geldvolumen Geldwäsche/NR Geldwäscher/NS Geldwechsel/NS Geldwert/EPT Geldwertschwund Geldwertstabilisierung Geldwirtschaft Geldzins/PT Geldzügel Geldzufluss/Tp Geldzufuhr Geldzuwendung/P Gelee/S Gelegenheit/P Gelegenheitsarbeit/PR Gelegenheitsarbeiter/FNS Gelegenheitsbesucher Gelegenheitsgeschäft Gelegenheitskauf/STp Gelegenheitsverkehr Gelehrigkeit Gelehrsamkeit Gelehrtenkongress/EPT Gelehrtenrepublik Geleis/EPT Geleit Geleitbrief/EPST Geleitschiff/EPS Geleitschutz Geleitwort/ET Geleitzug/STp Gelenk/EPT Gelenkigkeit Gelenkrheumatismus Gelichter Gelöbnis/Qq Gelsenkirchen/S Geltendmachung Geltens Geltung/P Geltungsanspruch Geltungsbedürfnis/Qq Geltungsbereich/P Geltungsdauer Geltungsdrang Geltungswahn/S Gelübde/S Gelumpe Gemächer/N Gemächlichkeit Gemälde/N Gemäldeausstellung/P Gemäldegalerie Gemälderäuber Gemäldesäle Gemäuer/NS Gemach/S Gemahl/FS Gemarkung Gemeinde/N Gemeindeaufträge Gemeindebau/ST Gemeindebesitz Gemeindebund Gemeindeeigentum Gemeindefinanzen Gemeindefinanzreform Gemeindegottesdienst Gemeindegrundsteuer Gemeindehaus/Tp Gemeindekasse Gemeindeneuwahlen Gemeindeoberhäupter Gemeindepastor Gemeinderäte/N Gemeinderat/ST Gemeinderatsbeschluss/Tp Gemeinderatsitzung Gemeindesiedlung Gemeindesteuer/N Gemeindestraße/N Gemeindeväter Gemeindeveranstaltung/P Gemeindeverbände Gemeindevertretung Gemeindeverwaltung/P Gemeindevorständen Gemeindevorstand/T Gemeindewahlen Gemeindewald Gemeindezentrum Gemeingefühl Gemeingüter/N Gemeingut/ST Gemeinheit/P Gemeinnutz/P Gemeinsamkeit/P Gemeinschaft/P Gemeinschaftsaktion/P Gemeinschaftsangelegenheit/P Gemeinschaftsantenne Gemeinschaftsarbeit/P Gemeinschaftsausgabe/N Gemeinschaftsbildung Gemeinschaftsebene/N Gemeinschaftsentscheidung/P Gemeinschaftserziehung Gemeinschaftsgefühl Gemeinschaftsgeist/T Gemeinschaftshandlung/P Gemeinschaftsinteresse/NS Gemeinschaftskantinen Gemeinschaftskommission/P Gemeinschaftskompetenz/P Gemeinschaftskonten Gemeinschaftskonto/S Gemeinschaftsländer Gemeinschaftsleben/S Gemeinschaftslinien Gemeinschaftslösung/P Gemeinschaftsmaßnahme/N Gemeinschaftsmittel Gemeinschaftsorgan/EPS Gemeinschaftsposition/P Gemeinschaftsproduktion/P Gemeinschaftsprojekte Gemeinschaftsrecht/S Gemeinschaftsschule Gemeinschaftstarif Gemeinschaftsunternehmen Gemeinschaftsvertrag/STp Gemeinschaftswährung Gemeinschaftswerk/T Gemeinschaftswohl Gemeinschuldner/NS Gemeinwesen/S Gemeinwohl/S Gemenge/N Gemetzel Gemisch/EPST Gemischtwarengeschäft Gemischtwarenhandlung/P Gemüse/S Gemüseanbaufläche Gemüsebau/T Gemüsegärten Gemüsegarten/S Gemüsehändler/FNS Gemüsehandlung/P Gemüsekonserven Gemüsemarkt/Tp Gemüsepreise Gemüt/RST Gemütlichkeit Gemütsart/P Gemütsbewegung/P Gemütskrankheit/P Gemütslage/N Gemütsleben/S Gemütsmensch/P Gemütsstörung/P Gemütsverfassung Gemütszustände/N Gemütszustand/ST Gemunkel Gemurmel/S Genauigkeit/P Genauigkeitsklasse Gendarm/P Gene/N Genehmigens Genehmigung/P Genehmigungsbehörden Genehmigungsverfahren/S Genera Generäle/N General/S Generalagent/P Generalagentur Generalanwalt Generalanwaltschaft Generalbauplan Generalbevollmächtigte/NR Generalbundesanwalt Generaldirektor/PS Generalgouvernement Generalgouverneur/S Generalintendant Generalisierung/P Generalissimus Generalität Generalkasse Generalkommission/P Generalkonsul/NS Generalkonsulat/PS Generalleutnant Generallinie/N Generalmajor Generaloberst/PS Generalplanung Generalprobe/N Generalresident Generalresolution/P Generalsekretär Generalsekretariat/S Generalsmarsch Generalsrang Generalsstab Generalstaaten Generalstaatenpartei Generalstaatsanwalt Generalstab/ST Generalstabsarbeit Generalstabschef Generalstreich Generalstreik/S Generaltenor Generalthema Generalüberholung Generaluntersuchung Generalvertreibung/P Generalvertreter Generalvertretung/P Generalvollmacht/P Generalzahlmeister Generation/P Generationenkonflikt Generationsgenosse Generationsproblem/EPS Generationszeit Generationszyklen Generator/PS Generatorenanlagen Generierens Generierung/P Generierungsprozess/EPT Genesens Genesung/P Genesungsheim/EPT Genesungsprozess/EPT Genf/R Genforschung Genialität/P Genick/EPS Genickbruch Genickschläge Genickschuss/Tp Genie/S Genieblitz Genießer/N Genitalien Genitiv/EPS Genius Genmanipulation/P Genom/EPS Genosse/F Genossenschaft Genossenschaftsbank/P Genossenschaftsgesetz Genossenschaftssiedlung Genossenschaftstag Genossenschaftsverband Genre/S Genreszene/N Genrezeichnung/P Gens Gentechnik Genügsamkeit Genua Genugtuung/P Genus Genuss/Tp Genussgier Genussmittel/N Genussmittelgewerbe Genussmittelindustrie Geografie Geografiestunde/N Geograph/Pf Geographie Geographiestunde/N Geologe/N Geologie Geometer/NS Geometrie/N Geometrieberechnung/P Geometrieermittlung Geometrieparameter Georg/EST Gepäck/S Gepäckannahme/N Gepäckaufbewahrung Gepäckausgaben Gepäckfreigrenzen Gepäckhalter/S Gepäckkontrolle/N Gepäcknetz/EPT Gepäckraum/STp Gepäckschein/EPS Gepäckschließfächer/N Gepäckschließfach Gepäckstücke Gepäckträger/N Gepäckwägen Gepäckwagen/S Gepflogenheit/P Geplänkel/S Geplätscher/S Geplapper/S Geplauder/S Gepolters Gepräge Geräte/NS Geräteabmessung Gerätebau Geräteeinheit/P Gerätekomplettpreis Gerätekonfiguration/P Geräteoberseite Geräteortungspläne Gerätepark Geräterückseite Gerätespannung Gerätestecker/NS Gerätetausch Gerätetest Gerätetreiber/NS Geräteturnen/S Gerätetyp Geräteunterseite Geräteverbindung/P Gerätezahl Geräts Gerätschaften Geräumigkeit Geräusch/EPT Geräuschbelästigung Geräuschcharakteristik Geräuschdetektor Geräuschentwicklung Geräuschlosigkeit Geräuschpegel Geräuschspektrum Geradlinigkeit Gerangel Geranie/N Geranienbeet Geranienkasten Gerassel/S Geratewohl Gerberdaten Gerberei/P Gerbmittel Gerd/S Gerda/S Gerechtigkeit Gerede/S Gerhard/S Geriatrie Gericht/EPST Gerichtsakten Gerichtsbarkeit Gerichtsbehörden Gerichtsbeschluss/Tp Gerichtsdiener/N Gerichtsfall/Sp Gerichtsgebäude/N Gerichtshöfe/N Gerichtshof/ST Gerichtsklage Gerichtskreise Gerichtsnotar Gerichtspräsident Gerichtsreporter Gerichtssäle/N Gerichtssaal/ST Gerichtsschreiber/N Gerichtssitzung Gerichtsspruch Gerichtsstand Gerichtsummen Gerichtsurteil/E Gerichtsverfahren Gerichtsverfassung Gerichtsverhandlung/P Gerichtsvollzieher/FNS Gerichtswesen/S Geriesel/N Geringfügigkeit Geringschätzung Gerinnens Gerinnung/P Gerissenheit Germane/N Germanien Germanienpolitik Germanist/P Germanistik Gernegroß/P Geröll/S Geröllablagerung Geröllbank Gerontologie Gerste Gerstenkörnern Gerstenkorn/S Gerstensaft Gerstenstroh Gerte/N Gerüchen/I Gerücht/EPT Gerüchteküche/N Gerümpel/S Gerüst/EPT Geruch/T Geruchlosigkeit Geruchssinn/EPS Geruchsverschluss/Tp Gerundium/S Gesäß/EPT Gesamtablauf/Sp Gesamtalter Gesamtanforderung/P Gesamtanlagevermögen Gesamtanleihe Gesamtansicht Gesamtarbeitszeit Gesamtareal Gesamtaufkommen/S Gesamtaufwand Gesamtausfuhr Gesamtausgabe/N Gesamtausstoß/Tp Gesamtbank Gesamtbaufläche Gesamtbausumme Gesamtbedarf Gesamtbelastung Gesamtbelegschaft Gesamtbereich/EPS Gesamtbeschreibung Gesamtbestand/T Gesamtbetrag/STp Gesamtbevölkerung Gesamtbewegung Gesamtbewertung Gesamtbezug/STp Gesamtbilanz Gesamtbild/RST Gesamtdämpfung Gesamtdauer Gesamtdimension Gesamtdividende Gesamtdokumentation Gesamteindruck Gesamteinkommen/S Gesamteinlagen Gesamteinnahmen Gesamteinsparung Gesamtenergie Gesamtentwicklung Gesamtergebnis/Qq Gesamterscheinung Gesamtersparnis/q Gesamtertrag/Tp Gesamtetat Gesamtexport/S Gesamtforderung/P Gesamtform Gesamtforschungsvorhaben/S Gesamtgerät/T Gesamtgerätepreis/EPT Gesamtgeschichte Gesamtgewicht/S Gesamtgewinn Gesamtgröße/N Gesamtgrundfläche Gesamtgruppe/N Gesamthaushalt/ST Gesamtheit Gesamtherstellung Gesamthöhe Gesamthub/S Gesamtimport/E Gesamtinstallation Gesamtinteresse/NS Gesamtinvestition/P Gesamtkapazität Gesamtkapitulation Gesamtkomplex/EPT Gesamtkonzept/T Gesamtkosten Gesamtkreditgeschäft Gesamtkündigung Gesamtlänge/N Gesamtlaufzeit Gesamtleistung/P Gesamtleitung Gesamtlieferung Gesamtlieferzeit Gesamtliter Gesamtlösung Gesamtmarkt/T Gesamtmechanik Gesamtmenge/N Gesamtmesse Gesamtmobilmachung Gesamtobjekt Gesamtorganisation Gesamtpaket/EPST Gesamtpartei Gesamtplan/S Gesamtplanung Gesamtplatine Gesamtpotential/EPS Gesamtpotenzial/EPS Gesamtpreis/EPT Gesamtprodukt/EPS Gesamtproduktion Gesamtprogramm/S Gesamtprojekt/ST Gesamtprozess/EPT Gesamtquote/N Gesamtrahmen/S Gesamtreserve/N Gesamtresultat Gesamtschaden/S Gesamtschau Gesamtschema Gesamtschülerzahl/P Gesamtschulden Gesamtschule/N Gesamtschulzeit Gesamtsituation Gesamtspannung Gesamtspezifikation/P Gesamtstaat/PST Gesamtsteuern Gesamtstil Gesamtstimmen Gesamtstrafe Gesamtstrategie/N Gesamtstrecke Gesamtstunden Gesamtsumme/N Gesamtsystem/EPS Gesamtthema Gesamtüberschreitung Gesamtüberschuss/Tp Gesamtübersicht/P Gesamtumfang Gesamtumlauf/Sp Gesamtumsätze Gesamtumschlag/STp Gesamtumstände/N Gesamtunternehmen Gesamtverbrauch Gesamtverfügbarkeit Gesamtverlust/P Gesamtvermögen/S Gesamtverständnis/Qq Gesamtverteidigungsstärke Gesamtvolumen/S Gesamtvorgang Gesamtvorhaben/S Gesamtvorstände Gesamtvorstand Gesamtvorstellung Gesamtwert/EPS Gesamtwiderstand/S Gesamtwiedergabe/N Gesamtzahl Gesamtzeichnung/P Gesamtzusammenhang Gesamtzuwachs/T Gesandtschaft Gesang/STp Gesangbücher/N Gesangbuch/ST Gesangbuchsverse Gesanglehrer/FNS Gesangskultur Gesangsverein Gesangverein/EPS Geschäft/EPST Geschäftemacher Geschäftigkeit Geschäftigkeitsdrang Geschäftsabschluss/Tp Geschäftsadresse Geschäftsanschrift Geschäftsanteil/EPT Geschäftsaussichten Geschäftsbank/P Geschäftsbasis Geschäftsbauten Geschäftsbedarf/S Geschäftsbedingung/P Geschäftsbegrenzung Geschäftsbelastung Geschäftsbelebung Geschäftsbereich/EPS Geschäftsbereichsleiter/NS Geschäftsbericht/E Geschäftsbetätigung Geschäftsbeteiligung Geschäftsbeträge Geschäftsbeziehung/P Geschäftsbrief/ET Geschäftseinrichtung Geschäftseinstellung Geschäftsentwicklung Geschäftserfolg Geschäftsergebnis/Qq Geschäftseröffnung Geschäftsexpansion Geschäftsfahrten Geschäftsfeld/RT Geschäftsflaute Geschäftsfrauen Geschäftsfreund/EPT Geschäftsführer/FNS Geschäftsführung/P Geschäftsgang/Sp Geschäftsgebäude Geschäftsgebiet Geschäftsgeheimnis/Qq Geschäftsgeist Geschäftsgewinn Geschäftsgründung/P Geschäftshaus/Tp Geschäftsinhaber/NS Geschäftsinteresse Geschäftsjahr/EPST Geschäftsjubiläum Geschäftskosten Geschäftskunde/FN Geschäftslage/N Geschäftsleben Geschäftsleitung Geschäftsleitungsmitglied Geschäftsleute Geschäftslokal/E Geschäftsmänner Geschäftsmann/T Geschäftsmöglichkeit/P Geschäftsneubau Geschäftsobjekte Geschäftsordnung Geschäftspapiere/N Geschäftspartner/FNS Geschäftspläne Geschäftspolitik Geschäftspraktiken Geschäftsraum/STp Geschäftsreise/N Geschäftsreisender Geschäftsrisiko/S Geschäftsrückgang Geschäftsschluss/Tp Geschäftssitz/ET Geschäftsstadt Geschäftsstelle/N Geschäftsstraße/N Geschäftsstrukturen Geschäftstätigkeit Geschäftsteilhaber/NS Geschäftsübernahme Geschäftsunterlagen Geschäftsverbindung/P Geschäftsverkauf/Sp Geschäftsverkehr Geschäftsviertel Geschäftswelt Geschäftszahlen Geschäftszeit Geschäftszentrum Geschäftszimmer/NS Geschäftszuwachs/T Geschäftszweck/EPS Geschäftszweig/EPST Geschehens Geschehnis/Qq Gescheitsein Geschenk/EPST Geschenkabonnement/S Geschenkartikel Geschenkbuch Geschenkidee/N Geschenkpackung Geschenkpakete Geschenksendung/P Geschenkverpackung Geschichte/MN Geschichtenbaum Geschichtenerzähler Geschichtensammler Geschichtsabteilung Geschichtsbetrachtung Geschichtsbewusstsein Geschichtsbücher Geschichtsbuch Geschichtsforscher/FNS Geschichtsforschung Geschichtslehrer/FNS Geschichtsphilosophie Geschichtsschreiber/S Geschichtsschreibung Geschichtsunterricht Geschick/EPST Geschicklichkeit/P Geschicks Geschirr Geschirrreiniger/NS Geschirrspülautomat/P Geschirrspülmaschine/N Geschirrteile Geschlecht/RST Geschlechtsakt/EPST Geschlechtsgenossen Geschlechtskrankheit/P Geschlechtsleben/S Geschlechtsname/N Geschlechtsorgan/EPS Geschlechtsteil/EPS Geschlechtstrieb/EPS Geschlechtsverkehr/S Geschlossenheit Geschmäcker/N Geschmack/ST Geschmacklosigkeit/P Geschmacksempfinden Geschmacksrichtung/P Geschmackssache Geschmackssinn/EPST Geschmacksträgern Geschmacksverirrung/P Geschmeide/N Geschmeidigkeit Geschmiere/S Geschmunzel/S Geschnatter/S Geschöpf/EPS Geschoss/ET Geschreibsel/S Geschütz/EPT Geschützfeuer Geschwätz/T Geschwätzigkeit Geschwader/N Geschwindigkeit/P Geschwindigkeitsänderung Geschwindigkeitsbegrenzung/P Geschwindigkeitsbeschränkung/P Geschwindigkeitsempfehlung Geschwindigkeitsgrenze Geschwindigkeitsmesser/NS Geschwindigkeitsmessung/P Geschwindigkeitsrekord/E Geschwindigkeitssünder Geschwindigkeitsüberschreitung/P Geschwindigkeitsverluste Geschwindigkeitsweltrekord Geschwister/N Geschwisterkarten Geschworenengericht Geschwülste/N Geschwür/EPS Geschwulstbildung Geschwulstherde Geselchte/N Gesellenbrief Geselligkeit Gesellin/F Gesellschaft/PR Gesellschafter/FNS Gesellschafterversammlung Gesellschaftsfahrt Gesellschaftsform/P Gesellschaftshaus/Tp Gesellschaftskapital Gesellschaftskörper Gesellschaftskritik Gesellschaftsleben/S Gesellschaftslehre/N Gesellschaftsordnung Gesellschaftsorgane Gesellschaftsraum/STp Gesellschaftsreisen Gesellschaftsspiel/EPS Gesellschaftsstruktur/P Gesellschaftssystem/EPS Gesellschaftsteuererklärung Gesellschaftsversammlung Gesellschaftsvertrag/STp Gesellschaftswissenschaft/P Gesellschaftszimmer Gesellschaftszweck Gesetz/EPT Gesetzbücher/N Gesetzbuch/ST Gesetzesänderung/P Gesetzesantrag/STp Gesetzesarbeit Gesetzesbeschluss/Tp Gesetzesbestimmung/P Gesetzesbruch Gesetzesbuchstaben Gesetzesentwürfen Gesetzesentwurf/T Gesetzesflut Gesetzesform Gesetzesinitiative Gesetzesnorm/P Gesetzesnovelle Gesetzesverbot Gesetzesverstoß/Tp Gesetzesvorlage/N Gesetzesvorschlag/STp Gesetzeswissen Gesetzgeber/N Gesetzgebung/P Gesetzgebungsbefugnis/q Gesetzgebungskompetenz/P Gesetzgebungsmethoden Gesetzgebungsprozess/EPT Gesetzgebungsverfahren Gesetzlichkeit Gesetzlosigkeit Gesetzmäßigkeit/P Gesetzwidrigkeit/P Gesicht/RST Gesichtsausdrücke/N Gesichtsausdruck Gesichtsfarbe/N Gesichtsfeld Gesichtskrampf Gesichtskreis/EPT Gesichtslosigkeit Gesichtsmasken Gesichtspunkt/EPST Gesichtsverletzung/P Gesichtswahrung Gesichtszug/STp Gesinde Gesindel/S Gesinnung/P Gesinnungsethik Gesinnungsgenosse/N Gesinnungspflege Gesinnungswechsel/NS Gesittung/P Gesöff/EPS Gespann/S Gespenst/RT Gespensterfurcht Gespenstergesicht Gespensterschloss/T Gespensterstunden Gespielin Gespinst/EPST Gespött/ST Gespräch/EPST Gesprächigkeit Gesprächsaufzeichnung/P Gesprächsbereitschaft Gesprächsdauer Gesprächsführung Gesprächsgegenstand Gesprächsklima Gesprächslage/N Gesprächsleiter Gesprächsmöglichkeit/P Gesprächsnotiz Gesprächspartner/FNS Gesprächsprotokoll Gesprächsstoff/EPT Gesprächsteilnehmer/NS Gesprächstermin Gesprächsthema Gesprächsthemen Gesprächsweg Gespür/S Geständnis/Qq Gestänge/N Gestängeschalen Gestade/N Gestalt/J Gestaltungsmöglichkeit/P Gestaltungsprivileg Gestaltungsvorstellung/P Gestammel/S Gestank/ST Gestapo Gestapokommando Gestattens Gestattung/P Geste/N Gestein/EPS Gesteinsarten Gesteinsmassen Gesteinsunterscheidung Gestell/EPS Gestelleinheit Gestik/P Gestirn/EPS Gestöber/N Gestöhn/EST Gesträuch Gestrüpp Gestühl/EPST Gestüt/EPST Gesuch/EPST Gesundbrunnen Gesundheit Gesundheitsämter/N Gesundheitsamt/T Gesundheitsausschuss/Tp Gesundheitsdienst/E Gesundheitskampagnen Gesundheitskrise Gesundheitsmagazin/EPS Gesundheitsministerium Gesundheitspflege Gesundheitsschäden Gesundheitsverwaltung Gesundheitsvorsorge Gesundheitswäsche Gesundheitswesen/S Gesundheitszeugnis/Qq Gesundheitszustände Gesundheitszustand/T Gesundschrumpfung Getöse/S Getränk/EPST Getränkebox Getränkeforschung Getränkehersteller Getränkeindustrie Getränkeladung Getränkestand Getränkevertrieb Getratsche Getreide/S Getreideanbaubetrieb Getreideart/P Getreidebauern Getreideeinfuhren Getreideernte Getreidefeld/RST Getreideflut Getreidehändler Getreidehandlung/P Getreidelieferung/P Getreidemarkt/T Getreidemengen Getreidepreis/P Getreidepreisangleichung Getreidepreisgesetz Getreideproduktion Getreidesilo/S Getreidespeichern Getreidespeichers Getreidetransporte Getrenntheit Getriebe/S Getriebeschäden Getriebeschaden Getrippel Getto/S Getümmel/S Getue/S Gewächsanlage/N Gewächse/N Gewächshaus/Tp Gewähr/J Gewährens Gewährleistung/P Gewährträgerhaftung Gewänder/N Gewässer/NS Gewässerschutz Gewackel/S Gewahrsam/S Gewalt/P Gewaltakt/EPST Gewaltanwendung Gewaltausbrüche/N Gewaltausübung Gewaltenteilung Gewaltherrschaft/P Gewaltkampagne/N Gewaltkatastrophe Gewaltlauf/Sp Gewaltlosigkeit Gewaltmittel Gewaltschuss/Tp Gewalttäter/NS Gewalttätigkeit/P Gewaltverbrecher Gewaltverhältnis/Qq Gewaltverherrlichung Gewand/T Gewandtheit Gewebe/NS Gewebelagen Gewebeuntersuchung/P Gewehr/EPS Gewehrfeuer/S Gewehrkolben Gewehrkolbenschläge Gewehrlauf/STp Gewehrmannschaft Geweih/EPS Gewerbe/S Gewerbeanlagen Gewerbeanteil Gewerbeausstellung/P Gewerbebank Gewerbebau Gewerbebetrieb/S Gewerbefreiheit Gewerbegebiet Gewerbegrundstück Gewerbehalle Gewerbeoberlehrer Gewerbeobjekt Gewerbeordnung Gewerbepark/S Gewerberaum/STp Gewerbeschein/EPST Gewerbeschulen Gewerbesteuer/N Gewerbesteuerbescheid Gewerbevermittlung Gewerkschaft/PR Gewerkschafter/FNS Gewerkschaftler/FNS Gewerkschaftsbeteiligung Gewerkschaftsbewegung Gewerkschaftsbund Gewerkschaftschef Gewerkschaftsdelegation Gewerkschaftseinfluss/Tp Gewerkschaftsflügel Gewerkschaftsführers Gewerkschaftsführung Gewerkschaftsfunktionär/ES Gewerkschaftsgeschichte Gewerkschaftsgruppe Gewerkschaftsinstitut Gewerkschaftskasse Gewerkschaftskongress/EPT Gewerkschaftslager Gewerkschaftsleitung Gewerkschaftsmitglied/R Gewerkschaftsorganisation Gewerkschaftspartner Gewerkschaftsrat/S Gewerkschaftssieg Gewerkschaftssitzung Gewerkschaftstag/E Gewerkschaftsverbänden Gewerkschaftsverband/T Gewerkschaftsversammlung Gewerkschaftsvertreter Gewicht/JT Gewichtens Gewichtheber Gewichtsabnahme/N Gewichtsbeschränkung/P Gewichtsfaktor Gewichtsgruppen Gewichtsklasse/N Gewichtsverlagerung Gewichtsverlust/ET Gewichtsverteilung Gewichtsvorgabe Gewichtszunahmen Gewimmel/S Gewinde/NS Gewindebolzen Gewindebuchse Gewindeeinsätze Gewindereduzierung/P Gewinderohre Gewindestangen Gewindestangenlöcher Gewindestifte Gewindestreifen Gewinn/RST Gewinnabführung Gewinnabgabe Gewinnabschöpfung/P Gewinnabtretung/P Gewinnanteil/EPS Gewinnanteilschein/S Gewinnausfall/Sp Gewinnausschüttung/P Gewinnaussichten Gewinnausweis/EPT Gewinnberechtigten Gewinnberechtigter Gewinnbesteuerung Gewinnbeteiligung/P Gewinnchance/N Gewinneinbußen Gewinnens Gewinner/FNS Gewinnerwartung/P Gewinnerzielung Gewinnerzielungsgründen Gewinnerzielungsmotiv Gewinnerzielungstrieb Gewinnfavorit Gewinnmargen Gewinnmaximierung Gewinnmitnahme/N Gewinnmöglichkeit/P Gewinnnummer/N Gewinnposition/P Gewinnpotential/EPS Gewinnpotenzial/EPS Gewinnpunkte Gewinnrückgang Gewinnrückstellung/P Gewinnschätzung Gewinnschwelle Gewinnspanne/N Gewinnsteigerung Gewinnsteuern Gewinnsucht Gewinnsumme Gewinnung/P Gewinnungsanlage Gewinnungsgerät/T Gewinnungsprozess/EPT Gewinnverbesserung Gewinnverfolgung Gewinnverlagerung/P Gewinnverwendung Gewinnvorteile Gewinnwachstum Gewinnzone Gewinnzuteilung Gewirr Gewissenlosigkeit Gewissensbildung Gewissensbiss/EPT Gewissensdruck Gewissensfrage/N Gewissensfreiheit/P Gewissenskonflikt/EPT Gewissensnot Gewissenszwang/Sp Gewissenszweifel/NS Gewissheit Gewitter/NS Gewitterfront Gewitterregen Gewitterschauer Gewitterstörung Gewitterwand Gewitterwolke/N Gewöhnens Gewöhnung/P Gewölbe/NS Gewölk/E Gewohnheit/P Gewohnheitsdieb Gewohnheitsmensch/P Gewohnheitsrecht/EPT Gewohnheitstrinker/N Gewohnheitsverbrecher/NS Gewühl Gewürz/EPT Gewürznelke/N Gezappel Gezeitenstrom Gezeitenunterschied Gezeter Gezwungenheit Ghetto/S Ghostwriter/NS Gibraltar Gicht Giebel/NS Giebelwand Gierwinkel Gießer Gießerei/P Gießereibereich Gießereierzeugnis/Qq Gießereigruppe Gießereikenntnisse Gießkanne/N Gießtiegel Gift/ST Giftaffäre Giftanschlag/STp Giftmischerin Giftmorde/NS Giftmüll Giftmüllskandal Giftpilz/EPT Giftschlange/N Giftschlangenopfer Giftstoffe Gifttod Giftwanze Giftzähne/N Giftzahn/T Gigabyte Gigant/P Gigolo Gilde/N Gildenplatz Gina/S Ginkgo/S Ginko Gipfel/S Gipfelgespräch Gipfelhöhe Gipfelkonferenz/P Gipfelpunkt Gipfelsturm Gipfeltermin Gipfeltreffen Gips Gipsabdrücke/N Gipsabdruck Gipsbein Gipser Gipsfarbe Gipsfiguren Gipsverbände/N Gipsverband/ST Giraffe/N Girlande/N Giro/S Girokasse Girokonten Girokonto/S Gironde Gironetzen Giroverbände Giroverband Girozentralen Gitarre/N Gitarrenmusik Gitarrist/P Gitter/NS Gitterboxen Gitterfenster/NS Gitterkonstante/N Gittermasten Gitterschnitt Gitterstäbe Gitterstruktur Gizeh Gläser Glättens Glättung/P Glättungsmechanismus Gläubigerbank/P Gläubigergemeinschaften Gläubigerin/F Gläubigerkommission Gläubigern Gläubigers Gläubigerversammlung Gläubigkeit Glaceehandschuh/EP Glacéhandschuh/EP Glamour/S Glanz/T Glanzlederhose Glanzleistung/P Glanzlichter Glanzstoff Glanzzeit Glas/RT Glasaugen Glasbauten Glasbruchversicherung Glasdachs Glasdeckel Glasdosen Glasfabrik/P Glasfaserkabel Glasfenster Glasfiberleitung Glasfigur Glasfirmen Glasflächen Glasglocke/N Glasgow Glashaus/Tp Glashütten Glashüttenwerke Glaskästen Glaskasten Glaskörper Glaskugeln Glaskuppel Glaslinse Glasmalerei Glasmenagerie Glasnost Glaspalast Glasperlen Glasperlenspiel Glasplatte Glasscheibe/N Glasscherbe Glasschränke/N Glasschrank Glasstreifen Glassturz Glasteile Glasur/P Glasverschlag/STp Glasvitrine Glaswerk Glaszylinder Glatteis/T Glatteisbildung Glatteisgefahr Glattstellung/P Glatze/N Glaubens Glaubensangelegenheit/P Glaubensbekenntnis/Qq Glaubensbewegung Glaubenserfahrung Glaubensfragen Glaubensfreiheit/P Glaubensgemeinschaft Glaubensgenosse Glaubensideologie Glaubensimpulse Glaubenskongregation Glaubenslehre Glaubenssatz Glaubenssystemen Glaubenszweifel Glaubhaftigkeit Glaubwürdigkeit Gleichartigkeit Gleichbehandlungsprinzip Gleichberechtigung Gleichens Gleichfeld Gleichgewicht/EPS Gleichgewichtslage Gleichgewichtsstörung/P Gleichgültigkeit Gleichheit/P Gleichheitsgrundsatz/T Gleichheitsprädikat Gleichheitsprinzip Gleichheitszeichen Gleichklang Gleichlauf/Sp Gleichlaufregelung Gleichlaufsteuerung Gleichlaut/EPT Gleichmäßigkeit Gleichmacherei Gleichmachung Gleichmaß/ET Gleichmut Gleichnis/Qq Gleichrichter Gleichrichtung Gleichschaltung Gleichschritt Gleichsetzung Gleichspannung/P Gleichspannungsanteil Gleichspannungsquelle/N Gleichstand Gleichstellung/P Gleichstrom/S Gleichtakt Gleichtaktbereich Gleichtaktstörung/P Gleichtaktunterdrückung Gleichung/P Gleichungssystem/EPS Gleichverteilung Gleichwertigkeit/P Gleichzeitigkeit Gleis/EPT Gleitflug/STp Gleitklausel Gleitkommazahl/P Gleitmittel Gleitreibung Gleitverschluss/Tp Gleitzeit Gletscher/NS Gletscherpilot Gletscherspalten Gletscherzungen Glied/ST Glieder/J Gliederfüßler Gliederkette Gliederpuppe Gliederungspunkt/EPST Gliedmaßen Gliedstaaten Glimmstängel/NS Glitzerwaren Glöckchen/S Glöckner Globalbank Globaldarlehen Globaleinfuhren Globalhaftung Globalisieren/JS Globalurkunde/N Globetrotter/NS Globus Glocke/N Glockenblume/N Glockengeläut Glockenhüte Glockenhut Glockenröcke Glockenspiel/EPS Glockenspitz Glockentürme Glockenturm/T Gloria/S Glorienschein Glossar/S Glosse/N Glotzkiste Glück/ST Glückauf Glücklichsein Glücksache/N Glückseligkeit Glücksfall/Sp Glücksfarben Glücksgefühl Glückskind/RT Glückslos/EPT Glückspillen Glückspilz/EPT Glücksritter/NS Glücksspiel/EPS Glücksspielautomat/P Glücksspielgerät/E Glücksstage/NS Glückssterne/NS Glückstag Glückszahlen Glückwünsche/N Glückwunsch/T Glückwunschansprache Glückwunschbotschaft Glückwunschkarte Glückwunschschreiben Glückwunschtelegramm/P Glühbirne/N Glühlampe/N Glühwein/EPST Glühwürmchen/S Glut Glutaminsäure Gluthitze Glykol Glyzerin GmbH Gnade/N Gnadenakt Gnadenbrot Gnadenfrist/P Gnadengesuch/EPS Gnadenschuss/Tp Gnom/P Gnosis Gnu/S Gödel/S Gödelisierung Gönner/FNS Gönnerschaft/P Gönnertum Göre/N Göring/S Göteborg Götter/N Götterbote/N Götterdämmerung Götterkult Götterlehren Götterspeise Götterwelt Göttin/F Göttingen Götze/N Götzenbild/T Götzenbildern Götzendienst Gockel Godesberg/R Goethe/S Goethepreis/P Gold/ST Golda/S Goldabarten Goldaktien Goldanleger Goldanleihe Goldanteil Goldband Goldbarren/S Goldbecher Goldbesitzer Goldbestände Goldbestand Goldblech Goldbonds Golddeckung Goldentwicklung Goldexperte Goldfisch/E Goldfischbassin Goldförderung Goldfund Goldfunke Goldgehalt Goldgewinnung Goldgläubige Goldgrube/N Goldhändler Goldhamster/NS Goldhandels Goldhausse Goldhölle Goldhoch Goldimporte Goldinteressenten Goldkäufe/NR Goldkauf/Sp Goldkörnchens Goldküste Goldkurs/T Goldlack Goldmacher Goldmarkt/STWp Goldmedaillen Goldmedaillenanwärter Goldmedaillengewinner Goldminen Goldminenaktien Goldminenanteile Goldminenrevier Goldmünze/N Goldmünzenkategorien Goldpeseta Goldpokal Goldprägung Goldprämie Goldpreis/EPT Goldpreissenkung Goldpreissteigerung/P Goldproduzenten Goldrand Goldrausch Goldreport Goldreserven Goldrubel Goldsaal Goldschatz/T Goldschmied/EPST Goldschnallen Goldstandards Goldstaub Goldstück Goldstückchen Goldsucher Goldtransporter Goldtraum/STp Goldtresor Goldverkäufern Goldverluste Goldvermögen Goldvorkommen Goldvorräte Goldwährung Goldwaage Goldwaren Goldwarenfabrik Goldwerte Goldzähne Goldzuwendung/P Golf/RST Golfhotel Golfkrieg/S Golfküste Golfplätze/N Golfplatz Golfschläger/N Golfspiel/PR Golfspieler/FNS Golfstaaten Golfstrom Gomorrha Gomulka/S Gondel/N Gondelhandel Gondwanaland Gong/S Gorbatschow/S Gorgonzola Gorilla Gorki Goslar Gosse Gotha/S Gott/HT Gottbekenntnis/Qq Gottesäcker Gottesacker/S Gottesdienst/EPT Gottesfurcht Gottesgaben Gottesgericht Gottesglauben Gotteshaus/Tp Gotteslästerung/P Gottesmann Gottessohn/T Gottesvolk Gottesvorstellung/P Gotthard/S Gotthelf/S Gottlosigkeit Gottvertrauen Gouda Gouvernante/N Gouverneur/EFPS Gouverneurspalast Goya/S Gräben Gräber/N Gräberfriedhof Gräfin Gräser/N Gräte/N Gräuel Gräuelmärchen Gräuelmeldung/P Gräueltat/P Grab/JST Grabenkrieg Grabenplatz Grabenräumlöffel Grabens Grabentiefe Grabeskirche Grabesstille Grabfortschritt Grabgewölbe Grabinschriften Grabkirche Grabkreuz Grabmal/EPS Grabpflege Grabräuber Grabrede Grabstein/EPS Grabsteinplatte Grabsteinschmierereien Grabstock Grabtuch Grabungsberichte Grace/S Gracht/P Gracia/S Grad/EPST Gradeinteilung/P Gradient/P Gradmesser Graffiti Grafik/PR Grafikanzeige/N Grafikauflösung/P Grafikbefehl/EPS Grafikbildschirm/EPS Grafikcomputer Grafikdarstellung/P Grafikdisplay/S Grafiker/FNS Grafikfeld/RT Grafikinterface/S Grafikkarte/N Grafikkartenauflösung/P Grafikkoordinaten Grafikoberfläche/N Grafikprogramm/EPS Grafikprozessor/PS Grafiksoftware Grafiksystem Grafiktablett/S Grafikterminal/S Grafikzeile/N Grafit/S Grafologe/FN Grafschaft/P Gralsritter Gramm/S Grammatik/P Grammgewichte Grammophon/EPS Grammophonplatten Granat/EPST Granatäpfel/N Granatapfel/S Granatsplitter/NS Granatwerfer Granit/S Granulat Graph/Pf Graphensprache/N Graphentheorie Graphersetzungssystem/EPS Graphik/PR Graphikanzeige/N Graphikbildschirm/EPS Graphikdarstellung/P Graphikdisplay/S Graphiker/FNS Graphikfeld/RT Graphikinterface/S Graphikkoordinaten Graphikprozessor/PS Graphiktablett/S Graphikterminal/S Graphikzeile/N Graphit Graphologe/FN Graphologie Gras/T Grashalm/ET Grasland Grasplacken Grasteppich Grat/EPS Gratifikation/P Gratisaktie/N Gratisexemplar/EPS Gratishilfe Gratislieferung Gratismuster/N Gratisprospekt/EPST Gratisreport Gratulant/P Gratulation/P Gratulationsempfang Graupe/N Grausamkeit/P Grautier/ET Grautöne/N Grauzone/N Gravierens Gravierung/P Gravitation Gravitationsfeld Gravitationsgesetz/T Gravitationsrichtung Gravitationszentrum/S Gravur Graz Grazie Greenhorn/S Greenpeace Greenwich Gregor/S Greifer Greifhand Greis/F Greisenalter Gremien Gremium/S Grenada Grenoble Grenzabkommen Grenzabstand Grenzangelegenheit/P Grenzausgleich Grenzausschuss/Tp Grenzbeamten Grenzbehörden Grenzbereich/EPS Grenzbewohner/S Grenzbrigaden Grenzdruck Grenzdurchbruch Grenzdurchgangslager Grenzer Grenzfahrten Grenzfall/Sp Grenzfläche/N Grenzfluss/Tp Grenzformel Grenzfrage Grenzfrequenz/P Grenzgänger/NS Grenzgebirge Grenzgefecht Grenzgewässer Grenzhelfern Grenzhindernis/Qq Grenzkanal Grenzkontrollen Grenzkontrollstelle/N Grenzkorrekturen Grenzkurve Grenzland Grenzlandausschuss/Tp Grenzlanddebatten Grenzlandtheater Grenzlinie/N Grenzmarke Grenznachbarschaft Grenzoffizier Grenzordnung Grenzorten Grenzparameter Grenzpatrouille Grenzpfähle Grenzpolizist/P Grenzproblem/EPS Grenzprovokateure Grenzprovokation/P Grenzpunkte Grenzraum/STp Grenzregulierung/P Grenzschicht/P Grenzschichterkennung Grenzschützer Grenzschutz/T Grenzschutzamt Grenzschutzbeamte Grenzsicherheitsvertrag/STp Grenzsicherungsanlagen Grenzsicherungskräfte Grenzsperren Grenzstadium Grenzstadt Grenzstein/EPS Grenzstelle Grenzstrecke Grenzstreifen Grenzstreitigkeit/P Grenztruppe Grenzübergang/Sp Grenzübergangsort Grenzübergangsstelle Grenzübertritt/S Grenzüberwachung Grenzverkehr/S Grenzverletzung Grenzvertrag/STp Grenzwächter Grenzwache Grenzweg Grenzwert/EPT Grenzzollämtern Grenzzone Grenzzwischenfall/Sp Gretchenfrage/N Grete/MS Grieche/FN Griechenland/S Griechenlandreisen Grieß/EPT Grießbrei Griesgram/S Griffbrett/RS Griffe Griffel/NS Griffs Grillengezirp Grillrestaurant Grimasse/N Grimm/S Grippe Grippeerkrankung/P Grippespezialist Grippewelle Grips Grislibär/P Grizzlybär/P Grönländer/FN Grönland/S Größe/N Größenangabe/N Größenbeschränkung/P Größenklasse/N Größenmaßstäbe/N Größenordnung/P Größenverhältnisse/N Größenwahn/S Grobdifferenzierung Grobeinstellung/P Grobfunktionalität/P Grobheit/P Grobian/EPS Grobkonzept Grobschlächtigkeit Grobstruktur Grog/S Groll/S Gromyko/S Großabnehmer Großaktionär/EPS Großalarm Großangebot Großangriffe Großanlage/N Großartigkeit Großaufgebot/EPS Großaufnahme/N Großauftrag/STp Großbanken Großbaustelle/N Großbauten Großbesitz Großbetrieb/EPS Großbetrug/S Großbrände Großbrand/T Großbritannien/S Großbürger Großbuchstabe/N Großbuchstaben/S Großcomputer/NS Großeinkauf/Sp Großeinsätze/N Großeinsatz/T Großeltern Großenkel/FNS Großfahndung Großfamilie Großfeuer/NS Großfirmen Großflugzeug/E Großformat/EPS Großforschungseinrichtung/P Großfürst Großgarage Großgemeinde Großgrundbesitzer Großgrundstück Großhändler/FNS Großhandel Großhandelsabteilung Großhandelsfirmen Großhandelspreis/EPT Großhandelssätzen Großhandelsstufe Großhandelsunternehmen Großhandlung/P Großherzigkeit Großherzog Großhirn/S Großindustrie/N Großinstitut Großkampagne Großkapital Großkonzern/EPS Großkopf Großkulturen Großkulturfilm Großkunde/N Großmächten Großmäuler Großmacht Großmama Großmannssucht Großmarkt/Tp Großmaschinen Großmast Großmaul/S Großmogul Großmütter/N Großmut Großmutter/S Großoffensive Großonkel/S Großproduzent Großraum/STp Großraumflugzeug/E Großraumfrachter Großrechenanlage/N Großrechner/N Großreich Großreinemachen/S Großschnauze Großschreibung Großschreibweise Großschrift Großserie/N Großspekulanten Großstädte/N Großstadt Großstadtbevölkerung Großstadtkind Großstadtkunde Großstadtleser Großstadtmelodie Großstadtmensch Großtanker Großtankstelle/N Großtanten Großtaten Großtechnik Großteil/S Großterminal Großunternehmen/J Großunternehmer/NS Großväter/N Großvater/S Großveranstaltung/P Großverbraucher Großverdiener/NS Großverlag/EST Großverleger Großverteiler Großvieh Großviehhäute Großwerft/P Großwesir Großwildjägerei Großwildjägern Großzimmer/N Großzügigkeit Groschen/S Groschenheft Grossist/P Grossistenverband Grotte/N Grübchen Grübelei/P Grünanlage/N Gründens Gründer/FNS Gründerfamilie/N Gründergesellschaften Gründerjahren Gründerstaat Gründerzeit Gründlichkeit Gründung/P Gründungsausschuss/Tp Gründungsgeneration Gründungsgesetz Gründungsinitiative/N Gründungsjahr Gründungskonferenz Gründungskongress/EPT Gründungskosten Gründungsmitglieder Gründungstag Gründungsurkunde/N Gründungsversammlung Gründungsvertrag/STp Grünfläche/N Grünfutter/S Grünkohl Grünschnäbel/N Grünschnabel/S Grünspan/S Grünzeug Grünzweig Grube Grubenanlagen Grubenarbeiter/NS Grubenbau Grubenbetrieb Grubenexplosion Grubenfahrten Grubenfeld Grubenfelder Grubenleitung Grubenlokführer Grubenpersonals Grubenzechen Gruft Grund/ET Grundannahme/N Grundarrangement Grundauffassung/P Grundausbildung/P Grundausrüstung Grundaussage/N Grundausstattung Grundbedeutung/P Grundbedingung Grundbedürfnis/Qq Grundbegriff/EPS Grundbeschaffung Grundbesitz/RT Grundbesitzer/NS Grundbewegung/P Grundbleche Grundbücher Grundbuch/T Grundbuchämter/N Grundbuchamt/T Grundbuchapparat Grundbuchauszug/Sp Grundbucheintrag/STp Grundbuchsicherung Grunddilemma Grundeigentümer/N Grundeigentum/S Grundeinheit/P Grundeinstellung/P Grundelement/EPS Grundempfehlung Grundentscheidung/P Grunderfahrung Grunderfordernis/Qq Grunderwerbssteuer Grundfarbe Grundfeste/N Grundfigur Grundfinanzierung/P Grundfläche/N Grundförderung Grundform/P Grundformel/N Grundfrage/N Grundfreiheit/P Grundfunktion/P Grundgebühr/P Grundgedanke/N Grundgehalt Grundgerät/T Grundgeschwindigkeit/P Grundgesetz/EPT Grundgesetzänderung/P Grundgesetzergänzung Grundhaltung Grundharmonie Grundidee/N Grundierung Grundindustrien Grundinformationen Grundkapital Grundkapitalien Grundkategorie/N Grundkenntnis/q Grundkörper Grundkomponente/N Grundkonzept Grundkosten Grundkurs/EPT Grundlage/N Grundlagenarbeit Grundlagenforschung/P Grundlinie/N Grundlinienball/Sp Grundlinienschlägen Grundlöcher Grundlöhne/N Grundlohn/T Grundlosigkeit Grundmandat Grundmaterial Grundmauer/N Grundmaxime/N Grundmessung/P Grundmoräne Grundobjekt/EPST Grundoperation/P Grundordnung/P Grundpaket Grundpfeiler/NS Grundplatine Grundplatte/N Grundpreis/EPT Grundprinzip Grundprinzipien Grundproblem/EPS Grundproduktion Grundprogramm Grundrahmen/S Grundrate/N Grundrechner Grundrecht/EPST Grundrechtskatalog/EPST Grundrechtsschutz Grundrechtssicherung Grundregel/N Grundrente/N Grundressource/N Grundriss/EPT Grundsätze/N Grundsätzlichkeit Grundsatz/T Grundsatzabkommen/S Grundsatzarbeit Grundsatzentscheidung/P Grundsatzerklärung Grundsatzfrage/N Grundsatzkatalog Grundsatzprogramm Grundsatzreferat/EPST Grundschicht/P Grundschlägen Grundschüler Grundschuldbriefe Grundschule/N Grundschulklassen Grundschutz Grundsicherung Grundsituation Grundsockel Grundsoftware Grundstein/EPST Grundstellung Grundsteuer/N Grundstipendien Grundstoff/EPS Grundstoffindustrie/N Grundstolz Grundstrategie/N Grundstruktur/P Grundstück/EPST Grundstückerschließung Grundstückneubewertung Grundstücksankauf/Sp Grundstücksanteil Grundstücksausnutzung Grundstückseigentümer Grundstückserschließung/P Grundstücksinvestition/P Grundstückskauf/Sp Grundstückskosten Grundstücksmakler/FNS Grundstücksmarkt/ST Grundstücksspekulation/P Grundstücksteuer Grundstücksverhandlung/P Grundstücksverkauf/Sp Grundstücksverkehr Grundstückswerte Grundstudium/S Grundsymbol/EPS Grundsystem/EPS Grundtabak Grundtendenz/P Grundterm/EPS Grundthema Grundübel Grundüberlegung/P Grundüberzeugung/P Grundverfassung Grundvermögen/S Grundversion/P Grundvoraussetzung Grundwasser/S Grundwasserexploration/P Grundwasserspiegel Grundwehrdienst/T Grundwert/EPST Grundwissen/S Grundzahl/P Grundzins/PT Grundzug/STp Grundzustand/ST Grunewald Grunge Gruppe/N Gruppenaufnahmen Gruppenautomatik/P Gruppenautomatisierung/P Gruppenbetreuung Gruppenbewusstsein Gruppenbezeichnung/P Gruppenbild/RT Gruppenbindung Gruppendurchschnitt Gruppenethos Gruppenfahrt Gruppenfolgen Gruppenführer Gruppenfunktion/P Gruppengröße/N Gruppenidentifikation/P Gruppeninteresse/N Gruppenkonzept Gruppenleiter Gruppenrechnung Gruppenreise Gruppensex Gruppensieger Gruppenspiele Gruppensteuerung/P Gruppenstruktur Gruppenumsatz/T Gruppenverhalten Gruppenversicherung Gruppierens Gruppierung/P Gruß/T Grußadresse/N Grußbotschaft/P Grußform Grußschreiben Grußtelegramme Grußwort/EPST Gruselfigur Gruselgeschichten Gruselkabinett Gst Gültigkeit Gültigkeitsbegriff/EPS Gültigkeitsbereich/EPST Gültigkeitsdauer/N Günter/S Günther/S Gürtel/NS Gürtellinie/N Gürtelschlaufen Gürteltier Güte/R Güteklasse/N Gütemerkmal Güter/N Güterabfertigung/P Güterannahmen Güterart Güteraustausch Güterbahnhöfen Güterbahnhof/S Güterdirektor Güterfernverkehr Gütergemeinschaft Gütergruppen Gütermenge Güterproduktion Güterschiff Güterschuppen Güterstand Gütertarif Gütertariferhöhung Gütertransporte Gütertrennung Güterumschlag/STp Gütervermittlung Güterwachstum Güterwagen Güterwaggon Güterzug/STp Gütevorschrift/P Gütezeichen/S Guayana Gucklöcher Guerillakrieg Guerillatruppe Guerillero/S Guido/S Guillaume/S Guillotine/N Guinness Gulasch/S Gulaschkanone Gulden Gummersbach Gummi/S Gummibänder/N Gummibärchen/S Gummiball/Sp Gummiband/T Gummierungsschicht Gummifuß/Tp Gummihandschuhe Gummiknüppel/N Gummilagerung Gummimann Gummimaschine/N Gummiparagraph/Pf Gummiräder Gummireifen Gummiriemen Gummiring Gummischleuder Gummischuhe/N Gummisohlen Gummistiefel/N Gummitüllen Gummiwährung/P Gummiwalze Gummiwaren Gummizelle/N Gunst/P Gunther/S Gurgel Gurgelwasser Gurke/N Gurkensalat Gurt/P Gurtbefestigung/P Guru/S Guss/Tp Gussbeton/S Gusseisen Gusserzeugnis/Qq Gussform/P Gussgehäuse/N Gusskasten Gussradiatoren Gussstahlfabrikation Gussstahlwerk Gusto Gutachten/S Gutachter/FNS Gutachterkommission/P Gutartigkeit Gutdünken Gutenberg/S Guthaben/S Guthabensalden Guts Gutsbesitz/R Gutschein/EPS Gutscheinempfänger Gutscheinheft Gutschrift/P Gutshaus/Tp Gutsherren Gutshöfe Gutshof/T Gutwilligkeit Gymnasiallehrer Gymnasialschulzeit Gymnasiast Gymnasiastenschwank Gymnasien Gymnasium/S Gymnastik Gymnastikhalle/N Gymnastiklehrer/F Gymnastikraum/STp Gymnastikschule Gynäkologe/FN Gynäkologie HIV HP HTML Häfen Häftling/EPS Hähne/MN Häkchen/S Hälfte/N Hälse/N Hämmer Hämoglobin Hämophilie/N Hämorrhoide/N Hämorride/N Hände/MN Händedrücke/N Händedruck Händel Händeschütteln Händler/FNS Händlererfolg Händlerfirmen Händlerkreisen Händlernachweis/EPT Händlerpreis/EPT Hänfling/ES Hängebrücke/N Hängebusen Hängematte/N Hängenbleiben Hänschen/S Häppchen/S Härtefall/Sp Härtefonds Härtens Härterei Härtetemperatur/P Härtung/P Häscher/NS Hässlichkeit/P Häufchen/S Häufens Häufigkeit/P Häuflein/S Häufung/P Häupter/N Häuptling/EPS Häuschen/S Häuser/N Häuserbau Häuserblöcken Häuserblock/S Häuserfronten Häuserkante Häusertrümmern Häuserwänden Häuserwand Häute/N Häuten/JS Haag Haar/EPST Haaransatz Haarausfall Haarbürste/N Haarbüschel Haaresbreite Haarfilz Haarfransen Haarkappe Haarknoten Haarkrause Haarmähne Haarnadel Haarpflegemittel Haarschmuck Haarschnitt/EPS Haarschopf Haarspray/S Haarsträhne/N Haartracht Haarwäsche/N Haarwaschmittel/S Haarwasser/S Haarwuchsmittel/NS Habakuk/S Habenichts Habenseite Habenzins/T Habenzinssätze Habgier Habicht/EPS Habilitation Habilitationsrecht Habitus Habsburg/S Habseligkeit/P Habsucht Hachse/N Hackbraten Hackbrett Hacker/N Hackerversuche Hackfleisch/S Hades Hadrianwall Hafen/S Hafenanlagen Hafenarbeiter/N Hafenarbeiterstreik Hafenbahn Hafenbecken Hafenbehörden Hafenbetrieb Hafendamm Hafeneinfahrt Hafenfeuerwehr Hafengebiet Hafengelände/S Hafenkommandanten Hafenkosten Hafenmeister/S Hafenmelodien Hafenregion/P Hafenschuppen Hafenstädten Hafenstadt Hafensteuern Hafenviertel/NS Hafer/S Haferbrei/EPS Haferflocken Haferschleim/S Haft/J Haftanstalt Haftbefehl/EPS Hafteigenschaften Haftetiketten Haftpflicht Haftpflichterklärung Haftpflichttarife Haftpflichtversicherung Haftreibung Haftstrafe/N Haftstreifen Haftung/P Haftungsrecht Haftungsübernahme Haftvermittler/N Haftverschonung Haftzeit Haftzellen Hagebutte/N Hagel/S Hagelbildung Hagelkörner/N Hagelkorn Hagelschauer/N Hagelschlag/STp Hagen Hahn/S Hahnenfuß/Tp Hahnenkamm Hahnenschrei/PS Hai/ENPST Haifa Haifische/N Hain/EPST Hakenkreuz/P Hakenkreuzbanner Hakens Halbbrüder/N Halbbruder/S Halbdot/S Halbdottechnik Halbedelsteine Halbfinale/N Halbgeschwistern Halbgott Halbgruppe/N Halbheit Halbidiot Halbierens Halbierung/P Halbinsel Halbintellektueller Halbjahr/ST Halbjahresabonnement/S Halbjahresbericht/EPS Halbjahresergebnis/Qq Halbjude Halbkreis/EPT Halbkugel/N Halbleder Halbleiter/NS Halbleiterbausteine Halbleiterindustrie Halbleitermarkt/ST Halbleitermaterial Halbleiterprodukte Halbleitertechnik Halbmond/EPST Halbpension Halbpunkt Halbschlaf Halbschuh Halbtagsarbeit/P Halbtagskraft Halbwaren Halbwertszeit Halbzeit Halbzeitergebnis/Qq Halbzeitpfiff Halbzeuge Halde/N Halfter/S Hall/S Halleluja Hallenbäder/N Hallenbad Hallenbahn Hallenbauten Hallenbestleistung Hallendecke Hallenfläche Hallengröße/N Hallensaison Hallenschwimmbad Hallenspiel/P Hallensportfest Hallentest Hallenturnier Hallenweltrekordler Hallenwettkämpfe Halley/S Hallig/P Halluzinogen/EPS Halm/EPS Halogen/EPS Hals/T Halsabschneider/NS Halsader Halsausschnitt/EPT Halsbänder Halsband/T Halsbinde Halsentzündung/P Halskette/N Halskrause Halsschlagadern Halsschmerzen Halstücher Halstuch/T Halsweh Halswirbel Haltbarkeit Haltbarkeitsdatum/S Haltebohrung/P Haltefeder Halteleiste Haltens Halteplätze/N Halteplatte/N Halteplatz/T Halteproblem/S Haltepunkt Halter/JNS Halteriegel Halterungsbügel Halterungsschiene Halteschild Haltestelle/N Haltestreifen Halteverbot/PS Haltevermögen/S Haltewinkel Haltlosigkeit/G Haltung/P Haltzeichen/S Halunke/N Hamburg/RS Hamburger/FNS Hamed/S Hamlet/S Hammel/N Hammelfelle Hammelfleisch/ST Hammelfleischbüchsen Hammer/S Hammerklavier Hammerschlag/Tp Hammerschraube Hampelmänner/N Hampelmann/S Hampshire Hampton Hamster/NS Hamsterkäufe/N Hand Handarbeit/PR Handarbeiter/FNS Handball/Sp Handballbund/T Handballmeister Handballmeisterschaft Handballspieler/N Handballtore Handbetrieb Handbewegung/P Handblatt Handbremse/N Handbücher/N Handbuch/ST Handdrucker Handel/S Handelns Handelsabkommen/S Handelsauskünfte Handelsaustausch Handelsbank Handelsbankfamilien Handelsbegünstigung/P Handelsbeschränkung/P Handelsbetriebe Handelsbeziehung/P Handelsbilanz/P Handelsbilanzdefizit/E Handelsbilanzzahlen Handelsblättern Handelsblatt/T Handelsblockade Handelsboom Handelsbrauch Handelsbüro/S Handelsdefizit/S Handelsdelegierter Handelsembargo Handelsfirma Handelsfirmen Handelsflotte Handelsformen Handelsfragen Handelsgebiet Handelsgenossenschaft/P Handelsgeschäft/E Handelsgesellschaft Handelsgespräch/EPS Handelsgruppen Handelsgüter Handelshaus/Tp Handelshochschule/N Handelsimperium Handelskammer/N Handelsketten Handelskonferenz Handelskontor Handelskreise/N Handelskurs Handelsmacht Handelsmarine Handelsmarke/N Handelsminister/N Handelsministerien Handelsministerium Handelsmissionen Handelsmöglichkeit/P Handelsnation/P Handelsniederlassung Handelsobjekte Handelsorganisation/P Handelspartner/S Handelspolitik Handelspreise Handelsprotokoll Handelsrecht/EPS Handelsregister/N Handelsregisterauszug/STp Handelsreisenden Handelsrichter/N Handelsschiff/EPT Handelsschifffahrt Handelsschüler Handelsschule Handelsseite Handelsspanne Handelssperre Handelssprache Handelsstädte/N Handelstage/S Handelstraße Handelsüberschuss/Tp Handelsumsatzes Handelsunion Handelsverein Handelsverkehrs Handelsvertrag/Tp Handelsvertreter/N Handelsvolumen Handelsvorteile Handelsware Handelswert/EPST Handelszeichens Handelszentrale Handelszentren Handelszweig/EPST Handfeger/S Handfertigkeit/P Handfläche/N Handgelenk/EPS Handgemenge Handgepäck/S Handgerät Handgranate/N Handgreiflichkeit/P Handgriff/EPS Handhabbarkeit Handhabens Handhabung/P Handicap/S Handikap Handkoffer/NS Handkuss/MTp Handlanger/N Handlinie/N Handlung/P Handlungsanweisung/P Handlungsdauer Handlungsfähigkeit Handlungsfreiheit Handlungskonzept Handlungsmaxime/N Handlungsmöglichkeit/P Handlungsreisende/NR Handlungsunfähigkeit Handlungsvollmacht/P Handlungsweise/N Handpotentiometer/NS Handpresse Handrücken/S Handschalter Handscheinwerfer Handschellen Handschlag/STp Handschrift/P Handschriftenkunde Handschuh/EPS Handschuhkasten Handshake Handskizze Handspiegel/NS Handstand Handstreich Handstück Handtasche/N Handtastatur Handteller Handterminal/S Handtücher/N Handtuch/T Handumdrehen Handwaffe/N Handwerk/EPRS Handwerker/FNS Handwerksbetriebe/N Handwerksbursche Handwerksjugend Handwerkskammer/N Handwerksmeister/N Handwerksordnung Handwerksorganisation/P Handwerkstechnik Handwerksunterricht/S Handwerkswirtschaft Handwerkszweig Handwörterbücher/N Handwörterbuch/ST Handy/S Handzeichen/S Handzeichnung Handzettel/NS Hanf/ST Hanfballen Hanfseilfabrik Hang/ST Hangar Hanggrundstück/EPS Haniel/S Hanne/S Hannelore/S Hannover/S Hannoveraner Hannovermesse Hanoi Hans/E Hansdampf Hanseat/P Hansestädte/N Hansestadt Hanswurst/E Hantel Happyend/S Harakiri Harald/S Harburger Hardcopy Hardcover/S Harddisk/S Harddiskbetrieb Hardrock Hardware Hardwareänderung/P Hardwaredefekt/ES Hardwareeinheit/P Hardwareerweiterung/P Hardwarefrage/N Hardwarehandshake/S Hardwarekomponente/N Hardwarekonfiguration/P Hardwaremodifikation/P Hardwarepflege Hardwarepreis/E Hardwareproblem/EPS Hardwareprotokoll/ES Hardwareschnittstelle/N Hardwareseite Hardwaretest/S Hardwareübersicht/P Hardwareversion/P Hardwarevoraussetzung/P Harem/S Haremsdame Harfe/N Harlekin Harlem Harmlosigkeit Harmonie Harmonisierens Harmonisierung/P Harmonium Harn/S Harnblase Harnleiter/NS Harnröhre/N Harnsäure Harnstoff/EPS Harnuntersuchung/P Harnwege Harold/S Harpune/N Harpunier/S Harro/S Hartgeld/RST Hartmut/S Hartnäckigkeit Hartpapier Hartpapiermaterial Hartstein Hartwährung/P Hartwaren Hartweizen Hartwurst Harvard/S Harvey/S Harz/EPT Hasardeur/ES Haschisch/S Hase/N Haselmäuse Haselmaus Haselnüsschen Haselnuss/p Haselnussstrauch/S Haselsträucher/N Haselstrauch/S Hasenbraten/S Hasenfamilie Hasenfuß/Tp Hasenpfad Hasenscharte/N Haskell Hass/T Hassgefühl/EPS Hasskomplex/EPT Hassliebe/N Hastings Haube/N Hauer/N Haufen/S Haufenbildung Hauff/S Hauklotz/T Haupt/ST Hauptabsatzgebiet Hauptabteilung/P Hauptakteur/E Hauptaktionär/EPS Hauptaktivität/P Hauptakzent/EPST Hauptangeklagte/NR Hauptanliegen/S Hauptanteil/EPS Hauptanwärter Hauptanwendungsgebiet/EPS Hauptarbeit/P Hauptarbeitsbereich/EPS Hauptargument Hauptarmee Hauptaspekt/EPST Hauptattraktion/P Hauptaufgabe/N Hauptaugenmerk Hauptausfuhrgebiete Hauptausgaben Hauptausrede Hauptautor Hauptbände Hauptbadestrand Hauptbahnhöfen Hauptbahnhof/S Hauptbedingung/P Hauptbelastungszeuge Hauptberuf Hauptbeschäftigung/P Hauptbild Hauptbindeglied Hauptbuchhalter Hauptbuchhaltung Hauptcomputer Hauptdarsteller/FNS Hauptdirektion Hauptdorf Hauptdrahtzieher Hauptecho/S Haupteinflugschneise Haupteingang/Sp Haupteinkommen Haupteinnahmequelle Hauptelement Hauptentschädigung Hauptereignis/Qq Haupterwerb Haupterzeugergebiete Haupteslänge/N Hauptfächer/N Hauptfach/ST Hauptfehler Hauptfeld Hauptfenster Hauptfigur Hauptfilm/PS Hauptforderung Hauptfrage/N Hauptfriedhof/T Hauptfunktion/P Hauptgebäude Hauptgebieten Hauptgefreiten Hauptgegner Hauptgemeinschaft Hauptgericht/EPS Hauptgeschäftslage Hauptgeschäftszeit/P Hauptgesprächspartner Hauptgesprächsthema Hauptgesprächsthemen Hauptgestalten Hauptgewicht Hauptgewinn/EPRS Hauptgrafiken Hauptgraphiken Hauptgründe/N Hauptgrund/T Hauptgruppe/N Haupthaus/Tp Haupthindernis/Qq Hauptindiz Hauptinhaber Hauptinhalt Hauptinspekteur Hauptinstrument Hauptinteresse/N Hauptkampf Hauptkassen Hauptkirche Hauptknüller Hauptkomponente/N Hauptkreditnehmer Hauptkriegsverbrecher Hauptkritikpunkt/EPST Hauptkurse Hauptlehre/R Hauptlehrer/N Hauptlieferant/P Hauptmächte Hauptmännern Hauptmacht Hauptmahlzeiten Hauptmangel Hauptmann/S Hauptmarkt/Tp Hauptmenge Hauptmenü Hauptmerkmal/S Hauptmessung Hauptmiete/R Hauptmodul/S Hauptnährstoff Hauptnachfrage Hauptnachteil/EPS Hauptnahrung Hauptnetz Hauptnutzen/S Hauptperson/P Hauptpfad Hauptpfeiler Hauptplatine Hauptpostamt Hauptpostfach Hauptpreis Hauptproblem/EPS Hauptprodukte Hauptprogramm/S Hauptpromenade Hauptprozess/EPT Hauptprozessor/S Hauptprüfung/P Hauptpunkt/EPST Hauptquartier/EPS Hauptraum/STp Hauptrechner Hauptredner Hauptreferat Hauptreisezeit Hauptrennen Hauptrolle/N Hauptroute Hauptrunde Hauptsätze/N Hauptsache/N Hauptsatz/T Hauptschalter/NS Hauptschlagkraft Hauptschlitten Hauptschritt/EPST Hauptschüler Hauptschulabschluss/Tp Hauptschuldiger Hauptschule Hauptschwierigkeit/P Hauptsitz/T Hauptspediteur Hauptspeicher/S Hauptsprecher Hauptstädten Hauptstadt Hauptstadtausbau Hauptstelle Hauptstoß/Tp Hauptstoßkraft Hauptstraße/N Hauptstrecken Hauptstromversorgung Hauptstück Hauptstütze/N Hauptstudium/S Haupttäter Haupttätigkeit Hauptteil/EPS Haupttestgebiet Hauptthema Hauptthese/N Haupttor Haupttreffer/S Hauptüberlegung Hauptumsatzträger Hauptunterhändler/FNS Hauptunterricht/S Hauptursache/N Hauptventile Hauptverantwortung Hauptverband Hauptverdienst Hauptverfahren/S Hauptverhandlung/P Hauptverkehrsstraße/N Hauptverkehrszeiten Hauptversammlung/P Hauptverwaltung/P Hauptverwaltungsgebäude Hauptverzeichnis/Qq Hauptvorstand Hauptvorstellung/P Hauptvorteil/EPS Hauptwäsche Hauptwache Hauptwachtmeister Hauptwerk/ST Hauptwerkzeug Hauptwettbewerb Hauptwohnsitz Hauptwort/EPST Hauptwunsch Hauptzahler Hauptzentrum Hauptziel/EPS Hauptzollamt Hauptzweck Hauruck Hauruckverfahren Haus/Tq Hausärzte/FN Hausaltar Hausangestellte/N Hausapotheke/N Hausarbeit/P Hausarrest Hausarzt/T Hausaufgaben Hausbank Hausbar Hausberg Hausbesetzer/N Hausbesetzerszene Hausbesetzung Hausbesichtigung Hausbesitzer/FNS Hausbesuche Hausbewohner/S Hausbrand Hausbrandkohle Hausdiener/NS Hausecke Hauseigentümer Hausfach Hausflagge Hausfrau/P Hausfrauengruppe Hausfreund/E Hausfriedensbrüche Hausfriedensbruch/S Hausgebrauch Hausgehilfe/FN Hausgemeinschaft Hausgerät/E Hausglocke Hausgockel Hausgrundstück Haushälter/FNS Haushalt/ST Haushaltsarbeit Haushaltsartikel/NS Haushaltsaufkommen/S Haushaltsausgabe/N Haushaltsausschuss/Tp Haushaltsbeitrag/STp Haushaltsbotschaft Haushaltsbuch Haushaltsdebatte Haushaltsdefizite Haushaltseinkommen/S Haushaltsentwicklung Haushaltsexperte/N Haushaltsführung Haushaltsgeld Haushaltsgerät/EPS Haushaltsgesetz Haushaltsgüter Haushaltshilfe Haushaltsjahr/EPS Haushaltskapitel Haushaltskasse/N Haushaltskontrolle/N Haushaltskurs/EPT Haushaltslage Haushaltsmanko/S Haushaltsminister Haushaltsmithilfe Haushaltsmittel Haushaltspläne/N Haushaltsplan/S Haushaltsrechnung/P Haushaltsrisiken Haushaltssicherungsgesetz Haushaltsüberlegung/P Haushaltsvolumen/S Haushaltsvorlage/N Haushaltsware/N Haushaltswirtschaft Haushaltung Haushaltungsapparate Haushaltungslehre/N Haushaltungsschulen Haushaltungsvorstände/N Haushaltungsvorstandes Hausherr/FNP Haushund Hausierer/NS Hauskamin Hauskatze Hauskauf/Sp Hauskleid/RST Hauskunst Hauslehrer Hausmädchen Hausmärchen Hausmacht Hausmannskost Hausmauer Hausmeister/FN Hausmiete/N Hausmitteilung/P Hausmittel/NS Hausmütter/N Hausmutter Hausnummer Hausordnung/P Hauspflege/N Hauspreise Hausrat Hausratversicherung Hausregeln Hausreinigung Hausschlüssel/NS Hausschuh/PS Hausschwein/PS Haussezeit/P Haussier/S Haussuchung/P Haustechnik Haustechnikraum/STp Haustier/EPS Haustochter Haustreppe Haustür/E Haustyrann Hausvater Hausverwalter Hausverwaltung Hauswände Hauswand Hauswart Hauswirtschaft Hauswirtschaftslehre/N Hautärzte/FN Hautarzt/T Hautausschlag/STp Hautfarbe/N Hautkrankheit/P Hautpflege Hautschäden Hautscheren Hautschichten Hauttransplantation/P Hautverbrennung/P Havarie/N Hawaii Hd He Header/NS Headhunter Heavymetal Hebamme/N Hebammenkoffer Hebebühne/N Hebel/MS Hebelarm/EPS Hebelkraft Hebelübersetzung Hebelverhältnis/Qq Hebelwirkung Hebens Heber/NS Hebewerkzeug Hebräer/FNS Hebriden Hebron Hebung/P Hecht/S Hechtsprung Heck/S Heckenrose/N Heckenscheren Hecklautsprecher Heckleuchten Hecklicht/RS Heckteil Heckwischer Hedda/S Hedwig/S Hedy/S Heer/EPST Heeresabteilung Heeresaufgaben Heeresdienste/NS Heeresflugzeuge Heeresführer/NS Heeresgruppe Heereslager/S Heeresleitung Heeresmeisterschaften Heerespsychologen Heeresreform Heeresschar Heeresteile Heeresverbände Heeresverwaltung Heerschar/P Heerschau Hefen/I Heft/ST Heftanzeigen Heftfäden Heftfaden/S Heftigkeit Heftklammer/N Heftmaschine/N Heftpflaster/NS Heftvorgang Hegel/S Hegemonialmacht Hegemonie Hehl/R Hehlerei Heide/FN Heideblüte Heideblume Heidekrug Heideland Heidelandschaft Heidelbeere/N Heidelberg/RS Heidelberger/FNS Heidelinde/S Heidenängste/N Heidenangst Heidengeld Heidengötter Heidenspaß/T Heidentum Heidepastor Heidi/NS Heike/S Heiko/S Heiland/S Heilanstalt/P Heilbäder/N Heilbad Heilbarkeit/P Heilbronn Heilbutt/PS Heilens Heilfaktor Heilgehilfin Heiligabend Heiligenbild Heiligenblut Heiligenfiguren Heiligens Heiligenschein/EPS Heiligkeit Heiligtümer Heiligtum/S Heiligung/P Heilkräfte/N Heilkraft Heilkunden Heilkuren Heilmedikus Heilmethode/N Heilmittel/NS Heilpraktiker/FNS Heilquellen Heilsarmee Heilsarmeemädchen Heilschlaf Heilsgeschichte Heilslehre Heilsplan Heilstätte Heilstoffe Heilung/P Heilungsprozess/EPT Heilverfahren Heilweise Heilwesen Heim/EMPST Heimarbeit/GPR Heimarbeiter/FNS Heimat Heimatanschrift Heimatbund Heimatdörfer Heimatflughafen Heimatfront Heimatfürst Heimatgemeinde Heimathafen Heimatkultur Heimatkunde Heimatländer Heimatland/S Heimatlizenz Heimatlizenzurkunde Heimatmuseum Heimatort/ET Heimatplatz Heimatprovinz Heimatschnulzen Heimatsprache Heimatstaat Heimatstadt Heimattreffen Heimaturlaub Heimatwährung Heimatwerk Heimaufsicht Heimcomputer Heimerziehung Heimfahrten Heimgang/E Heiminsassen Heimkehr/R Heimleiter/FNS Heimlichkeit/P Heimlichtuerei Heimreise/N Heimrudergeräte Heimschule Heimsieg Heimspiel/P Heimstätte/N Heimsuchens Heimsuchung/P Heimtücke Heimvater Heimverwaltung Heimweg/EPS Heimweh/S Heine/S Heino/S Heinrich/S Heinz Heinzelmännchen/S Heirat Heiratsantrag/Tp Heiratsanzeige Heiratsfähigkeit Heiratsinstitut/E Heiratskandidat/P Heiratsmarkt/ST Heiratspläne Heiratsschwindler/NS Heiratsurkunde Heiratsverbot Heiratsvermittler/FNS Heiratsversprechen/S Heißgetränke Heißhunger/S Heißluftballon Heisenberg/S Heiserkeit Heiterkeit Heizanlagen Heizens Heizer/N Heizfläche Heizkessel/N Heizkissen/S Heizkörper/N Heizlüfter Heizmaterial Heizmaterialien Heizmethoden Heizöl/S Heizölkartell Heizölmarkt/STp Heizölverbraucher Heizölverkauf/Sp Heizperiode Heizplatte Heizrohr/EPST Heiztechnik Heizung/P Heizungsanlage/N Heizungsbauer Heizungsbaumeister Heizungsingenieur Heizungskeller Heizungskörper Heizungsmonteur Heizwert Heizzwecke Hektar/S Hektarertrag/STp Hektik Held/FPS Heldenepos Heldengedicht/EPST Heldengestalten Heldenstück Heldentat Heldentugenden Heldentum/S Helen/ET Helfer/FNS Helferinnenbrief Helfershelfer Helga/S Helgoland Helikopter/NS Helium/S Hellene/N Hellenisierung Hellenismus Hellespont Helligkeit Helligkeitseinstellung Helligkeitssteuerung Helligkeitswerte Helling Hellseher/FNS Hellseherei/P Hellsichtigkeit Helm/EPS Helmut/S Helot/P Helsinki Helvetismen Helvetismus Hemd/PS Hemdblusen Hemdenstoff Hemdknöpfen Hemdknopf/S Hemdsärmel/N Hemingway/S Hemmens Hemmnis/q Hemmschuh Hemmung/P Hengst/EPT Henkel/NS Henker/NS Henkersmahlzeit Henne/N Henning/S Henry/S Hepatitis Hera/S Herablassens Herablassung/P Herabsetzung/P Herabstufen/JS Herakles Herangehensweise/N Heranziehens Heranziehung/P Herausarbeitens Herausarbeitung/P Herausbildens Herausbildung/P Herausforderer Herausforderung/P Herausgabe Herausgeber/FNS Herbarien Herbarium/S Herberge/N Herbert/S Herbizid/EPS Herbrand Herbst Herbstaktion/P Herbstausgabe/N Herbstbeginn Herbstfärbung Herbstmarkt/ST Herbstmonat/EPST Herbstsaison Herbstwetter Herbstzeit Herd/EPST Herdentier/EPS Herdentrieb Hereinfall/S Hereinnahme Herfahrt/P Hergabe Hergang/S Hering/EPS Herkles Herklit/S Herkünfte/N Herkunft Herkunftsland Herleitbarkeit Herleitens Herleitung/P Hermann/S Hermaphrodit Hermelin/S Hermes Herodes Herodot/S Heroin/S Herold/EPST Herr/FNP Herrenabend/S Herrenabteilung/P Herrenanzug/Tp Herrenbekleidung Herrendoppel Herreneinzel/S Herrenfriseur/EPS Herrenfrisör/EPS Herrenhut Herrenkonfektion/P Herrenmäntel Herrenmenschen Herrenmode Herrenpyjama Herrenschneider/N Herrensitz/E Herrensocken Herrentoilette/N Herrenuhr Herrenwäsche Herrenzimmer/NS Herrgott/S Herrjemine Herrlichkeit Herrschaft/P Herrschaftsblöcke Herrschaftskoch Herrschaftssitz Herrscher/FNS Herrschersitz Herrschsucht Herstellart Herstellens Hersteller/NS Herstellerverzeichnis/Qq Herstellung/P Herstellungsbetrieb Herstellungskosten Herstellungsländer Herstellungspreis/EPT Herstellungsprozess/EPT Herstellungsrechte Herstellungsverfahren/S Herta/S Hertz Hertzbereich Hervorhebens Hervorhebung/P Herz/MP Herzanfall/Sp Herzass/ET Herzbeschwerden Herzegowina Herzen/SW Herzensangelegenheit/P Herzensbrecher/NS Herzensgüte Herzenslust Herzenssache/N Herzenstür Herzfehler/NS Herzgegend Herzhaftigkeit Herzinfarkt/EPT Herzinfarktrisiko Herzklappe/N Herzklopfen/S Herzkönig Herzkollaps/T Herzkrankheit/P Herzkranzgefäße Herzleiden/S Herzlichkeit/P Herzlosigkeit/P Herzmassage Herzneurosen Herzöge/N Herzogin/F Herzogs Herzoperation/P Herzscheibe Herzschlag/PSTp Herzschlagfolge Herzschrittmacher Herzschwäche/N Herzspezialist Herzstück/EPS Herztätigkeit Herztod Herztransplantation/P Herzverpflanzung/P Hesperiden Hesse/FN Hessen/S Heterogenität Hethiter Hethiterreich Hetzjagd Heu/S Heuchelei/P Heuchler/FNS Heuernte Heugabel Heuhaufen Heumarkt Heurige/N Heurigenliedern Heuristik/P Heuschnupfen/S Heuschober/S Heuschrecke/N Heuschreckenzug/STp Heuss Hewlett Hexadezimalanzeige Hexadezimalzahl Hexadezimalzeichen Hexameter/S Hexdump Hexengebräu Hexengriffel Hexenjäger Hexenküche Hexenkünste Hexenkunst Hexenmeister Hexenpinsel Hexenprozess/EPT Hexenschuss/Tp Hexentrio Hexenverbrennung/P Hexer Hexerei/P Hieb/EPT Hierarchie/N Hieroglyphe/N Hieronymus Highfidelity Highlight/S Highsociety Hightech Hilde/S Hildebrand/S Hildesheim Hilfe/GN Hilfeaktion/P Hilfelieferung/P Hilfeprogramm/EPS Hilferuf/EPS Hilfeschrei/EPS Hilfestellung/P Hilflosigkeit Hilfsärzte/FN Hilfsaktion/P Hilfsarbeiter/FNS Hilfsarzt/T Hilfsarztstelle Hilfsbereitschaft Hilfsbetriebe Hilfsdatei/P Hilfsdienst/EPT Hilfsdirektrice Hilfsfenster Hilfsfunktion/P Hilfsgemeinschaft Hilfsgüter Hilfskoch Hilfskonstruktion/P Hilfskräfte/N Hilfskraft Hilfsküchen Hilfslehrer/N Hilfsmaßnahme/N Hilfsmenü Hilfsmittel/N Hilfsmotor/PS Hilfsnachbarn Hilfsobjekte Hilfsorganisation/P Hilfsplatinen Hilfspolizei Hilfspolizistin Hilfsprediger Hilfsprogramm/EPS Hilfsquelle Hilfsschiffe Hilfsschullehrer Hilfssignale Hilfsstoff/E Hilfstaucher Hilfstext/EPT Hilfstruppe/N Hilfsvariable/N Hilfsverein Hilfswerk/S Hilton/S Himalaja Himbeere/N Himbeersäfte/N Himbeersaft/ST Himbeersträucher/N Himbeerstrauch/S Himmel/NS Himmelbett/S Himmelfahrt Himmelfahrtskommando Himmelfahrtstag Himmelreich/S Himmelsereignis/Qq Himmelsgast Himmelskörper/NS Himmelskunde Himmelsrichtung/P Himmelsspione Himmelszelt Hinausschiebens Hinausschiebung/P Hinauswurf Hinblick/S Hindenburg/S Hindernis/Qq Hindernislauf/Sp Hindernisrennen/S Hinderns Hinderung/P Hinderungsgrund Hindu/S Hinduismus Hindupriester Hinfälligkeit Hinfahrten Hingabe Hingang/S Hingebens Hingebung/P Hinlänglichkeit Hinnahme/N Hinrichtens Hinrichtung/P Hinsicht/P Hinspiel Hinterachse Hinterbein/EPS Hinterbliebene/N Hinterbliebenenrente Hintereinanderausführung/P Hintereingang/ST Hinterfragens Hinterfragung/P Hintergedanke/N Hintergehens Hintergehung/P Hintergründe/N Hintergrund/S Hintergrundinformation/P Hintergrundmusik Hintergrundrauschen/S Hintergrundspeicher Hinterhalt/EPST Hinterhand Hinterhaus/Tp Hinterhof Hinterkopf/ST Hinterland/S Hinterlassenschaft/P Hinterlauf/Sp Hinterlegens Hinterlegung/P Hinterlegungsfrist Hinterlegungstag Hinterlist Hintermänner Hintermannschaft Hintern Hinterpommern Hinterrädern Hinterrad/S Hinterradantrieb/S Hinterreifen Hinterteil/EPS Hintertreppe/N Hintertür/M Hinterwand Hinterzimmer Hinweis/T Hinweisbekanntmachung Hinweisblatt Hinweisschilder Hinweiszettel Hinz Hinzunahme Hinzuziehens Hinzuziehung/P Hiobsbotschaft/P Hiobsgestalt/P Hippie/S Hippodrom Hirn/EGPS Hirnabschnitte Hirnchirurgie Hirnforschung Hirngeschwulst Hirngespinst/P Hirnhautentzündung/P Hirnrinde Hirnschlag/GTp Hirnstamm Hirnstromdiagramm Hirnteil/ES Hirnverletzung Hirnvorgang/Sp Hirnwinde Hiroschima/S Hiroshima/S Hirsch/EPST Hirschfänger Hirschgeweih Hirschkühen Hirschkuh Hirschpark Hirse Hirte/FN Hirtenbrief/EPS Hirtensorge Hirtenstämme Hirtenwort Histologe/FN Histologie Historie/N Historiendrama Historik/R Historiker/FNS Historikergespräch Historikertag/S Historikerverband/S Historismus Hit Hitchcock/S Hitler/S Hitlerjugend Hitlerregierung Hitlerreiches Hitlertum/S Hitliste/N Hitparade/N Hitze Hitzegrad/E Hitzekammer Hitzepanzer Hitzeperiode Hitzewelle/N Hitzschlag/STp Hiwi/S Höchstbetrag/STp Höchstdruck Höchstform Höchstgebot Höchstgeschwindigkeit Höchstgewicht Höchstintegration Höchstkurs/E Höchstleistung/P Höchstmaß/EPT Höchstpreisen Höchstrente/N Höchstsätze/N Höchstsatz Höchststand Höchststrafe Höchsttemperatur/P Höchstumsatz Höchstwert/EPST Höcker/NS Höfe/N Höflichkeit/P Höflichkeitsbesuche/S Höflichkeitsformeln Höhe/N Höhenangabe Höhenanzeige Höhenbeschränkung Höheneichung Höheneinstellung Höhenflug/Sp Höhenkammer Höhenklima Höhenkoordinate Höhenkurorte/N Höhenkurorts Höhenlage/N Höhenlinie/N Höhenluft Höhenrausch Höhentraining Höhenunterschied Höhenwinkel Höhenzug/Sp Höhepunkt/EPS Höherentwicklung Höhle/N Höhlen/JS Höhlenbewohner Höhleneingang Höhlenforscher/N Höhlengänger Höhlenmalerei Höhlenmensch Höhlensystem Hölderlin/S Hölle/N Höllenängste/N Höllenhass/T Höllenmacht Höllenmalerei Höllenmaschine/N Höllenschauspiel Höllenwurz Hölzer Hörapparat/EPST Hörbarkeitsgrenze Hörbild Hördrama Hörer/NS Hörergebühren Hörerschaften Hörerwettbewerb Hörerwünsche Hörfehler Hörfeld Hörfolge Hörfunk/S Hörfunksender Hörgerät/S Hörigkeit Hörnchen/S Hörner/N Hörprogramme Hörrohr/PS Hörsäle Hörsaal/S Hörspiel/PS Hörspielgeräusche/N Hörvermögen/S Höschen Hoare Hobby/S Hobbygeräte Hobbygruppen Hobbyist/P Hobbyraum/STp Hobelanlagen Hobelantrieb/E Hobelantriebsleistung Hobelbank Hobelbegleiter Hobelbetrieb Hobeldaten Hobelendschalter Hobelfahrer Hobelführung Hobelfunktionen Hobelgeschwindigkeit Hobelmeißel Hobelmessung Hobelmotor Hobelmotordaten Hobelposition Hobels Hobelsimulationsanlage Hobelsoftware Hobelspäne/N Hobelstandort Hobelsteuerung Hobelstreb/P Hobeltiefe Hobelüberlastsicherung Hobelweges Hobelwegmesser Hobelwegmessung Hobelwegs Hobelwerk Hobelzahn Hochachtens Hochachtung/P Hochadel Hochallee Hochalpen Hochbauentwürfe Hochbaufirma Hochbaukenntnisse Hochbauverwaltung Hochbetrieb/S Hochbrücke Hochburg/P Hochdrücke/N Hochdruck Hochdruckbereich Hochdruckdampferzeugung Hochdruckeinfluss/Tp Hochdruckgebiet/EPS Hochdruckkessel Hochdruckrücken/S Hochdruckschlauch Hochebene/N Hochfinanz Hochform Hochfrequenzgeräte Hochgebirge Hochgebirgspanorama Hochgebirgstäler Hochgebirgswanderung Hochgenuss/Tp Hochglanz Hochgotik Hochhaus/Tp Hochhauswohnung Hochimpedanz Hochintegration Hochkomma Hochkultur/P Hochländer/N Hochleistungscomputer/N Hochleistungsgeräte Hochleistungsmotor/PS Hochleistungsrechner/S Hochleistungsschichten Hochleistungssport/S Hochleistungssportlers Hochmut/S Hochofen/S Hochofengase Hochofenkoks Hochofenwerke Hochpreispolitik Hochrechnen/JS Hochregal Hochrhein/S Hochs Hochsaison Hochschätzens Hochschätzung/P Hochschrift Hochschulabschluss/Tp Hochschulausbau Hochschulbau Hochschulbauten Hochschulbereich/EPS Hochschulbildung Hochschuldirektor Hochschuldozenten Hochschule/N Hochschuletat/S Hochschulfinanzierung Hochschulfragen Hochschulgebäude Hochschulgesetz Hochschulgruppe/N Hochschulklassen Hochschullehrer/FNS Hochschulmeisterschaft Hochschulmittel Hochschulorgane Hochschulrahmengesetz Hochschulreform Hochschulreife Hochschulstudium/S Hochschulstufe Hochschulverband Hochschulvertreter Hochschulwesen Hochschwarzwaldes Hochseefischer Hochseefischerei Hochseeflotte Hochseereederei Hochseeschifffahrt Hochseesegler Hochsicherheitstrakt Hochsitz Hochsommer Hochspannung/P Hochspannungsanlage Hochspannungskabel Hochspannungskunden Hochspannungsleitung/P Hochspannungstechnik Hochsprache/N Hochsprung/S Hochstapler/NS Hochstart/P Hochstellung Hochtal Hochtechnologie/N Hochtouren Hochvakuum Hochverrat Hochverratsprozess/EPT Hochwasser Hochwassergefährdung Hochwasserkatastrophe Hochwasserschutz Hochwassersorgen Hochwürden Hochzeit/P Hochzeitsfest/EPS Hochzeitsfoto Hochzeitsgäste Hochzeitsgeschenk/EPS Hochzeitskuss/Tp Hochzeitspaar Hochzeitsreise Hochzeitsstimmung Hochzeitstag Hochzeitszeremonie Hochzins/P Hochzinsphase/N Hochzinspolitik Hochzüchtung Hockenheimring Hocker/N Hockey/S Hockeyklub Hockeyschiedsrichter Hockeyspiele Hockeyturniers Hoden Hoechst Hoesch Hof/EST Hofberichterstatter Hofberichterstattung Hofbräuhaus Hofburg Hofdamen Hoffens Hoffmann/S Hoffnung/P Hoffnungslosigkeit Hofgarten Hofgrundstücke Hofhaus Hofkunst Hoflandwirtschaft Hofleben Hofmauern Hofmeister Hofnachrichten Hofoper Hofplatz Hofrat Hofscheune Hoftor Hofweg Hoheit Hoheitsakte Hoheitsgebiet/EPST Hoheitsgewässer/S Hoheitsgewalt Hoheitsrecht/E Hohenzoller/NS Hohlglashütte Hohlkopf/S Hohlmaß/EPT Hohlraum/Sp Hohlspiegel Hohlsteinhöhle Hohltier/EPS Hohn/ST Hohngelächter/S Holding Holdinggesellschaften Holger/S Holländer/FNS Holland/S Hollywood/S Hollywoodstar/S Hollywoodzauber Holm/EPS Holocaust/S Hologramm/EPS Holographie/Nf Holstein Holunder/S Holunderbaum/STp Holz/T Holzarbeit/PR Holzarbeiter/FNS Holzausfuhren Holzbaracken Holzbearbeitung Holzbein Holzbläser/N Holzbrett Holzdamm Holzdecke Holzeinfuhr Holzersatz Holzerzeugnis/Qq Holzexportländer Holzfäller/N Holzfabrikant Holzfachmann Holzfeuer Holzfigur Holzgestell Holzgiebel Holzhammer Holzhandlung Holzhaus/Tp Holzimporteure Holzindustrie Holzkasten Holzkohle/N Holzkreuz/EPT Holzlatte/N Holzmontage Holzpfad Holzplastik Holzpritschen Holzrad/ST Holzrahmen Holzrechte Holzschale Holzschnitt/E Holzschnitzereien Holzschüssel Holzschuppen Holzschutzmittel Holzschwänze Holzschwellen Holzspielwaren Holzspielwarenbranche Holzstoß/Tp Holzstufen Holztafeln Holzteilen Holztische Holztreppe Holzverarbeitungsbetrieb Holzverschalung Holzverschlag/STp Holzvorkommen Holzwanne Holzwaren Holzweg Holzwerken Holzwirtschaft Holzwolle Holzwurm/S Homecomputer Homedirectory Homeland Homepage/S Homer/S Hommage/N Homöopath/P Homöopathie Homogenisierung Homogenität Homomorphie Homomorphismen Homomorphismus Homophobie/N Homosexualität Honda Honduras Honecker/S Hongkong/S Honig Honigbiene/N Honigdose Honiglecken Honigschlecken Honorar/EPS Honorarerhöhung Honorarforderung Honorarprofessor Honorarsätze Honorarvertrag/STp Honoratioren Honorierens Honorierung/P Hopfenhandel Hopfenpflanzer Hopfensack Hopfenstange Horcher/NS Horchposten Horde/N Horizont/EPS Horizonterweiterung Hormon/EPS Hormonbehandlung/P Hormonspiegel/S Hormonumstellung/P Hormonwirkung Horn/S Hornberger Hornhaut Hornisse/N Hornvieh Horoskop/EPS Horror/S Horrorfilm/EPS Horrormärchen Horrorthema Horrorvisionen Horst/EPT Hort/JTX Hortens Hortungskäufe/N Hose/N Hosenanzug/STp Hosenbein/E Hosenboden Hosenklammern Hosenknopf Hosenrock Hosenschlitz/ET Hosentasche/N Hosenträger/NS Hospitäler Hospital/S Hospitalismus Hospitalkosten Hospitalwerk Hospitant/P Hospitation/P Hospiz/PT Hostadapter/NS Hostess/P Hostie/N Hostinterface/S Hostname/NS Hostprozessor/P Hostrechner/NS Hostsoftware Hotdog/S Hotel/S Hotelangestellte Hotelappartements Hotelbar Hotelbauprojekt Hotelbesitzer/FNS Hotelbetrieb/E Hotelbett Hotelführer/NS Hotelgäste Hotelgarten Hotelgast Hotelgebäude Hotelgesellschaft Hotelgewerbe Hotelgruppe Hotelhalle/N Hotelier/S Hotelkapazität Hotelkomplex Hotelkonzerns Hotelleitung Hotellerie Hotelmakler Hotelpark Hotelparkplatz Hotelportier Hotelprojekte Hotelrechnung Hotelrestaurant Hotelschiff Hotelservice Hotelverbot Hotelvollpensionen Hotelzimmer Hotline/S Hübe/N Hüfte/N Hüftgelenk/EPS Hüftschwung/S Hüftumfang Hügel/NS Hügelgräber Hügelgrab Hügelkette Hügelkuppe Hügelland Hühnchenfriedhof Hühner/N Hühnerauge/N Hühnerbestand Hühnerdiebe Hühnerhalter Hühnerhaltung Hühnerleiter/N Hühnermörder Hühnerstall/Sp Hühnerzucht Hülse/N Hülsenfrüchte Hündchen/S Hündin/F Hüne/N Hüpfer Hürde/N Hürdenlauf/Sp Hürdenrennen Hürdenspezialist Hüter/FNS Hütte/N Hüttenbau/ST Hüttenbereich Hüttenbewohner Hüttensauerstoff Hüttentür Hüttenwerk/S Hüttenwesen/S Hub/ST Hubbereiche/N Hubbewegung Hubeinstellung Hubende Huber/S Hubert/SW Hubertus Hubgrenzen Hubgrenzenerkennung Hubhöhe Hubkomponente Hubraum/STp Hubraumsteuer Hubschrauber/NS Hubschraubergeknatter Hubschrauberverkehr Hubwagen Hubzylinder/N Huf/EPS Hufeisen/S Hufeisentisch Hufschlag/Sp Huftier/EPS Hugenotte/FN Hugenottenkriege Hugenottenverfolgung Hugo/S Huhn/S Huldigens Huldigung/P Humanethologie Humangenetik Humanismus Humanist/P Humanität Humboldt/S Humbug Hummer/NS Hummercremesuppe Hummerschwänze Hummertransporte Humor/S Humorist/P Humorlosigkeit Humus Hund/EPST Hundeausstellung/P Hundebaby/S Hundebesitzer Hundedressurplatz Hundegenie Hundehalter Hundehütte Hundekette Hundekopf Hundeleine/N Hundemarke Hundenase Hundepeitsche Hundertmarkschein Hundertschaft Hundertstelsekunden Hundesteuer Hundewetter/S Hundezüchtern Hundezucht Hundstage/N Hunger/S Hungerblockade Hungerkur Hungerlohn Hungermarsch Hungernationen Hungersnöte/N Hungerstreik/PS Hungertuch Hunne/N Hupengehäuse/S Hupenkammer Hupenschalter Hurenkind/RST Hurerei Hurrikan Husar/P Husarenritt/P Hussein/S Hussitenkriege Hustenanfall/Sp Hustenbonbon/S Hustensäfte/N Hustensaft/ST Hustensirup Husum Hut/ST Hutfachgeschäfte Hutfachschau Hutfilter Hutstumpen Hyäne/N Hybris Hydepark Hydrant Hydraulik Hydraulikansteuerung/P Hydraulikanwendung/P Hydraulikbewegung/P Hydraulikblock Hydraulikdruck Hydrauliker Hydraulikflüssigkeit/P Hydraulikkolben/S Hydraulikleitung/P Hydraulikmedium/S Hydrauliköl Hydraulikpläne Hydraulikpumpen Hydraulikpunkte Hydraulikregelung Hydraulikschläuche/N Hydrauliksteuerung Hydrauliksystemen Hydraulikteststands Hydraulikventile/N Hydraulikventils Hydraulikverbesserung/P Hydraulikzylinder/NS Hydrieren/JS Hydrierwerke Hydrobusse Hydrokultur Hydromatik Hydromotor/PS Hydromotorenwelle Hydrophon Hydrospeicher Hygiene Hygienebetreuung Hygieneprogramm Hymne/N Hyperbel/N Hyperlink/S Hypnose/N Hyposensibilisierung Hypotenuse/N Hypothek/P Hypothekenabwertung Hypothekenaufnahme Hypothekenberechnung Hypothekenbriefe Hypothekengeld Hypothekenraten Hypothekenrückständen Hypothekenzinsen Hypothese/N Hysterie/N Hysteriker/FNS Hz IATA IBM ICI IDE IG II III IMAP IP IQ IRA IRC IRQ ISBN ISDN ISO ISP ITT/W IV IX Ibbenbüren Iberer Iberien Ichbewusstsein/S Ichform/P Ichsucht Icon/S Idealbedarf Idealfall/Sp Idealgewicht Idealismus Idealist/FP Idealkonkurrenz Idealnote/N Ideals Idealstaates Idealtarnung Idealvorstellung/P Idealwelt Idealzustand/T Idee/N Ideendarstellung Ideenlehre/N Ideenlosigkeit Ideenreichtum/S Ideensuche Ideenträger Ideenwettbewerb Identifikation Identifikationsnachweis/EPT Identifikationsnummer Identifikationspapiere Identifikator/PS Identifikatorbindung/P Identifizierbarkeit Identifizierens Identifizierung/P Identität/P Identitätsfindung Identitätsfunktion/P Identitätskarte/N Identitätsnachweis/EPT Ideologe/FN Ideologie/N Ideologiekampf Ideologieprodukt Idiomatik Idiome/N Idiosynkrasie/N Idiot/P Idiotenfilm Idol/EPS Idyll/EP Igel/NS Igelstellung/P Ignoranz Ikarus Ikone/N Illegalität Illiquidität Illiterat/P Illumination/P Illusion/P Illustration/P Illustrator/P Illustrierens Illustrierung/P Illyrien Illyrier Ilmenau/S Ilmensee Iltis/Qq Image/S Imagepflege Imaginärteil/EPS Imagination Imbiss/EPT Imbisshalle Imbissstände Imbissstube Imitation/P Imitator/P Imker/S Immanuel/S Immaterialisierung Immatrikulation/P Immatrikulationsgesuche Immatrikulationsnummer Immigrant/FP Immobilie/N Immobilienanlagen Immobilienanzeige Immobilienblase Immobilienboom/S Immobilienbüro Immobiliencrash Immobilieneigentümer/N Immobilienerwerb Immobilieneuphorie Immobilienfinanzierung/P Immobilienfonds Immobiliengeschäft/E Immobilienhändler/FNS Immobilienhandel/S Immobilienjongleur Immobilienkatastrophe Immobilienkauf/Sp Immobilienkollaps Immobilienmaklern Immobilienmaklers Immobilienmarkt/Tp Immobilienobjekt/E Immobilienpreisdeflation Immobilienpreisindex Immobiliensektor Immobiliensuche Immobilienverkauf/Sp Immobilienverlust Immobilienversteigerung/P Immobilienwelt Immobilienwerte Immunität Immunitätsbarriere Immunkörper/NS Immunschwäche Immunsystem/EPS Immuntoleranz Impedanz/P Impedanzanpassung Impedanzfehlanpassung Impedanztabelle Impedanzunterschied Impedanzwandler/NS Impedanzwandlung Imperator/P Imperatorensitz Imperfekt/P Imperialismus Imperium/S Impertinenz Impfens Impfpass/Tp Impfschein/EPS Impfschutz Impfstoff/EPS Impfung/P Implantation/P Implementation/P Implementationsarbeit/P Implementationsdetail/S Implementationsrichtlinie/N Implementationssprache/N Implementationstechnik/P Implementationstechnologie/N Implementierbarkeit Implementierens Implementierer/N Implementierung/P Implementierungsarbeit/P Implementierungsaspekt/EPS Implementierungsdetail/S Implementierungsgrundlage/N Implementierungssprache/N Implementierungsstrategie/N Implementierungstechnik/P Implikation/P Imponderabilien Import/EPST Importabgaben Importanteil Importbeschränkung/P Importbörse Importbutter Importeur/PS Importfinanzierung Importfirmen Importgüter Importhandel Importkontingent Importkontingentierung Importkontrollen Importländer Importmengen Importmesse Importöl Importplaner Importplanung Importprogramm Importquoten Importsperre Importvolumen/S Importwachstum Importwagen Impotenz Imprägnierens Imprägnierung/P Impresario/S Impression/P Impressionismus Impressionist/P Impressum Improvisation/P Impuls/EPT Impulsamplitude Impulsanregung Impulsdivergenz Impulsecho Impulseingang/S Impulsfolge/N Impulsfrequenz Impulsgeber/N Impulsmesseinrichtung Impulssummierung Impulszähler Imputation/P Inaktivität Inanspruchnahme Inauguralvorlesung Inbegriff/ES Inbesitznahme Inbetriebnahme/N Inbetriebnahmearbeit/P Inbetriebnahmebericht Inbetriebnahmefahrt Inbetriebnahmezeit Inbetriebsetzung Inbrunst Inder/FNS Index/EPT Indexgrenze/N Indexgruppen Indexkontrakte Indexoption/P Indexwert/EPT Indexzahl Indexziffern Indiana Indianapolis Indianer/FNS Indianerleben Indianerreservat Indianerrezept Indianersommer Indianerstamm Indices Indien/S Indienroute Indifferenz Indikation/P Indikationslösung Indikationsregelung Indikator/P Indio/S Indira/S Indirektion/P Indiskretion/P Individualebene/N Individualethik Individualisierens Individualisierung/P Individualismus Individualist/P Individualität/P Individualreise Individualstück Individuation/P Individuen Individuum/S Indiz/T Indizien Indizienbeweis/EPT Indizierens Indizierung/P Indochina Indoktrination Indonesien/S Indonesier/FNS Indossament/EPS Indossant Induktion/P Induktionsanfang Induktionsannahme/N Induktionsaussage/N Induktionsbeginn/S Induktionsbeweis/EPT Induktionshypothese/N Induktionsmethode/N Induktionsprinzip Induktionsschluss/Tp Induktionsschritt Induktionsvoraussetzung Induktivität/P Induktivitätsmessung Indus Induskultur Industrialisierens Industrialisierung/P Industrie/N Industrieanlagen Industrieanwendung/P Industriearbeiter/FNS Industrieausführung Industrieausstellung Industrieautomatisierung/P Industriebank Industriecomputer Industrieelektronik/P Industrieerzeugung/P Industriefilm Industriefilmer Industriegebiet/EPST Industriegehäuse Industriegesellschaft Industriehallen Industriekonzern Industriekreis/E Industrieländer Industriellenverband Industriemanager Industriemarkt/ST Industriemesse Industriemilieu Industrieministerium Industriemühlen Industrienation/P Industrieöfen Industrieobjekt/E Industrieofen Industriepapieren Industrieplan Industriepotential/EPS Industriepotenzial/EPS Industrieprodukte Industrieproduktion Industriequalität Industrieraum/STp Industrierechner/N Industrieriesen Industrieroboter Industriesektoren Industriespion/EPS Industriespionage Industriestädtchen Industriestaat/PST Industriestadt Industriestandard/S Industriesteuerung/P Industriestraße Industriestrategen Industriestroh Industrietitel Industrieübliches Industrieunternehmen Industrieverbände Industrieverband/ST Industrieverlagerung Industrievermittlung Industriewaren Industriewerk/E Industriezentren Industriezentrum Industriezwecke Industriezweige Ineffizienz/P Infanterie/N Infanteriebataillone Infanterieregiment Infanterist/P Infantilismus Infarkt/EPS Infekt/EPST Infektion/P Infektionsbazillus Infektionskrankheit/P Inferenz/P Inferenzregel/N Inferenzschritt/EPT Inferno Infiltrierens Infiltrierung/P Infimum Infixnotation Infixschreibweise Inflation/P Inflationsängsten Inflationsbekämpfung Inflationsbremse Inflationsdruck Inflationsförderung Inflationsgefahr/P Inflationsindikatoren Inflationsjahr/E Inflationskurs/T Inflationsländer Inflationslawine Inflationsorgie/N Inflationspolitik Inflationsrate/N Inflationsrunde Inflationsschub Inflationsschutz Inflationssteuer Inflationstendenz/P Inflationswelle Inflationszuschlag/STp Info/S Infobriefen Infodienst/E Informant/FP Informatik/R Informatiker/FNS Informatiksystem/EPS Informatikzeitalter Information/P Informationsagentur Informationsamt/T Informationsart Informationsauftrag/STp Informationsaustausch Informationsbehörde Informationsbesuche Informationsblätter Informationsblatt Informationsbrief/EPT Informationsbüro/S Informationsdichte/N Informationsdienst/EPST Informationsflug/Sp Informationsfluss/Tp Informationsfreiheit Informationsfülle Informationsgeber Informationsgehalt Informationsgesellschaft Informationsgespräche/N Informationsgewinnung Informationsgutschein Informationsheft Informationshilfe Informationsindustrie Informationslücke/N Informationsmaterial Informationsmedien Informationsmenge/N Informationsministerium/S Informationsnetz Informationsoffizier Informationspakete Informationspolitik Informationsquelle/N Informationsreise Informationssendung/P Informationsspeicher/N Informationsspeicherung Informationsstand Informationsstelle/N Informationssystem/EPS Informationstag/EPST Informationstagung Informationstechnik/P Informationstechnologie/N Informationsverarbeitung Informationsverarbeitungsprozess/EPT Informationsverarbeitungssystem/EPS Informationsverbreitung Informationsverwaltung Informationsvorsprung Informationszeitalter Informationszentrale/N Informationszyklen Infowände/N Infrarot Infrarotlicht/S Infrarotsender Infrastruktur/P Ing Ing. Inganghaltung Ingangsetzen/JS Ingeborg/S Ingenieur/EFPS Ingenieurausbildung Ingenieurbaus Ingenieurbereich Ingenieurbüro/S Ingenieurexamen Ingenieurkongress/EPT Ingenieurleistung Ingenieurprüfung Ingenieurschule/N Ingenieurskunst Ingenieurstudenten Ingenieurwesen/S Ingenieurwissenschaft/P Ingo/S Ingolstadt/S Ingrid/S Ingwer/S Inhaber/FNS Inhaberaktie/N Inhaberaktionär/EPS Inhaberpapier/PS Inhaberscheck/S Inhaberwechsel/N Inhaberzertifikat Inhaftierens Inhaftierung/P Inhalation/P Inhalt/EPST Inhaltsangabe/N Inhaltsverz Inhaltsverz. Inhaltsverzeichnis/Qq Inhomogenität/P Initial/EPS Initialisierens Initialisierung/P Initialisierungsausdrücke/N Initialisierungsausdruck/S Initialisierungsbit/S Initialisierungsdaten Initialisierungsfunktion/P Initialisierungsphase/N Initialisierungssequenz Initialisierungszeit Initiative/N Initiativrecht Initiator/P Initiierens Initiierung/P Injektion/P Injektionsmittel Injektionsnadel Injektivität Inka Inkareich Inkarnation/P Inkasso/S Inkassounternehmen Inkassovollmachten Inkassowechsel/N Inkaufnahme Inkavergewaltigung Inklination/P Inklinometer/NS Inklinometeranzeige Inklusion Inklusivpreise Inkompatibilität/P Inkonsequenz/P Inkonsistenz/P Inkorrektheit/P Inkraftsetzen/JS Inkrafttreten Inkrement Inkrementalgeber Inkrementalzähler/S Inkubationszeit/P Inländer/FNS Inland Inlandgesellschaften Inlandmarkt/STp Inlandpreis Inlandsabschluss/Tp Inlandsbetriebe Inlandserze Inlandserzeugung Inlandsferngespräche Inlandsfilialen Inlandsfonds Inlandsgeschäft/S Inlandshandel Inlandsindustrie Inlandskonjunktur Inlandskonsum Inlandsmarkt/STp Inlandsnachfrage Inlandspreise/N Inlandsproduktion Inlandssektor Inlandsumsätze Inlandsurlaub Inlandsverbrauch Inlandsversorgung Inlandszinsen Innenanstrich/S Innenarchitekt/FP Innenarchitektur Innenaufzug Innenausbausystem Innenausschuss/Tp Innenausstattung Innenbahn Innenbeschaltung Innendekorateur Innendekoration/P Innendruck Inneneinrichtung/P Innenfinanzierung Innengehäuse Innenhof/T Innenkabine/N Innenleben Innenleiter/S Innenminister/NS Innenministerien Innenministerium/S Innennutzung Innenohr Innenpolitik Innenraum/STp Innenschwimmbäder Innenschwimmbad Innensechskant Innensechskantschraube Innenseite/N Innensenator Innenstädte Innenstadt Innenstürmer/S Innenumsätze Innenumsatz Innenverkleidung Innenwiderstand Innerei/P Innerlichkeit Innern Innigkeit Innovation/P Innovationsbemühung/P Innovationscharakter/S Innovationskraft Innsbruck Inputfile/S Inputparser Inquisition/P Insasse/N Insassenversicherung Inschrift Insekt/PT Insektenfresser Insektenoper Insektenplage Insektensaal Insektenvertilgungsmittel Insektizid/EPS Insel/MN Inselfestung Inselgebiet Inselgruppe Insellage Inselrepublik Inselstaat/PS Inselstadt Inselstatut Inselverkäufer Inselvölkern Inselvolk Inselwelt Inselzauber Insemination Inserat/EPST Inseratenbüro Inserent/P Insertion Insertionspreise Insertionsunterlage/N Insider/N Insidergeschäfte Insiderskandalen Insiderverhalten Insiderwissen Insolvenz Inspekteur/FS Inspektion/P Inspektionsmaßnahmen Inspektionsreferat Inspektionsreise Inspektionszyklen Inspektor/FPS Inspiration/P Inspizient Inst Instabilität/P Installateur/EFPS Installateurmeister Installation/P Installationsarbeit/P Installationsleitung/P Installationsmängel Installationsmaterial Installationsort/EPS Installationsprogramm/EPS Installationsprozess/EPT Installationsrezept Installationstag/EPST Installationswahl Installationszustand Installierens Installierung/P Instandhalten/JS Instandhaltungskosten Instandsetzens Instandsetzung/P Instandsetzungsarbeit/P Instantiierung/P Instanz/P Instanzvariable/N Instinkt/EPT Institut/EPST Institution/P Institutionalisierens Institutionalisierung/P Institutsbericht/EPS Institutsbetrieb Institutsgelände Institutsleiter Instrukteur Instruktion/P Instruktionsfolge/N Instruktionssatz Instrument/EPT Instrumentalensemble Instrumentalisieren/JS Instrumentalist/P Instrumentalpart Instrumentarium Instrumententasche Insulaner/FNS Insulin/S Insulingaben Insulinmangel Insulinmenge Insulinvorrat Inszenator Inszenierens Inszenierung/P Integralbildung Integralrechnung/P Integrals Integralteil/EPS Integration Integrationsaspekt/EPS Integrationsbereitschaft Integrationsfähigkeit Integrationsfigur Integrationsgeschwindigkeit/P Integrationsidee/N Integrationsmethode/N Integrationsplatinen Integrationspolitik Integrationsprozess/EPT Integrationsvorteil/EPS Integrierbarkeit Integrität Intel/S Intellekt/S Intellektuellenschicht Intelligenz/P Intelligenzbestie/N Intelligenzgrad Intelligenzler Intelligenzquotient/P Intelligenztest/S Intelligenztheorie/N Intendant/P Intendantenamt Intendantenstuhl Intendantenwahl Intensität/P Intensitätsschwächung Intensivierens Intensivierung/P Intensivstation/P Intention/P Interaktion/P Interaktivität/P Intercity/S Interdependenz Interesse/NS Interesselosigkeit Interessenausgleich/S Interessenbefriedigung Interessengebiet/EPST Interessengemeinschaft/P Interessengruppe/N Interessenkollision/P Interessenkonflikt Interessenkreis/EPT Interessenlage/N Interessenschwerpunkt Interessent/PW Interessentengruppe/N Interessentenmeldung/P Interessenverbände Interessenverband Interessenvertretung/P Interessiertheit Interface/S Interfaceplatine/N Interferenz/P Interferenzmuster/NS Interferenzpunkt Interim/S Interimsregierung/P Interludium Intermezzi Intermezzo/S Internat/EPSW Internationalisieren/JS Internationalismus Internatsabteilung Internatsleiter Internatsschule Internet/S Internetseite/N Internierungshaft Internierungslager Internierungszeit Interpol Interpret/FPR Interpretation/P Interpretationskurse Interpretationsrisiko Interpreter/NS Interpretierens Interpretierung/P Interpunktion/P Interpunktionszeichen/S Interrupt/S Interruptbuffer/S Interruptsteuerung/P Interruptvektortabelle/N Interruptverarbeitung Intervall/EPS Intervallkalkül Intervention/P Interventionsbestände Interventionsmaßnahmen Interventionspflicht Interventionspunkt/EPST Interventionsrechte Interview/RS Interviewer/NS Interviewpartner Interviewung Interzins Interzonen Interzonenhandelabkommen Interzonenhandelsvertrag/STp Interzonenpass/Tp Interzonenregelung Interzonenreisenden Interzonenstrecken Interzonenverkehr Inthronisation Intimität/P Intimsphäre Intoleranz Intranet/S Intrigantin/F Intrige/N Intuition/P Invalidenrente/N Invalidenversicherung/P Invalidität Invaliditätsversicherung Invasion/P Invasionsarmee/N Invasionsgebiet Invasionstruppe/N Inventar/EPS Inventardatei/P Inventur Inventuraufstellung Inventurliste/N Invertierens Invertierung/P Investition/P Investitionsabgabe Investitionsanreize Investitionsaufgaben Investitionsaufwand Investitionsbank Investitionsbedarf Investitionsboom Investitionsfonds Investitionsgüter Investitionshilfe Investitionsklima Investitionskosten Investitionskredite Investitionsmittel/NS Investitionsniveau Investitionspause Investitionspläne Investitionsplanung Investitionspole Investitionspolitik Investitionssteuer Investitionssumme Investitionstheorie Investitionszulagen Investitionszuschuss/Tp Investitionszweck/P Investitur Investiturstreit Investmentanteil/EPS Investmentbanker Investmentberater/N Investmententscheidung/P Investmentfirma Investmentform/P Investmentgesellschaft/P Investmentguru Investmentkonzerne Investmentreport Investments Investmentsektor Investmentszene Investmentvehikel Investmentvolkes Investmentzertifikat/EPS Investor/P Inzest Inzucht Ion/PS Ionen/W Ionenantrieb Ionisation Irak Iran Ire/FN Irland/S Ironie Ironiker/NS Irrationalismus Irreführens Irreführung/P Irregefühl/S Irrelevanz Irrenärzte/FN Irrenanstalt Irrenarzt/T Irrenhaus/Tp Irrenheilanstalt/P Irrfahrten Irrglaube/N Irritation/P Irrläufer Irrlehre/N Irrsinn/S Irrtümer/N Irrtum/S Irrweg/EPST Isaac/S Isaak/S Isar Ischias Ischiasnerv Isis Islam/S Islamabad/S Islamist/P Islamit/FPX Island Islandpony/S Isolation/P Isolationismus Isolationist/P Isolationsspannung Isolationsstoff Isolator/P Isolierbändern Isolierband/T Isolierens Isolierplatte Isolierschicht Isolierstation/P Isolierstoff Isolierung/P Isolierwerk Isometrie/N Isomorphie Isomorphismen Isomorphismus Isopropanol Isotop/EPS Isotropie Israel/S Israeli/S Istanbul Italien/RS Italienaufenthalt Italiener/FNS Italienfront Italienreise Iteration/P Itzehoe Ivan/S Jäger/FNS Jägerei Jägergemeinschaft Jägerlatein Jägermeister/NS Jägerprüfung Jährchen/S Jähzorn/S Jacht/P Jachtklub Jack/EPS Jackentasche/N Jackett/S Jacob/S Jacqueline/S Jacques Jadebusen Jaffa Jagd/P Jagdaufenthalt Jagdaufseher/N Jagdaufsicht Jagdausflug/Sp Jagdbeute Jagdbomberangriffe Jagdbombern Jagdbomberregiment Jagderlebnis/Qq Jagdflieger/NS Jagdfliegerverbände Jagdflugzeug/P Jagdfrevel/N Jagdgefährten Jagdgenossenschaft Jagdgerät Jagdgeschwaders Jagdgesetz/ET Jagdgewehr/EPS Jagdgründe Jagdhaus/Tp Jagdhütte/N Jagdhund/EPST Jagdmaschinen Jagdmesser/N Jagdmotive Jagdmuseum Jagdpacht Jagdrechte/N Jagdrechts Jagdrevier/EPS Jagdsaison Jagdschein/EPS Jagdschloss/T Jagdseminar Jagdspringen Jagdurlaub Jagdverhältnis/Qq Jagdverpachtung Jagdvorsteher Jagdwaffe/N Jagdzeit/P Jaguar/EPS Jahn/S Jahr/EPST Jahrbuch/S Jahresabonnement/S Jahresabschluss/Tp Jahresanfang Jahresansatz Jahresausgabe Jahresbasis Jahresbeginn Jahresbeitrag/STp Jahresbericht/EPST Jahresbestleistung Jahresbilanz/P Jahreseinkauf/Sp Jahreseinkommen/S Jahresende/NS Jahresendpreise Jahreserhebung Jahresertrag/STp Jahresessen Jahresetat/S Jahresfrist Jahresgabe Jahresgebühren Jahresgehälter Jahresgehalt/S Jahresgewinnanteil Jahresgutachten Jahreshälfte/N Jahreshöchstkurse Jahreshoch Jahresintervalle Jahreskarten Jahreskonferenz Jahreskongress/EPT Jahreskursen Jahresmiete Jahresmittel Jahrespauschale Jahresprämie Jahrespreis/EPT Jahresrente/N Jahresschau Jahresschlussausgabe Jahresschlusskurse Jahresschnitt Jahressteuer Jahresstipendium Jahrestag/EPS Jahrestiefstand Jahresüberschuss/Tp Jahresübersicht Jahresumsatz Jahresumschlag/STp Jahresunterlagen Jahresurlaub Jahresverdienst Jahresvergleich Jahresvergütung Jahresverlust Jahresvorrat Jahreswachstum Jahreswechsel Jahresweltbestleistung Jahreswettbewerb Jahreszahl/P Jahreszeit/P Jahreszinsen Jahrgang/Sp Jahrhundert/EPS Jahrhunderttausende Jahrhundertwende Jahrmarkt/STp Jahrmillion/P Jahrtausend/EPS Jahrtausendfeier/N Jahrtausendwende Jahrzehnt/EPS Jahwe/S Jakarta/S Jakob/S Jakobiner Jalousie/N Jalta Jamaika Jambus James Jammer/GS Jammerbild/RT Jan/S Janeiro Januar/S Januarausgaben Januarlieferung Januarreise Januartag Januarwoche Januarzahlen Japan/RS Japanempfehlung/P Japaner/FNS Japanexperten Japanexporte Japanpanne Japanposition Jargon/S Jaruzelski/S Jauche/N Jauchefass/T Java/S Javasee Jawort/EPST Jazz Jazzband Jazzexperte Jazzmusik Jazzmusiker Jazzplatten Jazzszene Jean/S Jeansträger Jeanstyp Jeep/S Jelzin/S Jemen Jena Jens Jenseitsverheißung Jeremiade/N Jericho Jersey Jerusalem/S Jesaja/S Jesuit/P Jesuitenpater Jesuitenpriester Jesus Jet/S Jg Jg. Jim/S Jörg/S Joachim/S Job/S Jobablauf/Sp Jobsharing/S Joch/P Jochbein Jockeyclub Jod/S Jodkur Jodler/N Jodquelle/N Joga/S Joghurt/S Jogurt/S Johann/ST Johannesburg Johannesevangelium Johannisbeere/N Johannisbrot Johanniskraut/S Johanniter John/S Johnson/S Jointventure/S Joker Jolle/N Jones Jongleur Jordan/S Jordanien/S Josef/S Joseph/S Jota Joule Journal/EPS Journalbuchhaltung Journaldrucker/N Journalismus Journalist/FP Journalkontrolle Journalpapier/EPS Journalprinter/S Journalstreifen Journaltransport Journalvorschübe Joy/S Joystick/S Joystickwerten Jüdin/F Jüngling/EPS Jünglingsalter/S Jürgen/S Jütland Jubel/S Jubelfeier Jubelschrei Jubelsturm Jubiläen Jubiläum/S Jubiläumsausgabe/N Jubiläumsfeier Jubiläumsjahr Jubiläumskonferenz Jubiläumsregatta Jubiläumsrennen Jubiläumssendung Jubiläumstreffer/S Jubilar/EFPS Judäa Juda/S Jude/N Judenfrage Judenpogrome Judentum/S Judenverfolgung/P Judo/S Judoka Judokurse/N Judosport/S Judoverband/S Jugend Jugendämter Jugendabteilung Jugendalter Jugendamt/S Jugendarbeit Jugendauswahl Jugendbeilage Jugendberufsnot Jugendbuchpreis Jugendbund Jugendchor Jugenderinnerung/P Jugendfreigabe Jugendfreund/EFT Jugendführer Jugendführung Jugendfunk/S Jugendfunktionäre Jugendgemeinschaft Jugendgericht/EPS Jugendgruppe/N Jugendheim/EPS Jugendherberge Jugendherbergsleitung Jugendhilfe Jugendhilfegesetz Jugendhof Jugendklub Jugendkomitee Jugendkonferenz Jugendkreuzfahrt Jugendkriminalität Jugendkunde Jugendlichkeit Jugendliebe/N Jugendliteratur Jugendmagazin/EPS Jugendmeister/FNS Jugendmeisterschaften Jugendmusik Jugendnationalspieler Jugendorganisation/P Jugendpfleger Jugendprobleme Jugendrat Jugendrichter Jugendschutzgesetz Jugendsehnsüchte Jugendsenat Jugendsenator Jugendsendung/P Jugendstil Jugendstrafanstalt Jugendstrafe Jugendstrafgefängnis/Qq Jugendstrafkammer Jugendstrafvollzug/S Jugendstreich/ET Jugendstudio Jugendstunde Jugendsünde/N Jugendtanzklub Jugendtrainer Jugendtraum/STp Jugendverbände Jugendverband/T Jugendverbot Jugendvertreter Jugendverwaltung Jugendwart Jugendwerke/N Jugendwerks Jugendzeiten Jugendzeitschrift/P Jugoslawe/FN Jugoslawien Jul Jul. Juli/S Julia/S Juliusturm Juliwoche Jumbo/S Jumbojet/S Jumper/NS Jungakademiker Jungamerikaner Jungbäuerin Jungbauern Jungbergleute Jungbrunnen/S Jungenbeine Jungens Jungenschaft Jungfer Jungfernfahrt/P Jungfernflug/STp Jungfernrede/N Jungfernreise Jungfernschaft/P Jungfilmer Jungfrau/P Jungfrauenquelle Junggeselle/FN Jungholz Jungjäger Jungkäfern Junglehrer/N Jungmädchengenerationen Jungmädchenzimmer Jungoffizieren Jungschützen Jungsozialisten Jungsportler/FNS Jungtiere/N Jungunternehmer Jungvolk Jungwähler/N Juni/S Junikäfer Junior/FPS Juniorchef/FS Juniorenmeister Juniorenmeisterschaften Juniorpartner Junitagen Juniwoche Junker Junkertum Junktim Jupiter Jura/S Jurastudent Jurisdiktion/P Jurisprudenz Jurist/FP Juristenausschuss/Tp Juristenlatein Juristenmonopol Juror/P Jury/S Justierens Justiermagnet Justiermaße/N Justiermöglichkeit/P Justierung/P Justitiar/ES Justiz Justizamtmann Justizangestellte Justizbeamte/NR Justizbehörden Justizgesetzgebung Justizgewalt Justiziar/ES Justizirrtümer/N Justizirrtum Justizkontrollen Justizminister/NS Justizministerien Justizministerium/S Justizpaläste/N Justizpalast Justizpersonen Justizpflege Justizpressestelle Justizsekretär Justizskandal Justizvertreter Justizverwaltung/P Justizwesen/S Jute Juteanbaugebiet Juteindustrie/N Jutta/S Juwel/PS Juwelenauktion Juwelengarnitur Juwelier/EFPS Juweliergeschäft/S Juwelierladen Juwelierwaren Jux/EPT KBaud KByte KDE KGB KLM KPD KPJ KPÖ KPdSU KSZE KWU KZ Käfer/NS Käfig/EPS Käfigwagen Kähne/N Kälber/N Kälberangebot Kälte Kälteanlage/N Kältebeständigkeit Kälteeinbrüche Kälteeinbruch/S Kälteerzeugung Kälteerzeugungsmaschine/N Kältegefühl/EPS Kältegrad/T Kälteleistung/P Kältemaschine Kältemischung/P Kältemittel/S Kälteopfer Kälteperiode Kälteregler/NS Kälteschock/S Kälteschutzmittel/N Kältetechnik/P Kältetod Kältewellen Kämmerchen/S Kämmerei Kämmerer/NS Kämpfer/FNS Känguru/S Käppchenträgern Kärnten Kärtchen/S Käse/S Käsegebäck/PS Käseglocke Käsegroßhandel/S Käsehändler/FNS Käsekuchen/S Käseplatte/N Käsepreise Käserei/P Käserinde/N Kästchen/S Kästen Kätzchen/S Käufe/NR Käufer/FNS Käuferkreis/EPT Käufermarkt/Tp Käuferschicht/P Käuferstreik/ST Käuferwiderstand Käuflichkeit Käuzchen/S Kaaba Kabarett/EPS Kabarettist/FP Kabarettprogramm Kabel/S Kabeladresse Kabelanforderung/P Kabelanschluss/Tp Kabelart Kabelausgang/Sp Kabelauszahlung Kabelbaum Kabelbeschädigung Kabelbestellung Kabelbinder/N Kabelbruch Kabelbruchüberwachung Kabelbündel Kabelbuchse Kabeldampfer/S Kabeldeckel Kabeldefekt/EPST Kabeldurchführung/P Kabelenden Kabelfehlersuchprogramms Kabelfernsehen/S Kabelführung Kabelfuge Kabelhalter Kabelkonfektionierung Kabellänge/N Kabellitze Kabelmetall Kabelnetz/EPT Kabelproblem/EPS Kabelraum/STp Kabelreduzierung Kabelreparatur Kabelrezepte Kabelsalat Kabelschächte Kabelschaden Kabelschwänze Kabelseite Kabelspezifikationen Kabelstecker/N Kabelstrecke Kabelstücke Kabelsystem/E Kabeltausch Kabeltrommel Kabeltülle/N Kabeltyp Kabelverbinder/N Kabelverbindung/P Kabelverlauf/Sp Kabelverlegung Kabelvorschrift Kabelwahl Kabelweg/EST Kabelwerke/S Kabelzuführung Kabelzusammenstellung Kabine/N Kabinendach/S Kabinengang Kabinenplätze Kabinentür Kabinenwand Kabinett/EPS Kabinettchef Kabinettsausschuss/Tp Kabinettsberatung/P Kabinettsbeschluss/Tp Kabinettschef Kabinettsentscheidung/P Kabinettsgespräche Kabinettskrise Kabinettsliste Kabinettsminister Kabinettsmitgliedern Kabinettsneubildung Kabinettsneulingen Kabinettsrang Kabinettsregierung Kabinettssitzung/P Kabinettstreffen Kabinettsumbau Kabinettsumbildung Kabinettsverhandlung/P Kabrio Kabriolett/S Kabul Kachel/N Kachelbad Kachelfassaden Kachelöfen Kachelofen/S Kadaver/NS Kader/NS Kaderchef/S Kaderverband Kadett/P Kadi/S Kaff/S Kaffee/S Kaffeeausfuhr/P Kaffeeautomat/P Kaffeebestände Kaffeebörse/N Kaffeebohne/N Kaffeeernte/N Kaffeeexport/E Kaffeegenuss/Tp Kaffeegeschäft/E Kaffeehaus/Tp Kaffeeimporteur Kaffeejahr/T Kaffeekanne/N Kaffeeklatsch Kaffeelöffel/N Kaffeelokal/E Kaffeemaschine/N Kaffeemühle/N Kaffeenachmittag/E Kaffeeplantagen Kaffeeplausch Kaffeepreis/EPT Kaffeequote/N Kaffeerösterei Kaffeesatz/T Kaffeestunde/N Kaffeetasse/N Kaffeeverein Kaffeeversand Kafka/S Kahlheit Kahlköpfe/N Kahlkopf/ST Kahlschlag/Sp Kahn/S Kai/S Kaimauer/N Kairo/S Kais/R Kaischeck Kaiser/FNS Kaiserhaus/Tp Kaiserhöfe Kaiserhof Kaiserkrönung Kaiserpfalz Kaiserreich Kaiserschnitt/EPS Kaiserslautern Kaiserstadt Kaiserstandarte Kaiserstil Kaisertage Kaiserthron Kaisertümer Kaisertum Kaiserzeit Kajüte/N Kakadu/S Kakao/S Kakaobohne/N Kakaomarkt/T Kakaonotierung/P Kakaorepubliken Kakerlak/PS Kaktee/N Kaktus Kalabrien Kalahari Kalamität/P Kalauer Kalb/ST Kalbfelle Kalbfleisch/T Kalbsbraten/S Kalbsschnitzel Kaledonien Kaleidoskop Kalender/NS Kalenderblatt Kalenderbuch Kalendergeschichte Kalenderjahr/EPS Kalendermonat/S Kalendertag/EPS Kalenderuhr/P Kalenderwoche/N Kali/S Kaliaktien Kaliber/S Kalibrierens Kalibrierung/P Kalibrierwinkel Kalif/P Kalifornien/S Kalifornier/F Kaligewinnung Kaliproduktion Kalisalz Kalisyndikat Kalium Kalk/ST Kalkar Kalkgebirge/S Kalkgrube/N Kalkseifenrand Kalkstein Kalksteinvorkommen Kalkül/EPS Kalkulation/P Kalkulationschef Kalkulationsfehler/N Kalkulationsmethode/N Kalkulationsprogramm/EPS Kalkulator Kalkutta Kalkwerk Kalligraph/Pf Kalligraphie/Nf Kalorie/N Kaloriengehalt Kalorientabelle Kalorienverbrauch Kaltbiegen/S Kaltblüter/S Kaltblütigkeit Kaltfront/P Kaltgeräte Kaltgerätekabel Kaltgerätesteckdose Kaltgerätestecker Kaltlagerung Kaltleim/S Kaltleiter Kaltluft Kaltluftzufuhr Kaltmiete Kalträucherei/P Kaltstart Kaltverformung/P Kaltverpflegung Kaltwasser Kaltwasserheilkunde/N Kaltwasserkuren Kaltwelle/N Kalvinist/FP Kalzium/S Kalziumchlorid/S Kalziumkarbonat Kamasutra Kambodscha Kamel/EPS Kamelfüllen Kamelgarn/S Kamelhaar/PS Kamelhengst/EPT Kamelkühe Kamelkuh Kamelreiten Kamelreiter Kamelstuten Kameltreiber/N Kamera/S Kamerabereich Kamerad/FP Kameradschaft/P Kameradschaftsabend/EPS Kameradschaftsehen Kameradschaftsgeist/T Kamerageschäft Kameraindustrie Kameraleute Kameralinsen Kameramänner Kameramann Kameraumsatz Kamerun Kamikaze Kamille Kamin/EPS Kaminfeger/N Kaminfeuer/S Kaminfeuerung Kaminkehrer Kaminplausch Kaminsims/EPT Kaminzimmer Kamm/RS Kammerbezirk Kammerdiener/S Kammergericht/E Kammerherr/N Kammerjäger/S Kammerkonzert/ET Kammermusik Kammermusikstücke Kammeroper Kammerorchester/N Kammerpräsident Kammersänger/FNS Kammerspiele/S Kammerzofe Kammgarn/EPS Kammgarngewebe/S Kammmuschel/N Kammräder Kammrad/T Kampagne/N Kampf/ST Kampfabschnitt/ET Kampfabstimmung/P Kampfansage/N Kampfanweisung/P Kampfanzug/Tp Kampfauftrag/Tp Kampfausrüstung Kampfbahnen Kampfbegierde/N Kampfblättchen Kampfbund Kampfdauer Kampfeinheit/P Kampferfahrung/P Kampffähigkeit Kampfflieger/S Kampfflugzeug/ET Kampffront Kampfführung Kampfgas/EPT Kampfgebiet/EPT Kampfgefährten Kampfgeist/ST Kampfgenosse/N Kampfgeschwader Kampfgewühl/S Kampfgruppen Kampfhandlung/P Kampfhubschrauber Kampfkandidatur Kampfkommandant Kampflied/R Kampfmaßnahme/N Kampfmöglichkeit/P Kampforganisation/P Kampfort Kampfpanzern Kampfparole Kampfplätze Kampfplatz/T Kampfposition Kampfpreis/EPT Kampfprogramm Kampfrufe/NS Kampfschluss/Tp Kampfsituation Kampfstärke Kampfszene/N Kampftätigkeit Kampftag Kampftaktik Kampftechniken Kampftruppe/N Kampfverbände Kampfverband/T Kampfwagen Kampfwahl Kampfwillen/S Kampfzelle Kampfziele/NS Kampfzonen Kanäle/N Kanaan Kanada Kanadier/FNS Kanaille/N Kanake/N Kanal/S Kanalabschnitt Kanalanfuhr Kanalarbeiter/FNS Kanalbau Kanalböschung Kanalbrücke Kanaldurchquerung Kanalfähre Kanalheringe Kanalinsel/N Kanalisation/P Kanalisationsnetz/ET Kanalisationsrohr/EPS Kanalisierens Kanalisierung/P Kanalküsten Kanalnähe Kanalnetz Kanalnummer/N Kanalnummernausgabe Kanalschacht Kanalschifffahrt Kanalsohle Kanalstraße Kanalsystem/PS Kanalverbindung/P Kanalwähler/NS Kanapee/S Kanarienvögel/N Kanarienvogel Kandare Kandidat/P Kandidatenauswahl Kandidatenlisten Kandidatenturnier Kandidatenvorschlag/STp Kandidatur/P Kandinsky/S Kaninchen/S Kaninchenfell/EPS Kaninchenstall/Sp Kanister/N Kanne/N Kannibale/N Kannibalismus Kanon/EPS Kanonenboot/EPT Kanonendonner Kanonenfutter/S Kanonenkugel/N Kanonenöfen Kanonenofen/S Kanonenrohr Kanonenschuss/Tp Kanonier/EPS Kansas Kant/S Kantate/N Kantenschutz Kantenwinkel/N Kantine/N Kanton/S Kantonspolizei Kantorei Kanu/S Kanufahrer Kanuregatta Kanute/N Kanuverband/T Kanzel Kanzelparagraph/Pf Kanzlei/P Kanzleibeamte/NR Kanzleisprachen Kanzler/N Kanzlerkandidat Kanzlerkandidatur Kanzlernachfolge Kanzlerwahl Kanzlerwechsel Kap/S Kapaun/P Kapazität/P Kapazitätsausnutzung/P Kapazitätsbeschränkung/P Kapelle/N Kapellmeister/S Kaperkrieg Kapern/JS Kapillargefäß/EPT Kapitälchen Kapitän/EFPS Kapitänleutnant Kapitänsbürde Kapitänswürde Kapitalabfindung/P Kapitalabwanderung Kapitalangabe Kapitalanlage/N Kapitalanteil/EPS Kapitalaufnahme Kapitalaufstockung Kapitalaufwand Kapitalbasis Kapitalbedarf/ES Kapitalbeschaffung/P Kapitalbilanz/P Kapitalbildung Kapitalbuchstabe/N Kapitaleinlage Kapitaleinsatz Kapitalentwertung/P Kapitalerhaltung Kapitalerhaltungsvehikel Kapitalerhöhung/P Kapitalertrag/Tp Kapitalertragsteuern Kapitalexplosion Kapitalflucht Kapitalgeber/S Kapitalgesellschaft/P Kapitalgewinne/N Kapitalgewinns Kapitalgewinnsteuern Kapitalgüter/N Kapitalinvestition/P Kapitalisierens Kapitalisierung/P Kapitalismus Kapitalist/P Kapitalkonten Kapitalkonto/S Kapitallebensversicherung Kapitalmarkt/Tp Kapitalmehrung Kapitalmittel Kapitalnachweises Kapitalpumpe Kapitalrückführung Kapitalrücklauf/Sp Kapitalrückzahlung Kapitals Kapitalsituationen Kapitalsteuer/N Kapitalstrom/S Kapitaltransfer Kapitalüberschuss/Tp Kapitalverbrechen/S Kapitalverkehr/S Kapitalverluste/N Kapitalvermögen Kapitalvervielfachung/P Kapitalwert/T Kapitalzinse/NS Kapitel/NS Kapitol Kapitulation/P Kaplan Kappe/N Kappendachbedüsung Kapsel/J Kapselns Kapselriss/EPT Kapselung/P Kapslung/P Kapstadt Kapuze/N Kapuziner/NS Karabiner/NS Karaffe/N Karajan/S Karambolage/N Karamell/EPS Karaoke Karat/ET Karatekunst Karatschi Karawane/N Karawanenstraße/N Karbon Karbonade Karbonat/EPS Karbonwälder Kardinäle/N Kardinal/S Kardinalbischöfe/N Kardinalbischof Kardinalfehler/NS Kardinalität/P Kardinalpunkte/NS Kardinalskollegien Kardinalskollegium Kardinaltugend/P Kardinalzahl/P Kardiogramm/ST Karenzzeit/P Karfreitag/S Karibik Karies Karikatur/P Karikierens Karikierung/P Karin/S Karl/S Karla/S Karlsbad Karlsbader Karlsruhe/R Karneval/EPS Karnevalsmaske Karnickel/N Karo/S Karokönig Karolinger Karomuster/S Karos/q Karosserie/N Karosseriebau/RS Karosseriebauer/NS Karotin/S Karotte/N Karottensaft Karpaten Karpfen/S Karpfenteich/EPT Karree/S Karrengäulen Karrengaul/S Karriere/N Karrierefrau/P Karrierist/P Karstadt Karsten/S Karstgebirge Karte/N Kartei/P Karteikästen Karteikarte/N Karteikasten/S Karteischränke/N Karteischrank/ST Kartell/EPS Kartellabsprache Kartellamt Kartellbehörde/N Kartellbildung Kartellgesetz Kartellrecht Kartellverbote/NS Kartellvorlage Kartellwesen/S Kartenausgabe/N Kartenausgabestelle Kartenbrief/EPS Kartendrucker/N Kartendruckwerk/ST Kartengruß/Tp Kartenhaus/Tp Kartenkunststück/EPS Kartenlegen/S Kartenlegerin Kartenleselampe Kartenmaterial Kartenmengen Kartenspiel/EPRS Kartenspieler/FNS Kartenständer/N Kartenstiche Kartentasche/N Kartentisch/EPT Kartenverkauf/Sp Kartenversion/P Kartenvorverkauf/Sp Kartenzeichens Kartenzeichner/N Karthager Karthago Karthum Kartoffel/N Kartoffelanbaus Kartoffelangebot Kartoffelbranntwein/EPT Kartoffelbrei Kartoffelernte Kartoffelerntemaschine/N Kartoffelimporte Kartoffelkäfer/N Kartoffelknödel/NS Kartoffelmehl Kartoffelpreise Kartoffelsäcken Kartoffelsack Kartoffelsalat Kartoffelschälen/S Kartoffelsuppe Kartoffelzoll Kartograph/Pf Kartographie/f Karton/S Kartonfabrik Karussell/EPS Karwoche Kaschmir Kaschmirschal/S Kaschmirwolle Kaserne/N Kasernenanlage Kasernenarrest/EPT Kasernendienst/EPT Kasernenhöfe/N Kasernenhof/ST Kasernenhofton/S Kasino/S Kaskade/N Kaskadenbombenwürfen Kaskadenbombenwurf/T Kaskadenmotor/PS Kaskadenschaltung/P Kasko Kaskoversicherung Kasper Kasperletheater Kassageschäft/EPS Kassakurs/EPT Kassalieferung/P Kassamarkt/T Kassapreis/EPT Kassation/P Kassationshöfen Kassationshof/S Kasse/N Kassel Kasseler Kassenärzte/FN Kassenabschluss/Tp Kassenanweisung Kassenarzt/T Kassenbeamte/N Kassenbeiträgen Kassenbeleg/EPST Kassenbericht/EPST Kassenbeständen Kassenbestand/T Kassenbilanzen Kassenbücher Kassenbuch/T Kassendefizit/EPS Kassendiebstählen Kassendiebstahl/S Kasseneingängen Kasseneinnahme Kassenerfolg/EPT Kassenführer/S Kassengebäude Kassenhilfe Kassenkredit/E Kassenlade/N Kassenladenansteuerung Kassenladenausgang Kassenlage Kassenleiter/FNS Kassenmagnet Kassenmitglied Kassenmitglieder Kassenöffner/S Kassenobligation/P Kassenpatient/P Kassenpraxen Kassenprobleme Kassenprüfung/P Kassenquittung/P Kassenraub Kassenraum/STp Kassenrekord/EPS Kassenrevision/P Kassenschalter/S Kassenscheck/S Kassenschlager/NS Kassenschluss/Tp Kassenschränken Kassenschrank/S Kassenspeicher Kassensteuerung Kassensturz/T Kassenterminal/S Kassenwart/PS Kassenzettel/S Kasserolle/N Kassette/N Kassettendecke/N Kassettenfernsehen/S Kassettenfilm/ET Kassettenrecorder/N Kassettentonbandgerät/EPS Kassierer/FNS Kassler/S Kastagnette/N Kastanie/N Kastanienbaum/STp Kastanienholz/T Kastell/EPS Kastellan/EPS Kasten/S Kastenaufbau Kastenbrote/NS Kastendrachen/S Kastenform/P Kastengeist/RT Kastenkipper/NS Kastenmöbel Kastenrahmen/S Kastenwagen Kastilien Kastrat/P Kastration/P Kastrationskomplex/E Kasus Kasusendung/P Katakombe/N Katalog/EPST Katalogblatt Katalogpreis/EPT Katalogzeichen Katalonien Katalysator/PS Katamaran Katanga Katapult/EPST Katapultflugzeuge/NS Katapultstart/ST Katarr/S Katarrh/EPS Katastrophe/N Katastrophengebiet Katastrophenstelle Katastrophentag Katastrophentheorie Katastrophenzeiten Katechismen Katechismus Kategorie/N Kategorisierens Kategorisierung/P Kater/NS Katharina/S Katheder Kathederblüte/N Kathederweisheit/P Kathedrale/N Kathedralenstadt Kathete/N Kathode/N Kathodenröhren Kathodenstrahlen Kathodenverstärker/S Katholik/P Katholizismus Kathrin/S Katia/S Katrin/S Kattun/S Kattundruck/ET Kattunkleid/T Kattunkleider Katz/EP Katzenauge/N Katzenbuckel/NS Katzenfell/EPS Katzenjammer/S Katzenklappe Katzenmütter Katzenmusik Katzenmutter Katzenpfötchen Katzentisch/EPS Katzenverein Kauderwelsch/S Kaufabschluss/Tp Kaufabsichten Kaufangebot/E Kaufanlass/Tp Kaufanreiz Kaufauftrag/Tp Kaufbereitschaft Kaufbrief/ET Kaufempfehlung/P Kaufentscheidung/P Kaufentschluss/Tp Kauffahrer/FNS Kauffrau/P Kaufgeld/RST Kaufgelegenheit/P Kaufgespräche Kaufhalle/N Kaufhaus/Tp Kaufhausaktien Kaufhauskonzern Kaufhauswerte Kaufherren Kaufhof Kaufinteressenten Kaufkandidat/P Kaufkraft Kaufkraftparität Kaufkraftschwund/T Kaufkredit Kaufläden Kaufladen/S Kaufleute/N Kauflust Kaufmänner Kaufmann/S Kaufmannshaus/Tp Kaufmannslehrling/EPS Kaufmiete/N Kaufmoment Kaufmotiv/EPS Kaufobjekt/EPST Kauforder Kaufpreis/E Kaufprogramm Kaufs Kaufschein Kaufsignale/N Kaufstätte Kaufstraße/N Kaufsumme Kaufverpflichtung Kaufvertrag/STp Kaufvertragsentwurf Kaufweigerung Kaufwelle Kaufwert/T Kaufwut Kaufzwang/Sp Kaugummi/S Kaukasus Kaulquappe/N Kausalbedingung/P Kausalbegriff/EPT Kausalgesetz/EPT Kausalität Kausalkette/N Kausalprinzip/S Kausalsätze/N Kausalsatz/T Kausalsträhne/N Kausalzusammenhang/Sp Kautabak Kaution/P Kautionsrückerstattung Kautschuk/S Kautschukforscher Kautschukforschung Kautschukherstellung Kautschukmarkt/ST Kautschukproduktion Kautschuksynthese Kautschukverbrauch Kauz/T Kavalier/EPS Kavaliersdelikt/EPST Kavallerie/N Kavalleriepferd/EPT Kavallerist/P Kaverne/N Kaviar/S Kavitation/P Kawasaki Kb Keckheit/P Kegelabende Kegelausschnitt Kegelbahnen Kegelbremse/N Kegelclub Kegelgetriebe/S Kegelklub/S Kegelkugel Kegelkupplung Kegelräder/N Kegelrad/ST Kegels Kegelscheibe Kegelspiel/EPS Kegelsport/T Kegelventil/PS Kegler/NS Kehle/N Kehlköpfe/N Kehlkopf Kehlkopfentzündung Kehlkopfoperation/P Kehlkopfschnitt Kehllaut/EPT Kehrbesen/S Kehrens Kehricht Kehrichteimer/S Kehrichthaufen/S Kehrichtschaufel/N Kehrmaschine Kehrreim/EPS Kehrseite/N Kehrtwende Kehrtwendung/P Kehrung/P Kehrwert/EPT Kehrwisch/ET Keil/S Keilabsätze Keilabsatz/T Keiler Keilflosse/N Keilform Keilhacke/N Keilhose Keilkissen Keilriemen/S Keilriemenscheiben Keilschrift Keilstoß/Tp Keilstück/EPS Keim/S Keimbahnzellen Keimbildung/P Keimdrüse/N Keimdrüsenhormon/EPS Keimfaden Keimling/EPS Keimscheibe Keimträger/NS Keimzellen Keks/EPT Kelch/EPS Kelchblätter/N Kelchblatt/T Kelchblüten Kelchgläser/N Kelchglas/T Kelle/NR Keller/S Kellerei Kellereingang Kellerfenster/NS Kellergaragen Kellergeschoss/EPT Kellergewölbe Kellerhof Kellerlager Kellerlokal/PS Kellermeister/S Kellerraum/STp Kellerschwimmbad Kellerschwimmhalle Kellertheater/S Kellertreppe Kellerverlies Kellerwechseln Kellerwechsels Kellerwirtschaft Kellerwohnung/P Kellner/FNS Kellnerkassen Kellnerkassenterminal/S Kellnernummer Kellnerstift/S Kellnerterminal Kelten Kelterei Kelvin Kempten Kenia Kennbuchstabe/N Kenndaten Kennedy/S Kennenlernen/S Kennens Kenner/FNS Kennerblick/S Kennermiene/N Kennfaden/S Kennkarte/N Kennkurve/N Kennlinie/N Kennmarke/N Kennmelodie/N Kennnummer/N Kenntlichkeit Kenntnis/q Kenntnisnahme Kenntnisstand Kennung/P Kennwert/EPS Kennwort/EPT Kennzahl/P Kennzeichen/S Kennzeichnens Kennzeichnung/P Kennziffer/N Kent Kentucky Kepler/S Keramik/PR Keramikart Keramiker/NS Keramikfabrik Keramikherstellung Keramikindustrie Kerbel/S Kerbholz Kerbnägel/N Kerbtier/EPT Kerbwirkung Kerker/N Kerkerhaft/T Kerkermauern Kerkermeister/NS Kerkerstrafe/N Kerl/EPS Kern/EMPS Kernantrieb Kernbereich/EPS Kernbrennstoff/E Kerneisen/S Kernel/S Kernelektron/PS Kernelversion/P Kernenergie Kernenergieverwertung Kernexplosion/P Kernforscher/FNS Kernforschung/P Kernfrage/N Kernfusion/P Kerngebiet/EPST Kerngedanke/N Kerngehäuse/N Kernkomponente/N Kernkraft Kernkraftwerk/EPS Kernkraftwerkprotest/ET Kernladung Kernladungszahl/P Kernloch Kernmodell/PS Kernmunition Kernobst/T Kernphysik/R Kernphysiker/FN Kernproblem/EPS Kernprogramm Kernpunkt/EPT Kernreaktion/P Kernreaktor/PS Kernschatten/S Kernseife/N Kernspaltung/P Kernspaltungstechnologie Kernsprengkörper Kernsprengsatz/T Kernstädte Kernstück/EPST Kerntechnologie Kernteilchen/S Kerntheorie Kernthese/N Kerntruppe/N Kernwaffen Kernwaffenarsenale Kernwaffengespräch Kernwaffenträger Kernwaffenversuch/E Kernzerfall/S Kerosin Kerosingeruch Kerstin/S Kerze/N Kerzenhalter/N Kerzenleuchter/NS Kerzenlicht/RS Kessel/NS Kesselanlage/N Kesseldruck/S Kesselhaus/Tp Kesselkohle Kessellage Kesselpauke/NR Kesselpauker/S Kesselraum/STp Kesselschlacht Kesselschmied/EPS Kesselstein/EPS Kesseltreiben/S Kesselwagen/S Ketchup/S Ketschup/S Kettchen/S Kettenanhänger Kettenantrieb/EPT Kettenarmbänder/N Kettenarmband/S Kettenbewegung Kettenbrief/EPST Kettenbrücke/N Ketteneinfluss/Tp Kettenende Kettenfahrzeug/EPS Kettengebirge/N Kettengerassel Kettengeschäft/EPST Kettenglied/RT Kettenhund/EPST Kettenlänge Kettenlast Kettenmotor/PS Kettenraucher/NS Kettenreaktion/P Kettenstich/EPS Kettensträfling/EPS Ketzer/FNS Ketzerei Ketzergericht/EPST Ketzerverbrennung/P Ketzerverfolgung Keuchhusten/S Keule/N Keulenhiebe/S Keulenschlag/STp Keuschheit Keuschheitsgelübde/S Keuschheitsgürtel/NS Keyboard/S Keynes Kfz Khakifrüchte Khakistoff Khan/S Khmer Khomeini/S Kibbuz/EP Kibbuzim Kibbuznik/S Kicker Kiebitz/EPT Kiefer/N Kieferbrüchen Kieferbruch/S Kieferknochen/S Kiefernadel Kiefernsämlingen Kiefernwald/T Kieferwälder/N Kieferwald/T Kiel/EPRS Kieler/FNS Kielflosse/N Kieljacht Kiellinie/N Kielraum/STp Kielwasser Kiemen Kiemenatmung Kiepe/N Kies/T Kiesbeton/S Kiesel Kieselalge Kieselböden Kieselboden/S Kieselerden Kieselsäure Kieselsäuregehalt Kieselstein/EPS Kiesgrube/N Kiessand/T Kiesweg/EPT Kieswerk Kiew Kilimandscharo Killer Killerprogramme Kilo/S Kilobyte Kilogramm/EPS Kilometer/N Kilometergeld/T Kilometergeldern Kilometerpauschale Kilometerpreis/E Kilometerstand/T Kilometerstein/EPT Kilometerzähler/S Kilometerzahl Kiloware Kilowatt/S Kilowattstunde/N Kimm/EP Kind/HMRT Kindbacken Kindbett/PS Kinderärzte/FN Kinderabteilung/P Kinderarbeiten Kinderarzt/T Kinderbecken Kinderbeihilfen Kinderbekleidung Kinderbett Kinderbreis Kinderbücher/N Kinderbuch/T Kinderchen Kinderchören Kinderchor/S Kinderdörfern Kinderdorf/T Kinderei/P Kindereisenbahn/P Kinderermäßigung/P Kindererziehung Kinderfahrkarte Kinderfahrräder/N Kinderfahrrad Kinderfaust Kinderfeindlichkeit Kinderfest Kinderfräulein/S Kinderfrau Kinderfreund/EPST Kinderfürsorge Kinderfürsorgern Kinderfürsorgers Kindergärten Kindergärtner/FNS Kindergarten/S Kindergartenniveau Kindergartenordnung Kindergeld/R Kindergeldgesetz Kindergeldreform Kindergeldregelung Kindergeldsystems Kindergeldzahlung/P Kindergesicht/R Kindergrab Kindergrieß/T Kinderhand Kinderheilkunde/N Kinderheim/EPS Kinderhilfe Kinderhilfsfonds Kinderhort/EPST Kinderjahre/N Kinderkleidung Kinderklinik/P Kinderkrankenhaus/Tp Kinderkrankheit/P Kinderkrippe Kinderlähmung Kinderland Kinderlandverschickung Kinderlein Kinderlied/R Kinderlosigkeit Kindermädchen/S Kindermärchen/S Kindermenüs Kindermörder/N Kindermord/ET Kindernährmittel Kindernahrung/P Kindernarr Kinderorganisation Kinderparty/S Kinderpflege/N Kinderpflegeschule Kinderpistole/N Kinderpornographie Kinderpsychologen Kinderpsychologie Kinderschreck/EPS Kinderschuh/EPS Kinderschwestern Kindersegen Kinderspiel Kinderspielplatz Kinderspielzeug/EPS Kindersprache/N Kindersterblichkeit/P Kinderstube Kindertagesstätte/N Kindertaufe Kindertheaterstück Kindervater Kinderwäsche Kinderwagen/S Kinderwiege Kinderzahl Kinderzimmer/NS Kinderzulagen Kindesabtreibung Kindesalter Kindesannahme/N Kindesbeinen Kindesentführung/P Kindeskind/R Kindesleiche Kindesmisshandlung Kindesmörder/FNS Kindesschänder Kindesstufe Kindesvater Kindlein/S Kindmädchen Kindstaufen Kindsvater Kinetik Kinkerlitzchen Kinn/S Kinnbärte/N Kinnbart Kinnhaken/S Kinnladen Kino/S Kinoausstellung Kinobesitzern Kinobesucher/NS Kinobesucherin Kinodirektor Kinodramen Kinokarten Kinokassen Kinoleinwand Kinonarr Kinoparkett Kinoplakat Kinoprogramm/S Kinosaal Kinotechnik Kinotheaterbesitzer Kinovorstellung Kinowand Kiosk/EPS Kioto Kippens Kippfenster/NS Kipphebel/NS Kippkarren Kippmoment/EPS Kippschalter Kippstellung Kippung/P Kippwagen Kippzylinder Kippzylindersteuerung Kir/S Kirche/N Kirchenarbeit Kirchenaustritt Kirchenbesuch/EPRS Kirchenbesucher/NS Kirchenchören Kirchenchor/S Kirchendiener/NS Kirchendisziplin Kirchenfenstern Kirchenfragen Kirchenfürsten Kirchengebäude Kirchengemeinde/N Kirchengeschichte Kirchengesetze/N Kirchenglocken Kircheninnere Kirchenkampf Kirchenkonferenz Kirchenmitglieder Kirchenmusik Kirchenpräsidenten Kirchenprovinz Kirchenräte Kirchenräuber Kirchenrat/T Kirchenrecht Kirchenreport Kirchenschiff/PS Kirchenspaltung Kirchensteuer/N Kirchenstreit Kirchentag/EPT Kirchentagspräsident Kirchentürme/N Kirchenturm/S Kirchenuhren Kirchenvätern Kirchenvater/S Kirchenvertreter Kirchenvolk/S Kirchgänger/FNS Kirchgang Kirchgemeinde Kirchhöfe/N Kirchhof/S Kirchhoff/S Kirchplatz Kirchspiele Kirchturm Kirchturmuhr/P Kirmes Kirschbaum/STp Kirschbaumblüte Kirschblüte/N Kirsche/N Kirschkern/EPS Kirschkuchen/S Kirschsäfte/N Kirschsaft/T Kirschwasser/S Kissen/S Kissenbezug/STp Kissenschlachten Kissinger/S Kiste/N Kistenverpackung Kit/S Kitsch/ST Kitschroman/EPS Kitt/SW Kittchen Kittel/NS Kittelschürze Kitzbock Kitzler/NS Kläger/FNS Klänge/N Kläranlage/N Klärens Klärung/P Klageantrag/Sp Klagebegründung/P Klagegründen Klagegrund/T Klagelied/RT Klagenfurt Klageruf Klages Klageschrift Klageweg/E Klammerdioden Klammerns Klammerung/P Klamotte/N Klangbild Klangereignis/Qq Klangerzeugung Klangfarbenspiel Klangfetzen Klangfundament Klanggüte Klangraum/STp Klangreinheit Klangs Klangvorstellung Klangwolke Klangzeichen Klappbanken Klappenbewegung/P Klappenschränke Klappenzylindern Klapperschlange/N Klapperstorch Klappkappe Klappkappenfolge Klappmesser Klappstühle Klarheit Klarinette/N Klarsichtfolie/N Klarsichtigkeit Klarstellens Klarstellung/P Klartext Klassemann Klassen Klassenarbeit Klassenaufsatz Klassenausflug/Sp Klassenbeste Klassenbewusstsein/S Klassenbildung Klassenchronik Klassendefinition/P Klassenfahrt Klassenfeind/T Klassenforderung Klassengegensätze Klassenhierarchie/N Klassenkämpfe/NR Klassenkämpfer/NS Klassenkamerad/P Klassenkampf Klassenkasse Klassenkonflikt Klassenlehrer/FNS Klassennummer Klassenraum/STp Klassenrekord/E Klassensieg/P Klassensieger Klassensprecher/S Klassenstandpunkt Klassenstruktur Klassenstufe/N Klassentreffen Klassenunterschied/EPS Klassenverband/T Klassenziel Klassenzimmer/S Klassifikation/P Klassifizierens Klassifizierung/P Klassik/R Klassiker/NS Klassikerverfilmung/P Klassizismus Klatschbase/N Klatschblättern Klatschblatt/T Klatschereien Klatsches Klatschgeschichte Klatschmohn Klatschspalte/N Klatschtanten Klaus Klausel/N Klausulieren/JS Klausur/P Klausurarbeit Klausurtagung/P Klavier/EPS Klavierabend Klavierbaumeister Klavierdeckel Klavierinstrument/EPST Klavierkonzert/EPST Klavierlehrer/FNS Klavierschule Klaviersonaten Klavierspielen Klavierstücke/N Klavierstunden Klaviertrio Klavierunterricht Klavierwerk Klebband Klebearbeit Klebebändern Klebeband/T Klebefilm Klebefläche/N Klebemode Klebens Klebepflaster/S Kleber Klebeschichten Klebestreifen Klebesysteme/N Klebeverbindung Klebfilm Klebschicht Klebstoff/EPT Klebstoffstreifen Klebstreifen/S Klebung/P Kleckser/NS Klee/S Kleeblätter/N Kleeblatt/T Kleeernte/N Kleid/JMRST Kleiderbügel/S Kleiderbürste/N Kleidergeschäft/EPS Kleiderhaken/S Kleiderindustrie Kleidermagazin/EPS Kleiderschränke/N Kleiderschrank/T Kleidersorgen Kleiderständer/S Kleiderstoffe Kleiderstoffindustrie Kleidsamkeit Kleidung/P Kleidungsstück/EPST Kleie/N Kleinaktie/N Kleinaktionär/EPS Kleinanlage Kleinanlegern Kleinanlegerverhalten Kleinanzeige Kleinarbeit/P Kleinarmenien Kleinauto Kleinbank/P Kleinbauten Kleinbetrieb/EPS Kleinbild Kleinbildkamera Kleinbürger/N Kleinbürgertum Kleinbuchstabe/N Kleinbus/Qq Kleinexistenzen Kleinfirma Kleinforderung/P Kleinformat Kleingärten Kleingeld/T Kleingewerbe/S Kleingewinn Kleingrundstück Kleinhändler/FNS Kleinhandel/S Kleinhandelspreis/ET Kleinhandelszone Kleinheit Kleinigkeit/P Kleinindustrie Kleininventar/S Kleinkalibergewehr Kleinkampf Kleinkind/T Kleinkinder Kleinkrämern Kleinkram Kleinkredit Kleinkreditkunde Kleinkrieg Kleinküche Kleinkunst Kleinlichkeit Kleinmaterial Kleinmengen Kleinmöbel Kleinmünze Kleinod/EPT Kleinpächter Kleinrad Kleinschreibung/P Kleinserie/N Kleinspannung Kleinsparer Kleinspekulanten Kleinstädte/N Kleinstaat Kleinstadt Kleinstadtbank Kleinstand Kleinstbanken Kleinstbarren Kleinstbauern Kleinstbetrieb/EPST Kleinsteuerung/P Kleinsystem Kleinteil/EPS Kleintier/EPST Kleintierarten Kleintierzucht Kleinuhren Kleinunternehmen/S Kleinverbänden Kleinverdiener/N Kleinverkauf/Sp Kleinvieh Kleinwagen/S Kleinwalsertal Kleinwohnung/P Kleist/S Kleister/S Klemmanschluss/Tp Klemmenadapter Klemmenanschluss/Tp Klemmenanschlussplan Klemmenbelegung Klemmenblöcke Klemmendeckel Klemmeneinheit/P Klemmengruppe/N Klemmenkasten/S Klemmenleiste Klemmenmodul/EPS Klemmennummern Klemmenpläne/N Klemmenplan Klemmenplatine Klemmenpotential Klemmenpotenzial/EP Klemmenzusammenstellung Klemmleiste Klemmleistenanschluss/Tp Klemmmappe/N Klemmschraube Klemmstellung Klemmteile Klempner/FNS Klempnerarbeit/P Klempnerei Klempnermeister Kleriker/N Klerus Klette/N Kletterei/P Kletterer/N Kletterpflanze/N Kletterrose Kletterschuhe/N Kletterstange Kletterwände/N Kletterwand Klettverschluss/Tp Kleve Klicks Klient/P Klientel Klima/S Klimaänderung/P Klimaanlage Klimabedingung/P Klimaforschern Klimagerät Klimaingenieur Klimaplanung Klimatechnik Klimatisierung Klimaverbesserung/P Klimawandel Klimawechsel Klimmzug/STp Klingeldraht Klingelton Klingelvorrichtung Klingelzeichen Klinik/P Klinikneubaus Klinkerbauweise Klinkergebäude Klinkersteine Klippe/NR Klischee/S Klischeevorstellung/P Klitoris Klöckner Klöster/N Klötze/MN Klo/S Klonens Klonung/P Klopapier Kloppe Klops Kloß/Tp Klosett Klosettbecken/S Klosettdeckel/N Klosettfrauen Klosettpapier/S Kloster/S Klosterbrüder/N Klosterbruders Klosterfrau/P Klosterjäger Klosterkirche Klosterküche Klosterreste Klosterruine Klosterschulen Klostersieg Klotz Klüfte/N Klub/S Klubfarben Klubgebäude Klubhaus/Tp Klubjacken Klubkampf Klubleitung Klubmitglieder/N Klubmitgliedschaft Klubraum/STp Klubsessel/NS Klubzimmer Kluft/P Klugheit Klumpen/S Knäckebrot/EPS Knäste/N Knäuel/NS Knabe/N Knabenalter/S Knabenbekleidung Knabenchöre Knabenchor/S Knabenfaust Knabenschule/N Knacker Knackfrösche Knacklaut/EPST Knackpunkt/EPT Knacks Knackwürste/N Knaller/N Knallerei/P Knalles Knallfröschen Knallfrosch/T Knallgas/T Knallköpfe/N Knallkopf/T Knalls Knappheit Knappsack Knast/T Knastbrüder/N Knastbruder Knatterton Knauf/Sp Knaur/S Knautschzone/N Knebelns Knebelung/P Knebelvertrag/STp Kneblung/P Knecht/ST Knechtschaft/P Kneifzange/N Kneipe/N Kneipenwirt/EFP Kneippanlage Kneippkur Kneippkuranstalt Kneippkurbad Kneippkurformen Kneippkurhotel Kneippsanatorium Knesset Knetmasse Knetprozess/EPT Knickerbocker Knickkante/N Knicks/T Kniefall/Sp Kniegelenk/EPS Knies Kniescheibe Kniestrümpfe/N Kniestrumpf Kniffe Kniffs Knigge/S Knilch Knirps/P Knöchel/S Knöchelverletzung Knödel Knobelei Knoblauch/S Knoblauchzehen Knochen/S Knochenbrüche Knochenbruch/S Knochenfunde Knochengerüst/EPT Knochenmann Knochenmark/S Knochenmehl/S Knochenring Knochensplitter/NS Knochentuberkulose Knolle/N Knopf/ST Knopfdruck Knopflöcher/N Knopfloch Knopfrand Knopfzelle/N Knorpel/N Knospe/N Knossos Knotenapplikation Knotenast Knotenausfall Knoteneingang Knoteneinheit/P Knotenfirmware Knotenfunktion/P Knotenkette Knotenklemme Knotenmeldung/P Knotenmodul Knotenprogramm Knotenpunkt/EPST Knotenrechner/NS Knotenrechnerapplikation Knotenrechnergehäuse/S Knotenrechnerkassette Knotenrechnernetz/T Knotenressourcen Knotens Knotenseite Knotenstruktur/P Knox Knüller/NS Knüpfens Knüpfung/P Knüppels Knüppelstratege Köche/FNR Köcher/NS Köder/NS Köln/R Kölner/FNS Kölnischwassers Kölsch König/EFPS Königgrätz Königinmutter Königreich/EPS Königsberg Königsfamilie Königsfriede Königshaus/Tp Königshütte Königskind Königskinder Königspaar Königspalast Königspokal Königspriestertum Königssee Königssohn Königsstuhl Königstöchtern Königswall Königsweg/EPS Königswürde Könnens Könner/NS Köpenick/S Köpfchen Körbe/MN Körnchen/S Körnen/JS Körner/NS Körper/NS Körperbau/ST Körperbehinderung Körperbewegung/P Körpererziehung Körperfett Körperflüssigkeit/P Körperformen Körpergerüchen Körpergeruch/S Körpergewebe/S Körpergröße/N Körperhaltung Körperkraft Körperkreislauf/Sp Körperkultur Körperlichkeit Körpermaße Körpermasse Körpermuskulatur Körperpflege Körperpflegemitteln Körperpuder Körperreaktion/P Körperschaft/P Körperschall/S Körperschallanalyse Körperschule Körperschulung Körpersprache Körperteil/EPS Körpertemperatur Körperverletzung/P Köstlichkeit Köter/NS Koalition/P Koalitionsabgeordneter Koalitionsberatung/P Koalitionsbildung/P Koalitionsentwurf Koalitionsfragen Koalitionsgefährten Koalitionsgenossen Koalitionsgespräch Koalitionskabinett/S Koalitionskandidat/P Koalitionskrise Koalitionsmehrheit Koalitionsmitglieder Koalitionsparteien Koalitionspartner Koalitionspartnerschaft Koalitionspolitik Koalitionsprogramm Koalitionsprotokoll Koalitionsregierung Koalitionssitzung/P Koalitionsstreit Koalitionsverhandlung/P Koaxialkabel/NS Kobalt Kobaltatome Koblenz Kobold/EPS Kobra Kochanlagen Kochbrunnen/S Kochbücher/N Kochbuch/T Kocher/NS Kochereien Kochkenntnis/q Kochkessel Kochkünste Kochkunst Kochkurs/P Kochlehrgang Kochlöffel/N Kochnische/N Kochplatten Kochrezept/EPST Kochs Kochsalz Kochsalzsteueraufkommen/S Kochschinken Kochschule Kochtöpfen Kochtopf/T Kochzeit Kodex/EPT Kodierens Kodierstecker Kodierung/P Kodizes Koeffizient/P Koexistenz Koffein/S Koffer/NS Koffergerät/EPST Koffergriff Kofferindustrie Kofferkammer Kofferradio/S Kofferradionationen Kofferraum/STp Kognak/S Kognition/P Kohärenz Kohäsion Kohäsionskraft Kohl/EPS Kohleabbaus Kohleanteil Kohleaugen Kohlebasis Kohlebedarf Kohlebehörde Kohlebereich Kohlebergbau Kohlebrocken Kohlechemie Kohlediagnose Kohleeigenschaften Kohleerkennung Kohlefestigkeit Kohleforschung Kohlegebiet Kohlehalden Kohlekonzern Kohleländer/N Kohleleistung Kohlenaktien Kohlenarten Kohlenbeckens Kohlenbergbau/S Kohlendioxid/S Kohleneimer Kohlenfirma Kohlenförderbänder Kohlenförderung Kohlengeschäft/S Kohlengroßhandel Kohlengruben Kohlenhalden Kohlenhandel/S Kohlenhydrat/EPS Kohlenindustrie Kohlenkasten Kohlenkeller Kohlenlage Kohlenlieferung/P Kohlenmarkt/T Kohlenmonoxid Kohlenmonoxyd Kohlenpreis/E Kohlenpreiserhöhung Kohlenproduktion Kohlenrevier/E Kohlensäure/N Kohlenstaub Kohlenstoff/EPS Kohlenstoß/Tp Kohlenverbraucher/S Kohlenverladung/P Kohlenvorräte Kohlenwagen Kohlenwand Kohlenwasserstoff/EPS Kohlenwerkstoffe Kohlepapier/S Kohleproduktion Kohleschichtwiderstand Kohlesektor Kohlesensor/S Kohlestift/EPST Kohlestoß/Tp Kohlestreb Kohlestück Kohletransporte Kohleverbrauchs Kohlevorkommen Kohlewirtschaft Kohlezeichnung/P Kohlrüben Kohorte/N Koinzidenz Koitus Koje/N Kojote/N Kokain Kokerei/P Koketterie Kokolores Kokon/S Kokosnuss/p Koks/T Koksfeinkohle Koksfeuer Koksgas Kokshalden Kokspreis Koksproduktion Kokswerke Kolben/S Kolbenbewegung/P Kolbenboden Kolbenecho Kolbenfläche Kolbengeschwindigkeit Kolbenhübe Kolbenhub/S Kolbenlänge Kolbenposition/P Kolbenraum/STp Kolbenringe Kolbenspeicher/N Kolbenspeicherdruck Kolbenstellung/P Kolbenstellungsanzeige Kolbenstellungsmessung Kolbenstrecke Kolbenweg Kolbenwegschreiber Kolchosarbeit Kolchose/N Kolchoseinkommen Kolchosfelder/N Kolchosland Kolchosmitgliedern Kolchosvorstand Kolik/P Kollaborateur/EFPS Kollage/N Kollaps/EPT Kollege/FN Kollegialität Kollegialorgan Kollegien Kollegium/S Kollekte/N Kollektion/P Kollektivausstellung Kollektivbewusstsein/S Kollektiventscheidung/P Kollektivfarmen Kollektivgremien Kollektivierens Kollektivierung/P Kollektivismus Kollektivs Kollektivschuld Kollektivwirtschaft Kollektor/P Koller/S Kollier/S Kollision/P Kollisionsabstände Kollisionsabstand/T Kollisionserkennung Kollisionsgefahr Kollisionskurs/EPT Kollisionsprogramm Kollisionsschutz Kollisionsschutzsystem Kolloquien Kolloquium/S Kolofonium/S Kolonialbeamter Kolonialgebiet Kolonialgeschichte Kolonialhändel Kolonialherrschaft Kolonialisieren/JS Kolonialismus Kolonialist/P Kolonialländer Kolonialland Kolonialmächte Kolonialmacht Kolonialpolitik Kolonialprovinz Kolonialverfassung Kolonialverwaltung Kolonialvölker Kolonialzeit Kolonie/N Kolonisierens Kolonisierung/P Kolonist/P Kolonne/N Kolophonium/S Kolorierens Kolorierung/P Kolorist/P Kolorit/X Koloskop/EPS Koloskopie/N Koloss/EPT Kolosseum Kolportage/N Kolporteur/EPS Kolumbien/S Kolumne/N Kolumnist/P Kombattant/P Kombi Kombinat/EPS Kombination/P Kombinationsmöglichkeit/P Kombinationsproblem/EPS Kombinationsreise Kombinationswertung Kombinatorik Kombinierbarkeit Kombiwagen Kombizange Kombüse/N Komet/P Kometenbahn Kometenfahrt Kometenschweif Komfort/S Komfortausstattung Komfortbungalow/S Komforteigentumswohnung Komfortvilla Komik/R Komiker/FNS Komintern Komitee/S Komma/S Kommandant/P Kommandantur Kommandeur/EFPS Kommandeursposten Kommanditgesellschaft/P Kommanditist/P Kommando/S Kommandobrücke Kommandobyte/S Kommandogewalt Kommandokapseln Kommandoleitung Kommandoposten Kommandosache Kommandostelle/N Kommandostruktur Kommandotrupp/S Kommandoüberfall Kommandounternehmen Kommandozeile/N Kommandozentrale/N Kommastelle/N Kommata Kommentar/EPS Kommentarbuchstaben Kommentarzeilen Kommentator/S Kommentierens Kommentierung/P Kommerz Kommerzialisierens Kommerzialisierung/P Kommilitone/FN Kommiss/T Kommissar/EFPS Kommissariat/EPS Kommission/P Kommissionär/EPS Kommissionsbasis Kommissionsbetrieb/EPST Kommissionsmitglied/R Kommissionssitzung/P Kommissionsvorschlag/STp Kommissionsvorsitzende/NR Kommode/N Kommunalabgaben Kommunalanleihe Kommunalbeamte Kommunalfinanzen Kommunalkredite Kommunalparlamente Kommunalpolitik/R Kommunalsteuern Kommunalverbände Kommunalwahl/P Kommune/N Kommunikation/P Kommunikationsfähigkeit Kommunikationskanäle/N Kommunikationsleitung/P Kommunikationsmedien Kommunikationsmittel/NS Kommunikationsmöglichkeit/P Kommunikationsnetz/EPT Kommunikationspartner Kommunikationspin/S Kommunikationsproblem/EPS Kommunikationsprogramm Kommunikationsrichtung Kommunikationssatelliten Kommunikationsschwierigkeit/P Kommunikationssoftware Kommunikationssystem/EPS Kommunikationstechnik/P Kommunikationsweg/EPS Kommunikationswesen/S Kommunikationszeit/P Kommunikationszentrum Kommunikator Kommunikee/N Kommunion/P Kommuniqué/S Kommunismus Kommunist/FP Kommunistenhass/T Kommutativität Komödchen/S Komödiant/FP Komödie/N Komödienbühne Komödienvorlage Kompagnon/S Kompaktheit Kompaktlösung/P Kompaktstation/P Kompaktsteuergeräte Kompanie/N Kompanieführer Kompaniegeschäft/ES Kompaniestärke Komparativ/EPS Komparator/S Komparse/N Komparserie/N Kompass/ET Kompatibilität Kompatibilitätsgründen Kompensation/P Kompensationsabkommen/S Kompensationsangebot Kompensationsbewegung Kompensationsgeschäft/EPST Kompetenz/P Kompetenzabgrenzung/P Kompetenzausübung Kompetenzbereich/EPST Kompetenzerweiterung/P Kompetenzstreit/S Kompetenzübertragung Kompetenzverteilung Kompilation Kompilator/PS Komplement/EPS Komplementbildung Komplettausrüstung Komplettgeräte/N Komplettierens Komplettierung/P Komplettierungsauftrag/STp Komplettpreis/EPT Komplettsystem/EPS Komplexität Komplexitätsanalyse/N Komplexitätsuntersuchung/P Komplikation/P Kompliment/EPST Komplize/N Komplizierens Kompliziertheit Komplizierung/P Komplott/S Komponente/N Komponist/P Komponistenpreise Komposita Komposition/P Kompositionsabend Kompositionsaufträge Kompositionsprinzip Kompositionsweise Kompositum Kompost/EPT Kompostierens Kompostierung/P Kompott Kompresse/N Kompression Kompressionstechnik/P Kompressor/S Komprimierens Komprimierung/P Kompromiss/EPT Kompromissbereitschaft Kompromisslösung/P Kompromissmodell/EPS Kompromissplan/S Kompromissvorschlag/Sp Kompromittierens Kompromittierung/P Komsomolze/N Komtesse/N Konchoide/N Kondensat/EPT Kondensation Kondensator/PS Kondensmilch Kondenswasser Kondition/P Konditional/EPS Konditionalsätze/N Konditionstraining/S Konditor/FPS Konditorei/P Konditormeister Kondolation/P Kondolenzbesuche/N Kondolenzbrief/EPST Konfekt/S Konfektion/P Konfektionär/EPS Konfektionieren/JS Konfektionsbetriebe Konfektionshaus/Tp Konfektionswaren Konferenz/P Konferenzbeginn/ST Konferenzbeschluss/Tp Konferenzende Konferenzergebnis/Qq Konferenzgebäude/S Konferenzgebiet Konferenzkrise Konferenzpartner Konferenzphasen Konferenzplan Konferenzrahmen Konferenzraum/STp Konferenzsaal Konferenzsprache Konferenzsystem Konferenztag Konferenztermin Konferenzvorschlag/STp Konferenzzimmer Konfession/P Konfessionsschule/N Konfetti Konfettiwährung/P Konfident/P Konfiguration/P Konfigurationsbeispiel Konfigurationsbild/RT Konfigurationsdatei/P Konfigurationsdaten Konfigurationsfile/S Konfigurationsfreiheit/P Konfigurationsgerüst Konfigurationskommando Konfigurationsparameter Konfigurationsphase/N Konfigurationstabelle/N Konfigurierbarkeit Konfigurierens Konfigurierung/P Konfirmand/FP Konfirmation/P Konfiserie Konfiszierens Konfiszierung/P Konfitüre/N Konflikt/EPS Konfliktaustragung Konfliktbewältigung Konflikterkennung Konfliktfall/Sp Konfliktgebiet Konfliktgeladenheit Konfliktlösung Konfliktpädagogik Konfliktpartei/P Konfliktpotential/EPS Konfliktpotenzial/EPS Konfliktvermeidung Konfluenz Konformität Konfrontation/P Konfrontierens Konfrontierung/P Konfusion/P Konfuzianismus Konfuzius Konglomerat Kongo Kongolesen Kongregation/P Kongress/EPT Kongressabgeordnete Kongressausgabe Kongressausschuss/Tp Kongressbeschluss/Tp Kongressbotschaft Kongresseröffnung Kongresshalle/N Kongresshotel Kongresskreise/N Kongressleitung Kongressmehrheit Kongressmitglieder Kongresspalast Kongressraum/STp Kongresssaal/S Kongressstadt Kongressteilnehmer/FNS Kongresswahlen Kongresszentrum Kongruenz Konjugation/P Konjunktion/P Konjunktiv/EPS Konjunktur Konjunkturabschwächung/P Konjunkturanstieg Konjunkturauftrieb Konjunkturausblick Konjunkturausgleich Konjunkturbelebung Konjunkturbericht Konjunkturberuhigung Konjunkturboom Konjunkturdämpfung Konjunkturdebatte Konjunkturforschung Konjunkturgesetz Konjunkturklima Konjunkturprognosen Konjunkturprogramm/EPS Konjunkturrückgang Konjunkturschwankung/P Konjunktursicherung Konjunkturverlauf/Sp Konjunkturzyklus Konkatenation Konklave/NS Konkordat/S Konkretisierens Konkretisierung/P Konkubinat/EPS Konkurrent/FP Konkurrenz/P Konkurrenzdruck/S Konkurrenzfähigkeit/P Konkurrenzfreiheit Konkurrenzgeschäft/EPS Konkurrenzkämpfe/N Konkurrenzkampf/ST Konkurrenzmodell Konkurrenzprodukt/EPST Konkurrenzsituation/P Konkurrenzverhältnis/Qq Konkurs/EPT Konkursantrag/STp Konkurserklärung/P Konkursmasse/N Konkursordnung Konkursverfahren/S Konkursverwalter Konnossement/EPST Konnotation/P Konquistador/P Konrad/S Konsens Konsensbedarf/S Konsensbildung Konsensprinzip/S Konsensverfahren/S Konsequenz/P Konservatorien Konservatorium/S Konserve/N Konservenbüchse/N Konservendosen Konservenfabrik/P Konservenindustrie Konservenmusik Konservierens Konservierung/P Konservierungsmöglichkeit/P Konsistenz Konsistenzprüfung/P Konsistorium Konsole/N Konsolidierens Konsolidierung/P Konsolidierungsperiode/N Konsolidierungsphase/N Konsolschnittstelle Konsonant Konsorten Konsortialgeschäft Konsortialvertrag/STp Konsortium/S Konsortiumsmitglieder/N Konsortiumstreffen/S Konstantin/S Konstantinopel Konstantstromquelle/N Konstanz Konstellation/P Konstituierens Konstituierung/P Konstitution/P Konstrukt/EPST Konstrukteur/EFPS Konstruktion/P Konstruktionsänderung/P Konstruktionsabteilung/P Konstruktionsbüro/S Konstruktionsentwürfe/N Konstruktionserfahrung Konstruktionsfehler/N Konstruktionsidee/N Konstruktionsmethode/N Konstruktionsphase/N Konstruktionspraxis Konstruktionsprinzipien Konstruktionsproblem/EPS Konstruktionssäle Konstruktionsschritt/EPS Konstruktionsteil/EPS Konstruktionsvorgang/S Konstruktionszeichnung/P Konstruktionsziel/EPS Konstruktor/PS Konstruktorfunktion/P Konsul/NS Konsularbeamten Konsularregierung Konsularvertrag/STp Konsulat/EPS Konsulatsangestellte Konsulatsgebäude Konsulkollegen Konsultation/P Konsultationsbesuch Konsultationsgespräch/EPST Konsultationsmechanismus Konsultationstreffen Konsultationsverfahren Konsum/S Konsumartikel Konsumbedürfnis/Qq Konsumdrang Konsumelektronik Konsument/P Konsumentenbooms Konsumentenkredit Konsumfilm/S Konsumfinanzierung Konsumfirlefanz Konsumforschung Konsumgedanke Konsumgenossenschaft/P Konsumgesellschaft Konsumgewohnheit/P Konsumgüter/N Konsumgüterboom Konsumgütergebiet Konsumgüterpreise Konsumgut Konsumleben Konsummasche Konsumqualitäten Konsumrausch Konsumsüchtigkeit Konsumtaumel Konsumverhalten Konsumverzicht Konsumweine Konsumwelle Konsumwelt Kontakt/EPS Kontaktadresse/N Kontaktaufnahme Kontaktbelegung Kontaktbolzen Kontaktbronze Kontaktfähigkeit Kontaktfeder Kontaktfläche Kontaktfreude Kontaktgespräch Kontaktgüte Kontaktiermöglichkeit/P Kontaktierung Kontaktkammern Kontaktkräfte/N Kontaktleuten Kontaktlinse/N Kontaktmann Kontaktmeidung Kontaktpaare Kontaktperson Kontaktschalen Kontaktspannung Kontaktsuche Kontaktträger Kontamination/P Kontemplation/P Konten Kontenblätter Kontenpläne/N Kontenplan/T Kontenunterlagen Konterangriff Konterfei/S Konterrevolutionär/EPS Kontext/EPT Kontextbedingung/P Kontinent/EPS Kontinentaldrift Kontinentalsperre Kontingent/EPS Kontingentbeschränkung/P Kontingentierens Kontingentierung/P Kontinuität Kontinuum/S Konto/S Kontoauflösung Kontoaufstellung Kontoauszug/Sp Kontoblatt/T Kontobuch Kontoeröffnung Kontoinhaber/NS Kontoinhaberkollegen Kontokorrent/EPS Kontonummer/N Kontor/S Kontorraum/STp Kontrabass/Tp Kontrahent/P Kontrakt/P Kontraktion/P Kontraktpreis/EPT Kontrapunkt/S Kontrast/EPTW Kontrastprogramm Kontrastschnitt Kontrazeption Kontrollaktion/P Kontrollamt Kontrollanzeige Kontrollausdrucke Kontrollausgabe Kontrollausschuss/Tp Kontrollbaracke Kontrollbeamte/NR Kontrollbedingung/P Kontrollbehörde Kontrollchef Kontrollcode/S Kontrolldarstellung Kontrolldenken Kontrolldienst Kontrolle/N Kontrolleinheit/P Kontrolleinrichtung/P Kontrolleur/EFPS Kontrollfluss/Tp Kontrollflussanalyse/N Kontrollfrage Kontrollfunktion/P Kontrollgang/Sp Kontrollgerät/EPS Kontrollgewalt Kontrollgremien Kontrollgruppen Kontrollierbarkeit/P Kontrollinstanz Kontrollkapazität Kontrollkommission/P Kontrolllampe Kontrollmaßnahme/N Kontrollmessung/P Kontrollmöglichkeit/P Kontrollnetz Kontrollorgan/E Kontrollpraxis Kontrollpunkt/EPST Kontrollrat/ST Kontrollraum/STp Kontrollrechts Kontrollschluss/Tp Kontrollstation/P Kontrollstelle/N Kontrollstruktur/P Kontrollsumme Kontrollsystem/P Kontrolltechnik/P Kontrollzentrale/N Kontrollzentren Kontrollzentrum Kontrollzweck/EPS Kontur/P Konvektion/P Konvektionsströme Konvent/EPST Konvention/P Konventionalstrafe/N Konventionalstrafgesetz Konventsdelegierten Konvergenz Konversation/P Konversationslexikon Konversion/P Konversionsbedingung/P Konversionszeit/P Konverter/NS Konvertierens Konvertierung/P Konvertierungszeit/P Konvoi/S Konzentrat/EPS Konzentration Konzentrationsbewegung/P Konzentrationslager/N Konzentrationsschwäche/N Konzentrierens Konzentrierung/P Konzept/EPST Konzeption/P Konzern/EPS Konzernabschluss/Tp Konzernbelegschaft Konzernbilanz Konzernbildung Konzernbosse Konzernertrag/STp Konzernforderung/P Konzernfremde Konzernführung Konzerninteressen Konzernleitung Konzernpolitik Konzernschaubilder Konzernschulden Konzernumsatz Konzernvertreter Konzert/EPST Konzertbesucher Konzertdienste Konzertereignis/Qq Konzertflügel Konzertinstrument Konzertmeister Konzertpianistin Konzertreihen Konzertrepertoire Konzertsäle Konzertsaal/T Konzerttournee/N Konzertverband Konzession/P Konzessionieren/JS Konzessionsabgabe/N Konzessionseigentümer Konzessionserteilung Konzessionsinhaber/FNS Konzil/EPS Konzilianz Konzilsbeschluss/Tp Konzilsdekret/T Konzilsdiskussion/P Konzilssitzung/P Konzilstheologie Konzipierens Konzipierung/P Kooperation/P Kooperationsbemühung/P Kooperationsbereitschaft Kooperationspartner/NS Kooperationsvertrag/STp Koordinate/N Koordinatenkonvention/P Koordinatensystem/EPS Koordinatentransformation/P Koordinatenursprung/S Koordinatenverschiebung/P Koordinatenwert/EPST Koordination Koordinationsstelle/N Koordinator Koordinierens Koordinierung/P Koordinierungsbedarf/S Koordinierungsgespräch/EPS Koordinierungsstelle/N Kopenhagen Kopernikus Kopf/ET Kopfarbeiter/FNS Kopfball/Sp Kopfbedeckung Kopfdruck Kopfende/S Kopfhaltung Kopfhaut Kopfhöhe Kopfhörer/S Kopfkissen Kopfkontrolle Kopfkoordinate Kopfleiste Kopfmitte Kopfmittelpunkt/S Kopfnicken/S Kopfnuss/p Kopfpreis/EPT Kopfputz Kopfrechnen/S Kopfsalat Kopfschmerzen Kopfschmuck Kopfschütteln Kopfschuss/Tp Kopfsprung Kopfstand Kopfsteuer Kopfteil/EPS Kopftücher Kopfunterkante Kopfverband/T Kopfverletzung/P Kopfweh Kopfwunden Kopfzahl Kopfzeile/N Kopfzerbrechen Kopie/N Kopierer Kopiergerät Kopierschutz/T Kopiervorlage Kopilot Kopist/P Koppel/J Koppeleinheit/P Koppelelemente Koppelkapazität Koppelkomponenten Koppelrelais Koppelschlösser Koppelungsfaktor Koppelungsmöglichkeit/P Koppler Koproduktion/P Koralle/N Korallenbänken Korallenbank Korallenfische Korallenriffe/N Koran Korb/ST Korbmacher Kordel/N Korea/S Koreakrieg/S Koreaner Korinth/P Korinther Korkarten Korkeiche Korken/SW Korkenknallen Korkenzieher/NS Korkmundstück Korkplatten Korn/S Kornbranntwein Kornbrennerei Kornernte Kornfeld/RT Kornkammern Kornmarkt/ST Kornspeicher Korollar/EPS Korona Korporation/P Korps Korpskommandeur Korpus Korrektheit Korrektheitsbegriff/EPS Korrektheitsbeweis/EPT Korrektheitsnachweis/EPT Korrektorat/EPST Korrektur/P Korrekturanmerkung/P Korrekturfaktor Korrekturlesen Korrekturmöglichkeit/P Korrekturparameter Korrekturversuche/N Korrelat Korrelation/P Korrelationsanalyse/N Korrelationsfeld Korrelator/S Korrespondent/FP Korrespondentenbericht Korrespondenz/P Korrespondenzbank Korridor/EPS Korrigierbarkeit Korrosion Korrumpierens Korrumpierung/P Korruption Korsarengeschichte Korse/N Korselett Korsett/S Korsettnäher/FNS Korsettstäbe Korso Korvette/N Korvettenkapitän Kosak/P Kosakenchor Kosinus Kosmetik/R Kosmetika Kosmetikbranche Kosmetiker/FNS Kosmetikgesellschaft Kosmetiksalon/S Kosmologe/N Kosmologie Kosmos Kosmossatelliten Kostbarkeit/P Kostenabbau Kostenanalyse Kostenanstieg/S Kostenanteil Kostenarten Kostenaufstellung Kostenaufwand/T Kostenausgleich Kostenbelastung/P Kostenberechnung Kostenbeteiligung Kostendeckungsgarantie Kostendegression Kostendifferenz Kostendruck/S Kostenelemente Kostenerhöhung/P Kostenexplosion/P Kostenfaktor Kostenflut Kostengefüge Kostengerechte Kostengestaltung Kostenkontrolle Kostenkrise Kostenlage Kostenlawine/N Kostenmanipulation/P Kostenniveau Kostenoptimierung Kostenplan/S Kostenpunkt/EPST Kostenrahmen Kostenrechnung Kostenreduzierung Kostenrisiko Kostenrückgang Kostenseite Kostensenkung Kostensituation/P Kostensteigerung Kostenstruktur Kostenstrukturerhebung Kostenübernahme Kostenübertragung/P Kostenvergleich Kostenvoranschlag/Tp Kostenvorteil/EPS Kostgänger Kostprobe/N Kostüm/EPS Kostümentwürfe Kostümfeste/N Kostümierung/P Kostümproduktion Kostümstück Kostümtyp Kostümverleih Kostümverleiher Kot/SX Kotelett/EPS Kotflügel/NS Kovarianz/P Kräfte/N Kräftebedarf Kräftegleichgewicht Kräftenachfrage Kräftepotential/EPS Kräftepotenzial/EPS Kräftespiel Kräftevergleich Kräfteverschiebung Kräfteverteilung Krägen Krähenfüße/N Kräheninsel Krähennest Krämer Krämerladen/S Krämpfe/N Kränkens Kränkung/P Kränze/N Krätze/R Krätzer/S Kräuter/N Kräuterkunde Kräutertee/S Krabbe/N Krach/S Kraft Kraftakt Kraftanstrengung Kraftaufwand Kraftausdrücke/N Kraftausdruck/S Kraftausgabe Kraftbrühe Kraftentfaltung Kraftfahrer Kraftfahrzeug/EPS Kraftfahrzeugbrief Kraftfahrzeugführer Kraftfahrzeugmarkt/ST Kraftfahrzeugzulassung Kraftfeld/S Kraftfelder Kraftprobe/N Krafträder/N Kraftsensor/P Kraftstation/P Kraftstoff/EPS Kraftströme Kraftstrom Kraftstromanschluss/Tp Kraftverkehr/S Kraftverkehrsgesetz Kraftversorgung Kraftwagen Kraftwagenhalle Kraftwerk/EPS Kragen/S Krakau Krakeeler/S Kram/S Krampf Krampfadern Kran/S Krananlage/N Kranbahn Kranbau Krankenanstalt Krankenauto/S Krankenbahren Krankenbehandlung Krankenbett/PST Krankenfahrer Krankengeld/T Krankengelder Krankengeschichte Krankenhaus/Tp Krankenhausbau Krankenhausbedarf Krankenhausbrand Krankenhauskosten Krankenhaustagegeld Krankenhaustagegeldversicherung/P Krankenhausverwaltung/P Krankenkasse/N Krankenkassenleitung Krankenkost Krankenlager/NS Krankenpflege/R Krankenpflegeberuf Krankenpflegepersonal Krankenschein Krankenschwester/N Krankentransporte Krankenversicherung/P Krankenversorgung Krankenwagen Krankenwagenfahrer Krankenzimmer/NS Krankheit/P Krankheitsbild Krankheitserreger/S Krankheitsfall/Sp Krankheitskeime Krankheitskosten Kranwagen Kranz/T Kranzniederlegung Krater/NS Kratzer/NS Krauler Kraut/T Krautkrämer Krautsuppe Krawall/EPS Krawallhorden Krawatte/N Krawattenfabrik Kraxelei/P Kreation/P Kreativität Kreatur/P Krebs/EPT Krebsbehandlung Krebsbekämpfung Krebsbutter Krebserkrankung Krebserreger/S Krebsfall/Sp Krebsforschung Krebsgang Krebsgeschwülste Krebsgeschwür/P Krebsgeschwulst Krebskrankheit Krebsleiden Krebsoperation/P Krebssud Krebstypen Krebswachstum Kredit/EPS Kreditabkommen Kreditabteilung/P Kreditanalyse Kreditangebot/S Kreditanstalt/P Kreditanträgen Kreditaufnahme/N Kreditausschuss/Tp Kreditbank/P Kreditbeanspruchung/P Kreditbedingung/P Kreditbeschränkung/P Kreditbetrag/STp Kreditbetrügereien Kreditblockade Kreditbrief/EPS Kreditbürgschaften Krediteinräumung Krediterleichterung/P Kreditermächtigung Krediterschleichung Kreditexpansion Kreditexplosion Kreditfall/Sp Kreditfristen Kreditgarantien Kreditgeber/S Kreditgefüge Kreditgenossenschaft Kreditgeschäft/EPS Kreditgewährung Kredithaie Kredithilfe Kreditinstitut/T Kreditkäufe/NR Kreditkarte/N Kreditkartenanträgen Kreditkartengesellschaft/P Kreditkartenorganisation/P Kreditkauf/Sp Kreditkunde Kreditlimitierung Kreditlinie Kreditmarge Kreditmarkt/STp Kreditmöglichkeit/P Kreditnachfrage Kreditnehmer/N Kreditnehmerzahl Kreditoren Kreditorenliste Kreditplanung Kreditposten/S Kreditprovision Kreditrahmen Kreditrisiken Kreditrisiko/S Kreditspielraum/STp Kreditumsatz Kreditverein Kreditvergabe/N Kreditverkauf/Sp Kreditverkehr/S Kreditversicherung Kreditversorgung Kreditverteuerung Kreditvolumen/S Kreditwesengesetze Kreditwünsche Kreditwürdigkeit Kreditzinsen Krefeld Kreidekreis Kreis/T Kreißsaal Kreisabschnitt/EPS Kreisausschuss/Tp Kreisbahn/P Kreisblatt/T Kreisbögen Kreisbogen/S Kreisdelegierte/N Kreisel/S Kreiselkompass/ET Kreisgericht Kreiskasse Kreislauf/STp Kreislaufbeschwerden Kreislauferkrankung/P Kreislaufkrankheit/P Kreislaufleiden Kreislaufstörung/P Kreisleiter Kreislinie/N Kreismittelpunkt Kreissektor/S Kreissparkasse Kreissynoden Kreisverkehr/S Kreisvorsitz Kreisvorstand Kreiswettkampf Krem/ES Krematorium Kreml Kremlführern Kremlpalast Krempe/N Krempel/S Kreole/N Krepp/S Krepppapier/PS Kresse Kreta Kreuz/JMRT Kreuzberg Kreuzer/NS Kreuzergeschwader Kreuzerkrieg Kreuzfahrer Kreuzfahrerheer Kreuzfahrt Kreuzfahrtendienst Kreuzfahrtenprogramm/EPS Kreuzfahrtschiff Kreuzform Kreuzgewölbe Kreuzigens Kreuzigung/P Kreuzigungsbilder Kreuzplatz Kreuzprodukt/EPS Kreuzritter Kreuzschlitz Kreuzschlitzschraube/N Kreuzungspunkt/EPST Kreuzverhör/EPS Kreuzverweis/EPT Kreuzworträtsel/NS Kreuzzug/STp Kricket Kriechwasser Krieg/RST Kriegervereins Kriegerwitwe Kriegsabenteuer/N Kriegsakrobatik Kriegsandenken Kriegsanstrengung/P Kriegsausbruch Kriegsausweitung Kriegsbeginn/S Kriegsbeil Kriegsbereit Kriegsbild Kriegsblindenheim Kriegsbraut Kriegsdienst Kriegsdienstverweigerer Kriegseintritt Kriegseinwirkung/P Kriegsende Kriegsereignis/Qq Kriegserfahrung/P Kriegserklärung/P Kriegserlebnis/Qq Kriegsfall/E Kriegsfilme Kriegsflieger Kriegsflotte Kriegsfolgen Kriegsfreiwillige Kriegsfurcht Kriegsfuß/Tp Kriegsgefangener Kriegsgefangenschaft/P Kriegsgerät Kriegsgericht/E Kriegsgeschichte Kriegsglück Kriegshafen Kriegsheld/P Kriegshetzer Kriegshinterbliebene Kriegshysterie Kriegsindustrie Kriegsjahren Kriegskabinett Kriegskommunismus Kriegskredite Kriegskunst Kriegslage Kriegslist Kriegsmarine Kriegsmaschinerie Kriegsminister Kriegsministerium Kriegsopfer Kriegsopferversorgung Kriegspfad Kriegsphotos Kriegsproduktion Kriegspropaganda Kriegspsychose Kriegsrecht Kriegsrohstoffwirtschaft Kriegsschäden Kriegsschauplätzen Kriegsschauplatz/T Kriegsschiff/EPST Kriegsschluss/Tp Kriegsschuldfrage Kriegssituationen Kriegsstifter Kriegstagebücher Kriegstagebuch Kriegstagen Kriegstechnik Kriegsteilnahme Kriegsteilnehmer Kriegstoten Kriegstreiber Kriegstrümmer Kriegsverbrechen Kriegsverbrecher Kriegsverbündete Kriegsverwüstung Kriegsveteranen Kriegsvorbereitung/P Kriegsvorlagen Kriegswaisen Kriegszeiten Kriegszerstörung/P Kriegszug/STp Kriegszuschlag/STp Kriegszustand Krim Krimi/S Kriminalbeamte/NR Kriminalchef/S Kriminaldirektor Kriminalfall/Sp Kriminalfernsehspiel Kriminalfilm/PS Kriminalgericht Kriminalhörspiel Kriminalinspektor Kriminalist/P Kriminalität Kriminalkommissar Kriminalkomödie Kriminalobermeister Kriminaloberrat Kriminalpolizei Kriminalrat Kriminalroman Kriminalserie Kriminalstatistik Kriminalstory/S Kriminologie Krimkrieg Krimsekt Krimskrams Kripo Kripobeamte/NR Kripoobermeister Krippe/N Krise/N Krisenbekämpfung Krisenerfahrung Krisenerklärung Krisenerscheinung Krisenfall/Sp Krisengebiete/N Krisenherde Krisenhöhepunkt Krisenjahr/EPST Krisenkonferenz Krisenmanagement Krisenmanöver Krisenpolitik Krisenrededuell Krisensituation/P Krisenstab Krisensymptome Krisenzeichen Krisenzeit/P Krisenzuschläge Krishna/S Kristall/EPS Kristallisation Kristallisationspunkt Kristallisieranlagen Kristallsachen Kristallstruktur Kriterien Kriterium/S Kritik/PR Kritiker/FNS Kritikerpreis/EPT Kritikpreis/EPT Kritikpunkt/EPST Kritzelbilder Kritzelei/P Krönens Krönung/P Krönungsmesse Kröpfe/N Kröte/N Kroaten Kroatien/S Krokodil/EPS Kronanwalt Krone/N Kronengewölbe Kronjuwelen Kronkolonie Kronländer Kronleuchter Kronprinzen Kronprinzessin Kronzeuge/N Kropf/ST Krücke/N Krückstock/S Krüge/NR Krüger/S Krügerrand/S Krüglein/S Krümchen/S Krümel/S Krümmens Krümmung/P Krüppel/NS Krüppelkiefern Krug/STp Krume/N Krummsäbel Kruste/N Krustentier Kruzifix/EPT Kryptographie Kübel/N Küche/N Küchenabfälle/N Küchenarbeiten Küchenchef/S Küchendrucker Küchenfenster Küchenferndrucker Küchengeräte/N Küchenmesser Küchenpersonal Küchenschabe/N Küchentisch Kügelchen/S Kühe/N Kühlanlage/N Kühlblech/E Kühlens Kühlerhaube Kühlfläche Kühlhallen Kühlhaus/Tp Kühlkörper/S Kühlmittel Kühlrippen Kühlscheiben Kühlschiffe Kühlschränke/N Kühlschrank/S Kühlsystem Kühltruhe Kühlung/P Kühlwasser/S Kühnheit Küken/S Kümmel/S Kümmerdasein Künder Kündigens Kündigung/P Kündigungsabsicht/P Kündigungsbriefe Kündigungsdauer/N Kündigungsfrist/P Kündigungsgesuch Kündigungsgründen Kündigungsgrund/T Kündigungsklausel Kündigungsmöglichkeit/P Kündigungsrecht/S Kündigungsschreiben/S Kündigungsschutz Kündigungswelle Kündigungszeit Künste/N Künstler/FNS Künstlerbund Künstlergilde Künstlerhaus/Tp Künstlerhilfe Künstlerkreisen Künstlerlaufbahn/P Künstlerlaune/N Künstlerlokal Künstlernamen Künstlerpaar Künstlerpech Künstlerschaft Künstlerschau Künstlertum/S Kürbis/Qq Kürschner/FNS Kürzel/NS Kürzens Kürzung/P Kürzungsbemühung/P Kürzungsklausel Kürzungsmöglichkeit/P Kürzungsvorschlag/STp Kürzungswünsche/N Küsschen/S Küste/NR Küstenartillerie Küstenbetrieb Küstendampfer Küstenfahrer Küstenfahrt Küstenfischerei Küstengebiet/E Küstengewässer Küstenkolonie Küstenländer Küstenläufer Küstenmarkt Küstenmotorschiff Küstennähe Küstenort/EPST Küstenschelf/S Küstenschiffe/NR Küstenschiffer/NS Küstenschifffahrt/P Küstenschutz Küstenstrecke Küstenstreifen Küstenstrich Küstenwacht Küstenwachtboot Küster/NS Kuba/S Kubakrise Kubaner/FNS Kubareport Kubazucker Kuben Kubikkilometern Kubikmeter/N Kubikwurzeln Kubikzentimeter/N Kubismus Kubus Kuchen/S Kuchenplatte/N Kuchenstück/EPS Kuckuck Kuckucksei Kuckucksuhr Kufe/N Kugel Kugelbehälter Kugelfang Kugelform Kugelgelenk Kugellager Kugellagerfabriken Kugellagerindustrie Kugellagertyp Kugelpatrone Kugelprojektion/P Kugelrasten Kugelschreiber/N Kugelstoßer/FNS Kugelwelle Kuh Kuhfladen Kuhglocken Kuhhalter Kuhstall/Sp Kuhweide Kulanz Kuli/S Kulis/q Kulissenlicht Kulleraugen Kult/EPST Kultanlagen Kultgeräte Kultstätten Kultur/P Kulturabkommen Kulturausschuss/Tp Kulturaustausch/T Kulturbanause Kulturbesitz Kulturbewusstsein Kulturbüro Kulturdebatte Kulturdienst Kulturdirektoren Kulturetat Kulturfeinde Kulturfilme Kulturfilmzone/N Kulturförderung Kulturforum Kulturfunktionär/EPS Kulturgruppe Kulturgüter Kulturhoheit Kulturinstitut/E Kulturklima Kulturkonferenz Kulturkreis/EPT Kulturländer Kulturlandschaft Kulturleistung/P Kulturmenschen Kulturmenschheit Kulturminister/S Kulturorchester Kulturpessimismus Kulturpolitiker Kulturpropaganda Kulturraum/STp Kulturreferent Kulturring Kultursprachen Kulturzentrum/S Kultusminister Kultusministerium/S Kummer/S Kumpan/EFPS Kumpel/NS Kumulation Kumulierens Kumulierung/P Kunde/FN Kundenadresse Kundenanfragen Kundenauftrag/STp Kundenberater/S Kundenberatung Kundenbesuch/PS Kundenbetreuung Kundendaten Kundendienst/EPT Kundendienstvertrag/STp Kundeneinweisung Kundenfirma Kundengelder Kundenkartei/P Kundenkontakt/E Kundenliste/N Kundenlösung/P Kundennachfrage Kundenschlange Kundenservice Kundensoftware Kundenspezifikationen Kundenstatistik Kundensuche Kundenwechsel Kundenwünsche/N Kundenwunsch/T Kundenzulauf/Sp Kundgeben/JS Kundmachen/JS Kundschaft/P Kunibert/S Kunst Kunstakademie/N Kunstarbeit Kunstausübung Kunstbegriff/T Kunstbesitz Kunstbüchern Kunstdrucke Kunstdünger Kunstförderung Kunstgalerien Kunstgegenstände Kunstgeschichte Kunstgriff/EPS Kunsthalle/N Kunsthandwerk Kunstharz/E Kunsthaus/Tp Kunsthonig Kunstinteresse Kunstleder/S Kunstmaler Kunstmethoden Kunstmuseum Kunstorgan Kunstpause/N Kunstpreise Kunstraub Kunstrichtung/P Kunstsammler Kunstsammlung/P Kunstschätzen Kunstschule/N Kunstseide Kunstsprache Kunstspringen Kunststätte Kunststoff/EPT Kunststoffbeschichtung Kunststoffblumen Kunststoffbügel Kunststoffchemie Kunststofffabrik Kunststofffolie/N Kunststofffront Kunststoffgehäuse Kunststoffgleiter Kunststoffindustrie Kunststoffrumpf Kunststoffseiten Kunststoffseitenteil Kunststoffteile Kunststoffwalze Kunststück/EPS Kunststudenten Kunstszene Kunstturner/FNS Kunstverein Kunstwelt Kunstwerk/EPS Kunstzentren Kunz Kupee Kupfer/S Kupferarbeiter/FNS Kupferdach Kupferdraht Kupfererze Kupferfläche Kupferförderung Kupfergegenstände Kupfergraben Kupfermine Kupfermünzen Kupferpreis/EPT Kupferstecher Kupon/S Kuppe/N Kuppel/J Kuppelei Kuppelns Kupplungsflansch Kupplungskasten Kupplungssteuerung Kupplungssteuerungsgerät/EPST Kur/S Kuramt Kuranlagen Kuranstalt Kuratorium Kurbad Kurbel Kurbelwelle/N Kurdamen Kurde/N Kurdenaufstand Kurdenkrieg Kurdirektor/PS Kurfürst/P Kurfürstendamm Kurgästen Kurgarten Kurgast/T Kurgemeinde Kurhalle Kurhaus/Tp Kurheimen Kurhotel/S Kurie/R Kurier/FS Kurierbusiness Kurierdienst/E Kurierfirma Kurierfirmen Kuriositätensammler/NS Kuriosum Kurkonzerte Kurlandschaft Kurort/EPST Kurpark/S Kurpromenade Kurprospekt Kurs/EPT Kursänderung/P Kursaal Kursanhebung/P Kursanpassung/P Kursanstieg Kursbasis Kursbesserung/P Kursbewegung Kursbuch Kursdifferenz/P Kurseinbrüche/N Kurseinbußen Kursentwicklung Kurserhöhung/P Kurserholung/P Kursexplosion/P Kursfestsetzung Kursgeschehen Kursgewinne/N Kursgewinnverhältnis/Qq Kursivschrift Kurskorrekturen Kursniveau/S Kursor Kursorposition Kursortasten Kursreduzierung Kursrisiko/S Kursrückgang Kursschwankungen Kurssprünge Kursstand Kurssteigerung/P Kursstürze Kurssturz Kurstadt Kursus Kursverdoppelung Kursverfall/S Kursverlauf/Sp Kursverlust/E Kursvorteil Kurswagen Kurswert Kurtheater Kurtisane/N Kurts Kurvenfahrt Kurvenform/P Kurverein Kurverwaltung/P Kurzanfrage/N Kurzanleitung Kurzbedienungsanleitung/P Kurzbericht/EPS Kurzbeschreibung/P Kurzbezeichnung/P Kurzdarstellung/P Kurzdebatte Kurzdokumentation/P Kurzeit Kurzentrum Kurzfassung/P Kurzfilmen Kurzform/P Kurzgeschichte/N Kurzkommentar/EPS Kurzname/N Kurzpartien Kurzpredigten Kurzschließens Kurzschluss/Tp Kurzschlussadapter Kurzschlusserkennung Kurzschlussströme Kurzschreibweise/N Kurzschuljahren Kurzsichtigkeit Kurzvortrag/STp Kurzwelle/N Kurzzeitbetrieb Kurzzeitdenkern Kusine/N Kuss/T Kusshand Kutsche/NR Kutscher/NS Kuvert/S Kuwait Kybernetik/R Kybernetiker/NS LAN LANs LCD LCR LDAP LED LEDs LSD LSI LZW Lächerlichkeit/P Läden Lähmens Lähmung/P Lähmungserscheinung/P Lämmer/N Lämpchen/S Länder/GN Länderbasis Länderebene Ländereien Ländergrenzen Länderhauptstädte Länderjuristen Länderkämpfe Länderkammer Länderkontingente Länderkunde Ländermannschaft Ländern/GW Länderparlament/E Ländersache Länderseite Länderspiegel Länderstudien Ländertreffen Länderturnier Ländervertretung/P Ländler Länge/N Längeninformation/P Längenmesssensor/S Längenmesssystem/S Längenmessung Längenrekord Längsregler Längsreglernetzteile/N Längsrichtung Längstransistor/S Lärche/N Lärm/S Lärmentwicklung Lärmgrenze Lärmklage Lärmsteuer Lässigkeit Lästerns Lästerung/P Läufe/NR Läufen Läufer/FNS Läuse/N Läuterns Läuterung/P LaTeX Labens Labor/EPS Laborant/P Laborarbeit/P Laboratorien Laboratorium Laborbedingung/P Laborbetrieb Laboreinheit/P Laborfläche/N Laborleiter Labornetzteil Laborsystem Laboruntersuchung/P Labourfraktion Labrador Labung/P Labyrinth/EPST Lachens Lacher/NS Lacherfolg Lachs/EPT Lachsalve/N Lachseier Lack/EPST Lackbeteiligung/P Lackfabrik Lackfarben Lackierarbeiten Lackierauftrag/STp Lackierens Lackierung/P Lackierungskosten Lackindustrie Lackledermäntel Lackschicht/P Lackschwarz Lacoste Ladbarkeit Ladeaufgabe Ladeautomatik Ladediskette/N Ladeeinrichtung Ladeendspannung Ladefile/S Ladefläche Ladegerät/E Ladegut Ladehemmung Ladekontrollanzeige Ladeluken Ladenbesitzer Ladenbetrieb Ladenfläche Ladenflucht Ladengeschäft/EPS Ladenhüter/N Ladeninhaber/S Ladenkasse/N Ladenkassenmagnet Ladenkette/N Ladenöffner Ladenöffnungsmagnet/T Ladenpreis/EPT Ladens Ladenschild/T Ladenschilder Ladenschluss/Tp Ladenschlusszeiten Ladenstraße/N Ladentisch/EPT Ladenverkauf/Sp Ladenzentrum Ladeoperation/P Ladeprogramm/EPS Ladeprozessor/PS Lader Laderampe/N Laderaum/STp Ladeschaltung Ladeschaufel Ladesoftware Ladestation/P Ladeströmen Ladestromimpulse Ladetisch/T Ladeumgebung Ladevorgang/Sp Ladezustand Ladung/P Ladungsangebot Ladungsfähigkeit Ladungsfluss/Tp Ladungsmengen Ladungsträger/NS Lady/S Lafette/N Lafettenkopf Lage/GR Lageberechnung Lagebeurteilung/P Lagegespräch/EPS Lagekontrolle/N Lagenstaffel Lagepläne/N Lageplan/ST Lager/JS Lagerabbau Lagerauffüllung Lagerauflösung Lagerbestände/N Lagerbestand Lagerbuch Lagerfeuerromantik Lagerfläche Lagerführung Lagergebäude Lagergehäuse/S Lagergeschäft/EPS Lagerhaltung Lagerhaus/Tp Lagerhaustür Lagerist Lagerkeller Lagerleben Lagerliste/N Lagermaterialien Lagermengen Lagerns Lagernummer Lagerplätze Lagerplatzgelände Lagerraum/STp Lagerrisiko Lagerscheine Lagersituation Lagerstätten Lagerstättenhöhe Lagertank/S Lagertemperatur Lagerung/P Lagerverwalter Lagerverwaltung Lagerviertel Lagerzapfen/S Lagerzeitung Lagesensoren Lagevermessung Lageverschiebung/P Lago/S Lagune/N Lahr Laib/EST Laie/N Laienbrüder Laienkunst Laienmeinung Laienplädoyer Laienprediger Laienpublikum Laientreffen/S Laientum Lakai/P Laken/S Lakonie/N Lakritze/N Lama/S Lamborghini Lamee Lamelle/N Lametta Lamm/ST Lammfellen Lampe/N Lamé/S Lancaster Land/JT Landarbeiter/FNS Landarzt/T Landau Landausflug/Sp Landbeleihung/P Landbesitzer Landbetrieb Landbewohnern Landbutter Landebahn/P Landeerlaubnis/q Landehilfe Landemanöver Landephase Landeplätzen Landeplan Landerziehungsheim Landesämter/N Landesamt/T Landesanwalt Landesarbeitsamt Landesbausparkassen Landesbehörden Landesbevölkerung Landesbezeichnung Landesbezirk/EPS Landesbischof Landesbräuche/N Landescup Landesdirektor Landesetat/S Landesfarben Landesforum Landesfürsten Landesgesetz Landesgrenze/N Landesgruppen Landeshauptstädte Landeshaushalt Landesinnere/N Landesinnern Landesinteresse/N Landeskabinett Landeskasse Landeskenner Landeskriminalamt Landeskrone Landesleitung Landesmeisterschaft/P Landesmittel/N Landesmuseum Landesoberbergamtes Landespartei Landesparteitag Landespflege Landesplanung Landespolitiker Landesprobleme Landesregierung Landesrekord/E Landesrichtlinien Landesschatzmeister Landesschau Landesschulrat Landessender/S Landessprache/N Landessubventionierung Landesteil/EPS Landestreffen Landesvater Landesverräter Landesverrat Landesversammlung/P Landesversorgungsamt/S Landesverteidigung/P Landesvertretern Landesvertretung/P Landesvorständen Landesvorstand/T Landesvorwahlen Landeswahlgesetz Landeswappen Landeszeiten Landeszuschuss/Tp Landflucht Landfrieden Landfunk Landgasthaus/Tp Landgemeinden Landgerät Landgericht/ST Landgestüt Landgüter Landgut Landhaus/Tp Landhausstil Landinnern Landjugend Landjunge Landkarte/N Landkreditbank Landkreis/EP Landkriegs Landleute/N Landmädchen Landmaschinen Landmaschinenbau Landmaschinenschau Landmasse Landoberfläche Landproletariat Landräte Landrätin Landratsämter Landraub Landrover Landschaft/P Landschaftsbild/T Landschaftsgemälde Landschaftsgestaltung Landschaftsimpression Landschaftsmalerei Landschaftsschutz Landschloss/T Landschulen Landschulheim Landsee Landserausdruck Landshut Landsknecht Landsleute/N Landsmännin Landsmann/S Landsmannschaften Landspitze Landstädtchen Landstation/P Landstellen Landstraße/N Landstreicher Landstreicherei Landstreitkräfte Landstrich/EPS Landstuhl Landtag/ES Landtagsabgeordneter Landtagsgebäude Landtagsmandat Landtagspräsidenten Landtagswahl/P Landtagswahlkampf Landtruppen Landungsbrücke/N Landungskarte Landungsoperation/P Landungsunternehmen Landurlaub Landverkauf/Sp Landverteilung Landvolk Landwehr Landwehrkanal Landwehrtradition/P Landwirt/EFPST Landwirtschaft/P Landwirtschaftskrise Landwirtschaftsmarkt Landwirtschaftsmesse Landwirtschaftsminister/S Landwirtschaftspolitik Landwirtschaftsschau Landwunder Landzunge Langenscheidt/S Langeweile Langfinger Langläufer/S Langläuferrendite Langlaufanzug/STp Langmut Langobarde Langsamkeit Langspielplatte/N Langstreb Langstrecke/N Langstreckenbomber/N Langstreckenläufer/S Langstreckenrakete/N Langstreckenrennen Langstreckenweltmeister Languedoc Languste/N Langwierigkeit/P Langzeit Langzeitbetrieb Langzeitfolgen Langzeitgedächtnis/Qq Langzeitleser/N Langzeitperspektive/N Langzeitüberblick Langzeitvergleich Langzeitziele Lanka Lanzarote Lanze/N Lanzenstiche Laos Laplace Lappen/S Lappland/S Laptop/S Lars Larve/N Lasagne/N Lasche/N Laser/NS Laserdisk/S Laserdrucker/NS Laserdrucksystem Laserkasse Laserprinter Laserstrahl/PST Lasertechnologie Lasso/S Lastauto Lastenaufzug/STp Lastenausgleichsgesetz Lastenfahrstuhl Lastenheft/EPS Lastensegler Laster/NS Lastfahrer Lastkahn Lastklappe Lasttier/EPST Lastverteilung/P Lastwagen/S Lastwagenfahrer Lastwagenverkehr Lastzug/Tp Lastzugeinfahrt Latein/S Lateinamerika/S Lateiner Lateinlehrer Lateran Laterne/N Laternenpfähle Latex Latifundien Latifundium/S Latinum Latte/N Lattenschuss/Tp Latwerge/N Latz/T Laub/EPST Laubbaum/STp Laubenbrand Laubhaufen Lauch/T Laudatio Lauerstellung Laufanzug/Sp Laufbahn Laufband/ST Laufdauer Laufens Lauffähigkeit Lauffeuer Laufkran Laufleine/N Laufpass Laufs Laufschrift/P Laufschuhe Laufstall/Sp Laufsteg Laufstrecke/N Laufwerk/EPST Laufzeit/P Laufzeitfehler/NS Laufzeitmessung Laufzeitsystem/EPS Laufzeitunterschied/EPS Laufzeitverhalten/S Laugenpumpe Laune/N Laus Lausbubenstreich Lautenklang/Sp Lautschrift/P Lautsprecher/NS Lautsprechergequake Lautstärke/N Lava Lavendel Lawine/N Lawinenalarm Lawinengefahr Lawinenhunden Lawinenschutz Lawinenunglück Layout/S Lazarett Lazarettschiffe Lear/S Leasing Leasingangebot/EPS Lebedame/N Lebendigkeit Lebendvieh Lebendviehpreise Lebens Lebensäußerung Lebensabend/EPS Lebensablauf/Sp Lebensabschnitt Lebensalter Lebensanschauung/P Lebensarbeit Lebensauffassung/P Lebensaufgabe/N Lebensbedarf/S Lebensbedingung/P Lebensbedürfnis/Qq Lebensbejahung Lebensbelastung/P Lebensbereich/EPS Lebensbeschreibung/P Lebenschance/N Lebensdaten Lebensdauer/N Lebensechtheit Lebensentscheidend/AEPT Lebenserfahrung/P Lebenserinnerung Lebenserwartung/P Lebensfähigkeit Lebensfeindlichkeit Lebensform/P Lebensfrage/N Lebensfreude/N Lebensführung Lebensfunktion/P Lebensgebiete/N Lebensgefährte/FN Lebensgefahr/P Lebensgefühl Lebensgeschichte/N Lebensgesetz/EPT Lebensgestaltung Lebensglück Lebensgröße/N Lebensgrundlage/N Lebenshaltungskosten Lebenshilfe/N Lebenshunger Lebensinhalt/EPST Lebensinteresse/N Lebensjahr Lebenskampf Lebenskonzept Lebenskosten Lebenskräfte/N Lebenskraft Lebenskünstler Lebenslage/N Lebenslauf/STp Lebenslicht/R Lebenslinie/N Lebensmeldung/P Lebensmittel/N Lebensmittelabteilung Lebensmittelchemie Lebensmittelfabrik Lebensmittelgeschäft/EPS Lebensmittelgutscheine Lebensmittelhandel Lebensmittelindustrie Lebensmittelkarte Lebensmittelkartensystem Lebensmittelkontrolle Lebensmittelladen Lebensmittelmarken Lebensmittelöle Lebensmittelpakete Lebensmittelration Lebensmittelrationierung Lebensmittelspende Lebensmonat/EPST Lebensmut Lebensnerv Lebensnotwendigkeit Lebensökonomie Lebensordnung Lebenspartner Lebensprinzip/S Lebensprozess/EPT Lebensqualität Lebensraum/STp Lebensregel/N Lebensrhythmus Lebensschicht/P Lebenssinn Lebensspanne/N Lebensstadium Lebensstandard/S Lebensstellung/P Lebensstil/S Lebensstruktur/P Lebenstraum/STp Lebensunterhalt/EPST Lebensverbindung Lebensverhältnis/Qq Lebensverlängerung Lebensversicherung/P Lebensvollzug Lebensvorgang/Sp Lebenswandel/NS Lebensweg/ST Lebensweise/N Lebensweisheit/P Lebenswerk/EPT Lebenswille/N Lebenszeichen/S Lebenszeit Lebensziel/EPT Lebenszyklen Lebenszyklus Leber Lebererkrankung/P Leberknödel Leberkrebs Leberleiden Lebewesen/S Lebewohl Lebhaftigkeit Lebkuchen/S Lebzeiten Lech/S Leck/S Leckerbissen/S Leckerli Leckströme Leder/S Lederausstattung Lederball/Sp Lederband Ledererzeugung Lederfabrik Ledergürtel Lederhosen Lederindustrie Lederjacke/N Ledermanschette Ledermantel Ledermöbel Lederpolster/N Lederpolsterung Ledersessel Ledersitze Lederstiefel Lederwarenexport Lederwarenindustrie Lederzeug Leerens Leeretiketten Leerfrachten Leergewicht/S Leerlauf/Sp Leerlaufdrehzahl Leerposition/P Leerraum/STp Leerschlag/Tp Leerstelle/N Leertaste Leerung/P Leerverkäufe/NR Leerverkauf/Sp Leerverkaufssignal Leerzeichen/S Leerzeile/N Legalisierens Legalisierung/P Legalitätsprinzip Legasthenie Legastheniker/FNS Legehuhn Legeleistung Legieren/JS Legierungsmetall Legion/P Legionär/EFPS Legislativrat Legislatur Legislaturperiode/N Legitimation/P Legitimationsbasis Legitimationsdefizit/S Legitimationsfrage Legitimationsgrundlage/N Legitimationskraft Legitimationsproblem/EPS Legitimationsproblematik Legitimationsscheine Legitimität Legitimitätskrise/N Leguan/EPS Lehm/S Lehmboden Lehmhütten Lehnsherr/NP Lehnshoheit Lehnsmann/S Lehnsoberhoheit Lehnsstaat Lehnstuhl Lehrämter Lehrabschlussprüfung Lehramt Lehranstalt/P Lehrarbeit Lehrauftrag/STp Lehrbefähigung Lehrberuf Lehrbetrieb Lehrbücher/N Lehrbuch Lehreignung Lehrens Lehrer/FNS Lehrerausbildung Lehrerberuf/S Lehrerbesoldung Lehrerbund Lehrerkollegium/S Lehrerkonferenz/P Lehrerorganisation/P Lehrerschaft Lehrerschwemme Lehrerverbände Lehrervereinshaus Lehrerwitwe Lehrfächer Lehrfach/T Lehrfilm/EPS Lehrgang/Sp Lehrgangskosten Lehrgeld Lehrinhalt/EPS Lehrjahr/EPT Lehrkörper/NS Lehrkräfte/N Lehrkraft Lehrling/EPS Lehrlingsausbilder Lehrmannschaft Lehrmeinung/P Lehrmeister/FNS Lehrmethode/N Lehrmittel/NS Lehrmittelfabrikation Lehrperson/P Lehrpläne/N Lehrplan/S Lehrsätze/N Lehrsatz/T Lehrstelle/N Lehrstellenplatz Lehrstoff/S Lehrstück Lehrstühle/N Lehrstuhl/ST Lehrstuhlinhaber Lehrstuhlvertreter Lehrsystem Lehrtätigkeit/P Lehrübereinkunft Lehrveranstaltung/P Lehrverbände Lehrversuche Lehrvorstellung Lehrzeit/P Lehrzweck/EPS Leib/ERST Leibarzt/T Leibeigenschaft Leibeserzieher Leibeserziehung Leibesfrüchte Leibesfrucht Leibespfunde Leibesumfang Leibesvisitation/P Leibfeindlichkeit Leibgarde Leibgardist Leibniz Leibregiment/S Leibrente/N Leibriemen Leibwächter/N Leibwächtermannschaft Leibwache/N Leica Leiche/N Leichenfund Leichenschauhaus/Tp Leichenträger/NS Leichentücher/N Leichentuch Leichenverbrennung/P Leichenwärter Leichenwagen/S Leichenzug/STp Leichnam/S Leichtathlet/FP Leichtathletik Leichtathletikhalle Leichtathletikkampf Leichtathletiktag Leichtathletiktitel Leichtathletikveranstaltung Leichtathletikwettkämpfe Leichtbau Leichtbauwände Leichtbauweise Leichtfertigkeit Leichtfüßigkeit Leichtgewichtler Leichtgewichtsklasse Leichtgewichtsmeister Leichtgläubigkeit Leichtigkeit Leichtindustrie Leichtmetall/ES Leichtmetallbau Leichtmetallfassade Leichtraucher Leichtsinn/ST Leichtsinnigkeit Leid/T Leidens Leidenschaft/P Leidensweg Leidwesen/S Leier Leierkasten Leierkastenmelodie Leierkastenmusik Leihbibliothek/P Leihbücherei Leihgebühr/P Leihhaus/Tp Leihmutter Leihwagen/S Leim Leine/N Leinenband Leinensack Leinenweberei Leinwand Leipzig/RS Leipziger/FN Leistenbruch Leistendehnung Leistens Leistenzerrung Leistung/P Leistungsabbau Leistungsabfall/S Leistungsangebot Leistungsansprüche/N Leistungsanstieg Leistungsanzeige/N Leistungsaufnahme Leistungsausgänge/N Leistungsaustausch Leistungsbedarf Leistungsbegrenzung Leistungsbereitschaft Leistungsbeschreibung Leistungsbewertung Leistungsbilanz Leistungsdaten Leistungsdruck Leistungseinheit/P Leistungsentgelt/EPST Leistungsentwicklung Leistungserprobung Leistungsfähigkeit Leistungsforderung/P Leistungsfreude Leistungsgefälle Leistungsgrenze/N Leistungsgruppe/N Leistungshöhe Leistungshonorare Leistungsklasse/N Leistungskraft Leistungskriterium/S Leistungskurve/N Leistungslohn Leistungsmerkmal/EPS Leistungsmessung Leistungsmöglichkeit/P Leistungsniveau Leistungsnorm/P Leistungsnormsenkung Leistungsnoten Leistungsoptimierung Leistungsprinzip/S Leistungsprüfung/P Leistungsregelung Leistungsreserve/N Leistungsschalter Leistungssensor Leistungssport Leistungssportarten Leistungssprünge Leistungssprung Leistungssteigerung/P Leistungsstufe/N Leistungstabelle/N Leistungstief Leistungstreiber Leistungsumfang/ST Leistungsurkunde/N Leistungsverbesserung/P Leistungsverfall Leistungsverhältnis/Qq Leistungsvermögen/S Leistungsverwaltung Leistungswille/N Leistungszentrum Leistungsziel Leistungszuschlag/STp Leitanlage/N Leitartikel/N Leitbetrieb Leitbild/RT Leitblech/E Leitbuchstabe/N Leitens Leiter/FNS Leiterbahn/P Leiterplatte/N Leiterplattenbereichen Leiterplattenversion/P Leiterplattenzuschnitt Leitfäden Leitfähigkeit/P Leitfaden/S Leitfigur Leitfrage/N Leitgedanke/N Leithammel Leitidee/N Leitleine/N Leitlinie/N Leitmotiv/EPS Leitplanke/N Leitsätze/N Leitschiene/N Leitseil Leitseite/N Leitstelle/N Leitstellenkonzept/EPS Leitung/P Leitungsanzapfen Leitungsbruch Leitungsfehler Leitungslänge/N Leitungsmasten Leitungsnetz Leitungspaar Leitungsrohre Leitungsstörung/P Leitungsverbindung/P Leitungswasser Leitungsweg Leitungszuführung/P Leitwort/G Leitzahl Leitzentrale/N Lektion/P Lektor/FPS Lektüre Lemma/S Lemmata Lemming/EPS Lemmingkolonie Lemmingvolk/T Lende/N Lendenschurz Lendenwirbel/S Lenin/S Leningrad Leninorden/S Lenkens Lenkhilfe Lenkmanöver Lenkmechanismen Lenkrad/S Lenkradschloss/T Lenkung/P Lenkwaffen Lenkzylinder Lennon/S Lenz/EP Leonardo/S Leonore/S Leopard/P Leopold/S Leporello/S Lepra Leprakranker Lerche/N Lernangebote/N Lernbegierde Lerneffekt Lernens Lernfähigkeit Lernfahrt/P Lernform/P Lernfunktion/P Lernmaterial Lernmethode/N Lernprozess/EPT Lernspektren Lernspektrum Lernvorgang/STp Lernzeit Lernziel Lesart Lesbarkeit Lesbe/N Lesbierin/F Leseadresse/N Leseapparate/N Lesebücher Lesebuch Lesegerät/EPS Lesekopf Lesens Leser/FNS Leserbrief/EPS Leseregister/S Leserkreis/EPT Leserschaft Leserumfrage/N Leserzuschrift Lesesaal Lesevorgang/Sp Lesewort/EPST Lesezeichen Lesezugriff Lessing/S Lesung/P Lethargie Lette/N Lettland Letzt Leuchtanzeige/N Leuchtbomben Leuchtdiode/N Leuchtdiodenfunktion/P Leuchtdiodenkontrolle Leuchter Leuchtgas/EPT Leuchtgeschoss/EPT Leuchtkraft Leuchtpin/S Leuchtpunkt/EPST Leuchtreklame/N Leuchtröhren Leuchtstoffröhre Leuchttürme Leuchtturm Leuchtzeichen/S Leugnens Leugnung/P Leukämie Leukoplast/EPS Leumund/T Leute/N Leutnant Level/S Leverkusen Leviten Lexika Lexikon Liaison/S Liane/N Libanon Libelle/N Liberalisierens Liberalisierung/P Liberalität Libero/S Libertinage/N Libyen Libyer/FNS Lichtbild/RT Lichtblick/EPS Lichtchen/S Lichtdurchgang Lichtens Lichtern Lichtgeschwindigkeit/P Lichtgriffel Lichtjahr/EPS Lichtkegel Lichtleiter/NS Lichtleitkabel Lichtmess Lichtorgel Lichtpause Lichtpunkt/EPST Lichtquant Lichtquelle/N Lichtreligion Lichts Lichtsatz Lichtsatzanlage/N Lichtschächte/N Lichtschalter/N Lichtschein Lichtschranke/N Lichtschrankenkabel Lichtschrankensensorik Lichtsensor Lichtsignal/E Lichtspielhaus/Tp Lichtstärken Lichtstrahl/PS Lichttechnik Lichtung/P Lichtverhältnis/Qq Lichtweg Lichtzeichen/S Lid/RST Lido/S Lidschatten Liebelei/P Liebenswürdigkeit Liebesabenteuer Liebesbarometer Liebesbezeigung/P Liebesbeziehung/P Liebesbrief/EPS Liebeserklärung/P Liebesgefühle Liebesgeschichte/N Liebesgöttin Liebeshändeln Liebesleben Liebeslieder Liebesnacht Liebespaar/EPS Liebesprobe Liebesroman/EPS Liebesschrei Liebesszene/N Liebestöter Liebesverhältnis/Qq Liebhaber/FNS Liebhaberei Lieblichkeit Liebling/EPS Lieblingsbeschäftigung/P Lieblingsbild Lieblingsfarbe/N Lieblingskind Lieblingsmarke Lieblingsmelodie Lieblingsminister Lieblingsmodell Lieblingsnummern Lieblingspiste Lieblingsspeise Lieblingssport Lieblingswaffe Lieblingswerke Lieblosigkeit/P Liebreiz/T Liebschaft/P Liechtenstein/R Liechtensteiner/FNS Lied/MRST Liederabend/E Liederzyklus Lieferanfrage Lieferangebot/S Lieferanmahnung Lieferant/P Lieferantenerklärung Lieferantenquelle Lieferanzeige Lieferauto Lieferbarkeit Lieferbeanstandung/P Lieferbedingung/P Lieferbeschreibung/P Lieferbeschwerde Lieferbestätigung Lieferdatum Lieferfähigkeit Lieferfahrzeuge Lieferfirma Lieferfrist/P Lieferfristforderung/P Lieferkonditionen Lieferlisten Liefermenge/N Liefermöglichkeit/P Lieferns Lieferpapiere/N Lieferpreis/EPT Lieferprioritäten Lieferproblem/EPS Lieferprogramm Lieferrückstand Lieferschein/EPS Lieferscheinangaben Lieferscheinkopien Lieferscheinschreiben Lieferschwierigkeit/P Liefersicherheit Liefersituation/P Lieferstopp Liefertermin/EPS Lieferterminbekanntgabe Lieferumfang Lieferung/P Lieferungsbedingung/P Lieferungsschein/ET Lieferverpflichtung Lieferverträgen Lieferverzögerung Lieferwagen/S Lieferzeit/P Lieferzeitabsprache Lieferzeitangaben Lieferzeitbekanntgabe Lieferzeitverkürzung Liegenschaft/P Liegeplätze Liegesitze/N Liegestuhl Liegeterrassen Liegewagen Liegewiesen Lift/ST Liftsystem Liga Ligatur/P Likör/EPS Likörfabrik Lilie/N Liliput/S Liliputaner Lille Lima Limerick Limes Limit Limitation/P Limitierens Limitierung/P Limonade/N Lincoln/S Lindau Lindbergh/S Lindenallee Linderns Linderung/P Linderungsmittel/NS Lineal/EPS Linearisierung/P Linearität Linearmotor/PS Linefeed Lineprinter Linguistik Linie/N Linienabstand/S Linienbus Liniendienste Linienflug/STp Linienführung Liniengewebe/S Linienmaschinen Liniennetz Linienpassagier Linienreeder Linienschiff/E Link Linksextremisten Linksgruppe Linkshänder/NS Linkskandidaten Linkskurs Linkslastigkeit Linksopposition Linksrepublikaner Linksrutsch Linksstimmen Linkstechnik Linksterroristen Linksverschiebung Linnen Linné/S Linoleum Linse/N Linsensuppe Linus Linux Linz Lippe/N Lippenbekenntnis/Qq Lippenstift/EPT Liquidation/P Liquidationserlös/EPT Liquidationsregel Liquidator/P Liquidität Liquiditätsanspannung Liquiditätsbedarf Liquiditätsbemühung Liquiditätsenge Liquiditätsengpass/Tp Liquiditätsgrad Liquiditätsgründen Liquiditätsimplosion Liquiditätslawine Liquiditätsquellen Liquiditätsreserve Liquiditätsspritze Lira Lire Lisa/S Lisbeth/S Lisp Lissabon/S List Listbefehl Listenoperation/P Listenplatz Listenpreis/EPT Listenverarbeitungsfunktion/P Litauen Liter/NS Literat/P Literatur Literaturarchiv Literaturauswahl Literaturblatt Literaturhinweis/EPT Literaturhistorie Literaturkomplex Literaturkreise Literaturpreis/E Literaturrecherche/N Literaturseite Literaturstudie/N Literaturthemen Literaturverzeichnis/Qq Literaturzeitung Litfaßsäule/N Lithium Lithiumbatterie/N Lithographie/Nf Litowsk Liturgie Litze/N Liverpool/S Livingstone/S Livland Liz Lizenz/P Lizenzabgabe/N Lizenzabschluss/Tp Lizenzbedingung/P Lizenzforderung/P Lizenzfußballer Lizenzgeber Lizenzgebühr Lizenziat Lizenzierungsantrag/STp Lizenzinhaber Lizenznehmer/NS Lizenzpartner Lizenzrückgabe Lizenzspieler Lizenzträger Lizenzurkunde Lizenzvergabe Lizenzvertrag/Tp Lizenzvertrieb Lizenzzahlung/P Lkw/S Lloyd/S Löcher Löffel/S Löffelachse Löffelbagger Löffelkante Löffelkippzylinder Löffelneigung Löffelschneidkante Löffelspitze Löffelstellung Löffelstiel/E Löffelteil/S Löffler Löß/EPT Löschens Löschung/P Löschvorgang Löschwagen/S Löschwasser Löschzug/Sp Lösegeldsumme Lösens Lösezeit Löslichkeit Löss/EPT Lösung/P Lösungsabschnitt Lösungsansätze/N Lösungsansatz/T Lösungsmittel/N Lösungsmöglichkeit/P Lösungsprinzip Lösungsvorschlag/STp Lösungswettbewerb Lötaugen Lötbatzen Lötbrücken Lötens Lötfehler Lötkolben Lötpin/S Lötpumpe Lötpunkt Lötseite Lötstelle/N Lötstift Lötung/P Lötverbindung Lötversion/P Lötvorrichtung/P Löwe/FN Löwenanteil/S Löwenherz Löwenkopfsäbel Löwenkrallen Löwenzahn Lob/ST Lobby/S Lobbyist/P Lobeswort/EPS Lobgesang/Sp Lobhudelei Loblied Loblieder Lobpreisung Lobsprüche/N Lobspruch Loch/JST Lochblech Locheisen Lochens Lochform Lochhöhe Lochkarten Lochkartenanlage Lochposition/P Lochrandträger Lochrasterabstand Lochschablone Lochstreifen/S Lockenköpfen Lockens Lockenstab Lockenwicklern Lockerns Lockerung/P Lockerungsarbeit Lockerungstraining Lockheed Lockmittel/N Lockung/P Lockvogel Lodenmantel Logarithmierung Logarithmus Logbuch Logenplatz Loggia Loggien Logik/PR Logikbaustein Logiker/NS Logikprogrammierung Login/S Logis Logistik Logo Logopäde/FN Logopädie Lohn/ST Lohnabbau/S Lohnabschluss/Tp Lohnangebote Lohnanspruch Lohnanteil Lohnausfall/Sp Lohnausfallvergütung Lohnausgleich/S Lohnbedingung/P Lohnberechnung Lohnbewegung/P Lohnbüro Lohnbuchhalter Lohndebatte Lohndifferenz Lohndiktat Lohneinkommen Lohneinstufung Lohnempfänger Lohnerhöhung/P Lohnersatz Lohnfindung Lohnforderung/P Lohngebiet Lohngesetzgebung Lohngruppen Lohnintensive Lohnkämpfe Lohnkampf/T Lohnkonflikt/S Lohnkostenanteil Lohnkostenschub Lohnkürzung/P Lohnleitlinien Lohnlisten Lohnpartner Lohnpause Lohnreduzierung/P Lohnrückstände Lohnrunde Lohnsätze Lohnseite Lohnsenkung/P Lohnskala Lohnsteigerung Lohnsteuer/N Lohnsteuerjahresausgleich Lohnsteuerprüfung Lohnstopp Lohnstreik/S Lohnstreit Lohnstückkosten Lohnstückkostenvergleich/ES Lohnsumme Lohntarif/EPST Lohntarifvertrag/STp Lohnveredlung Lohnversteuerung Lohnverzicht Lohnwalzung/P Lohnwelle Lohnzahlung Lohnzettel Lohnzugeständnis/Qq Loire Lok/S Lokalbahn Lokalblättern Lokalderby/S Lokalisation Lokalisierbarkeit Lokalisierung Lokalität/P Lokalkolorit Lokalmatadoren Lokalmuseen Lokalpanorama Lokalredaktion/P Lokalrivalen Lokals Lokaltermin Lokalverbot Lokalwährung/P Lokführern Lokomotive/N Lokomotivführer/S Lolita/S Lollobrigida/S Lombarde/N Lombardei Lombardkredit/E Lombardzins/T London/RS Lorbeer/PS Lorbeerbaum/STp Lorbeerblatt Lorbeerkranz Lord/S Lore/N Loreley Lorenz Losentscheid Losentscheidung Losgelöstsein Losglück Loslösens Loslösung/P Losnummer Losung/P Lot/EPT Lotabdeckung Lothar/S Lothringen Lotos Lotosblüte/N Lotrechte Lotte/MS Lotterie/N Lotterieeinsatz Lotteriegewinne Lotterielos/EPT Lotto Lottoblock Lottogewinn/EP Lottokönig Lottopech Lottoschein/S Lottospiel/R Lottostelle/N Louis Lourdes Louvre Lovestory/S Lowpegel Loyalität Loyalitätsfragen Loyalitätspflicht/P Loyalitätstelegramm Ltd Ltd. Lübeck/RS Lübecker/FNS Lücke/N Lückenbüßer Lückenlosigkeit Lüftchen/S Lüftens Lüfter/NS Lüftung/P Lüftungsgitter Lüftungsindustrie Lüftungsingenieur Lüftungsklappe Lügendetektor Lügenmärchen Lügenmeldung/P Lügentechnik Lügerei Lügner/FNS Lümmel Lüneburg Lüste/N Lüsterklemme/N Lüttich Luchs/T Luchsfellen Luder Ludwig/S Ludwigshafen Luft Luftabenteuern Luftabwehr Luftabwehrrakete Luftabwehrsystem Luftalarm Luftangriffe Luftballon/S Luftbasis Luftbereich Luftbilder Luftblase/N Luftblasenkontrolle Luftblockade Luftbrücke Luftbrückenjahr Luftbrückenpiloten Luftdeckung Luftdruck/S Luftdruckbedingung/P Lufterscheinung/P Luftfahrt Luftfahrtabkommen Luftfahrtausstellung Luftfahrtbehörden Luftfahrtbereich Luftfahrtbundesamt Luftfahrtgesellschaften Luftfahrtindustriellen Luftfahrtkreisen Luftfahrtminister Luftfahrtministerium Luftfahrtsachverständige Luftfahrtschein Luftfahrtschule Luftfahrttechniker Luftfederung Luftfederungssystem Luftfeuchtigkeit Luftfracht Luftfrachtdienst Luftfrachtmarkt Luftfrachtraten Luftfrachtversand Luftgesellschaft Luftgewehr/P Lufthansa Lufthygiene Luftkissenbahn Luftkollision Luftkommandos Luftkorridor/EPS Luftkriege/S Luftkriegswesen Luftkurort/T Luftlandebrigade Luftlandeeinheit/P Luftlandetruppen Luftlandeunternehmen Luftloch/T Luftmachen Luftmarschall Luftmassen Luftnetz Luftpiraten Luftpistole Luftporto Luftpostabonnement/S Luftpostbriefe Luftpostporto Luftpostsendung/P Luftpostverband Luftpumpe Luftraum/ST Luftreinhaltung Luftreiniger Luftröhre Luftschacht Luftschiffe Luftschifffahrt/P Luftschlacht Luftschloss/T Luftschutzkeller Luftsport Luftsportclub/S Luftstrahl Luftstreitkräften Luftstrom Luftstützpunkt/E Lufttransporter Lufttransportraum/ST Lufttransportverbande Luftüberlegenheit Luftveränderung/P Luftverkehr/S Luftverkehrsabkommen Luftverkehrsgesellschaft/P Luftverkehrsnetz Luftverkehrsvereinigung Luftverseuchung Luftversorgung Luftverteidigung Luftwaffe Luftwaffenabteilung Luftwaffenchef Luftwaffeneinheit Luftwaffengeneral Luftwaffenhauptquartier Luftwaffenmajor Luftwaffenminister Luftwaffenoberstleutnant Luftwaffenstäbe Luftwaffenstrategie Luftwaffenstützpunkt Luftweg/EPS Luftzufuhr Luftzug/STp Lug/S Lugano Luke/N Lukullismen Lumpen Lumpenverarbeitung Lunge/N Lungenentzündung Lungeninfektion/P Lungenphysiologie Lunte/N Lupe/N Lust Lustgarten/S Lustgefühl/EST Lustgewinn/EST Lustigkeit Lustschlösser/N Lustschloss/T Lustschreien Lustspiel/EPST Luther/S Lutschbonbon Luxemburg/R Luxus Luxusappartement Luxusartikel Luxusausführung Luxusausgabe Luxusbad Luxusbedürfnis/Qq Luxusbussen Luxusdampfer Luxusdienst Luxushotel/S Luxusjacht Luxusklasse Luxusleben Luxuslokal Luxusmodelle Luxusreisen Luxusschiff/EPT Luxusschwimmbad Luxusvilla Luxuswaren Luxuswohnung Luzern/RS Luzifer/S Lydien Lymphgefäß/EPT Lymphknoten/S Lymphozyt/P Lynchjustiz Lyrik Lyrikband Lyriker Lyzeum/S MAD MB MBB MBit MByte MDR MHz MITI MPEG MSDOS Mäander Mäanderfahrt Mächte/N Mächtigkeit/P Mädchen/S Mädchenballerina Mädchenfoto Mädchenhandel/S Mädchenkleidung Mädchenkopf Mädchenname/N Mädchennamen/S Mädchenschwarm Mädchenzimmer Mädel/NS Mähdrescher Mähmaschine/N Mähne/N Mängel/N Mängelanzeige/N Mängelbeschreibung Mängelbeseitigung Mängelpunkte/N Mängelrüge/N Mängelverteilung Männchen Männer/N Männerabend Männerarbeit Männerblicke Männerehre Männerkopf Männerwirtschaft Männlein Männlichkeit Mäntel/MN Märchen/S Märchenbüchern Märchenbuch/T Märchenerzähler Märchenfiguren Märchengebilde Märchenonkel/S Märchenoper Märchenstadt Märchenstück Märkchen/S Märker Märklin Märkte/N Märsche/N Märtyrer/N März Märzhälfte Mäßigens Mäßigkeit Mäßigung/P Mäulchen/S Mäuler/N Mäuse/N Maar/E Maas Maastricht/R Maasübergang Mac Machart/P Machbarkeit Machenschaft/P Macher/NS Machiavelli/S Machtabgrenzung Machtanspruch Machtantritt Machtanwendung Machtaufteilung Machtausbau Machtausübung Machtbefugnis/q Machtbereich/S Machtblöcken Machtblock/T Machtdemonstration/P Machtdrohung/P Machteinbuße Machtergreifung/P Machtfaktoren Machtfülle Machtgrundlage Machtgruppen Machthabende/NR Machthaber/NS Machtinstrumente Machtkämpfe/N Machtkampf/T Machtkomplex Machtkontrolle Machtkonzentrierung Machtlinien Machtmissbrauch Machtmittel/N Machtposition/P Machtpotential/EPS Machtpotenzial/EPS Machtstaaten Machtstellung Machtstreben Machtstruktur/P Machtträger/NS Machtübernahme/N Machtverfilzung Machtverhältnis/Qq Machtverschiebung/P Machtverteilung/P Machtverzicht Machtwechsel Machtwörter/N Machtwort/EPST Machtzentrum Machtzusammenballung Machtzuwachs/T Macintosh/S Macke/NR Madagaskar Made/N Madonna Madonnenbilder Madrid Mafia Mafioso Magazin/EPS Magazinschwenken Magd Magdalena/S Magdeburg/S Magen/S Magenbeschwerden Magendruck Magenerkrankung Magengegend Magengeschwür/EPST Magengetränk Magengrube Magenkranke Magenkrebs Magenleiden/S Magenoperation/P Magenschließmuskel Magenschmerz/T Magenta Magenverdauung Magerjahren Magerkäse Magerkohle Magermilch Magermilchpulver Magersucht Maghreb Maghrebiner Magie/R Magier/FNS Magister/NS Magistrat/EPS Magistratsbeamten Magma/S Magnesium/S Magnesiumbedarf Magnesiumverbrauch Magnet/EPST Magnetband Magnetfeld/RT Magnetik Magnetisieren/JS Magnetismus Magnetkartenleser Magnetkissenbahn Magnetophon Magnetplatte/N Magnetschaltern Magnetspule/N Magnetstreifen Magnetsturm Magnetventil/EPS Magnetventilstellung Magnetventilsteuerung Magnolie/N Mahagoni Maharadscha Mahatma/S Mahjongg Mahl/GST Mahlerzeugnis/Qq Mahlkontingent Mahlleistung Mahlzeit/P Mahnbescheid Mahnbrief/EPS Mahnens Mahner Mahnkosten Mahnkraft Mahnmäler Mahnrufe Mahnschreiben Mahnstunde Mahnung/P Mahnwesen Mai/NS Maibaumräuber Maibock Maibowle Maidemonstration/P Maiensonne Maifeier Maiglöckchen/S Maiglöckchenduft Maikundgebung/P Mail/S Mailänder Mailand Mailbox/P Mailingliste/N Mailorder/S Mailserver/NS Mainboard/S Mainframe/S Mainz Maiskolben/S Maisladung/P Maitage Maiwoche Maizahlen Majestät/P Majonäse/N Major/EFPS Majoran Majorität Makedonien Makefile/S Makel/S Makler/FNS Maklerangebote Maklerbüro Maklergebühr/P Maklerkosten Maklerprovision/P Maklertafeln Maklervermittlung Makro/S Makroexpansion/P Makroexpansionsfunktion/P Makroexpansionszeit Makrolebewesen/S Makromutation/P Makronummer/N Makroschicht Makrostruktur Makrosubstitution/P Makulatur Makulaturwert Maläse/N Malaise/N Malaria Malaysia/S Malediven Maler/FNS Malerarbeiten Malerbedarf Malerei/P Malereimer Malergeselle Malermeister Malfläche Mali Malkunst Mallorca Malmittel Malmö Malo/S Maloche Malstrom Malta Malus Malve/N Malweise/N Malz/T Malzkaffee/S Mama/S Mammographie/N Mammon/S Mammut/S Mammutanzeigenkampagne Mammutausstellung Mammutbaum/STp Mammutfilm Mammutschulden Mammuttanker Management/S Managementaufgabe/N Managementfehler/N Managementleistung/P Managementposition/P Managementversagen/S Manager/FNS Managergehalt Managerkrankheit Managertod Managertyp/PS Manchester Mandant/FP Mandantenkreis/EPT Mandarine/N Mandat/EPS Mandatsaberkennung Mandatsgebiete Mandatsverlust Mandatsverteilung Mandel/N Mandelbaum/STp Mandelentzündung/P Mandeloperation/P Mandoline/N Mandschurei Manege/N Manfred/S Mangan Manganfunde Mangangehalt Mangel Mangelerscheinung Mangelhaftigkeit/P Mangellage/N Mangelpunkt Mangelware/N Manhattan Manie/NR Manier/P Manierensteuer Manierismus Manierist/P Manifest/EPST Manifestation/P Manila Manipulation/P Manipulationsform/P Manipulationsmöglichkeit/P Manipulationstechnik/P Manipulierbarkeit Manitu/S Manko Mann/EPT Manna/S Mannequin/S Mannequinschule Mannesgesicht Mannesmann Mannesmut Mannheim/R Mannheimer/FNS Mannigfaltigkeit Mannit Mannsbild/R Mannschaft/P Mannschaftsabteil Mannschaftsangehörige Mannschaftsarzt/T Mannschaftsaufstellung Mannschaftsbestand Mannschaftsführer Mannschaftsgeist Mannschaftskämpfe Mannschaftskamerad/FP Mannschaftskasse Mannschaftsleistung Mannschaftsleiter/S Mannschaftsmeister Mannschaftsraum/STp Mannschaftsspieler Mannschaftssportarten Mannschaftsstärke Mannschaftsteile Mannschaftstitel Mannschaftswappen/S Manntag/EPS Mannwoche/N Manöver/N Manöverball Manöverunglück Manövrierraum/STp Mansarde/N Mansardenstube Manschette/N Manschettenknöpfe/N Manschettenknopf Mantel/S Manteletage Mantelkragen Mantelsaum/STp Mantisse/N Mantra/S Manual/EPS Manuela/S Manufaktur/P Manuskript/EPS Manuskriptblätter Manuskriptfragment Manuskriptseite/N Manz Mao/S Maori Mappe/N Maraschino/S Marathonläufer/FNS Marathonlauf/Sp Marathonrennen/S Marathonsieg Marathonsitzung Marburg Marc/S Marder/NS Margarete/S Margarine Margarinefabrikation Margarineherstellung Margarineindustrie Margarinemengen Margarinepreise Margarinewürfel Marge/N Margentarife Marginalie/N Maria/S Marianne/S Marie/S Mariendogmen Marienkäfer/N Marienklage Marienkult Marihuana Marilyn/S Marine/NS Marineärzte/FN Marineattachés Marineausbildung Marinedienst Marineflieger Marineflugzeug/E Marinehelfer Marineinfanterie Marineinfanteristen Marinekorps Marineleute Marineleutnants Marineoffizier/E Marineschnellboote Marineschule Marinestützpunkt Marinetruppen Marion/S Marionette/N Marionettentheater/NS Marita/S Marius Mark/EPT Markbeträge Marken/IW Markenabgabe Markenabteilung Markenartikel/NS Markenartikelbranche Markenartikelfirma Markenartikelfirmen Markenartikelwesen Markenbeobachtung Markenbettwäsche Markeneier Markengefährte/N Markengeschäft Markenname/N Markennamen/S Markenpapier Markensammler/N Markenschnäpse Markensekt Markenspirituosen Markenteppich Markenwaren Markenwein Markenzeichen/S Marketing Marketingfachleute Marketinginstrument Marketingkonzeption Marketingleiters Marketingorganisationen Marketingpraktiker Marketingstrategen Marketingstrategie Marketingüberlegung/P Marketingwelt Markgraf/P Markierens Markierung/P Markierungsecke Markierungsgerät/T Markise/N Markknochen/S Markov/S Markstücke/N Markt/TW Marktaktivität Marktanalyse/N Marktanteil/E Marktausweitung Marktbeeinflusser Marktbeeinflussung Marktbelebung Marktbeobachtung Marktbericht/ET Marktbewegung/P Marktbild Marktchance/N Marktdisziplinen Marktdurchsetzung Markteffizienz Markteinbußen Markteinführung/P Marktenge Marktentwicklung Markterfahrung Markterfolg/E Marktforscher/FNS Marktforschung Marktforschungsinstitut Marktforschungsjahre Marktführer Marktgebiet/T Marktgeschehen Marktgeschehnis/Qq Marktgesetze Marktgraf Markthallen Markthintergrund Marktindexe Marktkalender Marktkenntnis/q Marktklima Marktkräfte Marktkreisen Marktlagen Marktlücke/N Marktmacher Marktmacht Marktmanipulation/P Marktnähe Marktnischen Marktöffnung Marktordnung Marktorganisation/P Marktplätze/N Marktplatz/T Marktposition/P Marktpreise/N Marktprognoseverfahrens Marktrecherchen Marktrichtung Marktschwäche Marktsegment Marktsituation/P Marktstand Marktstimmen Marktstimmung Marktstörung/P Marktstruktur Marktteilnehmern Markttendenz Markttheorie Marktübersicht Marktunsicherheit Marktveränderung/P Marktverhältnis/Qq Marktwahl Marktwert/T Marktwirtschaft/P Marktwirtschaftlern Marktziel/EPS Marktzinsen Marktzustände Markus Markusdom Marmarameer Marmelade Marmeladengläser Marmor/S Marmorbänke Marmorbruch Marmorfliesen Marmorhaus/Tp Marmorplatten Marmorstadion Marmorwerk Marne Marnelinie Marneschlacht Marneufer Marokkaner Marokko Marokkokrise Marquise/N Marrakesch Mars Marsala/S Marsch/T Marschall/S Marschboden Marschkompass/ET Marschland Marschlandschaft Marschmusik Marschstiefel Marschtempo Marschtritt Marseille Marshallplan Marsmenschen Marssonde Martin/S Martina/S Marx Marxismus Marxist/FP Mary/S Marzipan Marzipanbrote Maßangabe/N Maßarbeit Maße/NS Maßeinheit/P Maßfigur Maßgabe/N Maßkleidung Maßkrug/Sp Maßlosigkeit Maßnahme/N Maßregel/N Maßregelung Maßschneiderei Maßstäbe/N Maßstab/ST Maßvorlage/N Maßzeichnung Masche/N Maschennetz Maschine/N Maschinenabläufen Maschinenabteilung Maschinenaktien Maschinenanlagen Maschinenantriebs Maschinenanzeige Maschinenarbeiter Maschinenausstattung Maschinenbau/RST Maschinenbauaktien Maschinenbauanstalten Maschinenbaubetrieb Maschinenbauindustrie Maschinenbauingenieur/EPS Maschinenbaumeister Maschinenbauschule Maschinenbautitel Maschinenbedienung Maschinenbefehl/EPS Maschinenbeleihung Maschinenbeschreibung Maschinenbetrieb/S Maschinenbewegung/P Maschinencode/S Maschinendaten Maschinendatenerfassung Maschinendiagnose Maschineneinrichtung Maschineneinsatz Maschinenfabriken Maschinenfirma Maschinenfreiheitsgrad Maschinenführer Maschinenführung Maschinenfunktionen Maschinengeometrie Maschinengewehr/EPT Maschinenhaus/Tp Maschinenheck Maschinenhöhe Maschinenkenntnisse Maschinenkomponente Maschinenkonstellation Maschinenkontrolle Maschinenkoordinaten Maschinenlagen Maschinenmaße Maschinenmodell/EPS Maschinenmodul/E Maschinenoperation/P Maschinenpark Maschinenpersonal/S Maschinenpistole Maschinenposition/P Maschinenprobe Maschinenprogramm/EPS Maschinenprotokollierung Maschinenpunkten Maschinenrahmen Maschinenreaktion Maschinenregister/NS Maschinenreparatur Maschinenschäden Maschinenschablone Maschinenschaden Maschinenschlitten Maschinenschlosser/N Maschinenschlüssel Maschinenschrift/P Maschinenseite Maschinensimulators Maschinensprache/N Maschinensprachebene/N Maschinenstandort Maschinensteuerung/P Maschinenstillstand Maschinenteil/EPS Maschinenumbau Maschinenumstellung Maschinenverhalten/S Maschinenvermessung Maschinenvibrationen Maschinenvorderteils Maschinenvortriebs Maschinenwerkzeuge Maschinenwerte Maschinenwort/E Maschinenzerlegung Maschinenzustände/N Maschinenzustand Maschinerie/N Maschinist/P Masern/JS Maske/N Maskenball/Sp Maskenbildner/NS Maskenorganisation Maskentreiben Maskenwort/S Maskerade/N Maskottchen/S Masochismus Masquerading Massage/N Massageliege Massagesalon Massaker/NS Masse/N Masseanschlüsse Masseausgang Masseblech Masseelektroden Massekabel Massekopplung/P Masseleitung Massenagitation Massenandrang Massenanstalt Massenarbeitslosigkeit Massenartikel/S Massenaufgebot Massenbefragung Massenbrief/E Massenbriefherstellung Massendemonstration/P Massendenken Massenentlassung/P Massenermordung/P Massenexport/E Massenflugblatt Massengesellschaft Massengräber/N Massengrab Massenhinrichtung Massenimpfung/P Massenkeilerei Massenkundgebung/P Massenmarkt/Tp Massenmedien Massenmörder/NS Massenmord/EPS Massenorganisation/P Massenprodukt/EPST Massenproduktion Massenprozess/EPT Massenpsychologie Massenpublikation/P Massenquartiere Massenschlägerei Massenselbstmord Massenspeicher/S Massenspurt Massensterben Massenstücken Massensuggestion Massenszenen Massentötung/P Massentourismus Massentransportsystem Massenunterkünfte/N Massenverbrechen Massenverkehr Massenvernichtung Massenvernichtungswaffen Massenverpflegung Massenversammlung/P Massenwahn/S Massenwanderung Masseschleifen Masseschluss/Tp Masseur/EFPS Masseuse/N Masseverbindung/P Massierens Massierung/P Massivbauweise Massivs Mast/P Mastbrüche Mastrinderschau Mastspitze Masturbation Matador/EPS Matchball/Sp Material/S Materialart/P Materialaufwand Materialbearbeitung Materialbeschaffung Materialbild/RT Materialdaten Materialdecke Materialeinsatz Materialermüdung Materialfehler/NS Materialfortschritt/EPST Materialhandlung/P Materialien Materialist/P Materialkenner Materialkombination/P Materiallager Materiallieferung/P Materialnummer Materialpreise/N Materialprüfung Materialsammlung Materialschlacht/P Materialschneiden Materialspenden Materialumschlag/STp Materialvorbereitung Materialwert Materialwiderstand Materie/N Mathematik/R Mathematiker/FNS Mathematiklehrer/FNS Mathematiklehrkraft Mathematikstudent/P Mathematikstunde Mathematikunterricht Mathematisieren/JS Mathilde/S Matinee/N Matratze/N Matrices Matrix Matrixdrucker/NS Matrixelement/EPST Matrixfelder/N Matrixnadeln Matrizen Matrizes Matrone/N Matroschka Matrose/N Matrosenanzug/STp Matsch/T Matsushita Matterhorn Matthäus Matthias Mattigkeit Mattscheibe/N Mattsetzen Maturität Mauer Mauerbau Mauerblümchen/S Mauerdurchlass/Tp Mauerfall/S Mauersperre Maul Maulesel/NS Maulkorb Maultier/P Maulwürfe/N Maulwurf/S Maulwurfshügel/N Maurenreich Maurer/NS Maurerpolier/EPS Mauretanien Maurice Mauritius Maus Mauser Mausklick/S Mausoleum Maxima Maximaldurchmesser Maximalforderung/P Maximalgeschwindigkeit Maximalgröße Maximalhöhe Maximalsatz Maximalspannung Maximalstrom/T Maximalwert/EPST Maximalwerttrigger Maximalzeitraum/STp Maximalziel Maxime/N Maximierens Maximierung/P Maximierungsstrategie/N Maximilian/S Maximum/S Maxwell/S Maya/S Mayflower/S Mayonnaise/N Mazda Mazedonien/S Mazurka McCarthy McDonalds Md Mechanik/R Mechanikerlehrling Mechanikkonstruktion Mechanisieren/JS Mechanismen Mechanismus Mecklenburg/S Medaille/N Medaillenanwärter/FNS Medaillenhoffnung/P Medaillennähe Medaillenspiegel Media Medianschnitt Medici/S Medien Medienäußerung/P Medieneigenschaften Medienkommission/P Medienmix Medienpolitik Medienunternehmen/S Medienzirkus Medikament/EPST Medina Meditation/P Medium/S Medizin/R Mediziner/FNS Medizinstudent/P Meer/EPST Meerechsen Meerengen Meeresarm Meeresbiologie Meeresbodenschätze Meeresbuchten Meeresentsalzung Meeresgebiet Meeresgrund Meereshöhe/N Meeresluft Meeressicht Meeresspiegel/S Meeresstille Meerestechnik Meerschaum/ST Meerschweinchen/S Meersicht Meerwasser Meeting Megäre/N Megabit Megabyte Megafon/ES Megalith/EPS Megaphon/EPS Megatonnen Megatrend/S Mehl/S Mehlpreise Mehrarbeit/P Mehraufkommen Mehraufwand/T Mehrausgabe/N Mehrbedarf Mehrbetrag/Sp Mehrdeutigkeit/P Mehreinnahme/N Mehrens Mehrerlös/EPT Mehrfachecho/S Mehrfachsprengkopf Mehrfachzuweisung/P Mehrfamilienhaus/Tp Mehrgewicht Mehrheit/P Mehrheitsbeschluss/Tp Mehrheitsentscheidung/P Mehrheitskoalition Mehrheitspartei Mehrheitsprinzip/S Mehrheitsvotum/S Mehrheitswillen/S Mehrkanalsystem/E Mehrkapazität Mehrkosten Mehrplatz Mehrplatzfähigkeit Mehrplatzsystem/PS Mehrpreis/EPT Mehrrendite Mehrung/P Mehrverdienst Mehrwert/EPST Mehrwertsteuer Mehrzahl Mehrzweckraum/STp Meidens Meidung/P Meier/S Meile/N Meilenschritt Meilenstein/EPS Meineid/EPST Meinens Meinung/P Meinungsäußerung/P Meinungsaustausch/ST Meinungsbeeinflusser Meinungsbefragung Meinungsbild Meinungsbildner Meinungsbildung Meinungsdivergenz/P Meinungsforscher/N Meinungsforschung Meinungsfreiheit/P Meinungsmache/R Meinungsmacher/NS Meinungsumfrage/N Meinungsumschwung Meinungsverschiedenheit/P Meißel/S Meißelanordnung Meißelposition/P Meißelspitzen Meißen Meise/N Meister/FS Meisterhand Meisterprüfung Meisterschaft/P Meisterschuss/Tp Meisterschwimmer Meisterspiel Meistertitel/S Meisterturnier Meisterwerk/EPST Meisterwohnung Mekka/S Mekong Mekonggebiet Melancholie Melanie/S Meldeämter Meldeamt/T Meldebereich Meldens Meldepflicht/P Meldeschluss/Tp Meldestromkreise Meldung/P Melissengeist Melkmaschine/N Melodie/N Melone/N Melonensuppe Membran/P Membranabdeckung Membrankörper Memel Memelgebiet Memo Memoiren Memorandum Memorymap Memphis Mendel/S Mendelssohn/S Mengenänderung/P Mengenberechnung Mengenlehre Mengenoperation/P Mengenrabatt/EPS Mengens Mengenumsatz Mengenverband/ST Mengenzunahme/N Mengenzuwachs/T Mengung/P Meniskus Meniskusoperation/P Meniskusriss/EPT Meniskusverletzung Mensa Mensabetrieben Mensapreise Mensch/P Menschenaffen Menschenalter Menschenarme Menschenaufmärsche Menschenauge Menschenbild/T Menschendichte Menschenfänger Menschenfeind/T Menschenfresser Menschengedenken Menschengestalten Menschengewimmel Menschengruppe Menschenhandel/S Menschenhass/T Menschenherz Menschenkenner Menschenkenntnis/q Menschenkind Menschenkinder Menschenkraft Menschenleben/S Menschenleiber Menschenliebe Menschenmasse/N Menschenmenge/N Menschenmitte Menschenopfer Menschenpotential/EPS Menschenpotenzial/EPS Menschenraub/ST Menschenrecht/EPST Menschenrechtskonvention/P Menschenrechtsverletzung/P Menschenschicksale Menschenschlag/Tp Menschenschlangen Menschenseelen Menschenserien Menschensprache Menschenverluste Menschenverstand/T Menschenwerk Menschenwesen Menschenwürde Menschheit Menschheitsapostel Menschheitsentwicklung Menschheitsfamilien Menschheitsfragen Menschheitsgeschichte Menschheitssache Menschkopien Menschlein/S Menschlichkeit Menschwerden/JS Menstruation Mensur/P Mentalität/P Menthol/S Mentor/FPS Menü/S Menüführung Menüfunktion/P Menügestaltung Menügruppe/N Menükarte/N Menüpunkt/EPST Menüspalte/N Menüsteuerung Menütechnik Menüvorschlag/STp Mephisto/S Meran Mercedes Merck Mergentheim Meriten Merkblätter/N Merkblatt/T Merker Merkfähigkeit Merkliste/N Merkmal/EPST Merkmalskombination/P Merkmalsreduktion/P Merkposten Merkschwäche/N Merkur Merkwürdigkeit/P Merkzeichen/S Merlin Merowinger Mesner/NS Mesolithikum Mesopotamien Messanordnung/P Messaufbau Messaufgabe/N Messband Messbecher/NS Messbereich/EPT Messblech Messbrücke/N Messbücher Messbuch/ST Messdaten Messdatenkontrolle/N Messdatenübertragung Messdiener/NS Messdistanz Messdose/N Messeausweise Messebau Messebeginn/S Messebesuch Messebesucher Messebeteiligung Messegebrauch Messegelände Messeingang Messeingangssignal Messeinrichtung/P Messeleitung Messelement/EPST Messens Messentfernung/P Messeorten Messepokal Messepreis/EPT Messer/N Messergebnis/Qq Messerklinge/N Messerschmiedewaren Messerschneide/N Messerstecher Messerstecherei/P Messerstich/EPS Messeschlager Messesonderwagen Messestadt Messestand/T Messezentrum Messfehler Messfühler Messfunktion/P Messgenauigkeit Messgerät Messgröße/N Messina Messing Messingaufnehmer Messingblech Messingdeckel Messingdraht Messinggehäuse Messingknöpfe Messingpranger Messingschatulle Messingschild Messingschilder Messingteile Messingwappen Messinstrument/EPS Messinterface/S Messkabel/N Messkanäle/N Messkanal/S Messköpfe/N Messkopf/ST Messkurve/N Messlänge/N Messlatte/N Messleitung/P Messlogik Messmethode/N Messmodule/N Messner/NS Messobjekt Messort/EPST Messprinzip Messprobe/N Messprogramm Messprotokoll/EPS Messpunkt/EPST Messrate/N Messraum/STp Messreihe/N Messsignal/S Messsituation/P Messspannung/P Messstab Messstelle/N Messstellennummer Messstrecke/N Messsystem/EPS Messtechnik Messung/P Messverfahren Messvolumen/S Messvorgang/ST Messwert/EPST Messwertanzeige/N Messwertaufnahme Messwertaufnehmer/N Messwertausgabe Messwerterfassung Messwertrechner/N Messwertsammler Messwertschwankung/P Messwertspitzen Messwertübertragung Messwertverfälschung Messwertvorverarbeitung Messwesen/S Messzahl/P Messzeit/P Messzyklen Messzyklus Metabolismus Metaebene/N Metageschäfte Metall/ES Metallarbeiter/FNS Metallarbeiterbundes Metallarbeitergewerkschaft Metallarbeiterstreik Metallarbeitgeber Metallbau Metallbaufirma Metallbereich Metallbeschichtung Metallbetriebe Metallbranche Metallbügel Metallfässer Metallfacharbeiter/FNS Metallfilmwiderstände Metallgarnitur Metallgegenstände Metallgehäuse Metallhändler/FNS Metallhalter Metallhüttenwerke Metallindustrielle/NR Metallindustrien Metallisierung Metallkasten Metallklammer Metalllegierung/P Metallmarkt/Tp Metallmaterial Metallöse/N Metalloxyd/EPS Metallpreise Metallrahmen Metallrumpf Metallschicht/P Metallschichtwiderstand Metallschlitten Metallspäne Metallsplitter Metallstreifen Metallteilen Metallurgie Metallverkleidung/P Metallwaren Metallwarenfabrik Metallwerk/E Metallwesen Metamorphose/N Metapher/N Metaphysik/P Meteor/EPS Meteoritenblock Meteoriteneinschläge Meteorologe/N Meteorologie Meter/N Metereologe/N Meterware/N Methangase Methode/N Methodenauswahl Methodik/P Methodist/P Methodologie/N Metier/S Metrik/P Metronom Metropole/N Metropolis Metternich/S Metz Metzelei/P Metzger/FNS Metzgerei/P Metzgereiwagen Metzgergasse Metzgerladen Meuchelmord/T Meute/N Meuterei/P Meuterer Meutererschiff Mexikaner/FNS Mexiko Meyer/S Michael/S Michaela/S Michelangelo/S Michelin Mick/S Microsoft/S Midas Midlands Midlifecrisis Mieder Miederfabrik Miederindustrie Miederwaren Mief/S Miene/N Mienenspiel/S Miesmuschel Mietanhebung Mietanspruch Mietappartement Mietbeihilfe/N Mietbürgschaft Mietdroschken Mietebemessung Mieteinkünfte Mieteinnahme Mietens Mieter/FNS Mieterhöhung Mieterorganisation/P Mieterschaft Mieterschutz Mieterschutzbund Mietevorauszahlung Mietforderung/P Mietfreigabe Mietgarantie Mietgesetz Miethaus/Tp Miethöhe Mietkaution/P Mietkündigung/P Mietmutter Mietobjekt/EPS Mietpreis/EPT Mietpreiserhöhung/P Mietpreisgarantie Mietpreisreform Mietrecht/S Mietrechtsschutz Mietshaus/Tp Mietsicherheit Mietsstube Mietstopp Mietstreit Mietstreitigkeit/P Mietung/P Mietverbilligung Mietverhältnis/Qq Mietvertrag/STp Mietwagen Mietwagenbenutzung Mietwert Mietwohnung/P Mietwohnungsblock Mietzins/PT Mietzinsbegrenzung Mieze/N Migräne Migration/P Mikado Mikrobe/N Mikrobiologie Mikrochip/S Mikrocomputer/N Mikrocontroller/NS Mikroelektronik Mikrofilm/EPT Mikrofilmsysteme Mikrofilmtechnik Mikrofon/EPS Mikroformat Mikroforschung Mikrogramm Mikrometer/NS Mikroorganismen Mikroorganismus Mikrophon/EPS Mikroprozessor/PS Mikroprozessortechnik Mikrorechner Mikroschaltung/P Mikroskop/S Mikrostrukturen Mikroverfilmung Mikrowachs/T Mikrowelle/N Mikrowellenofen Mikrowelten Milan/EPS Milbe/N Milch Milchanlieferung/P Milchdauerwaren Milcheiweiß/EPT Milcherzeugerpreis/EPT Milcherzeugnis/Qq Milcherzeugung Milchflasche/N Milchfrühstück Milchgebiss/EPT Milchgläsern Milchglas/T Milchkaffee Milchkanne/N Milchkühe/N Milchkuh Milchleistung Milchmann Milchpreis/T Milchpreiserhöhung Milchproben Milchproduktion Milchpulver/S Milchreis/T Milchschorf Milchstraße Milchstube Milchüberschuss/Tp Milchversorgung Milchvieh Milchviehbestände Milchzähne/N Milchzahn Milderns Milderung/P Milderungsgründe/N Milderungsgrund/T Mildtätigkeit Milieu/S Milieuschilderung/P Militär/S Militärärzte/FN Militäradministration Militärakademie Militäranlagen Militärarzt/T Militärattaché/S Militärausschuss/Tp Militärbasis Militärbehörde/N Militärberater Militärblöcke Militärbündnis/Qq Militärbudget Militärdienst/T Militärdiktator Militärdiktatur Militäreingang Militäreinheit/P Militäreinsatz Militärexperte/N Militärfilm/EP Militärflugplatz Militärflugzeug/E Militärgericht/T Militärgesetz Militärgespräch Militärgouverneure Militärhaushalt Militärherrschaft Militärhospital Militärjunta Militärjunten Militärkantine Militärkasino Militärkommandant Militärkommandeur Militärkommentator Militärkonvention/P Militärkrankenwagen Militärlager Militärlazarett Militärmacht Militärmarsch Militärmaschine Militärmaterial Militärmission/P Militärmuseum Militärnachschubwagen Militärparade Militärpartei Militärpersonal Militärpolizei Militärpolizisten Militärposten Militärputsch/E Militärrat Militärrecht/S Militärregierung Militärregime/S Militärrevolte Militärschulen Militärseelsorge Militärstratege Militärstützpunkt Militärsymphonie Militärtradition/P Militärtransporte Militärtribunal Militärwachen Militärwesen Militärzeit Militarist/P Military Miliz/P Milizionär/EPS Milizoberst Mill Mill. Millennium/S Milliardär/EFPS Milliarde/N Milliardenaufwand Milliardenbeträge Milliardengrenze Milliardenhöhe Milliardenprogramme Milliardenteile Milliardenverluste Milliardstelsekunde/N Milligramm Millimeter/NS Milliönchen Million/P Millionär/EFPS Millionärsfrau Millionärssohn Millionärsvilla Millionenbetrag/STp Millionendiebe Millionenerbe Millionenexport Millionengrenze Millionenheer/T Millionenhöhe Millionenräuber Millionenraub Millionenschäden Millionenschaden Millionenstadt Millionentreffer Millionenvermögen Millionenwerte Millionenwirbel Millisekunde/N Milz Milzriss/EPT Mime/N Mimik Mimikry Mimose Minarett Minden Mindereinnahme/N Minderheit/P Minderheitenführer/S Minderheiteninteresse/N Minderheitenposition/P Minderheitenproblem/EPS Minderheitenschutz/T Minderheitenvertrag/STp Minderheitsaktionär/EPS Minderheitsbeteiligung Minderheitsgruppe Minderheitsregierung Minderheitssenat Minderheitsvotum Minderleistung Minderns Minderung/P Minderwertigkeit Minderwertigkeitsgefühl/EPST Minderwertigkeitskomplex/EPT Minderzahl/P Mindestabnahmemenge/N Mindestalter Mindestaltersrente Mindestamplitude Mindestanforderung/P Mindestanlage Mindestanzahl Mindestanzahlung Mindestauftragsmenge Mindestausstattung Mindestbeitrag/STp Mindestbelegung Mindestbestellmenge Mindestdauer Mindestdividende Mindestdruck/S Mindesteinkommen Mindesteinsatz Mindestentfernung Mindestforderung/P Mindestfrachten Mindestgehalt Mindestgeldumtausch Mindestgeschwindigkeit Mindesthöhe Mindestjahresverdienst Mindestkapital Mindestkenntnis/q Mindestkosten Mindestlöhne Mindestlohn/T Mindestmaß/ET Mindestpegelstand Mindestpreis/ET Mindestrate Mindestrendite Mindestreserveauflagen Mindestreservegrenze Mindestreserven Mindestreservepflichten Mindestreservesätze Mindestreservesystem Mindeststundenlöhne Mindestumsatz Mindestumtausch Mindestumtauschsatz Mindestwert/S Mine/N Minen Minenaktien Minenexplosion/P Minengefahr Minengesellschaften Minenkurse Minensäuberung Minensperren Minenstück Minensucher/S Minenwerte Mineral Mineralbädern Mineralbrunnen/S Mineralien Mineralöl/EPS Mineralölausfuhren Mineralölbereich Mineralölbesteuerung Mineralölforschung Mineralölgeschäft Mineralölkonzern/E Mineralölmarkt/STp Mineralölsteuern Mineralölunternehmen Mineralprodukt Mineralrechte Mineralwasser/S Mineralwasserindustrie Ming/S Mini/S Miniatur/P Miniaturgolfplatz Miniaturporträt Miniaturpumpe Minibarren Minicar Minicomputer/NS Minicrash Minidrucker Miniformat Minigolf/S Minihosen Minikleider Minikriege Minikrise Minima Minimädchen Minimalbetrieb Minimalhöhe Minimalkonfiguration Minimalkosten Minimalmengen Minimalpreis/EPT Minimalstand Minimalsystem/S Minimierens Minimierung/P Minimum Minimumverfahren Miniprinter/S Minirakete Miniröcke Minislip/S Minister/FNS Ministeramt/T Ministerausschuss/Tp Ministerberichte Ministerbesprechung Ministergremium Ministerialabteilung Ministerialbeamte/NR Ministerialbehörden Ministerialdirektoren Ministerialrat/S Ministerien Ministerium/S Ministerkollege Ministerkollegin Ministerkomitee/S Ministerkonferenzen Ministerliste Ministermannschaft Ministerpension/P Ministerpräsident/P Ministerräte/N Ministerrang Ministerrat/T Ministerratssitzung/P Ministerratstreffen Ministersessel Ministerstellvertreter Ministertreffen Ministervilla Ministerwechsel Ministeuersatz Ministrant/P Minitransaktion/P Minnesänger Minolta Minorität/P Minotauren Minotaurus Minustemperaturen Minuszeichen/S Minute/N Minutenbereich Minutenereignis/Qq Minutenzeiger/NS Mio Mio. Mips Miriam/S Misanthrop/P Mischanlage/N Mischbatterie/N Mischehe/N Mischens Mischer Mischerdüse Mischerflaschen Mischerteil Mischform/P Mischgarne Mischgewebe Mischkost Mischling/EPS Mischpreis/ET Mischpult/EPST Mischtext Mischung/P Mischvorrichtung Misere/N Missachtens Missachtung/P Missbehagens Missbildung/P Missbilligens Missbilligung/P Missbräuche/N Missbrauch/ST Missdeutens Missdeutung/P Misserfolg/EPT Missernte/N Missetäter/N Missetat/P Missfallenskundgebung/P Missgeburt/P Missgeschick/EPST Missgunst Misshandelns Misshandlung/P Missinformation/P Mission/P Missionar/EFPS Missionierens Missionierung/P Missionsarbeit Missionschef/S Missionsländer/N Missionsstadt Mississippi Missklang/STp Misskredit Missmanagement Missmut/S Missstände/N Missstand/T Missstimmung/P Misstände/N Misstöne/N Misston/S Misstrauens Misstrauensvoten Misstrauensvotum/S Missvergnügen/S Missverhältnis/Qq Missverständnis/Qq Misswahl Misswirtschaft/P Mist Mister Mistgabel/N Misthäufen Misthaufen/S Mistigkeit/P Mistkäfer/N Mistral Mistvieh Mitaktionär/EPS Mitarbeit/R Mitarbeiter/FNS Mitarbeiterstab Mitautor/FPS Mitbegründer/FNS Mitbenutzen/JS Mitbenutzungsrecht Mitberatung Mitbesitz/RT Mitbesitzer/NS Mitbestimmens Mitbestimmung/P Mitbestimmungsrecht/EPS Mitbeteiligung Mitbewerber/N Mitbewohner/FNS Mitbringsel Mitbürger/FNS Miteigentümer Miteigentum Mitentscheidung Mitentscheidungsrecht/EPS Mitentscheidungsverfahren/S Mitesser/NS Mitfahrer Mitfavorit Mitfinanzierung Mitführens Mitführung/P Mitgefühl/EPS Mitgesellschafter Mitgestaltens Mitgestalter Mitgestaltung/P Mitgift Mitglied/RST Mitgliederbeitrag/STp Mitgliederkreis/EPT Mitgliederliste/N Mitgliederrat Mitgliederschwund Mitgliederstaat/P Mitgliederumsatz Mitgliederversammlung/P Mitgliederwerbung Mitgliederzahl Mitgliederzeitschrift Mitgliedsbanken Mitgliedsbeitrag/STp Mitgliedschaft/P Mitgliedsfirmen Mitgliedskarte/N Mitgliedskirchen Mitgliedsland/T Mitgliedsnummer Mitgliedsorganisation/P Mitgliedsregierung Mitgliedsstaat/T Mitgliedstaaten Mitgliedsverbände Mitgliedswerke Mitgründer/N Mitgründerin Mitherausgeber/FNS Mithras Mitinhaber Mitkämpfer/NS Mitkonkurrent/P Mitkopplung Mitläufer/NS Mitlaut/EPT Mitleid/ST Mitmensch/P Mitmieter/NS Mitnahme Mitraucher Mitschnitt/S Mitschüler/N Mitschuld Mitspieler/N Mitsprache Mitsprachemöglichkeit/P Mitspracherecht/EPST Mitsubishi Mittäter Mittäterschaft Mittag Mittagessen Mittagshöhe Mittagsläuten Mittagsmenü Mittagsmusik Mittagspause/N Mittagspresse Mittagsschicht Mittagssitzung Mittagssonne Mittagsstunde/N Mittagswärme Mittagszeit Mittagszeitung Mitte Mitteilens Mitteilung/P Mitteilungsblätter/N Mittel Mittelachse/N Mittelalter/S Mittelamerika Mittelanzapfung Mittelasien Mittelbehörden Mittelbereich Mittelbetrieb/EPS Mittelbleche Mittelebene/N Mitteleingang Mittelengland Mitteleuropa Mittelfinger Mittelfranken Mittelgebirge Mittelgewichtklasse Mittelgewichtler Mittelgruppen Mittelholland Mittelitalien Mittelkonsole Mittelkurs/EPT Mittellinie/N Mittelmächte Mittelmäßigkeit Mittelmanagement Mittelmaß Mittelmeer/S Mittelmeerfahrt Mittelmeerhafen Mittelmeerküste Mittelmeerländer Mittelmeerraum Mittelmeersonne Mittelmeertief Mittelns Mittelohrentzündung Mittelpunkt/EPST Mittelraum/STp Mittelreich Mittelrhein Mittelschaltung Mittelschiff Mittelschüler/N Mittelschulwesen/S Mittelsmänner Mittelsmann Mittelspannungsbereich Mittelsperson Mittelstadt Mittelstand/T Mittelstandskreise Mittelstandspolitik Mittelstandsproblem/EPS Mittelsteg/S Mittelstellung Mittelstrecke/N Mittelstreckenraketen Mittelstück Mittelstufe/N Mittelweg Mittelwelle/N Mittelwert/EPS Mittelwertbildung Mittelwesten/S Mittenabgriff Mittenfrequenz Mitterand/S Mitternacht Mitternachtscocktail Mitternachtssonne Mitternachtsstunde Mitterrand/S Mittler/FNS Mittlerfunktion/P Mittlerstellung Mittlung/P Mittsommernacht Mittwoch/EP Mittwochmittag Mittwochnachmittage/N Mittwochsitzung Mittwochsverhandlung Mitunterzeichner/NS Mitursache/N Mitverantwortlichkeit Mitverursacher Mitwelt Mitwirkens Mitwirkung/P Mitwirkungsbefugnis/q Mitwirkungspflicht/P Mitwissens Mix Mixer Mixgeräte Mixtur/P Möbel/NS Möbelausstellung Möbelbranche Möbelfabrikant Möbelfabrikation Möbelgeschäft Möbelhändler/N Möbelhersteller Möbelindustrie Möbelkaufmann Möbelstück/EPT Möbelverkäufer Möbelvertreter Möbiusband/S Möchtegern Möglichkeit/P Mönche/N Mönchengladbach/S Mönchstum Möpse Mörder/FNS Mörser/NS Mörtel/S Mörtelgeruch Möwe/N Mob/S Mobilfunk/S Mobiliar/S Mobilien Mobilisation Mobilität Mobilmachen/JS Mobilmachungsgesetz Mobilwettbewerb Modalität/P Mode/N Modeartikel/NS Modeatelier Modeentwicklung Modefachkreisen Modefarbe Modefreiheit Modefrühling Modegeheimnis/Qq Modegetränke Modegruppe Modehaus/Tp Modeheft Modeindustrie Modejournalistin Modekönige Modelaune Modell/EPS Modellanlieferung Modellansätze Modellball Modellbildung/P Modellcharakter Modellebene/N Modelleisenbahn Modellfall Modellierens Modellierung/P Modellkreisen Modellküche Modellösung Modellpolitik Modellpuppe Modellreihe Modellstädte Modellstrategen Modellstrukturierung Modellstudie/N Modellversuch/EPS Modellvorstellung/P Modem/S Modemesse Modemkabel Modemuffel Modemverbindung/P Moderation Moderator/FP Moderichtung/P Modernisierens Modernisierung/P Modernisierungsgrad Modernität Modesalon Modeschau/P Modeschmuck Modeschöpfer Modesituation/P Modesportart Modestar/S Modetänze Modetrend/S Modeveränderung Modewaren Modewörter/N Modewort Modezeitschriften Modi Modifikation/P Modifizierens Modifizierung/P Modul/EPS Modula Modularisierens Modularisierung/P Modularisierungstechnik/P Modularität Modulation/P Modulgrenze/N Modulkonstellation Modulkonzept/EPS Modulschnittstelle/N Modus Moduswort Mogadischu Mogulreich Mohammed/S Mohammedaner/FNS Mohikaner/NS Mohn/S Mohnanbauverbot Mohr/P Mohrenkopf Moiré Mokka Mokkatassen Mol/EPS Moldau Molekül/EPS Molekülformel Molekülkette Molekularchemie Molekulargewicht Moliere/S Molkereibetrieb Molkereibutter Molkereierzeugnis/Qq Molkereiprodukte Moll Molukken Molybdän Mombasa Moment/EPST Momentaufnahme/N Momo/S Monaco Monarch/P Monarchie/N Monarchist/P Monat/EPST Monatsabonnement/S Monatsanfang Monatsauslese Monatsbeiträge Monatsbericht Monatsdefizit Monatsende Monatsergebnis/Qq Monatsetat Monatsgehälter/N Monatsgehalt/T Monatsgelder/N Monatslohn Monatsmiete/N Monatsproduktion Monatsraten Monatsschrift Monatsumsatz Monatsware Monatszeitschrift Mond/EPT Mondamin Mondandachten Mondboden Mondbote Monddurchmesser Mondfähre Mondfahrer Mondfahrten Mondfahrzeug Mondfinsternis/q Mondflug/STp Mondkreisbahn Mondlandefahrzeug Mondlandegeräten Mondlandung Mondmädchen Mondmensch Mondnest Mondphasen Mondpreis/EPT Mondreise/N Mondschein/PS Mondschiff/T Mondsichel Mondstation/P Mondtag Mondumkreisung/P Mondzinsen Moneten Mongole/FN Mongolei Monika/S Monitor/EPS Monitorauflösung/P Monitorausschnitt Monitorprogramm/EPS Monitorschnittstelle/N Monoblockachse Monoblockausleger Monogamie Monogramm Monographie/N Monokultur/P Monolog/P Monomanie/N Monomorphismen Monomorphismus Monopol/P Monopolabgabe Monopolauftrag/STp Monopolgesellschaft Monopolgesetz Monopolist/P Monopolkapitalismus Monopolorganisation/P Monopolstellung/P Monopolsteuer Monopoly Monostruktur/P Monotonie Monotype/N Monroe/S Monster/N Monsterwesen/S Monsunregen Mont/E Montag/EP Montageanleitung Montageanweisung Montagebänder Montageband Montagegehäuse Montagehallen Montagehaus/Tp Montagehinweise Montagekosten Montagemöglichkeit Montageplatte Montageplatz Montagerahmen Montageschritte Montageschwierigkeit/P Montagestellung/P Montagevorbereitung Montagewand Montagewerk Montagewinkel Montagmittag Montagmorgen Montagnachmittag Montagsrunde Montagssitzung Montagtermin Montangesellschaften Montanholding Montanindustrie Montanmodell Montanstadt Montanunion Montanvertrag/Tp Montanwerte Montanwirtschaft Montenegro Monteur/EFPS Montgomery/S Montpellier Montreal Monument/EPST Monumentalbauten Monumentalgemälde Monumentalmalerei Moor/EPST Moorlandschaften Moos/EPT Moosgummi Mooshaus/Tp Moped/S Mopedmotor/PS Mopp/S Mops Moräne/N Moral Moralbegriff/EPS Moralist/P Moralkodex Moraltheologie Moralvorschriften Morast Morbidität Morbus Morchel Mord/T Mordanschlag/STp Mordens Mordfall/Sp Mordgeständnis/Qq Mordinstinkte Mordio Mordkeller Mordkommission/P Mordkomplott Mordlust Mordplan Mordprozess/EPT Mordschuss/Tp Mordsgaudi Mordsgewitter Mordtaten Mordverdacht Mordvergnügen Mordversuch/E Mordwaffe Mordwerkzeuge Morgana Morgenandacht Morgenausgaben Morgenbad Morgenkaffee/S Morgenland/T Morgenluft Morgenmantel Morgenmusik Morgennachrichten Morgenpresse Morgenröte Morgenrock Morgenstern Morgenstunde/N Morgenverkehr/S Morgenzeitung/P Mormone/N Mormonenkirche Moron/S Morphismen Morphismus Morris Morseapparat Morsebotschaft Mosaik/EPS Mosambik Moschee/N Mosel Mosers Moses Moskau/RS Moskauer/FNS Moskauhörigkeit Moskito/S Moskitonetze Moskowiter Moslem/S Most/T Motel Motherboard/S Motiv/EPS Motivation/P Motivierens Motivierung/P Motocross Motor/PS Motoransteuerung Motorauslastung Motorbelastung Motorblock Motorboot/EPS Motordrehzahl Motorenfabrik Motorenlärm Motorenöl/S Motorflugzeug Motorhaube Motorik Motorkennlinie Motorkolben Motorkraft Motorleistung Motorola Motorrad Motorradfabrik Motorradhändler/FNS Motorradrennfahrer Motorraum/STp Motorroller Motorsägen Motorschäden Motorschaden/S Motorschiff/ST Motorsport/S Motorsportler Motorstart Motorüberwachung Motorwagen Motte/N Mottenkiste/N Motto/S Mountpoint/S Mozart/S Mozzarella/S Mr Mrd Mrd. Mücke/N Mückenschwarm Müdigkeit Mühle/N Mühlenbetrieb Mühlenkanal Mühlheim Mühsal Müll/R Müllabfuhr Müllabfuhrgebühren Müllberg Mülldeponie/N Mülleimer Müller/FNS Müllermeister Müllhalde Müllkasten Müllkippe/N Müllschlucker/NS Mülltonne/N Müllverbrennung München/RS Münchener/FNS Münchhausen/S Münchner/FNS Mündel Mündens Münder/N Mündigkeit Mündung/P Münster Münzer Münzordnung Münzprägung Münzrecht Müßiggang Müsli/S Mütter/MN Müttergenesungswerk Mütze/N Mützendieb Mützenindustrie Muffe/N Muffenleiste/N Mulatte/N Mulde/N Multi/S Multimedia Multimediakonzern Multimilliarden Multimillionär/EFPS Multiplechoicefrage/N Multiplechoiceverfahren/S Multiplikation/P Multiplikationsteil/EPS Multiplikator/PS Multiplikatoreffekt Multitasking Mumie/N Mumifizieren/JS Mumm/S Mund/ET Mundart/P Mundgeruch Mundharmonika Mundpflege Mundstück/S Mundwerk Mundwinkel Munition Munitionsanlage Munitionsdepot Munitionsfabrik Munitionslager/S Munitionsvorrat Murks Murksbehebung/P Muße Muschel/N Muschelkrebs/EPT Muschi/S Muse/P Museum/S Museumsbauten Museumsdirektoren Museumsexemplar Museumsinstitute Museumsstück Musical/S Musik/R Musikanlagen Musikanten Musikautomat Musikberieselung Musikbox Musiker/FNS Musikexperten Musikfestspiele Musikforschern Musikfreunde Musikhalle Musikhochschule/N Musikinstrument/EPST Musikkapellen Musikkorps Musikkritik Musikkultur Musikladen Musikleben Musiklexikon Musikliebhabern Musikliteratur Musikpädagoge Musikpädagogik Musikpavillon Musikprofessor/S Musikschau Musiksendung Musikstück/EPS Musikstudio/S Musiktruhe Musikuntermalung Musikunterricht Musikus Musikverein/S Musikwettbewerb Musikwissenschaftler Musikzeitschrift Muskatnuss/p Muskel/NS Muskelanriss/EPT Muskelbewegung Muskelfaser Muskelkräfte/N Muskelkraft Muskelmänner Muskelmann Muskelriss/EPT Muskelspiel Musketier/EPS Muskulatur Muslim/EPS Musselin/S Musselinkleid Mustang/S Muster/JS Musterabkommen/S Musterbau/S Musterbaum/STp Musterbeispiel/EPT Musterbestellung Musterbetrieb/EPT Musterbild Musterdepot/S Musterehe Musterexemplar/EPS Musterfall/Sp Musterformular Mustergatte/N Mustergeräte/N Mustergüter/N Musterkombination Musterlieferung Mustermesse Musterprozess/EPT Musterschilder Musterschüler/NS Mustersendung/P Mustersensor/P Musterstück/EPS Mustertext/EPST Musterungsarzt/T Musterwohnung/P Mut/ST Mutant/P Mutation/P Mutlosigkeit Mutmaßens Mutmaßung/P Muts Mutter/NS Mutterboden Mutterglück Mutterhaus Mutterkorn Mutterländer Mutterland/T Mutterliebe Muttermal/EPS Mutterrechner Mutterrecht Mutterschaft Mutterschiff/T Mutterschutz Muttersprache/N Mutterstadt Muttertyp Mutti Mux MwSt MwSt. Myriade/N Myrre/N Myrrhe/N Mysterien Mysterienkult Mysterienspiel Mysterium Mystifikation Mystik/R Mystiker/FNS Mystizismus Mythen Mythologie Mythos NASA NDP NEC NFS NL NRW NS NSU NTT Nächstenliebe Nächte/N Nägel/N Näharbeiten Näherns Näherung/P Näherungsfühler/S Näherungsschalter/NS Näherungssensoren Näherungswert/EPST Nähkenntnis/q Nähmaschine/N Nähmittel Nährbier Nährboden/S Nährkräfte/N Nährmittel/NS Nährmittelfabrik/P Nährstoff/P Nährstoffansprüche Nährwert/EPT Nässe Nabel/N Nabelschnur Nachahmens Nachahmer Nachahmung/P Nachahmungsfähigkeit Nacharbeit/J Nacharbeitens Nachbar/FNS Nachbarast Nachbarausbau Nachbarbedienung Nachbarbetrieb Nachbardatei Nachbardaten Nachbardörfer Nachbardorf Nachbarfunktion/P Nachbargemeinde Nachbargerät/E Nachbargestelle Nachbargruppe/N Nachbarkabel Nachbarkinder/N Nachbarkommunikation Nachbarkreis/EPT Nachbarländer Nachbarland/T Nachbarort Nachbarschaft/P Nachbarschilde Nachbarschnittstelle/N Nachbarskinder/N Nachbarstaat Nachbarstadt Nachbarsteuergerät Nachbarsteuerung/P Nachbartisch Nachbarverbindung Nachbarverkabelung Nachbarzimmer Nachbau/S Nachbearbeiten/JS Nachbeben Nachbedingung/P Nachbehandeln/JS Nachberechnen/JS Nachbereitens Nachbereitung/P Nachbesserns Nachbesserung/P Nachbestellens Nachbestellung/P Nachbesteuerung Nachbestückung Nachbezahlung Nachbildens Nachbildung/P Nachdenkens Nachdenklichkeit Nachdruck/S Nacheichung Nacheiferns Nacheiferung/P Nacherzählens Nacherzählung/P Nachfahre/N Nachfolgefirma Nachfolgegesellschaft Nachfolgekandidat/P Nachfolgeländer Nachfolgemodell/EPS Nachfolgeorganisation/P Nachfolgeprojekt/EPS Nachfolger/FNS Nachfolgerakete Nachfolgerfrage Nachfolgerschaft/P Nachfolgestaaten Nachfolgeunternehmen Nachfolgewert/EPST Nachfolgezustand/ST Nachforderns Nachforderung/P Nachforschens Nachforschung/P Nachführregelung Nachgang Nachgeburt Nachgeschmack Nachgetrimmt Nachgiebigkeit Nachhilfe Nachhilfekurs/EPT Nachhilfestunden Nachhilfeunterricht Nachhinein Nachholbedarf/S Nachholtests Nachhut Nachkauf/Sp Nachklang/Sp Nachkömmlinge/N Nachkommastelle/N Nachkommens Nachkommenschaft Nachkriegs Nachkriegsbühne Nachkriegsdeutschland Nachkriegseinwanderer Nachkriegserfolge Nachkriegseuropa Nachkriegsfilm Nachkriegsjahr/EPS Nachkriegskabinett Nachkriegskredit Nachkriegslast Nachkriegsleben Nachkriegspolitik Nachkriegsrekord Nachkriegsschlager Nachkriegstheater Nachkriegsverfassung Nachkriegswitz Nachkriegszeit/P Nachlässigkeit Nachladens Nachladeprogramm/EPS Nachladung/P Nachlass/Tp Nachlauf/Sp Nachlaufregelung/P Nachlaufsteuerung Nachleben Nachleuchten Nachlieferns Nachlieferung/P Nachmieter/NS Nachmittag/EP Nachmittagskleid Nachmittagskonzert Nachmittagsschicht Nachmittagssitzung Nachmittagsspaziergang Nachmittagsstunde Nachmittagsverhandlung Nachmittagsvorstellung/P Nachmittagszeit Nachnahme Nachname/N Nachnamen/S Nachprüfens Nachprüfung/P Nachraubversuche Nachraubzeit Nachreichen/JS Nachricht/P Nachrichtenagentur/P Nachrichtenbeschaffung Nachrichtenblatt Nachrichtenbüro Nachrichtendienst/EPST Nachrichtenempfänger Nachrichtenmagazin/EPS Nachrichtenoffiziere Nachrichtenorgane Nachrichtenrakete Nachrichtenredaktion/P Nachrichtensatellit Nachrichtensendung/P Nachrichtensperre Nachrichtensprecher Nachrichtentechnik Nachrichtenverarbeitung Nachrichtenwesen/S Nachrüstens Nachrüstung/P Nachrucken Nachruhm/S Nachsaison Nachsaisonpreise Nachschaffenden Nachschau Nachschlag/Sp Nachschlagebuch Nachschlagewerk/EPS Nachschlüssel/N Nachschübe/N Nachschub/ST Nachschubfahrzeuge Nachschubhäfen Nachschubhafen Nachschublinie Nachschubweg/E Nachschuss/Tp Nachschwinger Nachsetzautomatik Nachsetzbewegung Nachsetzen/S Nachsicht Nachsilbe/N Nachspeise Nachsteuer/N Nacht Nachtangriff Nachtarbeit/P Nachtasyl Nachtbar/S Nachtbummler Nachtbus Nachtclub/S Nachtdepesche Nachtdienst Nachteil/EPS Nachtexpress/EPT Nachtfahrt/P Nachtfliegerangriff Nachtflug/STp Nachtfrost/T Nachtgespenster Nachthemd/P Nachtisch Nachtklub Nachtklubbesitzer Nachtkonzert Nachtleben Nachtlokal/P Nachtluft Nachtmahl Nachtmusik Nachtportier Nachtränkung Nachtrag/STp Nachtragsetat Nachtragsliste Nachtruhe Nachtschattengewächs/E Nachtschichtarbeit Nachtschichten Nachtschlaf Nachtschwärmer Nachtschwester Nachtsitzung Nachtstudio Nachtstunde/N Nachttisch Nachtvorstellung/P Nachtwache Nachtwandler Nachtwind Nachtzeit Nachtzug/STp Nachtzuschlag/STp Nachuntersuchung Nachverbrennung Nachwahlen Nachwahlsieg Nachwehe/N Nachweis/T Nachwelt Nachwirkens Nachwirkung/P Nachwort/PST Nachwuchs/T Nachwuchsausbildung Nachwuchsauslese Nachwuchself Nachwuchsfrage Nachwuchskraft Nachwuchsläufer Nachwuchsleute Nachwuchsmannschaft Nachwuchspferd Nachwuchsprobleme Nachwuchsreisende Nachwuchsschule Nachwuchsschwimmer/FNS Nachwuchsstar Nachwuchsverkäufer Nachzahlung Nachziehzeit Nachzöglingen Nachzügler/NS Nachzucht Nackedei Nacken/S Nackengegend Nackenhaare Nacktamöbe Nacktarsch Nacktheit Nadel/N Nadelanschlag/STp Nadelanschlaggeräusche Nadelanschlagkontrolle Nadelanschlagsfrequenz Nadelansteuerung Nadelbestreifte Nadeldöschen Nadeldrucker/NS Nadeldruckköpfe Nadeldruckwerk Nadelgemälde Nadelholz Nadelkissen Nadelöhr/S Nadelschaden Nadelschläge Nadelschnittholz Nadelschutz Nadelspulen Nadelstich Nadine/S Nagasaki Nagel/S Nagelbrett Nagellack Nager/NS Nahaufnahme/N Nahbereich Naherholungsgebiet/T Nahfeld Nahkampf Nahost Nahostdoktrin Nahostfrage Nahostgebietes Nahostkrieg Nahostmission Nahostpolitik Nahrung/P Nahrungsaufnahme Nahrungsbedarf Nahrungsfabrik Nahrungskette Nahrungsmangel Nahrungsmittel/NS Nahrungsmittelkapazität Nahrungsmittelknappheit Nahrungsmittelkonserve Nahrungsmittelpreise Nahrungsmittelprüfer Nahrungsmittelüberfluss/Tp Nahrungsreserven Nahrungsvorräte Nahsteuerung Nahverkehr/S Nahziele/N Nairobi Naivität Naivling/EPS Name/N Namensänderung Namensaktien Namensbezeichnung/P Namensbreite Namensgebung Namensgleichheit Namenskonflikt/EPT Namenskonvention/P Namenslegende Namensnachfolger Namensnennung Namensobligation/P Namensraum/STp Namensschild/RST Namenstag Namensträger Namensverleihung Namensvetter/N Namenswechsel Nameserver/NS Namibia Namur Namurfrequenz Namurgeber Namurimpulse Namurschalter/N Nanometer/N Nanosekunde/N Napalmraketen Napf/ST Naphthalin Naphthalinkügelchen Napoleon/S Narbe/N Narbengesicht Narkose/N Narkoseschwester Narkotika Narkotikum Narr Narrenhaus/Tp Narretei/P Narrheit Narziss/EP Narzissenfelder Narzissmus Nase/N Nasenbein Nasenbluten Nasenflügel Nasenlänge/N Nasenspitze/N Nashörner Nashorn/S Nassau Nassrasur/P Nassschnee Nasszelle/N Nation/P Nationalarmee Nationalaufstand Nationalballetts Nationalbank Nationalbewusstsein Nationalbibliothek Nationalchina Nationalchinesen Nationaleinkommen Nationalfeiertag Nationalfeind Nationalflagge Nationalfriedhof Nationalgalerie Nationalgarde Nationalgefühl Nationalgesetz Nationalheld/P Nationalhymne/N Nationalinstitut Nationalisierens Nationalisierung/P Nationalismus Nationalist/P Nationalität/P Nationalitätenprinzip Nationalkasse Nationalkomitee Nationalkommunist Nationalkongress/EPT Nationalkonvent Nationalliga Nationalmannschaft/P Nationalökonomen Nationaloper Nationalpark/S Nationalrat/ST Nationalriegen Nationalsozialismus Nationalsozialist/P Nationalspiel/R Nationalspieler/FNS Nationalsport Nationalstaat/PST Nationalstaffel Nationalstolz Nationalsynode Nationalteam/S Nationaltheaters Nationaltorwart Nationaltracht Nationaltrainer Nationaltruppen Nationalverbände Nationalverband Nationalversammlung/P Nationalwerkstätten Nationalzeitung Nationenpreis Nato Natomitglieder Natrium/S Natron/S Natronlauge Natürlichkeit Natur Naturalabgaben Naturaleinkommen Naturalien Naturalismus Naturalwirtschaft Naturanschauung Naturaufnahmen Naturbedingung/P Naturbeobachter Naturbrunnen Naturelemente Naturell Naturereignis/Qq Naturerlebnis/Qq Naturerscheinung Naturfilm Naturforschung Naturfreund/E Naturgaben Naturgeschichte Naturgeschmack Naturgesetz/EPT Naturgewalt/P Naturgröße/N Naturheilverfahren Naturkatastrophe/N Naturkulisse Naturkunde Naturlehrpfad Naturlyriker Naturmenschen Naturmoor Naturpark Naturprozess/EPT Naturrecht Naturschäden Naturschilderung/P Naturschönheit/P Naturschutz Naturschutzatlas Naturschutzexperte Naturschutzgebiete Naturschutzpark/S Naturschutzstelle Naturstrand Naturtalent Naturvölker Naturwälder Naturwissenschaft/P Naturwundern Navigation Navigationskurs/EPT Nazi/S Nazidiktator Naziführer Nazigegner Naziregime/S Naziverbrechen Naziverbrecher Naziverleger Neandertal/R Neapel Nebel/S Nebelausrüstung Nebeldunst Nebelfelder Nebelhorn Nebellampen Nebelneigung Nebelschlussleuchte/N Nebelschwaden Nebelstrichen Nebelwand Nebenabsicht/P Nebenanschluss/Tp Nebenausgang Nebenbahn/P Nebenbedeutung/P Nebenbedingung/P Nebenbemerkung/P Nebenbeschäftigung/P Nebenbetrieb/EPST Nebenbuhler/FNS Nebeneffekt/EPST Nebeneingang/Sp Nebeneinnahme/N Nebenerfolg Nebenerscheinung Nebenerwerb Nebenerzeugnis/Qq Nebenfächer Nebenfach/T Nebenfahrbahn Nebenfenster Nebenfluss/Tp Nebenfolge/N Nebenfunktionen Nebengebäude/N Nebengebühren Nebengedanke/N Nebengeleise/NS Nebengeräusch/EPST Nebengeschmack Nebengestein Nebenhaus/Tp Nebenkläger Nebenkosten Nebenläufigkeit Nebenmann Nebenorganisation Nebenplatz Nebenprodukt/EPST Nebenregierung/P Nebenrolle/N Nebensächlichkeit/P Nebensätze/N Nebensache/N Nebensatz/T Nebenstelle/N Nebenstraße/N Nebenstrecken Nebentisch/P Nebenwerte Nebenwirkung/P Nebenzimmer/N Nebraska Nebukadnezar/S Neckar Neckermann Neckermannurlauber Neffe/N Negation/P Negativfaktor/P Negativgestalt/P Negativklausel Negativsignale Negativwerten Neger/FNS Negerkinder/N Negerkirche Negerlein Negersängerin Negerstämme/N Negev Negligee/S Negligé/S Negro Nehmer Nehru/S Neid/T Neider Neigens Neigung/P Neigungsänderung/P Neigungsinformation/P Neigungsmesser Neigungsmessgerät Neigungsmessung Neigungssensor/P Neigungswert/EPS Neigungswinkel/N Neinsager Neinstimme/N Neiße Nektar Nektarine/N Nelke/N Nennbetrag/STp Nenndurchfluss/Tp Nennens Nenner/S Nenngröße/N Nennkapazität Nennkapital/S Nennleistung Nennspannung Nennstrom Nennung/P Nennungsliste/N Nennvorwiderstand Nennwert/ST Neodarwinismus Neomarxismus Neon/S Neonazi/S Neonazismus Neonlicht/R Nepal Nepp/S Neptun/S Nero/S Nerv/S Nervenarzt/T Nervenbelastung Nervenkitzel Nervenklinik Nervenkraft Nervenkrankheit/P Nervenkrieg/ST Nervenprobe/N Nervensäge/N Nervensägerei Nervenschäden Nervenschmerzen Nervenschock Nervenstärke Nervenstrang Nervensubstanz Nervensystem/EPS Nervenzelle Nervenzusammenbruch Nervosität Nerz/EPT Nerzstola Ness Nessel/N Nest/RST Nestlé Netiquette Netscape/S Nettigkeit/P Nettoaufkommen Nettobelastung Nettobetrag/STp Nettoeinkommen Nettoerlös/P Nettoertrag/STp Nettoerzeugung Nettoexport/S Nettofrachteinnahme Nettogewicht/EPT Nettogewinn/T Nettogewinnspanne Nettoimport Nettolöhne/N Nettolohn Nettomiete/N Nettomieteinnahmen Nettomietertrag/STp Nettoprämie Nettopreis/EPT Nettorendite Nettoschuldsaldo Nettoumsätze Nettovermögen Nettowert Nettozins/PT Netz/EPT Netzadapter/NS Netzadresse/N Netzanbindung/P Netzanschluss/Tp Netzausfallsimulation Netzausfalltest/S Netzdienst/EPT Netzeingang Netzfilter Netzfrequenz Netzfrequenzadapter Netzgerät/EPS Netzhaut Netzkabel/NS Netzkante Netzkarte Netzkommunikation Netzkonfiguration/P Netzmodul/E Netzpolung Netzschalter Netzsoftware Netzspannung Netzstecker/NS Netzstruktur Netztechnik Netzteil/EPST Netzteilbereich Netzteilgruppe Netzteilnehmer/N Netzteilsicherung Netzteilstecker/S Netzteiltypen Netzteilwürfel Netztopologie/N Netztrafo Netzüberlast Netzversorgungskabel/N Netzwerk/EPST Netzwerkadapter/NS Netzwerkadapterfunktion/P Netzwerkadresse/N Netzwerkanschluss/Tp Netzwerkbetrieb Netzwerkbuffer/S Netzwerkdaten Netzwerkinterface/S Netzwerkkanal/S Netzwerkkapazität/P Netzwerkkommando/S Netzwerkkommunikation Netzwerkleitung/P Netzwerkmenü Netzwerknummer/N Netzwerkrechner/NS Netzwerkschnittstelle/N Netzwerksoftware Netzwerkteilnehmer/NS Netzwerktopologie/N Netzwerkverbindung/P Netzzuführung Neuabonnenten Neuabsatz Neuabschluss/Tp Neuanfang Neuanfertigung/P Neuankömmling/EPS Neuankündigung Neuanmeldung Neuansätze/N Neuansatz/T Neuanschaffung/P Neuansiedlung/P Neuaufbau/ST Neuauflage/N Neuaufteilung/P Neuauftrag/STp Neuausgabe/N Neuausrichtung Neuausrüstung Neuausstattung Neuauszahlung/P Neubau Neubauaufträge Neubaugebiet Neubauhaus/Tp Neubauläden Neubaupläne Neubauproduktion Neubauprojekt Neubausiedlung Neubaustelle Neubaustrecken Neubauten Neubauwesen/S Neubauwohnung Neubeginn Neubepflanzung Neuberechnen/JS Neubesetzung/P Neubestätigung Neubestellung Neubewertung Neudefinition/P Neudruck/EPS Neueinkleiden Neueinlegen Neueinrichten/JS Neueinsatz Neueinschulung/P Neueinstellung Neueinstieg Neueinteilung/P Neueintrag/Jp Neuenburg Neuengagement Neuenglandkolonien Neuentstehung Neuentwickeln/JS Neueröffnung Neuerscheinen/JS Neuerung/P Neuerungspläne/N Neuerwerbung Neufestsetzung Neuformulierung/P Neufundland Neugestalten/JS Neugier Neugierde Neugranada Neugründen/JS Neuguinea Neuheit/P Neuigkeit/P Neuinstallation Neuinszenierung/P Neujahr/S Neujahrsaufruf Neujahrsausgabe Neujahrsbotschaften Neujahrsempfang/Sp Neujahrsfest Neujahrsglückwünsche Neujahrsgruß/Tp Neujahrskonzert/EPST Neujahrskuss/Tp Neujahrsprognosen Neujahrsrede Neujahrsspringen Neujahrstag/T Neujahrstelegramm Neujahrswünsche Neujahrumfrage Neukarthago Neukauf/STp Neuklassizismus Neukonstruktion Neukonzipierung Neukredite Neukunden Neuland Neulandgebiet Neulandgewinnung Neulieferung/P Neuling/EPS Neumond/EPST Neunerwette Neunkampf Neuntklässler/FNS Neuordnen/JS Neuorganisation Neuorientierung/P Neuplanung Neupositionierung Neuprogrammierung Neuregelung/P Neureiche/NR Neurodermitis Neurologe/N Neurologie Neurose/N Neuschaffung Neuschnee Neuschöpfung/P Neuschuldner Neuseeland Neusprachler Neuss Neustart Neustrukturierung Neutralisation Neutralist/P Neutralitätsangebot Neutralitätsbund Neutralitätserklärung Neutralitätsrecht Neutralitätswunsch Neutrino/S Neutron/PS Neutronensonde Neuverlegung Neuverpflichtung/P Neuverschuldung/P Neuverteilen/JS Neuwagenhandel Neuwahlen Neuwerbung Neuwerk Neuzeit Neuzugang/Sp Neuzulassung/P Neuzuweisung Nevada New/S Newsgroup/S Newsgruppe/N Newsserver/NS Newton/S NiCd Niagarafälle/N Nibbleoperation/P Nibelungen Nibelungenlied Nicaragua Nichtakademiker Nichtanerkennung Nichtangriffspakt Nichtanhörung Nichtanzeige Nichtausstieg Nichtbeachten/JS Nichtbeamten Nichtbefolgen/JS Nichtbelieferung Nichtbezahlung Nichtbiertrinker Nichtdeterminismus Nichte/N Nichteinhalten/JS Nichteinstieg Nichteintreffen Nichteintreten Nichtentdeckung Nichtentscheidung Nichterfüllen/JS Nichterklärung/P Nichterscheinen/JS Nichtgebrauch Nichtigkeit/P Nichtkommunist Nichtlinearitäten Nichtmitgliedsland Nichtmitgliedsstaaten Nichtprivaten Nichtraucher/N Nichtraucherraum/STp Nichtraucherschutz Nichtschrumpfen Nichtsnutz Nichtsportler Nichtstun Nichtwissen/S Nickbewegung/P Nickel Nicole/S Niederbayern Niederdruck Niederdruckanlagen Niedergang/Sp Niedergeschlagenheit Niederkunft Niederländer/FNS Niederlage/N Niederlande/N Niederlassens Niederlassung/P Niederlassungsbüro Niederlassungsrecht/S Niederösterreich Niedersachsen Niederschlag/Sp Niederschlagsneigung Niederschlesien Niederschrift Niederträchtigkeit/P Niederung/P Niederwerfen/JS Niederwildjagd Niederwildrevier Niedrigkeit Niedrigpreispolitik Niedrigstand Niedrigstkurs/EPT Niedrigstpreisen Niedrigzinsen Niere/N Nierenoperation/P Nierensteinen Nierenverpflanzung/P Nieselregen Niethose Niethosenträger Niethülsen Nietöse/N Nietzsche/S Niger Nigeria/S Nigerianer/FNS Nihilist/P Nikaragua Nikolaus Nikon Nikotin/S Nil/S Nildelta Niltal/S Nimbus Nimmerwiedersehen Nina/S Ninive/S Nippel/S Nippon/S Nische/N Nissan Nitrat/EPS Nitroglyzerin Niveau/S Niveauregulierung Niveauverlust Nivelliereinrichtung Nivellierens Nivellierung/P Nixdorf Nixe/N Nizza Nöte/N Nötigens Nötigung/P Noah/S Nobelkarossen Nobelkneipen Nobelpreis/EPT Nobelpreisträger/N Noblesse Nocken Nockenrad/S Nockenscheibe Nockenwelle/N Nofretete/S Nomade/N Nomadenstämmen Nomen/GS Nomenklatur/P Nomina Nominalbetrag/STp Nominalhöhe Nominalkapital Nominallöhne Nominalwert/EPST Nominalzinsen Nominalzinssätze Nominierens Nominierung/P Nonkonformismus Nonne/N Nonplusultra Nonstopflug/STp Nonstopflugzeuge Norbert/S Nordabschnitt Nordafrika/S Nordamerika/S Nordatlantik Nordatlantikpakt/T Nordaustralien Nordbahnhof Nordbayern Nordcarolina Nordchina Norddeutschland Norden/SW Nordengland Nordeuropa Nordfrankreich Nordfriedhof Nordfriesland Nordirland/S Norditalien Nordkorea/S Nordküste Nordkurve Nordländer Nordlicht Nordlichter Nordmeer Nordosten/S Nordpol Nordpolforscher Nordpolroute Nordraum/ST Nordrhein Nordschacht Nordschleife Nordschleswig Nordschleuse Nordsee Nordseeabkommen Nordseebad Nordseefischerei Nordseegebiet Nordseehäfen Nordseeheilbäder Nordseeheilbad/T Nordseeinseln Nordseekanal/S Nordseestrand Nordseite/N Nordstern Nordufer Nordvietnam Nordwand Nordwesten/S Nordwesteuropa Nordzone Norm/P Normalausführung Normalausgaben Normalbenzin Normalbetrieb Normalbürger Normaleinstellung Normalfahrer/S Normalfall/ESp Normalfolge Normalform/P Normalgarantie Normalisierung Normalisierungsvertrag/STp Normalität Normalpapier Normalpreis/EPT Normalsatz Normalschrift Normalsignal Normalsterbliche/NR Normaltarif/EPS Normalverbraucher/N Normalversion/P Normalzeit Normalzins/T Normalzustand/ST Normandie Normanne/N Normannenherrschaft Normannenreich Normenausschuss/Tp Normenbau Normierens Normierung/P Normmodulen Normschrift Normstecker Normteil/EPS Normungsentscheidung/P Norwegen Nostalgie Nostalgiewelle Not/EP Nota Notärztin Notar/EFPS Notarkosten Notarvertrag/STp Notation/P Notaufnahme Notaufnahmelager Notaus Notausfunktion/P Notausgang/Sp Notauskabel Notausknopf/T Notauskontakte Notausleitung/P Notausschalter/S Notausstieg Notaussystem Notausterminator Notbehelf/EPS Notbett Notbremse Notdach Notdurft Notebook/S Noteingang/S Notenbank/P Notenentwürfe Notenlesen Notenschrift Notenskala Notenumtausch/T Notfall/p Notfallausweis/E Notfallpläne Nothalt Nothelfer Nothilfe Notierens Notierung/P Notiz/P Notizbücher Notizbuch/T Notlage/NR Notlager/NS Notlandens Notlandung/P Notlösung/P Notlüge/N Notmaßnahme/N Notplanung/P Notprogramm Notruf/EPS Notrufnetz Notsendern Notsignal/EPS Notsitzen Notstände/N Notstand/S Notstandsgesetz/E Notstandshilfe Notstandsjahr Notstandsklausel Notstandsprogramm Notunterkünfte/N Notverband Notverbandsplatz Notverkauf/Sp Notverordnung Notverordnungsdiktatur Notverpflegung Notwehr Notwendigkeit/P Notzeit/P Notzucht Nougat Nougatcreme Nov Nov. Nova Novelle/N Novellist/P November Novemberheft Novemberrevolution Novembersonntag Novemberwoche Novität/P Novum Nr Nr. Nüchternheit Nürnberg/R Nüsse/GMN Nützlichkeit/P Nuance/N Nudel/N Nudelholz Nugat Nuklearindustrie Nuklearpolitik Nuklearraketen Nuklearsprengkopf Nukleartechnik Nuklearwaffen Null/P Nulldurchgang/Sp Nullleiter/S Nulllösung Nullpunkt/ST Nullpunktdrift Nullpunkteinstellung Nullpunktverschiebung Nullserie/N Nullspannung Nullstelle/N Nullstellenbestimmung Nullstellung Nullsteuerzahler Nullsummenspiel/EPS Nullwachstum Nullwelt Nullwert Numerik Numerus Nummer Nummerierens Nummerierung/P Nummerncode Nummerndiebstahl Nummernfolge/N Nummernkonten Nummernschild/RT Nuss/G Nussknacker/NS Nussschale/N Nussschokolade/N Nusstorte/N Nut/EP Nutabstand Nutrichtung Nutzanwendung Nutzbarkeit Nutzbarmachung Nutzbereich/S Nutzenanalyse/N Nutzenfunktion/P Nutzens Nutzer/FNS Nutzfahrzeug/EPS Nutzflächen Nutzholz Nutzlänge/N Nutzlast/P Nutzlosigkeit Nutzmachung Nutznießen/JS Nutznießer Nutzpflanzen Nutzung/P Nutzungsart Nutzungsentgelt/ES Nutzungsrecht/EPT Nutzungswert/EPT Nutzwert/ST Nylon/S Nylonfäden Nylonfaser Nylonstrümpfe Nylonstrumpfhosen Nymphe/N ÖTV Öfen Öffentlichkeit Öffentlichkeitsarbeit Öffnens Öffner Öffnung/P Öffnungsklappe/N Öffnungssignal Öffnungswinkel Öffnungszeit/P Ökologie Ökonom/P Ökonomie Ökosystem/EPS Ökumene Öl/JS Ölabkommen Ölaktien Ölangebot Ölbild Ölbohrung Ölboykott Öldruck Öldruckbremse Öleinfuhr Öleinnahmen Ölembargo/S Ölexperte/N Ölexport/EPS Ölfarbe/N Ölfeld/RST Ölfirma Ölfirmen Ölförderer Ölförderländer Ölfördernation/P Ölfund/E Ölgelder Ölgeschäft/S Ölgesellschaften Ölhahn Ölhaus Ölhausse Ölheizung/P Ölhydraulik Ölimporte Ölindustrie Ölkanne/N Ölkatastrophe Ölkonferenz Ölkonzern/PS Ölkonzession/P Ölkrieg Ölkrise/N Ölkühler Ölleitung/P Öllieferanten Ölmächte Ölmalerei Ölmarkt Ölmessstab/S Ölmilliarden Ölmonopolisten Ölnation/P Ölpolitik Ölportrait Ölpreis/EPT Ölpreiserhöhung/P Ölpreisverfalls Ölpression/P Ölproduzenten Ölquelle/N Ölraffinerien Ölrechnung/P Ölreichtümer Ölreservoir/S Ölsäule Ölscheich/S Ölschiefervorkommen Ölschmierung Ölsorten Ölstaat/T Ölstand Ölstreit Ölsubstanzen Ölsuche Ölszene Öltank/S Öltanker Öltemperatur Ölüberschussländer Ölverbrauch/S Ölverbraucher Ölverschmutzung Ölversorgungssystems Ölvorkommen Ölvorräte Ölwarrant Ölwerte Ölzentralheizung Ölzeug Örtlichkeit/P Öse/N Österreich/RS Österreicher/FNS Östrogen/EPS OCR OECD OEM OPEC OPTi ORF OS Oase/N Oasenländer Obdach/S Obdachlosenheim Obdachlosigkeit Obduktion/P Obelisk/P Oberägypten Oberärzte/FN Oberammergau Oberarm/EPST Oberarzt/T Oberaufsicht/P Oberbau Oberbayern/S Oberbefehl/S Oberbegriff Oberbekleidung Oberbonze Oberdeck/S Oberdirektor Oberfahnder Oberfläche/N Oberflächenschutz Oberflächenspannung Oberflächenwiderstände Oberflächlichkeit/P Obergefreiten Obergericht Obergeschoss/EPT Obergrenze/N Obergruppe/N Oberhäupter Oberhaupt/T Oberhaus/PTp Oberhausmitglied Oberhirten Oberhofmeisterin Oberhoheit Oberingenieur/S Oberinspektor/S Oberkante/N Oberkellner/N Oberkirchenrat Oberkörper/NS Oberkommandierende Oberkommando Oberland Oberlandesgericht/T Oberlehrer Oberleitung Oberleutnant/S Oberliganeuling Oberligatrainer Oberligazugehörigkeit Oberlippe/N Obermedizinalrat Obermeister Obermenge/N Oberösterreich Oberpostdirektion/P Oberpostrat Oberpräsident Oberrat Oberrealschule Oberrechnungskammer Oberregisseur/S Oberrhein Oberrheintal Oberrichter Obers Oberschenkel Oberschenkelmuskulatur Oberschenkelzerrung Oberschicht Oberschiedsrichter Oberschlesien Oberschlitzohr Oberschnabel Oberschüler/FNS Oberschule/N Oberschullehrer/NS Oberschwaben Oberschwester Oberschwingung/P Oberseite/N Obersekundaner Oberspielleiter Oberstaatsanwälte Oberstaatsanwalt/T Oberstabsarzt/T Oberstleutnant Oberstoff/E Oberstübchen Oberstudienrat Oberstufe Oberstufengestaltung Oberteil/EPS Oberturnwarte Oberverwaltungsgericht/T Oberwachtmeister Oberwasser Oberwellen Oberzug Obhut Objekt/EPST Objektbaum/STp Objektbaumkonzept Objektfinanzierung Objektgeschäfte Objektivgebilde Objektivismus Objektivität Objektivträger Objektklasse/N Objektprogrammierung Objektträger/N Objektübernahme Oblate/N Obliegenheit/P Obligation/P Obligationsanleihe Obmann/S Oboe/N Obrigkeit/P Obrist/P Observanz Observatorium Obst/T Obstanlage Obstbaum/STp Obstbranntweine Obstbrennereien Obsternte Obstgärten Obstgarten Obsthändler/FNS Obstkompott Obstruktion Obstruktionskurs/EPT Obstsäfte Obstversandfirma Obstzucht Obszönität Ochs/EP Ochsenfleisch Ochsenhäute Ode/N Odem/S Odenwald Odessa Odium Odyssee Ofen/S Ofenheizung/P Ofentemperatur Offenbach Offenbarens Offenbarung/P Offenbarungseid Offenheit Offenherzigkeit Offenlegen/JS Offenlegungsschrift/P Offensivangriff Offensivoperation/P Offensivspieler Offerte/N Offertenbriefe Offertenprüfung Offizier/EFPS Offiziersanwärter Offiziersball/Sp Offiziersehre Offizierskasino Offizierskorps Offiziersputsch Offiziersrevolte Offiziersschüler/N Offset/S Offsetdruck Offsetspannung Offsetwert/S Oheim/S Ohio Ohm Ohnmacht Ohr/EPST Ohrclip/S Ohrenärzten Ohrenarzt/T Ohrenschmerzen Ohrenstäbchen Ohrenzeugen Ohrläppchen/S Ohrring/EPS Ohrwurm/S Okkultismus Okkupant/P Okkupation/P Okt Okt. Oktaeder Oktant/PW Oktav/P Oktober/S Oktoberausgabe Oktoberdokument Oktoberfest Oktoberheft Oktoberkrieg Oktoberrevolution Okular Okzident/S Olaf/S Oldenburg Oldtimer/S Oleg/S Olga/S Oligarchie Olive/NR Oliver/S Olivetti Olymp Olympia Olympiaabzeichen Olympiade Olympiadisziplin Olympiafieber Olympiaflagge Olympiafünfte Olympiagelände Olympiageschäft Olympiakader Olympialos Olympiamedaille Olympianorm Olympiapass/Tp Olympiapferd Olympiapisten Olympiaschanze Olympiasieg/ER Olympiasieger/FNS Olympiastadion/S Olympiastadt Olympiateam Olympiateilnehmer/S Olympiatermine Olympiawinter Olympiazentren Olympiazentrum Oma/S Ombudsmann/ST Omen Omnibus/Qq Omnibusbetrieb Omnibuschassis Omnibusgewerbe Omnibushaltestelle Omnibusinsassen Omnibusnetz Omnibusreisedienst Omnibusschaffner Omnibusunglück Omnibusverkehr Omnilaser Omnipotenzfunktionen Onanie Onkel/NS Ontologie Opa/S Opel OpenOffice Oper/N Operand/P Operateur/EFPS Operation/P Operationsbasis Operationsfeld Operationsgebiet Operationspläne/N Operationsschwester Operationssystem/EPS Operationsteam Operationsziel Operator/FPS Operette/N Operettenbühne Operettenbuffo/S Operettendiva Operettenkomponist Operettenmelodien Operettenmusik Operettenrolle Operettenzauber Opernabend Opernaufführung/P Opernausstattung Opernbühne/N Opernburleske Opernchef Opernchorschule Operndirektion Operndirektor/S Opernensemble Opernfarbfilm Opernfestspiele Opernfinale Opernfreunde Opernführer Opernglas Opernhaus/Tp Opernintendant Opernjux Opernkomponist/P Opernkonzert Opernmusiker Opernnachwuchs Opernorchester Opernregie Opernregisseure Opernsänger Opernsaison Opernschule Opernstar Opernszenen Operntheater Operntradition Opferbereitschaft Opfergang Opferns Opferpriester Opfers Opferschale Opferstock Opfertier Opfertod Opferung/P Opium Opiumkrieg Opponent/P Opportunismus Opportunist/P Opportunitätsprinzip Opposition Oppositionschef Oppositionsführung Oppositionsgruppe/N Oppositionspolitiker Oppositionssprecher Optik/R Optiker/FNS Optikermeister Optimalität Optimalitätskriterium Optimierbarkeit/P Optimierens Optimierung/P Optimierungsmaßnahme/N Optimierungsmöglichkeit/P Optimierungsphase/N Optimierungspotential/EPS Optimierungspotenzial/EPS Optimierungsreserve/N Optimierungsschritt/EPS Optimierungsstrategie/N Optimierungstechnik/P Optimierungsverfahren/S Optimierungsversuch/EPS Optimismus Optimist/P Optimum/S Option/P Optionsbetrag/STp Optionserfahrene Optionsgeschäft/EPST Optionshandel/S Optionskäufer Optionskontrakte Optionslaufzeit Optionsmarkt/Tp Optionspreis/E Optionsschein/EPS Optionsspieler Optionsverkäufer Optokoppler/NS Optokopplermodul Opus Orakel/NS Orangen Orangenernte Orangensaft/T Orangensekt Oratorium/S Orbit/S Orchester Orchesterbegleitung Orchesterbesoldung Orchesterkanzel Orchesterkonzert Orchesterkultur Orchestermusik Orchestermusiker/S Orchesterprobe Orchesterschule Orchesterstücke Orchidee/N Orden/S Ordensangehöriger Ordensgesetze Ordensherrschaft Ordensritter Ordentlichkeit Order Ordereingang Ordinariat Ordinarien Ordinate/N Ordnens Ordner/NS Ordnung/P Ordnungsbehörde/N Ordnungshüter/FNS Ordnungskriterien Ordnungsliebe Ordnungsmacht Ordnungsmerkmal/EPS Ordnungsprinzip Ordnungsproblem/EPS Ordnungsrecht Ordnungsstrafe/N Ordnungswidrigkeit/P Ordonanz Ordonnanz Oregon Organ/EPS Organigramm/EPS Organisation/P Organisationsaufgabe/N Organisationsbegabung Organisationserfahrung Organisationsfachmann Organisationsform/P Organisationsgabe/N Organisationskomitee/S Organisationslösung/P Organisationsplan Organisationsreform/P Organisationssoftware Organisator/PS Organismen Organismentypen Organismus Organist/FP Organleiden Organum Organverpflanzung Organverträge Orgasmen Orgasmus Orgel Orgelbauer/S Orgelbaus Orgelklang/Sp Orgelkunst Orgelmusik Orgelwerke Orgie/N Orgien/G Orient/S Orientale/N Orientalismus Orientbrücken Orienthandel Orientierens Orientierung/P Orientierungsdaten Orientierungshilfe/N Orientierungskrise/N Orientierungspreis/EPT Orientierungspunkt/EPS Orientierungsrahmen/S Orientierungsstufen Orientteppich/S Orientteppichhändler/FNS Originalantwortschein/EPS Originalausgabe/N Originalbürgschaft Originaldiskette Originalfassung Originalfolie Originalgehäuse Originalität Originals Originalscheck/S Originalstand Originalversion/P Originalzeichnung/P Orion/S Orkan/EPS Orkneyinseln Orlando Orleans Ornament/EPST Ort/JST Ortens Orthodoxie/N Orthogonalität Orthografiefehler/NS Orthographie/Nf Orthographiefehler/NS Orthopäde/N Orthopädie Ortsangabe/N Ortsbehörde/N Ortsbesichtigung Ortsbezeichnung Ortschaft/P Ortseingang Ortsgespräch/EPS Ortsgruppenleiter Ortskenntnis/q Ortskoordinate/N Ortskrankenkasse/N Ortsmessung Ortsmitte Ortsnetz/EPT Ortsplanung Ortsprospekt Ortsrand Ortsrandlage Ortssender/N Ortsteil/EPS Ortsvektor/PS Ortsvertreter Ortsvorsitzende Ortswechsel Ortszeit/P Ortszuschlag/STp Ortungsgeräte Orwell/S Oscar/S Osiris Oskar/S Oslo Osmanenreich Osnabrück/S Ostafrika/S Ostarmeen Ostasiens Ostaustralien Ostbahnhof Ostberlin/R Ostbesuche/N Ostbewohner Ostblock/ST Ostblockdelegierte Ostblockkonferenz Ostblockländer/N Ostblockland Ostblocknationen Ostblockreisen Ostblockstaaten Ostbündnis/Qq Ostdeutschland/S Osten/SW Ostengland Osteoporose Ostereier Osterfahrt Osterfeiertage Osterferien Osterfest Ostergeschäft Osterhase/N Osterinsel/N Osterkarten Ostermarsch Ostermontag Ostern Osterpause Osterpreis Osterprogramm Osterreiseverkehr Ostersamstag Ostersonnabend Ostersonntag Osterspaziergang Ostertage/N Ostertermin Osterwoche Osteuropa Osteuropäer/FNS Ostexport/S Ostfahrbahn Ostfernsehens Ostfildern Ostflüchtlinge Ostfrankreich Ostfriesland/S Ostfront Ostgeschäft/ES Ostgotenreich Ostgrenze Ostgrönland Osthängen Osthandel/S Osthessen Ostholstein/S Ostimporte Ostjude Ostkirche Ostkonten Ostkredite/N Ostpakistan Ostpakt Ostpolen Ostpolizisten Ostpommern Ostpreuße/N Ostpreußen/S Ostprovinz/P Ostschweiz Ostsee Ostseebäder Ostseefahrt Ostseeflotte Ostseegebiet Ostseehandel Ostseeheilbad Ostseeinsel Ostseeküsten Ostseenähe Ostseeprovinzen Ostseewoche Ostsektor Ostsibirien Ostsparkonten Oststaat/T Ostwall Ostwestfalen/S Ostwind Ostzonenflüchtling Ostzonenpolizei Ostzonenpolizist Ostzonenwahl Oszillation/P Oszillator/P Oszillogramm/EPS Oszillograph/P Oszillographenbild Oszilloskop/EPS Othmar/S Otmar/S Otter/N Otto/S Output/S Outputfile/S Ouvertüre/N Ovation/P Overall/S Overheadfolie/N Overkill/S Oxford Oxid/EPS Oxidation/P Oxidationsschutz/T Oxyd/EPS Oxydation/P Oxydationsvorgang/Sp Ozean/EPS Ozeandampfer/S Ozeanflieger Ozeanriese/N Ozon/S Ozonloch/S Ozonschicht PC PCI PCs PDS PGP PKK PLO PLZ PPP PPS PR PS PTT Pächter/FNS Pächterwohnung Päckchen/S Pädagoge/FN Pädagogentagung Pädagogik Päpste/N Pärchen/S Pärke/N Pässe/N Paarbildung Paarens Paares Paarung/P Paarungsverhalten Pablo/S Pacht/J Pachtdauer/N Pachtens Pachthof Pachtpreis/EPT Pachtsummen Pachtung/P Pachtvertrag/Tp Pachtzins/EPT Packard Packeis/T Packens Packer/FNS Packerei Packesel/NS Packmaschine/N Packmaterial/S Packpapier/EPS Packung/P Packzettel Paddelboot/EPT Paddelfahrten Paddels Paderborn Paella Paganini/S Page Pagenfrisur/P Pahlewi/S Paket/EPST Paketannahmen Paketannahmestelle Paketbeförderung Pakethandel Paketlösung/P Paketpost Paketsendung/P Pakettarife Paketverkehr Paketwechsel Pakistan/R Pakt/EPS Paktorganisation/P Paktpreis/T Paläontologe/N Paläste/N Palästina Palästinafrage Palästinakonferenz Palästinenser/FNS Palais Palast/T Palastrevolution/P Palaver/S Palermo Palette/N Palisade/N Palladium Pallas Palme/N Palmkern/EPS Palmkernfett Palmkernöl Palomar Pampelmuse/N Pamphlet/EPS Pamphletist/P Pan/S Panamakanal Panamakanalzone Panasonic Pandschab Panik/P Panikabhebung/P Panikbelagerung/P Panikstimmung Panikzeiten Pankow/S Panne/N Pannendienst/ET Pannenhilfe Pannenserie/N Panoptikum Panorama/S Panoramablick Panpsychismus Panslawismus Panter/S Panther/S Pantoffel/NS Pantoffelhelden Pantomime/N Pantomimentheater Panzer/NS Panzerabwehr Panzerabwehrgranaten Panzerabwehrraketen Panzerarmee Panzerbataillon Panzerbrigade Panzereinheit/P Panzerfahrzeuge Panzerfaust Panzerführung Panzergräben Panzergrenadier/E Panzerkolonnen Panzerkreuzer Panzerlandungsboote Panzeroffensive Panzerproduktion Panzerschlacht Panzerschränke Panzerschrank Panzertruppe Panzerverbände Panzerverband Panzerwaffe Panzerwagen Panzerweste Papa/S Papagei/PS Paperback Paperfeed Papi Papier/ES Papierabschneider/S Papierachse/N Papieranfang Papieranschläge Papieraufnahmeschlitz Papieraufwicklung Papierbahnbreite Papierballen Papierberg Papierblätter Papierblumen Papierbögen Papierbogen/S Papierbreite/N Papierbügel Papiereinlegen Papiereinzug/STp Papiereinzugsschlitz Papierende/N Papierentfernen Papierentnahme Papiererkennung Papiererzeugnisse Papierfabriken Papierfetzen/S Papierformat/EPS Papierfreigabehebel/S Papierführung/P Papierführungsblech/T Papierführungslaschen Papierführungsschlitz Papiergeld/RST Papiergewicht/EPS Papiergewinne Papierhälfte Papierhandling Papierhandlung/P Papierherstellung Papierkante/N Papierkörbe/N Papierkontrolle Papierkorb/ST Papierkrieg/EPS Papierlagen Papierlieferanten Papiermarkt/ST Papiermaße Papiermaschine Papiermasse Papiermesser/S Papiermühlen Papierposition Papierpositionierung Papierprobleme Papierprodukte Papierproduktion Papierpuppen Papierqualität Papierrand Papierrolle/N Papierrollenhalter Papierrollenkerns Papierschacht Papierschachtblech/T Papierschachtrandes Papierschale Papierschiffchen Papierschlaufe Papierschlitz Papierschwalben Papiersensoren Papierserviette/N Papierstau Papierstaufehler Papierstopper Papierstreifen/S Papiersynchronisierung Papiertaschentüchern Papiertaschentuch/T Papiertiger Papiertische Papierträger Papiertransport Papiertransportwellen Papiertrennung Papiertüte/N Papierumlauf/Sp Papierverarbeitung Papierverpackung/P Papierverschwendung Papiervogel Papiervorräte/N Papiervorrat/S Papiervorschüben Papiervorschub Papierwäsche Papierwalze Papierwaren Papierwechsel Papierzellstoff Pappbänder Pappband/T Pappbecher Pappdeckel/NS Pappe/N Pappel/N Pappelreihe Pappelschatten Pappenfabrik Pappenheimer Pappenstiel Pappherz Papphütten Pappkamerad/P Pappmaché/S Pappmaschee/S Pappnase/N Pappschachtel/N Pappteller/N Paprika Papst/T Papstbotschaft Papstmesse Papsttum/S Papstunterhändler/FNS Papstwahlordnung Papyrus Papyrusboot Parabel/N Parabolantenne/N Paraboloid/EPST Paracelsus Parade/N Paradeboxer Paradefeld Parademarsch Paradeplatz Paradeschritt Paradestück/EPS Paradies/EPT Paradiesgrundstücke/S Paradiesinseln Paradieszustände Paradigma/S Paradigmen Paradigmenwechsel/S Paradoxie/N Paradoxon/S Paraffin Paragrafenreiter/NS Paragraph/Pf Paragraphenreiter/NS Paraguay Parakinese/N Parallelbus/Qq Parallelfall Parallelhandlung Parallelisierens Parallelisierung/P Parallelität Parallelport/S Parallelprogramm Parallelrechner/NS Parallelwiderstand/S Parallelzugriff Parameter/NS Parameteranpassung Parameterblock Parameterbuffer/S Parametereingabe/N Parametereinstellung/P Parameterliste/N Parametersätze/N Parametersatz Parameterspeicherung Parametertyp/P Parameterübergabe/N Parameterübergabemechanismen Parameterzahl Parametrierens Parametriergerät Parametrierstation/P Parametrierung/P Parametrisierung Paranoia Paranuss/p Paraphierens Paraphierung/P Parapsychologe/N Parasit/P Paratyphus Parcours Pardon Parfüm/S Parfümerie/N Parfümfläschchen/S Parfümhändler/FNS Parfum/S Parfumhauch Parfumschwade Paris Pariser Parität/P Paritätsänderung/P Paritätsfehler/N Paritätsgründe Paritätspreise Paritätstest Paritycheck Parityerror Parityfehler/S Park/S Parkallee Parkanlagen Parkbänke/N Parkbank Parkdeck Parkett Parkettboden Parkfriedhof Parkgarten Parkgebühr Parkgelände Parkgrund Parkgrundstück Parkhaus/Tp Parklage Parklicht/RS Parklücke/N Parkplätze Parkplatz/T Parkplatzgestaltung Parkplatzsorgen Parkraum/STp Parksanatorium Parkscheiben Parksiedlung Parkstreifen/S Parksünder/S Parkuhr Parkumlaufbahn Parkverbot/EPS Parkverbotsschild Parkvergehen Parkzeit Parlament/EPST Parlamentarier/FNS Parlamentarismus Parlamentsauflösung Parlamentsausschuss/Tp Parlamentsbeschluss/Tp Parlamentsferien Parlamentsfraktion/P Parlamentsherrschaft Parlamentsmehrheit Parlamentsmitglieder Parlamentsreform Parlamentssitze Parlamentssitzung Parlamentstagung Parlamentswahl/P Parnass Parodie/N Parole/N Paroli Parser Part/S Partei/P Parteiämter Parteiamt/S Parteiangelegenheit/P Parteiapparat/E Parteiauftrag/STp Parteiausschuss/Tp Parteibeschluss/Tp Parteibeziehung/P Parteibildung Parteibücher/N Parteibuch/T Parteichef Parteidirektiven Parteidokumente Parteienblock Parteienchaos Parteienstreit Parteifeinde/N Parteifinanzen Parteiflagge Parteiflügel/S Parteifreien Parteifreund/P Parteiführer/NS Parteiführung Parteifunktionär/EFPS Parteigänger Parteigebilde Parteigegnern Parteigenosse Parteigericht Parteigeschäfte Parteigeschichte Parteigremium Parteigrenzen Parteigruppe Parteihaus/Tp Parteihierarchie Parteihistoriker Parteiinteressen Parteijargon Parteikämpfe Parteikandidat/P Parteikonferenz/P Parteikongress/EPT Parteikontrolle Parteikonvent/S Parteikreise Parteilaufbahn Parteileitung Parteilichkeit/P Parteilinie Parteimitglied/RS Parteimitgliedschaft Parteinahme/N Parteinamen/S Parteioberhaupt Parteiorgan/E Parteiparolen Parteipolitik/P Parteipräsidenten Parteiprobleme Parteiprogramm/S Parteipropaganda Parteiräson Parteireform/P Parteisatz Parteisekretäre Parteispitzen Parteistäbe Parteitag/EPS Parteitagsbeschluss/Tp Parteitagung Parteiverbindung/P Parteiverfahren Parteiversammlung/P Parteivolk Parteivorsitz Parteivorsitzende/NR Parteivorstände Parteiwechsel Parteizeitschrift Parteizellen Parteizentrale/N Parteizugehörigkeit/P Parteizuschuss/Tp Parterre/S Parterrezimmer Partie/N Partikel/NS Partikularismus Partisan/P Partisanenarmee Partisanenbekämpfung Partisanenführer Partisanenkämpfe Partisanenkampf Partisanenkrieg Partition/P Partitionierung Partitur/P Partizip/S Partizipation Partizipationsmöglichkeit/P Partizipationsschein/EPS Partizipien Partner/FNS Partnerländer Partnerschaft/P Partnerschule/N Partnersprache Partnerstadt Party/S Partyraum/STp Parzelle/N Pascal/S Pascha Pass/JT Passage/N Passagepreis/EPT Passagier/EFPS Passagierdampfer/S Passagierflotte Passagierflugzeug/S Passagiergüter/N Passagiergut/T Passagiermaschinen Passagierschiff/T Passant/EP Passatregengebiet Passau Passbeamte/NR Passbild/RST Passens Passform Passfoto/S Passgenauigkeit Passhandelsgewerbe Passhöhe/N Passierschein/EPT Passierscheinzwang/T Passion Passionsspiele Passiva Passivität Passivrauchen/S Passivrechtsschutz Passivsaldo/S Passivum Passkontrolle Passnummern Passspiel Passunion Passwörter/N Passwort/EPST Paste/N Pastellfarbe/N Pasteurisierens Pasteurisierung/P Pastor/FPS Patagonien Patch/T Patchwork Pate/FNR Patenkind Patenkirchen Patenschaft Patenstadt Patenstelle Patentämter/N Patentabteilung Patentamt/T Patentanmeldung/P Patentansprüche Patentanwälte Patentbearbeitung Patentierung/P Patentinhaber/N Patentlösung Patentrecherchen Patentrechte/N Patentreife Patentrezepte Patents Patentschrift/P Patentschutz/T Patentverfahren Patentverschluss/Tp Patentverwertung Pater/S Pathologe/FN Pathologie/N Pathos Patient/FP Patientennummer Patientensicherheit Patriarchat/S Patrick/S Patriot/P Patriotismus Patrizier/NS Patrizierhaus/Tp Patriziertum Patron/EFPS Patronat/EPS Patronenhülsen Patronentasche Patrouille/N Patrouillenschiff Patrouillenschnellboot Patsche Pattex Pattstellung/P Patzer Paukenschlag/STp Pauker/FNS Paul/S Paulette/S Paulus Pauschalangebot Pauschalarrangement/S Pauschalaufenthalte Pauschalbesteuerung Pauschalbetrag/STp Pauschalbezahlung Pauschalgebühren Pauschalhonorierung Pauschalkuren Pauschalpreis/P Pauschalregelung Pauschalreisen Pauschalsatz Pauschaltouristen Pauschalurteile Pauschalversteuerung Pauschalzahlung/P Pausenplätze Pausenplatz Pausentaste Pavia/N Pavian/EPS Pavillon/S Pazifik/S Pazifikflotte Pazifikküste Pazifikpakt Pazifikstaaten Pazifismus Pazifist/P Pech/S Pechserie/N Pechsträhne/N Pechvogel Pedal/EPS Pedanterie Pedro/S Peepshow/S Pegasus Pegel/N Pegelhöhen Pegelstand/T Pegelunterschiede Peggy/S Peilamateure Peilempfänger Peilens Peilfunk/S Peilgerät/EPS Peilkommando/S Peilmeisterschaften Peilobjekte Peilrichtung/P Peilsignal Peilstation/P Peilstellen Peilung/P Pein Peinigens Peiniger/FNS Peinigung/P Peinlichkeit/P Pekinese/N Peking Pelerine/N Pelikan Pellkartoffeln Pelz/EPT Pelzbedarf/S Pelzfutter Pelzgroßhändler Pelzhändlers Pelzhandel Pelzkleidung Pelzkragen Pelzmäntel Pelzmantel Pelzmodegeschäft Pelzmodelle Pelzmoden Pelzmütze/N Pelzresten Pelzstiefel Pelztiere/N Pelztierzüchter/FNS Pelzwaren Pelzwarenhandel Pelzwerk Pelzwirtschaft Pendant Pendel/S Pendeländerung/P Pendeldämpfung Pendeleigenfrequenz Pendelposition Pendelschwingung/P Pendelstellung Pendeluhr/P Pendelverkehr/S Pendelwinkel/S Pendelzug/Tp Penetration Penibilität Penicillin/S Penis/Qq Penizillin/S Pennsylvanien Pension/P Pensionär/EFPS Pensionierens Pensionierung/P Pensionsalter/S Pensionsfonds Pensionskasse Pensionsversicherung Pensionsversorgung Pensionsversprechung/P Pensionszusage Pensum/S Pentagon/S Penthouse Pentium/S Peperoni Pepsi Perestroika Perfektion Perfektionierens Perfektionierung/P Perfektionist/P Performance Pergola Perikles Periode/N Periodendauer Periodendifferenz Periodendifferenzmessung Periodenlängen Periodenmessung Periodensystem/S Periodenzahl Periodizität Peripherie/N Peripheriebus/Qq Peripheriechips Peripheriegerät/EPS Peripheriekonzept/EPST Peripheriekosten Peripherierechner Perkussionist/FP Perl Perlenkette/N Perlenkettenwährung Perlenschnur Perlonstrümpfe Perltaucher Permanenz Permutation Peronist/P Perpetuum Perser/FNS Perserkrieg Perserteppich/E Persien Persiflage/N Persistenz Persönlichkeit/P Persönlichkeitsentwicklung/P Person/P Personalabbau Personalabteilung/P Personalakte/N Personalangabe/N Personalauswahl Personalausweis/EPT Personalbedarf/S Personalbüro/S Personalchef/S Personalcomputer Personaldirektor/P Personaldiskussion/P Personaldokumente Personaleinführung Personalfluktuation/P Personalfrage/N Personalführung Personalien Personalknappheit Personalkosten Personalmittel Personalparkplatz Personalpolitik Personalrat/S Personalraum/STp Personals Personalschalter Personalstab Personalstand Personaltransport Personalveränderung Personalverwaltung Personalvorschlag/STp Personalwerbung Personalwesen/S Personalzuwachs/T Personenauto Personenbahnhof/S Personenbeförderung Personenfahrt Personenfrage/N Personengruppe/N Personenkreis/EPT Personenschifffahrt/P Personenschutz/T Personenspektrum Personenverkehr/S Personenwagen/S Personenzahl Personifizierens Personifizierung/P Perspektive/N Pertinaxplatte/N Perücke/N Peru/S Perversion/P Perversität Perzeption/P Peseta Pesete/N Pessimismus Pessimist/P Pest Pestizid/EPS Pestwurz Peter/MS Petersburg Petersdom/S Petersilie Peterskirche Petersplatz Petition/P Petitionsausschuss/Tp Petra/S Petrodollar/S Petroleum Petroleumlampe/N Petrus Petting Pfändens Pfänder/N Pfändung/P Pfändungsschutz Pfändungsversuch Pfad/EPST Pfadangabe/N Pfadfinder Pfadfinderbund Pfadfindergesetze Pfadfinderlagern Pfadname/N Pfahl/ST Pfalz Pfand/ST Pfandhaus Pfandleihe Pfandrecht/S Pfanne/N Pfannkuchen Pfarrei/P Pfarrer/FNS Pfarrersfamilie Pfarrerstöchter Pfau/EPS Pfaueninsel Pfauenthron Pfeffer/S Pfefferkorn Pfefferminz/E Pfeifenmann Pfeifentabake Pfeifkonzert Pfeifton/S Pfeil/EPRS Pfeiler/NS Pfeilerbrücke Pfeilrichtung/P Pfeiltaste/N Pfeilzeichen/S Pfennig/EPS Pfennigfuchser Pfennigstück/ST Pferch Pferd/EMPT Pferdediebe Pferdefarmen Pferdefuß/Tp Pferdegebiss/EPT Pferdegeschirr/EPS Pferdegespann Pferdehändler/FNS Pferdekenner Pferdekoppel Pferdekräfte Pferdekraft Pferdeliebhaber Pferdemarkt/STp Pferdenarren Pferdepension/P Pferdepfleger Pferderennen/S Pferdestärke/N Pferdestall/Sp Pferdestatue Pferdezüchter Pferdezucht Pferdsprung Pfg Pfg. Pfiffes Pfiffigkeit/P Pfiffs Pfingsten Pfingstferien Pfingstfest/T Pfingstpause Pfingstsamstag Pfingstsonntag Pfingstwoche Pfingstwochenende Pfirsich/EPS Pfister Pflanzenarten Pflanzenfaser/N Pflanzengarten Pflanzenkost Pflanzenkunde Pflanzens Pflanzenschutzmittel/NS Pflanzenwelt Pflanzer/NS Pflanzgut Pflanzstätte Pflanzung/P Pflaster/S Pflasterstein/EPS Pflaume/N Pflaumenbaum/STp Pflegeanstalt Pflegeberufe Pflegeeltern Pflegeheim/ET Pflegekind/T Pflegekinder Pflegeklasse Pflegeleistung Pflegemittel/NS Pflegemutter Pflegens Pflegepersonal Pflegeprobleme Pfleger/FNS Pflegesatz Pflegestätte Pflegestation/P Pflegetochter Pflegevater Pflegezulage Pfleglinge/N Pflegung/P Pflicht Pflichtanteil/EPS Pflichtassistent Pflichtbewusstsein/S Pflichtblätter Pflichtblatt Pflichtenheft/EPT Pflichtenkreis/EPT Pflichterfüllung Pflichtfächer/N Pflichtfach/T Pflichtfigur Pflichtgefühl Pflichtgrenze Pflichtkonto Pflichtkrankenkasse Pflichtlektüre/N Pflichtquote Pflichtspiele Pflichtsport Pflichtstunde/N Pflichtteil/EPS Pflichtübung/P Pflichtumtauschsätze Pflichtverletzung Pflichtversäumnis/Qq Pflichtverteidiger/NS Pflücker Pflug/ST Pförtner/FNS Pforte/N Pfosten/S Pfostenleiste/N Pfostenschuss/Tp Pfostenstecker Pfote/N Pfropf/P Pfründe/N Pfründenkuchen Pfütze/N Pfuhl Pfund/EPST Pfundabwertung Pfundblase Pfundblock Pfundkrise Pfundkurs/T Pfundnoten Pfundschwäche Pfundwährung Ph Phänomen/EPS Phänomenologie Phalanx Phantasie/N Phantasiefigur Phantasieuniform Phantast/P Phantasterei/P Phantastik Phantom/EPS Pharao Pharaonen Pharisäer Pharmaexporte Pharmakologie Pharmazeut/P Pharmazeutiker Pharmazie Pharmazieschule Phase/N Phasenanalyse Phasenbeziehung/P Phasenfunktion/P Phasenkorrektur Phasenkorrelation Phasenversatz Phasenverschiebung/P Phenol Phenolchemie Philatelist/P Philharmonie/N Philharmoniker/NS Philipp/S Philippinen Philippinengraben Philippineninseln Philippsburg Philips Philister Philologe/N Philologenschaft Philologenverband Philologiestudenten Philosoph/P Philosophenschule Philosophentum Philosophie/N Philosophiestudentin Philosophiestudium Phlegma Phönix Phobie/N Phon Phonetik Phonograph/P Phosphat Phosphatdünger Phosphor/S Photo/NS Photoatelier Photoaufnahme/N Photobeispiele Photochemie Photograph/FP Photographie/N Photokopie/N Photolyse Photomontage/N Photon/PS Photonenrakete Photoreporter/N Photosynthese Photovoltaik Photozelle/N Phrase/N Phylogenese Physik/R Physiker/FNS Physikerausbildung Physiklehrer Physiksaal Physikunterricht Physiognomie/N Physiologe/FN Physiologie Piaget/S Pianist/FP Picasso/S Pickel/N Pickelgesicht Pickelhauben Picknick/S Piemont Piepsen Piepser/NS Piepserkontrolle Pietät Piezoaufnehmer/S Piezogebern Piezokeramik Piezomaterial/S Piezopiepser Piezoplatte Piezoscheiben Piezoschwinger Piezoseite Piezosummer Pigment/EPS Pik/E Piktogramm/EPS Pilatus Pilger/S Pilgerfest Pilgerreise Pilgerväter Pilgerzug/STp Pille/N Pillendreher Pillenknick Pilot/P Pilotenexamen Pilotenkanzel Pilotenkombination Pilotensitz Pilotentraining Pilotprojekt/EPS Pilsen/RW Pilz/EPT Pilzatlas Pilzkappe Pilzköpfe Pilztaste Pilztastenmodul Pimmel Pin/FS Pinadapter/S Pinbelegung Pinbezeichnung/P Pinbretter/N Pingpong Pinguin/EPS Pinie/N Pinienbestand Pinienwälder Pinne/N Pinnummer/N Pinocchio/S Pinsel/S Pinselstrich/EPT Pinzette/N Pionier/EFPS Pionierarbeit/P Pioniereinheit/P Pioniergeist Pionierleistung Pioniertat/P Pioniertrupp/S Pionierzeit Pipeline/S Pipette/N Pippi/S Piquet Pirat/P Piratenkönig Pirelli Pirmasens Pirouette/N Pirsch Pirschgang Pisser Pissoir/S Pistazie/N Piste/N Pistenmacher Pistenrand Pistole/N Pistolenschießen Pistolenschütze Pistolenschuss/Tp Pius Pixel/N Pixelgruppen Pixelmanipulation Pixelmatrix Pixelmuster Pixeltiefe Pizza/S Pizzen Pizzeria Pkw Plädoyer Pläne/N Pläsier Plätte Plätze/MN Placebo Plackerei/P Plagiat/EPS Plagiator/P Plakat/EPST Plakatkrieg Plakatmaler Plakatsäule Plakette/N Plan/RST Planck/S Planens Planer/NS Planet/P Planetenbahn Planetenhülle Planetenkonstellation/P Planetoid/P Planfahrt Plangestell Planieren/JS Planke/N Plankostenrechnung Plankton Planquadrat Planschleifen Planstelle/N Planstellenbesetzung Plantage/N Plantageanteile Plantagenarbeiter/FNS Plantagengesellschaften Plantschbecken/S Planung/P Planungsabteilung/P Planungsansätze/N Planungsarbeit Planungsausschuss/Tp Planungschef/S Planungsfehler Planungsfragen Planungsgewinne Planungsgruppen Planungskomitee/S Planungskommission/P Planungskonzept/EPST Planungsmethode/N Planungsminister Planungspanne Planungsstelle Planungsunterlagen Planungsvorschlag/STp Planungsziel Planwagen Planwirtschaft Planzahl Plaque/S Plasma/S Plasmabildschirm Plasmadisplay/S Plasmen Plastik/PS Plastikausführung Plastikbombe Plastikboot Plastikdraht Plastikeimer Plastikeinband Plastikflasche Plastikgehäuse Plastikhimmel Plastikkarte Plastiknase Plastiksäcke Plastiksack Plastikschirm Plastikstoffe Plastikstreifen Plastiktüte Plastikverpackung Plateau/S Platin/EPS Platinchen Platinenanschraubwinkel Platinenanzahlung Platinenebene Platinenhalterung Platinenkombination/P Platinenkonzept Platinenparameter Platinentest Platinuhr Platitude/N Plato/NS Platonismus Plattenaufnahmen Plattenerfolge/N Plattenkapazität/P Plattenmusik Plattensee Plattenspieler/S Plattentipp/S Plattform/P Plattfuß/Tp Plattitüde/N Platzanweiser/FNS Platzbedarf Platzbelegung Platzeinsparung Platzes Platzgründe/N Platzhalter/NS Platzhandel Platzierens Platzierung/P Platzkarten Platzmangel Platznot Platzordner Platzprobleme/N Platzregen Platzreservierung/P Platzverbot Platzvereine Platzverweis/T Platzvormerkung Platzziffer Plauderei/P Plausch Plausibilität Plausibilitätsüberprüfung Playback Playboy/S Plebejer Pleiten Pleiteverdacht/S Pleitewelle Pleitier/S Plempeleitungssteuerung Plenarsitzung/P Plenartagung Plenum/S Plexiglasfenster Plexiglashaube Plexiglasscheibe Plot/S Plotter Plotterpapier Plotterstifte Plünderer Plünderns Plünderung/P Plüsch Plumpheit Plural/S Pluralismus Pluralität Pluskonto Pluspunkte/N Pluswert/EPST Plutarch/S Pluto Plutonium Plutoniumwerke Plymouth Pneu/S Pneumatik Pneumatikplänen Pöbel/S Pöbelei/P Pökelfleisch Pökelsalzlake Pöstchen/S Pocken Podest/EPST Podien Podium/S Podiumsdiskussion/P Podiumsgespräch/EPS Poesie Poet/P Pogrom/EPS Pointe/N Pokal/EPS Pokalehrgeiz Pokalendspiel/EPS Pokalerinnerung/P Pokalfinalisten Pokalgewinn Pokalgewinner Pokalsieg Pokalsieger/S Pokaltore Pokalwiederholung Poker Pokergesicht Pokergesichtern Pokerspiel Pol/EFJPS Polareis/T Polarflug/STp Polarforscher/S Polarforschung Polarfuchs/T Polarisation Polarität/P Polarkoordinaten Polarkreis/EPT Polarlicht Polaroid Polarstern Polarzone Polbrücke Polder/NS Polderhöfe Polderland Polemik/P Polen/JSW Polenreise Polente Polgebiete Police/N Polier Polierstelle Poliklinik Polis Politbüro/S Politesse/N Politfunktionär/EPS Politik/R Politikauffassung/P Politikbereich/EPS Politiker/FNS Politikfeld/R Politikinhalt/EPS Politikverständnis/Qq Politikwissenschaft/P Politkrimi/S Politmanagement Politoffiziere Politpropaganda Politur Politvolk/S Polizei Polizeiakten Polizeiaktion/P Polizeiangehörige Polizeianwärter Polizeiapparat Polizeiarzt/T Polizeiaufsicht Polizeiaugen Polizeiauto/S Polizeibeamte/FNR Polizeibehörde Polizeibericht Polizeibewachung Polizeibewaffnung Polizeichemiker Polizeidezernat Polizeidienststellen Polizeieinheit/P Polizeieskorten Polizeifahrzeuge Polizeifunkwagen Polizeigebäude Polizeigewalt Polizeigruppe Polizeihauptkommissar Polizeihauptmeister Polizeihaus/Tp Polizeihund/E Polizeiinspektor/S Polizeijuristen Polizeikaserne Polizeikommandeur Polizeikommando Polizeikommissar/PS Polizeikontrolle Polizeikonvention/P Polizeikräfte Polizeilautsprecher Polizeimajor Polizeimeister/FNS Polizeioberwachtmeister Polizeioffizier Polizeiorgane Polizeipräfekt/P Polizeipräfektur Polizeipräsidenten Polizeipräsidium Polizeipraktiken Polizeirevier/EPS Polizeischutz Polizeisprecher Polizeistaat/PST Polizeistafette Polizeistreife/N Polizeistreifenwagen Polizeitrupp/EPS Polizeiwachen Polizeiwachtmeister Polizeiwagen Polizeizentrale Polizist/FP Polizistenmörder/S Polle/N Pollenflug/STp Pollinie/N Polonaise Polopferd Polospieler Polster/JS Polsterbänke Polstermeister Polstermöbel Polterabend/S Poltergeister Polyarthritis Polygamie Polygon/EPS Polygonzug/Sp Polykultur Polynesier/N Polynom/EPS Polyp/P Polystyrol Pomade/N Pommern Pommes Pomp/S Pompadour/S Pompidou/S Pontiac Ponton/S Pontonbrücke Pony/S Ponywandern Pool/S Pop/EP Popanz/P Popeline Popkonzert/S Popo/S Popper/NS Popsänger/FNS Popularität Popularitätskurve Population/P Poren/I Porenbeton Porno/S Pornofilm/E Pornographie/Nf Pornokino/S Pornoschuppen Pornoshow Pornostar/S Porsche Port/S Portabilität Portabilitätsproblem/E Portal/EPS Portefeuille/S Portemonnaie/S Portfunktionen Portier/JS Portierens Portierlogen Portierungsaufwand/ST Portion/P Portionieren/JS Portland Portmonee/S Porto/S Portogebühren Portotarif Porträt/S Porträtfoto/S Porträtist/P Portrait Portsmouth Portugal/S Portugiese/FN Portwein/EPS Porzellan/EPS Porzellanarbeiter/FNS Porzellanglocken Porzellangroßhandlung Porzellankiste Porzellanschühchen Porzellanservice Porzellanwaren Poseidontempel Posen/I Position/P Positionierens Positionierhülle Positionierung/P Positionsänderung/P Positionsangabe/N Positionsermittlung Positionsgrenze/N Positionslösung Positionsmessung Positionsmodul Positionspapier Positionsunabhängigkeit Positionsverteilung/P Positivismus Posse/N Post/PW PostScript Postämter Postabgabe Postablieferung/P Postamt/ST Postangestellten Postanleihe Postanschrift/P Postanweisung/P Postanweisungsdienst Postauftrag/STp Postbeamte/NR Postbediensteten Postbehörden Postbenutzern Postbezieher Postbote/N Postdienste/S Postdienstleistung/P Posten/SW Postenverteilung Poster Postfächer/N Postfach Postfachinhaber Postgebühr/P Postgeheimnis/Qq Postgewerkschaft Postille/N Postkarte/N Postkartengröße/N Postkasten Postkunde Postkutsche Postleitgebiete Postleitzahl/P Postministerium Postmodem Postomnibusse Postquittung Postraub Postreisedienst Postsäcke Postsack/T Postscheck/S Postscheckämter Postscheckkonten Postscheckonto Postschließfach Postsendung/P Postsparbuch Postsparguthaben Postsparkassendienst Postsparkonto Poststadion/P Poststempel/NS Poststreik/S Posttarife Postulat/EPST Postunion Postverkehr/S Postvertrag/STp Postweg/E Postwertzeichen Postzug/STp Postzustellung Postzweige Potentat/P Potential/EPS Potentialfreiheit Potentialtrennung Potentiometer/NS Potentiometerauswertung Potentiometerspannung/P Potentiometerstellung Potentiometerwert Potenz/P Potenzial/EPS Potenzialbarriere/N Potenzialfreiheit Potenzialtopf Potenzialtrennung Potenzialverlauf/p Potenzreihe/N Potenzverlust Potenzvorstellung/P Poti/S Potsdam/RS Potsdamer/FNS Power Poweradapter/NS Powerdown Powerpack/S Powerup Präambel Prädestination/P Prädestinationslehre Prädikat/EPST Prädikatenlogik Präfekt/P Präfektur Präferenz/P Präferenzbehandlung Präferenzzone Präfix/EPT Prägens Prägestempel Prägetechnik Prägnanz Prägung/P Präjudiz Prälat/P Präludium Prämie/N Prämienaufkommen Prämiendruck Prämieneinnahme Prämienpolitik Prämiensteigerung Prämienüberträge Prämienvorteil Prämienzuschlag/STp Prämienzuwachs/T Prämierens Prämierung/P Prämisse/N Präparat/EPST Präparation/P Präposition/P Prärie/N Präriegebiete Präsentation/P Präsentierteller Präsenz/P Präservativ/EPS Präsident/FP Präsidentenberater Präsidentenkandidatur Präsidentenposten Präsidentensessel Präsidentenstuhl Präsidentenwagen Präsidentenwahl Präsidentenwahlkampf Präsidentschaft/P Präsidentschaftsrates Präsidentschaftswahl/P Präsidialmächte Präsidialmitglied Präsidialrat Präsidialregimes Präsidialrepublik Präsidialsitzung Präsidien Präsidium/S Präsidiumsmitglieder Präsidiumssitzung Prävalenz Prävention/P Präventivmedizin Präzedenzfall/STp Präzisierens Präzisierung/P Präzision/P Präzisionsinstrument/EPST Präzisionsleistung Präzisionsmessgerät/EPST Präzisionsprodukt Präzisionsspezifikation/P Präzisionstechnik Präzisionsuhr Präzisionsverstärker Pracht Prachtausführung Prachtausgabe/N Prachtbauten Prachtexemplar/EPS Prachtkerl Prachtkind Prachtstück Prachtuniformen Prachtwesen/S Prado Prag/RS Pragmatik/R Prahlerei Prahlhans Praktika Praktikant/FP Praktikantenstelle Praktiken Praktiker/NS Praktikum/S Praktikumsordnung/P Praktikumsplätze/N Praktikumsplatz/T Praline/N Pranger/S Pranke/N Pratze/N Prawda/S Praxen Praxis Praxisbezug/S Praxiserfahrung Praxisnähe Praxisraum/STp Praxisstelle Praxisuntauglichkeit Prediger/FNS Predigtbücher Predigtdienst Preisänderung/P Preisabbau Preisabschläge Preisabschwächung/P Preisabsprache/N Preisamt/T Preisanfrage Preisangabe/N Preisangebot/E Preisangleichung/P Preisanhebung/P Preisanpassung Preisanstieg/ST Preisanstiegsmeldung/P Preisaufschläge Preisauftrieb Preisausgleich Preisausschreiben Preisauszeichnung Preisbefestigung/P Preisbeispiel/E Preisbemessung Preisberechnung Preisbestandteil Preisbestimmung/P Preisbewegung/P Preisbild Preisbildung Preisbrecher Preischaos Preischart Preisdifferenz Preisdiktate Preisdisziplin Preisdruck Preiseinbrüche Preiseinbußen Preisempfehlung/P Preisentwicklung/P Preiserhöhung Preisermäßigung Preisermittlung Preiserwartung/P Preises Preisexplosion/P Preisfaktor Preisfestsetzung/P Preisforderung/P Preisfragen Preisfreigabe Preisfreiheit Preisgabe Preisgebung/P Preisgefälle/S Preisgefüge/S Preisgelder/N Preisgericht/S Preisgesetz/T Preisgestaltung Preisgewinner Preisgrenze Preisgrundlage Preisgruppe Preisherabsetzung/P Preisidee Preisindex Preisinflation Preiskampf Preiskategorie Preisklasse/N Preiskorrektur/P Preislage Preislinie/N Preisliste Preisnachlass/Tp Preisniveaus Preisnotierung/P Preispolitik Preisproblem/E Preisrätsel Preisrahmen Preisrecht/S Preisregelung/P Preisrichtlinien Preisrückgang/S Preisschildchen Preisschilder Preisschwankung/P Preissenkung/P Preissituation/P Preisspaltung Preisspanne Preisspektrum Preisstabilität Preisstaffel Preissteigerung/P Preisstellung Preisstopp/S Preisstoppverordnung Preissturz/T Preissystem/S Preistreiberei/P Preisüberwachung Preisunterbietung/P Preisunterschiede Preisverfall/S Preisvergleiche Preisverhältnis/Qq Preisverhalten Preisverleihung Preisverordnung Preisverschiebung/P Preisverteilung Preisvorsprung Preisvorteil Preiswirkung Preiswürdigkeit Preiszerstörung Preiszugeständnis/Qq Preiszuschlag/STp Prellen/JS Premier/EPS Premierenfeier Premierengäste Premierensieger Premierentermin Premierminister/FNS Presbyter/FNS Presbyterianer/NS Presbyterium/S Presseabteilung/P Presseagentur/P Presseamt/ST Pressearbeit Presseartikel Presseball/Sp Pressebericht/EPST Pressechef/S Pressedienst/T Presseempfang Presseerklärung Pressefotografen Pressefreiheit Pressefritzen Pressegesetz Presseinformation/P Presseinterview Presseklub Pressekommentare Pressekonferenz Pressekreisen Presseleute/N Pressemeldung/P Pressemitteilung/P Pressenotiz Pressens Presseoffizier/S Presseorgane/N Presseorganisation/P Pressephoto Pressephotographen Pressepolemiken Presseprodukte Presserat/T Pressereferat Pressereferent/P Presserezension/P Presserummel/S Pressespekulation/P Pressespiegel Pressesprecher Pressestelle/N Presseunternehmen Presseverband Presseveröffentlichung/P Pressevertreter/S Pressewesen Pressezentrum/S Pression/P Pressluftbohrer/NS Pressmasse Pressspan/ST Pressung/P Presswehe/N Presswerk Prestige/S Prestigebedürfnis/Qq Prestigedenken Prestigefrage Prestigegebäude Prestigegesichtspunkte Prestigegründe Prestigerückschlag/STp Prestigestandpunkt Prestigeverlust Prestigevorstellung/P Preuße/N Preußen/S Preußenkönig Priester/N Priesterehre Priestergebärde Priestergewändern Priesterweihe Primärschaltregler Primärseite Primaballerina Primadonna Primaner Primat/EPS Primitivismus Primitivität Primitivtest Primus Primzahl/P Prinz/P Prinzenpaar Prinzessin/F Prinzgemahle Prinzip/S Prinzipien Prinzregent Priorität/P Prioritätsanspruch Prioritätsordnung Prioritätsrecht Prioritätssteuerung Prismen Pritschenwagen Privatadresse/N Privatangelegenheit Privatarena Privataufenthalt/EPST Privatausgabe/N Privatbank/P Privatbankhaus/T Privatbibliothek Privatboote Privatbrief/E Privatchauffeur Privatdarlehen Privatdiskont Privatdozent/FP Privateigentum/S Privatfamilien Privatfernsehen Privatfirma Privatfonds Privatfrage/N Privathaftpflicht Privathaushalt Privatindustrie Privatinteresse/N Privatisierens Privatisierung/P Privatisierungshymne Privatissimum Privatjacht Privatjet Privatkapital/S Privatklageweg Privatkredit Privatküche Privatkunden Privatleben/S Privatlehranstalt Privatleute/N Privatmann Privatmaschinen Privatnummer Privatparkplatz Privatpatient/P Privatperson/P Privatpraxis Privatpressen Privatpublikum Privatrechts Privatreisende/N Privatsammler/N Privatsanatorium Privatschuldienst Privatschule/N Privatschullehrers Privatsekretär/FPS Privatsphäre/N Privatspiele Privatstall Privatuniversitäten Privatunterhaltung Privatunternehmen Privatunternehmer/NS Privatunterricht/S Privatverbindlichkeit/P Privatverbraucher Privatverkauf/Sp Privatvermögen Privatvilla Privatwohnung/P Privatzimmer Privileg/S Privilegien Proband/P Probeabonnement/S Probeabstimmung Probealarm Probeauftrag/STp Probeausdruck/EPS Probeausgabe/N Probebestellung/P Probebetrieb Probeexemplar/EPS Probefahrschüler Probefahrt Probefall Probeflug/STp Probegalopp Probegewehr Probelauf/Sp Probelieferung Probenarbeit Probenplan Probenummer/N Probesendung/P Probespiel Probestück/T Probetraining Probewohnen Probezeiten Probierens Probierstube Problem/EMPS Problematik/P Problembearbeitung/P Problembereich/EPS Problembeschreibung Problembeseitigung Problembestände/N Problembewusstsein/S Problembranche Problembücher Problemfachleute Problemfall/Sp Problemgeschichte/N Problemhistorie Problemkreis/EPT Problemlösen/J Problemlösungsdefizit/EPS Problemmeldung Problemstellung/P Problemteil/EPS Problemthema Problemverarbeitung Problemzusammenhang/S Produkt/EPST Produktangebot Produktaufbau Produktbeschreibung Produktbezeichnung Produktenbörse Produktenhandel Produktentwicklung Produktfamilie/N Produktfoto/S Produktgruppe/N Produktidee/N Produktinformation/P Produktinnovation/P Produktion/P Produktionsablauf/Sp Produktionsabteilung Produktionsanlage Produktionsanstieg/S Produktionsanteil Produktionsauflagen Produktionsaufnahme Produktionsauftrag/STp Produktionsausfall/Sp Produktionsausweitung Produktionsbasis Produktionsbeginn Produktionsbereich/EPS Produktionsbeschränkung/P Produktionsbesprechung Produktionsbetriebe/S Produktionsbranchen Produktionsdistrikte Produktionseinheit/P Produktionseinstellung Produktionserfolge Produktionsergebnis/Qq Produktionserhöhung Produktionsfreigabe Produktionsgebiete Produktionsgründe Produktionsgüter/N Produktionskapazität/P Produktionskosten Produktionskostenanteil Produktionsländer Produktionsleistung/P Produktionsleiter Produktionslinie/N Produktionsmarken Produktionsmaterial Produktionsmethode/N Produktionsmitarbeiter/FNS Produktionsmittel Produktionsmöglichkeit/P Produktionsniveau/S Produktionspreise Produktionsprobleme Produktionsprozess/EPT Produktionsquoten Produktionsreserve/N Produktionssektor Produktionsstätte/N Produktionsstandort/EPST Produktionssteigerung Produktionsstillstand Produktionssystem/S Produktionstätigkeit Produktionstechnik Produktionstechnologien Produktionstest Produktionsübersicht Produktionsunterlagen Produktionsvertrag/STp Produktionsvolumen/S Produktionsvorbereitung Produktionswachstum Produktionswerke Produktionszahlen Produktionsziel Produktionsziffern Produktionszunahme Produktionszweige Produktivität Produktivitätsbonus Produktivitätssteigerung Produktivitätsziffer Produktivvermögen Produktkatalog Produktleitlinie/N Produktlinie/N Produktlücke Produktpalette/N Produktpolitik Produktqualität Produktstabilität Produktübersicht/P Produktverantwortung Produktvorstellung Produktziel/EPS Produzent/FP Prof Prof. Profession/P Professionalismus Professor/FPS Professur/P Profi/S Profiboxer Profierfahrung/P Profifußball Profil/EPS Profilager Profilanzeige Profilautomatik Profilbegrenzung/P Profilbegrenzungslinie Profilberechnung Profilbereich Profilbreite Profildarstellung Profildatei/P Profildaten Profilecke/N Profilfahrten Profilfunktion/P Profilgrenze/N Profilindex Profilkontrolle Profillinie Profilmanipulation/P Profilmodul Profilneurose Profilnummer Profilrand Profilschneidautomatik Profilseite Profilstahl Profilsteuerung Profilwalzwerk Profit/EPSW Profitgier Profitquelle/N Profiverein/EPS Prognose/N Prognoseformel Prognosekurve/N Prognosemethode/N Prognosemodell/S Prognoseprogramm/S Prognoseverfahren/S Prognosewert/EPST Prognostik/R Prognostiker/FNS Programm/EPS Programmänderung/P Programmabbruch Programmablauf/STp Programmablaufplan/S Programmanalyse/N Programmaufruf/EPS Programmausführung Programmbeschreibung Programmbestandteil/EPS Programmbibliothek Programmcode Programmdarstellung/P Programmdatei/P Programmdirektor Programmdokumentation Programmende Programmentwicklung Programmentwicklungsprozess/EPT Programmergänzung Programmerstellung Programmfehler/NS Programmfile/S Programmgestalter/NS Programmgestaltung/P Programmhefte/N Programmierarbeit/P Programmierarbeitszeit Programmieraufgabe/N Programmieraufwand/S Programmierausrüstung Programmierbarkeit Programmiereffizienz Programmiereingänge Programmiereinrichtung/P Programmierer/FNS Programmiererfahrung Programmierfehler/S Programmierkosten Programmierleistung/P Programmiermethodik/P Programmierneigung/P Programmieroberfläche/N Programmierproblem/EPS Programmierrichtlinien Programmiersprache/N Programmierstil/EPS Programmierstunde/N Programmiertechnik/P Programmiertrick/S Programmierumgebung/P Programmierung Programmierzeit Programmierzeitpunkt Programminbetriebnahme Programminstallation/P Programminterface/S Programmkonstrukt/EPST Programmkonstruktion Programmladezeit Programmlauf/Sp Programmleiter Programmliste Programmlücke/N Programmmacher/NS Programmmodul/E Programmnamen Programmobjekt/EPST Programmoptimierung/P Programmpaket/EPS Programmpflege Programmpunkt/EPT Programmquellcode/S Programmrepräsentation/P Programmsammlung Programmschritt Programmsicherung Programmspeicher/S Programmspeicherbereich/E Programmstamm/T Programmstart Programmstelle Programmsteuerung Programmstruktur/P Programmsystem/P Programmtechnik/P Programmteil/EPS Programmtext/EPT Programmtransformation/P Programmumgebung Programmunterlagen Programmverifikation Programmverlust Programmversion/P Programmverwaltung Programmverzweigung/P Programmvorschau Programmwartung Programmwechsel Programmwelt Programmzeitung Programmzustände Programmzweig/EPS Progress/EPT Progression Progressionsvorbehalt Projekt/EPST Projektarbeit/P Projektbearbeitung/P Projektbeginn/S Projektbericht/EPT Projektbeschreibung/P Projekterfahrung/P Projektergebnis/Qq Projektingenieur/EPS Projektion/P Projektionslinse/N Projektionsschirm/S Projektlaufzeit/P Projektleiter/NS Projektmanagement/S Projektname Projektnummer Projektor/P Projektpartner/NS Projektphase/N Projektplanung Projektresultat/P Proklamation/P Prokura Prokuren Prokurist/P Proletariat/S Proletarier/NS Proletarisieren/JS Proletentum/S Prolog/EPS Promenade/N Promenadenanzug/STp Promenadenplatz Promille Prominentenviertel Prominenz/P Promoter/N Promotion/P Pronomen/S Pronomina Propaganda Propagandaaktion/P Propagandafeldzug/STp Propagandakampagne Propagandamanöver Propagandamaschinerie Propagandamaterial Propagandaparolen Propagandaphrasen Propagandaveranstaltung Propagandazwecken Propagandist/P Propagierens Propagierung/P Propeller Propellermaschinen Prophet/P Prophezeiens Prophezeiung/P Prophylaxe/N Proportion/P Proportionalausgang/Sp Proportionaldruck Proportionalfaktor Proportionalität/P Proportionalregelung Proportionalschrift Proportionalsteuerung Proportionalteil Proportionalterm Proportionalventil/EPS Proportionalventilkarten Proporz Propyläen Prosa Prospekt/EPS Prospektmaterial Prospektunterlagen Prostata Prostitution Prostitutionszwecke Protagonist/P Protein/EPS Protektion/P Protektionismus Protektionist/P Protektor/PS Protektorat/ST Protest/EPT Protestaktion/P Protestant/P Protestantismus Protestbrief/ST Protestkundgebung/P Protestmarsch Protestsänger Protestschreiben/S Protestschritt Proteststreik Proteststurm/S Prothese/N Protokoll/EPS Protokolldrucker Protokollfehler Protokollierens Protokollierung/P Proton/PS Prototyp/PS Prototypenbau Prototypenserie Proviant/S Provider/NS Provinz/P Provinzanwalt Provinzbänkler Provinzler/N Provinzstädte Provinztheater/S Provision/P Provisionsabrechnung/P Provisionsjäger Provisionsverkäufer Provisionsvermittler Provisorien Provisorium Provitamin/EPS Provokation/P Proxy/S Prozedur/P Prozent/EPS Prozentangabe/N Prozentanteil/EPS Prozentgehalt Prozentpunkt/EPST Prozentsätze/N Prozentsatz Prozentskala Prozentsteigerung/P Prozentwert/EPST Prozentzahl Prozess/EPT Prozessabbruch Prozessbeginn Prozessbeobachtern Prozessbeschreibung/P Prozessdauer Prozessführung/P Prozessfunktion/P Prozession/P Prozessionsstraße/N Prozesskosten Prozessmodell Prozessor/PS Prozessordnung Prozessorleistung Prozessorregister Prozessorumgebung Prozesspraxis Prozessrechner Prozessrechnersystem Prozessserie Prozesssteuerung Prozessvertreter Prozessvollmacht Prüderie Prüfadapter/NS Prüfamtsvorschriften Prüfanweisung Prüfaufwand Prüfbescheinigung Prüfeinrichtung Prüfens Prüfer/FNS Prüfergebnis/Qq Prüffeld Prüfgerät Prüfingenieur Prüfköpfe Prüfling/EPS Prüfliste/N Prüfmaschinen Prüfprogramm Prüfprotokoll Prüfpunkt/EPST Prüfsiegel Prüfspitze Prüfstand/T Prüfstein/EPT Prüfstelle/N Prüfstrecke Prüfsumme/N Prüftechnik/P Prüfung/P Prüfungsantrag/STp Prüfungsarbeit/P Prüfungsaufgabe/N Prüfungsausschuss/Tp Prüfungsbericht/EPS Prüfungsdienst Prüfungserfolg Prüfungskämpfen Prüfungspraxis Prüfungsschwimmen Prüfungsstelle Prüfungstermin/EPS Prüfungsthema Prüfungsverfahren/S Prüfungsvorbereitung Prüfungswesen/S Prüfverfahren/S Prüfzettel Prügel Prügelknabe/N Prügelstrafe Prügelszene/N Prunk Prunksitzung Prunkstück/S Psalm/PS Pseudoerklärung/P Pseudonym/EPS Pseudoromantik Psyche Psychiater/FNS Psychiatrie Psychoanalyse Psychoanalytiker/NS Psychologe/FN Psychologie Psychopath Psychopharmaka Psychose/N Psychosomatik Psychoterror Psychotherapeut/FP Psychotherapie/N Ptolemäus Ptolemaios Pünktlichkeit Püppchen/S Püree Pütt/S Pub/S Pubertät Pubertätsjahre Pubertätszeit Publikation/P Publikationsliste/N Publikum/S Publikumsbeteiligung Publikumserfolg Publikumsgeschmack Publikumsnachfrage Publizist/P Pudding/S Pudel/S Pudelmütze/N Puder/S Puffärmel/N Puffer/S Puffergröße Puffermodul Pufferspeicher/NS Pufferverstärker Pulk Pulle Pulli Pullover/NS Puls/T Pulsader/N Pulsamplitude Pulsbreitenantwort Pulsbreiteninformation/P Pulsmitte Pulsschlag/Sp Pult/EPST Pulver/S Pulverfass/T Pulvergewehre Puma/S Pumpenhübe Pumps Pumpspeicherwerke Pumpstation/P Punk/S Punkt/EPTW Punktesammeln Punkteteilung Punktfolge/N Punktgewinn Punktgrafik Punktgröße/N Punkthelligkeit Punktjäger Punktkämpfe Punktkette Punktladung Punktniederlage Punktraster Punktsieger Punktspiele Punktspielsaison Punktsystem Punkttabellen Punktum Punktverlusten Punktvorsprung Punktwert/EPST Punktzahl/P Punktzeile/N Punsch Pupille/N Puppe/N Puppengeschirr Puppenmama Puppenmutter Puppenspieler Puppenwagen Purist/P Puritanismus Purpur Purpurstaub Put/EPS Pute/NR Puter/S Putsch/T Putschbeginns Putschoffiziere Putschversuche/S Putz Putzfrauen Putzgroßhandlung Putzlappen Putzmittel/N Puzzle/S Pygmäe/N Pyjama/S Pyramide/N Pyramidenbau Pyrenäen Pyrrhus Pythagoras Pythia/S Quäker Quäler/NS Quälerei Quäntchen/S Quader/NS Quadrant/P Quadrantenfestlegung Quadrat/EPST Quadratkilometer/N Quadratmeile Quadratmeter/NS Quadratmeterpreis/EPT Quadratur Quadratwurzel Quadratzentimeter Quadrofonie Quadrophonie Qual/P Qualifikation/P Qualifikationsleistung Qualifikationsspiel/E Qualifizierung/P Qualität/P Qualitätsansprüche/N Qualitätsarbeit/P Qualitätsbeurteilung/P Qualitätseigenschaft/P Qualitätskontrolle/N Qualitätsmaschine/N Qualitätsmerkmal/EPS Qualitätsprüfung/P Qualitätssicherung Qualitätsspanne/N Qualitätsstandard Qualitätsstufe/N Qualitätsüberlegung/P Qualitätsüberwachung Qualitätsverbesserung/P Qualitätsware/N Qualitätswein/EPS Qualle/N Qualm/S Qualmerei/P Quant/PS Quantendynamik Quantenmechanik Quantentheorie Quantifizierens Quantifizierung/P Quantisieren/JS Quantität Quantor/P Quantum/S Quarantäne/N Quarantänestation/P Quark/S Quart Quartal/EPS Quartalsabschluss/Tp Quartalsanfang Quartalsbericht Quartalsergebnis/Qq Quartalsvergleich/E Quartalszahlen Quartett/EPST Quartier/EPS Quarz/EPT Quarzkristall Quarzoszillator Quarzuhr/P Quasar Quatsch Quebec/S Quecksilber/S Quedlinburg Queen Queensland Quellcode/S Quelldatei/P Quelldaten Quellenangabe/N Quellenseite Quellensteuer Quellenstudie/N Quellenstudium Quellimpedanz Quellpaket/EPS Quellprogramm/EPS Quellsprache/N Quelltext/EPT Quellverzeichnis/Qq Quellwasser/NS Quellwiderstand Querachse/N Querbeschleunigung/P Quere Querelen Querformat Querinklinometer/S Querlage Querneigung Querpass/Tp Querrichtung Querschläger/S Querschneiden Querschnitt/EPS Querschnittsabmessung/P Querschnittslähmung/P Querstraße/N Quersumme/N Querverbindung/P Querverweis/EPT Querweg/EPT Quetschens Quetschung/P Quickstepp/S Quintessenz Quirl/EPS Quitte/N Quitten/J Quittierens Quittierung/P Quiz Quota/S Quote/N Quotenregelung/P Quotient/P Quotierens Quotierung/P RAF RAID RAM RFC RIAS ROMs RPM RTC RTL RWE Rächer/FNS Rädchen/S Rädelsführer/FNS Räder/N Rädergetriebe/NS Räderkasten/S Räderwerk/EPS Rändelschrauben Ränder Ränge/N Räte/FGN Räterepublik Rätsel/S Rätselecke Rätselraten Rätselsendung/P Räuber/NS Räuberpistole Räuchersalami/S Räumens Räumfahrt Räumlichkeit/P Räumung/P Räumungsbefehl/EPS Rabatt/EPTW Rabattmarke/N Rabbiner/FNS Rabe/N Rabeneltern Rabulistik Rache/N Racheakt/EPS Rachegelüste/N Rachen/S Rachenhöhle/N Rachitis Rachsucht Rad/ST Radantrieb/EPS Radar/S Radaranlage/N Radarblindlandung Radarfalle/N Radargerät/ET Radargürtel/S Radarkontakt Radarkontrolle Radarlandegerät/EPST Radarschirm/ET Radarschirmbild/T Radarschirmbildern Radarstation/P Radarsteuerung Radarstörsender/N Radarstrahl Radarwächter Radarwarnnetz/EPT Radarzeichnung Radau Radaubrüder/N Radaubruder/S Radaufhängung/P Radbremse/N Radbruch Raddampfer/NS Radebrecher Radfahrer/NS Radfelge/N Radgabel Radgestell/EPS Radialbohrmaschine/N Radialfräser/NS Radialkomponenten Radialnerv/S Radiant/P Radiation/P Radiator/PS Radien Radierens Radiergummi/S Radierkunst Radiermesser/NS Radiernadel Radierung/P Radieschen/S Radikalenerlass/EPT Radikalisierens Radikalisierung/P Radikalist/P Radikalkette/N Radikalkur Radio/S Radioaktivität/P Radioansager/FNS Radioapparat/EPT Radioastronomie Radiobastler/NS Radiobiologe Radiobiologie Radiochemie Radiochemiker/S Radiodurchsage/N Radioempfänger/NS Radiofrequenz Radiogehäuse/NS Radiogeschäfte/NS Radiogramm/EPS Radiohändlern Radiohändlers Radiokanäle Radiokanal/S Radiokompass/ET Radiologe/FN Radiologie/N Radiomechaniker/N Radiometrie/N Radionachrichten Radionavigation Radiopeilgerät/EPS Radiopeilung/P Radioröhre/N Radiosender/NS Radiosendung/P Radioskop/EPS Radiosonde/N Radiostation/P Radiostimme Radiostrahlung Radiotechnik/R Radiotechniker/NS Radiotelegramm/PS Radiotelegraphie Radioübertragung/P Radiowecker/NS Radiowellen Radiozeitung/P Radium Radiumbehälter/N Radiumheilverfahren/S Radiumstrahlen Radiumtherapie/N Radius Radiusdifferenz Radkappen Radkasten/S Radkörper/NS Radkränzen Radkranz/T Radkreuz/EPT Radler/FNS Radmutter/N Radon/S Radreifen/S Radrennbahn Radrennen/S Radschaufel Radschlepper/NS Radschlüssel/NS Radspeiche Radsport/S Radsportstadion Radspuren Radstände/N Radstand/T Radstern/EPS Radstürzen Radsturz/T Radtour Rafael/S Raffinerie/N Raffinesse/N Rahm/PS Rahmen/S Rahmenabkommen/S Rahmenauftrag/STp Rahmenbedingung/P Rahmenpläne/N Rahmenplan Rahmenplanung Rahmenprogramm Rahmenvertrag/STp Raiffeisenbank/P Raiffeisenkassen Raimund/S Rain/EPS Raine/NR Rainer/S Rakete/N Raketenandrohung Raketenantrieb Raketenbasis Raketendrohung Raketendschungel Raketengeschoss/EPT Raketenstart/T Raketenstützpunkt Raketentruppen Raketenversuche Raketenwaffen Ral Ralf/S Rallye/S Ralph/S Ramdisk/S Rammbock/ST Rampe/N Rampenfunktion/P Rampenlicht Ramses Rand/ET Randalierszene Randbedingung/P Randbemerkung Randbereich/EPS Randbezirk/EP Randerscheinung/P Randfall/Sp Randgebiet/EPST Randindex Randindizes Randkoordinate/N Randposition/P Randproblem/EPS Randstein/EPS Randstellung Randstrich Randzone/N Rangabzeichen/S Ranges Rangfolge/N Rangliste/N Rangordnung/P Rangs Rangstufe/N Raphael/S Rappe/N Rapport/EPST Raps/T Rapsöl Rarität/P Rasenplätze/N Rasenplatz Rasensport Raserei/P Rasierapparat/EPST Rasse/N Rassendiskriminierung Rassengesetze Rassenhass/T Rassenkämpfe/N Rassenkampf Rassenkrawall Rassenmischung/P Rassenproblem/E Rassentrennung Rassismus Rastatt Rastbereich/T Rastblech/E Rastdorn/E Raster/S Rasterfahndung/P Rastermaß/EPT Rasterpapier Rasterweite/N Rasthaus/Tp Rastplätze/N Rastplatz Raststätte/N Rat/ST Ratenkauf/Sp Ratensenkung Ratenzahlung/P Ratgeber/FNS Rathaus/Tp Ratifikation/P Ratifizierens Ratifizierung/P Ratifizierungsdebatte Ratifizierungsurkunden Rating/S Ration/P Rationalisierens Rationalisierung/P Rationalismus Rationalität Rationalitätskriterien Rationalitätskriterium Rationierens Rationierung/P Ratlosigkeit Rats Ratsbeschluss/Tp Ratsche Ratschlag/Sp Ratsentscheidung/P Ratsherren Ratsmitglieder/N Ratspräsidenten Ratssitzung/P Ratstisch Ratsvorsitzende Ratte/N Rattengift Rattenloch/T Rattenplage Rattenschwanz Ratzeburg Raub Raubbau/S Raubdruck Raubdruckern Raubens Raubgier Raubkopie/N Raubmord/EPT Raubpolitik Raubüberfall/Sp Raubvögel/N Raubvogel Raubzug/STp Rauch/RS Raucher/NS Raucherhusten Rauchfahne Rauchgenuss/Tp Rauchmaschine Rauchsäulen Rauchverbot Rauchvergiftung Rauchverzicht Rauchvorhang Rauchwaren Rauchwolke/N Raudi Raufasertapete/N Rauhaardackel/NS Rauheit/P Rauigkeit/P Raum/EST Raumaufteilung/P Raumbedarf/S Raumbereich/PS Raumfahrer Raumfahrt Raumfahrtbehörde Raumfahrttechnik Raumfahrzeuge Raumflug/Sp Raumforscher Raumforschung Raumgestaltung Raumklima Raummangel Raumprogramm Raumschiff/EPT Raumstation/P Raumstellung Raumtemperatur Raumverhältnis/Qq Raumwinkel Raupe/N Raupenansteuerung Raupenantrieb/P Raupenfahrwerk Raupenfahrzeug/ET Raupensteuerung Raureif/ST Rausch Rauschgift/EPST Rauschgiftsucht Rauschgiftverbot Rauschpegel/S Rauschunterdrückung Rauschuntergrund/S Rausschmeißerjob Rausschmiss/EPT Ravenna Ravensburg/R Ravioli Razzia Razzien Reagan/S Reagenzgläser Reagenzglas/T Reaktion/P Reaktionsfähigkeit Reaktionsgeschwindigkeit/P Reaktionsnorm/P Reaktionszeit/P Reaktivierens Reaktivierung/P Reaktor/PS Realertrag/STp Realgewinne Realisation Realisierbarkeit/P Realisierens Realisierung/P Realisierungschance/N Realisierungsmöglichkeit/P Realismus Realist/FP Realität/P Reallöhne Reallohn Realo/S Realschüler Realzins/P Realzuwachs/T Rebe/N Rebell/P Rebellenführer Rebellion/P Rebhuhnbevölkerung Reboot Rechaud/S Rechenanlage/N Rechenaufgabe/N Rechenaufwand/S Rechenbeispiel/EPS Rechenfähigkeit/P Rechenfehler/NS Rechengehirn Rechenhilfen Rechenkapazität/P Rechenleistung/P Rechenmaschine/N Rechenregel/N Rechenroboter Rechens Rechenschaft Rechenschaftsbericht/E Rechenschieber/NS Rechenschritt/EPS Rechenspielereien Rechentabellen Rechenvorgang/Sp Rechenvorrichtung Rechenvorschrift/P Rechenzeit/P Rechenzentren Rechenzentrum/S Recherche/N Rechnens Rechner/NS Rechneranschluss/Tp Rechnerausfall Rechnerbaugruppe/N Rechnereffekt Rechnereinheit Rechnerelektronik Rechnerfähigkeit Rechnerfamilie/N Rechnergehäuse/NS Rechnergeneration/P Rechnergurus Rechnerkammer Rechnerkapazität/P Rechnerkarte/N Rechnerkenntnisse/N Rechnerkette Rechnerkommando/S Rechnerkommunikation Rechnerkomponente/N Rechnerkonzept/EPS Rechnerleistung/P Rechnernetz/E Rechnerplatine/N Rechnerschnittstelle/N Rechnerseite Rechnersystem/E Rechnerteil Rechnerunterstützung Rechnerzweig Rechnung/P Rechnungsabschluss/Tp Rechnungsbetrag/STp Rechnungsdatum Rechnungseingang/S Rechnungserstellung Rechnungsform Rechnungsführung/P Rechnungshof Rechnungskopie Rechnungsprüfer/NS Rechnungsprüfung Rechnungsstellung Rechnungswesen/S Rechteck/EPS Rechteckfeld Rechtecksignal/E Rechtfertigens Rechtfertigung/P Rechtgläubigkeit Rechthaber/FNS Rechthaberei/P Rechtlichkeit Rechtlosigkeit Rechtmäßigkeit Rechtsabteilung Rechtsakt/EPST Rechtsangelegenheit/P Rechtsansprüchen Rechtsanspruch/S Rechtsanwälte/FN Rechtsanwalt/ST Rechtsanwaltsordnung Rechtsausschuss/Tp Rechtsbefugnis/q Rechtsbegehren/S Rechtsbegriff Rechtsbehelfe Rechtsbeistände/N Rechtsbeistand/T Rechtsbelehrung/P Rechtsberater/NS Rechtsbeschwerde Rechtsbeugung/P Rechtsbewusstsein/S Rechtsbrecher/NS Rechtsbrüche/N Rechtsbruch/ST Rechtschaffenheit Rechtschreibehilfe Rechtschreiben/JS Rechtschreibfehler/NS Rechtschreibkontrolle/N Rechtschreibprüfung Rechtschreibreform/P Rechtschreibregel/N Rechtsdrehung Rechtseinheit Rechtseinwänden Rechtseinwand/T Rechtsempfinden/S Rechtsentwicklung Rechtsetzung Rechtsexperten Rechtsextremist/P Rechtsfahrt Rechtsfall/Sp Rechtsfindung Rechtsform/P Rechtsfrage/N Rechtsgefühl/S Rechtsgelehrten Rechtsgemeinschaft Rechtsgründe/N Rechtsgrund/T Rechtsgrundlage/N Rechtsgrundsätzen Rechtsgrundsatz/T Rechtsgültigkeit Rechtsgutachten/S Rechtshänder/N Rechtshandlung/P Rechtshilfe Rechtshilfeverkehr/S Rechtshilfeverträge Rechtsirrtümer Rechtsirrtum/S Rechtskenntnis/q Rechtskraft Rechtskurve/N Rechtslage/N Rechtsmängel/N Rechtsmangel Rechtsmittel/NS Rechtsnorm/P Rechtsordnung/P Rechtsparteien Rechtspflege Rechtsprechung/P Rechtsradikalismus Rechtsschutz/T Rechtsschutzexperten Rechtssicherheit Rechtssprache Rechtssprechung Rechtssprüchen Rechtsspruch/S Rechtsstaat/T Rechtsstaatlichkeit Rechtsstellung Rechtsstreit/EPT Rechtsstreitigkeit/P Rechtssystem/EPS Rechtstradition Rechtsunwirksamkeit Rechtsverbindlichkeit Rechtsverdreher Rechtsverfahren Rechtsverkehr/S Rechtsverletzung Rechtsverordnung/P Rechtsvertreter Rechtsweg Rechtswesen/S Rechtswidrigkeit/P Rechtswissenschaft Rechtszwang Reck Recklinghausen Reclam Recycling/S Redakteur/EFPS Redaktion/P Redaktionsschluss/Tp Redefinition/P Redefinitionsmöglichkeit/P Redefreiheit/P Redegabe/N Redekünste/N Redekunst Redensart/P Redeschwall/S Redewendung/P Redford/S Redigierung Redlichkeit Redner/FNS Rednertribüne Redseligkeit Reduktion/P Redundanz/P Reduzierens Reduzierung/P Reeder/NS Reederei/P Reedereikonsortien Reedereikontor Reedkontakte Reedstäbe/N Reedstab Reengineering Reeperbahn Referat/EPS Referendariat/EPS Referendum/S Referent/FP Referenz/P Referenzamplitude Referenzanalyse Referenzbereich Referenzbild Referenzbuffer/S Referenzecho/S Referenzerkennung Referenzfläche Referenzflächenträger Referenzgeometrie Referenzierens Referenzierung/P Referenzimpuls/EPT Referenzinformation/P Referenzkopf/T Referenzlänge Referenzlage Referenzlaufzeit Referenzlaufzeitmessung Referenzmaße Referenzmasse Referenzmessung Referenzplatte Referenzpreise Referenzpunkt/S Referenzquelle Referenzreflektor Referenzsignal/EPS Referenzspannung/P Referenzspannungsquelle Referenzstern Referenzstrecke Referenzstreckenlänge Referenzträger Referenzverstärkung Referenzzeit/P Referenzzeitmessung Refinanzierens Refinanzierung/P Reflektant/P Reflektor/P Reflektorfläche Reflex/EPT Reflexbewegung/P Reflexfläche Reflexion/P Reflexionsfläche Reflexionskultur Reflexionsprobleme Reflexionswinkel Reflexivität Reflexlichtschranke/N Reform/PR Reformation Reformationsgottesdienst Reformationskurs/EPT Reformbemühung/P Reformbewegung/P Reformhaus/Tp Reformkonzept/EPS Reformkurs/T Reformpäpste Reformpläne/N Reformprogramm Reformulieren/JS Reformversuch/EPS Reformvorhaben/S Reformvorschlag/STp Refrain/S Refugium Regal/EPS Regalien Regatta Regatten Regel/J Regelabweichung/P Regelalgorithmen Regelalgorithmus Regelausschlag/STp Regelautomatiken Regelbereich/S Regeleingang/Sp Regelfall/S Regelfunktion/P Regelkreis/EPT Regelmäßigkeit/P Regelmechanismen Regelmechanismus Regelmöglichkeit/P Regelparameter/NS Regelprogramm/S Regelprozess/EPT Regelschaltung Regelschwankung/P Regelschwingung/P Regelsignalen Regelspannung/P Regelstrecken Regelteil Regelungsgesetz Regelungsmodell Regelungsprogramme Regelungstechnik Regelungstechniker Regelungsteil Regelungsvorgang/Sp Regelungszentren Regelungszustände Regelungszwecke Regelverhalten/S Regelverstärker Regelverstärkung Regelwidrigkeit Regelwissen Regelziel Regelzwecke Regelzyklus Regenbögen Regenbogen/S Regenbogenfarben Regeneration Regenerierens Regenerierung/P Regenfall/Sp Regenguss/Tp Regenmäntel/N Regenmantel Regenmenge/N Regens Regensburg/R Regenschauer Regenschirm Regent/P Regentag/EPT Regentraufe Regentröpfen Regentropfen Regentschaft Regentschaftsrat Regenwälder Regenwald Regenwassertank Regenwetter Regenwolken Regenwürmer Regenwurm/T Regenzeit/P Reggae Regie Regierens Regierung/P Regierungsabkommen/S Regierungsamt Regierungsantritt/EPST Regierungsarbeit Regierungsausschuss/Tp Regierungsbank Regierungsbeamten Regierungsbeamter Regierungsbezirke Regierungschef/S Regierungsdekret Regierungsebene Regierungsform/P Regierungsgewalt Regierungshäuptern Regierungskonferenz Regierungskrise/N Regierungsmannschaft Regierungsorgan Regierungspapiere/N Regierungspräsident/P Regierungsprogramm Regierungsqualität Regierungsseite Regierungssitze Regierungsstelle/N Regierungsstreitkräfte Regierungssturz Regierungstyp/PS Regierungsverhandlung/P Regierungsvertreter Regierungsviertel Regierungsvorschläge Regierungswechsel Regierungszeit Regime/S Regiment/RST Region/P Regionalbank/P Regionalbüro Regionalisieren/JS Regionalmuseen Regionalpolitik Regionalprogramm Regionalwahlen Regisseur/EFPS Register/NS Registereintragung Registerinhalt/EPST Registervergabe Registratur/P Registrierens Registrierkasse/N Registrierung/P Reglement/EPS Reglementierens Reglementierung/P Regler/NS Reglereigenschaften Reglergehäuse Reglergleichung Reglerkarte Reglertyp Reglerzustand Regress/T Regressanspruch/S Regression/P Regresspflicht/P Regsamkeit Regularien Regularität/P Regulation/P Regulierens Regulierung/P Regulierungsbedarf/S Regung/P Reh/EPS Rehabilitierens Rehabilitierung/P Rehböcke Rehlederwäsche Rehwiese Reibens Reiberei/P Reibräder Reibrad/ST Reibradachse/N Reibradkontrolle Reibrolle Reibung/P Reibungsflächen Reibungskorrektur Reibungslosigkeit Reibungsparameter Reibungsrippen Reichhaltigkeit Reichs Reichsacht Reichsaußenminister Reichsautobahnen Reichsbahngesellschaft Reichsbank Reichsbankpräsident Reichsdienststelle Reichsduma Reichsführer Reichsgebiet Reichsgericht Reichsgerichtshof Reichshauptstadt Reichshof Reichshofrat Reichsjustizminister Reichskammergericht Reichskanzlei Reichskirche Reichsklöster Reichskriegsminister Reichslandbund Reichslandfrieden Reichslehen Reichsluftschutzgesetz Reichsmarineamt Reichsmark Reichsminister Reichspartei Reichsparteitag Reichsprotektorat Reichsrat Reichsritter Reichsstädte Reichsstände Reichstag/ST Reichstagsauflösung Reichstagsgebäude Reichstagsneuwahlen Reichstagspräsident Reichstagswahl Reichstagswahlergebnis/Qq Reichsteilung Reichsvasallen Reichsverband Reichsverfassung Reichsverteidigung Reichsverweser Reichswährung Reichswald Reichswehrprozess/EPT Reichtstagswahlen Reichtümer/N Reichtum/S Reichweite/N Reifens Reifenwechsel Reifeprüfung/P Reifevermerk Reifung/P Reifungsprozess/EPT Reigen Reihenentwicklung/P Reihenfolge/N Reihenhaus/Tp Reihenschaltung/P Reihensiedlung/P Reihung/P Reim/S Reimplementierung Reineke/S Reinertrag/STp Reinfall/Sp Reingewinn/EPS Reinhalten/JS Reinhardt/S Reinheit Reinheitsgebot/EPS Reinigens Reinigung/P Reinigungsalkohol Reinigungskasse Reinigungsmittel/NS Reinigungstrupp/S Reinkultur/P Reinlichkeit Reinschrift/P Reis Reißbrett Reißer Reißnägel Reißnagel/S Reißverschluss/Tp Reißwolf Reiseagenturen Reisebedürftige Reisebegleiter Reisebekanntschaften Reisebericht Reisebranche Reisebüro/S Reisebuch Reisedauer Reiseführer/NS Reisegefährte Reisegepäck/S Reisegeschwindigkeit Reisegesellschaft/P Reisekosten Reisekostenabrechnung Reiseland Reiseleiter/S Reiselust Reisemittel Reisepass/Tp Reisepläne/N Reiseplan/S Reisesaison Reisescheck/S Reisetagen Reisetasche/N Reisetermin Reiseunternehmen Reiseverbot/S Reiseverkehr/S Reisewelle Reisezeit Reiseziel/EPS Reisig/S Reiskultur Reiter/FNS Reiterkönig Reiterpension/P Reiterwerbung Reithalle Reitpferd/EPT Reitschule Reitunterricht Reizbarkeit Reizes Reizkonstellation/P Reizung/P Reklamation/P Reklame/N Rekognoszierung Rekompilation Rekonstruktion/P Rekonvaleszenz Rekord/EPS Rekordbeteiligung Rekordergebnis/Qq Rekordflug/STp Rekordflut Rekordgewinnen Rekordhalter/NS Rekordhöhe/N Rekordjahr Rekordsätze/N Rekordsprinter Rekordsummen Rekordtaucher Rekordtempo Rekordumsatz Rekordversuch/E Rekordzeit/P Rekordzinsen Rekrut/P Rektor/FPS Rektorat/S Rekultivieren/JS Rekursion/P Relais Relaisansteuerung Relaisausgang/Sp Relaiskarte Relaismagneten Relaisschalter Relaissteuerung Relaistest Relation/P Relativierbarkeit Relativierens Relativierung/P Relativismus Relativität/P Relativitätstheorie Relativpronomen/S Relativpronomina Relativzahl Relevanz Relief/S Reliefkunst Religion/P Religionsfreiheit/P Religionsfrieden Religionskriege Religionsphilosoph Religionsspaltung Religiosität Relikte/N Rembrandt/S Remoulade Ren/S Renaissance/N Renate/S Rendezvous Rendite/N Renditeveränderung Rendsburg Renitenz Rennauto/S Rennbahn/P Rennchef Renner Rennleiter Rennleitung Rennpferd/EPT Rennplätze Rennquintett Rennrodler Rennsiege Rennsportwagen Rennstall Renntag Rennwagen Renommee Renovierens Renovierung/P Renovierungsarbeiten Rentabilität Rente/N Rentenalter Rentenanpassungsgesetz Rentenansprüche Rentenbasis Rentenbelastung Rentencrash Rentenerhöhung/P Rentenfinanzen Rentenmarkt/STp Rentenreform Rentensanierung Rentensicherung Rentenversicherung/P Rentenversicherungsnummer Rentenzahlung Rentier Rentner/NS Reorganisation/P Reparation/P Reparationsforderung/P Reparationskommission/P Reparationslieferung/P Reparationsverhandlung/P Reparatur/P Reparaturanfälligkeit Reparaturarbeiten Reparaturarbeitszeit Reparaturauftrag/STp Reparaturaufwand Reparaturauswertung Reparaturbericht/EPST Reparaturbetrieb/E Reparaturdaten Reparaturgewerbe Reparaturkosten Reparaturlieferung/P Reparaturmöglichkeit Reparaturnotiz Reparaturpauschale Reparaturplatinen Reparaturstatistik Reparaturwerkstätten Reparaturzeit Reparaturzwecke Repertoire/S Repetition/P Replik/P Report/EPRS Reportage/N Reporter/FNS Repräsentant/P Repräsentanz/P Repräsentation/P Repräsentationskosten Repräsentativität Repressalie/N Repression/P Repressivpolitik Reproduktion/P Reproduktionsgenauigkeit Reproduktionstechnik Reproduzierbarkeit Reptil/S Reptilien Republik/P Republikaner/NS Reputation Requisit/P Reservat/EPT Reservation/P Reserve/N Reservebank Reservebildschirme Reserveleitung Reserveräder Reserverad/T Reservesatz/T Reservetage Reservetank/S Reservetruppen Reservevorschriften Reservierens Reservierung/P Reservoir/ES Reset/S Resetleitung/P Resetlogik/P Resetproblem/EPS Resetschaltung/P Resetsignal/EPS Residenz/P Residuen Residuum/S Resignation Resistenz Resolution/P Resonanz/P Resonanzbedingung/P Resozialisieren/JS Respekt Respektierens Respektierung/P Respektlosigkeit/P Ressentiment Ressort/S Ressortchef/S Ressortverteilung/P Ressource/N Ressourcenausbeutung Ressourcenbedarf/S Ressourcenverknappung Rest/EPST Restauflage/N Restaurant/S Restauration/P Restaurator/FPS Restaurierens Restaurierung/P Restbesatzung Restbestände/N Restbestand/T Restbetrag/STp Restdeckung Restentwicklung Restexemplar/EPS Restfehler Restitutionsedikt Restlaufzeit/P Restlieferung Restmaterial Restmenge/N Restmoral Restpapier Restpotenz Restriktion/P Reststrecke/N Restverstand Restwert/EPS Resümee/S Resultat/EPST Retorte/N Retortenbaby/S Retortenbefruchtung Retoure/N Retourticket/S Retrospektive Rettens Retter/NS Rettich/EPS Rettung/P Rettungsaktion/P Rettungsboot/ET Rettungsdienst Rettungsmannschaft/P Rettungsmaßnahmen Rettungsplan Rettungsring/EPT Rettungsschuss/Tp Rettungsstelle Rettungsversuch/P Retusche/N Reue Reuter/S Reutlingen Revanche Revanchist/P Revier/EPS Revierförster Revision/P Revisionismus Revisionist/P Revisionsnummer Revisionsverhandlung Revisor/S Revolte/N Revolution/P Revolutionierens Revolutionierung/P Revolutionsrat/S Revolver/NS Rezensent/P Rezension/P Rezept/EPST Rezeption/P Rezess Rezession/P Rezessionsgefahr/P Rezessionsjahr Rezessionskurs/EPT Rezessionsmodell Rezessionsrisiko Rezessionswolken Rhabarber/S Rhapsodie/N Rhein/S Rheinbund Rheinbundstaaten Rheindampfer Rheinfelden Rheinfestung Rheingrenze Rheinland/T Rheinlandzone Rheinmetall Rheinprovinz Rheinschifffahrt Rheinufer Rheinverkehr Rheinwein Rhetorik/R Rheuma/S Rhodesien Rhodesier Rhodos Rhomben Rhombenmuster Rhombus Rhone Rhythmen Rhythmik Rhythmus Riad Ribbentrop/S Richard/S Richelieu/S Richtens Richter/FNS Richteramt Richtermiene Richterstuhl Richtfunk/S Richtfunkfrequenz/P Richtfunkstrecke/N Richtgeschwindigkeit/P Richtigkeit Richtigstellen/JS Richtlinie/N Richtmaß/EPT Richtmeister Richtpreis/E Richtschnur Richtung/P Richtungsänderung Richtungsanzeige/R Richtungsanzeiger/NS Richtungsbit/S Richtungshörvermögen Richtungskampf Richtungsüberwachung Richtungsumkehrung Richtungswinkel/S Richtungszuordnung Richtwert/EPST Richtzylinder Ricke/N Rico Riecher Riege/NR Riegel/N Riemann/S Riemen/S Riementrieb Ries/EFPT Riesenaufwand/S Riesenauswahl Riesending Riesendinger Riesenerfolg/EPS Riesenfernseher Riesenfichte Riesengebirge Riesengewinne Riesenglas/T Riesenheuschrecke Riesenkerls Riesenkrake Riesenmenge/N Riesenpaket Riesenportion/P Riesenrolle Riesenstern Riesenstunk Riesenteleskop Riesentiger Riesenverluste Riesenvorteil/EPS Riesenwirbel/S Riff/EPT Riga Rille/N Rind/EPRST Rinderauftrieb Rindfleisch Rindvieh/R Ring/T Ringbau Ringelrein Ringfinger/NS Ringhaken/S Ringkämpfchen/S Ringkämpfen Ringkampf/T Ringkerntransformator Ringleitung Ringmanschette Ringrichter Ringstraße/N Rinnsal/EPS Rinnstein/EPST Rio Rippe/GN Risiken Risiko/S Risikoabschätzung/P Risikobegrenzung Risikobereitschaft Risikogeschäft/EPS Risikoprüfung/P Risikostreuung Risikovermeidung Risikoverteilung Risse/S Riten Ritter/N Ritterburg Ritterheer Ritterorden Ritterschaft Ritterschlag/STp Ritterstand Ritual/EPS Ritzel Rivale/FN Rivalität/P Riviera Rivieraküste Rizinus Röcke/MN Röhrenembargo Röhrenempfänger Römer/N Römerzug Röntgenaufnahme Röntgenspektrum Röntgenstrahlen Röschen Röte Röteln Robert/S Roberta/S Robespierre/S Robin/S Robinson/S Robinsonnaturen Roboter/NS Roboterarm/T Roboterprogrammierung Robotersteuerung/P Robotertechnologien Robotisierung Robustheit Rochefort Rochelle Rock/RST Rockefeller/S Rocker/FN Rocktasche Rodens Rodung/P Roger/S Roggen/S Roggenbrot Roggenernte Roggenfeld Roggenstroh Rohdaten Rohdatendarstellung Roheisenerzeugung Roheisengewinnung Roheisenproduktion Rohertrag/STp Roherzeugnis/Qq Rohheit/P Rohkakao Rohkakaomarkt/ST Rohling/EPS Rohmaterial Rohmaterialien Rohmaterialpreise Rohöl/S Rohprodukt/EPST Rohr/EPST Rohrbrüche/N Rohrbruch Rohrleitung/P Rohrstahl Rohrwerk Rohstahlerzeugung Rohstoff/EPS Rohstoffgewinnung Rohstoffhandel Rohstoffindexe Rohstoffmarkt/Tp Rohstoffpreise/N Rohstoffquellen Rohstoffrechte Rohstoffreserven Rohstoffverarbeitung Rohstoffverknappung Rohstoffversorgung Rohstoffvorräte Rohtabak Rohware/N Rohzustand Roland/S Rolandslied Rolex Rolf/S Rollbrettfahren Rollenbesetzung/P Rollendrucker Rollendurchmesser Rollenfarbband Rollenkern Rollenpapier/S Rollenverteilung/P Rollenzuteilung/P Rollgebühren Rolli/S Rollkragenpullover Rollläden Rollladen Rollreibung Rollschuh/EPS Rollstühle/N Rollstuhl/S Rolltreppe/N Rollwinkel Rom/S Roman/EPS Romancier Romanhefte Romano/S Romantik/R Romantiker/FNS Romanze/N Rommel/S Rommé/S Ronald/S Rondo Roosevelt/S Rosen/I Rosenkavalier Rosenkrieg/EPST Rosette/N Rosine/N Rosshäute/N Rosskastanie/N Rosskur/P Rost/T Rostock/S Rotation/P Rotbart Rotchinesen Rotdorn Rotdruck Rotfuchs/T Rotguss/Tp Rothschild/S Rotkäppchen/S Rotkehlchen/S Rotor/P Rotoränderung Rotoranregung Rotorauswertung Rotorbewegung/P Rotorverhalten Rotschrift Rotverschiebung Rotznase/N Roulade/N Roulette Route/NR Router/NS Routine/N Routinesitzung Routineüberprüfung Routing/S Routinier/S Rowdy/S Royalist/P Rübe/N Rübezahl/S Rückäußerung Rückansicht/P Rückantwort/P Rückbeziehung Rückblick/EPT Rückenbreite Rückenlehne/N Rückenmark/S Rückennummern Rückenwirbel/NS Rückerkennung Rückeroberung Rückerstatten/JS Rückfahrkarte Rückfahrt Rückfall/Sp Rückflug/STp Rückfluss/Tp Rückforderung Rückforderungsansprüche Rückfrage/N Rückfront Rückführen/JS Rückgabe Rückgang/STp Rückgewinnen/JS Rückgliederung Rückgrat Rückgriff Rückhalt Rückhand Rückkampf Rückkehr Rückkoppeln/JS Rücklagenzuweisung Rücklauf/Sp Rücklaufzeit/P Rückleitung Rücklicht Rückliefern/JS Rückmarsch Rückmeldefunktion/P Rückmelden/JS Rücknahmekurs/E Rücknahmepreis/EPT Rückpass/Tp Rückreise/N Rückrichtung Rückruf Rückschalten Rückscheck/S Rückschein Rückschieben Rückschlag/STp Rückschluss/Tp Rückschritt/P Rückschub Rückseite/N Rücksendeaktion/P Rücksenden/JS Rücksicht/P Rücksichtnahme Rücksichtslosigkeit Rücksitz/EPT Rückspiegel Rücksprache/N Rücksprung/S Rücksprungadresse/N Rückspulen Rückstände/N Rückstand/T Rückstauklappe/N Rückstellen/JS Rückstöße/N Rücktritt/EPS Rücktrittsangebot Rücktrittserklärung Rückübertragen Rückumstellung Rückverfolgen/JS Rückvergüten/JS Rückversichern/JS Rückwände/N Rückwärtslaufen Rückwärtsorientierung Rückwärtsrichtung Rückwand Rückwandplatine Rückweg/EPS Rückwenden/JS Rückwirken/JS Rückzahlscheine Rückzahlung Rückzahlungsleistung/P Rückzahlungsrate Rückzahlungstermin Rückzahlungsverpflichtung/P Rückzieher/N Rückzug/STp Rüdesheim Rüdiger/S Rührens Rührung/P Rümpfe/N Rüsselsheim/S Rüstens Rüstung/P Rüstungsanstrengung/P Rüstungsaufträge Rüstungsausgaben Rüstungsbegrenzung Rüstungsbeschränkung/P Rüstungsetat Rüstungsexporte Rüstungsfragen Rüstungsgüter/N Rüstungsindustrie Rüstungskontrolle Rüstungskosten Rüstungsmaterial Rüstungsplan Rüstungsspirale Rüstungswettlauf/Sp Rüstzeug Rüttelfestigkeit Ruanda/S Rubel/S Rubelmillionär/EPS Rubens Rubin/EPS Rubinglasfenster Rubrik/P Ruck/S Rucksäcke/N Rucksack/S Ruder/S Ruderboot/ET Ruderer Ruderhaus/Tp Rudi/S Rudolf/S Rufes Rufnummer/N Rufs Rufzeichen/S Rugby/S Ruhelosigkeit Ruhemasse/N Ruhepause/N Ruheplätze/N Ruheplatz Ruherecht Ruhespannung Ruhestand Ruhestandssitz Ruhestellung/P Ruhestörer Ruhestörung/P Ruhestrom Ruhetag/EPST Ruhezustand/ST Ruhm/ST Ruhr Ruhrbesetzung Ruhrchemie Ruhrfestspiele Ruhrgebiet/S Ruhrgroßstadt Ruhrkohle Ruhrkumpel Ruhrschnellweg Ruhrstatut Ruin/EPS Rum/S Rumäne/FN Rumänien/S Rummel Rummelplatz Rumpf/ST Rumpfparlament Rumpsteak/S Run/EP Rundbau Rundblick/EPS Rundbrief/EPS Rundens Rundfahrten Rundfrage/N Rundfunk/S Rundfunkgebühren Rundfunkgeräte Rundfunkgesellschaft Rundfunkinterview Rundfunkkommentator Rundfunkmeldung Rundfunkrat Rundfunksendung Rundfunkstation Rundfunkstreit Rundfunktechnik Rundgang/STp Rundholzpreis/EPT Rundkurs/EPT Rundreisen Rundschau Rundschreiben Rundung/P Runzel Rupert/S Rupie/N Ruß/T Russe/FN Russeneinbruch Russland/S Russlandfeldzug/STp Russlandheimkehrer Rute/N Ruthenium Rutschpartie/N SAP SAS SCSI SEATO SED SFr SGI SGML SMD SMTP SOS SPARC SPD SPÖ SQL SUN SV SWAPO Säbel/NS Säbelhieb/ET Säcke/MN Säfte/N Sägeblättern Sägeblatt/T Sägemehl/S Sägespäne/N Sägewerk/EPS Sägezahnkurve Sägezahnspannung Säkularisierungsprozess/EPT Säkulum Säle/N Sämaschine/N Sänfte/N Sänger/FNS Sängerfest/ET Särge/N Sättel/N Sättigens Sättigung/P Sättigungsgrad Sättigungspunkt Sättigungsverhalten/S Sätze/MN Säuberns Säuberung/P Säuberungsaktion/P Säue/N Säuerns Säuerung/P Säufer/NS Säugetier/EPS Säugling/EPS Säuglingsausstattung/P Säuglingsfürsorge Säuglingsheim/EPS Säuglingspflege/N Säuglingsprodukte Säuglingsschwestern Säuglingssterblichkeit/P Säule/N Säulengang/STp Säulenknauf/Tp Säulenschäfte/N Säumniszuschlag/STp Säuren Sa. Sa/N Saal/ST Saalfluchten Saalschutz Saarbergbau Saarbrücken Saargebiet Saarkohle Saarland/T Saarregierung Saat Saatgut Sabbat/S Sabbatschändung/P Sabine/S Sabotage/N Sabotageakt/EPST Sabotagering Saboteur/EFPS Sachanlage/N Sachargument/EPST Sacharin Sachaufgabe/N Sachausgabe/N Sachbearbeiter/FNS Sachbearbeitung Sachbeihilfe/N Sachbereich/PS Sachbeschädigung/P Sachbücher Sachbuch/T Sache/NR Sacheinlage/N Sacher/S Sachfrage/N Sachgebiet/EPST Sachkatalog/EPST Sachkenner/NS Sachkenntnis/q Sachkonten Sachkosten Sachlage/N Sachleistung/P Sachlichkeit Sachmittel/NS Sachproblem/EPS Sachregister/N Sachschäden Sachschaden/S Sachsen/S Sachsenaufstand Sachsenhausen Sachsenkrieg Sachsenspiegel Sachspende/N Sachverhalt/EPST Sachverhaltsaufklärung Sachvermögen/S Sachverständige/NR Sachverständigenkonferenz/P Sachverstand Sachwalter/NS Sachwert/EPST Sachwertgurus Sachwertpreisen Sachwortverzeichnis/Qq Sachziel/EPS Sachzwänge/N Sack/S Sackgasse/N Sadat/S Sadismus Sadist/P Safari Safran/S Saft/EST Saftladen/S Saga Sagengestalt/P Sahelzone Sahnetorte/N Saigons Saison/S Saisonarbeit/PR Saisonarbeiter/FNS Saisonausverkauf/Sp Saisonbetrieb Saisoneröffnung Saisonkarte Saisonschluss/Tp Saite/N Saiteninstrument/EPT Sakkoanzug/STp Sakrament/EPST Sakrileg/EPS Saladin/S Salamander/NS Salami Salamischeiben Salat/EPST Salatblatt Salatduft Salbei Salbens Salbung/P Salden Saldenbestätigung Saldenmitteilung Saldo Saldomitteilung Saldovortrag/STp Salisbury Salm/P Salmiakgeist/S Salomoneninseln Salon/S Saloniki Salonwagen/S Salpeter/S Salpetererde Salpetersäuren Salto/S Salut Salutschuss/Tp Salvador Salve/N Salz/T Salzbergbau Salzbergwerk/EPS Salzburg Salzfässer/N Salzfass/MT Salzgehalt Salzgitter Salzgurke/N Salzkammergut Salzkartoffeln Salzlauge/N Salzsäule/N Salzsäure Salzsieder/N Salzsole/N Salzstraße/N Salzstreuer/N Salzwasser/S Salzwerk/EPST Sam/EPS Samariter/NS Samarkand Samba/S Sambia Samenbank Samenbehälter/S Samenerguss/Tp Samenfäden Samenfaden Samengang/Sp Samengehäuse/NS Samenkapsel Samenkörner/N Samenkorn/S Samenleiter/NS Samenstrang/Sp Sammelalben Sammelalbum/S Sammelanschluss/Tp Sammelbändern Sammelband/T Sammelbecken/S Sammelbegriff/EPST Sammelbestand Sammelbewegung Sammelbezeichnung/P Sammelbüchse/N Sammeldepot Sammelgüter/N Sammelkarte Sammelladung/P Sammellager/NS Sammelmappe Sammelname/N Sammelnamen/S Sammelns Sammelnummern Sammelplätze/N Sammelplatz/T Sammelruf Sammelstelle/N Sammelsurium Sammelwerk/EPS Sammler/FNS Sammlerbatterie/N Sammlermarken Sammlermeinung Sammlerstück Sammlervölker Sammlung/P Samoainseln Samplermodul Samson/S Samstag/EP Samstagabend Samstagnachmittag Samstagsausgaben Samtfauteuil/S Samthandschuh/EPS Samts Samuel/S Sanatorien Sanatorium Sand/EPST Sandale/N Sandbänken Sandbahn/P Sandbank Sandböden Sandboden/S Sanddorn/P Sandes Sandgrube Sandkästen Sandkapselung Sandkasten/S Sandkörnchen Sandkörner Sandkorn Sandmännchen Sandmänner/N Sandoz Sandpapier/EPS Sandpapieren/W Sandring Sandsäcke Sandsack/T Sandstein/EPS Sandstürmen Sandsturm/S Sandtorten Sanduhr/P Sandwich Sandwichposition/P Sandwüsten Sanftheit/P Sanftmut/S Sanierens Sanierung/P Sanierungsmaßnahme/N Sanitärraum/STp Sanitäter/NS Sanitätsartikel/NS Sanitätsbedarf Sanitätsdienst/EPST Sanitätsflugzeug/EPS Sanitätskästen Sanitätskasten/S Sanitätstruppen Sanitätstrupps Sanitätswache Sanitätswagen Sanitätswesen/S Sanktion/P Sanktionierens Sanktionierung/P Sansibar Santa Santorin Sanyo Sao Saphir/EPS Saragossa Sarajevo/S Saratoga Sardelle/N Sardellenpaste Sardine/N Sardinien/S Sarg/S Sargdeckel/N Sarkasmus Sascha/S Satan/S Satellit/P Satellitenanlage/N Satellitenantenne/N Satellitenstaat/T Satin/S Satinhose/N Satire/N Satiriker/NS Sattel Satteldecke/N Sattelgurt/EPST Sattelpferd/EPST Sattelplätzen Sattelplatz/T Sattelpunkt/EPST Sattelschlepper/NS Satteltaschen Sattelzeug/T Sattler/FNS Sattlerei/P Saturation Saturn Satyr/N Satz/EJT Satzanfang/Sp Satzaussage/N Satzball/Sp Satzbau Satzende Satzgefüge/S Satzlehre/N Satzteil/EPS Satzzeichen/S Sau Sauberkeit Sauberladen Saubohnen Sauce/N Sauciere/N Saudi Sauerbraten/S Sauerbrunnen Sauerei/P Sauerkirsche Sauerkohl/S Sauerkraut Sauermilch Sauerstoff/S Sauerstoffapparat/EPST Sauerstoffflasche/N Sauerstoffmaske/N Sauerstoffsättigung Sauerstoffzelt/EPT Sauerteig/EPT Sauferei Saufgelage/NS Sauger/NS Saugfähigkeit Saugflasche/N Saugpapier/ES Saugpumpe/N Saugrohr/EPST Saugwirkung/P Saul/S Saulgau Saum/ST Saumpfad/ET Saumpferd/ET Saumsättel/N Saumsattel/S Saumtier/ET Sauna/S Saurier/NS Sauseschritt Sausewind Saustall/Sp Saxofon/ES Saxophon/EPS Scanner/NS Schäbigkeit Schächer/NS Schächte/N Schädel/NS Schädelbasen Schädelbrüche/N Schädelbruch Schädeldecke/N Schäden Schädigens Schädigung/P Schädlichkeit Schädling/EPS Schädlingsbekämpfung/P Schäfchen/S Schäfchenwolken Schäfer/FNS Schäferhündin Schäferhund/ET Schäferstündchen/S Schäfte/GN Schäkel/NS Schäkerei/P Schälgeräusche Schändens Schändlichkeit Schändung/P Schänke/N Schären Schärfens Schärfung/P Schärpe/N Schätzchen/S Schätzens Schätzer/FNS Schätzung/P Schäumwerkzeug Schabemesser/N Schabernack/ST Schablone/N Schach/S Schachbrett/T Schachbretter Schachcomputer Schachfeld/T Schachfeldern Schachfigur Schachhefte Schachklub Schachpartie/N Schachprogramm Schachspiel/EPS Schachspiele/NR Schachspieler/S Schacht/SW Schachtanlage Schachtel/JN Schachtelhalm/ET Schachtelsätze Schachtelsatz/T Schachtelungsprinzip Schachwelt Schachzug/Sp Schadenersatz/T Schadenfreude/N Schadens Schadensersatz/T Schadensersatzansprüche/N Schadensersatzforderung Schadensersatzklage/N Schadensfall/Sp Schadensmeldung/P Schadenssumme Schadenstifter Schadhaftigkeit/P Schadloshaltung Schadstoff/EPS Schaf/EPST Schafböcken Schafbock Schaffell/EPS Schaffens Schaffensdrang Schaffensepoche/N Schaffensfreude/N Schaffenskräfte/N Schaffenskraft Schaffhausen Schaffner/FNS Schaffung/P Schafgarbe/N Schafherden Schafhirt/P Schafhürde/N Schafleder/NS Schafott/EPS Schafpelz/EPT Schafschüren Schafschur Schafsköpfe Schafskopf/T Schaft/EPSTW Schaftstiefel/NS Schafzucht/P Schah/S Schakal/EPS Schalensitze Schalheit Schalk/EPST Schalkhaftigkeit Schalkheit Schall/Sp Schallabschwächung Schallabsorption Schallanalyse Schallaufnehmer/N Schallaufzeit Schallbündel/S Schalldämmung/P Schalldämpfer/S Schalldämpfung Schalldose/N Schalldruck Schallehren Schalleigenschaften Schallenergie/N Schallerfassung Schallfrequenz Schallgeber/S Schallgeschwindigkeit/P Schallgrenzen Schallimpedanz Schallimpedanzanpassung Schallimpulse Schallintensität Schallmauer/N Schallmessung/P Schallpegelmessung Schallplatte/N Schallplattenaufnahmen Schallplattenkonzerne Schallplattenmusik Schallplattensendung/P Schallpuls/EPT Schallraum/STp Schallsender Schallstrahl Schalltrichter/NS Schallverhältnis/Qq Schallwege Schallwelle/N Schallwiderstand Schals Schaltabständen Schaltanlage/N Schaltaufgaben Schaltausgang/Sp Schaltausgangsmodul Schaltbild/RT Schaltbrett/RT Schaltbrücken Schalteingang Schalteinheit/P Schalteinstellung Schaltelement/E Schaltens Schalter/NS Schalteranordnung Schalterbeamte/NS Schalterdienst/EPT Schaltereingängen Schalterhalle Schalterinterface/S Schalterleitung/P Schaltermodul Schalternummer Schalterpersonal Schalterschluss/Tp Schalterstellung/P Schalterstunden Schalterteil Schaltflanken Schaltfunktion/P Schaltgetriebe/S Schalthebel/N Schaltier/EPS Schaltjahr/EPS Schaltkasten Schaltknöpfe/N Schaltknopf/T Schaltkontakte/N Schaltkreis/EPT Schaltleitung Schaltlitze Schaltmagnete Schaltmatrix Schaltmodul Schaltnetzteil/PS Schaltpläne/N Schaltplan/ST Schaltpult/ET Schaltpunkt/EPT Schaltpunktanzeige Schaltpunktbereiche Schaltpunktbeschreibung Schaltregler Schaltreglernetzteilen Schaltrelais Schaltrichtung Schaltschema/S Schaltschrank Schaltschwellen Schaltspitzen Schaltstelle/N Schaltströme Schaltstrom Schaltstromverlauf/Sp Schaltsystem/E Schalttafel/N Schalttag/EPST Schalttaster Schaltung/P Schaltungsbeschreibung Schaltungsgestaltung Schaltungsvorschlag/Sp Schaltverhalten Schaltwerk/EPS Schaltzeichen Schaltzeit/P Schaltzentrum Schaltzustände Schaltzustand/ST Schaltzwecken Schalung/P Schaluppe/N Scham Schamgefühl/EPT Schamhaftigkeit Schamlippe/N Schamlosigkeit/P Schamröte Schamteile Schandbänklein Schande/N Schandfleck/PST Schandmäuler Schandmal/EPS Schandmaul/S Schandtat Schanghai Schanktisch Schankwirt/EPT Schankwirtschaft Schanzbau/S Schanzbauten Schar Scharade/N Scharfblick/EPST Scharfmacher/NS Scharfrichter/NS Scharfschießen/S Scharfschütze Scharfsinn/S Scharfsinnigkeit Scharlach Scharlachfieber/S Scharlatan/EPS Scharmützel/NS Scharnier/EPS Scharnierachse Scharnierdeckel/N Schatten/S Schattenbild/R Schattenboxen Schattendasein/S Schattenfläche Schattengestalten Schattenraster Schattenriss/EPT Schattenseite/N Schattenspiel/EPST Schattenwährung/P Schattierens Schattierung/P Schatulle/N Schatz/T Schatzämter Schatzamt/T Schatzanweisung/P Schatzfund/EPST Schatzgräber/NS Schatzinsel Schatzkammer/N Schatzkanzler Schatzmeister/NS Schatzministerium Schatzsucher Schatztruhe Schatzwechsel/NS Schaubild/RT Schaubühne/N Schaubude/N Schaubudenbesitzer/NS Schauder Schauer/S Schauerdrama/S Schauerroman/EPS Schaufel Schaufelbewegung Schaufelgeweih/EPT Schaufelräder Schaufelrad/T Schaufelsensor Schaufelspitze Schaufelstellungsanzeige Schaufenster/NS Schaufensterauslagen Schaufensterdekoration/P Schaufenstergestalter Schaufensterreklame Schaufensterscheibe Schaufliegen Schauhaus/Tp Schauinsland Schaukämpfe/N Schaukästen Schaukampf/T Schaukasten Schaukel Schaukelbrett/T Schaukelbretter Schaukelpferd/ET Schaukelstühle/N Schaukelstuhl/T Schaum/S Schaumbäder/N Schaumbad Schaumburg Schaumgebäck/EPS Schaumgehäuse Schaumgummi/S Schaumgummiresten Schaumlöscher/S Schaumschläger/S Schaumünze/N Schaumwein/EPS Schauplätze/N Schauplatz/T Schauplatzprozess/EPT Schauprozess/EPT Schauspiel/EPST Schauspieler/FS Schauspielereien Schauspielhaus/Tp Schauspielkünste Schauspielkunst Schauspielschule Schausteller/NS Schaustellung Schaustück/EPST Scheck/S Scheckbücher/N Scheckbuch/T Scheckformulare Scheckheft/EPT Scheckkarte Scheckreitereien Scheckvordrucke Scheckzahlung Scheffel/S Scheibe/N Scheibenbremse Scheibenhonig/S Scheibenschießen Scheibenstände/N Scheibenstand Scheibenwischer/NS Scheich/EFPS Scheichtum Scheidelinie/N Scheidens Scheidewände/N Scheidewand Scheidewasser/S Scheideweg/ET Scheidung/P Scheidungsgründe/N Scheidungsgrund Scheidungsklage/N Scheidungsprozess/EPT Scheidungsrecht Scheidungsrichter Schein/S Scheinangriff/EPST Scheinblüten Scheinehe Scheinfriede/N Scheinfrieden/S Scheingefecht/EPST Scheingeschäft/EPS Scheingründe/N Scheingrund/T Scheintod/ET Scheinwelten Scheinwerfer/NS Scheinwerferlicht/EPST Scheinwiderstand Scheißkerl/EPS Scheit/EPT Scheitel/S Scheitelkreis/EPT Scheitelpunkt/EPST Scheitelwinkel/NS Scheiterhaufen/S Scheiterns Schellfisch/ET Schelm/EPT Schelmenstreich/EPS Schelmerei/P Scheltwort/EPST Schema/S Schemata Schematisierens Schematisierung/P Schemazeichnung Schemel/NS Schemen/S Schenkel/NS Schenkelbrüchen Schenkelbruch/T Schenkelumfang Schenkens Schenker Schenkung/P Schenkungsurkunde/N Scherbe/N Scherbengericht Scherenschleifer/NS Scherenschnitt/EPST Scherer Schererei/P Scherflein/S Scherge/N Scherkräfte Scherz/T Scherzartikel Scherzhaftigkeit Scherzwort/EPST Scheuerbürste Scheuerfrau/P Scheuerlappen Scheuerleiste/N Scheuermittel Scheuertüchern Scheuertuch/T Scheuklappe/N Scheuleder/N Scheune/N Scheußlichkeit/P Scheusal/EPS Schi/S Schicht/J Schichtarbeit/PR Schichtarbeiter/FNS Schichtaufbau/S Schichtenfolge Schichtfolge/N Schichtstärken Schichtstoff/EPS Schichtstruktur/P Schichtwechsel/S Schickens Schickeria Schicklichkeit/G Schicksal/EPS Schicksalsdrama Schicksalsfrage/N Schicksalsgefährten Schicksalsgemeinschaft Schicksalsschlag/Tp Schicksalsweg Schickung/P Schiebedächern Schiebedach/T Schiebefenster/NS Schiebekappe/N Schiebens Schieber/NS Schieberegister Schieberei/P Schiebesitz/EPT Schieblehre Schiebung/P Schiedsgericht/ET Schiedsgerichtshof Schiedsgutachten/S Schiedskommission/P Schiedsrichter/FNS Schiedssprüche/N Schiedsspruch Schiedsverfahren/S Schieferdächer Schieferdach/T Schiefers Schiefertafeln Schieflage/N Schiefstellung/P Schienbein/EPST Schienenbahn/P Schienenbus/Qq Schienennetz/ET Schienenstrang/STp Schienenweg/E Schierling/S Schießbaumwolle Schießbefehl/EPS Schießbude/N Schießens Schießerei/P Schießgewehr/EPS Schießkunst Schießmeister Schießpulver Schießscheibe/N Schießstände Schießstand/T Schiff/MRST Schiffbau/S Schiffbrücke Schiffbruch/S Schiffer/NS Schifferkitt Schifferklavier/EPS Schifffahrt/P Schifffahrtsaktien Schifffahrtsanteile Schifffahrtsfragen Schifffahrtskanal Schifffahrtslinie Schifffahrtspapiere Schifffahrtsstraße/N Schiffsärzte/FN Schiffsarzt/T Schiffsbug/S Schiffschaukel/N Schiffsdeck Schiffseigner/NS Schiffsersatzteile Schiffsfrachtbrief/EPS Schiffsfrachten Schiffsjournal/ES Schiffsjunge/N Schiffsköchen Schiffskoch/S Schiffsküche/N Schiffsladung/P Schiffslinien Schiffsmannschaft Schiffspapiere Schiffsraum/STp Schiffsreise/N Schiffsrümpfe/N Schiffsrumpf/T Schiffsschraube/N Schiffsverkehr/S Schiffswerft Schiffwerft/P Schiiten Schikane/N Schikoree/S Schild/EPST Schilda Schildanlage Schildausbau/S Schildausbausteuerung Schildausrichten Schildbewegung/P Schildbürger/NS Schildbürgerstreich/EPS Schilddrüse/N Schilddrüsenhormon Schilde/NRS Schilder/J Schildfunktionen Schildgrafik Schildhersteller Schildknappe Schildkröte/N Schildkrötensuppe Schildlaus Schildnummern Schildpatt/S Schildrechner Schildseite Schildsteuerung Schildvortriebsmaschine Schildwachen Schilf/EPT Schilfdach Schilfmatte Schilfrohr/EPS Schiller/S Schilling Schimmel/S Schimmelpilz/EPT Schimmer/S Schimpanse/N Schimpansenmutter Schimpfwörter/N Schimpfwort/T Schindel/N Schindeldächer Schindeldach/T Schinder/S Schinderei/P Schindluder Schinken/S Schinkenwürste Schirm/JST Schirmbild Schirmblech/E Schirmens Schirmgehäuse Schirmgitter/S Schirmherr/FNP Schirmherrschaft/P Schirmkappe Schirmmaßnahmen Schirmplatten Schirmständer/NS Schirmstock Schirmwände/N Schirmwand Schizophrenie Schlächter/N Schlächterei/P Schläfe/MNR Schläfer/FNS Schläfrigkeit Schläge/NR Schlägen Schläger/NS Schlägerei/P Schläuche/N Schlacht/J Schlachtbänken Schlachtbank Schlachtbeil/EPST Schlachtens Schlachter Schlachtermesser Schlachtfeld/T Schlachtfelder Schlachtgetümmel Schlachthaus/Tp Schlachthöfe Schlachthof Schlachtkreuzer/NS Schlachtmesser/NS Schlachtopfer/S Schlachtpläne/N Schlachtplan/T Schlachtross/EPT Schlachtruf/EPS Schlachtschiff/E Schlachtvieh/S Schlaf/ST Schlafabteil/EPS Schlafanzug/STp Schlafcouch Schlafdefizit Schlafenszeit/P Schlafgelegenheit/P Schlafgemächer Schlafgemach/T Schlafittchen Schlafkrankheit Schlaflied/RST Schlaflosigkeit/P Schlafmangel Schlafmatratze Schlafmittel/NS Schlafraum/STp Schlafröcke Schlafrock/T Schlafsäcken Schlafsäle/N Schlafsaal/S Schlafsack Schlafstellen Schlafstörung/P Schlafsubstanz Schlaftablette/N Schlaftrunk Schlafwagen/S Schlafwandler/S Schlafzimmer/S Schlafzimmerübung Schlagabtausch Schlagadern Schlaganfall/Sp Schlagball/Sp Schlagbaum/STp Schlagbohrer/S Schlagbolzen/S Schlager/NS Schlagerderby/S Schlageridol Schlagermusik Schlagersänger/FS Schlagerspiel Schlagerstar/S Schlages Schlagfertigkeit Schlaginstrument/EPST Schlagkraft Schlaglöcher/N Schlagloch/T Schlagrahm Schlagring/EPS Schlags Schlagsahne Schlagschatten Schlagseite Schlaguhren Schlagwechsel/S Schlagwerk/ET Schlagwetterkatastrophe Schlagwetterschutz/T Schlagwörter/N Schlagwort/EPT Schlagwortkatalog/EPS Schlagzeile/N Schlagzeug/EPS Schlagzeuge/NR Schlagzeuger/S Schlamassel Schlamm/S Schlammassel Schlammbäder/N Schlammbad/T Schlammbildung Schlammmasse/N Schlampe/N Schlamperei/P Schlange Schlangenbeschwörer/S Schlangenbiss/EPT Schlangengift/ET Schlangenlinie/N Schlangenmensch/S Schlankheit Schlankheitskur Schlapphüte/N Schlapphut Schlaraffenland/T Schlauberger/NS Schlauch/S Schlauchboot/EPST Schlauchende/N Schlauchkabel/N Schlauchkabelstücken Schlauchleitung/P Schlaufe/N Schlauheit Schlauköpfe Schlaukopf/T Schlaumeier/S Schlawiner Schlechtigkeit/P Schlechtwetterperiode/N Schlegel/NS Schleichweg/EPS Schleichwerbung Schleier/NS Schleiereule/N Schleifchen/S Schleifenbedingung/P Schleifendurchlauf/Sp Schleifeninvariante/N Schleifkontakte Schleifmaschine Schleifpapier/EPS Schleifräder/N Schleifrad Schleifstein/EPS Schleim/S Schleimabsonderung/P Schleimbeutelentzündung/P Schleimdrüse/N Schleimsuppe/N Schlemmerei/P Schlendrian/S Schlepp/JR Schleppens Schlepper/NS Schleppkraft Schlepplänge Schlepptau/S Schleppung/P Schleppzug/STp Schlesier/NS Schleswig Schleuder/J Schleudermaschine Schleuderns Schleuderpreis/ET Schleudersitz/EPT Schleuderung/P Schleusentor/EPS Schlichterin/F Schlichtern Schlichters Schlichtheit Schlichtungsabkommen Schlichtungsausschuss/Tp Schlichtungsverhandlung/P Schlichtungsvorschlag/Tp Schlichtungswesen/S Schlick/S Schlierenbildung Schließens Schließer Schließfächer/N Schließfach/S Schließung/P Schliffs Schlinggewächs/EPT Schlingpflanze/N Schlips/EPT Schlitten/S Schlittenbahn Schlittenbewegung Schlittenfahrt/P Schlittenhunden Schlittenkonstruktion/P Schlittenposition/P Schlittenrichtung Schlittensteuerung Schlittenvorschub/S Schlittenzylindern Schlittschuh/EPS Schlittschuhläufer/FNS Schlitz/EPT Schlitzauge/N Schlitzohr Schlitzwand Schlitzwandbau Schlitzwanderstellung Schlitzwandgreifer Schlösschen/S Schlösser/N Schlösserkatalog/EPST Schlosser/FNS Schlosserarbeiten Schlosserhandwerk Schlosserlehrling Schlosserwerkstätten Schlosserwerkstatt Schlosses Schlossgarten/S Schlossherr/NP Schlosspark/S Schlot/EPST Schlücke/MN Schlünde/N Schlüssel/NS Schlüsselbein/EPST Schlüsselbereich/EPS Schlüsselblume/N Schlüsselbund/EPST Schlüsseldateien Schlüsseleigenschaften Schlüsselfeile Schlüsselfertigung Schlüsselfigur Schlüsselindustrie/N Schlüsselkind/T Schlüsselkinder Schlüssellöcher/N Schlüsselloch/T Schlüsselposition/P Schlüsselring/EPS Schlüsselroman/EPS Schlüsselstellung/P Schlüsseltechnologie/N Schlüsselwörter/N Schlüsselwort/EPT Schlucht/P Schluck/ST Schluckauf Schluckimpfung/P Schludrigkeit Schlummer/S Schlund/T Schlupf/S Schlupflöcher/N Schlupfloch/ST Schlupfmessung Schlupfüberwachung Schlupfwinkel/N Schluss/Tp Schlussakt/EPST Schlussbemerkung/P Schlussbericht/EPS Schlusserklärung Schlussfeier/N Schlussfolgerung/P Schlussformel/N Schlusskurse Schlussläufer Schlusslicht/RT Schlussnotierung Schlusspfiff/EST Schlussphase/N Schlusspunkt Schlussrechnung/P Schlussrunde/N Schlusssätze/N Schlusssatz/T Schlusssitzung Schlussspurt/ST Schlussstrich/EPT Schlusstag Schlussverkauf/Sp Schlusswort/EPST Schlusszahlung Schmähens Schmähung/P Schmälerns Schmälerung/P Schmäuse/N Schmach Schmackhaftigkeit Schmalfilm/EPS Schmalfilmkamera/S Schmalkost Schmalschrift Schmalseite Schmalspuren Schmalz/T Schmankerl/NS Schmarotzer/FNS Schmarotzerpflanze/N Schmarotzertum/S Schmarre/N Schmatz/T Schmaus Schmauserei/P Schmeichelei/P Schmeichelkatze/N Schmeichler/FNS Schmeißfliege/N Schmelz/JT Schmelzens Schmelzerei/P Schmelzhütte/N Schmelzkäse/N Schmelzkleber Schmelzofen/S Schmelzpunkt/EPST Schmelzsicherung/P Schmelztiegel/NS Schmelzung/P Schmerbäuche/N Schmerbauch/ST Schmerz/T Schmerzensgeld/RT Schmerzensschrei/EPS Schmerzgrenze/N Schmetterball/Sp Schmetterling/EPS Schmetterlingsfarm Schmetterschlag/Tp Schmidt/S Schmied/FST Schmiedeeisen/S Schmiedehämmern Schmiedehammer/S Schmiedestück/E Schmierbüchsen Schmierens Schmiererei/P Schmieresteher/NS Schmierfett/EPST Schmierfink/PS Schmiergeld/RT Schmiermittel/NS Schmieröl Schmierpapier/PS Schmierpläne/N Schmierseife Schmierstoff/EPS Schmierung/P Schmierzettel Schmirgel/S Schmirgelpapier/EPS Schmöker Schmollwinkel/NS Schmorbraten Schmuckartikel Schmuckindustrie Schmuckkästchen/S Schmucks Schmucksachen Schmuckstück/EPST Schmuggel/S Schmuggelei/P Schmuggler/NS Schmusekatze Schmutz/T Schmutzarbeit/P Schmutzfink/PS Schmutzfleck/PS Schmutzigkeit Schmutzliteratur Schmutztitel/N Schnäbel/N Schnäppchen/S Schnäppchenjagd Schnäpse/N Schnabel/S Schnabeltasse Schnabeltier/EPS Schnake/N Schnallenschuh/PS Schnappmesser/S Schnappschlössern Schnappschloss/T Schnappschuss/Tp Schnappstift/S Schnaps/T Schnapsbrennerei/P Schnapsflasche Schnapsglas/T Schnapsidee/N Schnaufer/NS Schnauzbärte Schnauzbart/T Schnauze/NR Schnauzer/NS Schnecke/N Schneckenantrieb Schneckendrehzahl Schneckengang/Sp Schneckengewinde Schneckenhaus/Tp Schneckenpost Schneckentempo Schnee/S Schneeball/Tp Schneeballschlacht Schneebericht Schneebesen/S Schneebrille/N Schneefall/Sp Schneeflocken Schneegebiet Schneegestöber/S Schneeglöckchen/S Schneegrenzen Schneehase/N Schneehühner/N Schneehütten Schneehuhn/S Schneekette/N Schneemänner/N Schneemann/T Schneepflug/STp Schneeschmelze Schneeschuh/ET Schneestürme/N Schneesturm/T Schneetreiben/S Schneeverwehung/P Schneewehe Schneewetter/S Schneewittchen/S Schneid/S Schneidarm/EPS Schneidarmbewegung/P Schneidarmlast Schneidarmschlitten Schneidarmstellung Schneidautomatik Schneidbetrieb Schneidbrenner/N Schneidebrett/R Schneidens Schneider/FS Schneiderei Schneiderfachschule Schneiderkostüme/N Schneiderkostüms Schneidermeistern Schneidermeisters Schneiderpuppe Schneidewerkzeug/EPS Schneidezähne/N Schneidgeräusch Schneidhöhe/N Schneidhorizont/S Schneidkopf/S Schneidkopfabstand Schneidkopfbewegung/P Schneidkopfposition Schneidkopfunterkante Schneidkraftanalyse Schneidleistung Schneidleistungsmessung Schneidmeißel Schneidmesser Schneidmesserwechsel Schneidmotorwelle Schneidprofil/EPS Schneidringverbindung/P Schneidsteuersystem Schneidsteuerung Schneidversuche Schneidvorgang/Tp Schneidvorrichtung Schneidwalze/N Schneidwaren Schneidwarenindustrie Schneidzyklen Schneidzyklus Schneise/N Schnellabschaltung Schnellantwort Schnellbleiche Schnellboot/EPST Schnellfahrer Schnellfeuer/S Schnellfeuergeschütz/EPT Schnellgang/Sp Schnellgericht/EPST Schnellhefter/S Schnelligkeit Schnelligkeitsrekorde/NS Schnellimbiss/EPT Schnellimbissstube/N Schnellkräfte/N Schnellläufer/N Schnellreinigung/P Schnellschreibehilfe Schnellschuss/Tp Schnellstraße/N Schnellverfahren/S Schnellwaage/N Schnellzug/STp Schnepfe/N Schnippchen Schnippel/S Schnittarbeiten Schnittblumen Schnittbohne/N Schnitte/S Schnittebene/N Schnittfläche Schnittführung Schnitthöhe Schnitthölzer/N Schnittholz Schnittkante Schnittlauch/S Schnittleistung Schnittmächtigkeit Schnittmuster/NS Schnittpunkt/EPST Schnittpunktbildung Schnitts Schnittstelle/N Schnittstellenadapter Schnittstellenanpassung Schnittstellenattribute Schnittstellenbaustein/EPS Schnittstellenbelegung/P Schnittstellenbeschreibung/P Schnittstellenbox/P Schnittstellendefinition/P Schnittstellenkabel/NS Schnittstellenkonverter Schnittstellennummer/N Schnittstellenoption/P Schnittstellenparameter Schnittstellenprobleme Schnittstellensoftware Schnittstellenteil Schnittstellentest Schnittstellentreiber/NS Schnittstellenumsetzer/S Schnittstellenverbindung Schnittstellenwandler Schnittwaren Schnittwunde/N Schnittzeichnung/P Schnitzarbeit Schnitzel/NS Schnitzeljagd/P Schnitzer/FNS Schnitzerei/P Schnitzkünsten Schnitzkunst Schnitzwerk/EPST Schnörkel/GS Schnörkels/G Schnösel Schnorchel Schnorrer/NS Schnorrerei Schnorrertum Schnüffelei Schnüffelhunde Schnüffler/NS Schnürböden Schnürriemen/S Schnürsenkel/S Schnürstiefel/N Schnuller/N Schnulze/N Schnupfens Schnupftabak Schnupftücher/N Schnupftuch/T Schnuppe/N Schnupperlehre Schnur Schnurrbärte Schnurrbart Schöffe/N Schöffengericht/EPST Schönbrunn Schönfärber/NS Schönfärberei Schönheit/P Schönheitsänderung/P Schönheitsfarm Schönheitsfehler/N Schönheitsideal Schönheitskonkurrenz/P Schönheitsmaske Schönheitsoperation/P Schönheitspflege Schönheitsreparatur/P Schönheitssalon/S Schönheitswettbewerb/EPS Schönredner/NS Schönschreibdrucker Schönschreibmodus Schönwetterperioden Schönwetterwolken Schöpfeimer/S Schöpfens Schöpfer/FNS Schöpfergeist/T Schöpferkraft Schöpfkellen Schöpflöffel/NS Schöpfung/P Schöpfungsgeschichte Schössling/EPS Schober/S Schockerlebnis/Qq Schocktherapie/N Schockwirkung Schokolade/N Schokoladeflecken Schokoladencreme Schokoladenguss/Tp Schokoladentafel/N Scholastiker Scholle/N Schonbezug/Sp Schonens Schoner/N Schongang Schonung/P Schonzeit/P Schopf/ST Schoppen/S Schorf/S Schornstein/EPS Schornsteinfeger/FNS Schornsteinindustrie Schoß/ET Schoßhund/EPST Schoßkind/ERST Schote/N Schott/EFPRS Schottenrock Schotter/NS Schottland Schräglage/N Schräglagenbegrenzung Schräglageneinstellung Schräglagenwinkel Schrägschneiden Schrägschrift Schrägstellung Schrägstrich/EPS Schrämmaschine Schraffierens Schraffierung/P Schraffur/P Schrank/EPS Schrankenwärter/NS Schrankkoffer/S Schraubdeckel/NS Schraubendampfer/NS Schraubendreher Schraubenfabrik Schraubengängen Schraubengang/S Schraubengewinde/S Schraubenmutter/N Schraubens Schraubenschlüssel/NS Schraubensicherungslack/E Schraubenzieher/NS Schraubklemme/N Schraubklemmenleiste Schraubstöcke/N Schraubstock/S Schraubung/P Schraubverschluss/Tp Schrebergärten Schrebergarten/S Schreck Schreckens Schreckensbotschaft/P Schreckenschrei/EPS Schreckensherrschaft/P Schreckensnachricht/P Schreckensruf Schreckensschrei/ST Schreckenstat/P Schreckgespenst/RT Schrecknis/Qq Schreckschuss/Tp Schreckschusspistole/N Schrecksekunde/N Schrei/GNRS Schreibadresse/N Schreibarbeit/P Schreibbefehl/E Schreibblöcke/N Schreibblock/ST Schreibcursor Schreibens Schreiber/FNS Schreiberei/P Schreiberling/EPS Schreibfeder/N Schreibfehler/NS Schreibgerät/EPT Schreibheft/EPT Schreibhilfe/N Schreibkräfte/N Schreibkrämpfen Schreibkraft Schreibkrampf Schreibkünsten Schreibmappe/N Schreibmaschine Schreibmaschinenmodus Schreibmaschinenschreiben Schreibmaterial Schreibpapier/EPS Schreibpult/EPST Schreibschutz/T Schreibschutzeinheit/P Schreibstube Schreibstubenmannschaft Schreibtisch/EPT Schreibtischtäter Schreibung/P Schreibunterlage Schreibware/N Schreibwarenhändler/FNS Schreibwarenhandlung/P Schreibweise/N Schreibzeug/S Schreibzugriff/EPS Schreier/FNS Schreihälse/N Schreihals/T Schrein/EPRS Schreiner/FNS Schreis/G Schreitens Schreitgeschwindigkeit Schreitweg/E Schreitwerk/S Schreitwerksdruck Schreitwerkshub Schreitzylinder Schrift/P Schriftart/P Schriftbild/RT Schriftbreite/N Schriftdeutsch Schriftenreihe Schrifterkennung Schriftführer Schriftgelehrte/NR Schriftgießer/NS Schriftgröße/N Schriftkassetten Schriftleiter/NS Schriftrollen Schriftsätze/N Schriftsatz/T Schriftsetzer/N Schriftsprache/N Schriftsteller/FNS Schriftstellergilde Schriftstellerverband Schriftstück/EPS Schriftteilen Schrifttum/S Schriftverkehr Schriftwechsel/S Schriftwort Schriftzeichen/S Schriftzug/STp Schrimp/S Schrittes Schrittgeber Schritthaltens Schrittmacher/NS Schrittmotor/PS Schrittmotorinterface/S Schritts Schritttempo/S Schrittweite/N Schröder/S Schrödinger/S Schroffheit Schroffteile Schrot/S Schrotbrot/EPST Schrotflinte/N Schrotkörner Schrotkorn/S Schrotladung Schrotmehl/S Schrotmühlen Schrotsägen Schrott/SW Schrotthändler/FNS Schrotthandel Schrottplätze/N Schrottplatz Schrottsituation Schrottverbraucher Schrottwert/ST Schrottwirtschaft Schrulle/N Schrumpfens Schrumpfschlauch Schrumpfteilen Schrumpfung/P Schrumpfungsprozess/EPT Schrunden Schübe/N Schüchternheit Schüler/FNS Schüleraustausch/T Schülerauswahl Schülerbund Schülerlotsen Schülermannschaft Schülertarife Schülerverkehr Schülerzeitkarten Schürfkante Schürfprofilen Schürze/N Schürzenbänder/N Schürzenband Schürzenjäger/NS Schürzenkleid/RT Schüssel/N Schüttelfrost/S Schüttelreim/EPS Schützenfest/EPST Schützenfeuer/S Schützengräben Schützengraben/S Schützenhilfe/N Schützenketten Schützenkönig/EPS Schützenlinien Schützenlöcher/N Schützenloch/S Schützenverein Schützer/FNS Schützling/EPS Schub/S Schubert/S Schubfächer Schubfach/T Schubkästen Schubkarre/N Schubkasten/S Schubkräfte/N Schublade/N Schubleistung Schufterei Schufts Schuh/EPS Schuhabteilung Schuhbändern Schuhband/S Schuhbürste/N Schuhcreme Schuhgeschäft/EPS Schuhgröße/N Schuhindustrie Schuhkartongröße Schuhmacher/N Schuhputzer/NS Schuhriemen/S Schuhsenkel/S Schuhsohle/N Schuhspanner/NS Schuhware Schuhwerk/EPST Schuhwichsen Schukosteckdosen Schukostecker Schulämter/N Schulabschluss/Tp Schulamt/T Schularbeiten Schularten Schulaufgaben Schulaufsichtsgesetz Schulausflug/STp Schulausgabe/N Schulbänke Schulbank Schulbeginn Schulbehörde/N Schulbeispiel/PS Schulbesuch/PS Schulbildung Schulbücher/N Schulbuch/T Schulbus Schulbussen Schuldbücher/N Schuldbuch/S Schuldenberg/S Schuldenblase Schuldendeflation Schuldenerlass/T Schuldenexplosion/P Schuldeninflation Schuldenkollaps/T Schuldenlast/P Schuldenlawine Schuldenroulette Schuldentilgung Schuldforderung Schuldfrage/N Schuldienst Schuldigkeit Schuldirektor/FPS Schuldlosigkeit Schuldner/FNS Schuldnerberatungsstelle/N Schuldnernation/P Schuldrecht/EPST Schuldschein/EPS Schuldverschreibung/P Schuldzuweisung Schulens Schulexperten Schulferien Schulflugzeug/EPS Schulfreund/FPS Schulgelände/NS Schulgeld/RT Schulgelehrsamkeit/P Schulgesetz Schulhaus/Tp Schulheft/E Schulhöfe/N Schulhof/T Schuljahr/EPT Schuljugend Schuljunge/N Schulkamerad/P Schulkenntnis/q Schulkind Schulklasse Schullaufbahn/P Schullehrer/FS Schulleiter Schulmappe Schulmeister/NS Schulneubau Schulordnung/P Schulpferd/EPST Schulpflicht/P Schulplätzen Schulprüfung Schulräte/N Schulranzen/S Schulrat Schulraum/STp Schulreform Schulreiten/S Schulschiff/ET Schulschluss/Tp Schulschwänzer/NS Schulsekretariat Schulspeisung/P Schulsprecher Schulstraße/N Schulstreit Schulstress/EPT Schulstuben Schulstunde/N Schultag Schultasche/N Schulter/N Schulterblättern Schulterblatt/S Schulterklappen Schulterschluss/Tp Schultersieg/EPST Schulterstück/PS Schulterverletzung Schulung/P Schulungseinheit/P Schulungsfilme Schulungsheim Schulungsraum/STp Schulungsteilnehmer Schulungsthema Schulungszweck/EPS Schulunterricht/EPST Schulversäumnis/Qq Schulverwaltung/P Schulweg/ET Schulweisheit/P Schulwesen/S Schulz Schulzeit/P Schulzeugnis/Qq Schulzimmer/NS Schulzwang/Tp Schund Schundliteratur Schundroman/EPS Schuppenflechte Schur/P Schurke/N Schurkenstreich/EPS Schurkerei/P Schurwolle Schurz/T Schuss/Tp Schussbereich/EPST Schussel/S Schussfahrt Schusslinie/N Schusswaffe Schusswechsel Schussweite Schusswunde Schuster/S Schusterjunge/N Schute/N Schutt/S Schuttabladeplätze/N Schuttabladeplatz Schutthalde/N Schutthaufen Schuttplatz Schutz/ET Schutzanmeldung/P Schutzansprüche Schutzanstrich/EPST Schutzanzug/STp Schutzart Schutzartanforderung/P Schutzbehauptung Schutzbereich Schutzbeschaltung Schutzblech/EPST Schutzbrille/N Schutzbündnis/Qq Schutzdächer/N Schutzdach/T Schutzeinrichtung Schutzengel/NS Schutzerde Schutzfärbung/P Schutzfolie Schutzforderung/P Schutzfunktion/P Schutzgebiet/EPS Schutzgehäuse Schutzgeleit/EPS Schutzgesetz Schutzgitter/N Schutzhaft Schutzhaube/N Schutzheiligen Schutzherr/FNP Schutzherrschaft Schutzhülle/N Schutzhütte Schutzimpfung/P Schutzinformation/P Schutzinsel Schutzkasten/S Schutzklasse/N Schutzklausel/N Schutzkomitee/S Schutzlack Schutzmächte Schutzmänner Schutzmacht Schutzmann/T Schutzmarke/N Schutzmaßnahme/N Schutzmasken Schutzmasse Schutzmechanismen Schutzmechanismus Schutzmittel/N Schutzpatron/EFPS Schutzplatte Schutzpolizei Schutzrecht/EPST Schutzrechtsanmeldung Schutzschicht/P Schutzschild/R Schutzschlauch Schutzsicherung Schutzstoff/EPS Schutztruppen Schutzumschlag/Sp Schutzvereinigung Schutzverpflichtung Schutzvorrichtung/P Schutzvorschriften Schutzwall/S Schutzwiderständen Schutzwiderstand Schutzzölle/N Schutzzöllner/S Schutzzoll/S Schwäbin/F Schwächeanfall/Sp Schwächeerscheinung/P Schwächens Schwächeperiode Schwächezeichen Schwächezone Schwächezustände Schwächezustand/T Schwächlichkeit Schwächling/EPS Schwächung/P Schwägerin/F Schwämme/N Schwäne/N Schwängerns Schwängerung/P Schwänke/N Schwärmer/FNS Schwärmerei Schwätzer/FNS Schwabe/N Schwabenland Schwabenstreich/EPST Schwachheit Schwachpunkt/EPST Schwachsinn/S Schwachstelle/N Schwachstrom Schwade/N Schwadron/P Schwadroneur/EPS Schwager/S Schwalbe/N Schwalbenschwänze/N Schwalbenschwanz/T Schwall/ES Schwammerlreife Schwan/S Schwanengesang/Sp Schwanensee Schwangerschaft/P Schwangerschaftsabbruch Schwangerschaftsunterbrechung/P Schwangerschaftsverhütung/P Schwank/J Schwankungsbreite/N Schwanz/T Schwanzbewegung/P Schwanzende/NS Schwanzfedern Schwanzflosse/N Schwarm/S Schwarte/N Schwarzafrika Schwarzarbeiten Schwarzblech/ES Schwarzbrot/EPS Schwarzdrossel/N Schwarzdruck Schwarzfahrer/S Schwarzfahrt/P Schwarzgeld/RS Schwarzgeldanleger Schwarzgeldkonto Schwarzgeldparadiese Schwarzhändler/FNS Schwarzhandel/S Schwarzhaupt Schwarzkarte Schwarzmalerei Schwarzmann Schwarzmarkt/Tp Schwarzmarktaktivitäten Schwarzpulver Schwarzschlachtung/P Schwarzseher/S Schwarzsender/N Schwarzstellung Schwarzwald Schwarzwaldmädel Schwarzwaldstil Schwarzwild/T Schwarzwurzel/N Schwatz/T Schwatzbase/N Schwatztante Schwebebahn/P Schwebebalken/S Schwede/FN Schwefel/S Schwefelbädern Schwefelbad/T Schwefelblüten Schwefelblume/N Schwefelkies/T Schwefelkohlenstoff/EPST Schwefelsäure Schwefelwasserstoff/ET Schweif/JS Schweigegeld/T Schweigegelder Schweigemärsche/N Schweigemarsch/T Schweigeminute Schweigepflicht Schweigestunde/N Schweigsamkeit Schwein/EPS Schweinebraten/S Schweinefleisch Schweinehälften Schweinehund/ET Schweinemarkt/STp Schweinepreise Schweinerei/P Schweinestall/Sp Schweinezüchtern Schweinezüchters Schweinezucht Schweinigeln Schweinigels Schweinskotelett/S Schweinsleder Schweiß/JRT Schweißabsonderung Schweißarbeiten Schweißblätter/N Schweißblatt Schweißbrenner/NS Schweißdrüse/N Schweißens Schweißer/NS Schweißerei Schweißfuß/Tp Schweißgerät Schweißhund/ET Schweißkontrolle Schweißnähte/N Schweißperle/N Schweißstelle Schweißtechnik Schweißtropfen/S Schweitzer/S Schweiz Schweizer/FS Schweizerfranken Schweizergarde Schwelger/FNS Schwelgerei Schwellenländer Schwellens Schwellenspannung Schwellenstrom Schwellung/P Schwellwert Schwellwertschalter Schwemmland/T Schwenk/JS Schwenkarm/EPS Schwenkbewegung/P Schwenkbreite Schwenkdüsen Schwenkkräne/N Schwenkkran Schwenkriegel Schwenkvorschub Schwenkweite Schwenkwinkel Schwenkzylinder/N Schwerarbeit/PR Schwerarbeiter/FNS Schwerathlet/P Schwerathletik Schwerefeld Schwerfälligkeit Schwergewicht/EPST Schwergewichtler/S Schwergewichtsboxen Schwergewichtsmeister Schwerin/S Schwerindustrie/N Schwerindustriellen Schwerkräfte/N Schwerkraft Schwerkriegsbeschädigte/N Schwermaschinen Schwermaschinenbau Schwermetall/EPS Schwermut/S Schwerpunkt/EPT Schwerpunktverschiebung/P Schwerspat/EPS Schwerstarbeit Schwert/ERT Schwertfisch/EPST Schwertlilie Schwerverbrecher/NS Schwester/MN Schwesterfirma Schwesterfirmen Schwesterkind/T Schwesterkindern Schwesterliebe Schwesternorden/S Schwesternschaft Schwesternschiff/ET Schwesternsöhne Schwesternsohn Schwesterntracht Schwesterorganisation/P Schwesterpartei Schwesterschiff/EPT Schwesterstadt Schwiegereltern Schwiegermütter/N Schwiegermutter Schwiegersöhne/N Schwiegersohn/S Schwiegertöchter/N Schwiegertochter Schwiegervater/S Schwiele/N Schwierigkeit/P Schwimmanstalt/P Schwimmanzug/STp Schwimmbäder/N Schwimmbad/T Schwimmblase/N Schwimmdock/S Schwimmer/FNS Schwimmflosse/N Schwimmfuß/Tp Schwimmgürtel/NS Schwimmhäuter/N Schwimmhaut Schwimmkrokodil Schwimmkünsten Schwimmkunst Schwimmlehrer/S Schwimmschüler Schwimmschule Schwimmsport/EPS Schwimmverband Schwimmvögel/N Schwimmvogel/S Schwimmwart Schwimmwesten Schwindel/S Schwindelanfall/Sp Schwindelei/P Schwindelfirma Schwindelfirmen Schwindelgesellschaft Schwindler/FNS Schwindsucht Schwingachsen Schwingens Schwinger/NS Schwingeradapter Schwingeraufbau Schwingerdurchmesser Schwingerfuß/Tp Schwingerkörper Schwingerträger/S Schwingkreis/EPT Schwingmetall Schwingneigung Schwingquarz/T Schwingschleifer Schwingung/P Schwingungsbild Schwingungsgrenze Schwingungsperioden Schwingungsverhalten Schwingungsvorgängen Schwingungszahl Schwips/T Schwitzbäder Schwitzbad/T Schwitzkästen Schwitzkasten/S Schwitzkur/P Schwitzwasser Schwitzwasserbildung Schwüre/GN Schwulität/P Schwulst/G Schwund/ST Schwundausgleich/T Schwundregelung/P Schwung/S Schwungfeder/N Schwungkräfte/N Schwungkraft Schwungräder/N Schwungrad/T Schwur/S Schwurgericht/PS Sciencefiction Scientology Scratchpad/S Screenshot/S Script/EPS Sebastian/S Sechseck/EPST Sechsen Sechskant Sechskantführung Sechstagekrieg Sechstagerennen/S Sechstklässler/FNS Sechszehntelnote Sechszylinder Sechzigerin/F Sechzigers Sediment/EPS See/NS Seeanemone Seebäder/N Seebär/P Seebad/T Seebund Seedienst/ET Seefahrer/N Seefahrt/P Seefische Seefischmarkt/T Seeflugzeug/EPT Seefracht/P Seefunk/S Seefunkpersonal/S Seegang/S Seegefecht/EPST Seegräser Seegräuel Seegras/T Seegrundstück Seehäfen Seehafen Seehandel/S Seeheld Seeherrschaft/P Seehotel Seehunde/N Seehundjäger Seehundsfell/EPS Seeigel/NS Seekadett Seekarte/N Seekrankheit Seekrieg/EPS Seeküste/N Seelachs/EPT Seele/N Seelenämter/N Seelenamt/T Seelendrogen Seelenfreunde/NS Seelenfrieden/S Seelengröße/N Seelengüter/N Seelengut/T Seelenheil/EPS Seelenhirten Seelenkunde/N Seelenleben/S Seelenleiden/S Seelenmessen Seelenpein Seelenqual/P Seelenruhe/N Seelenstärke/N Seelenwanderung/P Seeleute Seelilie Seelöwe/N Seelöwenart Seelsorge/R Seelsorger/NS Seemächte/N Seemänner Seemacht Seemann/T Seemeile/N Seeminen Seemitte Seemöwe/N Seen/I Seenähe Seenöten Seenot Seeoffizier/EPS Seepferdchen/S Seeräuber/NS Seeräuberei Seerecht/PS Seereise Seerose/N Seeschaden/S Seeschiff/EPST Seeschlacht Seeschwalbe/N Seespiegel Seestädte/N Seestadt Seestern/PS Seestreitkräfte Seetang/EPS Seetier/EPS Seeufer Seeungeheuer/S Seeverkehr/S Seevölkern Seevolk/T Seewarte/N Seewasser/S Seeweg/ET Seewiesen Seewind/EPST Seezunge Segel/S Segelboot/EPST Segelfläche Segelflieger/S Segelflug/STp Segelflugzeug/EPS Segeljacht Segelklasse/N Segelklub/S Segelpartien Segelregatten Segelschiff/EPST Segelschlitten Segelschulschiff Segelsport/S Segeltüchern Segeltuch/T Segelwerk/EPST Segen/S Segenswünsche Segenswunsch/T Segler/FNS Segment/EPST Segmentanzeige Segmentbogen Segmentdarstellung Segmentierung/P Segnens Segnung/P Sehenswürdigkeit/P Seher/FS Seherblick/EPST Sehergaben Sehfehler/N Sehfeld/R Sehgewohnheit/P Sehkräfte/N Sehnerv/PS Sehnsüchte/N Sehnsucht Sehpurpur Sehrohr/EPS Sehschärfe/N Sehschlitz/EPT Sehstörung Sehvermögen/S Sehweite Sehzellen Sehzentrum Seichtheit/P Seide Seidel/S Seidenbau/S Seidenfäden Seidenfaden/S Seidengarn/EPS Seidenglanz/T Seidenpapier/EPS Seidenraupe/N Seidenraupenzucht Seidenspinnerei/P Seidenstoff/PS Seidenstraße/N Seidenstrümpfe Seidenstrumpf Seifenbehälter/N Seifenblase/N Seifenfabrik Seifenkistenlösung/P Seifenkistenrennen/S Seifenlaugen Seifennäpfe/N Seifennapf/S Seifenpulver/S Seifenschaum/ST Seifensieder/NS Seifensiederei Seifenwasser/S Seiko Seilbahn/P Seiler/N Seilhüpfen Seilpotentiometer/N Seilpotis Seils Seilschaft/P Seilschwebebahn Seilspringen Seiltänzer/FNS Seilzug/STp Seilzugpotentiometer Seilzugpoti Seilzupotentiometer Seim/EPS Seins Seismograph/Pf Seite/N Seitenangriff/EPST Seitenansicht/P Seitenbewegung/P Seitenblech Seitenblick/EPT Seiteneffekt/EPST Seiteneffektanalyse/N Seiteneingang/Sp Seitenflügel/S Seitengewehr/EPS Seitengleis/ET Seitenhieb/EPT Seitenkosten Seitenlänge/N Seitenlehne/N Seitenlinie/N Seitennummerierung Seitenrippen Seitenschiff/EPS Seitenschneider Seitenschwimmen/S Seitensprünge Seitensprung/S Seitenstechen Seitenstraße/N Seitenstück/PS Seitentasche/N Seitenteil/EPS Seitentür/P Seitenvorschub Seitenwände/N Seitenwagen/S Seitenwand Seitenwechsel/NS Seitenweg/EPST Seitenwirkung/P Seitenzahl Seitwärtsbewegung Sekante/N Sekret/P Sekretär/EFPS Sekretariat/EPST Sekretion/P Sekt/EPST Sektierer/NS Sektion/P Sektor/PS Sektorenaufteilung Sektorgrenze/N Sektorübergang Sekundäraktion/P Sekundärbewegung Sekundärseite Sekundant/P Sekunde/N Sekundenbruchteil/EPS Sekundenschnelle Sekundentakt Sekundenzeiger/NS Selbständigkeit Selbstanlasser/NS Selbstanschluss/Tp Selbstauflösung Selbstaufopferung Selbstaufzug Selbstausschaltung/P Selbstbau Selbstbauexponat/EPST Selbstbauhaus/Tp Selbstbedienung/P Selbstbedienungskomfort Selbstbedienungsladen Selbstbehauptung Selbstbeherrschung Selbstbeköstigung Selbstbeschränkung Selbstbeschuldigung/P Selbstbesinnung Selbstbestimmung Selbstbestimmungsrecht Selbstbeteiligung/P Selbstbetrug/S Selbstbewusstsein/S Selbstbildnis/Qq Selbstbiographie/N Selbstblockierung Selbstdarstellung Selbstdetermination Selbstdisziplin Selbsteinschätzung/P Selbstentfaltung Selbstentladung Selbstentzündung Selbsterfahrung Selbsterhaltung Selbsterhaltungstrieb/EPT Selbsterkenntnis/q Selbsterniedrigung/P Selbstfahrer/S Selbstfinanzierung Selbstgefälligkeit Selbstgefühl/EPS Selbstgespräch/EPS Selbstherrscher/NS Selbsthilfe Selbsthilfeorganisation/P Selbstinitialisierung Selbstinitiative Selbstinteresse Selbstironie Selbstjustiz Selbstkontrolle Selbstkorrektur/P Selbstkostenpreis/EPT Selbstkritik/P Selbstlaut/EPST Selbstmörder/S Selbstmord/ET Selbstmordstatistik Selbstmordversuch Selbstporträt/S Selbstregierung Selbstschuss/Tp Selbstschussanlage Selbstschutz/T Selbstsicherheit Selbstständigkeit Selbstsucht Selbsttäuschung Selbsttest Selbsttestfunktion/P Selbstüberwindung/P Selbstunterricht/T Selbstverachtung Selbstverantwortung Selbstverlag/E Selbstverleugnung/P Selbstvernichtung Selbstversorger/NS Selbstversorgung Selbstverständlichkeit/P Selbstverständnis/Qq Selbstversuche/N Selbstverteidigung Selbstvertrauen/S Selbstverwaltung Selbstverwirklichung/P Selbstverwirklichungsmöglichkeit Selbstwählbetrieb/EPST Selbstwertgefühl/S Selbstzensur Selbstzerstörer Selbstzerstörungstrieb Selbstzündung/P Selbstzucht Selbstzufriedenheit Selbstzweck/EPST Selektion/P Selektionsdruck/S Selektionsmechanismen Selektionsmethode/N Selfmademan Seligsprechung/P Sellerie Seltenheit/P Seltenheitswert Selterswasser/S Seltsamkeit Semantik/P Semantikbeschreibung/P Semantikdefinition/P Semaphor/EPS Semester/NS Semesterbeginn/S Semesterende/NS Semesterferien Semesterschluss/T Semikolon/S Seminar/EPS Seminarist/FP Seminarraum/STp Semiotik Semit/FP Semmel/N Senat/EPST Senator/P Senatsausschuss/Tp Senatsbeschluss/Tp Senatsdebatte Senatsdirektor Senatskanzlei Senatssprecher/S Sendbote/N Sendeamplitude Sendeanlagen Sendebereich/EPS Sendedaten Sendediode Sendeeinheit/P Sendefolge/N Sendegesellschaften Sendeimpedanz Sendeimpuls/EPT Sendeköpfe/N Sendekopf/T Sendekopfbau Sendekopfbaureihen Sendekopfseite Sendeleiter/N Sendeleitung Sendemodus Sendens Sendepläne/N Sendeplan Sendeprogramm/EPS Sender/NS Senderaum/STp Sendereihe/N Sendergehäuse Sendergruppe/N Sendernetz/EPT Sendertotzeit Sendesaal Sendeschalter Sendeschleife Sendeschluss/Tp Sendeseite Sendesignal/E Sendestation/P Sendestelle/N Sendestrom Sendeteil/S Sendeversuchen Sendezeichen/S Sendezeit/P Sendung/P Senegal Senf/S Senfgurken Senfkörner/N Senfkorn/T Senfpflaster/N Senftöpfe/N Senftopf/T Senilität Senior/FPS Senkbewegung Senkblei Senkel/NS Senkens Senker/NS Senkfuß/Tp Senkfußeinlage/N Senkgrube/N Senkkopfschrauben Senkrechtstarter/NS Senkschrauben Senkung/P Senkwaagen Senner/FNS Sennerei/P Sennhütte/N Sensation/P Sensationslüste/N Sensationsmeldung/P Sensationspresse Sensibilisierens Sensibilisierung/P Sensibilität/P Sensitivität Sensor/PS Sensorachse Sensoranschluss/Tp Sensoransteuerung Sensorbeistellung Sensorbelegung Sensorbetrieb Sensordaten Sensordatenerfassung Sensoreigenschaften Sensoreingang/Sp Sensorfamilie Sensorfläche Sensorik Sensorkabel/S Sensorklassen Sensorleitung Sensorlieferung/P Sensorlitzen Sensormaske Sensormeldung Sensormembran/P Sensormodul Sensoroberfläche Sensorseite Sensorsignal Sensorssignal/S Sensorsteuerung Sensortechnik Sensortyp/P Sensorwechsel Sensorwert/EPST Sensorzuleitung/P Sentenz/P Sentiment/S Sentimentalität Sentimentindikatoren Seoul Separatfrieden Separation/P Separatismen Separatist/P Separatistenbewegung Separee/S Sepp/S Seppel Sept Sept. September/S Septemberhälfte Septembertage/N Sequenz/PR Sequenzer/NS Serbe/FN Serbien Seren Serenade/N Sergeant/PS Serie/N Serienbestückung Serienfertigung Serienherstellung/P Serienlieferung Seriennummer/N Serienpreis/EPT Serienproduktion/P Serienprüfung Serienschwingkreis/EPT Seriensensor Seriensportwagen Serienteile Serienwagen Serienwiderstand Serife/N Seriösität Serpentine/N Serum/S Server/NS Service/S Serviceanforderung/P Servicearbeit/P Servicebesuch Servicefahrt Servicefall Serviceindustrie/N Serviceleistung/P Servicemann Servicemenü Servicepakete Serviceschnittstelle Servicewagen Servierbrett/RS Serviererin/F Serviertassen Serviertisch/EPT Serviette/N Serviettenring/PS Servolenkung Servomotor/PS Sesam/S Sesamstraße Sessel/NS Sesselbahn/P Sessellift/EPT Sesshaftigkeit Session/P Set/S Setup/S Setzdruck/S Setzens Setzer/NS Setzerei Setzkästen Setzkasten/S Setzlinge/N Setzmaschine/N Setzreis/PT Setzung/P Setzwaagen Seuche/N Seuchenbekämpfung Seuchenherd/EPST Seufzer/NS Seufzerbrücke Severin Sex/T Sexappeal/S Sexismus Sexpuppe/N Sextett/EPST Sexualerziehung Sexualität Sexualunterricht Sexus Seychellen Sezessionskrieg Seziermesser/N Señor/ST Señora/S Señorita/S Sh Shakespeare/S Shareware Shell Shellscript/S Sheriff Sherry/S Shirley/S Shogun Shop/S Shortstory/S Show/S Showbusiness Showdown/S Shrimp/S Sibirier/NS Sichel/N Sicherheit/P Sicherheitsabschätzung/P Sicherheitsabschaltung Sicherheitsabstand/ST Sicherheitsanforderung/P Sicherheitsarbeiten Sicherheitsaspekt/EPST Sicherheitsbeamte Sicherheitsbedrohung Sicherheitsbedürfnis/Qq Sicherheitsbehörde/N Sicherheitsbestimmung/P Sicherheitsdienst Sicherheitseigenschaft/P Sicherheitsexperte/N Sicherheitsfaktor/P Sicherheitsforderung/P Sicherheitsfrage/N Sicherheitsfunktion/P Sicherheitsgefühl Sicherheitsgepäck Sicherheitsgläsern Sicherheitsglas/T Sicherheitsgrad Sicherheitsgrenze Sicherheitsgründe/N Sicherheitsgurt/EPST Sicherheitsinteresse/N Sicherheitsklausel/N Sicherheitskonferenz Sicherheitskopie/N Sicherheitskräfte Sicherheitskriterien Sicherheitsleistung/P Sicherheitsleute Sicherheitslöcher/N Sicherheitsloch/S Sicherheitsmaßnahme/N Sicherheitsnadel/N Sicherheitsnetz/EPT Sicherheitsorgane Sicherheitspakt Sicherheitspolitik Sicherheitspolizisten Sicherheitsrat/T Sicherheitsredundanz Sicherheitsrisiko Sicherheitsschloss/T Sicherheitsschuhe Sicherheitssuche Sicherheitssystem/EPS Sicherheitsüberlegung/P Sicherheitsüberprüfung/P Sicherheitsventil/EPS Sicherheitsverschluss/Tp Sicherheitsvorkehrung/P Sicherheitsvorschrift/P Sicherns Sicherstellens Sicherstellung/P Sicherung/P Sicherungsgruppe Sicherungshalter/S Sicherungsinformation/P Sicherungskästchen Sicherungskopie/N Sicherungskreis/EPT Sicherungslack Sicherungsleitung/P Sicherungsmechanismus Sicherungsmodul/S Sicherungsprotokollen Sicherungssystem Sicherungstechnik/P Sicherungsübereignung Sicherungsverwahrung/P Sicht/G Sichtbarkeit Sichtbarmachen/JS Sichtbeton/S Sichtfeld/T Sichtfelder Sichtfenster Sichtfolie Sichtgerät/EPS Sichtkontrolle Sichttratte/N Sichtverhältnis/Qq Sichtvermerk/EPST Sichtwechsel/S Sichtweise/N Sichtweite/N Sichtwinkel Sickerwasser/S Sieb/ST Siebdruck Siebenbürgen Siebengebirge Siebenjahresplan Siebenlinge Siebenmeilenstiefel/S Siebensachen Siebenschläfer/S Siebkondensator/P Siebmodul/E Siebtklässler/FNS Siebzigerin/F Siebzigers Siechtum Siedegrad/EPST Siedekessel/NS Siedelns Siedepunkt/EPST Sieder/NS Siedler/NS Siedlung/P Siedlungsgebiete Siedlungsgesellschaft/P Sieg/RS Siegel/S Siegellack Siegelring/EPS Sieger/FNS Siegerliste Siegermächte/N Siegerurkunde/N Siegesdenkmäler/N Siegesdenkmal Siegesgöttin Siegesmarsch Siegessäule Siegestor Siegeszeichen/S Siegeszug/STp Siegfried/S Siegprämien Siegtreffer Siel/EPS Siemens Siemensgerät Siemensnetzteil/P Siesta Sigi/S Sigmund/S Signal/EPS Signaladern Signalamplitude Signalanalyse Signalanschluss/Tp Signalausgang Signalflagge/N Signalfluss/Tp Signalfunktion/P Signalgeber Signalhörnern Signalhorn/S Signalhupe Signalinterferenzen Signalkabel Signallaufzeit Signalmuster Signalnamen Signalpegel Signalprozessor Signalspannung Signalsysteme Signaluntergrund Signalverarbeitung Signalverbindung/P Signalwege Signalwirkung Signatur/P Signet/S Signifikanz Sigrid/S Sigrun/S Silbe/NR Silbentrennprogramm Silbentrennung/P Silber/S Silberanteil Silberbearbeitung Silberbestände Silberdollar/S Silbergeld/T Silbergeschirr Silberkontrakt Silberlieferant Silbermedaille/N Silbermünzen Silberpapier/S Silberpappel/N Silberpreise/S Silberproduktion Silberschmied/EPS Silberstandard Silberstreifen/S Silbervorräte Silberwährung/P Silberwarenindustrie Silberzeug/S Silhouette/N Silikat/S Silikon/S Silikoncoating Silikonfugen Silikongummi Silikonnaht Silikonschicht Silikonverguss/Tp Silikonverklebung Silikose/N Silizium/S Silke/S Silo/S Silofutter/S Silvester/S Silvesterabend Silvesterempfang Silvesterstimmung Simbabwe Simon/S Simplex Sims/EPT Simse/GNS Simsen/GW Simulant/FP Simulation/P Simulationsanlage Simulationsaufbau Simulationseinheit/P Simulationslauf/Sp Simulationsmethode Simulationsprogramm Simulationsstreb Simulationstest/S Simulationswand Simulator/P Simultanwettkampf Sinai Sinalco Sinatra/S Sindelfingen/S Sinfonie/N Sinfoniekonzert/E Singapur Singdrossel/N Singsang/S Singspiel/EPST Singstimme Singular/S Singvögel Singvogel/S Sinn/ST Sinnbeziehung Sinnbezug/STp Sinnbild/RT Sinnenfeindlichkeit Sinnenlüste Sinnenlust Sinnenräusche/N Sinnenrausch Sinnentaumel/NS Sinnesänderung/P Sinnesart Sinneserfahrung Sinnesorgan/EPS Sinnestäuschung Sinneswandel Sinnfrage/N Sinngedicht/EPST Sinnhaftigkeit Sinnlichkeit Sinnlosigkeit Sinnsprüche/N Sinnspruch/S Sinter/S Sintflut/P Sinus Sinuskurve/N Siphon/S Sippe/N Sippenforschung Sir Sirene/N Sirius Sirup/S Sisyphusarbeit Sitte/N Sittenbild/T Sittenbildern Sittengemälde/S Sittengeschichte Sittengesetz/EPT Sittenlehre Sittenlosigkeit/P Sittenpolizei Sittenprediger/NS Sittenrichter/S Sittenstrolch/E Sittenverderbnis/q Sittich/EPS Sittlichkeit Sittlichkeitsverbrechen Sittlichkeitsverbrecher Sittsamkeit Situation/P Situationskomik/P Sitz/JT Sitzarbeit/P Sitzbäder Sitzbad/T Sitzfleisch Sitzgelegenheit/P Sitzordnung Sitzplätze/N Sitzplatz Sitzstreik/EST Sitzungsbericht/ET Sitzungspause Sitzungsperiode Sitzungssäle/N Sitzungssaal Sitzungsteilnehmer Sitzungszimmer Sizilianer/FNS Sizilien Skagerrak Skala Skalen Skalenfaktoren Skalenteile Skalenwert Skalierbarkeit Skalierens Skalierfaktor/S Skalierung/P Skalierungsdivisor Skalierungsfaktor Skalierungstabelle Skalp/S Skalpell Skandälchen/S Skandal/EPS Skandalblätter/N Skandalblatt Skandalpresse Skandinavien/S Skandinavier/FNS Skat/S Skatbrüder Skeleton/S Skelett/EPT Skepsis Skeptiker/NS Sketch/EPT Sketsch/EPT Ski/S Skiabfahrt Skianzug/Sp Skidress/ET Skier Skifahren Skifahrer/FN Skigebiet Skihose/N Skikleid Skikurse Skiläufer/FNS Skilift/EPS Skinhead Skiort Skipass/Tp Skipiste/N Skirennen/S Skisaison Skispringen/S Skispringer/FNS Skiverband/T Skiwettbewerbe Skizze/N Skizzenbücher/N Skizzenbuch/T Sklave/FN Sklavendienst/EPST Sklavenhändler/NS Sklavenhaltung Sklavenhandel Sklaverei/P Skoliose/N Skonti Skonto Skontoabzug/STp Skopje Skorbut/S Skorpion/EPS Skript/PST Skrupel/NS Skulptur/P Skulpturenabteilung Skylla Slalom/S Slawe/FN Slawenkongress/EPT Slip/S Slogan/S Slot/S Slotnummer/N Slowake/FN Slowakei Slowenen Slowenien/S Slum/S Smalltalk Smaragd/EPST Smog Smoking Smolensk Smyrna Snackbar Snob/S Söldling/EPS Söldner/N Söldneraufstand Söller/NS Socke/N Sockel/NS Sockenhalter/NS Socket/SW Soda/S Sodawasser/S Sodbrennen/S Sodom Sodomie Sofa/S Sofakissen/S Sofia Sofortbild Soforthilfen Sofortmaßnahme/N Softdrink/S Softeis/T Softkey Softporno Software Softwareänderung/P Softwareabteilung/P Softwareadaption/P Softwareanforderung/P Softwareanpassung/P Softwareansatz/T Softwareanschluss/Tp Softwareanteil/EPS Softwarearbeit/P Softwareaufwand/S Softwareauslieferung/P Softwarebeschreibung/P Softwarebestellung/P Softwarebezeichnung/P Softwareentwicklung/P Softwareentwicklungssystem/EPS Softwareerarbeitungszeit Softwareerweiterung/P Softwarefreigabebaustein/E Softwarefreigabemodul/E Softwaregigant/P Softwaregrundkosten Softwareinbetriebnahme Softwareinterface Softwarekey/S Softwarekomponente/N Softwarekonzern/E Softwarekopierfreigabe Softwarekorrektheit Softwarekosten Softwareleute Softwarelieferung Softwarelisting/S Softwarelösung/P Softwaremechanismen Softwaremodifikation/P Softwaremodul/EPS Softwarepaket/EPS Softwarepauschale Softwarepirat/P Softwareplattform/P Softwarepreis/E Softwareproblem/ES Softwareprodukt/EP Softwareprotokoll/EP Softwareprüfung/P Softwareschutz Softwareseite Softwaresimulation/P Softwaresystem/EPS Softwareteil/EP Softwaretestmethode/N Softwaretreiber/N Softwareverbesserung/P Softwareverifikation/P Softwareversion/P Softwarewartung Softwarewerkzeuge Soge/S Sogs Sogwirkung/P Sohle/N Sohlenbreite Sohlenhöhe Sohlenleder/NS Sohlenniveau/S Sohn/EST Sohnemann Sojabohne/N Sojaschrot Sokrates Solarien Solaris Solarium/S Solaruhr Solarzelle Sold/EPST Soldat/P Soldatenfriedhöfe Soldatenfriedhof Soldatenkaiser Soldbücher/N Soldbuch Soldeinsparung Soldquellen Sole Solei/RS Solidarbürgschaft Solidarisierens Solidarisierung/P Solidarität/P Solidaritätsbewegung Solidaritätsminister Solidaritätspartei Solidaritätsuntergruppe Solidaritätszwecke Solidität/P Solist/PW Solitär/EPS Sollbestände/N Sollbestand Sollbruchstelle/N Sollkurve Sollkurvensteuerung Sollmaß/EPT Sollmenge/N Sollprofil Sollstärke/N Sollwert/EPST Sollzustand/ST Solo/NS Solon/S Solostimme/N Solotänzer/FNS Solvenz/P Somalia Somaliland Sommer/NS Sommeraufenthalt/ET Sommerblume Sommerfäden Sommerferien Sommerferienkurse Sommerfest Sommerflugplan/T Sommerfrische/N Sommerfrischler/NS Sommerfrost Sommerhaus/Tp Sommerkleid/J Sommermonate/N Sommernachtstraum/ST Sommerprogramm Sommerresidenz Sommersachen Sommerschlussverkauf/Sp Sommersemester/NS Sommersonne Sommersprosse Sommertag/EPS Sommerurlaub Sommerzeit Sonate/N Sonde/N Sonderabdrücke/N Sonderabdruck/S Sonderabnehmer Sonderabschreibung Sonderabteilung Sonderanfertigung/P Sonderangebot/EPST Sonderauftrag/STp Sonderausbildung/P Sonderausführung Sonderausgabe/N Sonderausschuss/Tp Sonderausstattung Sonderausstellung Sonderbeauftragte/NR Sonderbedingung/P Sonderbehandlung/P Sonderbeilage Sonderbelastung/P Sonderbericht Sonderberichterstatter/S Sonderbevollmächtigte/N Sonderbewegung/P Sonderbotschafter Sonderbuchstaben Sonderdruck/EPS Sonderdruckwerke Sondererlaubnis/q Sonderfahrzeuge Sonderfall/Sp Sonderflug/Sp Sonderfrieden/S Sonderfunktion/P Sondergenehmigung Sonderheft Sonderheit/P Sonderinteresse/N Sonderkabel Sonderkapselung Sonderklassen Sonderkonferenz Sonderkonto Sonderlackierung Sonderlager Sonderling/EPS Sonderlombarde Sondermaßnahme/N Sondermaschine Sondermeldung/P Sondernummer Sonderpostamt Sonderprämie/N Sonderpreis/EPT Sonderproblem/EPS Sonderprospekt Sonderrabatt Sonderrecht/EPS Sonderregelung Sonderreglung Sonderreport/S Sonderschauen Sondersensoren Sondersensorik Sondersituation/P Sondersitzung/P Sonderstatus Sonderstellung/P Sondersteuer Sondertelegramm Sonderurlaub Sonderveranstaltung/P Sondervereinbarung/P Sonderverhältnis/Qq Sonderversion/P Sonderwaffenstillstand Sonderweg/EPST Sonderwünsche/N Sonderzeichen/S Sonderzeichensatz Sonderziehungsrechte/N Sonderzug/STp Sonderzulage Sondierens Sondierung/P Sondierungsauftrag/STp Sondierungsgespräche Sonett/EPST Song/S Sonnabend/EP Sonnabendmorgen Sonnabendvormittag Sonnenaktivität Sonnenallee Sonnenaufgang/Sp Sonnenbäder Sonnenbad/T Sonnenbalkon Sonnenbestrahlung Sonnenblende/N Sonnenblumen Sonnenbrände/N Sonnenbrand/T Sonnenbrille/N Sonnendächern Sonnendach/S Sonneneinstrahlung Sonnenenergien Sonneneruption/P Sonnenfinsternis/q Sonnenfleck/EPS Sonnenfleckenzahl Sonnenjahr/EPST Sonnenküste Sonnenkult Sonnenlicht/S Sonnenschein Sonnenscheinblase Sonnenschirm/EPS Sonnensegel/NS Sonnenseiten Sonnenstich/EPS Sonnenstrahl/P Sonnensystem/EPS Sonnentage Sonnenterrasse Sonnentor Sonnenuhren Sonnenuntergang/Sp Sonnenvogel Sonnenwende/N Sonntag/P Sonntagabend/EPS Sonntagnachmittag Sonntagsanzug/STp Sonntagsausflügler/FNS Sonntagsblatt Sonntagsfahrer/FNS Sonntagsfahrkarte Sonntagsfahrverbot/E Sonntagsjäger/S Sonntagskind/T Sonntagskinder Sonntagskonzert Sonntagsmaler/S Sonntagsruhe/N Sonntagsschulen Sonntagszeitung Sonnwendfeier Sony Sophia/S Sophie/S Sophist/FP Sophisterei/P Sophokles Sopran/EPS Sopranist/FP Sorbe/N Sorgenkind/RT Sorgepflicht Sorgfalt Sorgfaltspflicht/P Sorglosigkeit/P Sorte/N Sortierbegriff/T Sortierens Sortierung/P Sortiment/EPST Sortimentsbuchhändler/FNS Soße/N Soufflee/S Souffleur/EPS Souffleurkästen Souffleurkasten Souffleuse/N Soufflé/S Soundkarte/N Sourcecode/S Souterrain/S Souvenir/S Souveränität/P Souveränitätsansprüche/N Souveränitätsverzicht/S Souveräns Soweto Sowjet/S Sowjetangriff Sowjetarmee Sowjetartillerie Sowjetführung Sowjetimperium/S Sowjetisierung Sowjetkommissar Sowjetmenschen Sowjetoffensive Sowjetpanzer Sowjetregierung Sowjetrepublik/P Sowjetrusse/N Sowjetrussland Sowjetstern Sowjetsystems Sowjettruppen Sowjetunion Sowjetverteidigung Sowjetvolk Sowjetzone Sozialämter/N Sozialabgaben Sozialamt/T Sozialarbeiter/FNS Sozialaufwand Sozialausgaben Sozialausschuss/Tp Sozialbeitrag/STp Sozialbereich Sozialbericht Sozialdarwinismus Sozialdemokrat/P Sozialdemokratie Sozialeinrichtung/P Sozialexperten Sozialgebühren Sozialhilfe Sozialhilfeempfänger Sozialisation/P Sozialisierung Sozialismus Sozialist/FP Sozialistenführer Sozialistengesetze Sozialklausel Soziallasten Sozialleistung/P Soziallisten Sozialministerium/S Sozialordnung Sozialpädagogik Sozialphilosophie Sozialpolitik Sozialpolitiker Sozialprodukt/T Sozialprogramm/E Sozialraum/STp Sozialrecht Sozialreform Sozialstaat/T Sozialstruktur Sozialtarife Sozialunterstützung Sozialversicherung Sozialversicherungsnummer/N Sozialwissenschaft Sozialwissenschaftler/NS Sozietät Soziologe/FN Soziologentag Soziologie Sozius Soziusfahrer/NS Soziussitz/P Späher/FNS Spähtrupp/S Spähwagen/S Späne/N Spärlichkeit Späße/N Spätherbst/EPST Spätkapitalismus Spätling/EPS Spätobst/T Spätsommer/NS Spätzle Spachtel/S Spachtelmassen Spagat/EPS Spagetti Spaghetti Spalier/EPS Spalierbaum/STp Spalierobst Spalt/JS Spaltabdeckung Spaltabdeckungssensor Spaltenbreite Spaltenformatierung Spaltenmodus Spaltenpilz/EPT Spaltungsprozess/EPT Span/S Spandau Spanien/S Spanier/FNS Spannbeton/S Spanndrähte/N Spanndraht/S Spannens Spannfeder/N Spannfutter/S Spannkräfte/N Spannrad Spanns/G Spannung/P Spannungsabfall Spannungsabweichung/P Spannungsamplitude Spannungsanschluss/Tp Spannungsausgang/Sp Spannungsbereich Spannungseingänge Spannungseingang Spannungseinspeisung Spannungsfeld/RS Spannungsgewinn Spannungshub Spannungsmessgeber Spannungsmessung/P Spannungspegeln Spannungspulse Spannungsregler/NS Spannungsschnittstelle Spannungssensoren Spannungssignal Spannungsspitzen Spannungsteiler Spannungsteilung Spannungsüberschreitung Spannungsverhältnis/Qq Spannungsversorgung Spannungswert/EPST Spannungszuführung Spannweite/N Spannwirbel/N Spannzylinder Spant/PW Sparbücher/N Sparbüchsen Sparbuch/S Spareinlage/N Sparer/NS Sparexperten Spargel/N Spargelder Sparguthaben/S Sparkapitalbildung Sparkasse/N Sparkasseninstituten Sparkassenverband Sparkassenzins/T Sparkommissar Sparkonten Sparkonto/S Sparmaßnahme/N Sparpfennig/EPS Sparpläne/N Sparprämien Sparprogramm/S Sparquote/N Sparre/N Sparsamkeit Sparschema Sparschrift Sparschwein Sparta Spartakus Sparzulage Spaß/T Spaßmacher/NS Spaßverderber/N Spaßvögel/N Spaßvogel/S Spastik/R Spatel/N Spaten/S Spatenstiche Spatz/PT Spazierfahrt/P Spaziergängen Spaziergänger/N Spaziergang/S Spazierstöcke Spazierstock/ST Spazierweg/EPST Specht/EPS Speck Speckschnitte/N Speckschwarte Speckseite/N Speckstein/PS Spediteur/FS Spedition/P Speditionsgeschäfte/NS Speer/EPS Speerwurf Speiche/NR Speichel/S Speicheldrüsen Speichelfluss/Tp Speichelleckerei/P Speichelleckern Speicher/JS Speicheranforderung/P Speicheranwendung/P Speicherausbau Speicherbausteine/N Speicherbedarf/S Speicherbereich/EPS Speicherbereinigung Speicherbereinigungsverfahren/S Speicherchip/S Speicherdrossel Speichereffizienz Speicherelemente Speichererhaltungsakku Speichererweiterung/P Speicherfehler Speicherinhalt/P Speicherkapazität/P Speicherkarte/N Speicherkartenfehler Speichermangel Speichermedium Speicherökonomie Speicherplätze/N Speicherplatz/T Speicherplatzbedarf Speicherplatzverwaltung Speicherraum/STp Speicherrichtung Speicherschutz Speicherschutzfunktionen Speicherschutzzeiten Speicherstelle/N Speicherverwaltung Speicherverwaltungsalgorithmen Speicherverwaltungssystem/EPS Speicherverwaltungsverfahren/S Speicherzelle/N Speisebrei Speiseeis/T Speisefett Speisehaus/Tp Speisekammer/N Speisekarte Speisekartoffeln Speiseleitung/P Speisenfolge/N Speisenliste Speisennummer Speisens Speiseöl/PS Speiseraum/STp Speiseröhre/N Speiserohr/ES Speisesäften Speisesäle/N Speisesaal/S Speisesaft/S Speiseschränken Speiseschrank/S Speisespannung Speisewagengesellschaft Speiseweg Speisezettel/S Speisezimmer/N Speisung/P Spektakel/S Spektralanalyse/N Spektralbereich Spektren Spektrometer/NS Spektroskopie Spektrum/S Spekulant/P Spekulantenbibel Spekulantenecke Spekulation/P Spekulationsaktivitäten Spekulationseinfluss/Tp Spekulationseinsatz Spekulationsfieber Spekulationsformen Spekulationsgelegenheit/P Spekulationsgeschäft/EPS Spekulationsgier Spekulationshausse Spekulationshunger Spekulationskapital Spekulationsobjekte Spekulationsorgien Spekulationstipp/S Spekulationswelle/N Spekulationsziel Spendenkonten Spendenquittung Spender/FNS Spengler/N Spenglermeister/NS Sperber/S Sperling/EPS Sperma/S Spermien Sperrballon/EPS Sperrdepot Sperrens Sperrfeuer/N Sperrfunktion/P Sperrgebiet/EPST Sperrgüter/N Sperrgut Sperrhähne/N Sperrhahn/S Sperrhaken Sperrhölzer Sperrholz/T Sperrkonten Sperrkonto/S Sperrkreis/ET Sperrliste Sperrminorität/P Sperrmüll Sperrräder/N Sperrrad Sperrriegel/S Sperrschalter Sperrung/P Sperrvermerk/EPS Sperrvertrag/STp Sperrwirkung/P Sperrzöllen Sperrzoll/S Sperrzonen Spesen Spesenbelastung Spesenkonten Spesenkonto/S Spesenrechnung/P Spesensätze Spessart Spezerei/P Spezereiware/N Spezi/T Spezialärzte/FN Spezialanwendung/P Spezialarzt/T Spezialausbildung/P Spezialausgabe Spezialdisziplin Spezialeinheit/P Spezialentwicklung/P Spezialerfahrung/P Spezialfächer Spezialfach/S Spezialfall/STp Spezialfunktion/P Spezialgebiet/EPST Spezialgeräte/N Spezialgeschäft/EPS Spezialhaus/Tp Spezialisierens Spezialisierung/P Spezialist/FP Spezialistenrunde Spezialistentum/S Spezialität/P Spezialklemmenmodul Spezialmarkt/STp Spezialmaschine/N Spezialmesse Spezialpapiere Spezialrelais Spezialschaltung/P Spezialsoftware Spezialsprunglauf/Sp Spezialstähle Spezialstrecke Spezialunternehmen Spezialverfahren Spezialversion/P Spezialvertrieb Spezialwerte Spezifika Spezifikation/P Spezifikationspapier Spezifikationssprache/N Spezifikationstechnik/P Spezifikum/S Spezifizierens Spezifizierung/P Sphäre/N Sphinx Spickaal/EPS Spiegel/J Spiegelbild/RT Spiegeleier Spiegelflächen Spiegelgläser/N Spiegelglas/T Spiegelns Spiegelreflexkamera/S Spiegelschrift/P Spiel/MRST Spielanzug/STp Spielart/P Spielausschuss/Tp Spielball/Sp Spielbank/P Spielbankprozess/EPT Spielbaum/STp Spielbeginn Spieldose/N Spielens Spieler/FNS Spielerei/P Spielergebnis/Qq Spielfeld/R Spielfilm/EPS Spielfolge/N Spielfreude Spielführer/N Spielgefährte/N Spielgeld/T Spielgeldern Spielhälfte Spielhöllen Spielkamerad/FP Spielkarte/N Spielkasino/S Spiellaune Spielleiter/S Spiellust Spielmänner Spielmann/S Spielmarke Spielminuten Spielpartner Spielphase Spielpläne Spielplätzen Spielplan/S Spielplatz/T Spielraum/STp Spielregel/N Spielsachen Spielschluss/Tp Spielschuld Spielschule/N Spielsonntag Spieltag/ES Spieltisch/EPST Spieltrieb/S Spieluhren Spielverderber/FNS Spielverlängerung Spielwaren Spielwarenhändler/FNS Spielwarenhandlung Spielwarenindustrie Spielwarenmesse Spielweise Spielzeit/P Spielzeug/EPS Spielzug/Sp Spieß/T Spießbürger/N Spießbürgertum/S Spießgeselle/N Spike/S Spin/S Spinat Spind/PT Spindel/N Spinett/EPS Spinnengewebe/S Spinner/FNS Spinnerei/P Spinnmaschine/N Spinnrädern Spinnrad/T Spinnwebe/N Spion/EFPS Spionage Spionageabwehr Spionageaffären Spionagebehörde Spionagefilm Spionagering Spionageschiffe Spirale/N Spiralfedern Spiralnebel Spiritismus Spiritist/FP Spirituosen Spirituosengeschäft Spirituosenhersteller Spiritus Spirituskocher/NS Spitäler/N Spital Spitzbärte/N Spitzbäuche/N Spitzbart Spitzbauch/S Spitzbogen Spitzbüberei/P Spitzbub/EP Spitzbubenstreiche/NS Spitzel/S Spitzenbelastung/P Spitzenbewertung/P Spitzendrehbänken Spitzendrehbank Spitzenerfolg/EPS Spitzengeschwindigkeit/P Spitzengremien Spitzengruppe/N Spitzenhäubchen Spitzenhöschen Spitzenkandidat Spitzenkaufmann Spitzenklasse/N Spitzenkleid/RT Spitzenkurse Spitzenlast/P Spitzenleistung/P Spitzenlöhne/N Spitzenlohn Spitzenmanager/NS Spitzenmannschaft Spitzenmengen Spitzenmodelle Spitzenpapiere Spitzenpolitiker Spitzenpreis/EPT Spitzenprodukten Spitzenreiter/FNS Spitzenspieler Spitzensport Spitzensportler Spitzenstellung/P Spitzenstrom Spitzenturner Spitzenverband/T Spitzenwert/EPST Spitzenzahl Spitzfindigkeit/P Spitzhacke/N Spitzmäusen Spitzmaus Spitzname/N Spitznamen/S Spleen/S Splint/EPS Splitt/S Splitter/S Splittergruppe Splitterpartei/P Spöttelei/P Spötter/FNS Spötterei/P Sponsor/P Spontaneität Spontanreaktion/P Spooler Spooling Sporen/I Sporn/S Spornrädchen/S Sport/S Sportabzeichen Sportangler Sportanlagen Sportanzug/STp Sportart/P Sportartikel/NS Sportausschuss/Tp Sportbekleidung Sportbericht/EPS Sportbewegung Sportbund Sportclub Sportcoupe Sportfelgen Sportfest/EPS Sportflieger Sportflugzeug/PS Sportförderung Sportfreund/FPS Sportgericht Sportgeschäft/ET Sporthalle/N Sporthemd/PST Sporthochschule Sportjacke/N Sportjournalist Sportkleidung/P Sportklub Sportkontakte Sportkurse Sportlehrer/FNS Sportler/FNS Sportleraustausch Sportmannschaften Sportmaschine Sportminister Sportnachrichten Sportorganisation/P Sportpalastrede Sportplätzen Sportplatz/T Sportprogramm Sportschuh/PS Sportschule Sportsleute Sportsmänner/N Sportsmann/S Sportstar/S Sportstudio/S Sporttasche Sportveranstaltung/P Sportverkehr/S Sportwagen/S Sportzeitung/P Sportzentrum Spott/ST Spottbild/RT Spottgedicht/EPST Spottgelächter/NS Spottgeld/RT Spottlied/T Spottlieder Spottlüsten Spottlust Spottname Spottpreis/EPT Spottschrift/P Sprachbeschreibung/P Sprachbestandteil/EPS Sprachbetrachtung Sprachdefinition/P Sprachdesign/S Sprache Spracheigenheit Spracheigenschaft/P Spracheingabe Sprachelement/EPST Spracherweiterung/P Sprachfamilie/N Sprachfehler/NS Sprachferien Sprachforschung/P Sprachführer/NS Sprachgebiet/PT Sprachgebrauch/S Sprachgefühl/EPS Sprachgruppen Sprachkenner/N Sprachkenntnis/q Sprachkern Sprachkonstrukt/EPS Sprachlabor/EPS Sprachlehre/NR Sprachlehrer/FNS Sprachmittler/NS Sprachraum/STp Sprachregeln Sprachregelung/P Sprachreiniger/S Sprachrohr/EPS Sprachschatz/T Sprachschule/N Sprachstörung/P Sprachstudium/S Sprachübersetzung Sprachübersetzungshilfe Sprachumfang/S Sprachumgebung Sprachunterricht/PS Sprachverhalten/S Sprachverständnis/Qq Sprachverwilderung Sprachwerkzeug/EPS Sprachwissenschaft/P Sprachwissenschaftler/NS Sprechanlage Sprechart/P Sprechchöre Sprechchor/EPS Sprecher/FNS Sprechfrequenz/P Sprechfunk/S Sprechpause/N Sprechplatte Sprechprobe/N Sprechsilbe/N Sprechstunde/N Sprechstundenhilfe Sprechtaste/N Sprechübung/P Sprechweise/N Sprechzimmer/NS Spreizens Spreizfuß/Tp Spreizung/P Sprengarbeiten Sprengbombe/N Sprengel/NS Sprengens Sprenggeschoss/EPT Sprengkapseln Sprengköpfe Sprengkörper/NS Sprengkommando/S Sprengkopf/T Sprengkraft Sprengladung/P Sprenglöcher Sprengloch Sprengmeister Sprengring/EPS Sprengsätze/N Sprengsatz/T Sprengschuss/Tp Sprengstoff/EPST Sprengstoffanschlag/STp Sprengstoffbesitz Sprengstoffprozess/EPT Sprengung/P Sprengwirkung/P Sprengwolke Spreu Sprichwörter/N Sprichwort/S Springbrunnen/S Springer/FNS Springfluten Springpferd Springquell/P Springreiten Springseil/PS Springturnier Sprint/RS Sprinter/FNS Sprit/S Spritzenhaus/Tp Spritzer/NS Spritzfahrt Spritzflakon/S Spritzguss/Tp Spritzgussformen Spritzgussteil Spritzlack Spritzpistole/N Spritztour Spritzwasser Sprössling/EPS Sprosse/S Sprüche/N Sprühkleber Sprühregen Sprünge/N Spruch/S Spruchbänder/N Spruchband Spruchkammer Sprudel Sprudelflaschen Sprudelflascheneffekt Sprudelwasser Sprung/ST Sprungadresse/N Sprungbefehl/S Sprungbein/PS Sprungbrett/S Sprungbrettern Sprungfedermatratze/N Sprungfedern Sprungfunktion/P Sprunglauf/Sp Sprungschanze/N Sprungtabelle/N Sprungtürme Sprungturm/S Sprungweite Sprungziel/EPS Spülküche Spüllappen/S Spülstein/EPS Spülung/P Spülwasser/NS Spürgerät Spürhund/EPST Spürnase/N Spürsinn/EPS Spucknäpfen Spucknapf/S Spuk/S Spukgeschichte Spukschloss/T Spulenimpedanz Spulwürmer Spulwurm/S Spur/P Spurenelement/EPST Spurenverwischen/S Spurt/SW Spurverlauf/Sp Sputnik/S Srebrenica Sri St St. StGB StVO Stäbe/N Städte/MNR Städteansichten Städtebaugesetz Städtebauinstitut Städtebaus Städtefreiheit Städter/FNS Städtetag Städteversammlung Städtewesen/S Städtezug/STp Stämme/N Stände/MNR Ständeorganisation/P Ständer/NS Ständewesen/S Stängel/NS Stänker/S Stänkerei/P Stärkegrad Stärkemehl/S Stärkens Stärkung/P Stärkungsmittel/S Stätte/N Staat/EPST Staatenbünde/N Staatenbund Staatenexplosion Staatengemeinschaft Staatengründung Staatenverband Staatenverbund Staatlichkeit Staatsakt/E Staatsaktion/P Staatsangehörige/NR Staatsangehörigkeit Staatsangelegenheit Staatsanleihe/N Staatsanwälte Staatsanwalt/ST Staatsanwaltschaft Staatsanzeiger/NS Staatsapparat Staatsarchiv/EPS Staatsausgaben Staatsbahn Staatsbankpräsident Staatsbankrott Staatsbeamte/NR Staatsbediensteter Staatsbegräbnis/Qq Staatsbesuch/ET Staatsbetrieb/E Staatsbibliothek Staatsbürger/NS Staatsbürgerschaft/P Staatschef/S Staatsdienst/EPT Staatseinkünfte/N Staatsekretär Staatsempfang Staatsfeind/EPST Staatsform/P Staatsgarantie/N Staatsgebäude/S Staatsgebiet Staatsgefangene/NR Staatsgefühl Staatsgeheimnis/Qq Staatsgelder Staatsgeschäft/EPS Staatsgewalt Staatsgrenzen Staatsgüter Staatshandelsländer/N Staatshaushalt/ES Staatshoheit/P Staatskassen Staatskirche/N Staatskörper/NS Staatskontrolle Staatskosten Staatskunst Staatslehre/N Staatsmänner/N Staatsmacht Staatsmann/ST Staatsminister/N Staatsoberhäupter/N Staatsoberhaupt Staatsoper Staatsorchester Staatsordnung Staatsorgane Staatspapier/EPS Staatspartei Staatspleiten Staatspolizei Staatspreis/EPT Staatsprozess/EPT Staatsräson Staatsräte Staatsrat/S Staatsrecht/PS Staatsrechtler Staatsrechtslehrer/NS Staatsregierung/P Staatsreligion Staatsrundfunk Staatsschätzen Staatsschatz/T Staatsschulden Staatssekretär/EPS Staatssekretariat Staatssicherheitsdienst/EPT Staatssport Staatsstreich/EPST Staatsverbrechen/S Staatsverfassung/P Staatsverschuldung Staatsvertrag/Tp Staatsverwaltung Staatswesen/S Staatswirtschaft Staatswissenschaften Staatswohl/S Staatszuschuss/Tp Stab/ST Stabantenne/N Stabbatterie/N Stabhochspringer/NS Stabhochsprünge Stabhochsprung/S Stabhochsprungtrainer Stabilisator/PS Stabilisierens Stabilisierung/P Stabilisierungsfonds Stabilisierungskriterium Stabilisierungspolitik Stabilisierungsprogramm Stabilisierungsvorhaben Stabilität/P Stabilitätsgeschichte Stabilitätsgesetz Stabilwerden Stabreim/EPS Stabsärzten Stabsarzt/T Stabschef/S Stabsfeldwebel/S Stabsoffizier/EPS Stabsquartier/EPS Stabsunteroffizier Stachel/S Stachelbeeren Stacheldrähte/N Stacheldraht/S Stacheldrahtsperren Stacheldrahtverhau Stachelschweine Stachelwalze Stachelwalzendrucker Stachus Stack/S Stadion/S Stadium Stadt Stadtämter Stadtadel Stadtamt Stadtautobahn Stadtbahn/P Stadtbauamt Stadtbaurat Stadtbevölkerung Stadtbewohner/S Stadtbezirk/E Stadtbild/RT Stadtbücherei Stadtbürgertum Stadtdirektor Stadtfriedhof Stadtgebiet/EPS Stadtgemeinde Stadtgespräch/EPS Stadtgrenze Stadthalter Stadtherren Stadtjugendamt Stadtkämmerer/S Stadtkasse/N Stadtköfferchen/S Stadtkommandant/P Stadtkommandantur Stadtleben/S Stadtleute Stadtmauer/N Stadtmusik Stadtparlament/EPS Stadtpläne/N Stadtplan Stadtplaner Stadtplanung/P Stadtprospekt Stadträte/N Stadtrand Stadtrandsiedlung Stadtrat/ST Stadtrecht/EPS Stadtregion/P Stadtrepubliken Stadtrundfahrt Stadtsparkasse Stadtstaat/EPS Stadtteil/EPS Stadttheater Stadttor/EPS Stadtumzug/Sp Stadtväter Stadtverkehr Stadtverordnete/N Stadtvertretung Stadtverwaltung/P Stadtviertel/NS Stadtwappen Stafette/N Stafettenlauf/Sp Staffage/N Staffel/J Staffelei/P Staffellauf/Sp Stagnation Stahlarbeitergewerkschaft Stahlbäder/N Stahlbad Stahlbau/S Stahlbauten Stahlbeton/S Stahlbetonbau Stahlblech/PS Stahlblechausführung Stahlblechgehäuse Stahldraht Stahleisen Stahlerzeugnis/Qq Stahlfeder/N Stahlfläche Stahlgehäuse Stahlgussgehäuse/N Stahlhelm/EPS Stahlkabel Stahlkammer/N Stahlkonzern Stahlplatte Stahlpreis/E Stahlproduzent/P Stahlrohre Stahlrohrmöbel/NS Stahls Stahlspäne/N Stahlstich/EPST Stahlstreik Stahlverformung Stahlwerk/EPS Stahlwerte Stahlwirtschaft Stahlwollen Stalin/S Stalingrad Stalinisierung Stalinismus Stall/JSp Stallarbeit Stallgefährte/N Stallgeld/T Stallgeldern Stallknecht/PS Stallmeister/S Stamm/ST Stammaktie Stammbaum/STp Stammbücher Stammbuch Stammburg/P Stammdateneigenschaften Stammdatum Stammeltern Stammesfehde Stammesfürst Stammesgeschichte Stammeskrieger Stammeslinie Stammform Stammgäste/N Stammgast Stammgeschichten Stammhalter/NS Stammhaus/Tp Stammheim Stammhirn Stammkapital/S Stammkino Stammkunde/FN Stammkundschaft Stammliste Stammlokal/PS Stammpersonal Stammrolle/N Stammsilben Stammsitz/ET Stammtafel/N Stammtisch/EPST Stammtischbrüder Stammväter/N Stammvater/S Stammvölker Stammvolk Stammwerk Stammwörter/N Stammwort/S Standard/S Standardabweichung/P Standardausrüstung Standardausstattung Standardbedeutung/P Standardbeschriftung Standardbetriebssystem Standardeinstellung/P Standardfahrten Standardfirmware Standardformat Standardfunktion/P Standardgerät Standardisierens Standardisierung/P Standardisierungskomitee/S Standardisierungsprozess/EPT Standardkabeln Standardklasse Standardlage Standardlieferumfang/S Standardlösung/P Standardmenü/S Standardmodell/EPS Standardmodul Standardoberfläche Standardpraxis Standardpreis/EPT Standardprodukten Standardprogramm Standardsituation/P Standardsoftware Standardtechnik/P Standardtipp Standardtyp/P Standardverfahren/S Standardversion/P Standardverzeichnis/Qq Standardwerk/EPST Standardwert/EPST Standardzeichen/S Standarte/N Standbein Standbild/RT Standdruck Stande/S Standesämter/N Standesamt/ST Standesbeamte/N Standesbewusstsein/S Standesdünkel/S Standesehre/N Standesperson/P Standesunterschied/EPT Standfestigkeit Standfoto/S Standgehäuse Standgeld/T Standgeldern Standgericht Standhaftigkeit Standleitung/P Standlicht/RS Standmieten Standort/EPST Standortbestimmung Standpauke/N Standplätze/N Standplatz/T Standpunkt/EPS Standquartier/EPS Standrecht/S Standuhr/P Stanford Stange/N Stangenbohne/N Stangenkonstruktion/P Stangenspargeln Stanniol/S Stapel/PS Stapelen/JSW Stapelgehäuse Stapelgüter/N Stapelgut Stapellauf/Sp Stapelplätze/N Stapelplatz Stapelverarbeitung Star/EPS Staranwalt Starkstrom/S Starkstromkabel/S Starnberger Starrkrämpfe/N Starrkrampf Starrsinn/EPS Starrsucht Start/RSW Startadresse Startbahn/P Startbedingung/P Startbit/S Starter/NS Starterlaubnis/q Starthilfe Startmechanismus Startnummer Startplätze/N Startplatz/T Startposition/P Startprozedur Startpunkt/EPST Startraketen Startschleuder Startschuss/Tp Startseite Startsignal Starttermin Startverbot/EPS Startversuch/EPS Startvorbereitung/P Startvorgang Startvorzeichen Startwert Startzeichen Startzeitpunkt/E Stasi Statement/S Statik/R Statiker/NS Station/P Stationierungskosten Stationsärzte/FN Stationsarzt/T Stationsvorsteher/N Statist/P Statistenrolle/N Statistik/PR Statistiker/FNS Statistin Stativ/EPS Statthalter/NS Stattlichkeit Statuen/I Statur/P Status Statusanzeige/N Statusausgang/S Statusbit/S Statuskanal Statusmeldung/P Statusoutput Statussymbol/EPS Statuszeile/N Statut/PS Stau/JRS Staub/S Staubbeutel/N Staubecken/S Staubentwicklung Staubfänger/S Staubflocke/N Staubgefäß/EPT Staubkörnern Staubkorn/S Staublungen Staubmäntel/N Staubmantel/S Staubsauger/NS Staubtücher/N Staubtuch/S Staubwedel/N Staubwolke/N Stauchens Stauchung/P Staudämme Staudamm/ST Staude/N Stauens Staufenkönig Staufenreich Staufer Staumauer Staupe Stausee/N Stauwerk/PS Stavanger Stck Stck. Std Std. Steak/S Stechfliegen Stechginster/S Stechheber/NS Stechmücke Stechpalme/N Stechschritt/EPST Stechuhr/P Stechzirkel/NS Steckadapter/S Steckbrief/EPST Steckbrücke Steckdose/N Steckenpferd/EPT Steckens Stecker/NS Steckeradapter Steckeranordnung Steckeranschluss/Tp Steckeranschlussraum Steckerauslegung Steckerbelegung Steckerbuchsen Steckerdichtung/P Steckereinsätze Steckereinsatz Steckerführung Steckergehäuse Steckerhalter Steckerhalterung Steckerhülse Steckerkombination/P Steckerkupplung/P Steckerleiste/N Steckerlinie Steckerpin/S Steckerplan Steckerplatine Steckerplatten Steckerschutz Steckersystem Steckerteil Steckertyp Steckkarte/N Steckkontakt/EPS Steckkräfte/N Steckling/EPS Stecknadel/N Steckplätze Steckplatz Steckreis/T Steckrüben Steckschlüssel/N Steckschuss/Tp Steckverbinder/NS Steckverbinderprobleme Steckverbindung/P Steckzyklen Stefan/S Stefanie/S Steffen/S Steffi/S Steg/EPS Steganographie Stegreif/S Stehaufmännchen/S Stehbolzen Steher/NS Stehhöhe Stehkragen Stehlampe/N Stehplätzen Stehplatz/T Stehplatzinhaber/FNS Stehpult/EPST Stehvermögen/S Steiermark Steifheit Steifigkeit Steigbügel/NS Steigeisen/S Steigens Steiger/JS Steigerung/P Steigerungsform/P Steigerungsgrad/EPST Steigerungsrate/N Steigerungswert/EPT Steigfähigkeit Steigung/P Steigungsregen Steilhang/Sp Steilheit Steilküste Steilufer/N Stein/EGPS Steinadler/NS Steinbau Steinbearbeitung Steinböcken Steinbock/S Steinbrüche/N Steinbruch/S Steinbutt/EPS Steinchen Steindamm Steindruck/PRS Steineiche Steinfrüchte/N Steingärten Steingarten/S Steingut/EPS Steinigens Steinigung/P Steinkohle Steinkohlenbergwerk/EPS Steinkohlenförderung Steinkultur Steinmarder/S Steinmetz Steinobst/ST Steinpilz/EPT Steinplatte Steinplatz Steinquadern Steinsalz/EPT Steinsalzlager Steinschlag/Sp Steinschleuder Steinstücke Steinway/S Steinweg Steinwürfen Steinwurf/S Steinzeit/P Steinzeitmensch Steiß/EPT Steißbein/EPS Stellage/N Stelldichein/S Stellenangebot/EPST Stellenanzeige Stellengesuch/ET Stelleninhaber Stellenjäger/S Stellenleiter Stellennachweis/ET Stellens Stellenvermittlungsbüro/S Stellenwert Stellenzahl Stellglied Stellglieder Stellgröße/N Stelligkeit/P Stellmacher/N Stellmöglichkeit/P Stellplätze/N Stellplatz Stellschraube/N Stellsignal Stellung/P Stellungnahme/N Stellungskrieg/EPST Stellungsspiel/EPS Stellungsuchenden Stellungsuchender Stellungswechsel/S Stellungswert/T Stellvertreten/JS Stellvertreter/FNS Stellvorrichtung/P Stellwänden Stellwerk/EPS Stellwerte Stellzylinder/N Stemmbögen Stemmbogen/S Stemmeisen/S Stempel/S Stempelbögen Stempelbogen/S Stempeldruck Stempelfarbe/N Stempelgebühren Stempelkissen/S Stempelmarken Stempeluhr/P Stenoblock Stenogramm/EPS Stenograph/FP Stenographie/Nf Stenotypist/FP Stephan/S Stephanstag Steppdecke/N Steppentiere Steppnähten Steppnaht Stepptänze Stepptanz/T Sterbebett/PS Sterbefall/Sp Sterbefallversicherung Sterbegeld/T Sterbegelder Sterbekasse/N Sterbens Sterbesakrament/EPS Sterbestunde/N Sterbeurkunden Sterblichkeit Sterblichkeitsziffer/N Stereo Stereoaufnahme/N Stereofonie Stereometrie Stereomikroskop Stereophonie Stereoplatten Stereoskop/EPS Stereotypie Stereotyps Sterilisation/P Sterilisierens Sterilisierung/P Sterilität Sterling Stern/EMPST Sternbild/RS Sterndeuter/NS Sterndeutung Sternenbanner/N Sternenfahrt/P Sternenhimmel Sterngebiet Sternhaufen Sternknoten Sternlicht/R Sternmotor/PS Sternschaltung/P Sternschnuppen Sternstruktur Sternstunde/N Sternverteiler Sternverteilung Sternwarten Stethoskop/EPS Stetigförderer Stetigkeit Stettin Steuer/J Steuerabzug/STp Steuerabzugsbetrag/STp Steueralgorithmen Steueranweisung/P Steueranwendung/P Steueratlas Steueraufgabe/N Steueraufkommen/S Steueraufschlag/Sp Steuerausfall/Sp Steuerausgang/Sp Steuerbeamte Steuerbefehl/EPS Steuerbefreiung/P Steuerbegünstigung Steuerbehörde/N Steuerbelastung Steuerberater/FNS Steuerberatungsfirmen Steuerbereich Steuerbescheid/E Steuerbescheinigung Steuerbetrag/STp Steuerbetrug/S Steuerbewegung Steuerbewilligung Steuerblock Steuerbord/T Steuerbürger Steuerbyte/S Steuercode/S Steuercomputer Steuerdaten Steuerdüsen Steuereingang/Sp Steuereinheit/P Steuereinnahmen Steuereinrichtung/P Steuereinsparung/P Steuerelektronik/P Steuerempfänger Steuererhöhung/P Steuererklärung/P Steuererlass/EPT Steuererleichterung/P Steuerermäßigung/P Steuerersparnis/q Steuerfähigkeit Steuerfahndung Steuerfile/S Steuerflag/S Steuerflosse/N Steuerflüchtlinge Steuerfragen Steuerfreiheit/P Steuerfunktion/P Steuergeheimnis/Qq Steuergelder Steuergerät/EPST Steuergerätefamilie Steuergeräteseite Steuergesetz Steuergröße/N Steuergruppe/N Steuerhinterzieher/NS Steuerhinterziehung/P Steuerhinterziehungsbranche Steuerinformation/P Steuerjahr Steuerkarte/N Steuerklasse/N Steuerknüppel/NS Steuerknüppelfunktion/P Steuerknüppelposition/P Steuerknüppelsignale Steuerknüppelspannung/P Steuerkonzept Steuerkraft Steuerlast/P Steuerleitung/P Steuermänner Steuermann/S Steuermarken Steuermaßnahme/N Steuermenü/S Steuermittel/N Steuermöglichkeit/P Steuermodell Steuermodul/EPS Steuernachlass/Tp Steuernummer Steueroasen Steueroaseneinwohner Steueroasenländer Steuerparameter/N Steuerpegel Steuerpflicht Steuerpolitik Steuerpolizei Steuerpotential/EPS Steuerpotenzial/EPS Steuerprogramm/EPS Steuerprozess/EPT Steuerprüfung Steuerräder/N Steuerrad/S Steuerratgeber Steuerrechner/NS Steuerrecht Steuerreform Steuerrückstände Steuerruder/N Steuersäckel Steuersachen Steuersatz Steuerschätzung/P Steuerschnüffler/NS Steuerschraube Steuerschulden Steuersender Steuersenkung/P Steuersequenz/P Steuersignale/N Steuersoftware Steuerspannung/P Steuerspannungsänderung Steuerspannungsbereich Steuerstrafverfahren Steuerstromkreise Steuersystem/EPS Steuertarife Steuertechnik Steuertermin/E Steuerung/P Steuerungsablauf/Sp Steuerungsaufgabe/N Steuerungsbefugnis/q Steuerungselement/EPS Steuerungsfähigkeit/P Steuerungsfunktion/P Steuerungsgehäuse/S Steuerungsgeräte/N Steuerungskomponente/N Steuerungskreisen Steuerungsleistung/P Steuerungslogik Steuerungsmaßnahme/N Steuerungsmechanismen Steuerungsmethode/N Steuerungsmittel/NS Steuerungsmöglichkeit/P Steuerungsproblem/EPS Steuerungsrechner Steuerungsrichtlinie/N Steuerungssektor Steuerungssystem/EPS Steuerungstechnik Steuerunterlagen Steuerveranlagung/P Steuervergünstigung/P Steuerverkürzung Steuerverwaltung/P Steuervorgang/Sp Steuervorteile Steuerwort Steuerzahler/NS Steuerzange Steuerzeichen/S Steuerzeichensatz Steuerzeit/P Steuerzugeständnis/Qq Steuerzustand Steuerzylinder Steve/S Stevens Steward/S Stewardess/P Stewart/S Stich/EPS Stichel/S Stichelei/P Stichflamme/N Stichhaltigkeit Stichling/P Stichprobe/N Stichpunkt/EPT Stichsäge/N Stichtag/EPS Stichwaffe/N Stichwahl Stichwörter/N Stichwort/EPST Stichwortsammlung Stichwortverzeichnis/Qq Stichwunde/N Sticker/FNS Stickerei/P Stickhusten/S Stickrahmen/S Stickseide Stickstoffe/N Stickstoffpreise Stiefbrüder/N Stiefbruder Stiefel Stiefelhose/N Stiefelknecht/EPS Stiefelputzer/NS Stiefgeschwister/N Stiefkind Stiefmütter/M Stiefschwester Stiefsöhne/N Stiefsohn/S Stieftöchter Stieftochter Stiefväter/N Stiefvater/S Stiege Stiel/EPS Stielachse Stielaugen Stielzylinder Stier Stierkämpfen Stierkämpfer/N Stierkampf/S Stierkampfarena Stift/JRST Stifteinsätze Stifteinsatz Stifter/FNS Stifterverband Stiftgehäuse Stiftkontakte Stiftleiste Stiftsdame Stiftsfest/EPST Stiftsfräulein/S Stiftsherr/NP Stiftskirche/N Stiftsruine Stiftstecker Stiftungsrat Stiftzähne Stiftzahn Stigma Stil/EPS Stilart/P Stilblüte/N Stilett/EPS Stilgefühl/EPS Stilist/FP Stilistik/P Stilkunde Stillegungsprogramm Stillens Stillleben/S Stilllegens Stilllegung/P Stillsetzen Stillstand/ST Stillstandszeit/P Stillung/P Stilmittel Stilmöbel/N Stilperiode Stilübung Stimmabgabe/N Stimmaufwand/S Stimmbänder/N Stimmband Stimmbrüche Stimmbruch/S Stimmeneinheit/P Stimmenenthaltung Stimmenfang/S Stimmengewinne Stimmenmehrheit/P Stimmenrückgang Stimmens Stimmenzählung/P Stimmenzuwachs/T Stimmer/NS Stimmgabel Stimmkarten Stimmlage/N Stimmrecht/EPST Stimmung/P Stimmungskanone Stimmungslage/N Stimmungsmache Stimmungsmensch Stimmungsmusik Stimmungspegel Stimmungsumschwung/S Stimmwechsel/S Stimmzettel/N Stimulation/P Stimulus Stinkbombe/N Stinktier/EPS Stipendiat/P Stipendien Stipendium/S Stippvisite/N Stirn/EGP Stirnbänder/N Stirnband/S Stirnbinde/N Stirnhöhle/N Stirnhöhlenvereiterung/P Stirnlocke/N Stirnrädern Stirnrad/S Stirnrunzeln Stirnschalung Stirnschalungsparametern Stirnschalungsposition Stirnschalungsregelung Stirnschalungszylinder/N Stirnseite/N Stirnwände/N Stöcke/N Stöckelschuh/EPS Stöcklein Stöpsel/S Stör/JS Störablauf/Sp Störabstand/T Störabstandssignal Störaktion/P Störanfälligkeit Störbarkeit Störbeseitigung Störecho Störenfried/EPST Störer Störfaktor/P Störfall/Sp Störgeräusch/E Störimpuls/E Störlichtsignale Störlichtunterdrückung Störmeldung/P Störpegel Störquelle/N Störreflexion/P Störrischkeit Störschallentwicklung Störsender/NS Störsignale/N Störspitzen Störstelle/N Störstrahlung Störunempfindlichkeit Störungsanzeige/N Störungsdienst/EPST Störungsfunktion/P Störungsmeldung/P Störunterdrückung Störuntergrund/S Stöße/N Stößel/N Stochastik/R Stock/JS Stockdegen/S Stockenten Stockfisch/P Stockflecken/SW Stockholm/S Stockpunkt/EPST Stockschnupfen/S Stockwerk/EPS Stockwerksgarage/N Stockzähne/N Stockzahn/S Stoff/EPST Stoffdruckerei Stoffel/S Stofffarbe/N Stofffetzen/S Stoffwechsel/NS Stoiker/NS Stola Stollen/S Stolperer Stoltenberg/S Stonehenge Stopbit/S Stopfbüchse/N Stopfens Stopfgarn Stopfmittel/NS Stopfnadeln Stopfung/P Stoppel/N Stoppelbärten Stoppelbart/S Stoppelfeld/RT Stoppelwerk/EPS Stopper/NS Stopplicht/R Stoppsignal Stoppuhr/P Storch/S Storchschnäbel Storchschnabel/S Stornierens Stornierung/P Storno Stoßanregung Stoßbelastung/P Stoßdämpfer/NS Stoßdegen Stoßes Stoßfänger/N Stoßfestigkeit Stoßgebet/EPST Stoßkante/N Stoßkeil/PS Stoßkräfte Stoßkraft Stoßkugel/N Stoßschutzrahmen Stoßseufzer/NS Stoßstange Stoßtrupp/EPS Stoßverkehr/S Stoßvorgang/Sp Stoßzähne Stoßzahn/S Stoßzeit Stotterer/NS Sträfling/EPS Strähne/N Strände/N Sträucher/N Strafandrohung Strafanstalt/P Strafantrag/Sp Strafanzeigen Strafarbeit/P Strafbarkeit Strafbefehle Strafbestand Strafentlassene/N Straferlass/EPT Strafexpedition/P Straffheit Straffung Strafgefängnis/Qq Strafgefangenen Strafgegangener Strafgericht/PS Strafgesetz/T Strafgesetzbüchern Strafgesetzbuch/S Strafjustiz Strafkammer Straflager/NS Strafmandat/EPS Strafmaß/EPT Strafmaßnahmen Strafmüdigkeit Strafporto/S Strafpredigt Strafprozess/EPT Strafprozessordnung/P Strafpunkt/PS Strafraum/STp Strafrecht/PS Strafregister/S Strafrichter Strafsache Strafstoß/Tp Straftat/P Straftatbestände Strafverfahren/S Strafverfolger Strafverfolgungsbehörde/N Strafversetzung Strafverteidiger/FNS Strafvollstreckung/P Strafvollzug/S Strafzettel Strahl/JST Strahlantrieb/EPS Strahlenbehandlung/P Strahlenbrechung/P Strahlendosis Strahlenforschung Strahlöfen Strahlofen Strahlrohr/EPS Strahltriebwerk/EPS Strahlturbine/N Strahlungsbereich Strahlungsenergie Strahlungsquelle Strahlungsschäden Strahlwassergeschützt Strand/ST Strandanzug/STp Strandbäder/N Strandbad Strandgüter/N Strandgut/S Strandhotel Strandkörbe/N Strandkorb Strandmoden Strandpromenade/N Strandräuber/NS Strandschuh/EPS Strandwächter/NS Strang/Sp Strangpresse/N Strapaze/N Straßburg Straße/N Straßenanzug/STp Straßenarbeiter/FNS Straßenbahn Straßenbahnlinien Straßenbahnnetz Straßenbahnverkehr Straßenbahnwagen/S Straßenbahnzug/Sp Straßenbau/S Straßenbauindustrie Straßenbeleuchtung Straßenbild Straßenbrücke Straßendämme Straßendamm/S Straßendecke Straßendirnen Straßenecke/N Straßenfahrer Straßenführung Straßengräben Straßengraben Straßenhändler/FNS Straßenjunge/N Straßenkämpfe Straßenkampf/S Straßenkarte Straßenkehrer/NS Straßenkehrmaschinen Straßenkrawalle Straßenkreuzer/S Straßenkreuzung/P Straßenlagen Straßennetz/T Straßenpreis/EPT Straßenräuber/NS Straßenrand Straßenraub Straßenreinigung/P Straßenrennen Straßensammlung/P Straßenschild Straßenschildern Straßenschlachten Straßenseite Straßensperre/N Straßenüberführung/P Straßenübergang Straßenunterführung Straßenverkehr/S Straßenverkehrsamt Straßenwalze/N Straßenzug/Sp Straßenzustand/S Strass Stratege/N Strategie/N Strategieänderung Strategieprogramm Stratosphäre Stratosphärenkreuzer/NS Strauch/S Strauchdieb/EPS Strauchwerk/PS Strauß/ET Strauss Strawinsky/S Streamer/NS Strebabschnitt/E Strebantrieb Strebanzeige Strebausbau/S Strebausbausteuerung/P Strebausbautechnik Strebausbauten Strebautomatik/P Strebautomatisierung Strebbereich Strebbreite Strebbus Strebdarstellung Strebdaten Strebdatenerfassung Strebebalken/S Strebens Strebepfeiler/NS Streber/NS Strebertum Strebfehler/N Strebfront Strebfunktion Strebgeradehaltung Strebgeradhaltung Strebhorizont Strebinbetriebnahme Streblage Strebmannschaft Strebmaschine Strebpanzers Strebrand Strebrandrechner Strebsamkeit Strebsoftware Strebsoftwareänderung Strebstatistik Strebsteuereinheit Strebsteuergerät Strebsteuersystem Strebsteuerung/P Strebteilen Strebüberwachung Strebung/P Strebverhältnisse Strebverlauf/Sp Strebvisualisierung Strebwarten Strebwartung Strebzentrale Streckenarbeiter/FNS Streckendatenerfassung Streckenführung Streckenlänge Streckennetz Streckens Streckenverlauf/STp Streckenwärter/NS Streckmuskel/NS Streckung/P Streckverbänden Streckverband/S Streich/JR Streichhölzchen/S Streichhölzer Streichholz/T Streichholzschachtel Streichinstrument/EPST Streichkäse/S Streichorchester/NS Streichquartett/PST Streif Streifbänder/N Streifband/T Streifblick/EPS Streifenbeamter Streifendienst Streifenpolizist Streifens Streifenteil Streifenwagen/S Streiflicht/RS Streifschuss/Tp Streifzug/Sp Streik/ST Streikabstimmung Streikaufruf Streikbeschluss/Tp Streikbewegung/P Streikbrecher/N Streikdrohung/P Streiklöhne/N Streiklohn Streikposten/S Streikrecht/PS Streikwelle Streit/RS Streitäxte/N Streitaxt Streiter/FNS Streitfall/Sp Streitfrage/N Streitgegenständen Streitgegenstand/S Streitigkeit/P Streitkräfte/N Streitpunkt/EPS Streitsache/N Streitschrift/P Streitsucht Streitwert/EPS Stresemann/S Stress/T Stresssituation/P Streubreite/N Streubüchse/N Streueffekt/EPST Streuens Streusand/S Streuung/P Streuwinkel/NS Streuzucker Strichätzung/P Strichcodeleser/S Striche Stricheinteilung Strichmädchen/S Strichmännchen Strichperforation/P Strichpunkt/EPT Strichregen/S Strichs Strichscheibe Strichvögel Strichvogel/S Strick/RS Stricker/FNS Strickerei Strickgarn/ES Strickjacke/N Strickleiter/N Strickmaschine/N Strickmuster Stricknadel/N Strickware/N Strickweste/N Strickwolle Strickzeug/S Striegel/S Striktheit Stringdecodierung Stringeinträge/N Stringüberprüfung/P Stringvariable/N Stringzuweisung/P Strömens Strömung/P Strömungsmaschinen Stroh/S Strohdächer Strohdach/S Strohfeuer Strohhalm/EPS Strohhüte/N Strohhut Strohköpfe/N Strohkopf Strohmänner/N Strohmann Strohmatte/N Strohsäcke Strohsack/S Strohwitwer/S Strolch/EPS Strom/ST Stromänderung Stromabnehmer/NS Stromabschaltung/P Stromabsenkung Stromadapter Stromanschlüssen Stromaufnahme/N Stromaufnahmekurven Stromaufnahmemessung Stromausfall/Sp Stromausfallzeiten Stromausgang/Sp Strombedarf Strombegrenzung Strombelastung Stromboli Stromeingang/Sp Stromeinspeiseadapter Stromeinspeisungseinheit/P Stromeinspeisungsstellen Stromentnahme Stromerzeuger/NS Stromfrequenzen Stromgebiet/EPS Stromgewinnung Stromkabel/NS Stromknappheit Stromkreis/EPT Stromlauf/Sp Stromlaufpläne Stromlaufplan/S Stromleiter/NS Stromlinie/N Strommesser/NS Strommessstelle Strommessung/P Strommesswiderständen Strommesswiderstand/T Stromnetz/EPT Stromquelle/N Stromreduzierung Stromregelkarten Stromreglerkarte/N Stromreserve Stromreservierung Stromrichter/NS Stromschiene/N Stromschlag/Sp Stromschleife/N Stromschnelle/N Stromschnittstelle Stromsignal Stromsimulation/P Stromsituation/P Stromspannung/P Stromstärken Stromstoß/Tp Stromüberwachung Stromunterbrecher/NS Stromverbrauch/ST Stromvers Stromvers. Stromversetzung Stromversorgung/P Stromversorgungseingang Stromversorgungskabel Stromversorgungsoption/P Stromversorgungsspannung Stromversorgungsteil Stromverteilungshardware Stromwandler/NS Stromwandlungsmodul Stromwender/NS Stromzähler/S Stromzuführung Stromzufuhr Stromzunahme Strophe/N Strümpfe/N Strudel/NS Struktur/P Strukturbaum/STp Strukturelement/EPST Strukturierens Strukturiertheit Strukturierung/P Strukturkomponente/N Strukturkrise/N Strukturmaßnahme/N Strukturmerkmal/EPS Strukturproblem/EPS Strukturtiefe/N Strukturveränderung/P Strukturverbesserung Strukturwandlung Strukturwidrigkeit Strumpf/S Strumpfbänder/N Strumpfband/S Strumpfhalter/N Strumpfhose/N Strumpfwaren Strunk/S Struwwelpeter/S Strychnin/S Stübchen/S Stück/EMPST Stückarbeiten Stückarbeiter/FNS Stückelfracht/P Stückelns Stückelung/P Stückgüter/N Stückgut/S Stückliste/N Stücklistenname/N Stücklöhne/N Stücklohn/S Stücklung/P Stückpreis/EPT Stückwerk/S Stückzahl/P Stühle/GN Stümper/FNS Stümperei Stündchen/S Stündlein/S Stürmer/NS Stürmerreihe Stürmerstar Stützens Stützhölzer Stützpfeiler/S Stützpunkt/EPST Stützrohr Stützung/P Stützungskäufe/N Stützzylinder Stube/N Stubenarrest/S Stubenfliege/N Stubengelehrte/NR Stubenhocker/S Stubenkamerad/P Stubenmädchen/S Stuck/S Stuckateur/EFS Student/FP Studentenausschuss/Tp Studentenaustausch Studentenbund Studentengemeinden Studentengruppe Studentenmütter Studentenproteste Studentenrat Studentenschaft/P Studententag Studentenunruhen Studentenverbindung/P Studentenvertretung Studentenwohnheim Studentenzeitschrift/P Studie/N Studienanfänger Studienaufenthalt Studienbeginn Studienberatung Studiendauer Studiendirektor/FPS Studienförderung Studienführer Studiengang/Sp Studienjahr/EPS Studienkommission/P Studienpläne/N Studienplätze/N Studienplan/S Studienräte/FN Studienrat Studienreform Studienreise/N Studienrichtung Studienwahl Studienwerk Studienzeit Studienziel/EPST Studienzwecke/N Studierzimmer/NS Studio Studiobühne Studium/S Stufenbarren/S Stufenbau Stufenbohrung Stufenfolge/N Stufenfunktion/P Stufenleiter/N Stufenplan Stuhl/E Stuhlbein/EPS Stuhlgang/Sp Stuhllehne/N Stuhlreihen Stulle/N Stulpe/N Stulphandschuh/EPS Stulpstiefel/NS Stummel/NS Stummelbeine Stummfilm/EPS Stumpfheit Stumpfsinn/S Stunde/N Stunden/JS Stundenaufwand Stundenberechnung Stundengeschwindigkeit Stundengläser/N Stundenglas/T Stundenkilometer/NS Stundenlöhne/N Stundenlohn/S Stundenpläne/N Stundenplan/S Stundensatz Stundenzeiger/NS Stunk/S Stupsnase/N Sturm/ST Sturmangriff Sturmböe Sturmboot/EPST Sturmflut/P Sturmflutkatastrophe Sturmgeschütz/EPT Sturmglocken Sturmmitte Sturmreihe Sturmschritt/EPST Sturmsegel/NS Sturmsignal/EPS Sturmspitze Sturmtank Sturmtief Sturmvögeln Sturmvogel/S Sturmwarnung/P Sturmwind/EPS Sturz/T Sturzäcker/N Sturzacker/S Sturzbäche Sturzbach/S Sturzflug/STp Sturzflut Sturzhelm/EPS Sturzkampfflugzeug/EPS Sturzwellen Stuss/T Stute/N Stutenfüllen/S Stuttgart/RS Stutzer/N Stutzflügel/NS Stylist/P Süchte/N Südafrika/S Südamerika/S Südaustralien Südbalkon Süddeutschland/S Süden/SW Südeuropa Südfinnland Südfrankreich/S Südfrüchte/N Südhälfte/N Süditalien Südjemen Südkorea/S Südkoreaner/N Südküste Südländer/FNS Südosten/S Südostrand Südpol/S Südraum/ST Südrhodesien Südrussland Südsachalin Südschwarzwald Südseeinsel/N Südseekolonien Südseeschnitzerei Südslawentum Südspitze Südsteiermark Südstrand Südterrassen Südwein/EPS Südwest/P Südwestfalen Südwind/EPST Sühnens Sühneopfer/N Sühnerituale Sühnetermin/EPS Sühnung/P Sülze/N Sümmchen/S Sümpfe/N Sünde/NR Sündenböcke Sündenbock/S Sündenerlass/ET Sündenfall/S Sündengeld/S Sündengeldern Sündenpfuhl Sündenregister/NS Sünder/FNS Süßholz/T Süßigkeit/P Süßkartoffel/N Süßspeise/N Süßstoff/EPS Süßwarengeschäft/EPS Süßwarenwirtschaft Süßwasser/S SuSE Subjekt/EPS Subjektivismus Subjektivität Subkontinent Subkultur Submission/P Subsidiarität Subsidiaritätsprinzip/S Substantialisierung/P Substantiv/EPS Substanz/P Substanzverlust/T Substitut/EPST Substitution/P Substitutionsergebnis/Qq Substrat/EPST Subsumtion Subsystem/EPS Subtangente/N Subtraktion/P Subvention/P Subventionierens Subventionierung/P Subventionsmarke Subventionszahlung/P Suchaktion/P Suchanzeige/N Sucharbeit Suchard Suchbefehl/EPS Suchbohrung Suchdienst/EPT Sucher/FNS Suchgerät/EPST Suchkartei/P Suchlauf/Sp Suchmaschine/N Suchmuster/NS Suchvorgang Suchwerkzeug/EPS Suchwörter Suchwort/P Sud Sudan Sudelarbeiten Sudelei/P Sudetenfrage Sudetenkrise Suez Suezkanal/S Suezkanalzone Suffix/EPT Suggestion/P Suggestionsbedürfnis/Qq Suggestivfrage/N Suggestivität Suhrkamp Suite/N Sulfat/EPS Sulfid/EPS Sultan/EFPS Sultanin/EFP Sumatra Sumerer Summand/P Summenbeschränkung Summenwert/S Summer/N Summierens Summierung/P Sumpf/ST Sumpfböden Sumpfboden/S Sumpffieber Sumpfhühner/N Sumpfhuhn/S Sumpfländer/N Sumpfland/ST Sumpfpflanze/N Sumpfvögel Sumpfvogel/S Superbenzin Superchip Superdefizit Superding Supererträge Superfarmland Superfrachter Supergewinne Superinflation Superiorität Superkirche Superklasse/N Superlativ/EPS Supermächte/N Supermänner Supermann Supermarkt/Tp Supernova Superrenditen Superstar Superverschuldung Suppe/N Suppenfleisch Suppengrün/S Suppenkelle Suppenkräuter/N Suppenkraut Suppenlöffel/NS Suppenschüssel/N Suppenteller/N Suppenwürfel/NS Support/S Supraleitung Suprema Supremum/S Surfbrett Surfer/FNS Surrealismus Surrealist/P Surrogatheilung/P Susanne/S Sushi Sussex Sven/S Swimmingpool Swing Sybille/S Sydney Sylphe/N Sylphide/N Sylt Symbiose/N Symbol/EPS Symbolcharakter Symbolik Symbolist/P Symbolwirkung/P Symmetrie/N Symmetrieebene/N Symmetrisieradapter Sympathie/N Sympathiekundgebung Sympathiestreik/S Sympathisant/P Symphonie/N Symphoniekonzert Symposien Symposium Symptom/EPS Symptomatik/P Synagoge/N Synapse/N Synchroneingang Synchrongetriebe/NS Synchronimpuls/EPT Synchronisation Synchronisationsloch Synchronisationsprobleme Synchronisationssignal Synchronisationszeichen Synchronisierlöcher Synchronisierschalter Synchronlöchern Synchronlocherkennung Synchronschalter Synchronschalterkette Synchronzähler Syndikalismus Syndikat/EPS Syndikatskredit Syndikus Syndrom/EPS Synergie/N Synkope/N Synode/N Synonyms Syntax Syntaxbaum/STp Syntaxfehler/NS Synthese/N Synthesizer/NS Syphilis Syrer Syrien Syrier/FNS System/EPS Systemänderung Systemanalyse/N Systemansatz/T Systemantwortzeit Systemarchitektur Systematik/P Systemaufruf/S Systembandbreite/N Systembibliothek Systemdruck Systemeinkauf/Sp Systementwicklung Systemerweiterung Systemfamilie/N Systemfehler Systemforschung Systemfunktion/P Systemfunktionsaufruf/EPS Systemgestaltung Systemgrenze/N Systemhaus/Tp Systemintegration Systemintegrität Systeminteresse Systemkomponente/N Systemkonfiguration/P Systemkritiker Systemlösung/P Systemmanagement/S Systemname/N Systemnutzen Systemoptimierung/P Systempflege Systemproblem/EPS Systemprogrammierung Systemreset Systemsicherheit Systemsoftware Systemspeicher/S Systemstart Systemstecker/S Systemsteckerbelegung/P Systemsteckverbinder/S Systemtakt Systemtechnik Systemteil/EPS Systemtheoretiker/NS Systemüberblick Systemübersicht Systemumgebung Systemveränderer Systemverantwortung Systemverstärkung Systemvertrieb Systemzeichnung/P Systemziel/EPS Systemzulassung Systemzwang/S Szenarien Szenario/S Szenarium/S Szene/N Szenerie/N Séparée/S TByte TCP TFT TÜV TV TWA Täfelns Täfelung/P Täflung/P Täler/N Tändelei/P Tänze/NR Tänzer/FNS Tässchen/S Täter/FNS Täterschaft Tätigens Tätigkeit/P Tätigkeitsbereich/EPST Tätigkeitsbeschränkung/P Tätigkeitsfeld/RT Tätigung/P Tätigwerden Tätlichkeit/P Tätowierens Tätowierung/P Täuberich/EPS Täufling/EPS Täuschens Täuschmanöver Täuschung/P Täuschungsmanöver/NS Täuschungsversuch/EPS Tabak/S Tabakbau Tabakernte Tabakhändler/FNS Tabakladen Tabakland Tabakpfeifen Tabakqualm/S Tabaksbeutel/S Tabaksdose/N Tabaksqualm Tabakwaren Tabelle/N Tabellendritten Tabelleneintrag/STp Tabellenende Tabellenfehler Tabellenführung Tabellenkalkulation/P Tabellenkalkulator/P Tabellensammlung Tabellenspitze Tabellenzweiten Tablett/EPS Tablettenmissbrauch/S Tablettwechseln Tabubereich/EPS Tabula Tabulator/EPS Tabulatorkanal Tabulatorposition/P Tabulatorzeile/N Tabus Tacheles Tachogenerator Tachometer/NS Tadel Tadler/NS Tafelberg Tafelbutter Tafelobst/T Tafelrunde/N Tafelsilber/S Tafelspitz Tafelwasser Tafelwein/EPS Taft/S Tag/JST Tagbau Tagbauten Tagblätter/N Tagblatt/S Tagebücher/N Tagebuch/S Tagedieb/PS Tagegeld/RS Tagelöhne/R Tagelöhner/FNS Tagelohn/S Tagemärschen Tagemarsch/T Tagereise/N Tagesanbrüche/N Tagesanbruch Tagesausflug/STp Tagesausweis/EPT Tagesbefehl/EPS Tagesdatum Tagesförderung Tagesgespräch/EPT Tagesgewinne Tagesheime/N Tageshöchsttemperaturen Tageskassen Tageskurs/ET Tageslängenwechsel Tageslauf/Sp Tagesleistung/P Tageslicht/T Tageslichtanwendung/P Tageslohn Tagesmagazin/EPS Tagesneuigkeit/P Tagesordnung Tagesordnungspunkt/EPT Tagespension/P Tagespolitik Tagespreis/EPT Tagespresse Tagesrhythmen Tagesrhythmus Tagessatz Tagesschau Tagesschluss/Tp Tagesstempel Tagesthema Tagestief Tagesumsatz Tageswert/EPST Tageszeit/JP Tagewerk/EPS Tagfalter/N Tagundnachtgleiche/N Tagung/P Tagungshotel Tagungsort Tagungsstätte/N Tagungsthema Taifun/EPS Taiga Taille/N Taillenweite Tailrekursionseliminierung/P Taiwan Taiwanesen Takel/JS Takelage/N Takelwerk/EPS Takt/ST Taktausgang Takteingang Taktfrequenz Taktik/PR Taktiker/FNS Taktimpulse Taktlosigkeit/P Taktpin/S Taktrate Taktscheibe Taktscheibenachse/N Taktsignal Taktstöcke Taktstock/S Taktstrich/PS Taktverzögerungszeit Tal/ST Talent/EPST Talentsucher/FNS Taler Talg/ST Talgdrüse/N Talglicht/T Talglichter Talisman/EPS Talk/S Talkessel/N Talkmaster Talkshow/S Talkum/S Talleyrand/S Talmulde/N Talon/S Talsohle/N Talsperre/N Talstation/P Tamburin/EPS Tamilen Tampon/S Tamtam/S Tand/S Tandem/S Tang/EPS Tange/NR Tangen/SW Tangente/N Tango/S Tanja/S Tank/RS Tankanlage Tanker/NS Tankerflotte Tankflugzeug/E Tankschiff/EPS Tankschloss/T Tankstelle/N Tankstellenkiosk Tankstellenverwalter Tanksysteme Tankwagen/S Tankwart/PS Tankzug/STp Tanne/N Tannenbaum/STp Tannenhölzer/N Tannenholz/T Tannennadel/N Tannenzäpfen Tannenzapfen/S Tansania/S Tantal/S Tantalusqual/P Tante/N Tantieme/N Tanz/T Tanzabend/PS Tanzbär/P Tanzbein Tanzböden Tanzboden Tanzbodenreaktion/P Tanzdiele/N Tanzflächen Tanzgesellschaft/P Tanzkapellen Tanzkurs/EPT Tanzlehrer/FNS Tanzmeister Tanzmusik Tanzpremieren Tanzsäle/N Tanzsaal/S Tanzschritt/ET Tanzschule/N Tanzstunden Tanztheater Tanzturnier/PS Tanzveranstaltung Tapet/EP Tapetenwechsel/S Tapferkeit/P Tapisserieware/N Tara Tarantel/N Tarantella Tarif/EPST Tarifabschluss/Tp Tarifausschuss/Tp Tarifbereichen Tarifbeschluss/Tp Tarifbezirk Tariferhöhung Tarifgespräch Tarifklasse Tarifkonflikt Tarifkündigung/P Tariflöhne/N Tariflohn/S Tarifnummern Tarifordnung Tarifpartner/NS Tarifsenkung/P Tarifsituation Tarifverhandlung/P Tarifvertrag/STp Tarnanzug/STp Tarnens Tarnkappe/N Tarnung/P Tarski Tarzan/S Tasche/N Taschenausgaben Taschenbücher/N Taschenbuch/T Taschendieb/EPS Taschenfeuerzeug/EPS Taschenformat/EPS Taschengeld/ST Taschengelder Taschenlampe/N Taschenmesser/NS Taschenrechner/NS Taschenspieler/NS Taschenspielerei Taschentücher Taschentuch/T Taschentuchweberei Taschenuhr/P Taschenwörterbücher/N Taschenwörterbuch/S Taschkent Task Taskfunktion/P Tasse/N Tastatur/P Tastaturbelegung Tastaturblech Tastaturblock Tastatureinheit/P Tastaturfeld Tastaturfolie/N Tastaturfunktion/P Tastaturplatine Tastaturplatte Tastaturtreiber/S Tastenausführung Tastenbedienung Tastenbelegung/P Tastenbestätigung Tastenbetätigung Tastenbezeichnung Tastencode/S Tastendecodierung Tastendioden Tastendrücke/N Tastendruck/EPS Tastenfehler Tastenfeld/T Tastenfelder Tastenfolie/N Tastenfunktion/P Tasteninformation/P Tastenkappen Tastenkennzeichnung Tastenkörper Tastenkombination/P Tastenleiterplatte Tastenplatine Tastenrahmen Tastenstellung Tastentechnik Tastentimer Tastenträger Tastenüberblick Tastenzuordnung/P Taster/NS Tastknopf Tastsinn/PS Tastverhältnis/Qq Tatar/PS Tatbestände/N Tatbestand/S Tateinheit/P Tatendrang Tatort/EPST Tatsache/N Tatsachenbericht/EPS Tatsachenverschleierung Tattoo/S Tatverdacht Tatze/N Tau Taubenfreund Taubenschlag/STp Taubenzucht/P Taubheit Taubnessel/N Taubstummensprache Taucher/FNS Taucheranzug/STp Taucherausrüstung Taucherei Taucherglocke/N Taucherlunge/N Tauchglocke Tauchkammer Tauchkolben/S Tauchsieder/N Tauchsystem/S Tauchtechnik Tauchtiefe Tauchversuch/EPS Taufakt/EPS Taufbecken/S Taufbüchern Taufbuch/S Taufname/N Taufpate/FN Taufschein/EPS Taufstein/EPS Taufzeugen Taugenichts/EPT Tauglichkeit Taumel/S Taunus Taupunkt/EPST Tausch/T Tauschexemplar Tauschgeschäft/PS Tauschhandel Tauschmittel/NS Tauschobjekt/EPS Tauschpartner/S Tauschwert/PS Tausender/N Tausendfüßler/NS Tausendjahrfeier/N Tausendsasa/S Tautologie/N Tautropfen/S Tauwerk/EPS Tauwetter Tauziehen Taxameter/NS Taxator/PS Taxen Taxi/S Taxifahrer/NS Taxistände Taxistand/S Taylor/S Taylorismus TeX Team/S Teamarbeit Teamwork Technik/PR Technikentwicklung Techniker/FNS Technikerschule/N Technikum/S Technisieren/JS Technokrat/P Technokratie Technologe/N Technologie/N Technologieträger Technophilie Techtelmechtel/N Teckel/NS Teddy/S Teddybär/P Tee/RS Teebüchse/N Teeei/R Teeernte/N Teegebäck/EPS Teegeschirr/PS Teekanne/N Teekessel/NS Teelicht/ES Teelöffel/NS Teemaschine/N Teenager/NS Teer/S Teerpappe/N Teersträucher/N Teerstrauch/S Teesieb/EPS Teetasse/N Teewägen Teewärmer/NS Teewagen Teezeremonie Teflonpfanne/N Tegernsee Teheran Teich/EPS Teig/S Teigwaren Teilabbildung/P Teilabnahme/N Teilansicht Teilaspekt/EPST Teilaufgabe/N Teilausdrücke/N Teilausdruck/S Teilautomatikfunktion/P Teilbarkeit Teilbaum/STp Teilbereich/EPS Teilbetrag/STp Teilbus/Qq Teilbusabschnitt/EPS Teilbusbereich/EPS Teilbusleitung/P Teilbusübersicht/P Teilchen/S Teildarlehen Teildisziplin/P Teileigner Teilelagerung Teileliste Teilenamen Teilenummer Teiler/S Teilerfolg/EPS Teiles Teilfläche Teilgebiete/N Teilgruppe/N Teilgruppenautomatiken Teilhaber/FNS Teilhaberschaft/P Teilinstrument Teilknochen Teilkomponente/N Teilkredite Teillieferung/P Teilmenge/N Teilmengenrelation/P Teilnahme Teilnahmebedingung/P Teilnahmslosigkeit Teilnehmer/FNS Teilnehmergebühren Teilnehmerkreis/EPT Teilnehmerperspektive Teilnehmerquote/N Teilnehmerverzeichnis/Qq Teilnehmerzahl Teilnetze Teilposition/P Teilprivatisierung Teilschnittmaschine/N Teilschnittprofilen Teilsprache/N Teilsprachenbeziehung/P Teilstaaten Teilstreb/S Teilstrebverfahren Teilstrecke Teilstreitkräfte Teilstrich/EPT Teilstück Teilsystem/EPS Teilung/P Teilungsartikel/S Teilungszahl/P Teilzahlung/P Teilzahlungsbanken Teilzeitkräfte/N Teilzeitkraft Teilzustände/N Teint/S Tel Tel. Telefax Telefon/EPS Telefonanruf/EPS Telefonanschluss/Tp Telefonapparat/EPS Telefonat/EPS Telefonbücher/N Telefonbuch/S Telefondraht Telefongebühr/P Telefongesellschaft/P Telefongespräch/EPST Telefonhörer/NS Telefonist/FP Telefonkabel/NS Telefonkarte/N Telefonleitung/P Telefonliste/N Telefonmodem Telefonnetz Telefonnummer/N Telefonüberwachung/P Telefonverbindung/P Telefonverkehr Telefonvermittlung Telefonzelle/N Telefonzentrale Telegrafenweg Telegrafie Telegrafieprüfung Telegramm/EPS Telegrammanschrift/P Telegrammformate Telegrammformular/EPS Telegrammstil/S Telegraph/Pf Telegraphenämter/N Telegraphenamt/T Telegraphenmast/ET Telegraphie Telegraphist/FP Telekinese Telekom Telekommunikation Telekopierer Telematik Telemetrie Teleobjektiv/EPS Teleologie Telepathie/N Teleshopping Teleskop/EPS Teleskopschienen Teleskopzylinder Television Telex Telexdienst/EPT Teller/NS Tellermützen Tempel/NS Tempelbau Tempelherr/NP Tempelraub Tempelritter/NS Tempelschändung/P Temperafarbe Temperament/EPST Temperatur/P Temperaturänderung Temperaturabhängigkeit Temperaturanstieg Temperaturausgleich Temperaturbedingung/P Temperaturbereich/S Temperatureffekte Temperatureinfluss/Tp Temperaturfühler Temperaturgrenzschichten Temperaturkammer Temperaturkoeffizient Temperaturkompensation Temperaturmessstellen Temperaturmessung/P Temperaturrückgang Temperaturschichtung/P Temperaturschwankung/P Temperatursensor/PS Temperaturstress/EPT Temperaturunterschied/EPST Temperenzler/NS Tempo/S Tempobeschränkung/P Tempospiel Tempus Tendenz/P Tendenzschutz Tendenzstück/EPS Tendenzwende/N Teneriffa/S Tenne/N Tennessee Tennis Tennisball/Sp Tennisplätze Tennisplatz/T Tennisprofi Tennisschläger/NS Tennisspiel/PRS Tennisspieler/FNS Tennisturnier/EPS Tenniswundergeräte Tenöre/N Tenor/S Tenorhornist Tensor/S Tensorgleichung/P Teppich/EPS Teppichböden Teppichboden Teppichkehrmaschine Teppichknüpfer/FNS Teppichstange Tequila/S Term/EPS Termdarstellung/P Termersetzung/P Termersetzungsregel/N Termersetzungssystem/EPS Termin/EPS Terminabsprache/N Terminal/S Terminalbildschirm/S Terminaleingang Terminalleitung/P Terminalmode Terminaltreiber/S Terminator/PS Terminauftrag/STp Terminbestätigung Terminbestellung Termineinhaltung Terminfestsetzung Termingeld Termingeschäft/EPST Termingut Terminhandel/S Terminierung Terminierungsnachweis/EPT Terminkalender/NS Terminmarkt/Tp Terminologie/N Terminpläne/N Terminplan/S Terminschwierigkeit/P Terminvorschlag/STp Terminzusage/N Termite/N Terpentin/S Terrain Terrainverlust/EPST Terrasse/N Terrine/N Territorialfürsten Territorialreserve Territorialstädte Territorien Territorium/S Terror/S Terrorakte Terrorgruppe Terrorismus Terrorist/FP Terroristengruppen Terroristenorganisation/P Terrornation/P Terrororganisation/P Terrorwelle Terz/P Tesafilm Tessin Test/S Testablauf/STp Testabteilung/P Testadapter Testakte Testament/EPS Testamentseröffnung Testamentsvollstrecker/NS Testaufbau Testaufbauten Testausdruck/ST Testausgang Testbeispiel Testbericht/EPS Testbeschreibung Testbetrieb Testbox Testclip/S Testeinrichtung Testeinsatz Testergebnis/Qq Testerkennung Testerschnittstelle Testfall/Sp Testfenster Testflug/STp Testfrage/N Testgerät/EPST Testhilfsmittel Testköpfe Testkonfiguration/P Testkonstellation/P Testkosten Testkreis/EPT Testlauf/Sp Testmarkt Testmessung Testmethode/N Testmittel/N Testmöglichkeit/P Testmode/S Testmodus Testmuster Testpattern/S Testperson/P Testpilot Testpin/S Testpinadapter/S Testpinplatine/N Testpinträger/S Testplätze/N Testplatzausrüstung Testpreis/EPT Testprogramm/EPS Testprotokolldrucker Testprotokolle/N Testpunkt/EPST Testrennen/S Testroutine/N Testsoftware Testspiele Teststopp Teststoppabkommen Testsystem/S Testtiefe Testumgebung Testverfahren/S Testversion/P Testzeit Testzweck/EPST Tetris Teuern/JS Teuerns Teuerung/P Teuerungswelle Teuerungszulage/N Teufel/MNS Teufelei/P Teufelsaustreibung Teufelskerl/EPS Teufelskreis/ET Texas Text/EPT Textänderung/P Textanfang/S Textanzeige/N Textausschnitt/EPS Textbaustein/EPS Textbereich/EPST Textblöcke/N Textblock/S Textblockende Textbücher/N Textbuch/S Textbuffer/S Textdarstellung/P Textdatei Texteditor/S Texteinfügung/P Texteingabe/N Textende/NS Texterfassung Textfelder Textfile/S Textil/S Textilausrüstung Textilbetrieb Textilbranche Textilfabrik Textilfachmann Textilgroßhandlung Textilien Textilindustrie Textilkaufmann Textilmaschinen Textilrohstoffe Textilveredelung Textilwerk Textilwirtschaft Textinformation/P Textkorrektur/P Textlänge/N Textmaterial Textmenge/N Textposition/P Textprogramm/EP Textrand Textsalat Textseite/N Textstelle/N Textsteuerbefehle Textsystem/EPS Textteil/EPS Textumbruch Textur/P Textverarbeitung Textverarbeitungsprogramm/EPS Textverarbeitungssystem/EPS Textvorlage/N Textwolf Textzeichen/S Textzeile/N Thailand Thatcher/S Theater/NS Theaterabend Theateraufführung/P Theaterbesitzer Theaterbesuche/R Theaterbesucher/FNS Theaterinstitut Theaterkarte/N Theaterkassen Theaterkritiker Theaterleitung Theatermann Theaterplatz Theatersaal Theaterspiele Theaterstück/PS Theatervorstellung Theaterzettel/NS Theke/N Thema/S Thematik Thematisierens Thematisierung/P Themen Themenbereich/EPS Themenkreis/EPT Themistokles Theo/S Theodor/ES Theologe/N Theologie Theologieprofessor/S Theologiestudent Theologiestudium Theorem/EPS Theoretiker/NS Theoretisierens Theoretisierung/P Theorie/N Therapeut/FP Therapeutik Therapie/N Theresa/S Therese/S Thermalbädern Thermalbad Thermalbadehaus/Tp Thermalkuren Thermalquelle/N Therme/N Thermik Thermoabschalter Thermodynamik Thermoelement/EPS Thermometer/NS Thermometersäulen Thermometerstände Thermometerstand/S Thermoschalter Thermosflasche Thermostat/PS Thesaurus These/N Thomas Thorax/EP Thorsten/S Thriller Thromben Thrombose/N Thrombozyt/P Thrombus Thron/ST Thronanwärter/NS Thronbesteigung/P Thronbewerber/N Thronerbe/N Thronfolge/R Thronfolger/NS Thronhimmel/NS Thronkandidatur Thronräuber/NS Thronrede Thronstreit Thüringen Thüringer/FNS Thunfisch/EPST Thurgau Thymian/EPS Thyristor/P Thyssen Tibet Tick/S Ticket/S Tiebreak/S Tiefangriff/EPS Tiefatmung/P Tiefausläufer Tiefbau/S Tiefbauamt Tiefbaugeschäft Tiefbauunternehmen Tiefbauunternehmer Tiefblick/EPS Tiefdecker/S Tiefdruck/S Tiefdruckgebiet/PS Tiefebene/N Tiefenproben Tiefenströmung Tiefentladung Tiefenwirkung Tiefflieger/NS Tiefflug/STp Tiefgang/Sp Tiefgarage/N Tiefkühlkost Tiefkühltruhe/N Tiefkühlwaren Tiefländer/N Tieflade/N Tiefladeprogramm Tiefland/ST Tieflöffel/NS Tieflöffelbagger/N Tiefparterre Tiefpreis/E Tiefschlaf Tiefschlag/S Tiefschnitte/N Tiefsee/N Tiefseeforschung Tiefseegraben Tiefseekreuzfahrt Tiefseetaucher Tiefsinn/S Tiefstände/N Tiefstand/S Tiefstellung Tiefstkurs/EPT Tiefstpreise Tiefstpunkt Tiefststände/N Tiefstwerte Tieftauchen Tieftaucher Tiegel/N Tier/EMPST Tierärzte/FN Tierart/P Tierarzt/T Tierbändiger/FNS Tiergärten Tiergarten/S Tierhaltung Tierhandlung/P Tierheilkunde Tierkörper/S Tierkreis/ET Tierkunde/N Tierleben/S Tiermarkt/STp Tierpärke Tierpark/S Tierpsychologe Tierquälereien Tierreich/EPS Tierresten Tierschutzverein/EPS Tiersprache/N Tierversuch/PS Tierwelt Tierzucht/P Tiger/FNS Tiki/S Tilde/N Tilgens Tilgung/P Tilgungsfond Tilgungsraten Tilsit/R Tim/S Timing Timinglogik/P Timingschema Timingsignal/EPS Tina/S Tinktur/P Tinte/N Tintenfässer Tintenfass/MT Tintenfisch/EPST Tintenfleck Tintenkleckse/N Tintenstift/PS Tintenstrahldrucker Tipp/S Tippbetrieb Tippdienste/N Tippfehler/NS Tippfräulein Tippzettel Tirol/R Tiroler/FNS Tisch/EPST Tischdame/N Tischdecke Tischdrucker Tischempfänger/NS Tischgäste/N Tischgast Tischgebet/EPST Tischgerät/EPST Tischgespräch/EPS Tischherr/NP Tischkante Tischkarte/N Tischklopfen Tischlampe/N Tischler/FS Tischlerei/P Tischlerleim/EPS Tischlermeister Tischmodell Tischnachbar/FN Tischnummer Tischplatte/N Tischrede/N Tischrücken Tischtennis Tischtücher Tischtuch Tischwein/EPS Tischzeit/P Titan/FPS Titanic Titel/NS Titelbild/S Titelbildern Titelblätter Titelblatt/S Titelfoto/S Titelgewinn Titelhalter/NS Titelkämpfe/N Titelkampf Titelmühle Titelpartie Titelrollen Titelschrift Titelseite/N Titelträger Titelverteidiger/FNS Titelzeile/N Tito/S Titulatur/P Titulierens Titulierung/P Tivoli Töchter/MN Tölpel/NS Tölpelei/P Tönens Tönung/P Töpfe/NR Töpfer/FS Töpferei Töpferscheibe/N Töpferwaren Törin/F Tötens Tötung/P Toast/S Toaster Tobias Tobsucht Tobsuchtsanfall/Sp Tochter Tochterdatei/P Tochterentwicklung Tochterfirmen Tochtergeneration/P Tochtergesellschaft Tochterunternehmen Tod/EST Todesängsten Todesahnung Todesangst Todesanzeige/N Todesarten Todesengel Todeserklärung Todesfall/p Todesgedenktag Todesgefahr/P Todeskämpfen Todeskampf/S Todeskandidat/P Todesliste Todesopfer/NS Todesschuss/Tp Todesstoß/Tp Todesstrafe/N Todesstunde Todessymbole Todestag/EPST Todesträchtigkeit Todesursachen Todesurteil/EPS Todesverachtung/P Todeswünschen Todeswunde/N Todeswunsch/T Todeszelle Todfeind/PS Todsünde Tofu/S Tohuwabohu Toilette/N Toilettenartikel/S Toilettengarnitur/P Toilettenpapier/EPS Toilettenseifen Toilettentisch/ET Tokio/S Toleranz/P Toleranzbereich/EPS Toleranzgrenze/N Toleranzschranke/N Toleranzwert Tollhaus/Tp Tollheit/P Tollkirsche/N Tollkühnheit Tollpatsch/EPST Tollwut Tomate/N Tomatenketchup/S Tomatenketschup/S Tomatensauce Tombola/S Ton/EPST Tonabnehmer/S Tonalität Tonarm/PS Tonart Tonaufnahme/N Tonbäder Tonbänder/N Tonbad Tonband Tonbandgerät/EPS Tonbandprotokolle Tondichtung Tonerde Tonfall/S Tonfrequenz/P Tongeneratoren Tongeschirr/PS Tonhöhe Toningenieur/EPS Tonkrug/STp Tonkünste/N Tonkünstler/FNS Tonkunst Tonlage Tonleiter/N Tonmeister/S Tonnage/N Tonne/N Tonnengehalt/S Tonnengewölbe/NS Tonpfeife Tonregler/NS Tonrundfunk/S Tonsilbe Tonspur/P Tonstreifen Tonstudio Tonsur/P Tontauben Tontaubenschießen/S Tontechniken Tonverstärker/N Tonware/N Tool/S Top Topas/EPT Topdesign Topf/S Topfpflanze/N Topfzeit Topographie/Nf Topologie Topp Toppmast/EPST Toppsegel/N Tor/EPS Torchance/N Torero/S Torf/S Torfböden Torfboden/S Torfmoor/EPS Torfmull/S Torfolge Torheit Torhüter/NS Tori Torlatten Torlauf/Sp Torlinie/N Tornado/S Tornister/NS Torpedo/S Torpedoboot/PS Torpfosten/S Torraum/STp Torschlusspanik Torschützen Torschützenkönig Torschuss/Tp Torsegen Torso/S Torte/N Tortenheber/N Tortur/P Torus Torvalds Torverhältnis/Qq Torwart/EPS Totalausfall/Sp Totalfläche Totalisator/P Totalkollaps Totalpleite Totalschaden/S Totalverlust Totalzusammenbruch/T Totbereich/EPS Totenbahre/N Totenbett/S Totenblässe Totenfeier Totenglocke/N Totengräber/S Totenhemd/S Totenköpfe/N Totenkopf/S Totenliste/N Totenmasken Totenmesse/N Totenreich/EPS Totenschädel/NS Totenschein/PS Totenstarre Totentänze/N Totentanz/T Totenurne/N Totenwachen Totgeburt/P Toto/S Totoblock Totoquoten Totschläge/NR Totschläger/N Totschlag/Sp Totschlagversuch Totzeit Touchscreen/S Toulouse Tour/P Tourenräder/N Tourenrad Tourenwagen/S Tourenzähler/S Tourenzahl/P Tourismus Tourist/FP Touristenattraktion/P Touristenhochburgen Touristenhotel Touristenland Touristik Touristikunternehmen Tournee/N Toyota Trächtigkeit Trägerblech/E Trägerblechoberkante Trägerchassis Trägerflugzeug/E Trägerfolie Trägergehäuse Trägerin/F Trägerlöhne/N Trägerlohn Trägern Trägerpapier/S Trägerplatte/N Trägerrahmen Trägerrakete Trägers Trägerschaft Trägerverein Trägheit Trägheitsgesetz Tränendrüse/N Tränenfluss/T Tränengasbomben Tränengase/N Tränensäcke/N Tränensack Tränkens Tränkung/P Träumer/FNS Träumerei/P Trab/R Trabant/P Trabantenstädte/N Trabrennen/S Tracht Trackball/S Tradition/P Trafalgar Trafo/S Trafobecher Trafoinduktivität Tragbahre/N Tragbalken/S Tragfähigkeit Tragflächen Tragflügelboot/EPS Tragik/PR Tragiker/NS Tragikomödie/N Tragkörbe/N Tragkorb Tragkräfte/N Tragkraft Tragöde/FN Tragödie/N Tragriemen/S Tragschrauber/N Tragtaschen Tragtier/EPS Tragtüte/N Tragweite/N Tragwerk/EPS Trainer/FN Training/S Trainingsanzug/STp Trainingskonzept Trainingsplatz Trainingsprogramm/EPS Trainingstag Trajektschiff/EPST Trakt Traktat/EPS Traktion Traktor/EPS Traktorfahrer Trampelpfad/PS Trampeltier/PS Tramper Tran/EPS Trance/N Tranche/N Tranchierbesteck/EPS Tranchiermesser/NS Tranks Tranquilizer Transaktion/P Transaktionskosten Transfer/S Transferdruck/T Transferliste Transferrate/N Transformation/P Transformator/PS Transfusion/P Transistor/PS Transistorkühlblech Transistormischer/S Transistorschalter Transistorvergleich Transitautobahn Transithandel/S Transitionssystem/EPS Transitivität Transitverkehr/S Transitweg Transjordanien Transmission/P Transmitsignale Transparentfolie Transparentmode Transparenz Transpiration/P Transplantation/P Transport/EPRS Transportachse/N Transportarbeiter/FNS Transportbann Transportbehälter Transporter/NS Transporteur/EPS Transportflugzeug/PS Transportgefährdung Transportgelegenheit/P Transportgewicht Transportierbarkeit Transportmedium Transportminister Transportmittel/N Transportraum/STp Transportrichtung Transportschäden Transportschaden/S Transportschiff/PS Transportschnecke Transportskizzen Transportsystem Transportunternehmen/S Transportunternehmer Transportvorrichtung Transportwalze Transportweg Transportwesen/S Transportzeit Transputer/S Transrapid/S Transvaalrepublik Transzendenz Trapez/EPT Trapezkünstler/FNS Trassant/P Trassat Trasse/N Tratsch Tratte/N Traualtar Traube/N Traubenlese/N Traubensäften Traubensaft/S Traubenzucker/NS Trauens Trauer Traueranzeigen Trauerfall/Sp Trauerfeier/N Trauerflor/S Trauerhalle Trauerkleid/S Trauerkleidern Trauerkleidung Trauermärschen Trauermarsch/T Trauerränder/N Trauerrand Trauerschleier/NS Trauerspiel/EPS Trauerweiden Trauerzug/STp Traufe/N Traulichkeit Traum/ST Trauma/S Traumata Traumatisierens Traumatisierung/P Traumberuf Traumbild/RT Traumdefizit Traumdeuter/FNS Traumforschung Trauminsel Traumländer/N Traumland/S Traumrenditen Traumresultat/EPS Traumwelt/P Traumzeit Traureden Traurigkeit Trauring/EPS Trauschein/EPS Trauung/P Trauzeuge/NS Trecker/NS Treff/RS Treffens Treffer/NS Trefferquote/N Trefflichkeit Treffpunkt/EPST Treffsicherheit Treibeis/T Treiber/NS Treiberbaustein/E Treiberkarte/N Treiberprogramm/EPS Treibersoftware Treibertransistoren Treibgas/ET Treibhaus/Tp Treibhauspflanze/N Treibhölzern Treibholz/T Treibjagden Treibkräfte/N Treibladung/P Treibmine Treibmittel/NS Treiböl Treibriemen/S Treibsalat Treibsand Treibstoff/EPS Treibstoffpreise Treibstoffproduktion Treidelpfad/EPST Trenchcoat Trend/S Trendlinie/N Trendmeldung/P Trendwende/N Trennadapter Trennens Trennfläche/N Trennmittel Trennmodus Trennplatten Trennprogramm/EPS Trennschärfe/N Trennschicht/P Trennstrich Trenntrafo/S Trennung/P Trennungslinie/N Trennungsschmerz/P Trennungsstriche/N Trennwände/N Trennwand Trennzeichen/S Trense/N Treppe/MN Treppenabsätze Treppenabsatz/T Treppenautomatik Treppenflucht Treppengelände/R Treppengeländer/N Treppenhaus/Tp Treppenhöhe Treppenkante Treppenschneiden Treppensignal Treppenstufe/N Tresen/S Tresor/EPS Tretanlasser/N Treter/NS Tretmine/N Tretmühle/N Treuebrüche/N Treuebruch/S Treueid/EPST Treueprämie Treueverhältnis/Qq Treuhänder/FNS Treuhänderschaft/P Treuhand Treuhandbüro Treuhandgesellschaft/P Treuhandstelle Treulosigkeit/P Trias Tribüne/N Tribünenplatz Tribun/EPS Tribunal/EPS Tribut/EPS Trichter/NS Trick/S Trickablauf/Sp Trickaufnahme/N Trickfilm/EPS Trickfilmsoftware Tricksequenzen Triebe/G Triebfeder/N Triebkräfte/N Triebs Triebverbrecher/N Triebwagen/S Triebwerk/EPS Triefnase Trier/S Triest Triggerbarkeit Triggereingang/Sp Triggerkanal Triggermagnet Triggerquellen Triggerzeitpunkt Trigonometrie Trikot/S Trikotage/N Triller/S Trillerpfeife/N Trillion/P Trilogie/N Trinkbecher/NS Trinkbranntwein/EPS Trinker/FNS Trinkerheilanstalt/P Trinkgelagen Trinkgeld/R Trinkgläser/N Trinkglas/T Trinkhalle/N Trinklied/T Trinkliedern Trinksprüche/N Trinkspruch/S Trinkstärke Trinkwasser Trinkwasseraufbereitung Trinkwasserquellen Trinkwasserversorgung Trio/S Triole/N Trip/S Tripel/NS Tripelspiegel Tripolis Tripper/NS Trismen Trismus Tristesse/N Trittbrett/RS Tritte/N Trittleiter/N Tritts Triumph/EPS Triumphbögen Triumphbogen/S Triumphzug/STp Triumvirat Trivialität/P Trivialroman Trödelei/P Trödelmarkt/STp Trödler/N Tröpfchen/S Tröstens Tröster/FNS Tröstung/P Trockenbatterie/N Trockenböden Trockenboden/S Trockendock/S Trockeneis/T Trockenelement/EPST Trockenfäule Trockenfrüchte Trockengemüse/S Trockenhaube Trockenhefe/N Trockenheit Trockenkartoffel/N Trockenlegung Trockenmaß/EPT Trockenmilch Trockenmittel Trockenperiode Trockenrasierer/S Trockenreinigung/P Trockenversuch Troja Trojaner/FNS Trommel Trommelbremse Trommelfell/P Trommelfeuer/NS Trommelmagazin/EPS Trommelschlag/Sp Trommelstöcken Trommelstock/S Trommelwirbel/NS Trommler/NS Trompeter/N Tropen Tropenhelm/EPS Tropeninstitut Tropenkoller/S Tropenkrankenhaus/Tp Tropf/S Tropfstein/EPST Tropfsteinhöhle Tropfzeit Trophäe/N Tross/EPT Trost/S Trostlosigkeit Trostpflaster Trostpreis/EPT Trott/S Trottel/NS Trottoir/S Trotzki/S Trotzköpfe/N Trotzkopf/S Trotzreaktion/P Troubadour/EPS Trübens Trübheit Trübsal Trübseligkeit Trübsinn/S Trübung/P Trüffel/NS Trümmer/N Trümmerfeld/RS Trümmerhaufen/S Trümpfe/N Trubel/S Trudeau/S Trugbild/RT Trugschluss/Tp Truhe/N Trumpf/S Trunk Trunkenbold/EPST Trunkenheit/P Trunksucht Truppe/N Truppenabzug/STp Truppenbewegung Truppengattung/P Truppenhilfe Truppenkontingent Truppenkonzentration/P Truppenparade Truppenreduzierung Truppenrückzug/STp Truppenschauen Truppenstärke Truppenstationierung Truppenstationierungskosten Truppenstationierungsvertrag/STp Truppenteile Truppentransporter/NS Truppenübung/P Truppenübungsplätzen Truppenübungsplatz/T Truppenversorgung Truppenvertrag/STp Truppenzusammenziehung Truppführer/NS Truthähne/N Truthahn Truthenne/N Trutzbündnis/Qq Tschaikowsky/S Tschebyscheff/S Tscheche/FN Tschechien/S Tschechoslowakei Tschernobyl Tschetschenien/S Tschiang/S Tübingen Tücher/N Tüchtigkeit Tücke/N Tüftler/NS Tüftlergeist Tüll/S Tümmler Tümpel/NS Tüpfel/MS Tür/EMP Türangel Türenschlagen Türflügel/N Türfüllung/P Türgriff/EPS Türke/FN Türkei Türkise/NS Türklinke/N Türmchen/S Türpfosten/S Türrahmen/S Türschild/RS Türschließer/S Türschlösser/N Türschloss/T Tüte/N Tube/N Tuberkel/S Tuberkulose/N Tuch/T Tuchfabriken Tuchfühlung/P Tuchhändel/N Tuchhändler/FNS Tuchhandel Tuchhandlung/P Tuchindustrie Tuchmacher/NS Tuff/EPS Tuffstein/PS Tugend/P Tugendbold/EPST Tugendrichter/FNS Tulpe/N Tulpenzwiebel/N Tulpenzwiebelspekulation Tummelplätze/N Tummelplatz/T Tumor/EPS Tumult/EPS Tumultuant/P Tundra Tunesien Tunfisch/EPST Tunichtgut/S Tunis Tunnel/NS Tunnelbauanwender Tunnelbaus Tunnelbohrmaschine Tunnelflucht Tunnelvortriebsmaschine Tunnelwahrscheinlichkeit/P Tuns Tupel/NS Tupelbildung Tupfer/NS Turban/EPS Turbine/N Turbinenmotor/PS Turbinenstrahltriebwerk/PS Turbokupplungsregelung Turbomotor/PS Turin/S Turing Turingmaschine/N Turm/EST Turmfalke/N Turmspitzen Turmspringen/S Turmuhren Turner/FNS Turnerschaft Turngerät/EPS Turnhalle/N Turnhosen Turnier/EPS Turnierlanze Turnlehrer/FNS Turnriege Turnschuh/EPS Turnschule Turnspiele/N Turnstunde/N Turnunterricht/PS Turnus Turnverein/EPS Turteltaube/N Tusch Tuschfarben Tuschzeichnung/P Tutor/FPS Tutorien Tutorium/S Tutu/S Tweedanzug/S Tycoon Typ/EPS Typanalyse/N Typdeklaration/P Typenangabe/N Typenbezeichnung/P Typenblatt Typendruck/EPS Typenhebel/NS Typenkorbdrucker Typennummer/N Typenraddrucker Typenschild/RST Typfehler/NS Typhuskranke/NR Typinferenz Typinformation/P Typisierens Typisierung/P Typisierungskonzepte Typklasse/N Typnummer Typograph/Pf Typographie/Nf Typologie/N Typschema/S Typschemata Typtest/S Typus Typverbände/N Typverband/S Tyrann/FP Tyrannei Übelbefinden/S Übeln Übels Übelstände/N Übelstand/S Übeltäter/FNS Übeltat Übens Überalterung Überangebot/EPST Überanstrengens Überanstrengung/P Überarbeitens Überarbeitung/P Überbau/S Überbauten Überbeanspruchung Überbein/EPS Überbelastens Überbelastung/P Überbelegung Überbelichtung/P Überbevölkerung Überbewertens Überbewertung/P Überbiss/T Überbleibsel/NS Überblendung Überblick/S Überbringens Überbringer/FNS Überbringung/P Überbrückens Überbrückung/P Überbrückungsbeihilfe Überbrückungsfinanzierung/P Überbrückungsgeld Überbrückungsgeldern Überbrückungskredit Überbrückungsrückzahlung Überbrückungszeit Überdruck/S Überdruckkabine Überdruckkapselung Überdruckventil/EPS Überdruss/T Übereifer/S Übereignens Übereignung/P Übereilens Übereilung/P Übereinkünfte/N Übereinkunft Übereinstimmens Übereinstimmung/P Überfahrten Überfall/Sp Überfallkommando/S Überfluss/Tp Überflussgesellschaft Überflutens Überflutung/P Überfracht Überfremdung Überführens Überführung/P Überfüllens Überfüllung/P Überfunktion/P Übergabe Übergabeprotokoll/EPS Übergang/Sp Übergangsadapter Übergangsfunktion/P Übergangsgebiet Übergangskabinett Übergangsperiode/N Übergangsregierung Übergangsstadium/S Übergangsstecker Übergangsstelle/N Übergangszeit/P Übergehäuse Übergewicht/EPS Übergriffe Übergriffs Übergröße/N Überguss/Tp Überhang/S Überheblichkeit/P Überhitzung Überhöhen/JS Überholspur/P Überinterpretation/P Überkapazität Überkleidung Überkonsum Überläufe/NR Überläufer/N Überlagerns Überlagerung/P Überlagerungsstruktur Überlandleitung/P Überlandzentralen Überlappens Überlappung/P Überlassens Überlassung/P Überlassungsvereinbarung/P Überlastabschaltung Überlastgetriebe Überlastkupplung Überlastschreiber Überlastschutz Überlastung/P Überlauf/Sp Überlebenschance/N Überlebensethik Überlebenskraft Überlebenslager Überlebenspreis/EPT Überlebenstraining Überlebenstrieb Überlegenheit Überlegenheitsgefühl Überlegens Überlegung/P Überlegungsstand Überlieferns Überlieferung/P Überlistens Überlistung/P Übermächte/N Übermaß/EPT Übermensch/P Übermittelns Übermittlung/P Übermüden/JS Übermut/S Übernachtens Übernachtservice Übernachtung/P Übernachtungsmöglichkeit/P Übernahme Übernahmeangebot Übernahmebedingung/P Übernahmefieber Übernahmekapital Überpflanzung/P Überproduktion/P Überprüfbarkeit Überprüfens Überprüfung/P Überquerens Überquerung/P Überraschens Überraschung/P Überraschungsangriff/ET Überraschungssieg Überredens Überredung/P Überredungskünste/N Überredungskunst Überreichens Überreichung/P Überrest/EPST Überrumpelns Überrumpelung/P Überrumplung/P Übersättigens Übersättigung/P Überschätzens Überschätzung/P Überschall/S Überschicht/P Überschlag/Sp Überschlagsrechnung/P Überschneidens Überschneider/S Überschneidung/P Überschnitts Überschreibmodus Überschreitens Überschreitung/P Überschrift/P Überschuh/PS Überschuss/Tp Überschussbestände Überschussliquidität Überschwänglichkeit Überschwang/S Überschwemmens Überschwemmung/P Überschwemmungskatastrophe Übersee Überseehafen Überseeverkehr/S Übersendung/P Übersetzens Übersetzer/FNS Übersetzerbau/RS Übersetzerbauer/NS Übersetzerpreis/EPT Übersetzung/P Übersetzungsart Übersetzungsbüro/S Übersetzungsfehler/N Übersetzungsfirma Übersetzungshilfe Übersetzungsinstitut Übersetzungslauf/Sp Übersetzungsphase/N Übersetzungsverhältnis/Qq Übersetzungszeit/P Übersicht/P Übersichtlichkeit Übersichtskarte/N Übersichtstabelle Übersichtszeichnung Übersiedelns Übersiedler Übersiedlung/P Überspannens Überspanntheit Überspannung/P Übersprünge/N Übersprung/S Überstärke Übersteuern/JS Überstrombegrenzung Überstürzens Überstürzung/P Überstunde/N Überstundenhonorare Übertagebau Übertagerechner Übertaktung/P Übertrag/JSp Übertragbarkeit Übertragens Übertragungsfehler/N Übertragungsgeschwindigkeit/P Übertragungsmedien Übertragungsprogramm Übertragungsprotokoll Übertragungsrate/N Übertragungsrichtung/P Übertragungsschwierigkeit/P Übertragungsstandard Übertragungssteuerung Übertragungsstrecke/N Übertragungszeit Übertreibens Übertreibung/P Übertretens Übertreter/FNS Übertretung/P Übertritte/N Übertritts Übervölkerung/P Übervorteilens Übervorteilung/P Überwachens Überwachung/P Überwachungsaufgaben Überwachungseinheit/P Überwachungseinrichtung/P Überwachungsfunktion/P Überwachungslogik Überwachungsmöglichkeit/P Überwachungsrechner Überwachungsstromkreise Überwachungszwecke Überwasserschiffe Überweisens Überweisung/P Überweisungsnetz Überweisungsscheck Überwindens Überwinder/NS Überwindung/P Überwinterns Überwinterung/P Überwurfmutter Überzahl Überzeichnung Überzeugens Überzeugung/P Überzeugungskräfte/N Überzeugungskraft Überziehens Überzieher/NS Überziehung/P Überziehungskredit/EPST Überzug/Sp Üblichkeitsnachweis/EPT Übung/P Übungsaufgabe/N Übungsbetrieb/S Übungsflug/STp Übungsgruppe/N Übungshang/Sp Übungsheft/PS Übungslager Übungsplätze/N Übungsplatz/T Übungsraum/STp Übungszweck/EPS Üppigkeit UART UFO UKW UN UNESCO UNICEF UNITA UNO URL URLs US USA USB USS UStG UV UdSSR Udo/S Ufer/NS Uferböschung Uferdämmen Uferdamm/S Uganda Uhr/P Uhrarmbänder/N Uhrarmband Uhrenausstellung Uhrenfabrik Uhrkette/N Uhrmacher/NS Uhrwerk/PS Uhrzeiger/S Uhrzeigersinn Uhrzeit Uhu Ukas/Qq Ukraine Ulan Ulk/S Ulla/S Ulm/EP Ulmeingängen Ulmeingang Ulmkanäle Ulmkanals Ulmsensor/P Ulmwegmessung Ulmwerte Ulrich/S Ulrike/S Ultimaten Ultimatum Ultimo/S Ultrakurzwelle/N Ultrakurzwellensender/S Ultraschall/Sp Ultraschallanschluss/Tp Ultraschallanzeigen Ultraschallbad Ultraschalldaten Ultraschalldiagnostik Ultraschallecho Ultraschallelektronik Ultraschallfrequenz Ultraschallfunktion Ultraschallgeber Ultraschallgenerator Ultraschallimpulse/NS Ultraschallinterface Ultraschallköpfen Ultraschallmessleitung/P Ultraschallmessung/P Ultraschallmethode Ultraschallortung Ultraschallparametern Ultraschallprobleme Ultraschallsender Ultraschallsensor/PS Ultraschallsignal/S Ultraschallstabilität Ultraschallsystem/ES Ultraschalltechnik Ultraschalltests Ultraschallwaschen Ultraschallwegmesser Ultraschallwellen Ultraviolettstrahlung Umarbeitens Umarbeitung/P Umarmens Umarmung/P Umbau/S Umbaukosten Umbenennens Umbenennung/P Umbesetzen/JS Umbildens Umbildung/P Umbrüche/N Umbruch Umbuchens Umbuchung/P Umbuchungslisten Umbuchungsprotokolle Umdenkprozess/EPT Umdrehens Umdrehung/P Umdrücke/N Umdruck/S Umeichen/JS Umerziehen/JS Umfang/Sp Umfangsweg Umfassens Umfassung/P Umfeld/T Umformatieren/JS Umformens Umformer/NS Umformulierens Umformulierung/P Umformung/P Umformungsregel/N Umfrage/N Umfrageergebnis/Qq Umfrageforschung Umgänglichkeit Umgang/S Umgangsform/P Umgangssprache Umgebens Umgebung/P Umgebungsbedingung/P Umgebungshelligkeit Umgebungsvariable/N Umgehens Umgehung/P Umgehungsstraße/N Umgestaltens Umgestaltung/P Umgruppierens Umgruppierung/P Umhängetasche Umhang Umhüllens Umhüllung/P Uminterpretation/P Umkehr/J Umkehrpunkt/EPST Umklammerns Umklammerung/P Umkleidekabine/N Umkleideraum/STp Umklemmen Umkreis/T Umlackieren Umlage/N Umlagerns Umlagerung/P Umland Umlauf/Sp Umlaufbahn/P Umlaufschreiben/S Umlaufsgeschwindigkeit Umlaufskapital/S Umlaufszeit/P Umlaufzeit/P Umlaut/S Umlegekrägen Umlegekragen/S Umlegens Umlegung/P Umleitens Umleitung/P Umlenkens Umlenkkabel Umlenkkanten Umlenkung/P Ummontage Umnachtung/P Umorganisation/P Umorientieren/JS Umpolens Umpolung/P Umprogrammierens Umrandens Umrandung/P Umrechnens Umrechnung/P Umrechnungskurs/E Umrechnungstabellen Umrechnungswert/E Umrisse/S Umrisslinie/N Umrisszeichnung/P Umrüstens Umrüstung/P Umsätze/N Umsatz/T Umsatzanteil Umsatzeinbußen Umsatzentwicklung Umsatzindex Umsatzjägern Umsatzkapital/S Umsatzminderung Umsatzrekord Umsatzrendite Umsatzrückgang/Sp Umsatzsteigerung Umsatzsteuer/N Umsatzsteuerreform Umsatzsteuervoranmeldung/P Umsatzwachstum Umsatzzahlen Umsatzzunahme/N Umsatzzuwachs/T Umschäumen/S Umschaltens Umschalter/NS Umschalthebel/NS Umschaltmechanismus Umschaltung/P Umschaltzeit Umschau Umschichtens Umschichtung/P Umschichtungsprozess/EPT Umschiffens Umschiffung/P Umschlag/Sp Umschlagetücher/N Umschlagetuch/S Umschlaghäfen Umschlaghafen Umschlagplätze/N Umschlagplatz Umschlagschuppen Umschlagskosten Umschlingens Umschlingung/P Umschreibens Umschreibung/P Umschrift/P Umschulden/JS Umschulens Umschulung/P Umschulungskurs/EPT Umschweif/P Umschwünge/N Umschwung/S Umsetzbarkeit Umsetzens Umsetzung/P Umsetzungsprozess/EPT Umsetzungsschritt/EPS Umsichgreifen Umsicht Umsiedler/NS Umsiedlung/P Umspanner/S Umspannwerk Umstände/N Umständlichkeit Umstand/ST Umstandskleid/RS Umstandswort/EPST Umsteigebillet/S Umsteigekarten Umsteiger/NS Umstellens Umstellung/P Umstellungsprozess/EPT Umstieg Umstrukturieren/JS Umstürzler/FNS Umsturz Umsturzversuch/E Umtausch/S Umtauschaktion/P Umtauschangebot Umtauschstelle/N Umtrieb/EPS Umverteilen/JS Umverteilungsmechanismen Umwälzens Umwälzung/P Umwandelns Umwandelung/P Umwandlung/P Umwandlungsprozess/EPT Umwandlungsschritt/EPST Umweg/EPS Umwelt Umweltbelastung Umweltbewusstsein/S Umweltbundesamt Umwelteinfluss/Tp Umweltminister Umweltpolitik Umweltschutz/T Umweltschutzgesetzgebung Umweltsituation/P Umweltveränderung/P Umweltverschmutzung Umweltverseuchung Umweltzerstörung Umwertung Umwohner/NS Umzäunens Umzäunung/P Umzingelns Umzingelung/P Umzinglung/P Umzug/Sp Unähnlichkeit/P Unabhängigkeit Unabhängigkeitsakte Unabhängigkeitserklärung Unabhängigkeitskrieg Unabhängigkeitstag/T Unachtsamkeit Unangepasstheit/P Unannehmlichkeit/P Unanständigkeit/P Unart/P Unauffälligkeit/P Unauffindbarkeit/P Unaufrichtigkeit Unaufrichtigkeit/P Unausgeglichenheit Unbedenklichkeit/P Unbedeutsamkeit Unbegreiflichkeit Unbegrenztheit Unbehagen/S Unbeherrschtheit Unbekanntheit Unbekümmertheit Unbeliebtheit Unbequemlichkeit/P Unberechenbarkeit Unberührtheit Unbescheidenheit Unbescholtenheit Unbeschwertheit Unbeständigkeit Unbestechlichkeit Unbestimmtheit/P Unbilden Unbildung Unbotmäßigkeit Unbrauchbarkeit Undank/ST Undankbarkeit Undankes Undanks Underdog Unding/EPRS Unduldsamkeit Unebenheit Unebenheit/P Unehelichkeit Unehre/N Unehrerbietigkeit Unehrlichkeit Uneinigkeit Unempfindlichkeit/P Unendlichkeit Unentbehrlichkeit Unenthaltsamkeit Unentschiedenheit Unentschlossenheit Unerfahrenheit Unergründbarkeit/P Unergründlichkeit/P Unerheblichkeit Unermüdlichkeit Unerschrockenheit Unersetzbarkeit Unfähigkeit/P Unfairness Unfall Unfall/Sp Unfallbericht Unfallflucht Unfallkommando/S Unfallliste/N Unfallopfer Unfallstation/P Unfallstellen Unfalltod/S Unfallverhütung/P Unfallverluste Unfallversicherung/P Unfallwagen Unfallzahlen Unfallziffern Unfehlbarkeit Unförmigkeit Unfolgsamkeit Unfreiheit/P Unfreundlichkeit/P Unfriede Unfruchtbarkeit Unfug/S Ungar/FN Ungebührlichkeit Ungebundenheit Ungeduld Ungefälligkeit/P Ungeheuerlichkeit/P Ungeheuern Ungeheuers Ungenauigkeit/P Ungenügsamkeit Ungerechtigkeit Ungerechtigkeit/P Ungereimtheit/P Ungeschick/S Ungeschicklichkeit/P Ungeschicks Ungesetzlichkeit Ungesetzlichkeit/P Ungetüm/EPT Ungewissheit Ungewissheit/P Ungewöhnlichkeit/P Ungeziefer/NS Ungezogenheit/P Ungezwungenheit Unglauben/S Unglaubens Ungleichheit/P Ungleichmäßigkeit Ungleichmäßigkeit/P Ungleichung/P Ungleichzeitigkeit Unglück/EPS Unglücksbringer/S Unglücksexpedition/P Unglücksfall/STp Unglücksfall/Sp Unglücksmaschine Unglücksrabe/N Unglücksstätte/N Unglückstag Unglückstag/EPS Unglückszug/STp Ungnade/N Ungültigkeit Ungültigkeitserklärung Ungunst/P Unheil/ST Unheilbarkeit/P Unheilsprophetie Unheilstifter/FNS Unhöflichkeit/P Unholds Uni Unicode Unifikation Unifikationsverfahren Unifikator/P Unifizierbarkeit Uniformieren/JS Uniformträger Unikat/P Unikum/S Unilever Unionen/W Unionist/P Unionsabgeordneter Unionsländer Unionspolitiker Universalerbe/NS Universalist/P Universalität Universalmittel/NS Universalmodul Universalrechner Universalschraubenschlüssel/N Universalwerkzeug/EPS Universität/P Universitätsbesuch Universitätsdozent Universitätsgebäude Universitätsleben Universitätslehrer Universitätsprofessor/FPS Universitätsrektor/S Universitätsstädte Universitätsstudien Universitätsstudiums Universitätstage Universitätszeit Universum/S Unix Unke/N Unkenntlichkeit Unkenntnis/q Unkeuschheit Unklarheit Unklarheit/P Unklugheit Unklugheit/P Unkorrigierbarkeit Unkosten Unkostenberechnung Unkostenberechnung/P Unkräuter/N Unkraut/T Unleserlichkeit Unlösbarkeit Unlust Unlustgefühl/EST Unmännlichkeit Unmäßigkeit Unmäßigkeit/P Unmasse/N Unmenge/N Unmensch/P Unmenschlichkeit Unmenschlichkeit/P Unmittelbarkeit Unmöglichkeit/P Unmündigkeit Unmut/S Unmuts Unnachgiebigkeit Unnatürlichkeit Unordentlichkeit Unordnung/P Unpässlichkeit/P Unparteilichkeit Unpünktlichkeit Unrat/SX Unrats Unrechts Unrechtsbewusstsein/S Unredlichkeit Unregelmäßigkeit/P Unreinheit Unrichtigkeit Unruh/EP Unruhestifter/FNS Unsachlichkeit Unschärfe Unschärferelation Unschicklichkeit Unschicklichkeit/P Unschlüssigkeit Unschuld Unschuldsmiene/N Unsegen/S Unselbständigkeit Unselbstständigkeit Unsicherheit/P Unsicherheitsfaktor/P Unsicherheitsfaktor/PS Unsichtbarkeit Unsinn/ST Unsinnswort/EPS Unsitte/N Unsittlichkeit Unsittlichkeit/P Unsterblichkeit Unstetigkeit Unstimmigkeit/P Unstrukturiertheit Unsumme/N Untat/P Untauglichkeit Unterabschnitt/EPST Unterabteilung/P Unteradressen Unterarm Unterart/P Unterausschuss/Tp Unterbau/S Unterbelichtens Unterbelichtung/P Unterbewerten/JS Unterbewusstsein/S Unterbilanzen Unterbindens Unterbindung/P Unterbrechens Unterbrecher/N Unterbrechung/P Unterbrechungsfall Unterbrechungspausen Unterbrechungsstelle Unterbrechungszeichen Unterbringens Unterbringung/P Unterbringungsmöglichkeit/P Unterdeck/EPS Unterdrückens Unterdrücker/N Unterdrückung/P Unterdruck/S Unterdruckmesser/S Untereinheit/P Unterernährung/P Unterfamilie/N Unterführen/JS Untergang/STp Untergattung/P Untergeschoss/T Untergestell/EPS Untergewicht/EPST Untergliederns Untergliederung/P Untergrenze/N Untergründe/N Untergrund/ST Untergrundbahn/P Untergrundbewegung Untergrundblätter Untergrundkämpfer Untergrundwelt Untergrundwirtschaft Untergruppe/N Unterhändler/FNS Unterhalt/JRST Unterhaltens Unterhalter/NS Unterhaltsansprüche/N Unterhaltsanspruch/T Unterhaltsbeihilfen Unterhaltsklage/N Unterhaltskosten Unterhaltspflichten Unterhaltszahlung/P Unterhaltungsbeilage/N Unterhaltungselektronik Unterhaltungsfilm/ET Unterhaltungsindustrie/N Unterhaltungskonzerte Unterhaltungslektüre/N Unterhaltungsliteraturen Unterhaltungsmusik Unterhaltungsprogramm/EPS Unterhaltungssendung Unterhandlung/P Unterhaus/Tp Unterhausmehrheit Unterhauswahl Unterhemd/EPST Unterholz/T Unterhose/N Unterjacke/N Unterjochens Unterjochung/P Unterkante/N Unterkiefer/NS Unterklasse/N Unterkleid/JR Unterkühlen/JS Unterkünfte/N Unterkunft Unterländern Unterlänge/N Unterlage Unterland/T Unterlass/J Unterlassens Unterlassungsklage Unterlassungssünde/N Unterlegscheibe/N Unterleib/R Unterleibskrebs Unterlippe/N Untermalens Untermalung/P Untermenge/N Untermenü Untermiete/NR Untermieter/NS Unternehmens Unternehmensberater/NS Unternehmensbond/S Unternehmenseigenschaft Unternehmensergebnis/Qq Unternehmensführung Unternehmensgewinne Unternehmensidee Unternehmenskonzept Unternehmensleitung Unternehmensobligation/P Unternehmensphilosophie Unternehmenspolitik Unternehmenspräsidenten Unternehmensumsatzsteuer Unternehmensziel Unternehmer/FNS Unternehmergeist Unternehmerpraxis Unternehmertum/S Unternehmung/P Unternehmungsgeist Unternehmungslust Unteroffizier/PS Unterordnens Unterordnung/P Unterprimaner Unterprogramm/EPS Unterprojekt/P Unterpunkt/EPST Unterredens Unterredung/P Unterrelease Unterricht/JS Unterrichtens Unterrichtsfächer/N Unterrichtsfach/S Unterrichtsgegenstand/S Unterrichtsgeschehen/S Unterrichtsmethode/N Unterrichtsminister/S Unterrichtsministerium/S Unterrichtsprogramm/EPS Unterrichtsraum/STp Unterrichtsstil/EPS Unterrichtsstoff/P Unterrichtsstunde/N Unterrichtswesen/S Untersätze/N Untersagens Untersagung/P Untersatz/T Unterschätzens Unterschätzung/P Unterscheidbarkeit Unterscheidens Unterscheidung/P Unterscheidungsmerkmal/EPS Unterscheidungsproblem/E Unterschenkel/NS Unterschiebens Unterschiebung/P Unterschiede/S Unterschiedlichkeit/P Unterschieds Unterschlagens Unterschlagung/P Unterschlüpfe/N Unterschlupf/S Unterschreitens Unterschreitung/P Unterschrift/P Unterseeboot/PS Unterseite/N Unterseitenbearbeitung Untersetzens Untersetzung/P Unterspannung/P Unterspannungsschutz Unterspree Untersteiermark Unterstellens Unterstellung/P Untersteuern/JS Unterstreichens Unterstreichung/P Unterstreichungszeichen/S Unterstützens Unterstützung/P Unterstützungsgeld Unterstützungsgelder Unterstützungsleistung/P Unterstützungslinie Unterstützungssysteme Unterstufe/N Untersuchens Untersuchung/P Untersuchungsausschuss/Tp Untersuchungsbericht Untersuchungsgegenstand Untersuchungsgericht/EPST Untersuchungshäftlinge Untersuchungshaft Untersuchungskommission/P Untersuchungszeitraum/STp Untertagebau Untertageeinsatz Untertan/P Untertantreue Untertasse/N Unterteil/JS Unterteller Unterthema/S Untertitel/N Unterton/S Untertreiben/JS Untervermieter/S Untervermietung Unterverzeichnis/Qq Unterwäsche Unterwanderer Unterwanderns Unterwanderung/P Unterwasser Unterwasserarchäologie Unterwasserjagd Unterwassermassagen Unterwassertod Unterweisens Unterweisung/P Unterwerfens Unterwerfung/P Unterzeichnens Unterzeichner Unterzeichnerstaaten Unterzeichnung/P Untier/EMPST Untugend/P Unübersichtlichkeit Unvereinbarkeit Unvereinbarkeit/P Unvereinbarkeitsbeschluss/Tp Unvergleichbarkeit Unvermeidbarkeit Unvermögen/S Unvermögens Unvernunft Unverschämtheit Unverschämtheit/P Unversehrtheit Unverständlichkeit Unverständnis/Qq Unverstand/T Unverträglichkeit Unverzichtbarkeit Unvollkommenheit Unvollkommenheit/P Unvollständigkeit Unvollständigkeit/P Unwägbarkeit/P Unwahrheit/P Unwahrscheinlichkeit/P Unweigerlichkeit Unwerte Unwesen/HS Unwesens Unwetter/S Unwille Unwille/N Unwirksamkeit Unwissenheit Unwohlsein/S Unzahl/J Unzahlung/P Unze/N Unzüchtigkeit Unzüchtigkeit/P Unzucht/P Unzufriedenheit Unzugänglichkeit Unzulänglichkeit Unzulänglichkeit/P Unzulässigkeit Unzuverlässigkeit/P Unzweckmäßigkeit Updates Upgrade Urabstimmung/P Urahn/PS Ural Uraltparagraph/Pf Uran/S Uranbergbau Uranspaltung Uratmosphäre Uraufführung/P Urbanisation Urbanität Urbild/RS Urchristentum Ureigenheit Ureinwohner/FNS Urenkel/FNS Urerfahrung Urfassung/P Urform/P Urgeschichte Urgroßmütter Urgroßmutter Urgroßväter Urgroßvater/S Urheber/FNS Urheberrecht/EPS Urheberschaft Urin/S Urinstinkt/EPST Urkirche Urknalltheorie Urkräfte/N Urkraft Urkunde/N Urkundenbeweis/T Urkundenbücher Urkundenbuch/S Urlaub/EPRS Urlauber/NS Urlaubsabkommen Urlaubsadresse Urlaubsanträge Urlaubsdomizil Urlaubsgesuch/E Urlaubspläne Urlaubsregelung Urlaubsreise/N Urlaubsspalten Urlaubsstimmung Urlaubstipp Urmensch/P Urne/N Urologe/N Urologie Ursächlichkeit Ursache/N Ursprünge/N Ursprünglichkeit Ursprung/S Ursprungsländer Ursprungsland Ursprungsnachweis/EPT Ursprungswert/EPS Urstoff/EPS Ursula/S Urteil/S Urteilsbildung Urteilsfindung Urteilskraft Urteilssprüche/N Urteilsspruch/S Urteilsverkündung/P Urteilsvermögen/S Urtier/EPS Urvater/S Urwälder/N Urwald Urwelt Urzeit/P Urzustände/N Urzustand/ST Usenet User/S Userport Usus Uta/S Ute/S Utensilie/N Utility/S Utopie/N Utopist/P Utrecht Uwe/S VDE VDI VGA VHS VI VII VIII VLSI VMOS VW Väter/MN Vabanquespiel Vagabund/P Vagina/S Vaginen Vakanz Vakuen Vakuum/S Vakuumkontrolle Vakuumschraube Vakuumtest Valenz/P Valenzband/T Validität Valium Valpolicella Valuta Valuten Vamp/S Vampir/EPS Vandale/N Vanille Variabilität Variablenbelegung Variablenbindung/P Variablenidentifikator/PS Variablennummer/N Variablenreferenz/P Variablensubstitution/P Variablenübergabe/N Variablenvorkommen/S Variante/N Varianz/P Variation/P Varietät/P Varietee/S Varietetheater/NS Varietevorstellung Varieté/S Varistor/P Vasall/P Vasallenstaat/T Vase/N Vaseline Vater/S Vaterfigur Vaterhaus/Tp Vaterländer/N Vaterland Vaterlandsliebe/N Vaterlandspartei Vaterliebe/N Vatermörder/FNS Vatermord/EPST Vaterschaft/P Vaterschaftsklage Vaterstädte/N Vaterstadt Vaterunser/NS Vati/S Vatikan Vatikanstadt Vegetabilien Vegetarier/NS Vegetarismus Vegetation/P Vehemenz Vehikel/NS Veilchen/S Veilchenkleid Veilchenparfum Veitstänze/N Veitstanz/T Vektor/PS Vektorgrafik/P Vektorgraphik/P Vektorkette/N Vektorrechnung Velin/S Velinpapier/EPS Velofahrer Velours Vene/N Venedig Venenentzündung/P Venetien Venezianer/FNS Venezuela Ventil/EPS Ventilanschluss/Tp Ventilanschlussgehäuse Ventilansteuerblöcke Ventilansteuerblock Ventilansteuerleiste/N Ventilansteuermodul Ventilansteuerung/P Ventilation/P Ventilator/S Ventilausgang/Sp Ventilbetrieb Ventilblock Ventildaten Ventileinheit Ventileinstellung/P Ventilelektroniken Ventilfunktionsanzeige Ventilgehäuse/N Ventilgehäusedeckel Ventilkoppler Ventilleiste/N Ventilleistenfehler Ventilleistenseite Ventilmagnete/N Ventilöffnung Ventilschnittstelle Ventilsoftware Ventilspule Ventilsteuerblock Ventilsteuereingang/Sp Ventilsteuereinheit Ventilsteuerleiste Ventilsteuerleitung/P Ventilsteuerung Ventilsteuerungsgeräte Ventilstrom Ventilstrommessung Ventiltester Ventiltestgeräte Ventiltreiber Venus Venusberg Verächter/S Veränderlichkeit/P Veränderns Veränderung/P Veränderungsmöglichkeit/P Veränderungszeit/P Verängstigens Verängstigung/P Verästelung Verätzen/JS Verätzens Verätzung/P Veräußerlichung/P Veräußerns Veräußerung/P Veräußerungsgewinn/ET Verabfolgung/P Verabredens Verabredung/P Verabreichens Verabreichung/P Verabschiedens Verabschiedung/P Verachtens Verachtung/P Verallgemeinerbarkeit Verallgemeinerns Verallgemeinerung/P Verallgemeinerungsfähigkeit Veraltung Veranda Veranden Verankerns Verankerung/P Veranlagens Veranlagung/P Veranlassens Veranlassung/P Veranschaulichung/P Veranschlagens Veranschlagung/P Veranstaltens Veranstalter/FNS Veranstaltung/P Veranstaltungskalender/S Verantwortens Verantwortlichkeit/P Verantwortung/P Verantwortungsbereich Verantwortungsbewusstsein/S Verantwortungslosigkeit Verarbeitens Verarbeiter/FNS Verarbeitung/P Verarbeitungsbetrieb Verarbeitungsleistung Verarbeitungsmöglichkeit/P Verarbeitungsprogramm Verarbeitungsschritt/EPT Verarbeitungsweise Verarbeitungszeit Verarmung Verb/PS Verbände/N Verbänden Verbandes Verbands Verbandsarbeit/P Verbandskästen Verbandskasten/S Verbandsoperation/P Verbandstheorie/N Verbandstoff/EPS Verbandsvorsitzender Verbandsvorstand Verbandszeug/PST Verbannens Verbannung/P Verbesserbarkeit Verbesserns Verbesserung/P Verbesserungsmaßnahme/N Verbesserungsmöglichkeit/P Verbesserungsvorschlag/STp Verbeugens Verbeugung/P Verbiegens Verbiegung/P Verbildlichens Verbildlichung/P Verbindens Verbinder/N Verbindlichkeit/P Verbindlichkeitenliste Verbindung/P Verbindungsachse/N Verbindungsbahn/P Verbindungselemente Verbindungsgang/Tp Verbindungskabel Verbindungskanten Verbindungskarte Verbindungsleitung/P Verbindungsmännern Verbindungsmann/T Verbindungspläne Verbindungsplan Verbindungsplatine Verbindungsrandstück Verbindungsrohr/EPST Verbindungsstelle/N Verbindungsstraße/N Verbindungsstück/EPST Verbissenheit Verbitterns Verbitterung/P Verblendens Verblendung/P Verblüffens Verblüffung/P Verborgenheit Verbote/F Verbote/S Verbots Verbotsprinzip Verbotsschild/T Verbotsschildern Verbrauch/RST Verbrauch/ST Verbraucher/NS Verbraucheranlaufstelle Verbrauchergruppe/N Verbraucherindex Verbraucherkrediten Verbraucherländer/N Verbraucherland Verbrauchermagazin/EPS Verbrauchermarkt/T Verbraucherpreisindex Verbraucherschulden Verbrauchersektor Verbraucherverbände/N Verbraucherware/N Verbrauchs Verbrauchseinsparung/P Verbrauchsgüter/N Verbrauchsgut/S Verbrauchsmaterial Verbrauchsmessung Verbrauchsrückgang Verbrauchssteuer Verbrauchszunahme/N Verbrechens Verbrechensbekämpfung Verbrecher/FNS Verbrecher/NS Verbrecheralbum/S Verbrecherehepaar/S Verbrecherorganisation/P Verbrechertum/S Verbrecherwelt Verbreitens Verbreiter/J Verbreiterns Verbreitung/P Verbrennens Verbrennung/P Verbrennungsmaschine/N Verbrennungsmotor/PS Verbrennungsofen/S Verbrüderns Verbrüderung/P Verbuchens Verbuchung/P Verbum Verbund/EST Verbund/ET Verbundenheit Verbundglas/T Verbundnetz Verbundnetzkosten Verbundnetzrechnung/P Verbundprojekt Verbundvorhaben/S Verdächtigens Verdächtigung/P Verdächtigungsperson Verdachts Verdachtsmoment/EPST Verdammens Verdammnis/q Verdammung/P Verdampfens Verdampfung/P Verdauens Verdaulichkeit Verdauung/P Verdauungsbeschwerde/N Verdauungsstörung/P Verdauungssystem Verdeckes Verdecks Verderb Verderber Verderblichkeit Verderbnis Verderbtheit Verdeutlichens Verdeutlichung/P Verdeutschens Verdeutschung/P Verdi/S Verdichtens Verdichtung/P Verdickens Verdickung/P Verdienstausfall/STp Verdienste/NS Verdienstkreuz Verdienstmöglichkeit/P Verdienstspanne/N Verdinglichung Verdoppelns Verdoppelung/P Verdopplung/P Verdrängens Verdrängung/P Verdrahtens Verdrahtung/P Verdrahtungskasten Verdrahtungspläne Verdrahtungsplatine Verdrahtungsplatte Verdrehens Verdrehschutz Verdrehtheit Verdrehung/P Verdreißigfachung Verdrießlichkeit Verdrossenheit Verdruss/ET Verdünnens Verdünnung/P Verdummens Verdummung/P Verdun Verdunkelns Verdunkelung/P Verdunkelungsgefahr/P Verdunklung/P Verdunstens Verdunstung/P Verdutzens Verdutzung/P Veredelns Veredelung/P Veredelungsindustrie/N Veredlung/P Verehrens Verehrer/FNS Verehrung/P Vereidigens Vereidigung/P Verein/S Vereinbarens Vereinbarkeit Vereinbarung/P Vereinbarungsentwurf Vereinfachens Vereinfachung/P Vereinfachungsgründe/N Vereinheitlichens Vereinheitlichung/P Vereinigens Vereinigung/P Vereinigungstyp/PS Vereinsamens Vereinsamung/P Vereinsbank Vereinsmeierei Vereinstrainer Vereinsvorstand Vereinswesen/S Vereinzelns Vereinzelung/P Vereinzlung/P Vereisens Vereisung/P Vereitelns Vereiterns Vereiterung/P Vereitlung/P Verelendens Verelendung/P Verengens Verengerns Verengerung/P Verengung/P Vererbens Vererbung/P Vererbungsgesetz/EPT Vererbungshierarchie Vererbungslehre/N Vererbungslinie/N Vererbungsmechanismen Vererbungsrecht/EPST Verewigens Verewigung/P Verfälschens Verfälscher/FNS Verfälschung/P Verfärbens Verfärbung/P Verfahrens Verfahrenshinweis/EPT Verfahrenstechnik/P Verfahrensvorschrift/P Verfahrensweise/N Verfall Verfall/STp Verfalldatum Verfalles Verfallstag/ET Verfallszeit/P Verfalltermin Verfassens Verfasser/FNS Verfassung/P Verfassungsänderung/P Verfassungsausschuss/Tp Verfassungsbeschwerde/N Verfassungsfeinde Verfassungskämpfe Verfassungsklage/N Verfassungsrecht/EPST Verfassungsrechtler Verfassungsreform Verfassungsschützer Verfassungsschutz/T Verfassungsstreit Verfassungsurkunde/N Verfechter/FNS Verfechter/NS Verfehlens Verfehlung/P Verfeindens Verfeindung/P Verfeinerns Verfeinerung/P Verfertigens Verfertiger/NS Verfertigung/P Verfetten/JS Verfilmens Verfilmung/P Verfilzens Verfilzung/P Verflechtens Verflechtung/P Verfolgens Verfolger/FNS Verfolgtwerden Verfolgung/P Verfolgungsjagd Verfolgungswahn/T Verformens Verformung/P Verfremdens Verfremdung/P Verfügbarkeit Verfügens Verfügung/P Verfügungsfreiheit Verfügungsrecht/EPST Verfügungsstellung Verführens Verführer/FNS Verführung/P Verführungskraft Vergänglichkeit Vergabe Vergangenheit Vergasens Vergaser/NS Vergasung/P Vergeblichkeit Vergebung/P Vergegenwärtigens Vergegenwärtigung/P Vergehens Vergeistigens Vergeistigung/P Vergeltens Vergeltung/P Vergeltungsakt/ET Vergeltungsmaßnahme/N Vergeltungsschlag/STp Vergemeinschaften/JS Vergessenheit Vergesslichkeit Vergeudens Vergeuder/FNS Vergeudung/P Vergewaltigens Vergewaltigung/P Vergiftens Vergiftung/P Vergissmeinnicht/T Vergleich/JST Vergleichbarkeit Vergleichens Vergleichsbasis Vergleichsbetrieb Vergleichsfunktion/P Vergleichsliste/N Vergleichsmöglichkeit/P Vergleichsmonat Vergleichsquote/N Vergleichsrechnung/P Vergleichswert/EPST Vergleichszahl/P Vergleichszwecke/N Vergleichung/P Vergnügens Vergnügung/P Vergnügungsreise/N Vergnügungsreisende/N Vergnügungsstätte/N Vergnügungssteuer Vergnügungssüchte/N Vergnügungssucht Vergnügungsviertel Vergötterns Vergötterung/P Vergoldens Vergolder/NS Vergoldung/P Vergröbern/JS Vergrößerns Vergrößerung/P Vergrößerungsapparat/EPST Vergrößerungsgläser Vergrößerungsglas/T Vergrößerungsmöglichkeit/P Vergünstigen/JS Vergütens Vergütung/P Vergütungsgruppe/N Verguss/Tp Vergussanlage Vergusshülsen Vergussmasse Vergussproblem/EPS Vergussschicht Vergusswachs/T Verhältnis/Qq Verhältnismäßigkeit/P Verhältniswahl/P Verhältniswörter/N Verhältniswort/T Verhängens Verhängnis/Qq Verhängung/P Verhärtens Verhärtung/P Verhaftens Verhaftung/P Verhaltenheit Verhaltens Verhaltensänderung Verhaltensform/P Verhaltensforscher Verhaltensforschung/P Verhaltenskodex/EPT Verhaltensmaßregel/N Verhaltensmuster Verhaltensnorm/P Verhaltensphysiologie Verhaltensprogramm Verhaltensregel/N Verhaltensstörung Verhaltensweise/N Verhaltenswert/EPST Verhandelns Verhandlung/P Verhandlungsdauer Verhandlungsergebnis/Qq Verhandlungsfrieden Verhandlungsführer/F Verhandlungsgeschick Verhandlungskommission/P Verhandlungsmandat/E Verhandlungspartner/FNS Verhandlungsprogramm Verhandlungspunkt Verhandlungsrunde/N Verhandlungsspielraum/STp Verhandlungsteilnehmer/NS Verhandlungstisch Verhandlungsziele/N Verhaues Verhaus Verheerung/P Verheimlichens Verheimlichung/P Verheiratens Verheiratung/P Verheißens Verheißung/P Verherrlichens Verherrlichung/P Verhetzen/JS Verhinderns Verhinderung/P Verhöhnens Verhöhnung/P Verhöres Verhörs Verhüllens Verhüllung/P Verhütens Verhütung/P Verhütungsmaßnahme/N Verhütungsmittel/NS Verifikation/P Verifizierens Verifizierung/P Verinnerlichens Verinnerlichung/P Verirrens Verirrung/P Verjährens Verjährung/P Verjährungsfrist/P Verjüngens Verjüngung/P Verjüngungskur Verkäufe/NR Verkäufer/FNS Verkäuflichkeit Verkabeln/JS Verkabelungsaufwand/S Verkabelungsbeispiel Verkabelungsfehler Verkabelungsprobleme Verkabelungsschema Verkabelungsteile Verkabelungswege Verkalkens Verkalkung/P Verkapselns Verkapselung/P Verkapslung/P Verkaufs Verkaufsabteilung Verkaufsaktion/P Verkaufsautomat/P Verkaufsdirektion/P Verkaufsdirektor Verkaufsdruck Verkaufsempfehlung/P Verkaufserfahrung/P Verkaufserfolge Verkaufsergebnis/Qq Verkaufserlös/EPT Verkaufsetage Verkaufsförderung Verkaufsgebiet Verkaufsgeschäft/EPS Verkaufsgesellschaft Verkaufsgespräche Verkaufsgrund Verkaufskurs/EPT Verkaufsleiter Verkaufsmasche Verkaufsniederlassung/P Verkaufsorder/S Verkaufsorganisation/P Verkaufspersonal/S Verkaufsphase Verkaufspreis/EPT Verkaufsprogramm Verkaufsraum/STp Verkaufsschlager/NS Verkaufsschlüssel/S Verkaufssignale/N Verkaufsstelle Verkaufstätigkeit Verkaufstermine Verkaufsunterlagen Verkaufsvereinigung/P Verkaufszeitpunkt Verkehrens Verkehres Verkehrs Verkehrsader/N Verkehrsampel Verkehrsandrang/T Verkehrsaufgaben Verkehrsbedürfnis/Qq Verkehrsbelebung Verkehrsbetrieb/ET Verkehrsbüro/S Verkehrschaos Verkehrsdelikte Verkehrsdichte/N Verkehrsdisziplin Verkehrsexperte Verkehrsflughafen Verkehrsflugzeug/EPST Verkehrsflussregelung Verkehrsfragen Verkehrsführung Verkehrsfunk Verkehrsgenossenschaften Verkehrsgesetze Verkehrshindernis/Qq Verkehrsinsel/N Verkehrskette Verkehrsknäuel Verkehrsknotenpunkt/EPST Verkehrsleistung Verkehrsminister/NS Verkehrsmittel/NS Verkehrsmoral Verkehrsnetz/EPT Verkehrsordnung/P Verkehrsplanung Verkehrspolitik Verkehrspolizist/P Verkehrsposten Verkehrsregelung/P Verkehrsrichter Verkehrsschild Verkehrsschilder Verkehrsschutzmänner Verkehrsschutzmann/T Verkehrssicherheit Verkehrsstauung/P Verkehrsstraße/N Verkehrsstreifen Verkehrsströme Verkehrssünder/FNS Verkehrssystem Verkehrstafel Verkehrsteilnehmer/FNS Verkehrstod Verkehrsträger Verkehrsübertretung/P Verkehrsunfall/Sp Verkehrsunternehmen/S Verkehrsverband Verkehrsverbindung/P Verkehrsverein/ET Verkehrsverhältnis/Qq Verkehrsvorschrift/P Verkehrswege Verkehrswert/ET Verkehrswesen/S Verkehrszählung/P Verkehrszeichen/S Verkehrung/P Verkeilens Verkeilung/P Verkennens Verkennung/P Verkettadapter Verkettens Verkettung/P Verketzerns Verketzerung/P Verkippen/JS Verkippens Verkippung/P Verklärens Verklärung/P Verklagens Verklagung/P Verklammern/JS Verklammerns Verklammerung/P Verklebens Verklebung/P Verkleidens Verkleidung/P Verkleinerns Verkleinerung/P Verkleinerungswörter/N Verkleinerungswort/T Verknappens Verknappung/P Verknöcherns Verknöcherung/P Verknüpfens Verknüpfung/P Verkörperns Verkörperung/P Verkohlens Verkohlung/P Verkommenheit Verkrümmens Verkrümmung/P Verkrüppelns Verkrüppelung/P Verkrüpplung/P Verkümmerns Verkümmerung/P Verkündens Verkündigens Verkündigung/P Verkündung/P Verkürzens Verkürzung/P Verkürzungsschnüre/N Verkürzungsschnur Verlängerns Verlängerung/P Verlängerungsantrag/STp Verlängerungskabel Verlängerungsschnüre Verlängerungsschnur Verlässlichkeit Verläufe/N Verläufen Verladens Verladerampe/N Verladestation/P Verladung/P Verlag/EPST Verlagerns Verlagerung/P Verlagsanstalt Verlagsbuchhändler/FNS Verlagsbuchhandel/S Verlagsbuchhandlung/P Verlagsfirma Verlagsfirmen Verlagskontor Verlagsort Verlagspreis/EPT Verlagsprodukte Verlagsrecht/EPST Verlagswerk/EPT Verlangens Verlangsamens Verlangsamung/P Verlassenheit Verlasses Verlaub Verlaufs Verlautbarens Verlautbarung/P Verlegenheit/P Verlegens Verleger/FNS Verlegung/P Verleiher/FNS Verleihes Verleihs Verleihung/P Verleitens Verleitung/P Verlesens Verlesung/P Verletzens Verletzung/P Verletzungsgefahr/P Verleugnens Verleugnung/P Verleumdens Verleumder/FNS Verleumdung/P Verliebtheit Verlierer/N Verlies/EPT Verlöbnis/Qq Verlöschens Verlöschung/P Verlötens Verlötung/P Verlobens Verlobung/P Verlobungsanzeige/N Verlobungsring/EPST Verlockens Verlockung/P Verlogenheit/P Verlosens Verlosung/P Verlust Verlust/EPST Verlustanzeige/N Verlustfall/Sp Verlustgefahr/P Verlustgeschäft Verlustleistung Verlustlisten Verlustmeldung/P Verlustposition/P Verlustrechnung/P Verlustrisiken Verlustrisiko Verlustvortrag/STp Verlustzone/N Vermächtnis/Qq Vermählens Vermählung/P Vermarktens Vermarktung/P Vermarktungsabsicht/P Vermarktungsidee Vermaßens Vermaßung/P Vermehrens Vermehrung/P Vermehrungsprozess/EPT Vermehrungsschritt/EPS Vermeidbarkeit Vermeidens Vermeidung/P Vermengens Vermengung/P Vermenschlichens Vermenschlichung/P Vermerks Vermessenheit/P Vermessens Vermessung/P Vermessungsämter/N Vermessungsamt Vermessungskonzept Vermessungsmarken Vermessungssystem/S Vermessungswesen Vermietbarkeit Vermietens Vermieter/FNS Vermietung/P Vermietungsabschluss/Tp Verminderns Verminderung/P Verminen Verminen/JS Vermischens Vermischung/P Vermischungsgrad Vermisstenanzeige/N Vermisstenliste/N Vermittelns Vermittler/FNS Vermittlerrolle/N Vermittlung/P Vermittlungsämter/N Vermittlungsamt Vermittlungsangebot Vermittlungsbemühung/P Vermittlungsbeziehung Vermittlungsgebühr/P Vermittlungsgespräch/EPS Vermittlungsprovision/P Vermittlungsversuch/EPS Vermittlungsvorschlag/STp Vermögens Vermögensabgaben Vermögensanlage/N Vermögensaufbau Vermögensberater Vermögensberatung Vermögensexplosion Vermögenslage Vermögenssteuer Vermögenssteuerpflicht Vermögensteile Vermögensübernahme Vermögensverhältnis/Qq Vermögensvermehrung Vermögensverwalter/N Vermögensverwaltung Vermögenswerte/NS Vermummens Vermummung/P Vermutens Vermutung/P Vermutungswissen/S Vernachlässigens Vernachlässigung/P Vernebelns Vernebelung/P Verneblung/P Vernehmens Vernehmung/P Verneigens Verneigung/P Verneinens Verneinung/P Vernetzbarkeit Vernetzens Vernetzung/P Vernichtens Vernichtung/P Vernichtungskrieg/EPS Vernichtungslager/NS Vernissage/N Vernunft Vernunftehe/N Vernunftwesen/S Verödens Verödung/P Veröffentlichens Veröffentlichung/P Verona Veroneser Verordnens Verordnung/P Verordnungsentwurf Verpächter/FNS Verpachtens Verpachtung/P Verpackens Verpacker/FNS Verpackung/P Verpestens Verpestung/P Verpfändens Verpfändung/P Verpflanzens Verpflanzung/P Verpflegens Verpflegung/P Verpflichtens Verpflichtung/P Verpolschutz Verpuffens Verpuffung/P Verputz Verräter/FNS Verrat/ST Verrats Verrechnens Verrechnung/P Verrechnungspreisen Verrechnungsprozesse Verrechnungsscheck Verrechnungsstelle/N Verrechnungssumme Verrechnungsverkehr Verrechnungszentren Verrenkens Verrenkung/P Verrichtens Verrichtung/P Verriegelns Verriegelung/P Verrieglung/P Verringerns Verringerung/P Verrisse/S Verrohens Verrohung/P Verrottens Verrottung/P Verrücktheit/P Verruchtheit Verruf/ST Verrufes Verrufs Vers/EPT Versäumnis/Qq Versäumnisurteil/EPS Versachlichen/JS Versagens Versager/FNS Versagung/P Versailles Versammelns Versammlung/P Versammlungsfreiheit Versammlungsleiter/NS Versand/T Versandabteilung/P Versandabwicklung Versandanweisung/P Versandanzeige/N Versandbestätigung Versandbuchhandlung Versandes Versandgeschäft/EPS Versandhaus/Tp Versandhauskatalog Versandkosten Versandliste/N Versandpapieren/W Versandtätigkeit/P Versandweg/ES Versandzonenliste Versbau/ST Verschämtheit Verschärfens Verschärfung/P Verschalens Verschaltens Verschaltung/P Verschalung/P Verschickens Verschickung/P Verschiebefunktion/P Verschiebens Verschiebespiel Verschiebung/P Verschiedenheit Verschiffens Verschiffung/P Verschläge/N Verschlägen Verschlafenheit Verschlagenheit Verschlages Verschlags Verschlagwortung Verschlechterns Verschlechterung/P Verschleierns Verschleierung/P Verschleierungstaktik/P Verschleiß/T Verschleißteil/EPS Verschleppens Verschleppung/P Verschleppungstaktik/P Verschleuderns Verschleuderung/P Verschlimmerns Verschlimmerung/P Verschlüsselns Verschlüsselung/P Verschlüsselungstechnik/P Verschlüsslung/P Verschluss/Tp Verschlusskappe/N Verschlusssache/N Verschlussschraube/N Verschlussstopfen/S Verschlusszeit/P Verschmähens Verschmähung/P Verschmelzens Verschmelzung/P Verschmitztheit Verschmutzens Verschmutzung/P Verschnaufpause/N Verschönerns Verschönerung/P Verschonens Verschonung/P Verschränkens Verschränkung/P Verschraubens Verschraubung/P Verschreibens Verschreibung/P Verschrobenheit/P Verschrottens Verschrottung/P Verschüchterns Verschüchterung/P Verschuldens Verschuldung/P Verschuldungsprinzip Verschuldungsprobleme Verschweigens Verschweigung/P Verschwendens Verschwender/FNS Verschwendung/P Verschwendungssucht Verschwiegenheit Verschwörens Verschwörer/FNS Verschwörung/P Verschwommenheit Versehrtheit Versendens Versender/FNS Versender/NS Versendung/P Versenkens Versenkung/P Versetzens Versetzung/P Verseuchens Verseuchung/P Versfuß/Tp Versicherer/NS Versicherns Versicherung/P Versicherungsaktie/N Versicherungsanstalten Versicherungsart/P Versicherungsbranche/N Versicherungsfall/Sp Versicherungsgedanken Versicherungsgesellschaft/P Versicherungsidee Versicherungskaufmann Versicherungsmerkblatt Versicherungsnehmer/S Versicherungsparten Versicherungspesen Versicherungspolicen Versicherungsprämie/N Versicherungsschein/EPS Versicherungsträger/NS Versicherungsverein Versicherungsvermögen Versicherungsvertreter Versiegelns Versiegelung/P Versieglung/P Versilberns Versilberung/P Versinnbildlichung Version/P Versionsnummer/N Versionsverwaltung Versionsverwaltungssystem/EPS Verskunst Versmaß/EPT Versöhnens Versöhnung/P Versorgens Versorger/FNS Versorgung/P Versorgungsabgabe Versorgungsanlage/N Versorgungsbetrieb/ET Versorgungsempfänger/FNS Versorgungsengpass/Tp Versorgungsgebiet Versorgungsgerät/E Versorgungsgesetz Versorgungsgüter Versorgungskabel Versorgungskassen Versorgungslage/R Versorgungslager/NS Versorgungsleitung/P Versorgungslücke Versorgungsprogramme Versorgungspufferung Versorgungsschwierigkeit/P Versorgungsspannung/P Versorgungsstrom Versorgungsunternehmen Versorgungswerte/N Verspätens Verspätung/P Verspannens Verspannung/P Verspottens Verspottung/P Versprechens Versprecher/FNS Versprechung/P Verstädterung Verständigens Verständigkeit/P Verständigung/P Verständlichkeit Verständnis/Qq Verständnislosigkeit Verstärkens Verstärker/NS Verstärkerbaustein Verstärkereingang Verstärkerkarte/N Verstärkerröhre Verstärkerschaltung Verstärkerstufe Verstärkung/P Verstärkungsanstieg/S Verstärkungseinstellung Verstärkungsregelung Verstärkungsreserve Verstaatlichens Verstaatlichung/P Verstaatlichungsaktion/P Verstaatlichungspläne Verstande/S Verstandeskräfte/N Verstandeskraft Verstandesmensch Verstandesschärfe Verstandeswelt Verstauchens Verstauchung/P Versteck/ST Versteckidee/N Versteckspiel/ST Versteifens Versteifung/P Versteigerns Versteigerung/P Versteigerungsankündigung/P Versteigerungswert/EPT Versteinerns Versteinerung/P Verstellens Verstellmöglichkeit/P Verstellung/P Versteuerns Versteuerung/P Verstiegenheit Verstimmens Verstimmung/P Verstörtheit Verstöße/N Verstocktheit Verstopfens Verstopfung/P Verstoßens Verstoßes Verstoßung/P Verstrebens Verstrebung/P Verstrebungswinkel/NS Verstreuens Verstreuung/P Verstrickens Verstrickung/P Verstümmelns Verstümmlung/P Versündigens Versündigung/P Versucher/FNS Versuches Versuchs Versuchsabteilung Versuchsanordnung Versuchsanstalt/P Versuchsballon/S Versuchsdurchführung Versuchsfahrt Versuchsfeld Versuchsgelände/S Versuchsingenieur/EPS Versuchskaninchen/S Versuchslabor/EPS Versuchslaboratorium Versuchslauf/Sp Versuchsperson/P Versuchsreihe/N Versuchsrohr Versuchsstadium/S Versuchsstreb Versuchsstrecke/N Versuchstext Versuchstier/EPS Versuchung/P Versunkenheit Vertagens Vertagung/P Vertauschens Vertauschung/P Vertauschungsoperation/P Vertauschungsproblem/EPS Verteidigens Verteidiger/FNS Verteidigung/P Verteidigungsausgaben Verteidigungsbeitrag/STp Verteidigungsbereitschaft Verteidigungsbündnis/Qq Verteidigungsfähigkeit Verteidigungshaushalt Verteidigungskraft Verteidigungskrieg/EPST Verteidigungslinie Verteidigungsminister/NS Verteidigungsministerium/S Verteidigungsmittel Verteidigungspakt Verteidigungsplanung Verteidigungsrat Verteidigungsrede/N Verteidigungsversagen Verteidigungsvertrag/STp Verteilens Verteiler/NS Verteiler/S Verteilersäulen Verteilerschlüssel/NS Verteilung/P Verteilungsanlage/N Verteilungsfunktion/P Verteuerns Verteuerung/P Vertiefens Vertiefung/P Vertilgens Vertilgung/P Vertonens Vertonung/P Verträglichkeit Vertrag/STp Vertragens Vertragsänderung/P Vertragsabschluss/T Vertragsabwicklung Vertragsangebot Vertragsbedingung/P Vertragsbeginn Vertragsbestand Vertragsbestandteil/EPS Vertragsbrüche/N Vertragsbruch/ST Vertragsdauer Vertragsentwürfe/N Vertragsentwurf/ST Vertragserfüllung Vertragsfirmen Vertragsgegenstände/N Vertragsgegenstand/T Vertragskündigung Vertragspartei/P Vertragspartner/FNS Vertragsschluss/Tp Vertragsstaat/T Vertragsstrafe/N Vertragstext/EPT Vertragsunterzeichnung Vertragsverhältnis/Qq Vertragsverhandlung/P Vertragsverletzung Vertragswerk/EPS Vertrauens Vertrauensabstimmung Vertrauensbasis Vertrauensbeweis/EPT Vertrauensbildung Vertrauensbrüche/N Vertrauensbruch/T Vertrauensdozent/P Vertrauenskrise/N Vertrauensleute/N Vertrauensmänner/N Vertrauensmann/ST Vertrauensperson/P Vertrauenssache/N Vertrauensschwund Vertrauensseligkeit Vertrauensstellung Vertrauensverlust Vertrauensvorschuss/Tp Vertrauensvotum/S Vertrauenswürdigkeit Vertraulichkeit Vertraulichkeit/P Vertrautheit Vertrauung/P Vertreibens Vertreiber/NS Vertreibung/P Vertretens Vertreter/FNS Vertreter/NS Vertreterbesuch Vertreterbüro Vertreterversammlung Vertretung/P Vertriebe Vertriebs Vertriebserlöse Vertriebsgesellschaft Vertriebsideen Vertriebsingenieur Vertriebskosten Vertriebsnetz Vertriebsorganisation/P Vertriebspartner Vertriebsprogramm Vertriebsrecht/EPST Vertriebsstellen Vertriebsweg Verunglimpfens Verunglimpfung/P Verunreinigens Verunreinigung/P Verunsicherns Verunsicherung/P Verunstaltens Verunstaltung/P Veruntreuens Veruntreuung/P Verursachens Verursacher/NS Verursachung/P Verurteilens Verurteilung/P Vervielfältigens Vervielfältigung/P Vervielfältigungsapparat/EPST Vervielfachens Vervielfachung/P Vervollkommnens Vervollkommnung/P Vervollständigens Vervollständigung/P Verwachsens Verwahrens Verwahrlosens Verwahrlosung/P Verwahrung/P Verwaltens Verwalter/FNS Verwalter/S Verwaltung/P Verwaltungsabkommen Verwaltungsakt/E Verwaltungsapparat/EPST Verwaltungsarbeit/P Verwaltungsaufgaben Verwaltungsbeamte/NR Verwaltungsbehörden Verwaltungsbezirk/ET Verwaltungsdienst/ET Verwaltungsfunktion/P Verwaltungsgebäude Verwaltungsgesellschaft Verwaltungshauptstadt Verwaltungskosten Verwaltungspraxis Verwaltungsprobleme Verwaltungsräte/N Verwaltungsrat/T Verwaltungsratspräsident/P Verwaltungsreform Verwaltungszweig/EPS Verwandelns Verwandelung/P Verwandlung/P Verwandlungskünstler/NS Verwandtenbesuch/EPS Verwandtschaft Verwandtschaftsgrad/EPST Verwarnens Verwarnung/P Verweben/JS Verwechselns Verwechselung/P Verwechslung/P Verwechslungskomödie Verwegenheit/P Verwehens Verwehrens Verwehrung/P Verwehung/P Verweichlichens Verweichlichung/P Verweigerns Verweigerung/P Verweildauer/N Verweilzeit/P Verweis/JT Verweisung/P Verweisungszeichen/S Verweltlichens Verweltlichung/P Verwendbarkeit/P Verwendens Verwender/NS Verwendung/P Verwendungsmöglichkeit/P Verwendungszweck/EPST Verwerfens Verwerfung/P Verwertbarkeit Verwertens Verwertung/P Verwesens Verwesung/P Verwickelns Verwickelung/P Verwicklung/P Verwilderns Verwilderung/P Verwindens Verwindung/P Verwirklichens Verwirklichung/P Verwirrens Verwirrung/P Verwischens Verwischung/P Verwitterns Verwitterung/P Verwöhnens Verwöhnung/P Verworfenheit/P Verworrenheit/P Verwünschens Verwünschung/P Verwüstens Verwüstung/P Verwundbarkeit/P Verwundens Verwunderns Verwunderung/P Verwundung/P Verwurzelns Verwurzelung/P Verwurzlung/P Verzärtelns Verzärtlung/P Verzahnens Verzahnung/P Verzauberns Verzauberung/P Verzehres Verzehrs Verzeichnens Verzeichnis/Qq Verzeichnisbaum/STp Verzeichnishierarchie/N Verzeichnisname/N Verzeichnisstruktur/P Verzeichnung/P Verzeihens Verzeihung/P Verzerrens Verzerrung/P Verzicht/T Verzichtbarkeit Verzichterklärung/P Verzichtserklärung/P Verzierens Verzierung/P Verzinsens Verzinsung/P Verzögerns Verzögerung/P Verzögerungstaktik Verzögerungszeit Verzollens Verzollung/P Verzückens Verzückung/P Verzug/ETp Verzugstage Verzugszinsen Verzweifelns Verzweiflung/P Verzweiflungsschritt Verzweigens Verzweigung/P Vesper Vesperbrot/EPST Vestibül/S Veteran/P Veterinär/EPS Veto/S Vetorecht/EPS Vetter/NS Vetternwirtschaft Vexierbild/RT Vexierschloss/T Vexierspiegel/NS Vexierspiel/T VfB Viadukt/EPT Vibration/P Vibrationsmonitor Vibrationsverlauf/Sp Victor/S Victoriasee Video/S Videoausgang Videobänder Videoband Videobus/Qq Videoclip/S Videocontroller/S Videofilm/EPS Videokamera Videokassette/N Videomaterial/S Videoproduktion/P Videoprojektor Videorecorder Videosignal/EPS Videotape/S Videotext Viecher/N Vieh/T Viehausstellung Viehbestände/N Viehbestand Viehdiebstahl Viehfutter Viehhändler/FNS Viehhöfen Viehhof/T Viehmarkt/Tp Viehseuchen Viehwagen/S Viehweiden Viehzüchter/FNS Viehzucht Vieleck/EPT Vielfältigkeit Vielfalt Vielflieger/N Vielfraß/EPT Vielgestalt Vielheit/P Vielschichtkondensator Vielseitigkeit Vielweiberei/P Vielzahl Vielzeller Vierbeiner/NS Viereck/EPS Viererbande Viererbob Vierergruppe/N Viererkajak Vierertreffen Vierfüßler/N Viergespann/EPST Vierjahresplan Vierkampf Vierkantrohre Vierlinge/N Viermächtebesprechung/P Viermächtestatut Viermächteverwaltung Vierpolschaltung Vierpunkteprogramm Vierradbremse Viersitzer/NS Vierspänner/NS Viertaktmotor/PS Viertelfinale/S Vierteljahr/ET Vierteljahresmiete Viertelmillimeter Viertelmillion Viertelnote/N Viertelpause Viertelpfund/EPST Viertelstündchen/S Viertelstunde/N Viertklässler/FNS Viervierteltakt Vierzeiler/S Vierzigerin/F Vierzigers Vierzigstundenwoche Vierzimmerwohnung Vietcong Vietnam/S Vietnamese/FN Vietnamkrieg Vietnamsoldaten Vignette/N Vikar/EFPS Viktoria/S Viktualien Villa Villen Villeneuve Villengrundstück Villenhaushalt Villenkolonie Villenviertel/NS Villenvorort Viola/S Violine/N Violinist/FP Violinkonzerte Violinschlüssel/N Violoncelli Violoncello Viper Viren Virenscanner/NS Virginia Virtuosin Virtuosität/P Virus Viruskrankheit/P Visa Visage/N Visier Vision/P Visionär/EFPS Visitation/P Visite/N Visitenkarte/N Viskosität Viskositätsangaben Visualisierens Visualisierung/P Visualisierungsproblem/EPS Visualisierungssystem Visualisierungswerkzeug Visum/S Visumzwang Vitalität/P Vitamin/EPS Vitaminmängel/N Vitaminmangel/S Vitrine/N Vitrinentür Vize Vizeadmiral/EPS Vizekanzler/NS Vizekönig/EPS Vizekonsul/NS Vizepräsident/P Vizeweltmeister Vlies/EPT Vögelchen/S Vöglein/S Vögte/N Völker/N Völkerbewegung Völkerbund Völkergemeinschaft Völkerkunde Völkermord/EPST Völkerrechte/N Völkerschaft Völkerschlacht/P Völkerverständigung Völkerwanderung/P Völlerei Vodafone Vogel/S Vogelarten Vogelbauer/S Vogelbeerbaum/STp Vogelbeere/N Vogelfänger/NS Vogelflinte Vogelflug/S Vogelfreund Vogelfutter/S Vogelhaus/Tp Vogelmensch Vogelmist/T Vogelnest/T Vogelnestern Vogelparadies/EPT Vogelperspektiven Vogelschau Vogelscheuchen Vogelspinne Vogelsteller/S Vogelwarte/N Vogelzug/STp Vogt/T Vokabel/N Vokabular Vokal/EPS Vokalmusik Volant Volatilität Volk/EST Volke/RS Volker/S Volksabstimmung Volksaktien Volksarmee Volksaufschrei Volksaufständen Volksaufstand/T Volksausgaben Volksbank/P Volksbankrotteure Volksbefragung Volksbegehren/S Volksbewegung Volksbibliothek/P Volksbühnenvereine Volkscharakter/P Volksdemokratien Volksdeutschen Volksdichter/N Volkseinkommen Volksentscheid/ET Volksernährung Volksfeind/EPST Volksfest/EPT Volksfrömmigkeit Volksfront Volksgerichtshöfe Volksgruppe Volksgunst Volkshaufen/S Volksherrschaft Volkshochschule/N Volkskammer Volkskanzler Volkskapitalismus Volkskommissare Volkskongress/EPT Volksküche/N Volkskunde Volkslieder Volksmenge/N Volksmund Volksmusik Volkspark Volkspartei/P Volkspolizei Volksredner/S Volksrente Volksrepublik Volkssage/N Volksschichten Volksschüler Volksschule/N Volksschullehrer/FNS Volksseele Volkssport Volkssprache Volksstämmen Volksstamm/T Volksstimmen/J Volksstück/ET Volkstänze/N Volkstanz/T Volkstracht Volkstümlichkeit Volkstum/S Volksvermögen/S Volksverräter Volksversammlung/P Volksvertreter/N Volksvertretung/P Volkswagen Volkswahl Volksweisheit/P Volkswillen/S Volkswirt/EFPST Volkswirtschaft/P Volkswirtschaftslehre Volkswirtschaftsplan Volkszählung/P Vollansteuerung Vollaussteuerung Vollautomatik Vollautomatisierung/P Vollbäder Vollbärte/N Vollbad Vollbart/T Vollbeschäftigung Vollbesitz/EPT Vollblüter Vollblutpferd/ET Vollblutzucht Vollbringens Vollbringung/P Volldampf Vollendens Vollendung/P Volleyball/S Vollführens Vollführung/P Vollfunktion/P Vollgas Vollgefühl/ST Vollgenuss/Tp Vollgummi Vollgummiräder Vollidiot/FP Volljährigkeitsalter Volljurist/P Vollkaufmann Vollkommenheit Vollkonzession/P Vollkornbrot/ET Vollkräfte/N Vollmacht/P Vollmachtsstimmrecht Vollmer/S Vollmilch Vollmond/T Vollpension Vollschnittmaschine Vollständigkeit Vollständigkeitsgründe/N Vollstrebverfahren Vollstreckens Vollstrecker/FNS Vollstreckung/P Vollstreckungsbeamte/N Vollstreckungsbefehl/EPST Vollstreckungsbescheid Volltreffer/NS Vollversammlung Vollversicherung Vollversion/P Vollwaise Vollwaisenrente Vollwellengleichrichtung Vollziehens Vollziehung/P Vollzug/S Volontär/EFPS Volt Voltaire/S Voltmeter/S Volumen/S Volumenelement/EPS Volumenstrom/S Volumenzähler Volvo/S Vopo Vorabauftrag/STp Vorabend Vorabentscheidung/P Vorablieferung Vorahnens Vorahnung/P Voranalyse/N Vorankündigen/JS Voranmelden/JS Voranschlag/STp Voranzeige/N Vorarbeit/R Vorarbeiter/FNS Vorarlberg Voraufführung/P Vorausbestellung Vorausbestimmens Vorausbestimmung/P Vorausbezahlung/P Vorauskasse Vorausschätzung Voraussetzens Voraussetzung/P Voraussicht/P Voraustilgung Vorauswahl Vorauszahlen/JS Vorbau/ST Vorbedacht Vorbedeutung/P Vorbedingung/P Vorbehalt/ES Vorbemerkung/P Vorbereitens Vorbereitung/P Vorbereitungsprogramm/EPS Vorbereitungszeit Vorbericht/EPT Vorbesetzen/JS Vorbesprechen/JS Vorbestellens Vorbestellpreis/EPT Vorbestellung/P Vorbestrafen/JS Vorbeugens Vorbeugung/P Vorbeugungsmaßnahme/N Vorbeugungsmittel/N Vorbild/JPR Vorbilden/JSW Vorbildfunktion/P Vorbohren Vorbohrgerät Vorbote/N Vorbühne/N Vordenker Vorderachse/N Vorderansicht/P Vorderarm/EPT Vorderasien Vorderbein/EPT Vorderdeck/ST Vorderfuß/Tp Vordergründe/N Vordergrund/T Vorderhände Vorderlauf/Sp Vorderleute Vorderposition/P Vorderpratze/N Vorderräder Vorderrad Vorderradantrieb/EPT Vorderradbremse/N Vorderreihe/N Vorderseite/N Vordersitz/EPT Vorderteil/EPT Vordertür/P Vorderzähne/N Vorderzahn/ST Vordiplom/EPS Vordruck/EPST Vorecho/S Voreilens Voreiligkeit Voreilung/P Voreingenommenheit Voreinstellens Voreinstellung/P Voreltern Vorenthaltens Vorenthaltung/P Vorentwurf/S Vorexamen/S Vorfahr Vorfahrtrecht/T Vorfaktor/PS Vorfall/Sp Vorfeier/N Vorfeld/RT Vorfertigung/P Vorfilm/ET Vorfrage/N Vorfreude/N Vorführdame Vorführens Vorführer/NS Vorführgeräte Vorführraum/STp Vorführsystem Vorführung/P Vorführwagen Vorführzwecke/N Vorgänger/FNS Vorgängermodell/EPS Vorgängersteuerung Vorgängerversion/P Vorgärten Vorgabe Vorgabewert/EPS Vorgang/STp Vorgarten/S Vorgebirge/NS Vorgefühl/EPST Vorgehens Vorgehensweise/N Vorgericht/EPT Vorgeschichte Vorgeschmäcke/N Vorgeschmack Vorgespräch/EPS Vorgriff/EPT Vorhängeschloss/T Vorhäute/N Vorhabens Vorhalle/N Vorhaltemarke Vorhaltens Vorhaltung/P Vorhandensein/S Vorhang/STp Vorhaut Vorherbestimmens Vorherbestimmung/P Vorherrschaft Vorhersagbarkeit Vorhersehens Vorhinein Vorhöfe/N Vorhof/T Vorjahr/EPT Vorjahresgewinn Vorjahreshöhe Vorjahresmonate Vorjahresperiode Vorjahressieger Vorjahresstand Vorjahresvolumen/S Vorjahreszahlen Vorjahrsmeister Vorkämpfer/FNS Vorkasse Vorkauf/STp Vorkaufsrecht/EPST Vorkehren/JS Vorkehrungsmaßnahme/N Vorkenntnis/q Vorkommens Vorkommnis/Qq Vorkosten Vorkriegspreise Vorkriegssätze Vorkriegswert Vorläufer/FNS Vorläufigkeit Vorladens Vorladung/P Vorlage Vorlageschreiben/S Vorlageweg Vorlauf/STp Vorleben/S Vorleger/NS Vorleisten/JS Vorlesens Vorleser/N Vorlesung/P Vorlesungsstreik Vorlesungsverzeichnis/Qq Vorliebe/N Vorliegens Vormärsche/N Vormachtrolle/N Vormachtstellung Vormarsch/T Vormischung Vormittag/EPS Vormittagsstunde/N Vormonat/S Vormund/EPST Vormundschaft/P Vormundschaftsgericht/EPST Vormustergerät Vorname/N Vornamen/S Vornehmheit Vorort/EPST Vorortbahn/P Vorortszug/STp Vorplanen/JS Vorpommern/S Vorposten/S Vorpremiere Vorpressung Vorproduktstadium/S Vorprogrammieren Vorprojekt Vorprüfen/JS Vorräte/N Vorrang/ST Vorrat/ST Vorratskammer/N Vorratsspeicher/S Vorraum/STp Vorrecht/EPS Vorrede/N Vorredner/NS Vorreiter/NS Vorrichtens Vorrichtung/P Vorruhestand Vorrunde/N Vorsänger/FNS Vorsätze/N Vorsaison Vorsatz Vorsatzlinse/N Vorschau Vorschein Vorschiebens Vorschlag/STp Vorschlagsrecht Vorschlagstext/EPT Vorschlussrunde/N Vorschrift/P Vorschübe/N Vorschub/ST Vorschubausgang Vorschubautomatik Vorschubbewegung Vorschubdruck/T Vorschubgeschwindigkeit Vorschubregelung Vorschubrichtung/P Vorschubschlitten Vorschubschritt/E Vorschubzylinder/NS Vorschule/N Vorschuss/Tp Vorschusslorbeeren Vorschussrunde/N Vorsehens Vorsehung/P Vorsicht Vorsichtsmaßnahme/N Vorsichtsmaßregel/N Vorsilbe/N Vorsitz/RT Vorsorgeplanung Vorspann/ST Vorspannens Vorspannung/P Vorspeise/N Vorspiel/S Vorsprünge/N Vorsprung/S Vorstädte/NR Vorstädter/FNS Vorstände/N Vorstadt Vorstadtbahnhof Vorstand/T Vorstandsebene Vorstandskräften Vorstandsmitglied/T Vorstandsmitgliedern Vorstandssprecher Vorstandsvorsitzende/NR Vorsteher/FNS Vorsteherdrüse/N Vorsteherhund/ET Vorstellens Vorstellung/P Vorstellungsgespräch/EPST Vorstellungskraft Vorstellungsvermögen/S Vorsteuerventil/EPS Vorstoß/Tp Vorstrafe/N Vorstudie/N Vorstudium/S Vorstufe/N Vortäuschens Vortäuschung/P Vortag/EPST Vortagskurse Vortagsniveau Vortagsverluste Vorteil/EPST Vorteilpunkte Vortrag/STp Vortragsblock Vortragskünste/N Vortragskünstler/FNS Vortragskunst Vortragsreise/N Vortragsthema Vortrieb/S Vortriebsantrieb Vortriebsarbeit Vortriebsfortschritt Vortriebsgeschwindigkeit Vortriebsleistung/P Vortriebsmaschine/N Vortriebspause/N Vortriebsrichtung Vortriebszylinder Vortritt/EPS Vortrupp/S Vorüberlegung/P Vorübung/P Voruntersuchung/P Vorurteil/EPS Vorväter/N Vorventil/S Vorverarbeitung Vorvergangenheit Vorverkauf/STp Vorverkaufskasse/N Vorverlegens Vorverlegung/P Vorverstärker/NS Vorverstärkerausgang Vorversuche/N Vorvertrag/STp Vorwählnummer/N Vorwände/N Vorwärtsfahren/S Vorwärtsrichtung Vorwahl/P Vorwand/ST Vorwarnen/JS Vorwegkonsumieren Vorweihnachtstage Vorwiderstände Vorwiderstand Vorwissen/S Vorwoche/N Vorwochenstand Vorwort/EPS Vorwürfe/N Vorwurf/S Vorzeichen/S Vorzeichenregel/N Vorzensur/P Vorzimmerdame Vorzug/STp Vorzugsaktienkapital Vorzugsfolge/N Vorzugspreis/EPT Vorzugspunkt/EPS Vorzugsrichtung/P Vorzugsstellung/P Votum Voyeur/EFPS Voyeurismus Vulgäraposteln Vulkan/EPS Vulkanausbruch Vulva Vulven WC WDR WM Wächter/FNS Wägbarkeit/P Wägens Wägung/P Wählbarkeit Wähler/FNS Wählerliste/N Wählerschaft/P Wählerstimmen Wählerstimmenfang/S Wählerstimmenkauf/Sp Wählervereinigung Wählerwillen/S Währung/GP Währungsabkommen Währungsabwertung Währungsausgleichfonds Währungsaustausch Währungsbank Währungsbewegung/P Währungsdifferenz Währungseinheit/P Währungsexperten Währungsfluktuationen Währungsfonds Währungsgebiet Währungsgefüges Währungsgeschäften Währungsgeschehen/S Währungsgewinne Währungshilfe Währungskarussell Währungskorb Währungskrise/N Währungskurse/N Währungslage Währungsoptionen Währungsoptionsgeschäft/EPST Währungsordnung Währungspaare Währungspolitik Währungspositionen Währungsreformen Währungsregime Währungsreserven Währungsrisiko Währungssituation Währungsspekulant Währungsspekulation/P Währungsstabilität Währungssymbol Währungssystem/S Währungstrends Währungsunion Währungsunterschieden Währungsvariationen Währungsvergewaltigung Währungsverlust/E Währungsverschiebung/P Währungswarrant/S Wälder/N Wälle/N Wälzer/NS Wämser/N Wände/N Wärmeableitung Wärmeausdehnungskoeffizient/P Wärmebehandlung Wärmebeständigkeit Wärmeeinheit/P Wärmegrad/EPST Wärmelehre/N Wärmeleiter/S Wärmeleitpaste Wärmemesser/N Wärmepumpen Wärmeschutz Wärmesensor Wärmetechnik Wärmeverteiler Wärmflasche/N Wärmflaschenkrieg Wärter/FNS Wäsche/R Wäschefabrik Wäschegeschäft/S Wäscheklammer/N Wäscher/FNS Wäscherei/P Wäscheschleuder/N Wäscheschränke/N Wäscheschrank/S Wäscheständer Wäschetinte Wässerns Wässerung/P Waage/N Waagschale/N Wabe/N Wachbataillon Wachhabende/NR Wachhaus/Tp Wachholderschnäpsen Wachhund/EPST Wachlokal/EPS Wachmannschaft/P Wacholder/NS Wacholderbeeren Wacholderbranntwein/E Wacholderschnäpse Wacholderschnapses Wacholdersirup/ES Wacholdersträucher/N Wacholderstrauch/S Wacholderwein/E Wachposten/S Wachs/T Wachsabguss/Tp Wachsamkeit Wachschiff/EPS Wachsfigur/P Wachsfigurenkabinett/EPS Wachskerze/N Wachsleinwände Wachsleinwand Wachslicht/S Wachslichter Wachspuppe/N Wachsstöcke Wachsstock/S Wachsstreichhölzer Wachsstreichholz/T Wachstücher Wachstuch/S Wachstum/S Wachstumsbranche/N Wachstumsphase/N Wachstumspolitik Wachstumsprojektionen Wachstumsprozess/EPT Wachstumsrate/N Wachstumsrichtung/P Wachstumsstörung Wachtel/N Wachtmeister/FNS Wachtposten Wachtraum/STp Wachtürme Wachturm/S Wackelbetriebe Wackelkontakt/EPST Wackelunternehmen Wackersdorf Wackler Wade/N Wadenkrämpfe/N Wadenkrampf Wadenstrümpfe/N Wadenstrumpf Wadi/S Waffe/N Waffel/N Waffenappell/ES Waffenarten Waffenbesitz Waffenbrüder/N Waffenbrüderschaft/P Waffenbruders Waffendienst/ET Waffeneinfuhr Waffenembargo Waffenexport/E Waffenfabrik/P Waffenfabrikant/P Waffengängen Waffengang/S Waffengattung/P Waffengewalt/P Waffenhandelsfirma Waffenhandelsfrage Waffenhilfe Waffenkammer/N Waffenlager/S Waffenlieferung/P Waffenmeisterei/P Waffenmeistern Waffenröcke/N Waffenrock Waffenruhe/N Waffenschein/PS Waffenschmied/PS Waffenschmuggel/S Waffenschmuggler/N Waffenstillstände/N Waffenstillstand/ST Waffenstillstandsabkommen Waffenstillstandslinie Waffenstillstandsverhandlung/P Waffensystem/EPS Wagehälse/N Wagehals/T Wagemut/S Wagenabteil/PS Wagenführer/S Wagenheber/N Wagenladung/P Wagenlauf/Sp Wagenpark/S Wagenpflege/N Wagenpflegen/S Wagenräder/N Wagenrad Wagenrücklauf/Sp Wagens Wagenschlag/Sp Wagenschmiere Wagenspur Wagenvorschub Wagestück/EPS Waggon/S Waghalsigkeit/P Wagner/S Wagneroper Wagnis/Qq Wagon/S Wahl/P Wahlakt/P Wahlausschuss/Tp Wahlaussichten Wahlbericht/PS Wahlbeteiligung Wahlbezirk/EPS Wahlbündnis/Qq Wahldatum Wahleinsatz Wahlerfolg Wahlergebnis/Qq Wahlfächer/N Wahlfach/S Wahlfeldzug/STp Wahlgang/STp Wahlgeschenken Wahlgesetz/E Wahlheimat Wahljahr Wahlkämpfe Wahlkampf/ST Wahlkampfergebnis/Qq Wahlkampfprogramm Wahlkampftermine Wahlkampftour Wahlkampfversprechen Wahlkonsequenzen Wahlkreis/EPT Wahlkreiseinteilung Wahlkundgebung Wahllokal/EPS Wahlmänner Wahlmännergremium Wahlmann/S Wahlmöglichkeit/P Wahlmonat Wahlperiode Wahlplattformen Wahlprogramm Wahlprüfer Wahlprüfung/P Wahlrecht/EPST Wahlrede/N Wahlschalter/S Wahlscheibe Wahlschlacht/P Wahlsieg Wahlsonntag Wahlsprüche/N Wahlspruch/S Wahlstimme/N Wahlsystem Wahltag/EPS Wahltermin/E Wahlurnen Wahlveranstaltung/P Wahlverlust Wahlversammlung/P Wahlversprechen Wahlverwandtschaft Wahlvolk Wahlvorschlag/STp Wahlvorstand Wahlzelle/N Wahlzettel Wahn/S Wahnbild/RST Wahnsinn Wahnvorstellung/P Wahnwitz Wahrens Wahrhaftigkeit Wahrheit/P Wahrheitsbeweis/EPT Wahrheitsgehalt Wahrheitsliebe Wahrheitssucher Wahrheitswert/EPS Wahrnehmens Wahrnehmung/P Wahrnehmungsapparat Wahrnehmungsorganen Wahrnehmungssystem Wahrnehmungsvermögen/S Wahrsager/FNS Wahrsagerei Wahrscheinlichkeit/P Wahrscheinlichkeitsfunktion/P Wahrscheinlichkeitsrechnung/P Wahrscheinlichkeitstheorie Wahrscheinlichkeitsverteilung/P Wahrsprüche/N Wahrspruch/S Wahrung/P Wahrzeichen/S Waidmänner/N Waidmann/S Waise/N Waisenhaus/Tp Waisenkind/RT Waisenknabe/N Wal/EPT Walart/P Wald/EJT Waldarbeiter/FNS Waldbrände/N Waldbrand/T Walderdbeere Waldgebiete Waldgebirge/S Waldgrundstück Waldgut Waldhaus/Tp Waldhörnern Waldhorn/S Waldhüter/N Waldländern Waldland/T Waldlauf/Sp Waldlichtung Waldmeister/N Waldorflehrer/FNS Waldorfpädagogik Waldorfschule/N Waldränder/N Waldrand Waldsee Waldshut Waldsterben Waldweg/EPS Waldwiese/N Walfänger/S Walfang Walfangstation/P Walfisch/ET Walhalla Walkmühle/N Walküre Wall/JS Wallach/EPS Wallens Wallenstein/S Wallfahrer/NS Wallfahrten Wallfahrtsort/PS Wallraff/S Walnuss/Mp Walnussbaum/STp Walöl/EPS Walrössern Walross/EPT Walter/S Walther/S Waltran/PS Waltraud/S Walzblech/EPS Walzenachse Walzenantrieb Walzenarm Walzenautomatik Walzendetektor/P Walzendurchmesser/S Walzenerkennung Walzenfahrer Walzenfolgeautomatik Walzenfräskopf/S Walzengeschwindigkeit Walzenhöhe Walzenimpulse Walzenlager/S Walzenmarkierer/S Walzenmaschine Walzenmitte Walzenmonitor Walzenneigungssteuerung Walzenort Walzenposition Walzenrad/T Walzenrichtung Walzenschalter Walzenschrämlader/N Walzensensoren Walzenstandort Walzenstandorterkennung Walzenstandortseingabe Walzenstreb/ES Walzenströme Walzentragarm Walzer/NS Walzgold/T Walzgut Walzlager/NS Walzstahlproduktion Walzwerk/EPST Wams/T Wandbefestigung Wandbekleidung/P Wandel/JS Wandelbarkeit Wandelgang/Sp Wandelhalle/N Wandelns Wandelobligation/P Wandelstern/EPS Wandelung/P Wandelzeit Wanderausstellung Wanderbühne/N Wanderbursche/N Wanderdüne/N Wanderer/NS Wandergebiet Wandergewerbe/NS Wanderheuschrecke Wanderin/F Wanderjahr/PS Wanderleben Wanderniere/N Wanderns Wanderpokal/PS Wanderprediger Wanderpreis/EPT Wanderratte/N Wanderschaft Wandersmänner/N Wandersmann Wanderstäbe/N Wanderstab Wandertag Wandertrieb/EPS Wandertruppe/N Wanderung/P Wandervereine/N Wandervereins Wandervögel/N Wandervogels Wanderwege Wandgehäuse Wandgemälde/S Wandkalender/S Wandkarte/N Wandler/NS Wandleuchter/NS Wandlung/P Wandlungsbereich/EPS Wandlungsprozess/EPT Wandlungszeit Wandmalerei/P Wandmontage Wandpfeiler/S Wandschirm/EPS Wandschmuck Wandschoner/S Wandschränke/N Wandschrank/S Wandspiegel/S Wandtafel/N Wandteppich/PS Wanduhr Wandverkleidung Wange/N Wankelmotor/PS Wankelmut/T Wanne/N Wannenbäder/N Wannenbad Wannsee Wanst/T Wanze/N Wappen/S Wappenbild/R Wappenkunde Wappenschild/S Wappenschildern Wappensprüche Wappenspruch/S Ware Warenabkommen/S Warenaufzug/STp Warenausfuhr Warenausgang Warenaustausch/T Warenbegleitschein Warenbestände/N Warenbestand/S Warenbörse Wareneigenschaften Wareneingang Wareneinkauf/Sp Warenfluss/Tp Warengruppen Warenhaus/Tp Warenhauskatalog Warenhausunternehmen Warenkonti Warenkonto/S Warenkorb/S Warenkredit/EPS Warenlager/N Warenlieferung Warenmarkt/Tp Warenmenge Warenniederlagen Warennummern Warenpapieren Warenposition/P Warenproben Warenprotokoll Warenrechung/P Warenrückvergütung/P Warentermin Warentermingeschäft/EPS Warentest Warentransporte/S Warenverkehr Warenverzeichnis/Qq Warenzeichen/S Warhol/S Warmlauf/Sp Warmlaufphase/N Warmluftströmung Warmwasser/S Warmwasserbereitung/P Warmwasserheizung Warmwasserspeicher/N Warmwasserversorgung/P Warnblinken Warndreieck/PS Warnens Warngrenze/N Warnhupe Warnlampe Warnleuchte Warnlicht Warnmeldung Warnschuss/Tp Warnsignal/EPS Warnstreik/EPS Warntafel/N Warnung/P Warnungsruf/E Warnzeichen/S Warrant/S Warrantpreis/EPT Warschau Wartbarkeit Wartefrau/P Wartegeld/RT Warteliste/N Wartens Warteposition/P Warteposten/S Warteraum/STp Wartesäle/N Wartesaal Warteschlange/N Wartezeit/P Wartezimmer/NS Wartezustand/ST Wartezyklus Wartung/P Wartungsanleitung/P Wartungsarbeit/P Wartungsaufwand Wartungsbestimmung/P Wartungsdaten Wartungsfall Wartungsgebühr/P Wartungsintervall/EPS Wartungskästchen Wartungskosten Wartungsmaßnahme/N Wartungsprozess/EPT Wartungssoftware Wartungsunterlagen Wartungsvertrag/STp Wartungszeit/P Wartungszwecke/N Wartungszyklen Warze/N Waschanstalten Waschautomat/P Waschbär/P Waschbecken/S Waschbenzin Waschbrett/S Waschbretter Waschens Waschfrau Waschgelegenheit/P Waschkessel/S Waschkörbe Waschkorb/S Waschküche/N Waschlappen/S Waschlauge/N Waschleder/NS Waschmaschine/N Waschmittel/NS Waschpulver/NS Waschraum/STp Waschschüssel/N Waschseife/N Waschtisch Waschtoiletten Waschtröge/N Waschtrog/S Waschung/P Waschwasser/N Waschweib/T Waschweiber Waschzettel/NS Washington Wasser/S Wasserabscheidern Wasseratmosphäre Wasseraufnahme Wasserball/Sp Wasserballspiel/EPS Wasserbau/S Wasserbeckensystem Wasserbedarf Wasserbehälter/N Wasserbestrahlung Wasserblase/N Wasserbombe Wasserbrüche/N Wasserbruch Wasserdämpfe/N Wasserdampf Wasserdichtigkeit Wasserdurst Wassereimer/N Wassereinbruch Wassereinfluss/Tp Wassereinlass/Tp Wassereinwirkung Wasseremulsion Wasserfahrzeug/EPS Wasserfall/Sp Wasserfarbe/N Wasserfestigkeit Wasserflächen Wasserflaschen Wasserflöhe/N Wasserfloh/S Wasserflugzeug/EPS Wasserfluten Wasserfront Wassergläser Wasserglas/T Wassergräben Wassergraben/S Wasserhähne/N Wasserhahn/S Wasserhaushalt/EPS Wasserheilanstalten Wasserheilkunde/N Wasserhosen Wasserhühnern Wasserhuhn/S Wasserhydraulik Wasserkasten/S Wasserkessel/S Wasserkläranlage Wasserklosett/S Wasserköpfe/N Wasserkopf/S Wasserkräften Wasserkraftwerk/EPS Wasserkrug/STp Wasserkühlung Wasserkur Wasserlauf/Sp Wasserleitung/P Wasserleitungsrohr/PS Wasserlilie Wasserlinie/N Wassermängel Wassermangel Wassermann Wassermassen Wassermelone Wassermenge/N Wassermesser/S Wassermühle/N Wassernot Wassernymphe Wasseroberfläche Wasserpflanze/N Wasserpistolen Wasserpocken Wasserpolizei Wasserprobleme Wasserqualität Wasserräder Wasserrad/S Wasserratte Wasserreservoire Wasserressourcen Wasserrohr/EPS Wasserrutschbahnen Wassersäule/N Wasserschäden Wasserschaden/S Wasserscheide/N Wasserschläuche/N Wasserschlange/N Wasserschlauch/S Wasserschloss/T Wasserschutz Wasserschutzpolizei Wasserski/S Wasserskiern Wasserspeicher Wasserspeier/NS Wasserspiegel/NS Wassersport Wasserspülung Wasserstände/N Wasserstand Wasserstandsanzeiger/NS Wasserstein/EPS Wasserstiefel/NS Wasserstoff/S Wasserstoffbomben Wasserstoffsuperoxyd/PS Wasserstrahl/S Wasserstraße/N Wasserstraßenverbindung Wasserstraßenverwaltung Wassersüchten Wassersucht Wassersuppe Wassertemperatur Wassertier/EPS Wassertropfen Wassertürme/N Wasserturm/S Wasseruhren Wasserumlauferhitzer Wasserverband Wasserverbrauch/S Wasserverdrängung/P Wasserverschwendung Wasserversorgung/P Wasservögel Wasservogel/S Wasserwaagen Wasserweg/EPS Wasserwelle/N Wasserwerfer/NS Wasserwerk/PS Wasserzähler/NS Wasserzeichen/S Waterloo/S Watsche/N Watt/EPS Wattebäusche/N Wattebausch/T Wattenmehr Wattepfropf/EPS Wattleistung/P Watvögel Watvogel/S Weber/FNS Weberbaum/STp Weberei/P Weberknecht/EPS Weberschiffchen/S Webfehler/NS Webserver/NS Website/S Webstühle Webstuhl/S Webware Wechsel Wechselagent/P Wechselakzept/S Wechselaussteller/N Wechselbäder/N Wechselbälge/N Wechselbad Wechselbalg/S Wechselbank Wechselbestand Wechselbeziehung/P Wechselbrief/EPS Wechselbürgschaft/P Wechselfälle/N Wechselfieber/N Wechselfolge/N Wechselfrist Wechselgeld/R Wechselgesang/Sp Wechselgespräch/EPS Wechselgetriebe/NS Wechselgläubiger/NS Wechselinhaber/FNS Wechseljahre/N Wechselkassen Wechselkurs/EPT Wechselkursänderung/P Wechselkursentwicklung Wechselkursgewinne Wechselkurssenkung Wechsellast Wechsellastfestigkeit Wechselmakler/S Wechselnehmer/FNS Wechselplatte Wechselprotest/EPS Wechselrecht/EPS Wechselreiter/FNS Wechselschuld/P Wechselspannung/P Wechselspannungsgröße/N Wechselspiel/EPS Wechselsteuer Wechselströme/N Wechselstrom/S Wechselstromanteile Wechselstromwiderstand Wechselstuben Wechselwinkel/N Wechselwirkung/P Wechte/N Weckanruf/PS Wecker/NS Wedel/S Wegbereich/S Wegbereiter/N Wegbereitung Wege/S Wegebau Wegelagerer/NS Wegemessung Wegerecht/EPS Wegerich/EPS Wegfall/Sp Weggang/Sp Weggeber Weggebersignal Wegkontrolle/N Weglänge/N Weglassens Weglassung/P Wegmarkierung Wegmesser Wegmessung/P Wegnahme Wegs Wegschalten Wegschnecke Wegsensoren Wegsignale Wegstrecke/N Wegunterschied Wegweiser/NS Wegwerfgesellschaft Wegwerfpreis/EPT Wegzehrung/P Wehgeschrei/S Wehmut Wehr/G Wehrbeauftragte/N Wehrbereich/PS Wehrbereichskommando Wehrdebatte Wehrdienst/EPT Wehrdienstverweigerer Wehrdörfer Wehrersatzdienst/EPST Wehrlosigkeit Wehrmacht Wehrmachtführer Wehrmachtsangehörige Wehrpass/Tp Wehrpflicht/P Wehrpropaganda Wehrsold/EPS Wehrstammrolle/N Wehrübung/P Wehrwissenschaft Weib/EMT Weibe/MRS Weibervölker/N Weibervolk Weiblichkeit Weibsbild/R Weichbild/RT Weichensteller/NS Weichheit Weichherzigkeit Weichling/EPS Weichmacherspiel Weichsel Weichselkirsche/N Weichteil/EPS Weichtier/EPS Weichwährung/P Weichware Weideländern Weideland/S Weidenbaum/STp Weidenkätzchen/S Weidenkörbe/N Weidenkorb/T Weideplätze/N Weideplatz/T Weidezeit Weidmänner Weidmann/S Weidmannsheil Weidwerk/S Weierstraß Weigerns Weigerung/P Weihbischöfen Weihbischof/S Weiher/N Weihnacht/P Weihnachtsabend/EPS Weihnachtsbaum/STp Weihnachtsbeleuchtung Weihnachtsbescherung Weihnachtsbotschaft Weihnachtsfeiertag Weihnachtsferien Weihnachtsfest/T Weihnachtsgaben Weihnachtsgans Weihnachtsgeschenk/EPS Weihnachtsgratifikation/P Weihnachtsgrüße Weihnachtskarte/N Weihnachtskugeln Weihnachtslied/RST Weihnachtsmänner/N Weihnachtsmann/S Weihnachtsmarkt/STp Weihnachtspaket Weihnachtsreise Weihnachtssaison Weihnachtssonderpreis Weihnachtstag/EPST Weihnachtsverkehr Weihnachtszeit Weihrauch/S Weihrauchwasser/NS Weihwasser Weiler/N Weimar Weimarer Weinbäuerin/F Weinbau/S Weinbauer/S Weinbeere Weinberg/EPS Weinbergschnecke/N Weinblätter Weinblatt/S Weinbrände Weinbrand/S Weinbrennerei Weineinkäufer Weinernte/N Weines Weinessig/EPS Weinexperten Weinfässer/N Weinfass/MT Weinfest Weinflasche Weingärten Weingärtner/N Weingarten/S Weingeist Weingesetz Weingläser/N Weinglas/T Weingut Weinhändler/FNS Weinhandlung/P Weinhaus/Tp Weinjahr/EPST Weinjahrgang/Sp Weinkarte/N Weinkeller/S Weinkelter/N Weinkenner/FNS Weinkrämpfe/N Weinkrampf/S Weinland Weinlese Weinpreise Weinpresse/N Weinrebe/N Weinreisender Weins Weinsäuren Weinschänke Weinschenke Weinstein Weinstöcke/N Weinstock/S Weinstube/N Weintraube/N Weintrester/N Weinwirtschaft Weißbier/EPS Weißblech/EPS Weißbrot/EPS Weißbücher/N Weißbuch/EPS Weißdorn/EPS Weißfisch/EPS Weißgerber/FNS Weißglut Weißgold Weißkäse Weißkohl/EPS Weißmetall/EPS Weißrussland Weißwein/EPS Weißweinsoße Weißzeug/S Weisens Weisheit/P Weisheitszähne/N Weisheitszahn/S Weissagens Weissager/FNS Weissagung/P Weisung/P Weitblick/S Weitenausgabe Weiterarbeit Weiterausbau Weiterausbildung Weiterbeschäftigung Weiterbestand/S Weiterbildens Weiterbildung/P Weiterbildungskurse Weiterdenken Weiterentwicklung/P Weiterflug/S Weiterführens Weiterführung/P Weitergabe Weiterleitung/P Weitermelden Weiterschalten Weiterschauen Weiterverarbeitung Weiterverfolgung Weiterverkauf/Sp Weiterzahlung Weitläufigkeit Weitschweifigkeit Weitsichtigkeit Weitspringer Weitsprünge/N Weitsprung Weizen/S Weizenabkommen Weizenbaum Weizenkleie Weizenmehle/N Weizenpreis/EPT Weizenstroh Wellblech/PS Wellblechgaragentor Wellenamplituden Wellenanteile Wellenbereich/EPS Wellenbewegung/P Wellenbrecher/NS Wellenbündel Wellenfrage Wellenfront Wellenfunktion/P Wellengängen Wellengang/S Wellengeplätscher Wellenlänge/N Wellenlinie/N Wellenreiten Wellenschlag/STp Wellensittich/EPS Wellentäler/N Wellental Wellenteilen Wellentheorie/N Wellenwiderstand Wellenzug/Sp Wellington/S Wellkarton Wellpappen Welpe/N Welt/P Weltall/S Weltalter/NS Weltangebot/S Weltanschauung/P Weltarbeitslosigkeit Weltatlas Weltausstellung/P Weltausstellungsgelände Weltbank Weltbedeutung Weltbestleistung/P Weltbevölkerung Weltbild/RST Weltbörsen Weltbrand Weltbürger/NS Weltbund Weltcupabfahrt Weltenbummler/N Weltereignis/Qq Welterfahrung/P Welterkenntnis/q Welterleben/S Welternährung Welternährungskonferenz Weltfeind Weltfirma Weltförderung Weltformat Weltfriede/N Weltgeltung/P Weltgericht/S Weltgerichtshöfe/N Weltgerichtshof/S Weltgeschehen Weltgeschichte Weltgesundheitsorganisation Weltgewandtheit Weltgewerkschaftsbünden Weltgewerkschaftsbund/T Welthandel/S Welthandelsflotte Welthandelsfreiheit Weltherrschaft/P Welthungerhilfe Weltkarte/N Weltkenntnis/q Weltkirchenrat Weltklasse Weltklassespieler Weltklima/S Weltklugheit Weltkörper/NS Weltkommunismus Weltkongress/EPT Weltkonjunktur Weltkrieg/EPST Weltkugel/N Weltlage/N Weltlauf/Sp Weltliteratur Weltmächte/N Weltmännern Weltmachtpolitik/P Weltmachtstellung Weltmann/S Weltmarken Weltmarkt/STp Weltmarktpreise Weltmarktverhältnis/Qq Weltmeer/EPS Weltmeinung Weltmeister/FNS Weltmeisterelf Weltmeistermannschaft Weltmeisterschaft/P Weltmodell/EPS Weltoffenheit Weltordnung/P Weltpolitik/P Weltpostverein/PS Weltpremiere/N Weltproblematik Weltprobleme Weltproduktion Weltrat/T Weltraum/ST Weltraumfahrer Weltraumfahrt Weltraumfragen Weltraumkongress/EPT Weltraummächte Weltrecht Weltregierung Weltregion/P Weltreich/EPS Weltreise/N Weltrekord/EPS Weltrekordläufer Weltrekordler/FNS Weltrekordmänner Weltrekordmann/S Weltrevolution Weltruf/EPS Weltruhm Weltschau Weltschmerz/T Weltsicherheitsrat/S Weltsprache/N Weltstädte/N Weltstaat Weltstadt Weltstar Weltteil/EPS Weltumsegler/NS Weltuniversität Weltuntergang/S Weltverband Weltvorrat Weltwährung Weltwarenmarkt/T Weltwirtschaft Weltwirtschaftsgipfel Weltwirtschaftskrise Weltwunder/NS Wembleystadion Wendekreis/EPT Wendelpotentiometer Wendeltreppe/N Wendens Wendepunkt/EPS Wendigkeit Wendung/P Wenigkeit Werbeabteilung/P Werbeagentur/P Werbeaktion/P Werbeassistent Werbebeauftragter Werbeberater/FNS Werbebriefe Werbebüro Werbedienst Werbedrucksachen Werbefachfrau Werbefachleute Werbefachmänner/N Werbefachmann/S Werbefeldzug/STp Werbefernsehen/S Werbefilm/EPS Werbegag/S Werbegesellschaften Werbegrafik/PR Werbegrafiker/FNS Werbegraphik/PR Werbegraphiker/FNS Werbekampagne Werbekosten Werbelehrfilm/S Werbeleiter/FNS Werbematerial/S Werbemittel/NS Werbens Werbeoffizier Werbeprämien Werber/N Werberummel Werbeschrift/P Werbesendung/P Werbespot/S Werbesprüche Werbespruch/S Werbetext/PRT Werbetexter/FNS Werbeträger Werbetrommel/N Werbeüberschrift Werbevideo Werbung/P Werbungskosten Werdegang Werder/S Werftarbeiter/FNS Werften Werk/ST Werkanlage Werkbänke/N Werkbank Werkbund Werkhalle/N Werkkunstschule Werkleuten Werkmeister/FNS Werknorm Werkpakete Werksangehörige/NR Werksbibliothek Werkschutz/T Werksgruppe Werkshalle/N Werksleitung Werksnorm Werkspionage/N Werkstätte/N Werkstatt Werkstattangehörige Werkstattbesetzung Werkstatteinrichtung Werkstattleiter Werkstattleitung Werkstattraum/STp Werkstattserie Werkstellen Werkstoff/EPS Werkstoffherstellung Werkstoffkonstante Werkstoffprüfung Werkstück/EPS Werkstudent/FP Werksvertretung Werkswohnung/P Werktag/EPT Werktisch/EPT Werkverkehr Werkvertrag/Sp Werkwohnung/P Werkzeichnung/P Werkzeug/EPS Werkzeugausstattung/P Werkzeugbau Werkzeugkasten Werkzeugkosten Werkzeugkostenanteil Werkzeugmacher/FNS Werkzeugmaschine/N Werkzeugneubau Werkzeugtasche/N Wermut/S Wermutstropfen/S Werner/S Wertangabe/N Wertannahme Wertanteil/EPS Wertarbeit/P Wertbesetzung Wertbrief/EPS Wertebereich/S Wertegemeinschaft Wertegruppe/N Werteliste/N Wertentwicklung Wertepaare/N Wertepakete/N Werterhöhung/P Wertermittlung Wertevorrat Wertgegenstände/N Wertgegenstand Werthaltung Wertigkeit/P Wertkonserven Wertmaßstäbe/N Wertmaßstab/ST Wertmesser/N Wertminderung/P Wertpaket/S Wertpapier/EPS Wertpapieranlage/N Wertpapierbesitzer/F Wertpapierdepot/S Wertpapiergeschäft/EPS Wertpapierkauf/Sp Wertpapiermarkt/STp Wertpapiertyp Wertsache/N Wertschätzens Wertschätzung/P Wertstatus Wertsteigerung/P Wertung/P Werturteil/EPS Wertverlust Wertverringerung/P Wertvorstellung/P Wertwandel/S Wertzeichen/S Wertzoll Wertzuwachs/T Wertzuwachssteuern Wertzuweisung/P Werwölfe/N Werwolf/S Wesen/HS Wesens Wesensaussage/N Wesensmerkmal/EPS Wesenszug/Sp Weser Wesermündung Wespe/N Wespennest/S Wespennester Wespenstich/EPS Wespentaille/N Westafrika Westalliierte/N Westalpen Westberliner Westdeutschland Weste/N Westen/S Westentasche/N Westentaschenformat/EPS Western Westeuropa Westeuropäer/N Westfälin/F Westfale/N Westfrankenreich Westfrankreich Westfront Westgebieten Westgoten Westgottenreich Westhandel Westindienhandel Westjordanland/S Westmark Westminster Westminsterabtei Westsektor/P Westsibiriens Westwall Westwind/EPST Westzone/N Wettbewerb/EPRS Wettbewerber/FNS Wettbewerbsbestimmung/P Wettbewerbserfolge Wettbewerbsfähigkeit Wettbewerbslage Wettbewerbsmaßnahmen Wettbewerbsordnung Wettbewerbsregelung Wettbewerbsverhältnis/Qq Wettbüro Wetteifer Wetter/S Wetteransagen Wetteransager/FNS Wetteraussicht Wetterbedingung/P Wetterbeobachtung/P Wetterbericht/EPS Wetterbesserung Wetterdienst/ET Wetterfahne/N Wetterfröschen Wetterfrosch/T Wetterfühligkeit Wetterhähnen Wetterhahn/S Wetterkarten Wetterkunde/N Wetterlagen Wetterleuchten/S Wettermänteln Wettermantel/S Wettermeldung/P Wetterprophet/P Wettersatellit/P Wetterschächten Wetterschäden Wetterschacht Wetterschaden/S Wetterschiff/EPS Wetterseiten Wetterstation/P Wetterstürze/N Wettersturz/T Wetterverhältnis/Qq Wettervoraussage Wettervorhersage Wetterwarte/N Wetterwechsel/NS Wetterwolke Wettfahrt/P Wettfliegen/S Wettflug/STp Wettgesang/Sp Wettkämpfe/NR Wettkämpfer/FNS Wettkampf/S Wettkampfsiege/N Wettläufer/FNS Wettlauf/Sp Wettrennen/S Wettrüstens Wettrudern/S Wettschwimmen/S Wettsegeln/S Wettspiel/EPS Wettstreit/S Wettturnen Wettzettel/N Wetzstahl/EPS Wetzstein/EPS Wheatcraft/S Whisky/S Whitelist/S Whoopy/S Wichser Wichserei/P Wichte/N Wichtigkeit/G Wichtigtuer/FNS Wichtigtuerei/P Wicke/N Wickel/JS Wickelgamasche Wickelkind/R Wickelns Wickelrichtung Wickelung/P Wicklung/P Widder/NS Widerhaken/S Widerhall/S Widerklage/N Widerlager Widerlegens Widerlegung/P Widerlichkeit/P Widerpart/EPS Widerrede/N Widerruf/S Widersacher/FNS Widerschein/S Widersetzlichkeit/P Widersinn/S Widerspenstigkeit/P Widersprüche/N Widersprüchlichkeit/P Widerspruch/S Widerspruchsfreiheit Widerspruchsgeist/T Widerspruchslosigkeit Widerstände/N Widerstandbewegung Widerstandes Widerstands Widerstandsaustausch Widerstandsbeschaltung/P Widerstandsbewegung/P Widerstandsfähigkeit/P Widerstandsgruppe/N Widerstandskämpfer/FNS Widerstandskennung Widerstandskräfte/N Widerstandskraft Widerstandsmessung Widerstandsnetzwerk Widerstandsorganisation Widerstreit/S Widerwärtigkeit Widerwille/N Widmens Widmung/P Widmungsexemplar/EPS Widrigkeit/P Wiedehopf/EPS Wiederabdrücke/N Wiederabdruck Wiederanfang/Sp Wiederanlage/N Wiederanstellung/P Wiederaufbau/S Wiederauferstehung/P Wiederaufführung Wiederaufnahme/N Wiederaufnahmeverfahren Wiederaufrüstung/P Wiederauftretens Wiederbeginn/S Wiederbelebens Wiederbelebung/P Wiederbelebungsversuch/EPST Wiederbesetzung Wiedereinbau Wiedereinfahren Wiedereinführens Wiedereinführung/P Wiedereingliederns Wiedereingliederung/P Wiedereinlösens Wiedereinlösung/P Wiedereinnahme/N Wiedereinschalten/S Wiedereinschiffung/P Wiedereinstellung/P Wiederergreifung Wiedererkennens Wiedererkennung/P Wiedererlangung Wiedereröffnen/JS Wiedererreichen/S Wiedererstattung/P Wiedergabe Wiedergabegerät/EPS Wiedergabequalität Wiedergeburt/P Wiedergenesung/P Wiedergutmachens Wiedergutmachung/P Wiedergutmachungsgesetz Wiederherstellens Wiederherstellung/P Wiederholbarkeit Wiederholens Wiederholrate/N Wiederholung/P Wiederholungsfall/STp Wiederholvorwahl Wiederholzeit Wiederinbetriebnahme Wiederkauf/Sp Wiederkehr Wiederkünfte/N Wiederkunft Wiederlösen Wiedersehens Wiedersehensfreude/N Wiedertäufer/NS Wiedertaufe/N Wiedervereinigung Wiederverheiratung/P Wiederverkäufer/NS Wiederverkaufspreis/EPT Wiederverkaufswert Wiederverwendbarkeit Wiederverwendens Wiederverwendung/P Wiederverwertung Wiederwahl/P Wiederzulassung/P Wiegenfest/EPT Wiegenkind/RS Wiegenlied/RS Wieland/S Wien Wiener/FS Wienerwald Wiesbaden Wiese Wiesel/NS Wiesenblüte Wiesenländer/N Wiesenlands Wikinger Wikingerschiff Wildbäche/N Wildbäder Wildbach/S Wildbad Wildbahn/P Wildbraten Wildbret/S Wildcard/S Wilddieb/P Wilddieberei/P Wildente/N Wilderers Wildfang/Sp Wildheit/P Wildhüter/N Wildleder/S Wildlederhandschuhe/N Wildling/EPS Wildpark/EPS Wildschäden Wildschaden/S Wildschütze/FN Wildschwein/EPS Wildständen Wildstand/S Wildwasser/NS Wildwechsel/S Wildwestfilm/PS Wildwestmanier Wilhelm/S Wille Willenlosigkeit/P Willensäußerung/P Willensakt/EPS Willensbildung Willenseinstellung Willenserklärung/P Willensfreiheit/P Willenskräfte/N Willenskraft Willensschwäche/N Willensstärke/N Willi/S William/S Willkür Willkürakt/EPS Willkürlichkeit Willy/S Wim/S Wimbledon Wimpel Wimper/N Winchester Wind/JT Windbeutel/NS Windei/RS Windel/N Windeseile Windfahnen Windharfe/N Windhose Windhund/EPS Windjacke Windkanäle/N Windkanal Windkraft Windmesser/NS Windmühle/N Windows Windpocken Windrichtung/P Windröschen/S Windrose/N Windschatten/S Windschutzscheibe/N Windsor/S Windspiel/EPS Windstärke/N Windstoß/Tp Windung/P Windungszahl/P Winfried/S Wink/RS Winkel/NS Winkeladvokat/P Winkelanzeige Winkelbereich Winkelbestimmung Winkelbewegung Winkeleinheit/P Winkelhaken Winkelinformation/P Winkelkette Winkelkoordinaten Winkelmaß/EPT Winkelmesser/N Winkelmessung Winkelposition/P Winkelsensor/P Winkelskala Winkelspiegel/S Winkelstellung Winkelzähler Winkelzug/Sp Winker/NS Winksprüche/N Winkspruch/S Winter/NS Winteraufenthalte/N Winteraufenthalts Winterbaus Winterbetrieb Wintereinbruch Winterfrüchte/N Wintergärten Wintergarten/S Wintergetreide Winterhalbjahr/EPS Winterhilfswerk Winterkälte Winterkartoffeln Winterkörnern Winterkorn Winterkur Winterkurort Winterlager Wintermäntel/N Wintermärchen Wintermantel/S Wintermode Wintermonat/EPS Winterolympiade/N Wintersaat/P Winterschlaf/S Winterschlussverkauf/Sp Wintersemester/NS Wintershall Wintersonne Winterspiele/N Wintersport/EPS Wintersportler Wintersportorte Wintersportplatz Winterthur Wintervorräte/N Wintervorrat/S Winterwochen Winterzeit Winzer/FNS Winzerfamilie Winzling/EPS Wipfel/NS Wirbel/S Wirbelknochen/S Wirbelsäule/N Wirbelsäulenbruch Wirbelsäulenverkrümmung Wirbelstürme/N Wirbelsturm Wirbeltier/EPS Wirbelwind/EPST Wirkens Wirker/FNS Wirklichkeit/P Wirksamkeit Wirkstoff/EPS Wirkung/P Wirkungsbereich/EPS Wirkungsgrad/S Wirkungskräfte/N Wirkungskreis/EPT Wirkungslosigkeit Wirkungsmöglichkeit/P Wirkungsoptimum Wirkungsquantum Wirkungsweise/N Wirrens Wirrköpfe/N Wirrkopf/S Wirrnis/q Wirrsal/EP Wirrung/P Wirrwarr/S Wirsingkohl/EPS Wirt/EFPS Wirtschaft/R Wirtschafter/FNS Wirtschaftler/FNS Wirtschaftlichkeit Wirtschaftsabkommen/S Wirtschaftsakademie Wirtschaftsaktivitäten Wirtschaftsanleihe Wirtschaftsarchiv Wirtschaftsauffassung Wirtschaftsaufschwung Wirtschaftsberater/FNS Wirtschaftsberatung Wirtschaftsbetrieb Wirtschaftsbeziehung/P Wirtschaftsblatt Wirtschaftsblöcke Wirtschaftsbotschaft Wirtschaftsdatenbank Wirtschaftsdebatte Wirtschaftsdelegation Wirtschaftsexperte/N Wirtschaftsförderung Wirtschaftsführung Wirtschaftsfunk Wirtschaftsgebäude/NS Wirtschaftsgelder/N Wirtschaftsgelds Wirtschaftsgemeinschaft/P Wirtschaftsgeographie/N Wirtschaftsgipfel Wirtschaftsgruppen Wirtschaftsgüter Wirtschaftsgut Wirtschaftsgymnasium/S Wirtschaftshaus/Tp Wirtschaftshilfe Wirtschaftsindikatoren Wirtschaftsinformation Wirtschaftsinformationsdienst Wirtschaftsjahr/EPS Wirtschaftsjournalist Wirtschaftskatastrophen Wirtschaftsklima Wirtschaftskommission Wirtschaftskorrespondent Wirtschaftskrach/T Wirtschaftskreisen Wirtschaftskrise/N Wirtschaftskunde Wirtschaftsländer Wirtschaftslage Wirtschaftsleben/S Wirtschaftslenkung Wirtschaftsleute Wirtschaftsliberalismus Wirtschaftsmächte Wirtschaftsmacht Wirtschaftsminister/NS Wirtschaftsministerien Wirtschaftsministerium Wirtschaftsordnung Wirtschaftspläne Wirtschaftsplan Wirtschaftsplanung Wirtschaftspolitik/PR Wirtschaftspraxis Wirtschaftspressedienst Wirtschaftsprogramm Wirtschaftsprozess/EPT Wirtschaftsprüfer/FNS Wirtschaftsprüfungsgesellschaft/P Wirtschaftspublikationen Wirtschaftsquartett Wirtschaftsraum/STp Wirtschaftsrecht Wirtschaftsredakteure Wirtschaftsregion/P Wirtschaftsspionage Wirtschaftsstatistiken Wirtschaftsstruktur Wirtschaftssystem Wirtschaftsteil Wirtschaftstheoretiker Wirtschaftstheorie Wirtschaftsverbände/N Wirtschaftsverband Wirtschaftsverhandlung/P Wirtschaftsverwaltung Wirtschaftsvorgängen Wirtschaftswachstum Wirtschaftswissenschaft/P Wirtschaftswunder/NS Wirtschaftszeitschrift Wirtschaftszentrum Wirtschaftszweig/EPS Wirtschaftszyklus Wirtshaus/Tp Wirtssprache/N Wisch/R Wischer/NS Wischlappen/S Wisent/S Wissbegierde/N Wissens/G Wissensakquisitionskomponente/N Wissensbasen Wissensbasis Wissenschaft/P Wissenschaftler/FNS Wissenschaftsausschuss/Tp Wissenschaftsbetrieb/S Wissenschaftsrat/T Wissensdrang/Sp Wissensdurst/S Wissensform/P Wissensgebiet/EPS Wissenslücke/N Wissensrepräsentationsformalismen Wissensrepräsentationsformalismus Wissensschätze/N Wissensschatz/T Wissensstand Wissenstand Wissenstrieb/EPS Wissensverarbeitung Wissensvermittlung Wissenszweig/EPS Witterns Witterung/P Witterungseinfluss/Tp Witterungsumschlag/STp Witterungsverhältnis/Qq Witwe/NR Witwengeld/R Witwenkleidung Witwenrente/N Witwenstand/S Witwer/NS Witz/EPT Witzblätter Witzblatt/S Witzbold/EPST Witzelei/P Witzigkeit/P Wladimir/S Wladiwostok Wöchnerin/F Wöchnerinnenabteilung/P Wöchnerinnenheim/PS Wölbens Wölbung/P Wölfe/N Wölfin Wörtchen/S Wörter/N Wörterbücher/N Wörterbuch/ST Wörterbucheintrag/STp Wörterbuchverwaltung Wörterliste/N Wörterverzeichnis/Qq Woche/N Wochenausgabe Wochenbett/P Wochenblätter/N Wochenblatt Wochenendausgabe Wochenende/N Wochenendhaus/Tp Wochenendurlaub Wochenfieber/S Wochenhälfte Wochenlöhne Wochenlohn/S Wochenmarkt/STp Wochenmitte Wochenpresse Wochenschau Wochenschluss/Tp Wochenschlusskurs/EPT Wochenschrift Wochenstunde/N Wochentag/EPT Wochenverdienst Wochenverlauf/Sp Wochenwende Woge Wohlbefinden Wohlbehagen/S Wohlergehen/S Wohlfahrt/P Wohlfahrtsämter/N Wohlfahrtsamt/S Wohlfahrtsausschuss/Tp Wohlfahrtseinrichtung/P Wohlfahrtspflegen Wohlfahrtspolitik Wohlfahrtsstaat/S Wohlfahrtswesen/S Wohlgefallen/S Wohlgefühl/EPS Wohlgerüche/N Wohlgeruch/S Wohlgeschmäcker/N Wohlgeschmack/S Wohlhabenheit Wohlklang/Sp Wohllaut/EPS Wohlleben/S Wohlsein/S Wohlstände/N Wohlstand/ST Wohlstandsgesellschaft Wohlstandsverteilung Wohltäter/FNS Wohltätigkeit Wohltätigkeitsbasar/EPS Wohltätigkeitsveranstaltung/P Wohltätigkeitsverein/PS Wohltat/P Wohnanhänger/NS Wohnbau Wohnbauten Wohnbebauung Wohnbezirk/EPS Wohnblöcken Wohnblock/S Wohndauer Wohneinheit/P Wohnens Wohnfläche/N Wohngebäude/NS Wohngebiet/P Wohngegend Wohngeld Wohngelegenheit/P Wohngemeinschaft Wohnhaus/Tp Wohnheim/EPS Wohnküche Wohnort/EPST Wohnquartiere Wohnraum/STp Wohnrecht/EPS Wohnsilo/S Wohnsitz/EPT Wohnsitzstaat Wohnstuben Wohnung/P Wohnungsämtern Wohnungsamt/S Wohnungsbau/S Wohnungsbaugesellschaft Wohnungsbaugesetz Wohnungsbaupolitik Wohnungsbauprogramm Wohnungsbauten Wohnungsbeschaffung Wohnungsbewirtschaftung Wohnungseigentümer Wohnungseigentümergemeinschaft Wohnungsinhaber/FNS Wohnungsmängel/N Wohnungsmangel/S Wohnungsnot Wohnungsproblem/EPS Wohnungsschlüssel/NS Wohnungstausch Wohnungswechsel/S Wohnungswesen Wohnungszeilen Wohnviertel/NS Wohnwagen/S Wohnzimmer/NS Wohnzimmercouch Wohnzimmerteppich Wolf/S Wolfgang/S Wolfram/S Wolfsburg Wolfshund/EPST Wolfshunger/N Wolfsjunge Wolfskuhlen Wolfsmilch Wolga Wolke/N Wolkenbildung Wolkenbrüche/N Wolkenbruch/S Wolkendecke/N Wolkenhimmel/NS Wolkenkratzer/NS Wolkenkuckucksländer/N Wolkenkuckucksland/S Wolkenschicht Wolldecke Wollens Wollfett/EPS Wollgarn/EPS Wollhändler/FNS Wollhandel/N Wollhandschuhen Wollindustrie Wolllappen Wollmarkt/ST Wollschnüren Wollschnur Wollspinnerei Wollstoff/EPS Wollüste/N Wollüstling/EPS Wollust Wollware Wonne/N Wonnemonat/PS Wonnemond/PS Word Workaholic/S Workshop/S Workstation/S Worms Wort/EPST Wortakzent/EPS Wortanfang/ST Wortarmut Wortart Wortbedeutungslehre/N Wortbildung/P Wortbreite/N Wortbrüche/N Wortbruch Wortende/N Wortfolge/N Wortfügung/P Wortfügungslehren Wortführer/FNS Wortfülle Wortfuge/N Wortgefecht/EPS Wortkargheit Wortklasse/N Wortklauber/FNS Wortklauberei/P Wortlaut/EPS Wortliste/N Wortmeldung/P Wortpaare/N Wortschätze/N Wortschatz/T Wortschwall/EPS Wortsinn/EPS Wortspiel/EPS Wortstämme/N Wortstamm/S Wortstellung/P Wortstreit/EPS Wortteil/EPS Wortverdreher/FNS Wortverdrehung/P Wortwahl Wortwechsel/N Wotan Wrack/S Wrackgüter/N Wrackgut/S Wrangler Wrestling Wühlarbeit/P Wühler/FNS Wühlmäuse/N Wühlmaus Wülste/N Wünschelrute/N Wünschelrutengänger/FNS Würdenträger/N Würdigens Würdigkeit Würdigung/P Würdigungspreis/EPT Würfe/N Würfel/S Würfelbecher/NS Würfelspiel/EPS Würfelzucker/NS Würgengel/NS Würger/FNS Würmchen/S Würmer/N Würste/MN Württemberg Würzburg Wüstenei/P Wüstengegend/P Wüstenrot Wüstensand/S Wüstling/EPS Wucher/JRS Wucherer/NS Wucherhandel/N Wuchermiete/N Wucherns Wucherpreisen Wucherzins/EPT Wuchses Wucht Wuchtbewegung Wulst/T Wundbrände/N Wundbrand/S Wunderbild/S Wunderbilder Wunderding/ERS Wunderdoktoren Wunderdoktors Wunderdroge Wundergeschäfte Wunderglaube/N Wunderkind/R Wunderknabe/N Wunderkuren Wunderländer/N Wunderlands Wunderlichkeit/P Wunderplan Wunderrabe Wunderschwimmer Wundertäter/FNS Wundertat Wundertier/EPS Wundertopf Wundervogel Wunderwelt/P Wunderwerk/PS Wunderzeichen Wundfieber/NS Wundmal/EPS Wundsalben Wundstarrkrämpfe/N Wundstarrkrampf/S Wunsch/ET Wunschbild/S Wunschbildern Wunschdenken Wunschkind Wunschkonzert/EPS Wunschliste Wunschmaschine Wunschtermin Wunschtraum/STp Wunschvorstellung/P Wunschzettel/NS Wuppertal/S Wurf/S Wurfgeschoss/EPT Wurfkreis/EPT Wurfpfeil/EPS Wurfscheibe/N Wurfspeer/PS Wurfspieß/EPT Wurftaube Wurmfortsätze/N Wurmfortsatz/T Wurmlöcher/N Wurmloch/S Wurmmittel/N Wurms Wurmstich/EPS Wurst Wurstbude Wursteleien Wurstfabrik Wurstvergiftung Wurstwaren Wurzel Wurzelbehandlung Wurzelgröße/N Wurzelkeim/PS Wurzelknolle Wurzelschössling/ES Wurzelstöcke/N Wurzelstock Wurzelwerk/EPS Wurzelwörter Wurzelwort/EPS Wurzelzeichen/S Wurzelziehen/S Wust/S Wut/X Wutanfall/Sp Wutausbrüche/N Wutausbruch/S XII XIII XIV XML Xanten Xenix Xerox Xerxes Xoff Xon Xylograph/P Yacht/P Yangtse Yen Yeti Yoga Yokohama York Yuppie/S ZDF ZK Zähheit Zähigkeit Zählens Zähler/NS Zählerbaustein Zählerregister/NS Zählerstände/N Zählerstand Zählerveränderung Zählmaschine/N Zählrichtung Zählung/P Zähmens Zähmung/P Zähne/N Zäpfchen/S Zärtlichkeit/P Zäsur/P Zäune/N Zagreb/S Zahlenangabe/N Zahlenaspekt Zahlenbeispiel/EPS Zahlenblock Zahlendarstellung/P Zahleneingabe/N Zahlenfeld Zahlenfolge/N Zahlenform Zahlenlotto/S Zahlenmaterial Zahlenparameter/N Zahlenreihe/N Zahlenschloss/T Zahlenspielerei/P Zahlensystem/EPS Zahlenverhältnis/Qq Zahlenwerk Zahlenwert/EPS Zahlkarte/N Zahltag/EPS Zahlung/P Zahlungsabkommen/S Zahlungsanweisung/P Zahlungsaufforderung/P Zahlungsaufschüben Zahlungsaufschub/T Zahlungsaufstellung Zahlungsauftrag/Tp Zahlungsbedingung/P Zahlungsbefehl/EPS Zahlungsbeleg/EPS Zahlungsbilanz/P Zahlungsbilanzüberschuss/Tp Zahlungsdefizit Zahlungseingang/Sp Zahlungseinstellung Zahlungsempfänger/NS Zahlungserleichterung/P Zahlungsfähigkeit Zahlungsfrist Zahlungskondition/P Zahlungsmittel/NS Zahlungsmodalitäten Zahlungsort/EPST Zahlungspläne/N Zahlungsplan/S Zahlungssystem/S Zahlungstermin/EPS Zahlungsunfähigkeit/P Zahlungsverkehr/S Zahlungsverpflichtung/P Zahlungsversprechen/S Zahlungsverzug/T Zahlungsweise/N Zahlungsziel Zahn/S Zahnärzte/FN Zahnarzt/T Zahnarztbehandlung/P Zahnarztpraxis Zahnarztstuhl Zahnbürsten Zahnersatz Zahnfleisch Zahngold Zahnlücke/N Zahnpaste Zahnpflege/N Zahnprothesen Zahnprothesenträger Zahnräder Zahnrad Zahnradachse/N Zahnradbahn/P Zahnschmelz/T Zahnschmerzen Zahnstange Zahnstocher/N Zahnstocherbeinen Zahnstummeln Zahntechniker/NS Zahnweh Zaire/S Zander Zange/N Zapfenstreich Zapfhähne/N Zapfhahn/S Zar/P Zarathustra/S Zarenzeit Zarewitsch Zarin Zartheit Zauberbann Zauberei/P Zauberer/NS Zauberflöte/N Zauberin/F Zauberlehrling/EPS Zaubers Zauberstäbe/N Zauberstab/S Zaubertränken Zaubertrank/T Zauberwesen/S Zauderer Zaum/EST Zaun/S Zaunkönig Zebra/S Zeche/N Zechenstilllegung/P Zeh/EPS Zehenspitze/N Zehner Zehnerpaar Zehnerpotenz Zehnerwette Zehnjahresplan Zehnkämpfer Zehnkampfmeister Zehntel Zehntelsekunde Zehntklässler/FNS Zeichen/S Zeichenabstände/N Zeichenabstand Zeichenart Zeichenausgabe/N Zeichenblatt Zeichenblöcke/N Zeichenblock/S Zeichenbreite/N Zeichenbrett/RS Zeichenbuffer/S Zeichencode Zeichendarstellung Zeichenebene/N Zeichenerklärung/P Zeichenfläche/N Zeichenfolge/N Zeichengenerierung Zeichengeschwindigkeit/P Zeichengröße/N Zeichenhöhe Zeichenkette/N Zeichenlayout/S Zeichenlehrer/N Zeichenmatrix Zeichenpapier/S Zeichenreihe/N Zeichensätze/N Zeichensatz/T Zeichenschrift Zeichensequenz Zeichensetzen/JS Zeichensprache/N Zeichentisch Zeichentrickfilm/EPS Zeichenunterricht/S Zeichenvorrat Zeichenzahl Zeichnens Zeichner/FNS Zeichnung/P Zeichnungsänderung/P Zeichnungsnummer/N Zeichnungssätze/N Zeichnungssatz Zeichnungsschrank/S Zeichnungsunterlagen Zeichnungsvorlage/N Zeigefinger/NS Zeiger/NS Zeile/N Zeilenabstand Zeilenanfang Zeilenbauweise Zeilenbreite/N Zeilenbuffer/S Zeilendrucker Zeilenende/N Zeilenentprellung Zeilenerläuterung Zeilenformatierung Zeilengrenze/N Zeilengröße/N Zeilenlänge/N Zeilennummer/N Zeilennummerierung Zeilenpositionierung Zeilenrand Zeilenrandabstand Zeilenschübe/N Zeilensensor/S Zeilenstart Zeilensynchronisation Zeilenumbruch Zeilenvorschübe/N Zeilenvorschub/S Zeilenvorschubkontrolle Zeilenvorschubmagnet Zeilenvorschubtaste Zeitablauf/STp Zeitabschnitt/EPS Zeitabstände/N Zeitabstand/T Zeitalter/NS Zeitanalyse/N Zeitangabe/N Zeitauflösung Zeitaufwand/S Zeitausdruck Zeitbasen Zeitbasis Zeitbedarf/S Zeitbereich Zeitbombe/N Zeitdauer Zeitdimension/P Zeitdruck/S Zeiteinblendung Zeiteinheit/P Zeiten/GJ Zeiterfassung Zeitermittlung Zeiterscheinung Zeitersparnis/q Zeitfalle/N Zeitfenster Zeitfrage/N Zeitfunktion/P Zeitgeist/ET Zeitgenosse/N Zeitgeschehen/S Zeitgewinn Zeitgründe/N Zeitintegral/EPS Zeitintervall/EPS Zeitkarte/N Zeitkonstante/N Zeitkontrolle/N Zeitkorrektur Zeitlauf/Sp Zeitlupe/N Zeitlupenaufnahme/N Zeitmangel Zeitmarke Zeitmesseinrichtung Zeitmessen/JS Zeitmesser/NS Zeitnahme/N Zeitnormal Zeitnot Zeitnullpunkt Zeitpläne/N Zeitplan/PS Zeitplanen/JSW Zeitprotokoll Zeitpunkt/EPT Zeitraffer/S Zeitrahmen/S Zeitraster/S Zeitraum/STp Zeitrechnung Zeitscheibe/N Zeitschere/N Zeitschrift/P Zeitschriftenhändler/FNS Zeitschriftenverlag/EPS Zeitskala Zeitspanne/N Zeitsteuerung Zeitüberschreitung Zeitumstellung Zeitungsartikel/NS Zeitungsbeilage/N Zeitungsbericht/P Zeitungsblatt Zeitungsente/N Zeitungshändler/FNS Zeitungshandel Zeitungsinserat/EPS Zeitungsjunge/N Zeitungskiosk/PS Zeitungskonzern Zeitungslesern Zeitungsmeldung/P Zeitungsnotiz/P Zeitungspapier/EPS Zeitungsredakteur/EPS Zeitungsschreiber/FNS Zeitungsseiten Zeitungssprachen Zeitungsständen Zeitungsstil/PS Zeitungsverkäufer/FNS Zeitungsverleger/NS Zeitungswesen/S Zeitungswissenschaft/P Zeitunsicherheit/P Zeitverhalten/S Zeitverlust/EPT Zeitverschiebung Zeitvertreib/S Zeitverzögerung Zeitverzug/S Zeitvorsprung Zeitwert Zeitwörter/N Zeitwort/T Zeitzeichen/S Zeitzone/N Zeitzünder/N Zelle/N Zellfaser Zellformen Zellforschung Zellkern/EPS Zelllehre Zellophan/S Zellophanhülle Zellstoff/EPT Zellstofffabrik Zellstoffunternehmen Zellstoffwerke Zellteilung Zellulitis Zelluloid/S Zellulose/N Zellwände/N Zellwachstum Zellwatte/N Zellwolle Zelt/T Zeltbahn/P Zeltdächer Zeltdach/T Zeltlager/N Zeltpflöcke/N Zeltpflock Zeltplätze/N Zeltplane/N Zeltplatz/T Zeltstange/N Zement/EPS Zementierens Zementierung/P Zementpreise Zementwerke Zensor/P Zensur/P Zentigramm Zentimeter/NS Zentner/NS Zentralafrikanische Zentralamt Zentralaufgabe/N Zentralbänker Zentralbank/P Zentralbankscheck/S Zentralbüro Zentralbus/Qq Zentralbusverdrahtung Zentralcomputer Zentraleinheit/P Zentralenankopplung Zentralfriedhof Zentralfunktion/P Zentralgerät Zentralheizung Zentralinstitut Zentralisation Zentralisierens Zentralisierung/P Zentralismus Zentralkasse/N Zentralkomitee Zentralnervensystem/S Zentralparameter Zentralpunkt/EPST Zentralrechner/NS Zentralredaktion/P Zentralregierung Zentralreich Zentralschmierung Zentralsoftware Zentralstelle/N Zentralsteuereinheit/P Zentralsteuergerät/EPST Zentralsteuern/JS Zentralsteuerrechner/S Zentralteil Zentralvermittlung Zentralverwaltung Zentralwirtschaft Zentren Zentrifugalkräfte/N Zentrifugalkraft Zentrifuge/N Zentrigramm/EPS Zentriwinkeln Zentrum/S Zentrumspartei Zeppelin Zepter/NS Zeremonie/N Zeremoniells Zeremonienmeister/NS Zerfälle/N Zerfalls Zerfallserscheinung/P Zerfallsprodukt/EPST Zerfallsprozess/EPT Zerfallszeit Zerfasern/JS Zerfleischens Zerfleischung/P Zerlegens Zerlegung/P Zermürbens Zermürbung/P Zermürbungskrieg/EPS Zerrbild/RT Zerreißens Zerreißfestigkeit Zerreißprobe/N Zerreißung/P Zerrens Zerrissenheit Zerrspiegel/N Zerrüttens Zerrüttung/P Zerrung/P Zerschlagens Zerschlagung/P Zerschmetterns Zerschmetterung/P Zerschneidens Zerschneidung/P Zersetzens Zersetzung/P Zersetzungsprozess/EPT Zersiedeln/JS Zersplitterns Zersplitterung/P Zerstäuber Zerstörens Zerstörer/NS Zerstörung/P Zerstörungstrieb/EPT Zerstörungswut Zerstreuens Zerstreutheit Zerstreuung/P Zerstückelns Zerstückelung/P Zerstücklung/P Zerteilens Zerteilung/P Zertifikat/EPST Zertifizierens Zertifizierung/P Zertifizierungsstelle/N Zertretens Zertretung/P Zertrümmerns Zertrümmerung/P Zervelatwürste/N Zerwürfnis/Qq Zession/P Zessionar/EPS Zetergeschrei Zettelchen/S Zettelkasten/S Zettelkatalog/EPS Zettels Zeugenaussage/N Zeugenbänke/N Zeugeneid/EPST Zeugenliste Zeugenschaft Zeugenvereidigung Zeugenverhör/EPS Zeugenvernehmung/P Zeugin/F Zeugnis/Qq Zeugniskopie/N Zeugs Zeugung/P Zeugungsorgane/N Zeus Zichorie/N Zicke/N Zicklein/S Zickzack Zickzackkurs/EPT Zickzacklinie Ziege/N Ziegel/NS Ziegelbrennereien Ziegeldächer/N Ziegeldach/T Ziegelei Ziegelöfen Ziegelofen/S Ziegelstein/EPS Ziegenbärte/N Ziegenbart/T Ziegenböcke Ziegenbock Ziegenfell/EPS Ziegenhirt/P Ziegenkäse Ziegenleder/S Ziegenmilch Ziegenpeter/S Ziehbänke/N Ziehbrunnen/S Ziehens Ziehharmonika/S Ziehharmonikasocken Ziehkind/T Ziehkinder Ziehung/P Ziehvater Zielbänder Zielband/T Zielcode/S Zieles Zielfernrohr/EPS Zielflughafen Zielgerade/N Zielgruppe/N Zielhöhe Zielkamera/S Zielkurve/N Ziellinie/N Zielmaschine/N Zielmaschinensprache/N Zielort Zielperson Zielprogramm/EPS Zielpunkt/EPS Zielrichter/NS Zielrichtung Ziels Zielscheibe/N Zielsetzen/JS Zielsprache/N Zielstrebigkeit Zielvorgabe/N Zielvorstellung/P Zielwert/EPST Ziemer/NS Zierde/N Zierdeckchen/S Ziererei/P Zierfisch/ET Ziergärten Ziergarten Zierlichkeit Zierpflanze/N Zierrat/EPT Ziffer/N Zifferblätter/N Zifferblatt/S Ziffernanzeige/N Ziffernfolge/N Zigarette/N Zigarettenautomat/P Zigarettenetui/S Zigarettenindustrie Zigarettenladen Zigarettenmarke Zigarettenschachtel/N Zigarettenspitzen Zigarettenstummel/N Zigarettenverkauf/Sp Zigarillo/S Zigarillolänge Zigarre/N Zigarrenabschneider/N Zigarrenhändler/FNS Zigarrenkiste/N Zigarrenläden Zigarrenladen Zigarrenspitze/N Zigarrenstummel/S Zigeuner/FNS Zigeunerleben/S Zigeunerrock Zikade/N Zille/N Zimbabwe Zimbel/N Zimmerantenne/N Zimmereinrichtung Zimmerer/NS Zimmerflucht/P Zimmergenossen Zimmerhandwerk/S Zimmerlautstärke Zimmerleute/N Zimmermädchen/S Zimmermann/S Zimmerpflanzen Zimmerpreis/EPT Zimmers Zimmertemperatur/P Zimmertheater/N Zimmervermittlung/P Zimperlichkeit Zimt/S Zimtstern Zink/EPST Zinkblech/EPS Zinkchlorid Zinkpreise Zinn/EPST Zinngeschirr/S Zinnkrug/STp Zinnober/S Zinnpreise Zinnsoldat Zins/EPT Zinsanhebung/P Zinsaufwendung/P Zinsbelastung/P Zinsdifferenz Zinsdifferenzgeschäfte Zinsentwicklung Zinserhöhung Zinsertrag/STp Zinsesverzinsung Zinseszins/ET Zinsfuß/Tp Zinsgefüge/NS Zinsjäger Zinskorrekturen Zinsmarkt/Tp Zinsniveau Zinspapiere/N Zinspolitik Zinsrechnung/P Zinssätze/N Zinssatz/T Zinsschein/EPST Zinsschraube Zinssenkung/P Zinsspanne Zinssteigerung/P Zinsunterschied/EPST Zinsveränderung/P Zinsverhältnis/Qq Zinsverlust Zinsverteurung Zinszahlung/P Zinszuschuss/Tp Zion/S Zionismus Zionist/FP Zionistenkongress/EPT Zionistenverband Zipfel/N Zipfelmütze/N Zirkel/S Zirkelschluss/Tp Zirkular/EPS Zirkulation/P Zirkumflex/EP Zirkus/q Zirkusdirektor Zirkusprogramm Zirkusreiter/FNS Zischlaut/EPT Ziselierarbeit Zisterne/N Zitadelle/N Zitat/EPS Zither/N Zitierens Zitierung/P Zitronat/S Zitrone/N Zitronenbaum/STp Zitronenlimonade/N Zitronenpressen Zitronensäure/N Zitronensaft/S Zitronenschale/N Zitronenwasser/S Zitrusfrüchte Zitteraal Zitterpappeln Zitze/N Zivilbevölkerung/P Zivilcourage Zivildienst Zivilehen Zivilgericht/EPS Zivilgouverneur Zivilisation/P Zivilist/P Zivilkammer Zivilkläger Zivilkleidung Zivilluftfahrt Zivilprogramm Zivilprozess/EPT Zivilprozessordnung/P Zivilschutz Zivilschutzkorps Zivilverwaltung Zögerns Zögerung/P Zögling/EPS Zölibat/T Zölle/N Zöllner/NS Zöpfe/N Zobel/NS Zobelfell/EPS Zobelpelz/EPT Zofe/N Zoll Zollämtern Zollabfertigung/P Zollamt Zollbeamte/NR Zollbehörden Zollbelastung Zollbestimmung/P Zollerklärung/P Zollfahndung Zollgebühren Zollgesetz Zollgrenze Zollgründen Zollhäuschen/S Zollhaus/Tp Zollhinterziehung/P Zollkonferenz Zollkontrolle/N Zollkrieg/EPS Zollmann Zollplombe/N Zollpolitik Zollreform Zollrevision/P Zollschein/EPS Zollschranke/N Zollsenkung Zollspeichern Zollspeichers Zollstöcke Zollstock/S Zolltarif/PS Zollunion Zollverein Zollverschluss/Tp Zollverwaltung Zollvorschriften Zollwache Zollwesen Zombie/S Zone/N Zonenbewohner Zonenflüchtlinge Zonengrenze/N Zonenrandgebiet/EPS Zonenregierung Zonenverband Zoo/S Zoologe/N Zoologie Zooverwaltung Zopf/ST Zorn/ST Zorro/S Zote/N Zotenreißer/N Züchtens Züchter/FNS Züchtigens Züchtigkeit Züchtigung/P Züchtung/P Zügellosigkeit/P Zügelns Zügels Zügelung/P Züglung/P Zündanlage Zündens Zünder/NS Zündhölzer/N Zündholz/T Zündhütchen/S Zündkabel/S Zündkapseln Zündkerze/N Zündmagnet/PS Zündpunkt/EPST Zündsätze Zündsatz/T Zündschloss/T Zündschlüssel/S Zündschnüre/N Zündschnur Zündstein/EPS Zündstoff/EPS Zündung/P Zündungsmechanismus Zünglein Zürich/S Zubehör/EPS Zubehörteil/EPS Zuber/NS Zubereitens Zubereitung/P Zubereitungsänderung/P Zubereitungsart/P Zubringerdienst Zubringerlinie/N Zubringerstraße/N Zubuße/N Zucchini/S Zucht/P Zuchtbüchern Zuchtbuch/T Zuchtbullen Zuchtgenossenschaft Zuchthaus/Tp Zuchthausstrafe Zuchthengst/EPST Zuchthenne/N Zuchtkristall Zuchtlosigkeit/P Zuchtmeister/N Zuchtmittel/NS Zuchtperlen Zuchtrute/N Zuchtsäuen Zuchtsau Zuchtschaf/EPST Zuchtstier/PS Zuchtstute Zuchtvieh/S Zuchtwahl Zuckens Zucker/S Zuckerbäcker/S Zuckerbäckerei/P Zuckerbrot Zuckerbrotmethode Zuckerbüchse/N Zuckerdose/N Zuckererbsen Zuckerexport Zuckerfabrik Zuckergehalt/S Zuckerguss/Tp Zuckerhüte/N Zuckerhut/T Zuckerkrankheit Zuckermarkt/ST Zuckermelonen Zuckerplätzchen/S Zuckerrohr/S Zuckerrüben Zuckersäften Zuckersaft Zuckerschale/N Zuckersirup Zuckerware/N Zuckerwasser Zuckerwatte Zuckerwirtschaft Zuckerzange Zuckung/P Zudrang Zudringlichkeit/P Zueignung Zuerkennens Zuerkennung/P Zufälligkeit/P Zufahrt/P Zufahrtsstraße/N Zufahrtswege/N Zufall/Sp Zufallsauswahl Zufallsbekanntschaft Zufallsdaten Zufallsgenerator/PS Zufallsnummerierung Zufallsprinzip Zufallszahl/P Zuflucht/P Zufluchtsort/EPST Zufluss/Tp Zufriedenheit Zufriedenstellen/JS Zuführens Zuführung/P Zuführungsdrähte/N Zuführungsdraht/T Zufuhr/P Zug/ETp Zugänglichkeit Zugabe Zugabeverbot Zugabfahrt Zugang/STp Zugangsschnittstelle Zugangstechnik/P Zugartikel/S Zugbrücke/N Zugbrunnen/S Zugehörigkeit/P Zugentlastung Zugeständnis/Qq Zugfestigkeit Zugführer/NS Zugkette Zugkettenlänge Zugkräfte/N Zugkraft Zugluft Zugmaschine/N Zugmittel/N Zugnummer/N Zugpersonal Zugpferd/EPST Zugpflaster/S Zugriff/EPS Zugriffsgeschwindigkeit Zugriffsrechte/N Zugriffszeit/P Zugschalter/N Zugseil/EPS Zugspannung Zugspitze Zugstück/ET Zugtier/ET Zugunglück/EPS Zugverbindung/P Zugverkehr/S Zugvieh/S Zugvögel/N Zugvogel Zugwind/EPST Zuhälter/NS Zuhälterei Zuhilfenahme Zuhörer/FNS Zuhörerraum/STp Zuhörerschaft Zukauf/Sp Zukaufteil/EPS Zukunft Zukunftsangst Zukunftsaussicht/P Zukunftsbetrachtung/P Zukunftschance/N Zukunftsdenken/S Zukunftserwartung Zukunftsforscher/NS Zukunftsforschung Zukunftsmusik Zukunftsperspektive/N Zukunftspläne/N Zukunftsplanung Zukunftsprognostik Zukunftsroman/EPS Zukunftsverantwortung Zukunftsvision/P Zulänglichkeit Zulässigkeit Zulässigkeitsgrenze/N Zulässigkeitskontrolle/N Zulage/N Zulassens Zulassfähigkeit Zulassprobleme Zulassung/P Zulassungsbescheinigung/P Zulassungsbeschränkung/P Zulassungsbestimmung/P Zulassungsnummer/N Zulassungspapieren Zulassungsstelle Zulassungsunterlagen Zulassungsvorschriften Zulassunterlagen Zulauf/Sp Zuleitens Zuleitung/P Zuleitungsdrähte Zuleitungsdraht/T Zuleitungsrohr/EPT Zuleitungsventil/EPS Zulieferbetriebe Zulieferer/N Zuliefern/JS Zulieferteil Zulieferzeit/P Zumutens Zumutung/P Zunahme/N Zuname/N Zunamen/S Zunder/N Zuneigens Zuneigung/P Zunft Zunfthaus Zunftwesen/S Zunge/N Zungenbrecher Zungenfertigkeit Zungenkuss/Tp Zungenlaut/ET Zungenschlag/STp Zungenspitze Zuordnens Zuordnung/P Zupfinstrument/EPST Zurechnens Zurechnung/P Zurechnungsfähigkeit Zurechtweisens Zurechtweisung/P Zurschaustellung/P Zurückbehaltens Zurückbehaltung/P Zurückforderns Zurückforderung/P Zurückführens Zurückführung/P Zurückgabe Zurückgezogenheit Zurückhaltens Zurückhaltung/P Zurücknahme Zurücksetzens Zurücksetzung/P Zurückstellens Zurückstellung/P Zurückweisens Zurückweisung/P Zurückzahlens Zurückzahlung/P Zurückziehens Zurückziehung/P Zurüstung/P Zuruf/S Zurverfügungstellen/JS Zusätze/N Zusammenarbeit Zusammenarbeitsvertrag/Tp Zusammenballens Zusammenballung/P Zusammenbau Zusammenbauebene Zusammenbrüche/N Zusammenbruch/S Zusammenfassens Zusammenfassung/P Zusammenfluss/Tp Zusammengehörigkeit Zusammengehörigkeitsgefühl/S Zusammenhalt/S Zusammenhang/ST Zusammenklang/Sp Zusammenkünfte/N Zusammenkunft Zusammenlebens Zusammenlegens Zusammenlegung/P Zusammenprall/S Zusammenrottens Zusammenrottung/P Zusammenschluss/Tp Zusammensein Zusammensetzens Zusammensetzung/P Zusammenspiel/S Zusammenstellens Zusammenstellung/P Zusammenstoß/Tp Zusammentritt/EPS Zusammenwirkens Zusammenziehens Zusammenziehung/P Zusatz/T Zusatzabkommen/S Zusatzantrag/STp Zusatzausbildung/P Zusatzausrüstung Zusatzbedarf/S Zusatzdividende Zusatzeinrichtung/P Zusatzeinstellung/P Zusatzfeld Zusatzfrage/N Zusatzfunktion/P Zusatzgehäuse/N Zusatzgerät/EPT Zusatzgewinn/EPS Zusatzhardware Zusatzinformation/P Zusatzkenntnisse/N Zusatzleistung Zusatzpaket Zusatzplatine Zusatzschilder Zusatzschnittstelle/N Zusatzsystem/EPS Zusatzteil/EPS Zusatzterm/EPS Zusatzversicherung/P Zuschauer/FNS Zuschauerraum/STp Zuschauertribüne Zuschauerzahlen Zuschlag/STp Zuschlagsgebühr/P Zuschlagskarten Zuschlagsporto/S Zuschneider/FNS Zuschnitt/EPT Zuschrift/P Zuschuss/Tp Zuschussbetrieb/EPS Zuse Zusendens Zusendung/P Zusicherns Zusicherung/P Zuspätkommen/D Zusprüche/N Zuspruch/T Zustände/N Zuständigkeit/P Zuständigkeitsbereich/EPS Zustandes Zustands Zustandsänderung/P Zustandsabfrage/N Zustandsanalyse Zustandsanzeige/N Zustandsbericht/EPS Zustandsbit/S Zustandsdiagramm/S Zustandsmeldung/P Zustandsmenge/N Zustandsnr Zustandsnr. Zustandsnummer Zustandspfad/EPS Zustandsprotokoll/EPS Zustandsprozessor/P Zustandsraum/STp Zustandsspeicher Zustandstabelle/N Zustandstransformation/P Zustandsübergang/Sp Zustandsverknüpfung/P Zustellbezirk Zustellens Zusteller/NS Zustellgebühr Zustellhöhe Zustellung/P Zustellungsgebühr Zustimmens Zustimmung/P Zustrom/ST Zutat/P Zuteilens Zuteilung/P Zuträger/FNS Zuträgerei/P Zuträglichkeit/P Zutraulichkeit/P Zutritt/ST Zutun/S Zuverlässigkeit/P Zuverlässigkeitsgrad Zuverlässigkeitsprüfung/P Zuversicht Zuversichtlichkeit Zuversichtsindikator/P Zuwächse/N Zuwachs/T Zuwachsrate/N Zuwanderns Zuwanderung/P Zuweisens Zuweisung/P Zuwendens Zuwendung/P Zuwiderhandlung Zuzahlens Zuzahlung/P Zuzug/STp Zuzugsgenehmigung/P Zwanges Zwanglosigkeit Zwangs Zwangsanleihe/N Zwangsarbeit/PR Zwangsarbeiter/FNS Zwangsbedingung/P Zwangsbeschlagnahmung Zwangsenteignung/P Zwangsernährung/P Zwangshandlung/P Zwangsherrschaft/P Zwangsidee/N Zwangsinnovation/P Zwangsjacke/N Zwangskonkurs/EPT Zwangslage/N Zwangsmaßnahme/N Zwangsmittel/NS Zwangsneurose/N Zwangspause/N Zwangsvereinigung Zwangsverkauf/STp Zwangsversteigerung Zwangsverwalter/NS Zwangsverwaltung/P Zwangsvollstreckung/P Zwangsvorstellung/P Zwangswirtschaft/P Zweck/EPT Zweckbau/T Zweckbauten Zwecklosigkeit/P Zweckmäßigkeit Zweckpessimismus Zweckverbände Zweckverband/T Zweckverhältnis/Qq Zweibeiner Zweibettzimmer/N Zweidecker/NS Zweideutigkeit/P Zweidrahtsensoren Zweidrittelmehrheit/P Zweierbob/S Zweiergespräch Zweierpotenz Zweierzimmer/N Zweifamilienhaus/Tp Zweifelsfall/STp Zweifelsfrage/N Zweifler/FNS Zweig/T Zweigbahn Zweigbetrieb Zweigespann/EPS Zweiggeschäft/EPST Zweiglein Zweigstelle/N Zweigstellenleiter Zweihufer/NS Zweijahresvertrag/STp Zweikämpfe/N Zweikampf/ST Zweimaster/NS Zweiparteiensystem/EPS Zweiräder/N Zweirad/T Zweisitzer/NS Zweisprachigkeit Zweitakter Zweitaktmotor/PS Zweitauflage/N Zweiteilung Zweithäute Zweithaussteuer Zweitklässler/FNS Zweitpass/Tp Zweitschrift/P Zweitwagen Zweiunddreißigstelnote/N Zweivierteltakt/EPST Zweizeiler/NS Zweizonenverwaltung Zwerchfell/EPST Zwerg/EFPT Zwergkaninchen Zwergkiefer/N Zwergmenschen Zwergschule/N Zwergstaat/EPST Zwergterrier Zwetschge/N Zwickau/S Zwickel Zwicker/S Zwickmühle/N Zwickzangen Zwieback/S Zwiebel/N Zwiebelgewächs/EPT Zwiebelschale/N Zwiegespräch/EPS Zwielicht/RST Zwielichtzone/N Zwiespälte/N Zwiespalt/ST Zwietracht Zwilling/EPS Zwillingsbrüder/N Zwillingsbruder/S Zwillingsforschung Zwillingspaar/EPS Zwillingsschwester/N Zwillingswaffe Zwinger/NS Zwingherren Zwingli/S Zwirn/ST Zwirnerei Zwischenablage/N Zwischenakt/EPST Zwischenaufenthalt/S Zwischenbemerkung/P Zwischenbericht/EPS Zwischenbescheid/ET Zwischenbilanz/P Zwischendecke/NS Zwischending/EPST Zwischenergebnis/Qq Zwischenerzeugnis/Qq Zwischenfall/Sp Zwischenfrage/N Zwischengericht/T Zwischenhändler/FNS Zwischenhandel/S Zwischenhandlung Zwischenhirn/S Zwischenhoch/S Zwischenkredit/EPST Zwischenlandung/P Zwischenlösung/P Zwischenpause/N Zwischenprodukte Zwischenprüfung/P Zwischenpuffer Zwischenpunkt Zwischenraum/STp Zwischenrichtung/P Zwischenruf/EPRST Zwischenrufer/FNS Zwischenrunden Zwischensätze/N Zwischensatz/T Zwischenschaltung Zwischenschritt/EPS Zwischenspeicher Zwischenspeicherung Zwischenspiel/ET Zwischensprache/N Zwischenstadien Zwischenstadium Zwischenstand Zwischenstation/P Zwischenstecker/NS Zwischenstöcke/N Zwischenstock/T Zwischenstück/EPST Zwischenstufe/N Zwischentief/S Zwischenträger/FNS Zwischenurteil/EPS Zwischenverkauf/Sp Zwischenvermieter Zwischenvorhang/Tp Zwischenwände/N Zwischenwand Zwischenzeit/P Zwischenziel/EPS Zwischenzustände/N Zwist/EPT Zwistigkeit/P Zwitter/N Zwölfeck/EPST Zwölffingerdarm/ST Zwölftklässler/FNS Zwölftonmusik Zyanid Zyankali Zyklen Zyklenzahl Zykloide/N Zyklon/S Zyklop/P Zyklotron/EPS Zyklus Zykluskette Zykluszeit Zylinder/NS Zylinderachse Zylinderausbau Zylinderauswahl Zylinderboden/S Zylinderbohrung Zylinderdaten Zylinderdurchmesser Zylindereinbaus Zylindergruppen Zylinderhub Zylinderhubmessung/P Zylinderköpfe/N Zylinderkopf Zylinderkopfschraube Zylinderlängen Zylindermasse Zylinderoberfläche Zylinderquerschnitt Zylinderwand Zyniker/NS Zynismus Zypern Zypresse/N Zyste/N ächten/DIXY ächzen/DIXY ächzt/EGPX äffen/IXY ägäisch/AEPT ägyptisch/AEPT ähneln/DIXY ähnelt/EGPX ähnlich/ACEPTU älter/AEPT älteste/ANRS ältlich/AEPT ändern/BDIVXY ändert/EGPVX änderte/GNVZ änderten/GIVWX ängstigen/DIVXY ängstigt/EGPVX ängstigte/GNVZ ängstigten/GIVWX ängstlich/ACEPT äquidistant/AEPT äquifunktional/AEPT äquivalent/AEPT ärger/AELNPTZ ärgerlich/ACEPT ärgerlicherweise ärgern/DIWXY ärgste/ANRS ärmer/AEPT ärmlich/ACEPT ärmste/ANRS ärztlich/AEPT äße/NZ äsen/DIXY ästhetisch/AEPTU ätherisch/AEPT äthiopisch/AEPT ätsch ätzen/DIXY äugen/DIXY äußere/ANRS äußeren/IXY äußerlich/AEPT äußern/DIVXY äußerst/AEPT äußert/EGPVX äußerte/GNVZ äußerten/GIVWX äxteschwingend/AEPT ab abänderlich/AEPTU abändern/DIXY abarbeiten/DIXY abartig/AEPT abband/PZ abbat/PZ abbauen/BDIXY abbeißen/DI abbekommen/IX abberufen/ADEIPTX abbestellen/DIOXY abbetteln/DIXY abbezahlen/BDIOXY abbiegen/DIX abbilden/DIXY abbinden/DIX abbitte/NZ abblättern/DIXY abblasen/DI abblenden/DIXY abblitzen/DIXY abblocken/DIXY abbog/PZ abbrach/PZ abbrachen/WXY abbrannte/NZ abbrausen/DIXY abbrechen/DI abbremsen/DIXY abbrennen/BDIX abbricht/X abbringen/DIX abbröckeln/DIXY abbruchreif/AEPT abbürsten/DIXY abbuchen/DIXY abdampfen/DIXY abdanken/DIXY abdecken/BDIXY abdichten/BDIXY abdienen/DIXY abdrehen/DIXY abdriften/DIXY abdrosseln/DIXY abdrücken/DIXY abdrucken/DIXY abdunkeln/BDIXY abebben/DIXY abelsch/AEPT abendfüllend/AEPT abendländisch/AEPT abendlich/AEPT abendrot/AEPT abends abenteuerlich/ACEPT abenteuerreich/AEPT aber abergläubisch/AEPT aberhundert/E aberkannt/AEPTZ aberkennen/DIX abermalig/AEPT abermals abernten/DIXY abertausend/E abessen/DI abessinisch/AEPT abfährt/X abfällig/ACEPT abfällt/X abfängt/X abfärben/DIXY abfackeln/DIXY abfahren/DI abfallen/DI abfangen/DI abfassen/DIXY abfaulen/DIXY abfedern/BDIXY abfeilen/DIXY abfertigen/DIXY abfeuern/DIXY abfinde/NZ abfing/EPZ abflachen/DIXY abflauen/DIXY abfliegen/DIX abfließen/DIX abflog/PZ abfloss/PZ abfordern/DIXY abfotografieren/DIOXY abfräsen/DIXY abfragen/BDIXY abfraß/PZ abfressen/DI abfrisst abführen/DIXY abfüllen/DIXY abfüttern/DIXY abfuhr/PZ abgab/PZ abgeändert/AEPT abgearbeitet/AEPT abgebaut/AEPT abgeben/BDI abgebettelt/AEPT abgebildet/AEPT abgebissen/AEPT abgeblättert/AEPT abgeblasen/AEPT abgeblendet/AEPT abgeblitzt/AEPT abgebogen/AEPT abgebracht/AEPT abgebrannt/AEPT abgebraust/AEPT abgebremst/AEPT abgebröckelt/AEPT abgebrochen/AEPT abgebrüht/ACEPT abgebürstet/AEPT abgebucht/AEPT abgebunden/AEPT abgedankt/AEPT abgedeckt/AEPT abgedichtet/AEPT abgedient/AEPT abgedrängt/AEPT abgedreht/AEPT abgedriftet/AEPT abgedroschen/AEPT abgedrosselt/AEPT abgedrückt/AEPT abgedruckt/AEPT abgedunkelt/AEPT abgeerntet/AEPT abgefärbt/AEPT abgefahren/AEPT abgefallen/AEPT abgefangen/AEPT abgefasst/AEPT abgefault/AEPT abgefeilt/AEPT abgefeimt/AEPT abgefertigt/AEPT abgefeuert/AEPT abgeflacht/AEPT abgeflaut/AEPT abgeflogen/AEPT abgeflossen/AEPT abgefordert/AEPT abgefragt/AEPT abgefressen/AEPT abgeführt/AEPT abgefüllt/AEPT abgefüttert/AEPT abgefunden/AEPT abgegangen/AEPT abgegeben/AEPT abgeglitten/AEPT abgegolten/AEPT abgegossen/AEPT abgegraben/AEPT abgegrast/AEPT abgegrenzt/AEPT abgegriffen/AEPT abgehängt/AEPT abgehärmt/AEPT abgehärtet/ACEPT abgehackt/AEPT abgehakt/AEPT abgehalftert/AEPT abgehalten/AEPT abgehandelt/AEPT abgehangen/AEPT abgehauen/AEPT abgehebelt/AEPT abgeheilt/AEPT abgehen/DIX abgehetzt/AEPT abgehört/AEPT abgehobelt/AEPT abgehoben/AEPT abgeholt/AEPT abgeholzt/AEPT abgehorcht/AEPT abgejagt/AEPT abgekämpft/AEPT abgekartet/AEPT abgekauft/AEPT abgekehrt/AEPT abgeklärt/AEPT abgeklappert/AEPT abgeklemmt/AEPT abgeklopft/AEPT abgeklungen/AEPT abgeknabbert/AEPT abgeknallt/AEPT abgeknickt/AEPT abgekniffen/AEPT abgekocht/ACEPT abgekommen/AEPT abgekoppelt/AEPT abgekratzt/AEPT abgekriegt/AEPT abgekühlt/AEPT abgekürzt/AEPT abgeküsst/AEPT abgeladen/AEPT abgelagert/AEPT abgelassen/AEPT abgelaufen/AEPT abgeleckt/AEPT abgelegen/ACEOPT abgelegt/AEPT abgelehnt/AEPT abgeleistet/AEPT abgeleitet/AEPT abgelenkt/AEPT abgelesen/AEPT abgeleugnet/AEPT abgeliefert/AEPT abgelöscht/AEPT abgelöst/AEPT abgemäht/AEPT abgemacht/AEPT abgemagert/AEPT abgemahnt/AEPT abgemeldet/AEPT abgemessen/AEPT abgemildert/AEPT abgemischt/AEPT abgemüht/AEPT abgemustert/AEPT abgenabelt/AEPT abgenagt/AEPT abgeneigt/AEPT abgenötigt/AEPT abgenommen/AEPT abgenützt/AEPT abgenutzt/AEPT abgeordnet/AEPT abgepasst/AEPT abgepfiffen/AEPT abgepflückt/AEPT abgeplagt/AEPT abgeprallt/AEPT abgepresst/AEPT abgeputzt/AEPT abgequält/AEPT abgequetscht/AEPT abgeräumt/AEPT abgerackert/AEPT abgeraten/AEPT abgerechnet/AEPT abgereist/AEPT abgerichtet/AEPT abgerieben/AEPT abgeriegelt/AEPT abgerissen/AEPT abgerollt/AEPT abgerückt/AEPT abgerüstet/AEPT abgerufen/AEPT abgerundet/AEPT abgerungen/AEPT abgerutscht/AEPT abgesägt/AEPT abgesackt/AEPT abgesagt/AEPT abgesahnt/AEPT abgesandt/AEPT abgesaugt/AEPT abgescannt/AEPT abgeschält/AEPT abgeschätzt/AEPT abgeschabt/AEPT abgeschafft/AEPT abgeschaltet/AEPT abgeschickt/AEPT abgeschieden/AEPT abgeschirmt/AEPT abgeschlachtet/AEPT abgeschlafft/AEPT abgeschlagen/AEPT abgeschleckt/AEPT abgeschleppt/AEPT abgeschliffen/AEPT abgeschlossen/AEPT abgeschmackt/AEPT abgeschmettert/AEPT abgeschmiert/AEPT abgeschminkt/AEPT abgeschmolzen/AEPT abgeschnitten/AEPT abgeschnürt/AEPT abgeschöpft/AEPT abgeschoben/AEPT abgeschoren/AEPT abgeschossen/AEPT abgeschrägt/AEPT abgeschraubt/AEPT abgeschreckt/AEPT abgeschrieben/AEPT abgeschritten/AEPT abgeschürft/AEPT abgeschüttelt/AEPT abgeschuftet/AEPT abgeschwächt/AEPT abgeschweift/AEPT abgeschwenkt/AEPT abgeschworen/AEPT abgesegelt/AEPT abgesegnet/AEPT abgesehen abgeseift/AEPT abgeseilt/AEPT abgesendet/AEPT abgesenkt/AEPT abgesessen/AEPT abgesetzt/AEPT abgesichert/AEPT abgesondert/ACEPT abgespalten/AEPT abgespannt/AEPT abgespart/AEPT abgespeckt/AEPT abgespeichert/AEPT abgespeist/AEPT abgesperrt/AEPT abgespiegelt/AEPT abgespielt/AEPT abgesplittert/AEPT abgespritzt/AEPT abgesprochen/AEPT abgesprungen/AEPT abgespült/AEPT abgestammt/AEPT abgestanden/AEPT abgestattet/AEPT abgestaubt/AEPT abgesteckt/AEPT abgestellt/AEPT abgestempelt/AEPT abgesteppt/AEPT abgestiegen/AEPT abgestimmt/AEPT abgestochen/AEPT abgestoppt/AEPT abgestorben/AEPT abgestoßen/AEPT abgestottert/AEPT abgestrahlt/AEPT abgestreift/AEPT abgestrichen/AEPT abgestritten/AEPT abgestürzt/AEPT abgestützt/AEPT abgestuft/AEPT abgestumpft/ACEPT abgesucht/AEPT abgesunken/AEPT abgetakelt/AEPT abgetan/AEPT abgetastet/AEPT abgeteilt/AEPT abgetippt/AEPT abgetötet/AEPT abgetragen/AEPT abgetrennt/AEPT abgetreten/AEPT abgetrieben/AEPT abgetrocknet/AEPT abgetropft/AEPT abgetrotzt/AEPT abgetupft/AEPT abgeurteilt/AEPT abgewählt/AEPT abgewälzt/AEPT abgewandelt/AEPT abgewandert/AEPT abgewandt/AEPT abgewartet/AEPT abgewaschen/AEPT abgewechselt/AEPT abgewehrt/AEPT abgewendet/AEPT abgewertet/AEPT abgewetzt/AEPT abgewichen/AEPT abgewickelt/AEPT abgewiesen/AEPT abgewinkt abgewinnen/DIX abgewirtschaftet/AEPT abgewischt/AEPT abgewöhnen/DIOXY abgewogen/AEPT abgewonnen/AEPT abgeworfen/AEPT abgewürgt/AEPT abgewunken/AEPT abgezählt/AEPT abgezäunt/AEPT abgezahlt/AEPT abgezapft/AEPT abgezehrt/AEPT abgezeichnet/AEPT abgezielt/AEPT abgezinst/AEPT abgezogen/AEPT abgezweigt/AEPT abgezwickt/AEPT abgezwungen/AEPT abgibt/X abgießen/DIX abging/EPZ abgleichen/IX abgleiten/DIX abglich/EPZ abgraben/DI abgrasen/DIXY abgreifen/BDIX abgrenzen/DIXY abgrundtief/AEPT abhältst/WX abhängen/DIXY abhängig/ACEPTU abhacken/DIXY abhaken/DIXY abhalten/DI abhanden abhauen/DIXY abheben/DIX abheilen/DIXY abhelfen/DI abhetzen/DIXY abhielt/EPZ abhilft/X abhing/EPZ abhören/BDIXY abhörsicher/AEPT abhob/PZ abhobeln/DIXY abhold/AEPT abholen/DIXY abholzen/DIXY abhorchen/DIXY abhungern/DIXY abjagen/DIXY abkam/PZ abkapseln/DIXY abkaufen/DIXY abkehren/DIXY abklären/DIXY abklang/PZ abklappen/BDIXY abklappern/DIXY abkleben/DIXY abklemmen/DIXY abklingen/DIX abklopfen/DIXY abknabbern/DIXY abknallen/DIXY abknappen/DIXY abkneifen/DIX abknicken/DIXY abknöpfen/DIXY abkömmlich/AEPTU abkochen/DIXY abkommandieren/DIOXY abkommen/DIX abkommenswidrig/AEPT abkoppeln/DIXY abkratzen/DIXY abkriegen/DIXY abkühlen/DIXY abkündigen/IXY abkürzen/DIXY abküssen/DIXY ablädt/X ablässt abläuft/X abladen/DI ablag/PZ ablagern/DIXY ablassen/DI ablaufen/DI ablauffähig/AEPT ablecken/DIXY ablegen/DIXY ablehnen/DIXY ableisten/DIXY ableiten/BDIXY ablenken/BDIXY ablesen/BDIX ableugnen/DIXY ablichten/DIXY abliefern/DIXY abliegen/DIX ablöschen/DIXY ablösen/BDIXY ablöten/DIXY abmähen/DIXY abmachen/DIXY abmagern/DIXY abmahnen/BDIXY abmalen/DIXY abmarschieren/DIOXY abmaß/PZ abmelden/DIXY abmessen/DI abmildern/DIXY abmischen/BDIXY abmontieren/DIOXY abmühen/DIXY abmustern/DIXY abnabeln/DXY abnagen/DIXY abnahm/PZ abnahmefähig/AEPT abnehmen/BDI abnimmt/X abnötigen/DIXY abnorm/AEPT abnormal/ACEPT abnützen/DIXY abnutzen/DIXY abonnieren/BDIOXY abordnen/DIXY abpassen/DIXY abpatrouillieren/IX abpfeifen/DIX abpfiff/PZ abpflücken/DIXY abplagen/DIXY abprallen/DIXY abpressen/DIXY abputzen/DIXY abquälen/DIXY abquetschen/DIXY abräumen/DIXY abrackern/DIXY abraten/DI abreagieren/DIOXY abrechnen/DIXY abregen/DIXY abreiben/BDIX abreißen/BDIX abreisen/DIXY abrichten/DIXY abriegeln/DIXY abriet/EPZ abringen/DIX abriss/PZ abrollen/DIXY abrücken/DIXY abrüsten/DIXY abrufbereit/AEPT abrufen/BDIX abrunden/DIXY abrupt/ACEPT abrutschen/DIXY absägen/DIXY absacken/DIXY absagen/DIXY absah/PZ absahnen/DIXY absank/PZ absatzfähig/AEPT absatzfördernd/AEPT absatzorientiert/AEPT absaugen/DIXY abschälen/DIXY abschätzen/DIXY abschätzig/AEPT abschaben/DIXY abschaffen/DIXY abschalten/BDIXY abscheiden/DIX abscheren/DIXY abscheulich/ACEPT abschicken/DIXY abschieben/DIX abschied/PZ abschießen/DIX abschirmen/DIXY abschlägig/AEPT abschlägt/X abschlachten/DIXY abschlagen/DI abschleifen/DIX abschleppen/DIXY abschließen/DIX abschlusssicher/AEPT abschmelzen/DI abschmieren/DIXY abschminken/DIXY abschnallen/DIXY abschneiden/DIX abschnitt/EPZ abschnittsweise/ANRS abschnüren/DIXY abschöpfen/DIXY abschob/PZ abschor/PZ abschoss/PZ abschotten/BDIXY abschrägen/DIXY abschrauben/BDIXY abschrecken/DIXY abschreiben/DIX abschreiten/DIX abschürfen/DIXY abschüssig/AEPT abschütteln/DIXY abschuften/DIXY abschwächen/DIXY abschweifen/DIXY abschwenken/DIXY abschwören/DIX absegeln/DIXY absegnen/DIXY absehbar/AEPTU absehen/BDI abseifen/DIXY abseilen/DIXY abseitig/AEPT abseits absenden/DIXY absenken/IXY absetzbar/AEPTU absetzen/BDIXY absichern/DIXY absichtlich/AEPTU absichtsvoll/AEPT absieht/X absingen/IX absinken/DIX absitzen/DIX absolut/AEPT absolutistisch/AEPT absolvieren/DIOXY absonderlich/ACEPT absondern/DIXY absorbieren/DIOXY abspalten/DIXY abspannen/DIXY abspecken/IXY abspeichern/IXY abspeisen/DIX abspenstig/AEPT absperren/DIXY abspiegeln/DIXY abspielen/DIXY absplittern/DIXY absprach/PZ absprang/PZ absprechen/DI absprengen/BIXY abspricht/X abspringen/DIX abspülen/DIXY abspulen/DIXY abstammen/DIXY abstatten/DIXY abstauben/DIXY abstechen/DI abstecken/DIXY abstehen/DIX absteigen/DIX abstellen/DIXY abstempeln/DIXY absteppen/DIXY absterben/DI absticht/X abstiegsgefährdet/AEPT abstiegsreif/AEPT abstimmen/DIXY abstimmungsberechtigt/AEPT abstinent/AEPT abstirbt/X abstoppen/DIXY abstoßen/DI abstoßend/ACEPT abstrahieren/DIOXY abstrahlen/DIXY abstrakt/ACEPT abstreichen/DIX abstreifen/DIXY abstreiten/DIX abstritt/PZ abstrus/AEPT abstürzen/DIXY abstützen/DIXY abstufen/DIXY abstumpfen/DIXY absuchen/DIXY absurd/ACEPT absurdum abtasten/DIXY abtat/PZ abtauchen/DIXY abteilen/BDIXY abteufen/IXY abtippen/BDIXY abtöten/DIXY abträglich/ACEPT abtragen/DI abtransportieren/BIOXY abtrat/PZ abtreiben/DIX abtrennen/BDIXY abtreten/DI abtrocknen/DIXY abtropfen/DIXY abtrotzen/DIXY abtrünnig/AEPT abtrug/PZ abtuend/AEPT abtun/IX abtupfen/DIXY aburteilen/DIXY abverdienen/DIXY abverlangen/DIOXY abwägen/BDIX abwählen/BIXY abwälzen/DIXY abwärts abwärtskompatibel/A abwandeln/BDIXY abwandern/DIXY abwandte/NZ abwarf/PZ abwarten/DIXY abwaschen/BDI abwechseln/DIXY abwechslungsreich/ACEPT abwechslungsweise abwegig/ACEPT abwehren/DIXY abweichen/DIX abweisen/DIX abwendbar/AEPTU abwenden/BDIXY abwerben/DI abwerfen/DI abwerten/DIXY abwesend/AEPT abwich/EPZ abwickeln/DIXY abwiegen/DIX abwinken/DIXY abwirft/X abwirtschaften/DIXY abwischen/DIXY abwog/PZ abwürgen/DIXY abzählen/BDIXY abzäunen/DIXY abzahlen/DIXY abzapfen/DIXY abzeichnen/DIXY abzgl abzgl. abziehen/DIX abzielen/DIXY abzöge/NZ abzog/PZ abzüglich abzuändern/D abzuarbeiten/D abzubauen/D abzubestellen/D abzubilden/D abzublocken/D abzubrechen/D abzubringen abzudanken abzudecken/D abzudichten/D abzudrängen/D abzudrehen/D abzudrücken/D abzudrucken/D abzuerkennen/D abzufangen/D abzufedern/D abzufeiern/D abzufeuern/D abzufinden/D abzufragen/D abzufressen/D abzuführen/D abzugeben/D abzugehen/D abzugewinnen/D abzugleichen/D abzugrasen/D abzugrenzen/D abzugsfähig/AEPT abzuhängen/D abzuhalten/D abzuhauen abzuheben/D abzuhelfen/D abzuhören/D abzuholen/D abzujagen/D abzuklären/D abzuklingen abzuklopfen/D abzuknabbern/D abzukühlen/D abzukürzen/D abzulassen/D abzulaufen abzulegen/D abzulehnen/D abzuleiten/D abzulenken/D abzulesen/D abzuliefern/D abzulösen/D abzumelden/D abzumildern/D abzumühen abzunehmen/D abzupflücken/D abzuraten abzurechnen/D abzureisen abzuriegeln/D abzuringen/D abzurücken/D abzurufen/D abzurunden/D abzusagen/D abzusahnen/D abzuschätzen/D abzuschaffen/D abzuschalten/D abzuscheiden/D abzuschicken/D abzuschieben/D abzuschießen/D abzuschlagen/D abzuschleifen/D abzuschließen/D abzuschneiden/D abzuschotten/D abzuschreiben/D abzuschütteln/D abzuschwächen/D abzuschwenken/D abzusehen/D abzusenden/D abzusetzen/D abzusichern/D abzusinken abzusondern/D abzuspeichern/D abzusperren/D abzuspielen/D abzusprechen/D abzustatten/D abzustecken/D abzustehen abzusteigen abzustellen/D abzustimmen/D abzustoßen/D abzustreifen/D abzustürzen abzustumpfen/D abzusuchen/D abzutasten/D abzutöten/D abzutransportieren/D abzutreiben/D abzutrennen/D abzutreten/D abzutrocknen/D abzutun abzuverlangen/D abzuwägen/D abzuwählen/D abzuwälzen/D abzuwandeln/D abzuwarten/D abzuwehren/D abzuweichen abzuweisen/D abzuwenden/D abzuwerfen/D abzuwickeln/D abzuwiegen/D abzuwirtschaften/D abzuzahlen/D abzuzeichnen/D abzuziehen/D abzweigen/DIXY abzwicken/DIXY achselzucken/D achsig/AEPT acht/AEPTW achteinhalbfach/AEPT achteln/DIWXY achten/BDIWXY achtenswert/AEPTV achtfach/AEPT achthundert achthundertmal achthundertstel achtjährig/AEPT achtköpfig/AEPT achtlos/ACEPT achtsam/AEPTU achtseitig/AEPT achtspaltig/AEPT achtstöckig/AEPT achtstrahlig/AEPT achtstündig/AEPT achttägig/AEPT achttausend achtundachtzig achtundachtzigste/ANRS achtunddreißig achtunddreißigste/ANRS achtundfünfzig achtundfünfzigste/ANRS achtundneunzig achtundneunzigste/ANRS achtundsechzig achtundsiebzig achtundsiebzigjährig/AEPT achtundsiebzigste/ANRS achtundvierzig achtundzwanzig achtungsvoll/ACEPT achtwöchig/AEPT achtzehn achtzehntägig/AEPT achtzehnte/ANRS achtzig/R achtzigjährig/AEPT achtzigste/ANRS ackerbautreibend/AEPT ackern/DIXY acta ad/E adäquat/ACEPT adaptieren/BIOXY adaptiv/AEPT addieren/DIOXY additional/AEPT additiv/AEPT adeln/DIXY aderig/AEPT adiabatisch/AEPT adieu adjektivisch/AEPT adjungiert/AEPT adlig/AEPT administrativ/AEPT administrieren/DIOXY adoptieren/DIOXY adressieren/BDIOXY adrett/ACEPT adsorbieren/DIOXY adverbial/AEPT aerodynamisch/AEPT aeronautisch/AEPT affektiert/ACEPT affenähnlich/AEPT affenartig/AEPT affengeil/AEPT afferent/AEPT affig/ACEPT affirmativ/AEPT afghanisch/AEPT afrikanisch/AEPT afroamerikanisch/AEPT afroasiatisch/AEPT aggressionshemmend/AEPT aggressiv/ACEPT agieren/DIXY agil/AEPT agitatorisch/AEPT agitieren/DIXY agrarisch/AEPT ahmen/IXY ahnden/DIXY ahnen/DIXY ahnungslos/ACEPT ahnungsvoll/ACEPT ahoi akademisch/ACEPT akklimatisieren/DIOXY akkreditieren/DIOXY akkugepuffert/AEPT akkumulieren/DIOXY akkurat/AEPT akquisitorisch/AEPT akribisch/AEPT akrobatisch/AEPT aktenkundig/AEPT aktenmäßig/AEPT aktiv/ACEPT aktivieren/BDIOXY aktualisieren/BDIOXY aktuell/ACEPT akupunktieren/DIOWXY akustisch/AEPT akut/ACEPT akzentfrei/AEPT akzentlos/AEPT akzentuieren/DIOXY akzeptabel/ACU akzeptieren/DIOXY alarmbereit/AEPT alarmieren/DIOXY albanisch/AEPT albern/ADEIPTXY alchemistisch/AEPT alemannisch/AEPT alert/AEPT algebraisch/AEPT algorithmisch/AEPT alias aliphatisch/AEPT alkalisch/AEPT alkoholfrei/AEPT alkoholisch/AEPT alkoholisiert/AEPT all/AEPT allabendlich/AEPT allbekannt/AEPT alldem alledem allegorisch/AEPT allegro allein/E alleinig/AEPT alleinstehend/AEPT allemal allenfalls allenthalben allerbeste/ANRS allerdings allereinfachste/ANRS allererste/ANRS allergeringste/ANRS allergisch/AEPT allergrößte/ANRS allerhand allerheiligste/ANRS allerherzlichst/AEPT allerhöchste/ANRS allerlei allerletzt/AEPT allerliebst/AEPT allermeist/AEPT allernächste/ANRS allerneueste/ANRS allerneust/AEPT allerorten allerschlechteste/ANRS allerschlimmste/ANRS allerschwerste/ANRS allerseits allerwärts allerwenigste/ANRS allerwichtigste/ANRS allesamt allezeit allfällig/AEPT allg allg. allgegenwärtig/AEPT allgemein/ACEPT allgemeinbildend/AEPT allgemeinpolitisch/AEPT allgemeinwirtschaftlich/AEPT allgewaltig/AEPT alliieren/DIOWXY alljährlich/AEPT allmächtig/AEPT allmählich/AEPT allmonatlich/AEPT allozieren/DIOXY allquantifiziert/AEPT allseitig/AEPT allseits alltäglich/AEPT allumfassend/AEPT allwissend/AEPT allwo allwöchentlich/AEPT allzu allzweck alpenländisch/AEPT alpha alphabetisch/AEPT alphanumerisch/AEPT alpin/AEPT als alsbald alsbaldig/AEPT alsdann also alt/AEPRT altangesehen/AEPT altbacken/AEPT altbekannt/AEPT altbewährt/AEPT altehrwürdig/AEPT alteingeführt/AEPT alteingesessen/AEPT alterlos/AEPT altern/DIWXY alternativ/AEPT alternieren/DIOXY altersbedingt/AEPT altersgemäß/AEPT altersmäßig/AEPT altersschwach/AEPT altertümlich/AEPT altgedient/AEPT altgewohnt/AEPT altgriechisch/AEPT althergebracht/AEPT althochdeutsch/AEPT altklug/AEPT altkonservativ/AEPT altliberal/AEPT altmodisch/ACEPT altrömisch/AEPT altrosa altruistisch/AEPT altsprachlich/AEPT altvertraut/AEPT altvordere/ANRS amateurhaft/AEPT ambitiös/AEPT ambitioniert/AEPT ambivalent/AEPT ambulant/AEPT amen/WY amerikanisch/AEPT amerikanisieren/DIOXY amnestieren/DIOXY amoralisch/AEPT amorph/AEPT amortisieren/BDIOXY amourös/AEPT amplitudenmoduliert/AEPT amputieren/DIOXY amtieren/DIXY amtlich/AEPT amtsärztlich/AEPT amtsenthoben/AEPT amüsant/AEPT amüsieren/DIOXY amusisch/AEPT an/S anämisch/AEPT anästhesieren anästhetisieren anachronistisch/AEPT anal/AEPT analog/AEPT analphabetisch/AEPT analysieren/BDIOXY analytisch/AEPT anaphorisch/AEPT anaphylaktisch/AEPT anarchisch/AEPT anarchistisch/AEPT anastatisch/AEPT anatomisch/AEPT anbändeln/DIXY anbahnen/DIXY anbauen/DIXY anbefohlen/AEPT anbehalten/ADEIPTX anbei anbeißen/DIX anbelangen/DIOXY anbellen/DIXY anberaumen/DIOXY anbeten/DIXY anbetreffen/D anbetrifft anbetroffen/AEPT anbetteln/DIXY anbetungswürdig/AEPT anbiedern/DIXY anbieten/DIX anbinden/DIX anbiss/EPZ anbläst anblasen/DI anblicken/DIXY anblinzeln/DIXY anböte/NZ anbohren/DIXY anbot/PZ anbrach/PZ anbrachen/WXY anbrannte/NZ anbraten/DI anbrechen/DI anbrennen/DIX anbricht/X anbriet/EPZ anbringen/DIX anbrüllen/DIXY ancrimpbar ancrimpen andächtig/AEPT andalusisch/AEPT andauern/DIXY andere/ANRS anderenfalls anderenorts andererseits andermal andern andernfalls andernorts anderntags anders andersartig/AEPT anderseits andersgläubig/AEPT andersherum anderswie anderswo anderswoher anderthalb/AEPT anderthalbfach/AEPT anderthalbjährig/AEPT anderthalbtausend anderweitig/AEPT andeuten/DIXY andeutungsweise andichten/DIXY andienen/DIXY andiskutieren/DIOXY andocken/DIXY andorranisch/AEPT andre/ANRS andrehen/DIXY androhen/DIXY anecken/IXY aneignen/DIXY aneinander anekdotenhaft/AEPT anekeln/DIXY anempfohlen/AEPT anerkannt/AEPT anerkennen/BDIX anerkennenswert/AEPT anerziehen/DIX anerzogen/AEPTWX anfällig/AEPT anfällt/X anfänglich/AEPT anfängt/X anfachen/DIXY anfahren/DI anfallen/DI anfangen/DI anfangs anfassen/DIXY anfaulen/DIXY anfechtbar/AEPTU anfechten/BDIX anfeinden/DIXY anfertigen/DIXY anfeuchten/DIXY anfeuern/DIXY anfiel/EPZ anfing/EPZ anflehen/DIXY anfliegen/DIX anfordern/DIXY anforderungsgemäß/AEPT anfragen/DIXY anfraß/PZ anfreunden/DIXY anfrieren/DIX anfügen/DIXY anführen/DIXY angängig/AEPT angab/PZ angaffen/DIXY angebahnt/AEPT angebaut/AEPT angebellt/AEPT angeben/BDI angeberisch/AEPT angebetet/AEPT angebettelt/AEPT angebiedert/AEPT angebissen/AEPT angeblasen/AEPT angeblich/AEPT angeblickt/AEPT angeblinzelt/AEPT angebohrt/AEPT angeboren/AEPT angeboten/AEPT angebracht/ACEPTU angebrannt/AEPT angebraten/AEPT angebrochen/AEPT angebrüllt/AEPT angebunden/AEPT angedacht/AEPT angedeihen angedeutet/AEPT angedichtet/AEPT angedient/AEPT angedockt/AEPT angedreht/AEPT angedroht/AEPT angeeignet/AEPT angeekelt/AEPT angefacht/AEPT angefahren/AEPT angefallen/AEPT angefangen/AEPT angefasst/AEPT angefault/AEPT angefeindet/AEPT angefertigt/AEPT angefeuchtet/AEPT angefeuert/AEPT angefleht/AEPT angeflogen/AEPT angefochten/AEPTU angefordert/AEPT angefragt/AEPT angefreundet/AEPT angefroren/AEPT angefügt/AEPT angeführt/AEPT angefüllt/AEPT angegafft/AEPT angegangen/AEPT angegeben/AEPT angeglichen/AEPT angegliedert/AEPT angegossen/AEPT angegrenzt angegriffen/AEPT angegrinst/AEPT angehängt/AEPT angehäuft/AEPT angehabt/AEPT angehalten/AEPT angehaucht/AEPT angeheftet/AEPT angeheitert/AEPT angehen/DIX angeheuert/AEPT angehimmelt/AEPT angehören/DIOXY angehörig/AEPT angehoben/AEPT angekauft/AEPT angekettet/AEPT angeklagt/AEPT angeklammert/AEPT angeklebt/AEPT angekleidet/AEPT angeklemmt/AEPT angeklickt/AEPT angeklingelt angeklopft/AEPT angeklungen/AEPT angeknackst/AEPT angeknipst/AEPT angeknüpft/AEPT angekommen/AEPT angekoppelt/AEPT angekränkelt/AEPT angekratzt/AEPT angekreidet/AEPT angekreuzt/AEPT angekündigt/AEPT angekurbelt/AEPT angelächelt/AEPT angelacht/AEPT angelangt/AEPT angelassen/AEPT angelastet/AEPT angelaufen/AEPT angelegen/AEOPT angelegt/AEPT angelehnt/AEPT angeleimt/AEPT angeleitet/AEPT angelernt/AEPT angeliefert/AEPT angeln/DIXY angelötet/AEPT angelockt/AEPT angelogen/AEPT angelsächsisch/AEPT angemacht/AEPT angemahnt/AEPT angemalt/AEPT angemaßt/AEPT angemeldet/AEPTU angemerkt/AEPT angemessen/ACEPTU angemietet/AEPT angemustert/AEPT angenähert/AEPT angenäht/AEPT angenagelt/AEPT angenehm/ACEPTU angenommen/AEPT angeordnet/AEPT angepackt/AEPT angepasst/ACEPTU angepeilt/AEPT angepfiffen/AEPT angepflanzt/AEPT angepöbelt/AEPT angeprallt/AEPT angepriesen/AEPT angepumpt/AEPT angerannt/AEPT angeraten/AEPT angeraucht/AEPT angeraut/AEPT angerechnet/AEPT angeredet/AEPT angeregt/AEPT angereichert/AEPT angereiht/AEPT angereist/AEPT angerichtet/AEPT angerissen/AEPT angeritzt/AEPT angerückt/AEPT angerührt/AEPT angerufen/AEPT angesäuselt/AEPT angesagt/AEPT angesammelt/AEPT angesaugt/AEPT angeschafft/AEPT angeschaltet/AEPT angeschaut/AEPT angeschichtet/AEPT angeschickt/AEPT angeschlagen/AEPT angeschlossen/AEPT angeschmiegt/AEPT angeschmiert/AEPT angeschnallt/AEPT angeschnauzt/AEPT angeschnitten/AEPT angeschossen/AEPT angeschraubt/AEPT angeschrieben/AEPT angeschrien/AEPT angeschuldigt/AEPT angeschwärzt/AEPT angeschweißt/AEPT angeschwemmt/AEPT angeschwindelt/AEPT angeschwollen/AEPT angesehen/ACEPT angeseilt/AEPT angesengt/AEPT angesenkt/AEPT angesetzt/AEPT angesichts angesiedelt/AEPT angespannt/ACEPT angespart/AEPT angespielt/AEPT angespitzt/AEPT angespornt/AEPT angespritzt/AEPT angesprochen/AEPT angesprungen/AEPT angespült/AEPT angespuckt/AEPT angestammt/AEPT angestanden angestarrt/AEPT angestaut/AEPT angesteckt/AEPT angestellt/AEPT angesteuert/AEPT angestiegen/AEPT angestiftet/AEPT angestimmt/AEPT angestoßen/AEPT angestrahlt/AEPT angestrebt/AEPT angestrengt/AEPT angestrichen/AEPT angestürmt/AEPT angesucht/AEPT angetan/AEPT angetastet/AEPTU angetragen/AEPT angetraut/AEPT angetreten/AEPT angetrieben/AEPT angetroffen/AEPT angetrunken/AEPT angewählt/AEPT angewärmt/AEPT angewachsen/AEPT angewandt/AEPT angeweht/AEPT angewendet/AEPT angewidert/AEPT angewiesen/AEPT angewöhnen/DIOXY angeworben/AEPT angeworfen/AEPT angewurzelt/AEPT angezahlt/AEPT angezapft/AEPT angezeichnet/AEPT angezeigt/AEPT angezettelt/AEPT angezischt/AEPT angezogen/AEPT angezündet/AEPT angezweifelt/AEPT angibt/X anging/EPZ angleichen/DIX angliedern/DIXY anglikanisch/AEPT anglotzen/DIXY angolanisch/AEPT angreifbar/AEPTU angreifen/BDIX angrenzen/DI angriffslustig/ACEPT angrinsen/DIXY angst angstauslösend/AEPT angsterregend/ACEPT angstvoll/ACEPT angucken/DIXY anhältst/WX anhängen/DIX anhängig/AEPT anhänglich/AEPT anhäufen/DIXY anhaben/DI anhaften/DIXY anhalten/DI anhand anhauchen/DIXY anheben/DIX anheften/DIXY anheim anheischig anheizen/DIXY anhielt/EPZ anhimmeln/DIXY anhören/DIXY anhob/PZ animalisch/AEPT animieren/DIOXY anisotrop/AEPT ankämen/IX ankämpfen/DIXY ankam/PZ ankaufen/DIXY ankern/DIVXY ankert/EGPVX ankerte/GNVZ ankerten/GIVWX anketten/DIXY anklägerisch/AEPT anklagen/DIXY anklammern/DIXY ankleben/DIXY ankleiden/DIXY anklemmen/IXY anklicken/BDIXY anklingeln/DIXY anklingen/DIX anklopfen/DIXY anknipsen/DIXY anknüpfen/DIXY ankommen/DIX ankoppeln/DIXY ankotzen/DIXY ankreiden/DIXY ankreuzen/DIXY ankündigen/DIXY ankurbeln/DIXY anlächeln/DIXY anlässlich anläuft/X anlachen/DIXY anlangen/DIXY anlassen/DIV anlaufen/DI anlaufgeschützt/AEPT anlegen/DIXY anlehnen/DIXY anleimen/DIXY anleiten/DIXY anlernen/DIXY anlief/EPZ anliefern/DIXY anliegen/DIX anlöten/DIXY anlocken/DIXY anlügen/DIX anmachen/DIXY anmalen/DIXY anmarschieren/DIOXY anmaßen/DIXY anmelden/DIXY anmeldepflichtig/AEPT anmerken/DIXY anmessen/DIX anmieten/DIXY anmuten/DIXY anmutig/ACEPT annähen/DIXY annähern/DIXY annäherungsweise annähmen/IX annageln/DIXY annehmbar/AEPTU annehmen/BDI annektieren/DIOXY annimmt/X anno annoncieren/DIOXY annullieren/DIOWXY anomal/ACEPT anonym/AEPT anonymisieren/BDIOWXY anordnen/DIXY anorganisch/AEPT anormal/AEPT anpacken/DIXY anpassen/BDIXY anpassungsbedingt/AEPT anpassungsfähig/ACEPT anpeilen/DIXY anpflanzen/DIXY anpinnen/DIXY anpöbeln/DIXY anprallen/DIXY anprangern/DIXY anpreisen/DIX anpressen/DIXY anpries/EPZ anprobieren/DIOXY anpumpen/DIXY anraten/DI anrechnen/BDIXY anreden/DIXY anregen/DIXY anreichern/DIXY anreihen/DIXY anreißen/DIX anreisen/DIXY anreizen/DIXY anrennen/DIX anrichten/DIXY anrief/EPZ anriss/EPZ anrollen/DIXY anrüchig/ACEPT anrücken/DIXY anrühren/DIXY anrufen/DIX ansässig/AEPT ansagen/DIXY ansah/PZ ansammeln/DIXY ansatzweise/ANRS ansaugen/DIXY anschaffen/DIXY anschalten/DIXY anschauen/DIXY anschaulich/ACEPT anscheinen/DIX anschichten/DIXY anschicken/DIXY anschien/EPZ anschießen/DIX anschlägt/X anschlagen/DIV anschließen/BDIX anschloss/PZ anschlug/PZ anschmiegen/DIXY anschmieren/DIXY anschnallen/DIXY anschnalzen anschnauzen/DIXY anschneiden/DIX anschrauben/DIXY anschreiben/DIX anschreien/DIX anschuldigen/DIXY anschwärzen/DIXY anschweißen/DIXY anschwellen/DIX anschwemmen/DIXY anschwindeln/DIXY ansehen/DI ansehnlich/ACEPTU anseilen/DIXY ansengen/DIXY ansetzen/DIXY ansiedeln/DIXY ansieht/X ansonsten anspannen/DIXY anspeien/DIX anspielen/DIXY anspinnen/DIX anspitzen/DIXY anspornen/DIXY ansprach/PZ ansprechen/BDI ansprechend/ACEPT anspricht/X anspringen/DIX anspritzen/DIXY anspruchsberechtigt/AEPT anspruchslos/ACEPT anspruchsvoll/ACEPT anspülen/DIXY anspucken/DIXY anständig/ACEPTU anstacheln/DIXY anstandslos/AEPT anstarren/DIXY anstatt anstecken/BDIXY anstehen/DIX ansteigen/DIX anstellen/DIXY anstellig/ACEPT ansteuern/BDIXY anstiften/DIXY anstimmen/DIXY anstößig/ACEPT anstößt anstoßen/DI anstrahlen/DIXY anstreben/DIXY anstreichen/DIX anstrengen/DIXY anstrengend/ACEPT anstürmen/DIXY ansuchen/DIXY antanzen/IXY antarktisch/AEPT antasten/DIXY antat/PZ anteilig/AEPT anteilsmäßig/AEPT anthropologisch/AEPT antiamerikanisch/AEPT antiautoritär/AEPT antibolschewistisch/AEPT antibritisch/AEPT antidemokratisch/AEPT antideutsch/AEPT antieuropäisch/AEPT antifaschistisch/AEPT antifeudalistisch/AEPT antifranzösisch/AEPT antiinflationär/AEPT antik/AEPT antikapitalistisch/AEPT antikirchlich/AEPT antikommunistisch/AEPT antilandwirtschaftlich/AEPT antimarxistisch/AEPT antiparlamentarisch/AEPT antipolnisch/AEPT antiquarisch/AEPT antiquiert/AEPT antirachitisch/AEPT antirassistisch/AEPT antisemitisch/AEPT antisowjetisch/AEPT antisozial/AEPT antisozialistisch/AEPT antistatisch/AEPT antitechnisch/AEPT antizipieren/DIOXY antizyklisch/AEPT antörnen/DIXY antraf/PZ antragen/DI antragsberechtigt/AEPT antrat/PZ antreffen/DI antreiben/DIX antreten/DI antrieb/PZ antrifft/X antrittst/WX antrug/PZ antun/IX antworten/DIVXY antwortet/EGPVWX anvertrauen/DIOXY anvisieren/DIOXY anwächst anwählen/BIXY anwachsen/DI anwarb/PZ anwarf/PZ anwehen/DIXY anweisen/DIX anwendbar/AEPTU anwenden/BDIXY anwendungsfreundlich/AEPT anwendungsgerecht/AEPT anwendungsorientiert/AEPT anwendungsspezifisch/AEPT anwendungstechnisch/AEPT anwesend/AEPT anwies/EPZ anwinkeln/DIXY anwuchs/PZ anzahlen/DIXY anzapfen/DIXY anzeichnen/DIXY anzeigen/DIXY anzeigentechnisch/AEPT anzetteln/DIXY anziehen/DIX anzog/PZ anzüglich/ACEPT anzünden/DIXY anzubahnen/D anzubiedern anzubieten/D anzubinden/D anzubringen/D anzudeuten/D anzudienen/D anzuerkennen/D anzufachen/D anzufahren anzufallen anzufangen anzufechten/D anzufertigen/D anzuflehen/D anzufordern/D anzufragen/D anzufügen/D anzugeben/D anzugehen/D anzugehören anzugleichen/D anzugliedern/D anzugreifen/D anzuhängen/D anzuhalten/D anzuheben/D anzuhören/D anzukaufen/D anzuklagen/D anzuklicken/D anzuklopfen anzuknüpfen/D anzukommen anzukreiden/D anzukündigen/D anzukuppeln/D anzukurbeln/D anzulaufen anzulegen/D anzulehnen/D anzuleiern/D anzulernen anzulocken/D anzumelden/D anzumerken/D anzunähern/D anzunehmen/D anzuordnen/D anzupacken/D anzupassen/D anzupeilen/D anzupreisen/D anzuraten/D anzurechnen/D anzuregen/D anzureißen/D anzurempeln/D anzurichten/D anzurühren/D anzurufen/D anzusagen/D anzusammeln/D anzuschaffen/D anzuschauen/D anzuschlagen/D anzuschließen/D anzuschreiben/D anzusehen/D anzusetzen/D anzusiedeln anzuspannen/D anzusprechen/D anzusteigen anzustellen/D anzusteuern/D anzustoßen/D anzustreben/D anzustrengen/D anzutasten/D anzutragen/D anzutreffen/D anzutreten/D anzutun anzuvertrauen/D anzuwählen/D anzuweisen/D anzuwenden/D anzuwerben/D anzuzapfen/D anzuzeigen/D anzuzetteln/D anzuziehen/D anzuzünden/D anzweifeln/DIXY apart/ACEPT apathisch/AEPT aperiodisch/AEPT apodiktisch/AEPT apokalyptisch/AEPT apostolisch/AEPT apostrophieren/DIOWXY apparativ/AEPT appellieren/DIXY appetitlich/ACEPTU applaudieren/DIXY applikativ/AEPT applizieren/BDIOXY approximativ/AEPT approximieren/DIOXY apriorisch/AEPT apropos arabisch/AEPT arbeiten/DIVXY arbeitet/EGPVWX arbeitete/GNVZ arbeiteten/GIVWX arbeitnehmerfeindlich/ACEPT arbeitsam/ACEPT arbeitsaufwändig/AEPT arbeitsaufwendig/AEPT arbeitsfähig/AEPT arbeitsfrei/AEPT arbeitsfreudig/ACEPT arbeitsintensiv/AEPT arbeitslos/AEPT arbeitspädagogisch/AEPT arbeitsrechtlich/AEPT arbeitsreich/AEPT arbeitsscheu/AEPT arbeitssparend/AEPT arbeitstechnisch/AEPT arbeitsunfähig/AEPT arbeitswillig/AEPT archäologisch/AEPT archaisch/AEPT architektonisch/AEPT archivieren/DIOXY areligiös/AEPT arg/AEPT argentinisch/AEPT arglistig/AEPT arglos/AEPT argumentativ/AEPT argumentieren/DIXY argwöhnen/DIXY argwöhnisch/ACEPT argwöhnt/EGPX aristokratisch/AEPT aristotelisch/AEPT arithmetisch/AEPT arktisch/AEPT arm/AEPT armenisch/AEPT armieren/DIOXY armlos/AEPT armselig/ACEPT aromatisch/ACEPT arrangieren/DIOXY arretieren/DIOXY arrivieren/DIOXY arrogant/ACEPT arrondiert/AEPT arteigen/AEPT arten/IXY artenreich/ACEPT artfremd/AEPT arthritisch/AEPT artig/ACEPTU artikulieren/DIOXY artistisch/ACEPT artverwandt/AEPT aß/PZ aschfahl/AEPT asiatisch/AEPT asketisch/ACEPT assemblerartig/AEPT assemblieren/DIOXY assimilieren/DIOXY assistieren/DIOXY assoziativ/AEPT assoziieren/BDIOXY astronomisch/AEPT asymmetrisch/AEPT asymptotisch/AEPT asynchron/AEPT atemberaubend/AEPT atemlos/AEPT atemraubend/AEPT atlantisch/AEPT atmen/DIXY atmosphärisch/AEPT atomar/AEPT attackieren/DIOXY attestieren/DIOWXY attraktiv/ACEPTU attribuieren/BDIOXY attributiv/AEPT au/S auch auditiv/AEPT auf/S aufäße/NZ aufaddieren/DIOXY aufatmen/DIXY aufbauen/DIXY aufbereiten/DIXY aufbessern/DIXY aufbewahren/DIXY aufbiegen/IX aufbinden/DIX aufblasen/BDI aufblicken/DIXY aufblinken/DIXY aufbrach/PZ aufbrachen/WXY aufbrechen/I aufbricht/X aufbringen/IX aufdampfen/BDIXY aufdecken/IXY aufdrängen/DIXY aufdringlich/ACEPTU aufdrücken/DIXY aufdrucken/DIXY aufeinander auferlegen/DIOXY auferstanden/AEPT auferstehen/DIX auferstünde/NZ auferwecken/DIOXY aufessen/DI auffächern/BDIXY auffährt/X auffällig/ACEPTU auffällt/X auffängt/X auffahren/BDI auffallen/DI auffallend/ACEPT auffangen/BDI auffassen/BDIXY auffiel/EPZ auffindbar/AEPTU auffinden/BDIX auffing/EPZ auffischen/DIXY aufflammen/DIXY auffliegen/DIX aufflöge/NZ auffloge/NZ auffordern/DIXY aufforsten/BDIXY auffräße/NZ auffraß/PZ auffressen/DI auffrischen/BDIXY auffrisieren/DIOXY auffrisst aufführen/BDIXY auffüllen/BDIXY auffuhr/PZ aufgab/PZ aufgearbeitet/AEPTU aufgebäumt/AEPT aufgebahrt/AEPT aufgebauscht/AEPT aufgebaut/AEPT aufgeben/DI aufgebessert/AEPT aufgebläht/ACEPT aufgeblasen/ACEPT aufgeblendet/AEPT aufgeblickt aufgeblieben/AEPT aufgeblitzt/AEPT aufgeblüht/AEPT aufgebockt/AEPT aufgebohrt/AEPT aufgeboten/AEPT aufgebracht/AEPT aufgebraucht/AEPT aufgebraust/AEPT aufgebrochen/AEPT aufgebügelt/AEPT aufgebunden/AEPT aufgedampft/AEPT aufgedeckt/AEPT aufgedonnert/AEPT aufgedrängt/AEPT aufgedreht/AEPT aufgedrückt/AEPT aufgedruckt/AEPT aufgedunsen/AEPT aufgefächert/AEPT aufgefahren/AEPT aufgefallen/AEPT aufgefangen/AEPT aufgefasst/AEPT aufgefischt/AEPT aufgeflammt/AEPT aufgeflogen/AEPT aufgefordert/AEPTU aufgeforstet/AEPT aufgefressen/AEPT aufgefrischt/AEPT aufgeführt/AEPT aufgefüllt/AEPT aufgefunden/AEPT aufgegangen/AEPT aufgegeben/AEPT aufgegessen/AEPT aufgegliedert/AEPT aufgegossen/AEPT aufgegriffen/AEPT aufgehängt/AEPT aufgehäuft/AEPT aufgehabt/AEPT aufgehackt/AEPT aufgehalten/AEPT aufgeheitert/AEPT aufgeheizt/AEPT aufgehellt/AEPT aufgehen/DIX aufgehetzt/AEPT aufgehört aufgehoben/AEPT aufgeholfen/AEPT aufgeholt/AEPT aufgehorcht/AEPT aufgekauft/AEPT aufgeklärt/AEPTU aufgeklappt/AEPT aufgeklebt/AEPT aufgeknöpft/AEPT aufgekocht/AEPT aufgekommen/AEPT aufgekratzt/AEPT aufgekrempelt/AEPT aufgekreuzt/AEPT aufgekriegt aufgelacht/AEPT aufgeladen/AEPT aufgelassen/AEPT aufgelauert/AEPT aufgelaufen/AEPT aufgelebt/AEPT aufgelegen/AEOPT aufgelegt/AEPT aufgelehnt/AEPT aufgelesen/AEPT aufgeleuchtet/AEPT aufgelistet/AEPT aufgelöst/ACEPTU aufgelockert/ACEPT aufgelodert/AEPT aufgemacht/AEPT aufgemalt/AEPT aufgemöbelt/AEPT aufgemotzt/AEPT aufgemuntert/AEPT aufgenötigt/AEPT aufgenommen/AEPT aufgeopfert/AEPT aufgepäppelt/AEPT aufgepasst/AEPT aufgepinselt/AEPT aufgeplatzt/AEPT aufgeprallt/AEPT aufgepresst/AEPT aufgepumpt/AEPT aufgeputzt/AEPT aufgeräumt/AEPT aufgerafft/AEPT aufgeraut/AEPT aufgerechnet/AEPT aufgereckt/AEPT aufgeregt/ACEPT aufgereiht/AEPT aufgereizt/AEPT aufgerichtet/AEPT aufgerieben/AEPT aufgerissen/AEPT aufgerollt/AEPT aufgerückt/AEPT aufgerührt/AEPT aufgerüstet/AEPT aufgerüttelt/AEPT aufgerufen/AEPT aufgerundet/AEPT aufgesagt/AEPT aufgesammelt/AEPT aufgesaugt/AEPT aufgeschaut aufgescheucht/AEPT aufgeschichtet/AEPT aufgeschlagen/AEPT aufgeschlitzt/AEPT aufgeschlossen/AEPT aufgeschlüsselt/AEPT aufgeschmissen/AEPT aufgeschnitten/AEPT aufgeschnürt/AEPT aufgeschoben/AEPT aufgeschossen/AEPT aufgeschraubt/AEPT aufgeschreckt/AEPT aufgeschrieben/AEPT aufgeschrien aufgeschürft/AEPT aufgeschüttet/AEPT aufgeschwatzt/AEPT aufgesehen/AEPT aufgesessen/AEPT aufgesetzt/AEPT aufgesogen/AEPT aufgespalten/AEPT aufgespannt/AEPT aufgespart/AEPT aufgesperrt/AEPT aufgespielt/AEPT aufgespießt/AEPT aufgesprungen/AEPT aufgespürt/AEPT aufgestachelt/AEPT aufgestanden/AEPT aufgestapelt/AEPT aufgestaut/AEPT aufgesteckt/AEPT aufgestellt/AEPT aufgesteppt/AEPT aufgestiegen/AEPT aufgestöbert/AEPT aufgestockt/AEPT aufgestoßen/AEPT aufgestrebt/AEPT aufgestrichen/AEPT aufgestützt/AEPT aufgesucht/AEPT aufgetan aufgetankt/AEPT aufgetaucht/AEPT aufgetaut/AEPT aufgeteilt/AEPT aufgetischt/AEPT aufgetragen/AEPT aufgetrennt/AEPT aufgetreten/AEPT aufgetrieben/AEPT aufgetroffen/AEPT aufgewärmt/AEPT aufgewachsen/AEPT aufgewacht/AEPT aufgewandt/AEPT aufgewartet/AEPT aufgewaschen/AEPT aufgeweckt/ACEPT aufgeweicht/AEPT aufgewendet/AEPT aufgewertet/AEPT aufgewickelt/AEPT aufgewiegelt/AEPT aufgewiesen/AEPT aufgewirbelt/AEPT aufgewischt/AEPT aufgewogen/AEPT aufgeworfen/AEPT aufgewühlt/AEPT aufgezählt/AEPT aufgezäumt/AEPT aufgezehrt/AEPT aufgezeichnet/AEPT aufgezeigt/AEPT aufgezogen/AEPT aufgezwungen/AEPT aufgibt/X aufgießen/DIX aufging/EPZ aufgliedern/DIXY aufglühen/DIXY aufgreifen/DIX aufgrund aufhältst/WX aufhängen/DIX aufhäufen/DIXY aufhaben/DI aufhacken/DIXY aufhalf/PZ aufhalten/DI aufhebbar/AEPTU aufheben/BDIX aufheitern/DIXY aufheizen/DIXY aufhelfen/DI aufhellen/DIXY aufhetzen/DIXY aufheulen/DIXY aufhielt/EPZ aufhören/DIXY aufhob/PZ aufholen/DIXY aufhorchen/DIXY aufkaufen/DIXY aufkeimen/DIXY aufklären/DIXY aufklärerisch/AEPT aufklaffen/DIXY aufklappen/DIXY aufklaren/DIXY aufkleben/DIXY aufknöpfen/DIXY aufkochen/DIXY aufkommen/DIX aufkrempeln/DIXY aufkreuzen/DIXY aufkriegen/IXY aufkündigen/DIXY auflädt/X auflachen/DIXY aufladen/BDI auflagenstark/AEPT auflandig/AEPT auflassen/DI auflauern/DIXY auflaufen/DI aufleben/DIXY auflegen/DIXY auflehnen/DIXY auflesen/DI aufleuchten/DIXY aufliegen/DIX aufließe/NZ auflisten/BDIXY auflösbar/AEPTU auflösen/BDIXY auflockern/DIXY auflodern/DIXY auflüde/NZ aufmachen/DIXY aufmarschieren/DIOXY aufmerksam/ACEPTU aufmöbeln/DIXY aufmüpfig/AEPT aufmuntern/DIXY aufnahm/PZ aufnahmebereit/AEPT aufnahmefähig/ACEPT aufnehmen/DI aufnimmt/X aufopfern/DIXY aufpäppeln/DIXY aufpassen/DIXY aufpinseln/DIXY aufplätten/DIXY aufplatzen/DIXY aufpolieren/DIOXY aufprägen/DIXY aufprallen/DIXY aufprobieren/DIOXY aufpumpen/DIXY aufputzen/DIXY aufräumen/DIXY aufraffen/DIXY aufragen/DIXY aufrauen/DIXY aufrechnen/DIXY aufrecht/AEPT aufregen/DIXY aufregend/ACEPT aufreiben/DIX aufreibend/ACEPT aufreihen/DIXY aufreißen/DIX aufreizen/DIXY aufrichten/DIXY aufrichtig/ACEPTU aufrief/EPZ aufrollen/DIXY aufrücken/DIXY aufrühren/DIXY aufrührerisch/AEPT aufrüsten/BDIXY aufrütteln/DIXY aufrufen/BDIX aufrunden/DIXY aufsässig/ACEPT aufsagen/DIXY aufsammeln/DIXY aufsaugen/DIXY aufschauen/DIXY aufscheuchen/DIXY aufschichten/DIXY aufschieben/DIX aufschießen/DIX aufschlägt/X aufschlagen/DI aufschließen/DIX aufschlitzen/IXY aufschlüge/NZ aufschlüsseln/IXY aufschlug/PZp aufschlussreich/ACEPT aufschnappen/DIXY aufschneiden/DIX aufschnüren/DIXY aufschöss/EPZ aufschoss/PZ aufschrauben/DIXY aufschrecken/DIXY aufschreiben/DIX aufschreien/DIX aufschrien/IX aufschürfen/DIXY aufschütteln/DIXY aufschütten/DIXY aufschwingen/DIX aufsehen/DI aufseiten aufsetzen/DIXY aufsieht/X aufsitzen/DIX aufspalten/DIXY aufspannen/DIXY aufsparen/DIXY aufsperren/DIXY aufspielen/DIXY aufspießen/DIXY aufsplitten/DIXY aufsprang/PZ aufspringen/DIX aufspüren/DIXY aufständisch/AEPT aufstacheln/DIXY aufstampfen/DIXY aufstand/PZ aufstapeln/DIXY aufstauen/DIXY aufstecken/DIXY aufstehen/DIX aufsteigen/DIX aufstellen/BDIXY aufstieg/EPZ aufstöbern/DIXY aufstöhnen/DIXY aufstocken/DIXY aufstockungsfähig/AEPT aufstoßen/DI aufstreben/DIXY aufstreichen/DIX aufstützen/DIXY aufsuchen/DIXY aufsummieren/DIOXY auftanken/DIXY auftat/PZ auftauchen/DIXY auftauen/DIXY aufteilen/BDIXY auftischen/DIXY aufträgt/X auftragen/DI auftragsgemäß/AEPT auftrat/PZ auftreffen/DI auftreiben/DIX auftrennen/DIXY auftreten/DI auftrittst/WX auftrumpfen/DIXY auftun/IX aufwändig/ACEPT aufwärmen/DIXY aufwärts aufwachen/DIXY aufwachsen/DI aufwallen/DIXY aufwarten/DIXY aufwecken/DIXY aufweichen/DIXY aufweisen/DIX aufwenden/DIXY aufwendig/ACEPT aufwerfen/DI aufwerten/DIXY aufwickeln/DIXY aufwiegeln/DIXY aufwiegen/DIX aufwies/EPZ aufwirbeln/DIXY aufwirft/X aufwischen/DIXY aufwühlen/DIXY aufwuchs/PZ aufzählen/DIXY aufzehren/DIXY aufzeichnen/DIXY aufzeigen/DIXY aufziehen/DIX aufzog/PZ aufzüchten/IXY aufzuarbeiten/D aufzubauen/D aufzubereiten/D aufzubessern/D aufzubewahren/D aufzubieten/D aufzubinden/D aufzublasen/D aufzublicken aufzublinken aufzubohren/D aufzubrechen/D aufzubringen/D aufzubürden/D aufzudecken/D aufzudrängen aufzudrehen/D aufzudrücken/D aufzuerbauen/D aufzuerlegen/D aufzufallen aufzufangen/D aufzufassen/D aufzufinden/D aufzufordern/D aufzuforsten/D aufzufrischen/D aufzuführen/D aufzufüllen/D aufzugeben/D aufzugliedern/D aufzugreifen/D aufzuhängen/D aufzuhäufen/D aufzuhalten/D aufzuheben/D aufzuheitern/D aufzuhelfen/D aufzuhören aufzuholen/D aufzukaufen/D aufzuklären/D aufzukommen aufzulasten aufzulegen/D aufzulehnen aufzulesen/D aufzulisten/D aufzulösen/D aufzulockern/D aufzunehmen/D aufzuopfern/D aufzupolieren/D aufzuprägen/D aufzuräumen/D aufzurauen/D aufzurechnen/D aufzuregen/D aufzureißen/D aufzurichten/D aufzurollen/D aufzurücken/D aufzurüsten/D aufzurufen/D aufzusammeln/D aufzuschichten/D aufzuschieben/D aufzuschlagen/D aufzuschließen/D aufzuschlüsseln/D aufzuschnüren/D aufzuschrecken/D aufzuschreiben/D aufzusetzen/D aufzuspalten/D aufzuspielen/D aufzuspüren/D aufzustauen/D aufzustecken/D aufzustehen aufzusteigen aufzustellen/D aufzustöbern/D aufzustocken/D aufzusuchen/D aufzutauchen aufzuteilen/D aufzutragen/D aufzutrennen/D aufzutreten aufzutun aufzuwärmen/D aufzuwachsen aufzuwecken/D aufzuweisen/D aufzuweiten/D aufzuwerfen/D aufzuwiegeln/D aufzuwiegen/D aufzuzählen/D aufzuzeichnen/D aufzuzeigen/D aufzuziehen/D aufzwang/PZ aufzwingen/DIX augenblicklich/AEPT augenfällig/ACEPT augenlos/AEPT augenscheinlich/AEPT außen außenpolitisch/AEPT außer außerdem außergewöhnlich/ACEPT außerhalb außerirdisch/AEPT außerordentlich/AEPT außerplanmäßig/AEPT außerschulisch/AEPT außerstand/E ausarbeiten/DIXY ausarten/DIXY ausatmen/DIXY ausbaden/DIXY ausbalancieren/DIOXY ausbaueigen/AEPT ausbauen/BDIXY ausbaufähig/ACEPT ausbaulokal/AEPT ausbessern/DIXY ausbeuten/DIXY ausbeuterisch/AEPT ausbezahlen/IOXY ausbilden/DIXY ausbitten/DIX ausblasen/DI ausbleiben/DIX ausbleichen/DIX ausblenden/DIXY ausblieb/EPZ ausbluten/DIXY ausbohren/DIXY ausbooten/DIXY ausborgen/DIXY ausbrach/PZ ausbrannte/NZ ausbrechen/DI ausbreiten/DIXY ausbrennen/DIX ausbricht/X ausbringen/DIX ausbrüten/DIXY ausbürgern/DIXY ausbürsten/DIXY ausbuchten/DIXY ausdachte/N ausdauernd/ACEPT ausdehnbar/ACEPT ausdehnen/BDIXY ausdenken/BDIX ausdiskutieren/DIOXY ausdorren/DIXY ausdrehen/DIXY ausdrücken/BDIXY ausdrücklich/ACEPT ausdrucken/DIXY ausdrucksfähig/ACEPT ausdruckslos/ACEPT ausdrucksstärker/AEPT ausdrucksstark/AEPT ausdrucksvoll/ACEPT ausdünnen/DIXY auseinander auserkoren/AEPT auserlesen/ACEPT ausersehen/AEPT auserwählt/AEPT ausfällt/X ausfahren/BDI ausfallen/DI ausfallsicher/ACEPT ausfechten/DIX ausfegen/DIXY ausfeilen/DIXY ausfertigen/DIXY ausfiel/EPZ ausfinden/DIX ausfindig ausflicken/DIXY ausfliegen/DIX ausfließen/DIX ausformen/IXY ausformulieren/DIOXY ausfräße/NZ ausfragen/DIXY ausfransen/DIXY ausfressen/DI ausführbar/AEPTU ausführen/BDIXY ausführlich/ACEPT ausfüllen/DIXY ausgäbe/NZ ausgab/PZ ausgangsseitig/AEPT ausgearbeitet/AEPT ausgeartet/AEPT ausgeatmet/AEPT ausgebacken/AEPT ausgebadet ausgebaggert/AEPT ausgebaut/AEPT ausgeben/DI ausgebessert/AEPT ausgebeult/AEPT ausgebeutet/AEPT ausgebildet/AEPTU ausgeblasen/AEPT ausgebleicht/AEPT ausgeblendet/AEPT ausgeblieben/AEPT ausgeblutet/AEPT ausgebootet/AEPT ausgeborgt/AEPT ausgebrannt/AEPT ausgebreitet/AEPT ausgebrochen/AEPT ausgebrütet/AEPT ausgebügelt/AEPT ausgebürgert/AEPT ausgebürstet/AEPT ausgebucht/AEPT ausgebuchten/IOW ausgebuchtet/AEPTW ausgedacht/AEPT ausgedehnt/ACEPT ausgedient/AEPT ausgedörrt/AEPT ausgedorrt/AEPT ausgedreht/AEPT ausgedrückt/AEPT ausgedruckt/AEPT ausgedünstet/AEPT ausgefahren/AEPT ausgefallen/ACEPT ausgefegt/AEPT ausgefeilt/AEPT ausgefiltert/AEPT ausgeflickt/AEPT ausgeflogen/AEPT ausgeflossen/AEPT ausgefochten/AEPT ausgeforscht/AEPT ausgefragt/AEPT ausgefranst/AEPT ausgefressen/AEPT ausgeführt/AEPT ausgefüllt/AEPTU ausgefuchst/AEPT ausgegangen/AEPT ausgegeben/AEPT ausgeglichen/ACEPTU ausgegliedert/AEPT ausgeglitten/AEPT ausgegoren/AEPTU ausgegossen/AEPT ausgegraben/AEPT ausgehändigt/AEPT ausgehängt/AEPT ausgehärtet/AEPT ausgehalten/AEPT ausgehandelt/AEPT ausgeharrt/AEPT ausgeheckt/AEPT ausgeheilt/AEPT ausgehen/DIX ausgehöhlt/AEPT ausgehoben/AEPT ausgeholfen/AEPT ausgeholt/AEPT ausgehorcht/AEPT ausgekannt ausgekehrt/AEPT ausgeklammert/AEPT ausgekleidet/AEPT ausgeklopft/AEPT ausgeklügelt/AEPT ausgeklungen/AEPT ausgeknipst/AEPT ausgeknobelt/AEPT ausgekocht/ACEPT ausgekohlt/AEPT ausgekommen ausgekostet/AEPT ausgekratzt/AEPT ausgekühlt/AEPT ausgekundschaftet/AEPT ausgekuppelt/AEPT ausgelacht/AEPT ausgeladen/AEPT ausgelagert/AEPT ausgelassen/ACEPT ausgelastet/AEPT ausgelaufen/AEPT ausgelaugt/AEPT ausgelebt/AEPT ausgeleert/AEPT ausgelegt/AEPT ausgelenkt/AEPT ausgelesen/AEPT ausgeleuchtet/AEPT ausgeliefert/AEPT ausgeliehen/AEPT ausgelistet/AEPT ausgelitten/AEPT ausgelöffelt/AEPT ausgelöscht/AEPT ausgelöst/AEPT ausgelötet/AEPT ausgelobt/AEPT ausgelost/AEPT ausgelotet/AEPT ausgelüftet/AEPT ausgelutscht/AEPT ausgemacht/AEPT ausgemalt/AEPT ausgemergelt/AEPT ausgemerzt/AEPT ausgemessen/AEPT ausgemistet/AEPT ausgemustert/AEPT ausgenommen/AEPT ausgenüchtert/AEPT ausgenützt/AEPT ausgenutzt/AEPT ausgepackt/AEPT ausgepeitscht/AEPT ausgependelt ausgepfiffen/AEPT ausgepicht/AEPT ausgeplaudert/AEPT ausgeplündert/AEPT ausgeprägt/ACEPT ausgepresst/AEPT ausgepumpt/AEPT ausgeputzt/AEPT ausgequetscht/AEPT ausgeräuchert/AEPT ausgeräumt/AEPT ausgeraubt/AEPT ausgerechnet/AEPT ausgeredet/AEPT ausgeregelt/AEPT ausgereicht/AEPT ausgereift/AEPTU ausgereist/AEPT ausgereizt/AEPT ausgerenkt/AEPT ausgerichtet/AEPT ausgerissen/AEPT ausgeritten/AEPT ausgerollt/AEPT ausgerottet/AEPT ausgerückt/AEPT ausgerüstet/AEPT ausgerufen/AEPT ausgeruht/AEPT ausgerutscht/AEPT ausgesägt/AEPT ausgesät/AEPT ausgesagt/AEPT ausgesandt/AEPT ausgesaugt/AEPT ausgeschaltet/AEPT ausgeschenkt/AEPT ausgeschert/AEPT ausgeschieden/AEPT ausgeschildert/AEPT ausgeschimpft/AEPT ausgeschlafen/AEPTU ausgeschlagen/AEPT ausgeschlossen/AEPT ausgeschmückt/ACEPT ausgeschnitten/AEPT ausgeschöpft/AEPT ausgeschrieben/AEPT ausgeschritten/AEPT ausgeschüttelt/AEPT ausgeschüttet/AEPT ausgeschwenkt/AEPT ausgesehen ausgesendet/AEPT ausgesetzt/AEPTU ausgesöhnt/AEPT ausgesorgt ausgespäht ausgespannt/AEPT ausgespart/AEPT ausgesperrt/AEPT ausgespielt/AEPT ausgesprochen/AEPTU ausgespült/AEPTU ausgespuckt/AEPT ausgestalten/IXY ausgestanden/AEPT ausgestanzt/AEPT ausgestattet/AEPT ausgestellt/AEPT ausgestiegen/AEPT ausgestochen/AEPT ausgestopft/AEPT ausgestorben/AEPT ausgestoßen/AEPT ausgestrahlt/AEPT ausgestreckt/AEPT ausgestreut/AEPT ausgestrichen/AEPT ausgeströmt/AEPT ausgesucht/ACEPT ausgetauscht/AEPT ausgeteilt/AEPT ausgetestet/AEPT ausgetilgt/AEPT ausgetragen/AEPT ausgetreten/AEPT ausgetrieben/AEPT ausgetrocknet/AEPT ausgetrunken/AEPT ausgetüftelt/AEPT ausgeübt/AEPT ausgewählt/AEPT ausgewachsen/AEPT ausgewandert/AEPT ausgewaschen/AEPT ausgewechselt/AEPT ausgeweint ausgeweitet/AEPT ausgewertet/AEPTU ausgewetzt/AEPT ausgewichen/AEPT ausgewickelt/AEPT ausgewiesen/AEPT ausgewirkt ausgewischt/AEPT ausgewogen/AEPT ausgeworfen/AEPT ausgewrungen/AEPT ausgewürfelt/AEPT ausgezählt/AEPT ausgezahlt/AEPT ausgezeichnet/AEPT ausgezogen/AEPT ausgibt/X ausgiebig/ACEPT ausgießen/DIX ausging/EPZ ausgleichen/DIX ausgleiten/DIX ausgliedern/DIXY ausgräbt/X ausgraben/DI ausgreifen/DIX aushältst/WX aushändigen/DIXY aushängen/DIX aushärten/DIXY aushalten/DI aushandeln/DIXY ausharren/DIXY aushauchen/DIXY ausheben/DIX aushecken/DIXY ausheilen/DIXY aushelfen/DI aushielt/EPZ aushilfsweise aushöhlen/DIXY ausholen/DIXY aushorchen/DIXY auskam/PZ auskehren/DIXY auskennen/DIX ausklammern/DIXY ausklappen/BDIXY auskleiden/DIXY ausklingen/DIX ausklinken/DIXY ausklopfen/DIXY ausknipsen/DIXY auskochen/DIXY auskommen/DIX auskommentieren/DIOXY auskosten/DIXY auskratzen/DIXY auskühlen/DIXY auskundschaften/DIXY auskuppeln/DIXY auskurieren/DIOXY auslädt/X ausländisch/AEPT ausläuft/X auslachen/DIXY ausladen/DI auslagern/DIXY auslassen/DI auslaufen/DI auslauten/DIXY ausleben/DIXY ausleeren/DIXY auslegen/DIXY ausleihen/DIX auslesen/BDI ausleuchten/DIXY ausliefern/DIXY ausließ/EPZ ausliest auslisten/DIXY auslöffeln/DIXY auslöschen/DIXY auslösen/DIXY auslöten/IXY ausloben/DIXY ausloggen/DIXY auslosen/DIXY ausloten/DIXY auslüften/DIXY ausmachen/DIXY ausmalen/DIXY ausmerzen/DIXY ausmessen/DI ausmisten/DIXY ausmustern/DIXY ausnahm/PZ ausnahmslos/AEPT ausnahmsweise ausnehmen/DI ausnimmt/X ausnützen/DIXY ausnutzen/DIXY auspacken/DIXY auspeitschen/DIXY auspfeifen/DIX auspfiff/EPZ ausplaudern/BDIXY ausplündern/DIXY ausprägen/DIXY auspressen/DIXY ausprobieren/DIOXY auspumpen/IXY ausputzen/DIXY ausquetschen/DIXY ausräumen/DIXY ausradieren/DIOXY ausrangieren/DIOXY ausrauben/DIXY ausrechnen/DIXY ausreden/DIXY ausreichen/DIXY ausreifen/DIXY ausreißen/DIX ausreisen/DIXY ausreiten/DIX ausrenken/DIXY ausrichten/DIXY ausrief/EPZ ausrollen/DIXY ausrotten/DIXY ausrücken/DIXY ausrüsten/BDIXY ausrufen/DIX ausruhen/DIXY ausrutschen/DIXY aussägen/DIXY aussäh/EPZ aussätzig/AEPT aussagefähig/AEPT aussagekräftig/AEPT aussagen/DIXY aussagenlogisch/AEPT aussah/PZ aussaugen/DIXY ausschalten/BDIXY ausschauen/DIXY ausscheiden/DIX ausscheren/DIXY ausschied/EPZ ausschimpfen/DIXY ausschlachten/BDIXY ausschlafen/DI ausschlagen/DI ausschlaggebend/ACEPT ausschließen/DIX ausschließlich/AEPT ausschmücken/DIXY ausschneiden/DIX ausschnittsweise ausschöpfen/IXY ausschreiben/DIX ausschreiten/DIX ausschütteln/DIXY ausschütten/DIXY ausschweifen/DIXY ausschweigen/DIX ausschwenken/DIXY ausschwingen/IX aussehen/DI aussenden/DIXY aussetzen/DIXY aussichtslos/ACEPT aussichtsreich/ACEPT aussichtsvoll/ACEPT aussiedeln/BDIXY aussieht/X aussöhnen/DIXY aussondern/DIXY aussortieren/DIOXY ausspannen/DIXY aussparen/DIXY ausspeien/DIX aussperren/DIXY ausspielen/DIXY ausspionieren/DIOXY aussprach/PZ aussprechen/DI ausspricht/X ausspülen/DIXY ausspucken/DIXY ausstaffieren/DIOXY ausstanzen/DIXY ausstatten/DIXY ausstechen/DI ausstehen/DIX aussteigen/DIX ausstellen/DIXY aussterben/DI ausstieß/EPZ ausstopfen/DIXY ausstoßen/DI ausstrahlen/DIXY ausstrecken/DIXY ausstreichen/DIX ausstreuen/DIXY ausströmen/DIXY aussuchen/DIXY austauschen/BDIXY austeilen/DIXY austilgen/DIXY austoben/DIXY austragen/DI australisch/AEPT austrampeln/DIXY austrat/PZ austreiben/DIX austreten/DI austrinken/DIX austrocknen/DIXY austüfteln/DIXY ausüben/DIXY ausufern/DIXY ausverkaufen/DIXY auswählen/BDIXY auswärtig/AEPT auswärts auswäscht auswandern/DIXY auswarf/PZ auswaschen/BI auswechseln/BDIXY ausweichen/DIX ausweinen/DIXY ausweisen/DIX ausweislich/AEPT ausweiten/DIXY auswendig auswerfen/DI auswerten/DIXY auswich/EPZ auswirft/X auswirken/DIXY auswischen/DIXY auswürfeln/DIXY auszahlen/BDIXY auszeichnen/DIXY ausziehen/BIX auszog/PZ auszuarbeiten/D auszuarten auszubauen/D auszubessern/D auszubeuten/D auszubilden/D auszublenden/D auszubrechen/D auszubreiten/D auszudehnen/D auszudenken/D auszudrücken/D auszudrucken/D auszufahren/D auszufragen/D auszuführen/D auszufüllen/D auszugeben/D auszugehen auszugießen/D auszugleichen/D auszugsweise/ANRS auszuhändigen/D auszuhängen/D auszuhalten/D auszuhandeln/D auszuhauchen/D auszuklammern/D auszukommentieren auszukotzen/D auszukundschaften/D auszulagern/D auszulassen/D auszulegen/D auszuleihen/D auszulesen/D auszuliefern/D auszulöschen/D auszulösen/D auszuloggen auszuloten/D auszumachen/D auszumalen/D auszumerzen/D auszumessen/D auszunutzen/D auszupacken/D auszuplündern/D auszupolieren/D auszuprobieren/D auszuräumen/D auszureißen/D auszurichten/D auszurotten/D auszurüsten/D auszurufen/D auszuruhen auszuschalten/D auszuschlachten/D auszuschlagen/D auszuschließen/D auszuschöpfen/D auszusehen auszusenden/D auszusetzen/D auszusondern/D auszuspähen/D auszuspionieren/D auszusprechen/D auszuspucken/D auszustatten/D auszustellen/D auszustrecken/D auszusuchen/D auszutauschen/D auszuteilen/D auszutilgen/D auszutragen/D auszutreiben/D auszutüfteln/D auszuüben/D auszuwählen/D auszuwechseln/D auszuweichen auszuweiten/D auszuwerten/D auszuzahlen/D auszuzeichnen/D auszuziehen/D autark/AEPT authentifizieren/DIOWXY authentisch/AEPT authentisieren/DIOWXY autogen/AEPT automatenfreundlich/AEPT automatisch/AEPT automatisieren/BDIOXY autonom/AEPT autorisieren/IOXY autoritär/AEPT autoritativ/AEPT avancieren/DIOXY avantgardistisch/AEPT avisieren/DIOXY axiomatisch/AEPT azurblau/AEPT azyklisch/AEPT bäckt/X bändigen/DIXY bärenstark/AEPT bärtig/AEPT bäuerlich/AEPT bäumt/EPX bäumten/IWX babylonisch/AEPT backen/DGIWXY baden/DIXY badisch/AEPT bagatellisieren/DIOXY baggern/DIXY bahnbrechend/AEPT bahneigen/AEPT bahnen/IWXY bahnt/EGPWX bakteriell/AEPT balancieren/DIXY bald baldig/AEPT baldmöglichst balgen/DIXY ballen/DIXY ballern/DIXY ballettmäßig/AEPT ballistisch/AEPT balsamieren/DIOWXY baltisch/AEPT banal/AEPT bananenrepublikanisch/AEPT band/PVZ bandagieren/DIOXY bang/AEPTZ bangen/DIWXY bangt/EGPWX bankbestätigt/AEPT bankfähig/AEPT bankintern/AEPT bankmäßig/AEPT bankrott/AEPT banktechnisch/AEPT banküblich/AEPT bannen/DIVXY bannt/EGPVX bannte/GNVZ bannten/GIVWX bar/AEGPTU barbarisch/AEPT baren/GUW barfüßig/AEPT barg/PVZ bargeldlos/AEPT barhäuptig/AEPT barmherzig/AEPTU barsch/ACEPT barst/GPWZ basal/AEPT basieren/DIOXY basisch/AEPT basteln/DIXY bat/PVZ batteriebetrieben/AEPT batteriegepuffert/AEPT bauen/DIVXY bauernschlau/AEPT baufällig/AEPT baugleich/AEPT baulich/AEPT baumartig/AEPT baumeln/DIXY baumstark/AEPT baumwollen/AEPT baurechtlich/AEPT baureif/AEPT bauschen/DIXY bauschig/AEPT baut/EGPVX baute/GNVZ bautechnisch/AEPT bauten/GIVWX bayerisch/AEPT bayrisch/AEPT beängstigen/DIOXY beäugen/DIOXY beabsichtigen/DIOXY beachten/DIOXY beachtenswert/ACEPT beachtlich/ACEPT beamtenrechtlich/AEPT beanspruchen/BDIOXY beanstanden/BDIOXY beantragen/DIOXY beantworten/DIOXY bearbeiten/DIOXY beargwöhnen/DIOXY beatmen/DIOXY beaufschlagen/DIOXY beaufsichtigen/DIOXY beauftragen/DIOXY bebauen/BDIOXY beben/DIXY bebildern/IOWXY bebt/EGPX bechern/DIXY bedächtig/AEPT bedacht/ACEPTU bedachte/ACNRSZ bedachtsam/AEPT bedampfen/BDIOWXY bedanken/DIXY bedarfsgerecht/ACEPT bedarfsorientiert/AEPT bedarfst/W bedauerlich/AEPT bedauerlicherweise bedauern/DIOXY bedauernswert/ACEPT bedecken/DIOXY bedenken/DIX bedenkenlos/AEPT bedenklich/ACEPTU bedeuten/DIXY bedeutend/ACEPTU bedeutsam/ACEPT bedeutungslos/ACEPT bedeutungsvoll/ACEPT bedienen/BDIOWXY bedienerfreundlich/AEPT bedienungstechnisch/AEPT bedingen/DIOXY bedingungslos/ACEPT bedrängen/DIOXY bedrohen/DIOXY bedrohlich/ACEPT bedrücken/DIOXY bedruckbar/AEPTU bedrucken/BDIOXY bedürfen/DX bedürfnislos/ACEPT bedürftig/ACEPT bedurften/IWX beehren/DIOXY beeilen/DIXY beeindrucken/DIOXY beeinflussbar/AEPTU beeinflussen/BDIOXY beeinflusst/AEPTU beeinträchtigen/DIOXY beenden/DIOXY beendigen/DIOXY beengen/DIOWXY beerdigen/DIOXY befähigen/DIOXY befährt/X befällt/X befände/NZ befahl/PZ befahren/ABDEIPT befallen/AEPT befand/PZ befangen/AEPTU befassen/DIOXY befehlen/DI befehligen/DIXY befehlshaberisch/AEPT befestigen/DIOXY befeuchten/DIOXY befiehlt/X befielt/PZ befinden/DIX befindlich/AEPT beflecken/DIOXY beflissen/AELPT beflügeln/DIOXY befördern/DIOXY befohlen/AEPT befolgen/DIOXY befrackt/AEPT befragen/DIOXY befreien/DIOXY befremden/DIOXY befremdlich/AEPT befreunden/DIOXY befrieden/DIOXY befriedigen/DIOXY befriedigend/ACEPTU befristen/DIOXY befruchten/DIOXY befühlen/DIXY befürchten/DIOXY befürworten/DIOXY befugt/AEPTU befuhr/PZ befunden/AEPT begaben/OWX begabt/ACEPTWX begabte/ACNRSU begackert/AEPT begangen/AEPT begann/PZ begatten/DIOXY begeben/DI begegnen/DIXY begehbar/AEPTU begehen/BDIX begehren/DIOXY begehrenswert/ACEPT begehrlich/ACEPT begehrt/ACEPTX begehrte/ACNRSZ begeistern/DIOXY begibt/WX begierig/AEPT begießen/DIX beging/EPZ beginnen/DIWX beglaubigen/DIOXY begleichen/DIX begleiten/DIOXY beglichen/AEPTWX beglücken/DIOXY beglückwünschen/DIOXY begnadet/AEPT begnadigen/DIOXY begnügen/DIOXY begonnen/AEPT begossen/AEPTWX begräbt/X begraben/AEIPT begradigt/AEPT begreifen/BDIX begreiflich/ACEPTU begreiflicherweise begrenzen/DIOXY begriff/LP begriffen/AEPTWX begriffsstutzig/AEPT begründen/BDIOXY begrüßen/DIOWXY begrüßenswert/ACEPT begrub/PZ begünstigen/DIOXY begütert/ACEPT begütigen/DIOXY begutachten/BDIOXY behäbig/AEPT behältst/WX behände/ANRS behängt/AEPT behaart/AEPT behaftet/AEPT behagen/DIXY behaglich/ACEPTU behalf/PZ behalten/ADEIPT behandeln/BDIOXY behandschuht/AEPT behangen/AEPT beharren/DIXY beharrlich/AEPT behauen/ADEIOPTXY behaupten/DIOXY behausen/DIXY behebbar/AEPTU beheben/BDIX beheimatet/AEPT beheizen/BDIOXY behelfen/DI behelfsmäßig/AEPT behelligen/DIOXY beherbergen/DIOXY beherrschen/BDIOXY beherzigen/DIOXY beherzt/AEPT behexen/DIOXY behielt/EPZ behilflich/AEPT behilft/X behindern/DIOXY behindertengerecht/AEPT behördenintern/AEPT behördlich/AEPT behoben/AEPTWX beholfen/U behorchen/DIOXY behüten/DIOXY behutsam/ACEPT bei beibehältst/WX beibehalten/ADEIPT beibehielt/PZ beibringen/DIX beichten/DIXY beide/ANRS beiderlei beiderseitig/AEPT beiderseits beidseitig/AEPT beieinander beifällig/AEPT beifolgen/DIXY beifügen/DIXY beige beigeben/DI beigebracht/AEPT beigefarben/AEPT beigefügt/AEPT beigegeben/AEPT beigelegen/AEOPT beigelegt/AEPT beigemengt/AEPT beigemessen/AEPT beigemischt/AEPT beigeordnet/AEPT beigepackt/AEPT beigepflichtet/AEPT beigesetzt/AEPT beigesprungen/AEPT beigestanden/AEPT beigestellt/AEPT beigesteuert/AEPT beigetragen/AEPT beigetreten/AEPT beigewohnt beiläufig/AEPT beilegen/DIXY beileibe beiliegen/DIX beim beimengen/DIXY beimessen/DI beimischen/DIXY beimisst beinah/E beinhalten/DIOXY beinhart/AEPT beipacken/DIXY beipflichten/DIXY beirren/DIXY beißen/DIVX beisammen beiseite beisetzen/DIXY beispielgebend/AEPT beispielhaft/ACEPT beispiellos/ACEPT beispielshalber beispielsweise beispringen/DI beistand/PZ beistehen/DIX beistellen/DIXY beisteuern/DIXY beiträgt/X beiträte/NZ beitragen/DI beitragsfinanziert/AEPT beitragsfrei/AEPT beitragspflichtig/AEPT beitrat/PZ beitreiben/BDIX beitreten/DI beitrittst/WX beitrügen/IX beitrug/PZp beiwohnen/DIXY beizeiten beizubehalten/D beizubringen/D beizufügen/D beizukommen/D beizumessen/D beizumischen/D beizupacken/D beizustehen beizustellen/D beizutragen/D beizutreten beizuwohnen/D bejahen/DIOXY bejahrt/AEPT bejubeln/DIOXY bekämen/IX bekämpfen/DIOXY bekam/PZ bekannt/ACELPTU bekannte/ACNRSZ bekanntermaßen bekehren/DIOXY bekennen/DIWX beklagen/DIOXY beklagenswert/AEPT beklatschen/IOXY beklauen/DIOXY bekleben/DIOXY beklecksen/DIOXY bekleiden/DIOXY beklemmen/DIX beklommen/AEPT beknackt/AEPT bekömmlich/ACEPT bekommen/DIX bekräftigen/DIOXY bekränzt/AEPT bekriegen/DIOXY bekritteln/DIOXY bekümmern/DIOXY bekunden/DIOXY belächeln/DIOXY belädt/X belämmert/AEPT belässt belästigen/DIOXY beläuft/X belabern/DIOXY beladen/ADEIPT belagern/DIOXY belanglos/ACEPT belangvoll/AEPT belassen/I belasten/BDIOXY belastungsfrei/AEPT belaubt/AEPT belauern/DIOXY belaufen/DI belauschen/DIOXY beleben/DIOXY belegen/BDIOXY belehren/DIOXY belehrend/ACEPT beleibt/AEPT beleidigen/DIOXY beleihen/BDIX beleihungsfähig/ACEPT belesen/AEPT beleuchten/DIOXY belgisch/AEPT belichten/DIOXY belieben/IOXY beliebig/AEPT beliebt/ACEPTX beliebte/ACNRSZ belief/P beliefern/DIOXY beliegen/DIX beliehen/AEPTWX beließ/EPZ bellen/DIXY belletristisch/AEPT bellt/EGPX belobigt/AEPT belogen/AEPTWX belohnen/DIOWXY belügen/DIX belud/PZ belustigen/DIOXY bemächtigen/DIOXY bemäkelt/X bemängeln/DIOXY bemalen/DIOXY bemannt/AEPTU bemaß/PZ bemerkbar/ACEPTU bemerken/BDIOXY bemerkenswert/ACEPT bemerkenswerterweise bemessen/ADEIPT bemisst bemitleiden/DIOXY bemitleidenswert/ACEPT bemittelt/AEPTU bemühen/DIOXY bemüßigen/DIXY bemustern/DIOWXY bemuttern/DIOXY benachbart/AEPT benachrichtigen/DIOXY benachteiligen/DIOXY benahm/PZ benannt/AEPTU benannte/ANRSZ benebeln/DIOXY benehmen/DI beneiden/DIOXY beneidenswert/ACEPT benennen/DIWX benetzen/DIOXY bengalisch/AEPT benimmt/X benötigen/DIOXY benommen/AEPT benoten/DIOXY benützen/BDIOXY benutzbar/AEPTU benutzen/BDIOXY benutzerdefiniert/AEPT benutzereigen/AEPT benutzerfreundlich/AEPT benutzerorientiert/AEPT beobachten/BDIOXY beordert/AEPT bepacken/DIOXY bepflanzen/DIOXY bequatschen/DIXY bequem/ACEPTZ bequemen/DIWXY berätst/WX berappen/DIOXY beraten/ADEIPT beratschlagen/DIOXY berauben/DIOXY berauschen/DIOXY berechenbar/AEPTU berechnen/DIOXY berechtigen/DIOXY berechtigterweise bereden/DIOXY beredt/ACEPT bereichern/DIOXY bereichsübergreifend/AEPT bereinigen/DIOXY bereisen/DIOXY bereit/EPSX bereiten/DIOWXY bereitgehalten/AEPT bereitgelegt/AEPT bereitgestellt/AEPT bereithältst/WX bereithalten/DI bereithielt/PZ bereitliegen/DIX bereitstand/PZ bereitstehen/DIX bereitstellen/DIXY bereitstünde/NZ bereitwillig/ACEPT bereitzufinden bereitzuhalten/D bereitzustellen/D bereuen/DIOXY bergab bergan bergauf bergbaugerecht/AEPT bergbaulich/AEPT bergbauspezifisch/AEPT bergbautauglich/AEPT bergbautechnisch/AEPT bergen/DIV bergeweise bergig/AEPT bergisch/AEPT bergwerksgerecht/AEPT berichten/DIOXY berichtigen/DIOXY berichtigungsfähig/AEPT berief/EPZ beriefe/NZ berieseln/DIOXY beriet/PZ beritten/AEPT berlinisch/AEPT bersten/DIX berüchtigste/ANRS berüchtigt/ACEPT berücksichtigen/DIOXY berühmt/ACEPT berühren/DIOXY berufen/ADEIPTUX beruflich/AEPT berufsbegleitend/AEPT berufsbezogen/AEPT berufsbildend/AEPT berufserfahren/AEPT berufsfremd/AEPT berufslos/AEPT berufsnotwendig/AEPT berufstätig/AEPT berufstechnisch/AEPT beruhen/DIXY beruhigen/DIOXY bes bes. besänftigen/DIOXY besäße/NZ besäuft/X besagen/DIOXY besah/PZ besaiten/DIOXY besann/PZ besaß/PZ besatzungsfremd/AEPT besaufen/DI beschädigen/DIOXY beschäftigen/DIOXY beschäftigungslos/AEPT beschämen/DIOXY beschaffen/ABDEIOPTWXY beschallen/DIOXY beschalten/DIOXY beschatten/DIOXY beschauen/DIOXY beschaulich/ACEPT bescheiden/ACDEIPTUX bescheinigen/DIOXY bescheint/X beschenken/DIOXY bescheren/DIOXY bescheuert/AEPT beschichten/IOXY beschieden/AEPTWX beschießen/DIX beschimpfen/DIOXY beschirmt/AEPT beschissen/AEPT beschlägt/X beschlagen/ADEIPT beschlagnahmen/DIOXY beschleichen/DIX beschleunigen/DIOXY beschließen/DIX beschlossen/AEPTWX beschlug/PZ beschlussfähig/AEPT beschlussunfähig/AEPT beschmieren/DIOXY beschmutzen/DIOXY beschneiden/DIX beschnitten/AEPTWX beschönigen/DIOXY beschösse/NZ beschossen/AEOPTWX beschosst/AEPTW beschränken/DIOXY beschränkt/ACEPTX beschränkte/ACNRSZ beschrankt/AEPTU beschreiben/BDIX beschreiten/DIX beschriebe/NZ beschrieben/AEIPTWX beschriebene/ANRSU beschriften/BDIOXY beschritten/AEPTX beschützen/IOXY beschuldigt/AEPT beschwerdefrei/AEPT beschweren/DIOXY beschwerlich/ACEPT beschwichtigen/DIOXY beschwindeln/IOXY beschwingt/AEPT beschwipsen/DIOXY beschwören/DIX beschworen/AEPTWX beseelen/DIOXY besehen/ADEIPTU beseitigen/DIOXY besessen/AEPT besetzen/DIOXY besichtigen/DIOXY besiedeln/DIOXY besiegeln/DIOWXY besiegen/DIOXY besingen/DIX besinnen/DIWX besinnlich/ACEPTU besinnungslos/AEPT besitzanzeigend/AEPT besitzen/DIX besitzlos/AEPT besoffen/AEPTWX besohlen/DIOXY besolden/DIOXY besoldungsmäßig/AEPT besondere/ANRS besonders besonnen/ACDEIPTUXY besorgen/DIOXY besorgniserregend/ACEPT besorgt/ACEPTX besorgte/ACNRSZ bespannen/DIOXY bespicken/DIOXY bespielen/BDIOXY besprach/PZ besprechen/DI besprengen/DIOXY bespricht/X bespritzen/DIOXY besprochen/AEPT besprühen/IOXY bespucken/DIOXY besser/AENPTZ bessern/DIWXY besserte/GNVZ besserten/GIVWX beständig/ACEPTU bestärken/DIOXY bestätigen/DIOXY bestach/PZ bestahl/PZ bestanden/AEPTWX bestatten/DIOXY bestaunen/DIOWXY bestausgebaut/AEPT bestbesucht/AEPT bestbezeugt/AEPT beste/ANRS bestechen/DI bestechlich/ACEPTU bestehen/DIX bestehlen/DI besteigen/DIX besteingeführt/AEPT besteingerichtet/AEPT bestellen/BDIOXY bestempfohlen/AEPT besten/S bestenfalls besterhalten/AEPT besteuern/BDIOXY bestgeführt/AEPT bestgehütet/AEPT bestgelegen/AEPT bestialisch/AEPT besticht/X besticken/IOXY bestiegen/AEPTWX bestimmen/BDIOXY bestmöglich/AEPT bestochen/AEPT bestohlen/AEPT bestorganisiert/AEPT bestorientiert/AEPT bestrafen/DIOXY bestrahlen/DIOXY bestreben/DIOXY bestreichen/DIX bestreiten/BDIX bestreuen/DIOXY bestrichen/AEPTWX bestricken/DIOXY bestritten/AEPTUWX bestücken/BDIOXY bestünde/NZ bestürmen/DIOXY bestürzen/DIOXY besuchen/DIOXY besudeln/DIOXY besungen/AEPT beta betätigen/DIOXY betäuben/DIOXY betagt/ACEPT betanken/IOXY betasten/DIOXY betatschen/IOXY beteiligen/DIOXY beten/DGIXY betet/EGPWX beteuern/DIOXY betiteln/DIOXY betören/DIOXY betonen/DIOWXY betonieren/DIOXY betr betr. beträchtlich/AEPTU beträgt/X betrachten/DIOXY betraf/PZ betragen/DI betragsmäßig/AEPT betrank/PZ betrat/PZ betrauen/IOXY betrauern/DIOXY betreffen/DI betreffs betreiben/BDIX betreten/ABDEIPT betreuen/DIOXY betrieb/LPZ betrieben/AEPTWX betriebsam/ACEPT betriebsbedingt/AEPT betriebsbereit/AEPT betriebsextern/AEPT betriebsfähig/AEPT betriebsintern/AEPT betriebsnah/AEPT betriebssicher/ACEPT betriebswirtschaftlich/AEPT betrifft/X betrinken/DIX betrittst/WX betroffen/ACEPT betrogen/AEPTWX betrüben/DIOXY betrüblich/ACEPT betrügen/DIX betrügerisch/AEPT betrug/PZp betrunken/AEPT bettelarm/AEPT betteln/DIXY bettelt/EGPX betten/DIXY bettlägerig/AEPT bettnässen/D betucht/AEPT betupfen/DIOXY beugen/DIVXY beugt/EGPVX beugte/GNVZ beugten/GIVWX beunruhigen/DIOXY beurkunden/DIOXY beurlauben/DIOXY beurteilen/BDIOXY beuteln/DIXY beuten/DIXY bevölkern/DIOXY bevölkerungsreich/ACEPT bevollmächtigen/DIOXY bevor bevormunden/DIOXY bevorraten/DIXY bevorschussen/IOXY bevorstand/PZ bevorstehen/DIX bevorzugen/DIOXY bewähren/DIOXY bewältigen/DIOXY bewässern/DIOXY bewachen/DIOXY bewachsen/AEPT bewaffnen/DIOXY bewahren/DIOXY bewahrheiten/IXY bewaldet/AEPTU bewandert/AEPTU bewarb/PZ bewarf/PZ bewegen/DIOXY beweglich/ACEPTU bewegungsfähig/AEPT bewegungslos/AEPT bewegungsunfähig/AEPT beweihräuchern/DIXY beweinen/DIOWXY beweisen/BDIX beweiskräftig/ACEPT beweispflichtig/AEPT bewenden bewerben/DI bewerkstelligen/DIXY bewerten/DIOXY bewiesen/AEPTUWX bewiesenermaßen bewilligen/DIOXY bewirbt/X bewirken/DIOXY bewirten/DIOXY bewirtschaften/DIOXY bewölkt/AEPT bewog/PZ bewohnbar/AEPTU bewohnen/BDIOXY beworben/AEPT bewundern/DIOXY bewundernswert/AEPT bewundernswürdig/AEPT bewunderungswürdig/ACEPT bewusst/AEPTU bewusstlos/AEPT bez bez. bezahlen/BDIOXY bezaubern/DIOXY bezeichnen/DIOXY bezeichnenderweise bezeugen/DIOXY bezichtigen/DIOXY beziehen/BDIX beziehungslos/AEPT beziehungsweise beziffern/DIOXY bezogen/AEPTWX bezüglich/AEPT bezugsfrei/AEPT bezuschussen/BIOXY bezwang/PZ bezwecken/DIOXY bezweifeln/DIOXY bezwingen/DIX bezwungen/AEPT bibelfest/AEPT biblisch/AEPT bidirektional/AEPT bieder/AEPT biegen/BDIVWX biegsam/AEPTU biete/GNVZ bieten/DGIVWX bietend/AEGPTV bietende/AGNRSV bifilar bijektiv/AEPT bilanzieren/DIOXY bilanzmäßig/AEPT bilanzsicher/AEPT bilateral/AEPT bilden/DIXY bilderreich/AEPT bilderstürmerisch/AEPT bildfähig/AEPT bildhaft/AEPT bildhübsch/AEPT bildhübscheste/ANRS bildlich/AEPT bildorientiert/AEPT bildschirmspezifisch/AEPT bildschön/AEPT bildungsfähig/AEPT bildungshungrig/AEPT bildungspolitisch/AEPT bilingual/AEPT billig/ACEPTZ billigen/DIWXY billigerweise billigte/GNVZ billigten/GIVWX bimmeln/DIXY bin/F binär/AEPT binden/DIVWX binnenländisch/AEPT binomisch/AEPT biochemisch/AEPT biogen/AEPT biografisch/AEPT biographisch/AEPT biologisch/AEPT biomedizinisch/AEPT biotechnisch/AEPT biotechnologisch/AEPT birgt/VWX birnenförmig/AEPT bis/V bischöflich/AEPT bisher bisherig/AEPT bislang biss/PVZ bisschen bissen/GVWX bissig/AEPT bist bisweilen bitten/DIVX bitter/ACELPT bitterarm/AEPT bitterbös/AEPT bitterkalt/AEPT bitteschön bitweise/ANRS bizarr/AEPT bizonal blähen/DIXY blässer/AEPT blässlich/AEPT bläst blättern/DIWXY blättert/EGPWX bläulich/AEPT blamabel/AC blamieren/DIOXY blanchieren/DIOXY blank/AEPT blankgefegt/AEPT blankgeputzt/AEPT blanko blasen/DGIV blasenfrei/AEPT blasiert/AEPT blasphemisch/AEPT blass/ACEPT blau/AEPT blauäugig/AEPT blaugelb/AEPT blaugemacht blaugrau/AEPT blaugrün/AEPT blaumetallic blechen/DIXY blechern/AEPT bleiben/DIVWX bleich/AEPT bleichen/DIWXY bleiern/AEPT bleifarben/AEPT bleifrei/AEPT bleihaltig/AEPT blenden/DIVXY blendet/EGPVWX blendete/GNVZ blendeten/GIVWX blich/PZ blicken/DIWXY blickfangend/AEPT blicklos blickt/EGPWX blieb/EPVZ blieben/GIVWX blies/P blind/AEPT blindwütig/AEPT blinken/DIXY blinzeln/DIXY blitzartig/AEPT blitzblank/AEPT blitzen/DIXY blitzschnell/AEPT blöd/ACEPT blödeln/DIXY blödsinnig/AEPT blöken/DIXY blocken/BDIWXY blockfrei/AEPT blockieren/DIOXY blond/AEPT bloß/AEPT bloßgelegt/AEPT bloßgestellt/AEPT bloßlegen/DIXY bloßstellen/DIXY bloßzulegen/D blühen/DIVXY blüht/EGPVX blütenübersät/AEPT blütenweiß/AEPT bluffen/DIXY blumig/ACEPT blutarm/AEPT blutbesudelt/AEPT blutdurstig/AEPT bluten/DIVXY blutig/ACEPTU blutjung/AEPT blutrot/AEPT blutrünstig/ACEPT blutstillend/AEPT blutunterlaufen/AEPT blutverschmiert/AEPT böhmisch/AEPT böig/AEPT böllern/DIXY börsenfähig/AEPT börsengängig/AEPT börsennotiert/AEPT börsentechnisch/AEPT bös/ACEPT bösartig/AEPT böswillig/ACEPT bocken/IXY bockig/AEPT bodenlos/AEPT bodennah/ACEPT bodenständig/AEPT bog/PVZ bogen/GVWX bogenförmig/AEPT bohnern/DIXY bohren/DIVXY bohrsch/AEPT bohrt/EGPVX bohrte/GNVZ bohrten/GIVWX bolivianisch/AEPT bolschewistisch/AEPT bombardieren/DIOXY bombastisch/AEPT bombenfest/AEPT bombengeschädigt/AEPT bombig/AEPT bonitätsfördernd/AEPT boolesch/AEPT boomen/DIXY booten/DIXY bootet/EGPWX bootfähig/AEPT bordeigen/AEPT borgen/DGIXY borniert/AEPT borstig/AEPT boshaft/ACEPT bosnisch/AEPT bot/GPVZ botanisch/AEPT boten/GVWX boxen/DIXY boxt/EGP boykottieren/DIOXY brächte/NZ brätst/WX bräuchten/X bräunen/DIWX bräunlich/AEPT brach/PZ brachen/WXY brachial/AEPT brachliegen/DIX brachte/GNVZ brachten/GIVWX branchenfremd/AEPT branchenintern/AEPT branchenkundig/AEPT branchenspezifisch/AEPT branchenüblich/AEPT branden/DIXY brandenburgisch/AEPT brandig/AEPT brandneu/AEPT brandschatzen/DIXY brannte/GNVZ brannten/GIVX brasilianisch/AEPT braten/DGIW brauchbar/ACEPTU brauchen/BDGIVXY brauen/DIXY braun/AEIPTX braunschwarz/AEPT brausen/DIXY brav/AEPT bravourös/AEPT bravurös/AEPT brechen/DIV brechungsartig/AEPT breiig/AEPT breit/ACEPT breitangelegt/ACEPT breitbandig/AEPT breiten/BDIWXY breitet/EGPVWX breitgeschlagen/AEPT breitgetratscht/AEPT breitgetreten/AEPT breitrandig/AEPT breitschlagen/DI breitschulterig/AEPT breitspurig/AEPT breittreten/DI breitzutreten/D bremsen/BDIXY brennen/BDIVX brennend/ACEPT brenzlig/AEPT bretonisch/AEPT bricht/VWX brieflich/AEPT briet/PZ brillant/ACEPT bringen/DIVWX brisant/AEPT britisch/AEPT bröckeln/DIXY bröcklig/AEPT brodeln/DIXY bromidfrei/AEPT bronzefarben/AEPT bronzen/AEPT broschieren/DIOXY brotbackend/AEPT brüchig/ACEPT brüderlich/AEPT brühen/DIVXY brüllen/DIXY brünett/AEPT brüsk/AEPT brüskieren/DIOXY brüsten/IXY brüten/DIXY bruchfest/AEPT bruchstückhaft/AEPT brummeln/DIXY brummen/DIXY brummig/AEPT brusttief/AEPT brutal/ACEPTU brutto bspw bspw. bübisch/AEPT bücken/DIWXY büffeln/DIXY bügelfrei/AEPT bügeln/DIXY bühnengewandt/AEPT bühnenhaft/AEPT bühnenkundiger bühnenwirksam/AEPT büken/IX bündeln/DIWXY bündelweise bündig/AEPT bündnisfrei/AEPT bündniskonform/AEPT bürden/IWXY bürgen/DIVXY bürgerkriegsähnlich/AEPT bürgerlich/AEPT bürgt/EGPVX bürgte/GNVZ bürgten/GIVWX bürokratisch/AEPTU bürsten/DIXY büßen/DIVXY büßt/EGPV büßte/GNVZ büßten/GIVWX buchen/BDIVXY buchhalterisch/AEPT buchmäßig/AEPT buchstäblich/AEPT buchstabengemäß/AEPT buchstabengetreu/AEPT buchstabieren/DIOXY bucht/EGPVX buchte/GNVZ buchten/GIVWX buckeln/DIXY bucklig/ACEPT buddhistisch/AEPT bugsieren/DIOXY buhen/DIXY buhlen/DIXY buk/PZ bulgarisch/AEPT bullig/ACEPT bummeln/DIVXY bumsen/DIXY bumsfidel bundesdeutsch/AEPT bundesgesetzlich/AEPT bundesstaatlich/AEPT bundesweit/AEPT bunt/ACEPT buntbedruckt/AEPT buntfarben/AEPT buntfarbig/AEPT buntschillernd/AEPT burgenreich/AEPT burlesk/AEPT burmesisch/AEPT burschenhaft/AEPT burschikos/AEPT bußfertig/AEPT busartige buschig/AEPT busenlos/AEPT buttern/DIXY byzantinisch/AEPT bzgl bzgl. bzw bzw. ca ca. campinggerecht/AEPT cartansch/AEPT cetera cf cf. chancenlos/AEPT chancenreich/ACEPT chaotisch/ACEPT charakterbildend/AEPT charakterfest/AEPT charakterisieren/DIOXY charakteristisch/ACEPT charakterlich/AEPT charakterlos/ACEPT charakterstark/AEPT charaktervoll/AEPT chargieren/DIOXY charismatisch/ACEPT charmant/ACEPT chartern/DIXY chaten/DIXY chauffieren/DIOXY chauvinistisch/ACEPT chemisch/AEPT cherverbrennung chi chic/ACEPT chiffrieren/DIOWXY chinesisch/AEPT chirurgisch/AEPT chlorfrei/AEPT cholerisch/ACEPT choreografisch/AEPT choreographieren/DIOXY choreographisch/AEPT christlich/ACEPTU chromatisch/AEPT chronisch/AEPT chronologisch/AEPT cineastisch/AEPT circa clausus clever/AEPT clippen/IX cm coaten/DIXY coatet/EGPWX codieren/BDIOXY compilieren/DIOXY computergesteuert/AEPT computergestützt/AEPT computerisiert/AEPT computerorientiert/AEPT cool/AEPT cremefarben/AEPT cremefarbig/AEPT cum curryfarben/AEPT dächte/NZ dämlich/AEPT dämmen/DIXY dämmerhaft/AEPT dämmerig/AEPT dämmern/DIXY dämonisch/AEPT dämpfen/DIXY dänisch/AEPT da/S dabei dabeibleiben/DIX dabeigeblieben/AEPT dabeigestanden/AEPT dabeistand/PZ dabeistehen/DIX dableiben/DIX dachte/GNZ dackeln/IXY dadurch dafür dafürgehalten/AEPT dafürhalten/DI dageblieben/AEPT dagegen dagestanden/AEPT daheim daher dahergekommen/AEPT daherkam/PZ daherkommen/IX daherschleichen/DIX dahertrieb/PZ dahin dahingegangen/AEPT dahingehen/DIX dahingeschlichen dahingestellt/AEPT dahingleiten/DIX dahinglitt/EPZ dahinraffen/DIXY dahinschleppen/DIXY dahinstelzen/DIXY dahinsterben/DI dahinstürmen/DIXY dahinten dahinter dahintreiben/DIX dahinvegetieren/DIXY dahinwandern dahinwelken/DIXY dahinziehen/DIX daliegen/DIX damalig/AEPT damals damenhaft/AEPT damit dampfen/DIVXY dampft/EGPVX danach daneben danebenbenehmen/DI danebenbenommen danebengegangen/AEPT danebenliegen/DIX danieder dankbar/ACEPTU danken/BDIWXY dankenswert/AEPT dankenswerterweise dankte/GNVZ dankten/GIVWX dann/P dar/F daran darangegangen/AEPT darangehen/DIX darangesetzt daranging/EPZ daranmachen/DIXY daransetzen/IXY darauf daraufgelegt/AEPT daraufhin daraus darbieten/DIX darbot/PZ darbringen/DIX darein darfst/W dargeboten/AEPT dargelegt/AEPT dargereicht/AEPT dargestellt/AEPT dargetan darlegen/DIXY darreichen/DIXY darstellen/BDIXY darstellerisch/AEPT darstellungsbedingt/AEPT darüber darum darunter darzubringen/D darzulegen/D darzustellen/D dasaß/PZ dasitzen/DIX dasjenige dass dasselbe dasselbige dastand/PZ dastehen/DIX datentechnisch/AEPT datieren/BDIOXY dato dauergeleuchtet dauerhaft/ACEPT dauern/DIXY daunenweich/AEPT davon davonfahren/DI davonfliegen/DIX davonfuhr/PZ davongefahren/AEPT davongekommen/AEPT davongelaufen/AEPT davongemacht/AEPT davongeschlichen/AEPT davongetragen/AEPT davonging/EPZ davonkommen/DIX davonlaufen/DI davonmachen/DIXY davonrannte/NZ davonrasen/DIXY davonschleichen/DIX davontragen/DI davontrug/PZ davonzustehlen davonzutragen davor dazu dazuführen/DIX dazugeben/DI dazugehören/DIXY dazugehörig/AEPT dazugekommen/AEPT dazugelegt/AEPT dazugelernt/AEPT dazugesagt/AEPT dazugeschaltet/AEPT dazugetan/AEPT dazugewonnen/AEPT dazuhaben dazukaufen/DIXY dazukommen/DIX dazulegen/DIXY dazulernen/DIXY dazumal dazunimmt/X dazurechnen/DIXY dazuschlägt/X dazustehen dazutuend/AEPT dazutun/IX dazuverdienen/DIOXY dazuzulernen/D dazuzuverdienen/D dazwischen dazwischenfahren/DI dazwischenfunken/DIX dazwischengefahren/AEPT dazwischengekommen/AEPT dazwischengelegen/AEPT dazwischengetreten/AEPT dazwischenkommen/DIX dazwischenliegen/DIX dazwischentreten/DI de/ANRS deaktivieren/DIOXY dealen/DIXY debattieren/DIOXY debil/AEPT debütieren/DIOXY dechiffrieren/DIOXY decken/DIVWXY deckungsgleich/AEPT deckungspflichtig/AEPT decodieren/DIOXY decrementieren/DIOXY dediziert/AEPT deduktiv/AEPT deduzieren/DIOXY defaultmäßig/AEPT defekt/AEPT defensiv/AEPT defilieren/DIWXY definierbar/AEPTU definieren/BDIOXY definit/AEPT definitionem definitionsgemäß/AEPT definitiv/AEPT defizitär/AEPT deflationär/AEPT deformiert/AEPT defragmentieren/DIOXY deftig/AEPT degenerieren/DIOXY degradieren/DIOXY degressiv/AEPT dehnbar/ACEPT dehnen/BDIXY dein/AEPT deindustrialisieren/DIOXY deinerseits deinesgleichen deinetwegen deinige/ANRS deinstallieren/BDIOXY dekadent/AEPT dekadisch/AEPT deklamatorisch/AEPT deklamieren/DIOXY deklarativ/AEPT deklarieren/DIOXY deklassieren/DIOXY deklinieren/BDIOXY dekodieren/DIOXY dekomprimieren/BDIOXY dekorativ/AEPT dekorieren/DIOXY dekretieren/DIOXY delegieren/DIOXY delektieren/DIXY delikat/AEPT delphisch/AEPT delta demagogisch/AEPT demaskieren/DIOXY dementieren/DIOXY dementsprechend/AEPT demgegenüber demgemäß demilitarisieren/BDIOWXY demjenigen demnächst demnach demobilisieren/DIOXY demografisch/AEPT demographisch/AEPT demokratisch/AEPTU demokratisieren/DIOXY demolieren/DIOXY demonstrativ/AEPT demonstrieren/DIOXY demontieren/DIOXY demoralisieren/DIOXY demoskopisch/AEPT demselben demütig/AEPTZ demütigen/DIWXY demzufolge den/NP denjenigen denkähnliche denkbar/AEPTU denken/BDGIVWX denkend/AEGPTV denkende/AGNRSV denkfähig/AEPT denkfaul/AEPT denkwürdig/AEPT dennoch denominieren/DIOXY denotativ/AEPT denselben denunzieren/DIOXY deplatzieren/DIOXY deponieren/DIOXY deportieren/IOXY deppern/DIOXY depressiv/AEPT deprimieren/DIOXY deputieren/DIOXY der/P derart derartig/AEPT derb/AEPT dereferenzieren/BDIOXY deregulieren/BDIOWXY dereinst dereinstig/AEPT derenthalben derentwegen derentwillen derer dergestalt dergleichen derjenige/N derlei dermaßen derselbe/N derselbige/N derweil derzeit derzeitig/AEPT deselektieren/BDIOXY desertieren/DIOXY desgleichen deshalb desillusionieren/DIOWXY desinfizieren/DIOXY desinteressiert/ACEPT desjenigen deskriptiv/AEPT despotisch/AEPT desselben dessen destabilisieren/DIOXY destillieren/DIOXY desto destruktiv/ACEPT deswegen detaillieren/DIOXY detailliert/ACEPTX detaillierte/ACNRSZ detailreich/AEPT detektieren/BDIOXY detektivisch/AEPT determinieren/DIOXY deterministisch/AEPT detonieren/DIOXY deuten/BDIXY deutlich/ACEPTU deutsch/AEPTU deutsche/ACNRSU deutschfeindlich/AEPT deutschsprachig/AEPT devalvieren/DIOXY devisenbewirtschaftet/AEPT devot/ACEPT dezent/ACEPT dezentral/AEPT dezentralisieren/DIOXY dezidiert/AEPT dezimal/AEPT dezimieren/DIOXY diabetisch/AEPT diabolisch/AEPT diagnostisch/AEPT diagnostizieren/BDIOXY diagonal/AEPT diagonalisieren/BIOXY diakonisch/AEPT dialektisch/AEPT dialektunabhängig/AEPT diamantbesetzt/AEPT diametral/AEPT dicht/ACEPTW dichte/ACNRSZ dichten/DIWXY dichterisch/AEPT dichtet/EGPVWX dichtete/GNVZ dichteten/GIVWX dick/ACEPT dickfellig/AEPT dickflüssig/AEPT dickköpfig/ACEPT dickleibig/AEPT dickste/ANRS dickwanstig/AEPT didaktisch/AEPT die/S diebessicher/AEPT diebisch/AEPT diejenige/N dienen/DIVXY dienlich/AEPT dienst/LV dienstags dienstbar/AEPT dienstbegleitend/AEPT dienstbereit/AEPT diensteifrig/ACEPT dienstfrei/AEPT diensttauglich/AEPT dienstunfähig/AEPT dienstuntauglich/AEPT dienstwillig/AEPT dient/EGPVX diente/GNVZ dienten/GIVWX dies/AEPT diesbezüglich/AEPT dieselbe/N diesig/AEPT diesjährig/AEPT diesmal diesseitig/AEPT diesseits diffamieren/DIOXY differentiell/AEPT differenziell/AEPT differenzieren/BDIOXY differenziert/ACEPTX differieren/DIOXY diffizil/AEPT diffundieren/DIWXY diffus/ACEPT digital/AEPT digitalisieren/DIOXY diktatorisch/AEPT diktieren/DIOXY dilettantisch/AEPT dimensionieren/DIOXY dimensionslos/AEPT dimmen/BDIWXY dingfest dinglich/AEPT dinieren/DIXY diplomatisch/AEPT diplomiert/AEPT dir direkt/AEPT direktional/AEPT dirigieren/DIOXY dirigistisch/AEPT disharmonisch/AEPT disjunkt/AEPT disjunktiv/AEPT diskontieren/DIOXY diskontinuierlich/AEPT diskreditieren/DIOXY diskret/AEPT diskrete/ACNRS diskriminieren/DIOXY diskursiv/AEPT diskussionsfähig/AEPT diskutieren/BDIOXY disparat/ACEPT dispensieren/DIOXY dispers/AEPT disponieren/BDIOXY disproportional/AEPT disproportioniert/AEPT disputieren/DIXY disqualifizieren/DIOXY dissipativ/AEPT distanzieren/DIOXY disziplinarisch/AEPT disziplinieren/DIOXY dito div divergieren/DIXY divers/AEPT diversifizieren/DIOXY dividieren/DIOXY dm dörflich/AEPT dörren/DIXY dösen/DIXY döst/EGP doch dogmatisch/AEPT dogmenartig/AEPT dokumentarisch/AEPT dokumentieren/DIOXY dolmetschen/DIVXY domartig dominant/AEPT domini dominieren/DIOXY dominikanisch/AEPT donnern/DIVXY donnerstags doof/ACEPT doppelgesichtig/AEPT doppeln/DIOVXY doppelseitig/AEPT doppelwandig/AEPT dornig/AEPT dorren/DIVXY dort dorthin dortig/AEPT dosieren/DIOXY dotieren/DIOXY dottergelb/AEPT downloaden/BIWXY dozieren/DIOXY dpi drängeln/DIXY drängen/DIVXY drängend/ACEPT drängt/EGPVX drängte/GNVZ drängten/GIVWX drachenähnlich/AEPT drahtig/AEPT drahtlos/AEPT drakonisch/AEPT drall/AEPT dramatisch/ACEPT dramatisieren/DIOXY dramaturgisch/AEPT dran drang/PZp drangsalieren/DIOXY drangvoll/AEPT dranhängen/DIX drankommen/DIX drapieren/DIOXY drastisch/AEPT drauf draufdrücken/DIXY draufgehen/DIX draufgeklebt/AEPT draufhauen/DIXY drauflegen/DIXY drauflos drauflosgegangen/AEPT drauflosgehen/DIX drauflosging/EPZ draufschlagen/DI draufzahlen/DIXY draußen dreckig/ACEPT drehen/BDIVWXY dreht/EGPVWX drehte/GNVZ drehten/GIVWX drei/NP dreiaderig/AEPT dreidimensional/AEPT dreieckig/AEPT dreieinhalb dreieinhalbfach/AEPT dreielementig/AEPT dreierlei dreifach/AEPT dreifaltig/AEPT dreifarbig/AEPT dreigeteilt/AEPT dreihundert dreihundertmal dreijährig/AEPT dreimal dreimalig/AEPT dreimonatig/AEPT dreingeschlagen/AEPT dreinschauen/DIXY dreinschlagen/DI dreinzuschauen dreißig dreißiger dreißigfach/AEPT dreißigjährig/AEPT dreißigste/ANRS dreiseitig/AEPT dreisemestrig/AEPT dreisilbig/AEPT dreisprachig/AEPT dreist/ACEPTW dreistellig/AEPT dreistimmig/AEPT dreistündig/AEPT dreistufig/AEPT dreitägig/AEPT dreitausend dreiteilig/AEPT dreiundachtzig dreiundachtzigste/ANRS dreiunddreißig dreiunddreißigste/ANRS dreiundfünfzig dreiundfünfzigste/ANRS dreiundneunzig dreiundneunzigste/ANRS dreiundsechzig dreiundsechzigste/ANRS dreiundsiebzig dreiundsiebzigste/ANRS dreiundvierzig dreiundvierzigste/ANRS dreiundzwanzig dreiundzwanzigste/ANRS dreiviertel dreiviertelstündig/AEPT dreiwöchig/AEPT dreizehn dreizehnjährig/AEPT dreizehnte/ANRS dreschen/DIV dressieren/DIOXY dribbeln/DIXY driften/DIXY drillen/DIVXY drillt/EGPVX drillte/GNVZ drillten/GIVWX drin/F dringen/DIX dringend/ACEPT dringendst/AEPTW dringlich/ACEPT drinstecken/DIXY drinstehen/DIX dritt/AEPT drittbeste/ANRS drittel dritten/SW drittgrößte/ANRS drittklassig/AEPT drittletzte/ANRS drittplatziert/AEPT dröge/ANRS dröhnen/DIXY droben drogenabhängig/AEPT drogensüchtig/AEPT drohen/DIXY drollig/AEPT drolligerweise drosch/PVZ drosseln/DIXY drüben drüber drüberfahren/DI drücken/DIVXY drückend/ACEPT drückt/EGPVX drückte/GNVZ drückten/GIVWX druckabhängig/AEPT druckempfindlich/AEPT drucken/BDIVXY druckerspezifisch/AEPT druckfähig/AEPT druckfertig/AEPT druckfest/AEPT druckfrisch/AEPT drucklos/AEPT druckreif/AEPT druckt/EGPVX druckte/GNVZ drucktechnisch/AEPT druckten/GIVWX druckvoll/AEPT druckwasserfrei/AEPT drumherum drunten drunter dto dto. du dümmer/AEPT dümmlich/AEPT dümmste/ANRS düngen/DIXY dünkt/G dünn/ACEPT dünnflüssig/AEPT dünsten/DIXY düpieren/BDIOWXY dürfen/IY dürftig/AEPT dürr/ACEPT dürsten/DIXY düster/ACEPT düsterblau/AEPT dual/AEPT dualistisch/AEPT dubio/S dubios/ACEPT ducken/DIXY duellieren/DIXY duften/DIVXY duftet/EGPVWX duftete/GNVZ dufteten/GIVWX duftig/AEPT duftlos/AEPT dulden/DGIXY duldsam/AEPTU dumm/AEPT dummerweise dumpf/AEPT dunkel/AC dunkelblau/AEPT dunkelblond/AEPT dunkelbraun/AEPT dunkelgrau/AEPT dunkelgrün/AEPT dunkelhäutig/AEPT dunkelhaarig/AEPT dunkelrot/AEPT dunstig/AEPT duplex duplizieren/BDIOXY durch/S durchackern/DIOXY durcharbeiten/DIXY durchaus durchbacken durchbeißen/DIX durchblättern/DIWXY durchblicken/DIXY durchbluten/DIOXY durchbohren/DIOXY durchbrach/PZ durchbrechen/DI durchbrennen/DIX durchbricht/X durchbringen/DI durchbrochen/AEPT durchdacht/AEPT durchdenken/DIX durchdrängen/DIXY durchdrang/PZp durchdrehen/DIXY durchdringen/DIX durchdrungen/AEPT durcheilen/DIOXY durcheinander durchexerzieren/DIOXY durchfahren/DI durchfallen/DI durchfechten/DIX durchfliegen/DIX durchfließen/DIX durchflog/PZ durchforsten/DIOXY durchfragen/DIX durchfroren/AEPT durchführbar/AEPTU durchführen/BDIXY durchfüttern/DIXY durchgängig/AEPT durchgeackert/AEPT durchgearbeitet/AEPT durchgeben/DI durchgebissen/AEPT durchgeblättert/AEPT durchgeblickt/AEPT durchgeboxt durchgebracht/AEPT durchgebrannt/AEPT durchgebrochen/AEPT durchgedrängt/AEPT durchgedreht/AEPT durchgedrungen/AEPT durchgeeilt/AEPT durchgefahren/AEPT durchgefallen/AEPT durchgefegt durchgeflogen/AEPT durchgeflossen/AEPT durchgefragt/AEPT durchgeführt/AEPT durchgegangen/AEPT durchgegeben/AEPT durchgegriffen/AEPT durchgehärtet/AEPT durchgehalten/AEPT durchgehen/DIX durchgekämpft durchgekaut/AEPT durchgeklettert/AEPT durchgeknetet/AEPT durchgekommen/AEPT durchgekreuzt/AEPT durchgelassen/AEPT durchgelaufen/AEPT durchgelesen/AEPT durchgelüftet/AEPT durchgelutscht durchgemacht/AEPT durchgeplant/AEPT durchgereist/AEPT durchgerissen/AEPT durchgeritten/AEPT durchgesägt/AEPT durchgesagt/AEPT durchgeschaltet/AEPT durchgeschaut/AEPT durchgeschimmert/AEPT durchgeschlagen/AEPT durchgeschleift/AEPT durchgeschleust/AEPT durchgeschliffen/AEPT durchgeschnitten/AEPT durchgeschossen/AEPT durchgeschüttelt/AEPT durchgeschweißt/AEPT durchgeschwommen/AEPT durchgesegelt/AEPT durchgesehen/AEPT durchgesetzt/AEPT durchgesickert/AEPT durchgesiebt/AEPT durchgespielt/AEPT durchgesprochen/AEPT durchgestanden/AEPT durchgestiegen/AEPT durchgestöbert/AEPT durchgestochen durchgestoßen durchgestrichen/AEPT durchgesucht/AEPT durchgetreten/AEPT durchgewachsen/AEPT durchgewandert/AEPT durchgewatet durchgeweicht durchgewühlt/AEPT durchgezogen/AEPT durchgezwängt/AEPT durchgreifen/DIX durchgriff/PZ durchhalten/BDI durchkämmen/DIOXY durchkam/PZ durchklettern/DIXY durchkneten/DIOXY durchkommen/DIX durchkonstruierte durchkreuzen/DIOXY durchlässig/ACEPTU durchlässt durchläuft/X durchlassen/DI durchlaufen/ADEIPT durchleben/IOXY durchlesen/DI durchleuchten/DIOXY durchlief/EPZ durchliest durchlöchern/DIOXY durchlüften/DIOXY durchmachen/DIXY durchmarschieren/DIOXY durchmischen/DIOXY durchnässen/DIOXY durchnehmen/DI durchnummerieren/DIOXY durchpflügen/DIXY durchprobieren/DIOXY durchqueren/DIOXY durchrechnen/DIXY durchreißen/DIX durchreisen/DIOXY durchreiten/DIX durchringen/DIX durchrutschen/DIXY durchsägen/DIXY durchsacken/DIXY durchsagen/DIXY durchschaubar/AEPTU durchschauen/BDIOXY durchschauern/DIY durchscheinen/DIX durchschimmern/DIXY durchschlagen/DI durchschlagkräftig/AEPT durchschleusen/DIXY durchschlug/PZ durchschneiden/DIX durchschnittlich/AEPT durchschreiben/DIX durchschritt/PZ durchschwamm/PZ durchschwimmen/DIX durchsegeln/DIOXY durchsehen/DI durchsetzen/BDIOXY durchsichtig/ACEPTU durchsickern/DIXY durchsieben/DIXY durchspielen/DIXY durchsprechen/DI durchstarten/DIXY durchstechen/DI durchstehen/DIX durchsteigen/DIX durchstöbern/DIOXY durchstößt durchstochen/AEPT durchstoßen/ADEIPT durchstreichen/DIX durchstreifen/IXY durchströmen/IXY durchsuchen/BDIOXY durchtasten/DIOXY durchtoggeln durchtränken/DIOXY durchtrennen/DIOXY durchtrieben/ACEPT durchwählen/DIXY durchwachsen/AEPT durchwandern/DIOXY durchwaten/DIOXY durchweg/S durchweichen/DIOXY durchwühlen/DIOXY durchziehen/DIX durchzogen/AEPTWX durchzuatmen durchzublättern/D durchzuboxen/D durchzubrechen/D durchzucken/DIWXY durchzudrehen durchzudringen durchzudrücken/D durchzuführen/D durchzugreifen durchzuhalten/D durchzukämmen/D durchzukommen/D durchzulesen/D durchzumachen/D durchzumogeln/D durchzusägen/D durchzuschalten/D durchzusehen/D durchzusetzen/D durchzustehen/D durchzwängen/DIXY durfte/NZ dursten/DIVXY durstig/ACEPT duschen/DIXY dusslig/ACEPT dutzende/V dutzendweise duzen/DIXY dynamisch/ACEPT eben/AEPTU ebenbürtig/AEPT ebenda ebendaher ebendahin ebendann ebendarum ebendaselbst ebender ebenderselbe ebendeshalb ebendeswegen ebendiese/RS ebendieselbe ebenerdig/AEPT ebenfalls ebenjener ebenso ebensolche/ANRS ebnen/DIXY echt/ACEPTU echtzeitfähig/AEPT echtzeitgesteuert/AEPT ecken/IWXY eckig/AEPT edel/ACU edeldenkend/AEPT edelgesinnt/AEPT edelmütig/AEPT editieren/BDIXY effekthaschend/AEPT effektiv/ACEPT effektvoll/ACEPT effizient/ACEPT effizienzmindernd/AEPT effizienzverbessernd/AEPT egal egalisieren/DIOXY egalitär/AEPT egoistisch/AEPT egozentrisch/AEPT eh/E ehe/LR ehebrechen/DI ehebrecherisch/AEPT ehedem ehelich/AEPTU ehelichen/DIWXY ehelichte/GNVZ ehelichten/GIVWX ehelos/AEPT ehemalig/AEPT ehemals ehemündig/AEPT eheste/ANRS ehewidrig/AEPT ehrbar/ACEPT ehren/BDIVXY ehrenamtlich/AEPT ehrenhaft/ACEPTU ehrenhalber ehrenvoll/AEPT ehrenwert/AEPT ehrerbietig/ACEPTU ehrfürchtig/AEPT ehrfurchtsvoll/AEPT ehrgeizig/ACEPT ehrlich/ACEPTU ehrlos/ACEPT ehrsam/AEPT ehrsüchtig/AEPT ehrt/EGPVX ehrte/GNVZ ehrten/GIVWX ehrwürdig/AEPT eichen/DIWXY eichfähig/AEPT eichpflichtig/AEPT eidesstattlich/AEPT eidgenössisch/AEPT eidlich/AEPT eifern/DIXY eifersüchtig/ACEPT eifrig/ACEPT eigen/AELPST eigenartig/ACEPT eigenartigerweise eigenhändig/AEPT eigeninitiatives eigeninitiiert/AEPT eigenmächtig/AEPT eigennützig/ACEPTU eigensicher/AEPT eigensinnig/ACEPT eigenständig/AEPT eigenste/ANRS eigentümlich/AEPT eigenverantwortlich/AEPT eigenwillig/ACEPT eignen/DIXY eilen/DIXY eilend/AEPST eilfertig/AEPT eilig/ACEPT eiligst/AEPTW ein/AEPSTZ einäschern/DIXY einäugig/AEPT einachsig/AEPT einander einarbeiten/DIXY einarmig/AEPT einatmen/DIXY einbändig/AEPT einbalsamieren/DIOXY einbauen/BDIXY einbaufertig/AEPT einbegriffen/AEPT einberufen/ADEIPTX einbetten/IXY einbeziehen/DIX einbezogen/AEPTWX einbiegen/DIX einbilden/DIXY einbinden/DIX einbläuen/DIXY einblenden/DIXY einbrach/PZ einbrachen/WXY einbrechen/DI einbrennlackieren/DIOXY einbricht/X einbringen/DIX einbürgern/DIXY einbüßen/DIXY eindämmen/DIXY eindecken/DIXY eindeutig/ACEPT eindimensional/AEPT eindrang/PZ eindringen/DIX eindringlich/ACEPT eindrücken/DIXY eindrücklich/AEPT eindrucksvoll/ACEPT eineiig/AEPT eineindeutig/AEPT eineinhalb eineinhalbjährig/AEPT eineinhalbstündig/AEPT eineinhalbtausend einelementig/AEPT einen/DIWXY einengen/BDIXY einerlei einerseits einesteils einfädeln/DIXY einfährt/X einfältig/ACEPT einfängt/X einfärben/DIXY einfach/ACEPT einfahren/DI einfallen/DI einfallslos/AEPT einfallsreich/ACEPT einfand/PZ einfangen/BDI einfarbig/AEPT einfassen/DIXY einfetten/DIXY einfiel/EPZ einfinde/NZ einfließen/DIX einflößen/DIXY einfloss/PZ einflussreich/ACEPT einförmig/AEPT einfordern/BDIXY einfrieren/DIX einfügen/DIXY einfühlen/DIXY einführen/BDIXY einfüllen/DIXY eingängig/AEPT eingab/PZ eingangs eingeäschert/AEPT eingearbeitet/AEPT eingeatmet/AEPT eingebacken/AEPT eingebaut/AEPT eingeben/BDI eingebettet/AEPT eingebildet/AEPT eingebläut/AEPT eingeblendet/AEPT eingebogen/AEPT eingeboren/AEPT eingebracht/AEPT eingebrannt/AEPT eingebraut/AEPT eingebrochen/AEPT eingebürgert/AEPT eingebüßt/AEPT eingebucht/AEPT eingebuchten/IOW eingebuchtet/AEPTW eingebunden/AEPT eingedämmt/AEPT eingedenk eingedeutscht/AEPT eingedrückt/AEPT eingedrungen/AEPT eingeebnet/AEPT eingeengt/AEPT eingefädelt/AEPT eingefärbt/AEPT eingefahren/AEPT eingefallen/AEPT eingefangen/AEPT eingefasst/AEPT eingefettet/AEPT eingefleischt/AEPT eingeflößt/AEPT eingeflogen/AEPT eingeflossen/AEPT eingefordert/AEPT eingefroren/AEPT eingefügt/AEPT eingefühlt eingeführt/AEPT eingefüllt/AEPT eingefunden eingegangen/AEPT eingegeben/AEPT eingegipst/AEPT eingegliedert/AEPT eingegossen/AEPT eingegraben/AEPT eingegrenzt/AEPT eingegriffen eingehämmert/AEPT eingehängt/AEPT eingehakt/AEPT eingehalten/AEPT eingehandelt/AEPT eingehauen/AEPT eingeheftet/AEPT eingeheizt/AEPT eingehen/DIX eingehendste eingeholt/AEPT eingehüllt/AEPT eingeimpft/AEPT eingejagt/AEPT eingekauft/AEPT eingekehrt/AEPT eingekeilt/AEPT eingekellert/AEPT eingekerbt/AEPT eingeklammert/AEPT eingeklebt/AEPT eingekleidet/AEPT eingeklemmt/AEPT eingeknickt/AEPT eingekocht/AEPT eingekreist/AEPT eingeläutet eingeladen/AEPT eingelagert/AEPT eingelassen/AEPT eingelaufen/AEPT eingelebt eingelegt/AEPT eingeleitet/AEPT eingelenkt/AEPT eingelesen/AEPT eingeleuchtet/AEPT eingeliefert/AEPT eingelöst/AEPTU eingelötet/AEPT eingeloggt/AEPT eingelullt/AEPT eingemacht/AEPT eingemauert/AEPT eingemischt/AEPT eingemündet/AEPT eingenäht/AEPT eingenistet/AEPT eingenommen/AEPT eingeölte/ANRS eingeordnet/AEPT eingepackt/AEPT eingepasst/AEPT eingepaukt/AEPT eingependelt eingepflanzt/AEPT eingepflegt/AEPT eingeplant/AEPT eingeprägt/AEPT eingequetscht/AEPT eingeräumt/AEPT eingerahmt/AEPT eingerannt/AEPT eingerastet/AEPT eingerechnet/AEPT eingeredet/AEPT eingereicht/AEPT eingereist/AEPT eingerenkt/AEPT eingerichtet/AEPT eingerieben/AEPT eingerissen/AEPT eingeritzt/AEPT eingerollt/AEPT eingerostet/AEPT eingerückt/AEPT eingesammelt/AEPT eingesandt/AEPT eingescannt/AEPT eingeschärft/AEPT eingeschätzt/AEPT eingeschaltet/AEPT eingeschenkt/AEPT eingeschickt/AEPT eingeschifft/AEPT eingeschläfert/AEPT eingeschlafen/AEPT eingeschlagen/AEPT eingeschleift/AEPT eingeschleppt/AEPT eingeschleust/AEPT eingeschlichen/AEPT eingeschlossen/AEPT eingeschmeichelt/AEPT eingeschmiert/AEPT eingeschmolzen/AEPT eingeschnitten/AEPT eingeschnürt/AEPT eingeschoben/AEPT eingeschossen/AEPT eingeschossig/AEPT eingeschränkt/AEPTU eingeschraubt/AEPT eingeschrieben/AEPT eingeschritten/AEPT eingeschrumpft/AEPT eingeschüchtert/AEPT eingeschult/AEPT eingeschwärzt/AEPT eingeschweißt/AEPT eingeschwenkt/AEPT eingesegnet/AEPT eingesehen/AEPT eingeseift/AEPT eingesessen/AEPT eingesetzt/AEPT eingespannt/AEPT eingespart/AEPT eingespeichert/AEPT eingespeist/AEPT eingesperrt/AEPT eingespielt/AEPT eingesprungen/AEPT eingestampft/AEPT eingestanden/AEPT eingestandenermaßen eingesteckt/AEPT eingestehen/DIX eingestellt/AEPT eingestiegen/AEPT eingestimmt/AEPT eingestochen/AEPT eingestoßen/AEPT eingestrahlt/AEPT eingestreut/AEPT eingestürzt/AEPT eingestuft/AEPT eingesunken/AEPT eingetaucht/AEPT eingetauscht/AEPT eingeteilt/AEPT eingetippt/AEPT eingeträufelt/AEPT eingetragen/AEPT eingetreten/AEPT eingetrichtert/AEPT eingetrieben/AEPT eingetrocknet/AEPT eingetroffen/AEPT eingetrommelt/AEPT eingewählt/AEPT eingewandert/AEPT eingewandt/AEPT eingewebt/AEPT eingeweckt/AEPT eingeweicht/AEPT eingeweiht/AEPTU eingewickelt/AEPT eingewiesen/AEPT eingewilligt/AEPT eingewirkt/AEPT eingewöhnen/DIOXY eingeworfen/AEPT eingewurzelt/AEPT eingezahlt/AEPT eingezeichnet/AEPT eingezirkelt/AEPT eingezogen/AEPT eingibt/X eingießen/DIX einging/EPZ eingleisig/AEPT eingliedern/DIXY eingraben/DI eingravieren/DIOXY eingreifen/DIX eingrenzen/BDIXY eingriff/EPZ einhängen/DIXY einhaken/DIXY einhalten/BDI einhandeln/DIXY einhauen/DIXY einheften/DIXY einheimisch/AEPT einheimsen/DIXY einheitlich/ACEPTU einheizen/DIXY einhellig/AEPT einher einhergegangen einhergehen/DIX einholen/DIXY einhüllen/DIXY einhundert einhundertfünfzig einige/ANRSU einigen/DIWXY einigermaßen einigte/GNVZ einigten/GIVWX einjährig/AEPT einjagen/DIXY einjustieren/DIOXY einkalkulieren/BDIOXY einkanalig/AEPT einkassieren/DIOXY einkaufen/BDIXY einkehren/DIXY einkellern/DIXY einkesseln/IXY einklagen/IXY einklammern/DIXY einklappen/DIXY einkleben/DIXY einkleiden/DIXY einklemmen/DIXY einklinken/DIXY einknöpfen/BDIXY einknoten/DIXY einkochen/DIXY einkommensschwach/AEPT einkommensteuerfrei/AEPT einkopieren/DIOXY einkreisen/DIXY einlädt/X einlässt einläuten/DIXY einladen/DI einlagern/DIXY einlassen/DI einlaufen/DI einlegen/DIXY einleiten/DIXY einlenken/DIXY einlesen/BDI einleuchten/DIXY einlief/EPZ einliefern/DIXY einliegend/AEPT einließ/EPZ einliest einlösen/BDIXY einloggen/DIXY einlud/PZ einmachen/DIXY einmal einmalig/AEPT einmarschieren/DIOXY einmauern/DIXY einmischen/DIXY einmotten/DIXY einmünden/DIXY einnahm/PZ einnahmen/VX einnehmbar/ACEPTU einnehmen/BDI einnimmt/X einnisten/DIXY einordnen/DIXY einpacken/DIXY einpflanzen/DIXY einpflegen/DIXY einphasig/AEPT einplanen/DIXY einpolig/AEPT einprägen/DIXY einprägsam/AEPT einprallen/DIXY einpressen/DIXY einprogrammieren/DIXY einquartieren/DIOXY einräumen/DIXY einrasten/DIXY einrechnen/DIXY einreden/DIXY einregulieren/DIOXY einreiben/DIX einreichen/DIXY einreihen/DIXY einreißen/DIX einreisen/DIXY einrenken/DIXY einrennen/DIX einrichten/DIXY einritzen/DIXY einrollen/IXY einrosten/DIXY einrücken/DIXY eins/U einsah/PZ einsam/ACEPT einsammeln/DIXY einsatzbereit/AEPT einsatzfähig/ACEPT einsatzfreudig/ACEPT einsatzsicher/AEPT einschätzen/DIXY einschalten/BDIXY einschenken/DIXY einschicken/DIXY einschieben/DIX einschießen/DIX einschiffen/DIXY einschl einschl. einschläfern/DIXY einschlägig/AEPT einschlägt/X einschlafen/DI einschlagen/DI einschleichen/DIX einschleusen/DIXY einschlich/EPZ einschließen/DIX einschließlich/AEPT einschlügen/IX einschlug/PZp einschmeicheln/DIXY einschmelzen/DI einschmieren/DIXY einschneiden/DIX einschränken/BDIXY einschreiben/DIX einschreiten/DIX einschüchtern/DIXY einschulen/DIXY einschwenken/DIXY einsehen/BDI einseifen/DIXY einseitig/AEPT einsenden/DIXY einsetzen/BDIXY einsichtig/ACEPT einsichtsvoll/ACEPT einsickern/DIXY einsieht/X einsilbig/AEPT einsinken/DIX einsortieren/DIOXY einspaltig/AEPT einspannen/DIXY einsparen/DIXY einspeisen/DIXY einsperren/DIXY einspielen/DIXY einsprachig/AEPT einspringen/DIX einspritzen/DIXY einspurig/AEPT einstampfen/DIXY einstand/PZ einstecken/DIXY einstehen/DIX einsteigen/DIX einstellen/BDIXY einstellig/AEPT einstieg/EPZ einstig/AEPT einstimmen/DIXY einstimmig/AEPT einstmals einstöckig/AEPT einstoßen/DI einstreichen/DIX einstreuen/DIXY einstrich/EPZ einströmen/DIXY einstündig/AEPT einstürzen/DIXY einstudieren/DIOXY einstufen/DIXY einstufig/AEPT einstweilen einstweilig/AEPT eintägig/AEPT eintauchen/DIXY eintauschen/BDIXY eintausend einte/GNVZ einteilen/DIXY einteilig/AEPT einten/GIVWX eintippen/DIXY eintönig/ACEPT einträchtig/ACEPT einträglich/ACEPT einträgt/X einträte/NZ eintraf/PZ eintragen/BDI eintrat/PZ eintreffen/DI eintreiben/DIX eintreten/DI eintrifft/X eintrittst/WX eintrocknen/DIXY eintrügen/IX einüben/DIXY einundachtzig einundachtzigste/ANRS einunddreißig einunddreißigste/ANRS einundfünfzig einundfünfzigste/ANRS einundneunzig einundneunzigste/ANRS einundsechzig einundsechzigste/ANRS einundsiebzig einundsiebzigste/ANRS einundvierzig einundvierzigste/ANRS einundzwanzig einundzwanzigste/ANRS einverleiben/DIOXY einvernehmlich/AEPT einverstanden/AEPT einwählen/DIXY einwärts einwandern/DIXY einwandfrei/ACEPT einweichen/DIXY einweihen/DIXY einweisen/DIX einwenden/DIXY einwerfen/DI einwickeln/DIXY einwilligen/DIXY einwirken/DIXY einwöchig/AEPT einzäunen/DIXY einzahlen/DIXY einzeichnen/DIXY einzeilig/AEPT einzeln/AEPT einzelstaatlich/AEPT einziehen/BDIX einzig/AEPT einzigartig/AEPT einzog/PZ einzuarbeiten/D einzubalsamieren/D einzubauen/D einzubehalten/D einzubetten/D einzubeziehen/D einzubilden einzubinden/D einzubrechen einzubringen/D einzubürgern/D einzubüßen/D einzudecken/D einzudringen einzudrücken/D einzuebnen/D einzuengen/D einzufahren/D einzufallen einzufangen/D einzufinden einzufliegen/D einzufordern/D einzufügen/D einzuführen/D einzugeben/D einzugehen einzugestehen/D einzugliedern/D einzugreifen einzugrenzen/D einzuhängen/D einzuhalten/D einzuhandeln/D einzuholen/D einzuhüllen/D einzukaufen/D einzukommen einzukreisen/D einzuladen/D einzulagern/D einzulassen/D einzulaufen einzulegen/D einzuleiten/D einzulenken einzulesen/D einzulösen/D einzuloggen einzumischen/D einzunehmen/D einzuordnen/D einzupacken/D einzupflanzen/D einzuplanen/D einzuprägen/D einzuräumen/D einzureden/D einzureiben/D einzureichen/D einzureihen/D einzurichten/D einzusammeln/D einzusaugen/D einzuschätzen/D einzuschalten/D einzuschenken/D einzuschieben/D einzuschläfern/D einzuschlagen/D einzuschleusen/D einzuschließen/D einzuschmelzen/D einzuschränken einzuschreiben/D einzuschreiten einzuschüchtern/D einzusehen/D einzusenden/D einzusetzen/D einzuspannen/D einzusparen/D einzuspeisen/D einzusperren/D einzuspielen/D einzustampfen/D einzustecken/D einzustehen einzusteigen einzustellen/D einzustimmen/D einzustreuen/D einzustufen/D einzutauchen/D einzutauschen/D einzuteilen/D einzutragen/D einzutreffen einzutreiben/D einzutreten/D einzuüben/D einzuverleiben/D einzuweisen/D einzuwenden/D einzuwerben/D einzuwerfen/D einzuwilligen einzuwirken einzuzahlen/D einzuziehen/D eisenhaltig/AEPT eisenhart/AEPT eisern/AEPT eisfrei/AEPT eisgekühlt/AEPT eisig/ACEPT eiskalt/AEPT eiszeitlich/AEPT eitel/AC eiterig/AEPT eitern/DIVXY eiweißartig/AEPT eiweißhaltig/ACEPT ekelerregend/ACEPT ekelhaft/ACEPT ekeln/DIWXY eklatant/AEPT eklig/AEPT ekstatisch/AEPT elastisch/ACEPTU elegant/ACEPT elegisch/AEPT elektr elektr. elektrisch/AEPT elektrisieren/DIOXY elektrochemisch/AEPT elektrohydraulisch/AEPT elektrolytisch/AEPT elektromagnetisch/AEPT elektromechanisch/AEPT elektronisch/AEPT elektrostatisch/AEPT elektrotechnisch/AEPT elementar/AEPT elementarste/ANRS elend/ACEPT elfeinhalb elfenbeinern/AEPT elffach/AEPT elfhundert elfjährig/AEPT elfmal elft/AEPTW elftägig/AEPT elftausend elftel elften/SW eliminieren/BDIOXY elisabethanisch/AEPT elitär/AEPT ellenlang/AEPT elliptisch/AEPT eloxiert/AEPT elterlich/AEPT elternlos/AEPT emanzipatorisch/AEPT emanzipieren/IOXY embryonal/AEPT emeritieren/IOXY emigrieren/DIOXY eminent/AEPT emittieren/DIXY emotional/ACEPT emotionell/ACEPT empfänglich/AEPTU empfängt/X empfahl/PZ empfand/PZ empfangen/ADEIPT empfangsbereit/AEPT empfehlen/DI empfehlenswert/AEPT empfiehlt/X empfinden/DIX empfindlich/ACEPTU empfindsam/ACEPT empfindungslos/ACEPT empfing/PZ empfohlen/AEPT empfunden/AEPT empirisch/AEPT empören/DIOXY empor emporarbeiten/DIXY emporblicken/DIXY emporgearbeitet/AEPT emporgeblickt/AEPT emporgehievt/AEPT emporgekommen/AEPT emporgeragt/AEPT emporgeschossen/AEPT emporgestiegen/AEPT emporgestrebt/AEPT emporgewachsen/AEPT emporheben/DIX emporhob emporkommen/DIX emporragen/DIXY emporschießen/DIX emporschoss/PZ emporsteigen/DIX emporstemmen/DIXY emporstieg/EPZ emporstreben/DIXY emporziehen/DIX emporzog/PZ emsig/ACEPT emulgieren/DIOXY emulieren/DIOXY encodieren/DIOXY enden/DIVXY endet/EGPVWX endete/GNVZ endeten/GIVWX endgültig/ACEPT endlagenabhängig endlich/AEPTU endlos/AEPT endogen/AEPT endotherm/AEPT endrekursiv/AEPT energetisch/AEPT energiearm/AEPT energiebewusst/AEPT energiefressend/AEPT energiegeladen/AEPT energielos/AEPT energiepolitisch/AEPT energiereich/AEPT energietechnisch/AEPT energisch/ACEPT enervieren/DIOXY eng/ACEPT engagieren/DIOXY engagiert/ACEPTX engagierte/ACNRSZ engelhaft/AEPT engherzig/AEPT engl engl. englisch/ACEPTU englischsprachig/AEPT engmaschig/AEPT engspurig/AEPT engstirnig/AEPT engte/NVZ engten/IVWX engumrissen/AEPT engverbunden/AEPT enorm/ACEPT entarten/DIOXY entband/PZ entbehren/DIOXY entbehrlich/ACEPTU entbieten/DIX entbinden/DIX entblättern/DIOWXY entblößen/DIOXY entböte/NZ entboten/IWX entbrannte/NZ entbrennen/DIX entbunden/AEPT entdecken/DIOXY entehren/DIOXY enteignen/DIOXY enteilen/DIOXY enteisen/DIOXY enterben/DIOXY entern/DIXY entfällt/X entfärben/DIOXY entfachen/DIOXY entfahren/DI entfallen/ADEIPT entfalten/DIOXY entfernen/BDIOXY entfernt/ACEPTX entfesseln/DIOXY entfetten/DIOXY entfiel/EPZ entfilzen/DIOXY entflammen/DIOXY entflechten/BDIOXY entfliehen/DIX entflohen/AEPTWX entfremden/DIOXY entführen/DIOXY entfuhr/PZ entgangen/AEPT entgegen entgegenarbeiten/DIXY entgegenblickt/X entgegenbringen/DIX entgegeneilen/DIXY entgegengearbeitet/AEPT entgegengebracht/AEPT entgegengeeilt/AEPT entgegengegangen/AEPT entgegengehalten/AEPT entgegengehen/DIX entgegengekommen/AEPT entgegengelaufen/AEPT entgegengenommen/AEPT entgegengesehen/AEPT entgegengesetzt/AEPT entgegengestanden/AEPT entgegengestellt/AEPT entgegengetreten/AEPT entgegengewirkt/AEPT entgegenhalten/DI entgegenkam/PZ entgegenkommen/DIX entgegenlaufen/DI entgegennehmen/DI entgegensah/PZ entgegensehen/DI entgegensetzen/DIXY entgegensieht/X entgegenstand/PZ entgegenstehen/DIX entgegenstellen/DIXY entgegenstrecken/DIXY entgegentreten/DI entgegenwachsen/DI entgegenwirken/DIXY entgegenzubringen/D entgegenzustellen/D entgegenzutreten entgegnen/DIXY entgehen/BDIX entgeistert/AEPT entgeltfrei/AEPT entgeltlich/AEPTU entgiften/DIOXY entging/EPZ entginge/NZ entgleisen/DIOXY entgleiten/DIX entglitten/AEPTWX entgolten/AEPT entgraten/DIOXY enthältst/WX enthäuten/DIOXY enthaaren/DIOXY enthalten/ADEIPT enthaltsam/ACEPTU enthaupten/IOXY entheben/DIX enthielt/EPZ enthoben/AEPTWX enthüllen/DIOXY enthusiastisch/AEPT entkämen/IX entkam/PZ entkeimen/DIOXY entkleiden/DIOXY entkommen/ABDEIPTX entkoppeln/BDIOXY entkorken/IXY entkräften/DIOXY entlädt/X entlässt entläuft/X entladen/ADEIPT entlang entlangfährt/X entlanggefahren/AEPT entlanggegangen/AEPT entlanggehen/DIX entlanggelaufen/AEPT entlangwandern/DIXY entlangzufahren entlangzugehen entlangzulaufen entlarven/DIOXY entlassen/ADEIPT entlasten/DIOXY entlaufen/ADEIPT entlausen/IOXY entledigen/DIOXY entleeren/DIOXY entlegen/ACEPT entlehnen/DIOXY entleibt/AEPT entleihen/DIX entlief/EPZ entliehen/AEPTWX entließ/EPZ entlocken/DIOXY entlohnen/DIOXY entlüften/DIOXY entlud/PZ entmachten/DIOXY entmannen/DIOXY entmilitarisiert/AEPT entmündigen/DIOXY entmutigen/DIOXY entnähmen/IX entnahm/PZ entnehmen/BDI entnimmt/X entnommen/AEPT entpacken/DIXY entprellt/AEPT entpuppen/DIOXY entrann/PZ entrauben/DIOXY entrechten/DIOXY entreißen/DIX entrichten/DIOXY entriegeln/DIOXY entrinnbar/AEPTU entrinnen/BDIX entrissen/AEPTWX entrollen/DIOXY entronnen/AEPT entrücken/DIOXY entrüsten/DIOXY entrungen/AEPT entsagen/DIOXY entsandt/AEPT entsandte/ANRSZ entsann/PZ entschädigen/DIOXY entschärfen/DIOXY entscheidbar/AEPTU entscheiden/BDIX entscheidend/ACEPT entschied/EPZ entschieden/ACEIPTWX entschläfst entschlacken/DIXY entschlafen/I entschlief/PZ entschließen/IX entschlössen/IX entschlossen/ACEPTWX entschlüpfen/DIOXY entschlüsseln/DIOXY entschlussfreudig/AEPT entschuldbar/AEPTU entschulden/BDIOXY entschuldigen/DIOXY entschwand/PZ entschweben/DIOXY entschwinden/DIX entschwunden/AEPT entseelt/AEPT entsenden/DIOXY entsetzen/DIOXY entsetzlich/ACEPT entsichern/DIOXY entsinnen/IX entsorgen/IXY entspannen/DIOWXY entspannungsfreundlich/AEPT entspinnen/DIX entspr entspr. entsprächen/IX entsprängen/IX entsprach/PZ entsprang/PZp entsprechen/DI entspricht/X entsprießen/DIX entspringen/DIX entsprochen/AEPT entsprossen/AEPTWX entsprungen/AEPT entstammen/DIOXY entstanden/AEPTWX entstehen/DIX entstellen/DIOXY entstieg/PZ entströmen/IXY entstünde/N enttäuschen/DIOXY enttäuschenderweise enttarnen/DIOXY entthronen/IOXY entwässern/DIOXY entwachsen/AEIPT entwaffnen/DIOXY entwarf/PZ entweder entweichen/DIWX entweihen/DIOXY entwenden/DIOXY entwerfen/DI entwerten/DIOXY entwich/EPZ entwichen/AEIPTWX entwickeln/BDIOXY entwicklungsbedürftig/AEPT entwicklungsfähig/AEPT entwicklungspolitisch/AEPT entwinden/DIX entwirft/WX entwirren/DIOXY entwischen/DIOXY entwöhnen/DIOXY entworfen/AEPT entwürdigen/DIOXY entwurzeln/DIOXY entzaubern/DIOXY entzerren/DIOXY entziehen/DIX entziffern/BDIOXY entzöge/NZ entzogen/AEPTWX entzücken/DIOXY entzückend/ACEPT entzündbar/ACEPT entzünden/BDIOXY entzündlich/AEPT entzweibrechen/DI entzweien/DIOWXY entzweigebrochen/AEPT entzweigegangen/AEPT entzweigehen/DIX enzyklopädisch/AEPT eo epidemisch/AEPT episch/AEPT epistemologisch epochal/AEPT epsilon er/C erachten/DIOXY erahnen/DIOXY erarbeiten/DIOXY erbärmlich/AEPT erbarmen/DIXY erbarmungslos/AEPT erbarmungswürdig/AEPT erbat/PZ erbauen/DIOXY erbaulich/AEPT erbberechtigt/AEPT erbeben/DIXY erben/DIVXY erbeten/AEPT erbeuten/DIOXY erbfähig/AEPT erbieten/DIX erbitten/DIX erbittert/ACEPT erblassen/DIOXY erbleichen/DIOXY erblich/AEPT erblicken/DIOXY erblinden/DIOXY erblühen/DIOXY erbost/AEPT erboten/AEPTWX erbrächte/NZ erbrach/PZ erbrachen/OWX erbracht/AEPTWX erbrechen/DI erbricht/X erbringen/DIX erbrochen/AEPT erbt/EGPVX erbte/GNVZ erbten/GIVWX erdähnlich/AEPT erdacht/AEPTZ erden/DIXY erdenkbar/AEPTU erdenken/BIX erdenklich/AEPT erdichten/DIOXY erdig/AEPT erdnächste/ANRS erdnah/AEPT erdölproduzierend/AEPT erdolchen/DIOXY erdreisten/DIXY erdrosseln/DIOXY erdrücken/DIOXY erdschlusssicher erdulden/DIOXY ereifern/DIOXY ereignen/DIXY ereignislos/AEPT ereignisorientiert/AEPT ereignisreich/AEPT ereilen/DIOXY ererbt/AEPTZ erfährt/X erfahren/ABCDEIPTU erfahrungsgemäß/AEPT erfahrungsmäßig/AEPT erfand/PZ erfassen/BDIOXY erfinden/DIX erfinderisch/AEPT erfindungsreich/ACEPT erflehen/IXY erfocht/PZ erfolgen/DIOXY erfolggewohnt/AEPT erfolglos/ACEPT erfolgreich/ACEPT erfolgsbetont/AEPT erfolgversprechend/ACEPT erforderlich/AEPT erforderlichenfalls erfordern/DIOXY erforschen/BDIOXY erfragen/BDIOXY erfreuen/DIOXY erfreulich/ACEPTU erfreulicherweise erfrieren/DIX erfrischen/DIOXY erfroren/AEPTWX erfühlen/DIOXY erfüllbar/AEPTU erfüllen/BDIOXY erfuhr/PZ erfunden/AEPT ergäbe/N ergänzen/DIOXY ergab/PZ ergangen/AEPT ergattern/DIOXY ergaunern/DIOWXY ergeben/ADEIPT ergebnislos/AEPT ergehen/DIX ergibt/X ergiebig/ACEPTU ergießen/DIX erging/EPZ erglühen/DIOXY ergo ergötzen/DIOXY ergonomisch/AEPT ergoss/PZ ergrauen/DIOXY ergreifen/DIX ergreifend/ACEPT ergriffen/AEPTWX ergrimmen/DIOXY ergründen/BDIOXY erhält/L erhältst/WX erhängen/DIOXY erhärten/DIOXY erhaben/ACEPT erhalten/ADEIPT erhaltengeblieben/AEPT erhaltenswert/AEPT erhandeln/DIOXY erhaschen/DIOXY erheben/DIX erheblich/ACEPTU erheischen/DIOXY erheitern/DIOXY erhellen/DIOXY erhielt/EPZ erhitzen/DIOXY erhöbe/NZ erhöhen/DIOXY erhören/DIXY erhoben/AEPTWX erhoffen/DIOXY erholen/DIOXY erholsam/ACEPT erholungsbedürftig/AEPT erholungssicher/AEPT erinnern/DIOXY erkälten/DIOXY erkämpfen/DIOXY erkalten/DIOXY erkannt/AEPTU erkannte/ANRSZ erkaufen/DIOXY erkennbar/AEPTU erkennen/BDIX erkenntlich/ACEPT erkenntniskritisch/AEPT erkenntnislos erkenntnistheoretisch/AEPT erklären/BDIOXY erklärlich/ACEPTU erklärlicherweise erklang/PZ erklecklich/AEPT erklettern/DIOXY erklimmen/DIXY erklingen/DIX erklomm/PZ erkoren/AEPTWX erkranken/DIOXY erkunden/DIOXY erkundigen/DIXY erlässlich/AEPTU erlässt erläutern/DIOXY erläuterungsbedürftig/AEPT erlag/PZ erlahmen/DIOXY erlangen/DIOXY erlassen/ADEIPT erlauben/DIOXY erlaucht/AEPT erleben/BDIOXY erlebnisreich/AEPT erledigen/DIOXY erlegen/DIOXY erleichtern/DIOXY erleiden/DIX erlernen/BDIOXY erlesen/ACEPT erleuchten/DIOXY erliegen/DIX erließ/PZ erlischt/X erlitten/AEPTWX erlöschen/DIOXY erlösen/DIOXY erlöst/AEPTU erlogen/AEPT erlosch/PZ erloschen/AEPTW ermächtigen/DIOXY ermäßigen/DIOXY ermahnen/DIOXY ermatten/DIOXY ermessbar/AEPTU ermessen/BDI ermisst ermitteln/BDIOXY ermöglichen/DIOXY ermorden/DIOXY ermüden/DIOXY ermuntern/DIOXY ermutigen/DIOXY ernähren/DIOXY ernährungsbewusst/AEPT ernannt/AEPT ernannte/ANRSZ ernennen/DIX erneuern/BDIOXY erneut/AEPT erniedrigen/DIOXY ernst/ACELPT ernsthaft/ACEPT ernten/DIXY ernüchtern/DIOXY eröffnen/DIOXY erörtern/DIOXY erobern/DIOXY erodieren/DIOXY erotisch/ACEPT erotisieren/DIOXY erpicht/AEPT erpressen/BDIOXY erpresserisch/AEPT erproben/BDIOXY erquicken/DIOXY erquicklich/ACEPTU errätst/WX errang/PZ erraten/ADEIPT erratisch/AEPT errechenbar/AEPT errechnen/DIOXY erregbar/ACEPT erregen/BDIOXY erreichen/BDIOXY erreichenswert/AEPT erretten/DIOXY errichten/DIOXY erriet/EPZ erringen/DIX erröten/DIOXY errungen/AEPT ersäuft/X ersann/PZ ersatzpflichtig/AEPT ersatzweise ersaufen/DI erschaffen/ADEIPTWX erschallen/DIOXY erschauern/DIXY erscheinen/DIX erschienen/AEPTWX erschießen/DIX erschlägt/X erschlaffen/DIOXY erschlagen/ADEIPT erschleichen/DIX erschlichen/AEPTWX erschließen/DIX erschlossen/AEPTUWX erschlug/PZ erschöpfen/DIOXY erschossen/AEPTWX erschrak/PZ erschrecken/DIOXY erschrickt/X erschrocken/AEPTU erschüttern/DIOXY erschütternd/ACEPT erschuf/PZ erschweren/DIOXY erschwindeln/DIOXY erschwingen/BDIOX erschwinglich/ACEPTU ersehen/BI ersehnen/DIOXY ersetzbar/ACEPT ersetzen/BDIOXY ersichtlich/ACEPTU ersieht/X ersinnen/DIOXY ersonnen/AEPT erspähen/IOXY ersparen/DIOXY erspielen/DIOXY ersprießlich/ACEPTU erst/AEPTW erstach/PZ erstammte erstanden/AEPTWX erstarken/DIOXY erstarren/DIOXY erstatten/DIOXY erstaunen/DIOXY erstaunlich/ACEPT erstaunlicherweise erstbeste/ANRS erstechen/DI erstehen/DIX ersteigen/DIX ersteigern/DIOXY erstellen/DIOXY ersten/SW erster/AEPT ersterben/DI erstgenannt/AEPT ersticht/X ersticken/DIOXY erstieg/PZ erstinstanzlich/AEPT erstklassig/AEPT erstmal/S erstmalig/AEPT erstochen/AEPT erstplatziert/AEPT erstrahlen/DIOXY erstrangig/AEPT erstreben/DIOXY erstrebenswert/ACEPT erstrecken/DIXY erststellig/AEPT erstürmen/DIOXY ersuchen/DIOXY ertappen/DIOXY ertasten/BDIOXY erteilen/DIOXY ertönen/DIOXY erträglich/ACEPTU erträgt/X ertränken/DIOXY erträumen/DIOXY ertragen/ABDEIPTW ertragreich/AEPT ertragsabhängig/AEPT ertragsgerecht/AEPT ertragslos/AEPT ertragsschwach/AEPT ertrank/PZ ertrinken/DIX ertrug/PZ ertrunken/AEPT ertüftelt/AEPT erturnen/DIOXY erübrigen/BDIOXY eruieren/DIOXY erwächst erwägen/DIX erwählen/IOXY erwähnen/DIOXY erwähnenswert/AEPT erwärmen/DIOXY erwachen/DIOXY erwachsen/ADEIPT erwandern/DIOXY erwarb/PZ erwarten/BDIOXY erwartungsfreudig/AEPT erwartungsgemäß/AEPT erwartungsvoll/AEPT erwecken/DIOXY erwehren/DIOXY erweichen/DIOXY erweisen/DIX erweislich/AEPT erweitern/BDIOXY erweiterungsfähig/AEPT erwerben/BDI erwerbsbehindert/AEPT erwerbsfähig/AEPT erwerbslos/AEPT erwerbstätig/AEPT erwerbsunfähig/AEPT erwidern/DIOXY erwiesen/AEPTWX erwiesenermaßen erwirbt/WX erwirken/DIOXY erwirtschaften/DIOXY erwischen/DIOXY erwogen/AEPTWX erworben/AEPT erwünscht/ACEPTU erwürgen/DIOXY erzählen/DIOWXY erzählerisch/AEPT erzbischöflich/AEPT erzdumm/AEPT erzengelhaft/AEPT erzeugen/BDIOXY erziehbar/AEPTU erziehen/BDIX erzieherisch/AEPT erziehungsberechtigt/AEPT erzielen/BDIOXY erzittern/DIOXY erzkonservativ/AEPT erzogen/AEPTWX erzogene/ANRSU erzürnen/DIOXY erzwang/PZ erzwingen/BDIX erzwungen/AEPT es/q eschatologisch/AEPT eselhaft/ACEPT eskalieren/DIOXY esoterisch/AEPT essen/BDI essentiell/AEPT essenziell/AEPT estnisch/AEPT et etablieren/DIOXY etagenförmig/AEPT etappenweise/ANRS etatmäßig/AEPT etc etc. ethisch/AEPT ethnisch/AEPT ethnologisch/AEPT ethologisch/AEPT etikettieren/DIOXY etliche/ANRS etwa/S etwaig/AEPT etymologisch/AEPT euch euer/A euklidisch/AEPT eulenartig/AEPT eulersch/AEPT euphorisch/AEPT eurasisch/AEPT euresgleichen eurigen europäisch/AEPT europaweit/AEPT evakuieren/DIOXY evaluieren/BDIOXY evangelisch/AEPT eventuell/AEPT evident/AEPT evolutionär/AEPT evtl evtl. ewig/AELPT exakt/AEPT exaltiert/ACEPT examinieren/DIOXY exegetisch/AEPT exekutieren/DIOXY exekutiv/AEPT exemplarisch/AEPT exerzieren/DIXY exhumieren/DIOXY exilpolnisch/AEPT exilungarisch/AEPT existent/AEPT existentiell/AEPT existenzbedrohend/AEPT existenzgefährdend/AEPT existenziell/AEPT existieren/DIXY exklusiv/ACEPT exogen/AEPT exotherm/AEPT exotisch/ACEPT expandieren/DIOXY expansionistisch/AEPT expansionsfähig/ACEPT expansiv/ACEPT experimentell/AEPT experimentieren/DIXY explizit/AEPT explodieren/DIOXY explosionsartig/AEPT explosionsfähig/AEPT explosionsgefährdet/AEPT explosionsgeschützt/AEPT explosiv/ACEPT exponentiell/AEPT exponieren/DIOXY exponiert/ACEPTX exponierte/ACNRSZ exportieren/BDIOXY exportorientiert/AEPT express expressionistisch/AEPT expressis expressiv/AEPT exquisit/AEPT ext. ext/W extensiv/AEPT extern/AEPT exterritorial/AEPT extra extrahieren/DIOXY extrapolieren/BDIOXY extravagant/ACEPT extrem/ACEPT extremistisch/AEPT extrudieren/DIOXY exzellent/AEPT exzentrisch/AEPT exzessiv/ACEPT fächeln/DIXY fächerförmig/AEPT fächern/DIXY fächerübergreifend/AEPT fädeln/DIXY fähig/ACEPTU fährt/VX fällen/DIXY fällig/AEGPT fällst/GV fälschen/BDIVXY fälschlich/AEPT fälschlicherweise fälscht/EGPVX fälschte/GNVZ fälschten/GIVWX fände/NZ fängt/VX färben/BDIVXY fabelhaft/AEPT fabrikneu/AEPT fabrizieren/DIOXY facettenreich/AEPT fach/AELPT fachärztlich/AEPT fachen/IWXY fachgemäß/ACEPT fachgerecht/ACEPT fachkundig/ACEPT fachlich/ACEPT fachmännisch/ACEPT fachsimpeln/IXY fachspezifisch/AEPT fackelähnlich/AEPT fackeln/DIXY facto fade/ACNRS fadenscheinig/ACEPT fahl/ACEPT fahnden/DIXY fahrbar/ACEPTU fahrbereit/AEPT fahren/BDGIV fahrig/ACEPT fahrlässig/ACEPT fahrplanmäßig/AEPT fair/AEPTU fakirhaft/AEPT faktisch/AEPT fakturieren/IOXY fakultativ/AEPT falb/AEPT fallen/DGIV falls fallschirmähnlich/AEPT fallsüchtig/AEGPT fallweise falsch/AEPT falsche/ACNRS falschspielen/DIXY falten/DIXY faltenfrei/AEPT faltig/ACEPT familiär/ACEPT familienbetrieben/AEPT familienfremd/AEPT familiengerecht/AEPT familienunabhängig/AEPT famos/ACEPT fanatisch/AEPT fand/PZ fangbewehrt/AEPT fangen/DGIV fantasielos/ACEPT fantasiereich/ACEPT fantasievoll/ACEPT fantastisch/ACEPT farbecht/AEPT farbenblind/AEPT farbenfreudig/AEPT farbenfroh/AEPT farbenprächtig/ACEPT farbenreich/AEPT farbfähig/AEPT farbgraphisch/AEPT farbig/ACEPT farblich/AEPT farblos/ACEPT faschistisch/AEPT faseln/DIXY faselt/EGPX faserig/ACEPT fassbar/AEPTU fassen/BDIVXY fassettenreich/AEPT fasst/EGPV fasste/GNVZ fassten/GIVWX fassungslos/ACEPT fasten/DIWXY fastet/EGPWX faszinieren/DIOXY faszinierend/ACEPT fatal/ACEPT fatalistisch/AEPT fauchen/DIXY faul/ACEPTZ faulen/DIWXY faulenzen/DIXY faulenzt/EGPX faulig/AEPT faulte/GNVZ faulten/GIVWX faustdick/AEPT faustgroß/AEPT favorisieren/IOXY faxen/DIXY fechten/DIVX federführend/AEPT federgewichtig/AEPT federleicht/AEPT federn/DIXY feenhaft/ACEPT fegen/DIXY fehlen/BDIVWXY fehleranfällig/AEPT fehlerbehaftet/AEPT fehlerfrei/AEPT fehlerhaft/ACEPT fehlerlos/AEPT fehlertolerant/AEPT fehlgeleitet/AEPT fehlgeschlagen/AEPT fehlinterpretieren/DIOXY fehlschlägt/X fehlschlagen/DI fehlschlug/PZ fehlt/EGPVWX fehlte/GNVZ fehlten/GIVWX feierlich/ACEPT feiern/DIXY feig/ACEPT feilbieten/DIX feilen/DIWXY feilschen/DIXY feilzubieten/D fein/ACEPTU feindlich/ACEPT feindselig/AEPT feineinstellen/DIXY feinfühlig/ACEPT feingespitzt/AEPT feinhäutig/AEPT feinhörig/ACEPT feinkörnig/AEPT feinmaschig/AEPT feinmechanisch/AEPT feinnervig/AEPT feinschmeckerisch/AEPT feinsinnig/AEPT feinstverteilt/AEPT feinverteilt/AEPT feldüberlegen/AEPT felsenfest/AEPT felsig/ACEPT feminin/AEPT fern/ACEPT fernab fernabgelegen/AEPT fernbedienbar/AEPT fernbleiben/DIX fernblieb/EPZ ferneingestellt/AEPT fernerhin ferngeblieben/AEPT ferngehalten/AEPT ferngeladen/AEPT ferngelenkt/AEPT ferngesteuert/AEPT ferngezündet/AEPT fernkontrolliert/AEPT fernladbar/AEPT fernlenken/BDIXY fernmeldetechnisch/AEPT fernmündlich/AEPT fernöstlich/AEPT fernschriftlich/AEPT fernsehen/DI fernsichtig/AEPT fernsieht/X fernzubleiben fernzuhalten/D ferromagnetisch/AEPT fertig/ACEPTZ fertigen/DIWXY fertigte/GNVZ fertigten/GIVWX fertigungstechnisch/AEPT fesch/ACEPT fesseln/DIWXY fesselnd/ACEPT fest/ACELPT festbinden/DIX festfahren/DI festgebunden/AEPT festgefahren/AEPT festgehalten/AEPT festgeklebt/AEPT festgeklemmt/AEPT festgelegt/AEPT festgemacht/AEPT festgenagelt/AEPT festgenommen/AEPT festgeschnallt/AEPT festgeschraubt/AEPT festgeschrieben/AEPT festgesetzt/AEPT festgestanden/AEPT festgesteckt/AEPT festgestellt/AEPT festgezogen/AEPT festhältst/WX festhalten/DI festhielt/EPZ festigen/DIVXY festigt/EGPVX festigte/GNVZ festigten/GIVWX festkleben/DIXY festlegen/BDIXY festlich/ACEPT festliegen/DIX festmachen/DIXY festmontieren/DIOXY festnageln/DIXY festnehmen/DI festnimmt/X festschmoren/DIXY festschnallen/BDIXY festschrauben/IXY festschreiben/BIX festschrieb/PZ festsetzen/DIXY festsitzen/DIX festspannen/DIXY feststand/PZ feststecken/DIXY feststehen/DIX feststellen/BDIXY feststünde/N festverzinslich/AEPT festziehen/DIX festzuhalten/D festzukrallen festzulegen/D festzumachen/D festzunehmen/D festzuschrauben/D festzuschreiben/D festzusetzen/D festzustehen festzustellen/D fett/ACEPT fettfrei/AEPT fettig/ACEPT fettschwitzend/AEPT fetzig/AEPT feucht/ACEPT feuchtfröhlich/AEPT feuchtigkeitsgeschützt/AEPT feudal/ACEPT feuerfest/ACEPT feuergefährlich/AEPT feuern/DIVXY feuerrot/AEPT feuersicher/AEPT feuert/EGPVX feuerte/GNVZ feuerten/GIVWX feurig/ACEPT ff ff. fichtst/VWX ficken/DIWXY fidel/EPT fideler/AEPT fieberartig/AEPT fieberfrei/AEPT fieberhaft/ACEPT fieberig/AEPT fiebern/DIXY fiebert/EGPX fiel/EGPVZ fiele/GNV fielen/GIVWX fielt/GVWX fies/ACEPT figürlich/AEPT fiktiv/AEPT filetieren/DIOWXY filigran/AEPT filmen/BDIVXY filmisch/AEPT filmt/EGPVX filmte/GNVZ filmten/GIVWX filterlos/AEPT filtern/DIXY filzig/AEPT final/AEPT finanziell/AEPT finanzieren/BDIOXY finanzkräftig/AEPT finanzpolitisch/AEPT finanztechnisch/AEPT finden/BDIX findig/ACEPT fing/PVZ fingerig/AEPT fingieren/DIOXY finnisch/AEPT finster/ACEPT firmeneigen/AEPT firmenspezifisch/AEPT firmenübergreifend/AEPT fischen/DIXY fischreich/ACEPT fiskalisch/AEPT fit fitte/ACNRS fix/AEPT fixen/DIWXY fixieren/DIOXY fixt/EGPW flächendeckend/AEPT flächenmäßig/AEPT flämisch/AEPT flach/ACEPT flachbrüstig/AEPT flachdrücken/DIXY flachhüglig/AEPT flackern/DIXY flackert/EGPX flaggen/DIXY flaggt/EGPX flagrante/ANRS flammen/BDIXY flankieren/DIXY flankte flanschen/IXY flanscht/EGPX flatterhaft/ACEPT flattern/DIXY flattert/EGPX flau/ACEPT flaumig/AEPT flechten/BDIX flechtend/AEPTV fleckenlos/AEPT fleckig/AEPT flegelhaft/AEPT flehen/DILXY fleht/EGPX fleißig/ACEPT fleischfarben/AEPT fleischig/AEPT fleischlich/AEPT fleischlos/AEPT flektierbar/AEPTU flektieren/BDIOWXY flennen/DIXY fletschen/DIXY fleucht flexibel/ACU flichtst/VWX flicken/DIXY fliegen/DIVWX fliegerisch/AEPT fliehen/DIWX fließen/DIVX flimmern/DIXY flink/AEPT flirten/DIXY flitzen/DIXY flitzt/EGPX flöge/NZ flöhen/IX flößen/DIXY flösse/NZ flöten/DIXY flötet/EGPWX flocht/PVZ flochten/GVWX flocken/DIXY flockig/AEPT flog/PVZ flogen/GVWX floh/PZ florettartig/AEPT florieren/DIXY floss/PVZ flossen/GVWX flott/AEPT flottgehend/AEPT flottgemacht/AEPT flottmachen/DIXY flottzumachen/D flüchten/DIXY flüchtig/ACEPT flüchtlingsfrei/AEPT flügellos/AEPT flügge/ANRS flüssig/ACEPT flüssigkeitsgefüllt/AEPT flüstern/DIXY fluchen/DIVXY flucht/EGPVX fluchtartig/AEPT fluchtbereit/AEPT flugerfahren/AEPT flugmedizinisch/AEPT flugs flugtauglich/AEPT flugtechnisch/AEPT fluktuieren/DIXY flunkern/DIXY flunkert/EGPX fluoreszieren/DIXY flussabwärts flussaufwärts flutschen/DIXY föderal/AEPT föderalistisch/AEPT föderativ/AEPT föhnen/DIXY föhnig förderlich/ACEPT fördern/DIXY förderungsbedürftig/AEPT förmig/AEPTU förmlich/ACEPTU focht/PVZ fokussieren/DIOXY folgen/DIVXY folgendermaßen folgenlos/AEPT folgenreich/AEPT folgenschwer/ACEPT folgerichtig/AEPT folgern/DIXY folgewidrig/AEPT folglich folgsam/ACEPTU folgt/EGPVX foliengeschützt/AEPT foltern/DIXY foppen/DIXY forcieren/DIOXY fordern/DIXY forellenblau/AEPT forma formal/ACEPT formalisieren/BDIOXY formalistisch/ACEPT formaljuristisch/AEPT formatieren/BDIOXY formell/ACEPT formelmäßig/AEPT formen/BDIVXY formgerecht/AEPT formgeschichtlich/AEPT formieren/DIOXY formlos/ACEPT formschön/ACEPT formt/EGPVX formte/GNVZ formten/GIVWX formulieren/BDIOXY formvollendet/AEPT forsch/AEPTZ forschen/DIWXY forschungsfreudig/AEPT forschungsorientiert/AEPT forstlich/AEPT forstwirtschaftlich/AEPT fort fortan fortbestanden/AEPT fortbestehen/DIX fortbestünde/NZ fortbewegen/DIOXY fortbilden/DIXY fortbleiben/DIX fortdauern/DIXY fortentwickeln/IXY fortfährt/X fortfahren/DI fortfallen/DI fortfegen/DIXY fortfiel/EPZ fortfliegen/DIX fortführen/DIXY fortgebildet/AEPT fortgeblieben/AEPT fortgebracht/AEPT fortgefahren/AEPT fortgefallen/AEPT fortgeflogen/AEPT fortgeführt/AEPT fortgegangen/AEPT fortgehen/DIX fortgekommen/AEPT fortgelassen/AEPT fortgelaufen/AEPT fortgelebt fortgepflanzt/AEPT fortgeräumt/AEPT fortgerissen/AEPT fortgeschafft/AEPT fortgeschrieben/AEPT fortgeschritten/AEPT fortgesetzt/AEPT fortgestohlen/AEPT fortgestoßen/AEPT fortgeweht fortgezogen/AEPT fortging/EPZ fortholen/DIXY fortjagen/DIXY fortkommen/DIX fortlässt fortlassen/DI fortlaufen/DI fortleben/DIXY fortnimmt/X fortpflanzen/DIXY forträumen/DIXY fortrannte/NZ fortreißen/DIX fortschaffen/DIXY fortschreiten/DIX fortschrittlich/ACEPT fortsetzen/BDIXY fortspinnen/DIX fortspülen/DIXY fortstehlen/DI fortstoßen/DI fortwähren/DIXY fortziehen/DIX fortzubilden/D fortzudenken/D fortzufahren fortzuführen/D fortzugehen fortzulaufen fortzunehmen/D fortzupflanzen/D fortzureißen/D fortzuschaffen/D fortzuschicken/D fortzusetzen/D fortzuziehen/D fossil/AEPT fotogen/AEPT fotografieren/DIOXY fotografisch/AEPT fotokopierfähig/AEPT fototechnisch/AEPT fränkisch/AEPT fräße/NZ fräsen/DIWXY frachtfrei/AEPT fragen/BDIWXY fraglich/ACEPT fraglos/AEPT fragmentarisch/AEPT fragmentieren/DIOXY fragwürdig/ACEPT fraktal/AEPT fraktionslos/AEPT frankieren/DIOXY franko frankophil/ACEPT frankophon/AEPT französisch/AEPT französischsprachig/AEPT frappant/AEPT frappieren/DIXY fraß/PVZ fratzenhaft/AEPT frauenhaft/AEPT frauenlos/AEPT fraulich/ACEPT frech/ACEPT frei/ACEPTZ freiberuflich/AEPT freibeschriftbar/AEPT freidemokratisch/AEPT freidenkerisch/AEPT freien/DIWXY freifinanziert/AEPT freigab/PZ freigearbeitet freigeben/DI freigebig/ACEPT freigegeben/AEPT freigehabt freigehalten/AEPT freigekämpft/AEPT freigelassen/AEPT freigelegt/AEPT freigemacht/AEPT freigeräumt/AEPT freigeschaltet/AEPT freigeschwommen freigesetzt/AEPT freigesprochen/AEPT freigestanden freigestellt/AEPT freigewählt/AEPT freigeworden/AEPT freigibt/X freigiebig/AEPT freihändig/AEPT freihaben/DI freihalten/DI freiheitlich/ACEPT freiheraus freihielt/PZ freilassen/DI freilegen/DIXY freilich freimachen/DIXY freimütig/ACEPT freiprogrammierbar/AEPT freischaffend/AEPT freischalten/DIXY freischneiden/DIX freischweben/DIXY freischwimmen/DIX freisetzen/DIXY freisinnig/AEPT freisprechen/DI freistehend/AEPT freistellen/DIXY freitags freitragend/AEPT freiwerden/DI freiwillig/AEPTU freizügig/ACEPT freizugeben/D freizuhalten/D freizukämpfen/D freizulegen/D freizumachen/D freizuschalten/D freizuschütteln freizusprechen/D fremd/AEPT fremdartig/AEPT fremdbezogen/AEPT fremdgesteuert/AEPT fremdländisch/AEPT fremdsprachig/AEPT fremdsprachlich/AEPT frenetisch/AEPT frequentieren/IOXY frequenzabhängig/AEPT frequenzmoduliert/AEPT frequenzprogrammierbar/AEPT frequenzunabhängig/AEPT fressen/DGI freudestrahlend/AEPT freudevoll/AEPT freudig/ACEPT freudlos/ACEPT freudvoll/AEPT freuen/DIXY freundlich/ACEPTU freundlicherweise freundlichst/AEPTW freundlos/AEPT freundschaftlich/AEPT freut/EGPX frevelhaft/AEPT freveln/DIXY friedenserhaltend/AEPT friedensliebend/ACEPT friedenstörend/AEPT friedfertig/ACEPT friedlich/ACEPT friedliebend/AEPT friedlos/ACEPT frieren/DGIVX friesisch/AEPT frisch/ACEPT frisieren/DIOXY frisst/W fristen/DIXY fristgerecht/AEPT fristlos/AEPT frittieren/DIXY frivol/AEPT fröhlich/ACEPT frönen/DIXY frösteln/DIXY froh/ACEPT frohe/ACNRS frohlocken/DIXY frohsinnig/AEPT fromm/AEPT frontal/AEPT frontnah/AEPT fror/GPVZ froren/GVWX frostbeständig/AEPT frostig/ACEPT frostsicher/AEPT frottieren/IOXY frotzelte früh/ACEPT frühchristlich/AEPT frühe/ACNRS frühest/AEPTW frühesten/SW frühestmöglich/AEPT frühlingshaft/AEPT frühmenschlich/AEPT frühminoisch/AEPT frühmorgens frühneuzeitlich/AEPT frühreif/ACEPT frühsten/S frühstücken/DIXY frühstückt/EGPX frühzeitig/ACEPT fruchtbar/ACEPTU fruchten/BDIXY fruchtlos/AEPT frustrieren/DIOXY ftp fügen/DIVXY füglich fügsam/ACEPTU fügt/EGPVX fühlen/BDIXY führen/DIVXY führerlos/AEPT führt/EGPVX führte/GNVZ führten/GIVWX füllen/BDIVXY füllig/AEPT füllt/EGPVX füllte/GNVZ füllten/GIVWX fündig fünfaktig/AEPT fünfdreiviertel fünfeinhalb fünffach/AEPT fünfgeschossig/AEPT fünfhundert fünfhundertste/ANRS fünfjährig/AEPT fünfköpfig/AEPT fünfmal fünfprozentig/AEPT fünfstellig/AEPT fünft/AEPTW fünftägig/AEPT fünftausend fünfteilig/AEPT fünftel fünfundachtzig fünfundachtzigste/ANRS fünfunddreißig fünfunddreißigste/ANRS fünfundfünfzig fünfundfünfzigste/ANRS fünfundneunzig fünfundneunzigste/ANRS fünfundsechzig fünfundsechzigste/ANRS fünfundsiebzig fünfundsiebzigste/ANRS fünfundvierzig fünfundzwanzig fünfviertel fünfwöchig/AEPT fünfzehn fünfzehnfach/AEPT fünfzehnhundert fünfzehnprozentig/AEPT fünfzehntägig/AEPT fünfzehnte/ANRS fünfzig/R fünfzigjährig/AEPT fünfzigste/ANRS fünfzigtausend für/S fürchten/DIXY fürchterlich/ACEPT füreinander fürlieb fürsorgerisch/AEPT fürsorglich/ACEPT fürstlich/AEPT fürwahr füttern/DIVXY füttert/EGPVX fütterte/GNVZ fütterten/GIVWX fuchsen/DIXY fuchsrot/AEPT fuchsteufelswild/AEPT fuchteln/DIXY fuhr/PVZ fulminant/AEPT fummeln/DIXY fundamental/AEPT fundieren/DIOXY fungieren/DIXY funkeln/DIXY funkelnagelneu/AEPT funkelt/EGPX funken/DIXY funkferngesteuert/AEPT funktechnisch/AEPT funktional/AEPT funktionalistisch/AEPT funktionell/AEPT funktionieren/DIXY funktionsfähig/AEPT funktionsidentisch/AEPT funktionsmäßig/AEPT funktionstüchtig/AEPT funktionsunfähig/AEPT furchtbar/ACEPT furchtlos/ACEPT furchtsam/ACEPT furios/AEPT fußballbegeistert/AEPT fußballerisch/AEPT fußen/DIXY fußkrank/AEPT fusionieren/DIOXY futsch futtern/DIXY futuristisch/AEPT gäb/EPZ gähnen/DIXY gähnt/EGPX gängeln/DIXY gängig/ACEPT gänzlich/AEPT gären/DIXY gärtnerisch/AEPT gab/PVZ gabeln/DIXY gablig/AEPT gackern/DIXY gackert/EGPX gaffen/DIVXY gafft/EGPVX galant/ACEPT gallig/AEPT gallisch/AEPT galoppieren/DIXY galt/PVZ galv galvanisch/AEPT gamma gammlig/ACEPT gangbar/ACEPTU gangsterhaft/AEPT ganz/AEPT ganzheitlich/AEPT ganzseitig/AEPT ganztägig/AEPT ganzwöchig/AEPT ganzzahlig/AEPT gar/AEPT garantieren/DIOXY garni garnieren/DIOXY garstig/ACEPT gartenbautechnisch/AEPT gasartig/AEPT gasbetrieben/AEPT gasförmig/AEPT gasfrei/AEPT gastfreundlich/AEPT gastgebend/AEPT gastieren/DIXY gastlich/ACEPTU gastronomisch/AEPT gaukeln/DIWXY gazellenschlank/AEPT geächtet/AEPT geädert/AEPT geändert/AEPT geängstigt/AEPT geätzt/AEPT geäußert/AEPT geachtet/ACEPTU geadelt/AEPT geahndet/AEPTU geahnt/AEPTU gealtert/AEPT geangelt/AEPT geankert/AEPT gearbeitet/AEPT geartet/AEPT geatmet/AEPT geb. gebändigt/AEPT gebärden/DIXY gebären/DIX gebacken/AEPT gebadet/AEPT gebaggert/AEPT geballt/AEPT gebannt/AEPT gebar/PZ gebastelt/AEPT gebauscht/AEPT gebaut/AEPT gebefreudig/ACEPT gebeichtet/AEPT geben/DGIW gebend/AEPTV gebessert/AEPT gebeten/AEPTU gebetsmühlenartig/AEPT gebettet/AEPT gebeugt/AEPT gebeutelt/AEPT gebieten/DIX gebieterisch/AEPT gebietsfremd/AEPT gebildet/ACEPTU gebilligt/AEPT gebirgig/AEPT gebissen/AEPT geblasen/AEPT gebleicht/AEPT geblendet/AEPT geblieben/AEPT geblümt/AEPT gebogen/AEPT gebohrt/AEPT gebongt geboren/AEPTU geborgen/AEOPT geborgt/AEPT geborsten/AEPT geboten/AEPTWX gebräuchlich/ACEPTU gebräunt/AEPT gebracht/AEPT gebrandet/AEPT gebrandmarkt/AEPT gebrandschatzt/AEPT gebrannt/AEPT gebraten/AEPT gebrauchen/DIOXY gebrauchsfähig/AEPT gebrauchsfertig/AEPT gebraust/AEPT gebraut/AEPTX gebrechlich/ACEPT gebremst/AEPTU gebröckelt/AEPT gebrochen/AEPTU gebrüllt/AEPT gebrütet/AEPT gebrummt/AEPT gebückt/AEPT gebügelt/AEPT gebühren/DIXY gebührenbefreit/AEPT gebührenfrei/AEPT gebührenpflichtig/AEPT gebührlich/AEPTU gebündelt/AEPT gebürgt/AEPT gebürstet/AEPT gebürtig/AEPT gebüßt/AEPT gebucht/AEPT gebuddelt gebunden/AEPTU geburtenärmste/ANRS geburtenreich/AEPT gebuttert/AEPT gechartert/AEPT geckenhaft/AEPT gedämpft/AEPT gedacht/AEPT gedachte/ANRSZ gedankenlos/ACEPT gedankenreich/AEPT gedankenverloren/AEPT gedankenvoll/AEPT gedanklich/AEPT gedankt/AEPT gedauert/AEPT gedeckt/AEPTU gedehnt/AEPT gedeihen/DIX gedeihlich/AEPT gedemütigt/AEPT gedenken/DIX gedeutet/AEPT gedichtet/AEPT gediegen/ACEPT gediehen/AEPTWX gedient/AEPT gedörrt/AEPT gedoktort gedopt/AEPT gedrängt/AEPT gedrahtet gedreht/AEPT gedrillt/AEPT gedrittelt/AEPT gedroht/AEPT gedrosselt/AEPT gedrückt/AEPT gedruckt/AEPT gedrungen/AEPT gedüngt/AEPT gedünstet/AEPT geduckt/AEPT geduftet/AEPT gedulden/DIOXY geduldig/ACEPTU gedungen/AEPT gedunsen/AEPT geduscht/AEPT geebnet/AEPT geehelicht/AEPT geehrt/AEPT geeicht/AEPT geeifert/AEPT geeignet/ACEPTU geeilt/AEPT geeinigt/AEPT geeint/AEPT geendet/AEPT geentert/AEPT geerbt/AEPT geerdet/AEPT geerntet/AEPT gefächert/AEPT gefädelt/AEPT gefährden/DIOXY gefährdet/ACEPTWX gefährlich/ACEPTU gefällig/ACEPTU gefälligst/AEPTW gefällt/AEPTX gefälscht/AEPT gefärbt/AEPTU gefahndet/AEPT gefahrbringend/ACEPT gefahren/AEPT gefahrenträchtig/ACEPT gefahrlos/ACEPT gefahrvoll/ACEPT gefallen/AEIPT gefallsüchtig/AEPT gefaltet/AEPT gefangen/AEPT gefasst/AEPT gefault/AEPT gefaxt/AEPT gefechtsbereit/AEPT gefegt/AEPT gefehlt/AEPT gefeiert/AEPT gefeilt/AEPT gefeit/AEPT gefertigt/AEPT gefesselt/AEPT gefestigt/AEPT gefeuert/AEPT gefickt/AEPT gefiedert/AEPT gefiel/EPZ gefilmt/AEPT gefiltert/AEPT gefischt/AEPT gefleckt/AEPT gefletscht/AEPT geflickt/AEPT geflimmert/AEPT geflissentlich/AEPT geflochten/AEPT geflogen/AEPT geflohen/AEPT geflossen/AEPT geflüchtet/AEPT geflügelt/AEPT geflüstert/AEPT geföhnt/AEPT gefördert/AEPT gefolgert/AEPT gefoltert/AEPT gefoppt/AEPT gefordert/AEPT geformt/AEPT geforscht/AEPT gefoult/AEPT gefräßig/ACEPT gefräst/AEPT gefragt/AEPTU gefreit/AEPT gefressen/AEPT gefrevelt/AEPT gefrieren/BDIX gefristet/AEPT gefroren/AEPTWX gefügig/ACEPTU gefühllos/ACEPT gefühlsbetont/ACEPT gefühlsduslig/AEPT gefühlsmäßig/AEPT gefühlsvoll/ACEPT gefühlt/AEPT gefühlvoll/ACEPT geführt/AEPT gefüllt/AEPT gefürchtet/ACEPT gefüttert/AEPT gefunden/AEPT gefunkt/AEPT gegängelt/AEPT gegärt/AEPT gegangen/AEPT gegeben/AEPT gegebenenfalls gegeneinander gegengewichtslos/AEPT gegengezeichnet/AEPT gegenläufig/AEPT gegensätzlich/ACEPT gegenseitig/AEPT gegenständlich/AEPT gegenstandslos/AEPT gegensteuern/DIXY gegenteilig/AEPT gegenüber gegenübergestanden/AEPT gegenübergestellt/AEPT gegenübergetreten/AEPT gegenüberliegen/DIX gegenübersähe/NZ gegenübersehen/DI gegenübersieht/X gegenüberstand/PZ gegenüberstehen/DIX gegenüberstellen/DIXY gegenübertreten/DI gegenüberzustehen gegenwärtig/AEPT gegenzeichnen/DIXY gegenzusteuern/D gegessen/AEPT geglättet/AEPT geglaubt/AEPT gegliedert/AEPT geglückt/AEPT gegnerisch/AEPT gegönnt/AEPT gegolten/AEPT gegossen/AEPT gegraben/AEPT gegriffen/AEPT gegrillt/AEPT gegründet/AEPT gegrüßt/AEPT gehäkelt/AEPT gehängt/AEPT gehänselt/AEPT gehärtet/AEPT gehässig/AEPT gehätschelt/AEPT gehäuft/AEPT gehabt/AEPT gehackt/AEPT gehalten/AEPTU gehaltreich/ACEPT gehaltvoll/AEPT gehandelt/AEPT gehandhabt/AEPT gehandikapt/AEPT gehangen/AEPT geharnischt/AEPT gehasst/AEPT gehaucht/AEPT gehauen/AEPT gehbehindert/AEPT geheftet/AEPT gehegt/AEPT geheiligt/AEPT geheilt/AEPTU geheim/ACEPT geheimdienstlich/AEPT geheimgehalten/AEPT geheimnisvoll/ACEPT geheimpolizeilich/AEPT geheimtuerisch/AEPT geheiratet/AEPT geheißen/AEPTU geheizt/AEPTU gehemmt/AEPTU gehen/DIVWX gehenkt/AEPT gehetzt/AEPT geheuchelt/AEPTU gehindert/AEPTU gehisst/AEPT gehören/DIOXY gehörig/AEPTU gehörlos/AEPT gehobelt/AEPTU gehoben/ACEPT geholfen geholt/AEPT gehorchen/DIXY gehorsam/ACEPTU gehortet/AEPT gehüllt/AEPT gehütet/AEPT geil/ACEPT geimpft/AEPT geißeln/DIXY geisterhaft/ACEPT geistern/DIXY geistesabwesend/AEPT geistesgegenwärtig/AEPT geistesgestört/AEPT geisteskrank/AEPT geistesschwächer/AEPT geistesschwächste/ANRS geistesschwach/AEPT geistesverwandt/AEPT geisteswissenschaftlich/AEPT geistig/AEPT geistlich/AEPT geistlos/ACEPT geistreich/ACEPT geisttötend/AEPT geistvoll/ACEPT geizen/DIXY geizig/ACEPT geizt/EGPX gejagt/AEPT gejittert gejubelt/AEPT gekämmt/AEPT gekabelt/AEPT gekachelt/AEPT gekannt/AEPT gekantet/AEPT gekappt/AEPT gekapselt/AEPTU gekaspert/AEPT gekaudert/AEPT gekauert/AEPT gekauft/AEPT gekaut/AEPT gekehrt/AEPT gekennzeichnet/AEPT gekentert/AEPT gekerbt/AEPT gekettet/AEPT gekidnappt/AEPT gekillt/AEPT gekippt/AEPT gekittet/AEPT gekitzelt/AEPT geklärt/AEPTU geklammert/AEPT geklaut/AEPT geklebt/AEPT gekleidet/AEPT geklemmt/AEPT geklont/AEPT gekloppt geklungen/AEPT geknackt/AEPT geknebelt/AEPT geknechtet/AEPT geknetet/AEPT geknickt/AEPT geknipst/AEPT geknöpft/AEPT geknüpft/AEPT geködert/AEPT geköpft/AEPT gekocht/AEPT gekommen/AEPT gekonnt/AEPT gekoppelt/AEPT gekränkt/AEPT gekräuselt/AEPT gekreuzigt/AEPT gekreuzt/AEPT gekrönt/AEPT gekrochen/AEPT gekrümmt/AEPT gekühlt/AEPT gekündigt/AEPT gekünstelt/AEPTU gekürzt/AEPTU geküsst/AEPT gelähmt/AEPT gelärmt/AEPT geläufig/ACEPT geläutert/AEPT geläutet/AEPT gelabt/AEPT geladen/AEPTU gelagert/AEPT gelandet/AEPT gelang/EPZp gelangen/DIOWXY gelangweilt/AEPT gelassen/ACEPT gelatcht gelaufen/AEPT gelaunt/AEPT gelaust/AEPT gelb/AELPT gelbgrün/AEPT geldgebend/AEPT geldgierig/AEPT geldpolitisch/AEPT gelebt/AEPT geleckt/AEPT geleert/AEPT gelegen/AELOPTU gelegt/AEPTU gelehrig/ACEPTU gelehrt/ACEPTU geleimt/AEPT geleistet/AEPT geleiten/DIOXY gelenkig/ACEPT gelenkt/AEPT gelernt/AEPTU gelesen/AEPTU geleugnet/AEPT gelichtet/AEPT geliebt/AEPTU geliefert/AEPT geliehen/AEPT geliftet/AEPTU gelindert/AEPT gelingen/DIX gelinkt/AEPT gelistet/AEPT gelitten/AEPT gellen/DIXY gelöscht/AEPTU gelöst/AEPTU geloben/DIOXY gelocht/AEPT gelockert/AEPT gelockt/AEPT gelogen/AEPT gelost/AEPT gelotst/AEPT gelten/DIV geltungsbedürftig/AEPT gelüftet/AEPT gelüsten/DIXY gelungen/AEPT gelyncht gemächlich/AEPT gemäht/AEPT gemäß/AEPT gemäßigt/AEPT gemästet/AEPT gemacht/AEPT gemahlen/AEPT gemahnt/AEPT gemalt/AEPT gemanagt/AEPT gemartert/AEPT gemaßregelt/AEPT gemauert/AEPT gemein/ACEPTU gemeindlich/AEPT gemeinerweise gemeingefährlich/ACEPT gemeingültig/AEPT gemeinhin gemeinnützig/AEPT gemeinsam/AEPT gemeinschaftlich/AEPT gemeint/AEPTW gemeinverständlich/AEPT gemeinwirtschaftlich/AEPT gemeistert/AEPT gemeldet/AEPT gemerkt/AEPT gemessen/AEPT gemeuchelt/AEPT gemieden/AEPT gemietet/AEPT gemildert/AEPT gemindert/AEPT gemischt/ACEPTU gemisst/AEPT gemistet/AEPT gemixt/AEPT gemocht/AEPT gemolken/AEPT gemountet/AEPT gemündet/AEPT gemünzt/AEPT gemütlich/ACEPTU gemütsfrei/AEPT gemütskrank/AEPT gemütvoll/AEPT gemultiplext gemurmelt/AEPT gemustert/AEPT gen/G genähert/AEPT genährt/AEPT genäht/AEPT genannt/AEPTU genau/ACEPTU genauso geneckt/AEPT genehm/ACEPT genehmigen/DIOXY genehmigungspflichtig/AEPT geneigt/AEPT generalisieren/BDIOXY generationenlang/AEPT generationsübergreifend/AEPT generell/ACEPT generieren/BDIOXY generisch/AEPT genesen/ADEIPTX genetisch/AEPT genial/ACEPT genieren/DIOXY genießen/BDIX genießerisch/AEPT genietet/AEPT genössen/IX genötigt/AEPT genommen/AEPT genormt/AEPT genoss/PZ genossenschaftlich/AEPT gentechnisch/AEPT gentechnologisch/AEPT genügen/DIXY genügend/ACEPTU genügsam/ACEPTU genüsslich/AEPT genug/p genussreich/ACEPT genusssüchtig/ACEPT genussvoll/AEPT genutzt/AEPTU geöffnet/AEPTU geölt/AEPT geografisch/AEPT geographisch/AEPT geohrfeigt/AEPT geologisch/AEPT geometrisch/AEPT geopfert/AEPT geophysikalisch/AEPT geopolitisch/AEPT geordert/AEPT geordnet/AEPTU geortet/AEPT geostationär/AEPT gepaart/AEPT gepachtet/AEPT gepackt/AEPT gepanscht/AEPT gepanzert/AEPT geparkt/AEPT geparsed gepeinigt/AEPT gepfändet/AEPT gepfeffert/AEPT gepfiffen/AEPT gepflanzt/AEPT gepflastert/AEPTU gepflegt/ACEPTU gepflückt/AEPT gepflügt/AEPT gepiesackt/AEPT geplättet/AEPT geplagt/AEPT geplant/AEPTU geplatzt/AEPT geplündert/AEPT gepolstert/AEPT gepolt/AEPT geprägt/AEPT geprallt/AEPT geprellt/AEPT gepresst/AEPT gepriesen/AEPT geprobt/AEPT geprüft/AEPTU geprügelt/AEPT gepuffert/AEPT gepumpt/AEPT gepunktet/AEPT gepurzelt/AEPT gepuscht/AEPT gepusht/AEPT geputzt/AEPT gequält/AEPT gequetscht/AEPT gequollen/AEPT gerächt/AEPTU gerädert/AEPT gerändelt/AEPT gerätetechnisch/AEPT geräuchert/AEPT geräumig/ACEPT geräumt/AEPT geräuschärmer/AEPT geräuschdämpfend/AEPT geräuschlos/ACEPT geräuschvoll/ACEPT gerade/ANRSU geradeaus geradebiegen/DIX geradebog/PZ geradehin geradenwegs geradestand/PZ geradestehen/DIX geradewegs geradezu geradlinig/AEPT gerafft/AEPT gerahmt/AEPT gerammt/AEPT gerannt geraten/AEIPTU geraubt/AEPT geraucht/AEPT geraum/AEPT geraunt/AEPT gerben/DIXY gerechnet/AEPTU gerecht/ACEPTU gerechtfertigt/ACEPTU geregelt/AEPTU gereichen/DIOXY gereift/AEPT gereimt/AEPTU gereinigt/AEPT gereist/AEPT gereizt/ACEPT gerettet/AEPT gerichtet/AEPTU gerichtlich/AEPT gerichtsfremd/AEPT gerichtsmäßig/AEPT gerichtsmedizinisch/AEPT gerichtsvorsitzend/AEPT gerieben/AEPT geriet/EPZ geriffelt/AEPT gerillt/AEPT gering/ACEPT geringfügig/AEPT geringpreisig/AEPT geringschätzig/AEPT geringwertig/AEPT gerinnen/DIX gerissen/AEPT geritten/AEPT geritzt/AEPT germanisch/AEPT gern/E geröchelt/AEPT geröntgt/AEPT geröstet/AEPT gerötet/AEPT gerochen/AEPT gerodet/AEPT gerollt/AEPT geronnen/AEPT gerontologisch/AEPT geroutet/AEPT gertenschlank/AEPT gerüchtweise gerückt/AEPT gerügt/AEPT gerühmt/AEPT gerührt/AEPTU gerüstet/AEPT gerüttelt/AEPT geruchlos/AEPT geruchsfrei/AEPT geruchtilgend/AEPT gerufen/AEPT geruhen/DIXY geruhsam/ACEPT gerundet/AEPT gerungen/AEPT gerunzelt/AEPT gerupft/AEPT gerutscht/AEPT gesägt/AEPT gesät/AEPT gesättigt/AEPTU gesäubert/AEPT gesäugt/AEPT gesäumt/AEPTU gesäuselt/AEPT gesackt/AEPT gesagt/AEPTU gesalbt/AEPT gesalzen/AEPTU gesammelt/AEPT gesamt/AEPT gesamtaktiv/AEPT gesamtdeutsch/AEPT gesamteuropäisch/AEPT gesamtgesellschaftlich/AEPT gesamtheitlich/AEPT gesamtkoreanisch/AEPT gesamtmenschlich/AEPT gesamtskandinavisch/AEPT gesamtstaatlich/AEPT gesamtverantwortlich/AEPT gesamtvietnamesisch/AEPT gesamtwirtschaftlich/AEPT gesandt/AEPT gesanglich/AEPT gesattelt/AEPT gesaugt/AEPT gesaust/AEPT geschädigt/AEPT geschäftig/ACEPT geschäftlich/AEPT geschäftsführend/AEPT geschäftskundig/ACEPT geschäftslos geschäftsmäßig/AEPT geschäftspolitisch/AEPT geschäftstüchtig/ACEPT geschähe/N geschäkert/AEPT geschält/AEPT geschämt/AEPT geschändet/AEPT geschärft/AEPT geschätzt/AEPT geschäumt/AEPT geschabt/AEPT geschachtelt/AEPT geschadet/AEPT geschaffen/AEOPT geschah/P geschallt/AEPT geschaltet/AEPT gescharrt/AEPT geschart/AEPT geschaudert/AEPT geschauert/AEPT geschaufelt/AEPT geschaukelt/AEPT geschaut/AEPT gescheffelt/AEPT geschehen/AEPTU gescheit/ACEPT gescheitelt/AEPT gescheitert/AEPTW geschellt/AEPT geschenkt/AEPT gescheppert/AEPT geschert/AEPT gescherzt/AEPT gescheucht/AEPT gescheuert/AEPT gescheut/AEPT geschichtet/AEPT geschichtlich/AEPTU geschichtslos/AEPT geschickt/ACEPTU geschieden/AEPT geschieht geschielt/AEPT geschienen/AEOPT geschient/AEPT geschifft/AEPT geschildert/AEPT geschillert/AEPT geschimmelt/AEPT geschimmert/AEPT geschimpft/AEPT geschirmt/AEPT geschissen/AEPT geschlängelt/AEPT geschlachtet/AEPT geschlackt/AEPT geschlafen/AEPT geschlagen/AEPTU geschlaucht/AEPT geschlechtlich/AEPTU geschlechtsspezifisch/AEPT geschleckt/AEPT geschleift/AEPT geschleißt/AEPT geschleppt/AEPT geschleudert/AEPT geschlichtet/AEPT geschliffen/AEPTU geschlissen/AEPT geschlossen/AEPT geschlüpft/AEPT geschlürft/AEPT geschluckt/AEPT geschlungen/AEPT geschmäht/AEPT geschmälert/AEPTU geschmackfrei/AEPT geschmacklich/AEPT geschmacklos/ACEPT geschmackvoll/ACEPT geschmeichelt/AEPT geschmeidig/AEPT geschmettert/AEPT geschmiedet/AEPT geschmiert/AEPT geschminkt/AEPTU geschmirgelt/AEPT geschmissen/AEPT geschmolzen/AEPT geschmort/AEPT geschmückt/AEPT geschmuggelt/AEPT geschnallt/AEPT geschneidert/AEPT geschniegelt/AEPT geschnitten/AEPT geschnitzelt/AEPT geschnitzt/AEPT geschnörkelt/AEPT geschnorrt/AEPT geschnürt/AEPT geschnupft/AEPT geschönt/AEPTU geschöpft/AEPT geschoben/AEPT geschockt/AEPT gescholten/AEPT geschont/AEPT geschossen/AEPT geschränkt/AEPT geschrammt/AEPT geschraubt/AEPT geschrieben/AEPTU geschrien/AEPT geschritten/AEPT geschröpft/AEPT geschrubbt/AEPT geschrumpft/AEPT geschürft/AEPT geschürt/AEPT geschürzt geschüttelt/AEPT geschüttet/AEPT geschützt/AEPTU geschuldet/AEPT geschult/AEPTU geschunden/AEPT geschuppt/AEPT geschustert/AEPT geschwächt/AEPT geschwängert/AEPT geschwänzt/AEPT geschwärzt/AEPT geschwätzig/ACEPT geschwefelt/AEPT geschweift/AEPT geschweißt/AEPT geschwenkt/AEPT geschwiegen/AEPT geschwind/AEPT geschwindigkeitsabhängig/AEPT geschwisterlos/AEPT geschwollen/AEPT geschwommen/AEPT geschworen/AEPT geschwunden/AEPT geschwungen/AEPT gesegnet/AEPT gesehen/AEPTU gesellen/DIOWXY gesellig/ACEPTU gesellschaftlich/AEPT gesellschaftsfähig/AEPT gesellschaftskritisch/AEPT gesellschaftspolitisch/AEPT gesendet/AEPTU gesengt/AEPT gesenkt/AEPT gesessen/AEPT gesetzeskonform/AEPT gesetzgebend/AEPT gesetzgeberisch/AEPT gesetzlich/AEPTU gesetzlos/AEPT gesetzmäßig/AEPT gesetzt/AEPT gesetzwidrig/AEPT gesichert/AEPTU gesichtet/AEPT gesichtslos/AEPT gesickert/AEPT gesiebt/AEPT gesiegelt/AEPT gesinnt/AEPT gesinnungslos/AEPT gesittet/AEPTU gesoffen/AEPT gesogen/AEPT gesondert/AEPT gesonnen/AEPT gesotten/AEPT gespachtelt/AEPT gespalten/AEOPT gespaltet/AEPT gespannt/ACEPT gespart/AEPT gespeichert/AEPT gespeist/AEPT gespendet/AEPT gespensterhaft/ACEPT gespenstisch/AEPT gesperrt/AEPT gespickt/AEPT gespiegelt/AEPT gespielt/AEPT gespien/AEPT gespießt/AEPT gespitzt/AEPT gesplittert/AEPT gesplittet/AEPT gespöttelt/AEPT gesponnen/AEPT gespornt/AEPT gespottet/AEPT gesprächig/ACEPT gespreizt/AEPT gesprengt/AEPT gesprenkelt/AEPT gesprießt/AEPT gesprintet/AEPT gespritzt/AEPT gesprochen/AEPT gesprüht/AEPT gesprudelt/AEPT gesprungen/AEPT gespült/AEPT gespürt/AEPT gespuckt/AEPT gespult/AEPT gespurtet/AEPT geständig/AEPT gestärkt/AEPT gestäubt/AEPT gestachelt/AEPT gestaffelt/AEPT gestalten/BDIOXY gestammelt/AEPT gestampft/AEPT gestand/PZ gestanden/AEPTWX gestanzt/AEPT gestapelt/AEPT gestartet/AEPT gestatten/DIXY gestaucht/AEPT gestaut/AEPT gesteckt/AEPT gestehen/DIX gesteift/AEPT gesteigert/AEPT gesteinigt/AEPT gestellt/AEPT gestemmt/AEPT gestempelt/AEPT gesteppt/AEPT gestern gesteuert/AEPT gestichelt/AEPT gestickt/AEPT gestiefelt/AEPT gestiegen/AEPT gestiftet/AEPT gestikulieren/DIXY gestillt/AEPT gestimmt/AEPT gestisch/AEPT gestöpselt/AEPT gestört/AEPTU gestochen/AEPT gestochert/AEPT gestockt/AEPT gestohlen/AEPT gestolpert/AEPT gestopft/AEPT gestoppt/AEPT gestorben/AEPT gestoßen/AEPT gestottert/AEPT gesträubt/AEPT gestrafft/ACEPT gestraft/AEPTU gestrandet/AEPT gestrauchelt/AEPT gestrebt/AEPT gestreckt/AEPT gestreichelt/AEPT gestreift/AEPT gestreng/AEPT gestresst/AEPT gestreunt/AEPT gestreut/AEPT gestrichelt/AEPT gestrichen/AEPT gestrickt/AEPT gestriegelt/AEPT gestriemt/AEPT gestrig/AEPT gestritten/AEPT gestrolcht/AEPT gestrudelt/AEPT gestückelt/AEPT gestülpt/AEPT gestürmt/AEPT gestürzt/AEPT gestützt/AEPT gestundet/AEPT gestupst/AEPT gestutzt/AEPT gesüffelt gesühnt/AEPTU gesünder/AEPTU gesündeste/ANRSU gesündigt/AEPT gesüßt/AEPT gesucht/ACEPT gesudelt/AEPT gesund/AEPTU gesunden/DIOWXY gesundgepflegt gesundheitlich/AEPT gesundheitsfördernd/AEPT gesundheitsgefährdend/AEPT gesundheitsschädigend/AEPT gesundheitsschädlich/ACEPT gesundschrumpfen/DIXY gesungen/AEPT gesunken/AEPT gesurrt/AEPT getäfelt/AEPT getändelt/AEPT getänzelt/AEPT getätigt/AEPT getätschelt/AEPT getäuscht/AEPT getadelt/AEPT getafelt/AEPT getagt/AEPT getakelt/AEPT getaktet/AEPT getan/AEPT getankt/AEPT getanzt/AEPT getappt/AEPT getarnt/AEPT getastet/AEPT getaucht/AEPT getauft/AEPT getaugt/AEPT getaumelt/AEPT getauscht/AEPT getaut/AEPT geteert/AEPT geteilt/AEPTU getestet/AEPTU getextet/AEPT gethront/AEPT getickt/AEPT getilgt/AEPT getippelt/AEPT getippt/AEPT getischlert/AEPT getönt/AEPT getötet/AEPT getoastet/AEPT getollt/AEPT getorkelt/AEPT getost/AEPT geträllert/AEPT getränkt/AEPT geträufelt/AEPT geträumt/AEPT getragen/AEPT getrampelt/AEPT getrappelt/AEPT getrauert/AEPT getraut/AEPT getreidelt/AEPT getrennt/AEPT getreten/AEPT getreu/AELPT getrieben/AEPT getrieft/AEPT getrillert/AEPT getrimmt/AEPTU getrippelt/AEPT getrödelt/AEPT getröpfelt/AEPT getröstet/AEPT getrocknet/AEPT getroffen/AEPT getrommelt/AEPT getropft/AEPT getrost getrottet/AEPT getrotzt/AEPT getrübt/AEPTU getrumpft/AEPT getrunken/AEPT getüftelt/AEPT getüncht/AEPT getürmt/AEPT getüttelt/AEPT getummelt/AEPT getunkt/AEPT getupft/AEPT geturnt/AEPT getuschelt/AEPT getuscht/AEPT getutet/AEPT getypt/AEPTU geübt/AEPTU geulkt/AEPT gevierteilt/AEPT gewählt/ACEPT gewähnt/AEPT gewähren/BDIOXY gewährgeleistet gewährleisten/DIOXY gewälzt/AEPT gewännen/IX gewärmt/AEPT gewachsen/AEOPT gewachst/AEPT gewacht/AEPTX gewackelt/AEPT gewaffnet/AEPT gewagt/ACEPT gewahrt/AEPTW gewallt/AEPT gewaltig/ACEPT gewaltlos/AEPT gewaltsam/ACEPT gewalttätig/ACEPT gewalzt/AEPT gewandelt/AEPT gewandert/AEPT gewandt/ACEPT gewann/PZ gewappnet/AEPT gewarnt/AEPT gewartet/AEPT gewaschen/AEPT gewassert/AEPT gewatet/AEPT gewatschelt/AEPT gewebefreundlich/AEPT gewebt/AEPT gewechselt/AEPT geweckt/AEPT geweht/AEPT geweidet/AEPT geweiht/AEPT geweißt/AEPT gewelkt/AEPT gewellt/AEPT gewendet/AEPT gewerbemäßig/AEPT gewerbetreibend/AEPT gewerblich/AEPT gewerbsmäßig/AEPT gewerkschaftlich/AEPT gewerkschaftseigen/AEPT gewerkt/AEPT gewertet/AEPT gewesen/AEPT gewettet/AEPT gewetzt/ACEPT gewichen/AEPTY gewichst/AEPT gewichten/DIOXY gewichtheben/DI gewichtig/ACEPT gewichtssparend/AEPT gewickelt/AEPT gewidmet/AEPT gewiegt/AEPT gewiehert/AEPT gewiesen/AEPT gewillt/AEPT gewimmelt/AEPT gewimmert/AEPT gewinnbringend/AEPT gewinnen/DIX gewinnmitnehmend/AEPT gewinnträchtig/ACEPT gewinselt/AEPT gewippt/AEPT gewirkt/AEPT gewirtschaftet/AEPT gewischt/AEPT gewispert/AEPT gewiss/AEPTU gewissenhaft/ACEPT gewissenlos/ACEPT gewissermaßen gewisslich gewitterig/AEPT gewittert/AEPT gewitzelt/AEPT gewitzt/ACEPT gewöhnen/DIOXY gewöhnlich/ACEPTU gewöhnlicherweise gewöhnungsbedürftig/AEPT gewölbt/ACEPT gewönnen/IX gewogen/AEPT gewohnheitsmäßig/AEPT gewohnt/AEPTU gewollt/ACEPTU gewonnen/AEPT geworben/AEPT geworden/AEPT geworfen/AEPT gewrungen/AEPT gewühlt/AEPT gewünscht/ACEPT gewürdigt/AEPT gewürfelt/AEPT gewürgt/AEPT gewürzt/ACEPT gewuchert/AEPT gewuchtet/AEPT gewunden/AEPT gewunken gewurstelt/ACEPT gewurzelt/AEPT gewusst/AEPT gezählt/AEPTU gezähmt/AEPTU gezahlt/AEPT gezahnt/AEPT gezapft/AEPT gezaubert/AEPT gezecht/AEPT gezeichnet/AEPTU gezeigt/AEPT gezerrt/AEPT gezeugt/AEPT gezielt/ACEPTU geziemen/DIXY geziemend/AEPTU geziert/AEPT gezimmert/AEPT gezinkt/AEPT gezirkelt/AEPT gezirpt/AEPT gezischelt/AEPT gezischt/AEPT gezögert/AEPT gezogen/AEPTU gezollt/AEPT gezüchtet/AEPT gezüchtigt/AEPT gezückt/AEPT gezügelt/AEPTU gezündet/AEPT gezürnt/AEPT gezuckert/AEPT gezupft/AEPT gezwängt/AEPT gezweifelt/AEPT gezwickt/AEPT gezwiebelt/AEPT gezwinkert/AEPT gezwitschert/AEPT gezwungen/AEPTU gezwungenermaßen ggf ggf. gibt/VWX gieren/DIWXY gierig/ACEPT gießen/DIVX giften/DIVXY giftfrei/AEPT giftgrün/AEPT giftig/ACEPTU gigantisch/AEPT giltst/VWX ging/EPVZ gipfeln/DIXY glänzen/DIXY glänzt/EGPX gläsern/AEPT glätten/DIXY gläubig/ACEPTU glamourös/AEPT glanzlos/AEPT glanzvoll/AEPT glasähnlich/AEPT glasieren/DIOXY glasig/AEPT glasklar/AEPT glatt/ACEPT glattgestellt glattstellen/DIXY glattweg glauben/DIWXY glaubhaft/ACEPT glaubwürdig/ACEPTU gleich/AEPTU gleichalterig/AEPT gleichartig/AEPTU gleichbedeutend/AEPT gleichberechtigt/AEPT gleichen/DIWX gleichend/AEPTV gleicher/AEPT gleichermaßen gleicherweise gleichfalls gleichfarbig/AEPT gleichförmig/AEPTU gleichgekommen gleichgemacht/AEPT gleichgeschlechtlich/AEPT gleichgesetzt/AEPT gleichgesinnt/AEPT gleichgestellt/AEPT gleichgetan gleichgezogen/AEPT gleichgroß/AEPT gleichgültig/AEPT gleichkäme/N gleichkam/PZ gleichkommen/DIX gleichlang/AEPT gleichlaufend/AEPT gleichmäßig/ACEPTU gleichmachen/DIXY gleichmütig/AEPT gleichnamig/AEPT gleichnishaft/AEPT gleichrangig/AEPT gleichsam gleichseitig/AEPT gleichsetzen/DIXY gleichspannungsmäßig gleichstark/AEPT gleichstehen/DIX gleichstellen/DIXY gleichtun/IX gleichviel gleichwertig/AEPT gleichwohl gleichzeitig/AEPTU gleichziehen/DIX gleichzuschalten/D gleichzusetzen/D gleichzustellen/D gleichzutun gleichzuziehen/D gleißend/AEPT gleiten/DIX glich/PVZ glichen/GVWX gliedern/DIXY glimmen/DIVXY glimpflich/AEPTU glitschig/ACEPT glitt/EPZ glitzern/DIXY global/AEPT glockenförmig/AEPT glockig/AEPT glorreich/ACEPT glotzen/DIXY glotzt/EGPX glückbringend/AEPT glücken/DIXY glücklich/ACEPTU glücklicherweise/U glücklos/AEPT glückselig/AEPTU glückstrahlend/AEPT glühen/DIVWXY gluckern/DIXY glucksen/DIXY glutäugig/AEPT gnädig/ACEPTU gnädigerweise gnadenlos/AEPT gödelisiert/AEPT gönnen/DIVXY gönnerhaft/AEPT gönnt/EGPVX gönnte/GNVZ gönnten/GIVWX göttlich/ACEPT goldbedeckt/AEPT goldbesetzt/AEPT goldbestickt/AEPT goldblond/AEPT golden/AEPT goldgelb/AEPT goldglänzend/AEPT goldhaltig/AEPT goldig/AEPT goldne/ANRS goldrichtig/AEPT gordisch/AEPT goss/PVZ gossen/GVWX gotisch/AEPT gottesfürchtig/AEPT gottgegeben/AEPT gottgesegnet/AEPT gottgewährt/AEPT gottgewollt/AEPT gottlob gottlos/AEPT gottverlassen/AEPT gouvernantenhaft/AEPT gräbt/VX grämen/DIVXY grämlich/AEPT grässlich/ACEPT grätig/AEPT gräulich/ACEPT graben/DGIV gradlinig/AEPT graduell/AEPT grafikfähig/AEPT grafisch/AEPT grammatikalisch/AEPT grammatisch/AEPT grandios/AEPT grantig/AEPT graphentheoretisch/AEPT graphikfähig/AEPT graphisch/AEPT graphitgrau/AEPT graphologisch/AEPT grasen/DIXY grasgrün/AEPT gratis gratulieren/DIXY grau/AEPTZ grauen/IWXY grauenerregend/ACEPT grauenhaft/ACEPT grauenvoll/ACEPT graugrün/AEPT grauhaarig/AEPT grausam/ACEPT grauschwarz/AEPT grausen/DIXY grausig/ACEPT grauslich/AEPT grautrist/AEPT grauweiß/AEPT gravieren/DIOXY gravierend/ACEPT grazil/AEPT graziös/AEPT greifbar/AEPTU greifen/BDIVWX greise/ANRS greisenhaft/AEPT grell/AEPT grellweiß/AEPT grenzen/BDIXY grenzenlos/ACEPT grenzprovokatorisch/AEPT grenzüberschreitend/AEPT griechisch/AEPT grienen/DIXY griesgrämig/AEPT griff/PVZ griffbereit/AEPT griffen/GVWX grifffest/AEPT griffig/ACEPT grillen/BDIWXY grimmig/ACEPT grimmschen grinsen/DIXY grinst/EGP gröber/AEPT gröbste/ANRS grölen/DIXY größenordnungsmäßig/AEPT größenwahnsinnig/AEPT größer/AEPT größte/ANRS größtenteils größtmöglich/AEPT grob/AEPT grobkörnig/AEPT grobmaschig/AEPT grobschlächtig/ACEPT grollen/DIXY groß/AEPT großartig/ACEPT großbäuerlich/AEPT großbürgerlich/AEPT großenteils großflächig/AEPT großformatig/AEPT großgezogen/AEPT großherzig/ACEPT großindustriell/AEPT großjährig/AEPT großmütig/AEPT großporig/AEPT großräumig/AEPT großsprecherisch/AEPT großspurig/AEPT großstädtisch/AEPT großstadtmüde/ANRS großstadtnah/AEPT großtechnisch/AEPT großtuerisch/AEPT großväterlich/AEPT großziehen/DIX großzügig/ACEPT grotesk/ACEPT grübeln/DIXY grübelt/EGPX grün/ACEPTZ grünbewachsen/AEPT gründen/DIXY gründlich/ACEPT grünen/DIWXY grünlich/AEPT grünlichbraun/AEPT grüßen/DIWXY grub/PVZ grundbuchamtlich/AEPT grundbuchlich/AEPT grundehrlich/AEPT grundfalsch/AEPT grundgesetzlich/AEPT grundieren/DIOXY grundlegend/AEPT grundlos/AEPT grundrechtlich/AEPT grundsätzlich/AEPT grundsolid/AEPT grundverschieden/AEPT grunzen/DIXY gruppieren/DIOXY gruseln/DIXY gruslig/AEPT gültig/AEPTU günstig/ACEPTU günstigenfalls günstigst/AEPTW gütig/ACEPT gütlich/AEPT gucken/DIVWXY guckt/EGPVWX gummiartig/AEPT gurgeln/DIXY gusseisern/AEPT gut/AEPTU gutartig/AEPT gutbetucht/AEPT gutbürgerlich/AEPT gutfundiert/AEPT gutgegangen gutgeheißen/AEPT gutgeschrieben/AEPT gutgesinnt/AEPT gutgewachsen/AEPT gutgläubig/AEPT gutheißen/DI gutherzig/AEPT gutmachen/BDIXY gutmütig/ACEPT gutnachbarlich/AEPT gutschreiben/DIX gutwillig/ACEPT gutzumachen/D gutzuschreiben/D gymnasial/AEPT gymnastisch/AEPT gynäkologisch/AEPT häkeln/DIXY hältst/VWX hämisch/ACEPT hämmern/DIXY händigen/IXY hängen/DIVXY hängig/AEPT hängt/EGPVX hängte/GNVZ hängten/GIVWX hänseln/DIXY härte/CNRZ härten/DIVXY härtet/EGPVWX härtete/GNVZ härteten/GIVWX hässlich/ACEPT hätscheln/DIVXY hätschelt/EGPVX hätschelte/GNVZ hätschelten/GIVWX hätte/NZ häufen/DIXY häufig/ACEPT häuslich/ACEPT haargenau/AEPT haarig/ACEPT haarlos/AEPT haarscharf/AEPT haarsträubend/ACEPT haben/DIW habgierig/ACEPT habhaft habsburgisch/AEPT habsüchtig/AEPT hacken/DIXY hadern/DIXY haften/BDIVXY haftet/EGPVWX haftpflichtig/AEPT hageln/DIXY hagelt/EGPX hager/ACEPT haken/DIVXY halb/AEPT halbamtlich/AEPT halbautomatisch/AEPT halbdunkel/A halbfertig/AEPT halbhell/AEPT halbherzig/AEPT halbhohe/ANRS halbieren/BDIOXY halbjährig/AEPT halbjährlich/AEPT halblang/AEPT halblaut/AEPT halbmast halbmilitärisch/AEPT halbnackt/AEPT halboffen/AEPT halbohnmächtig/AEPT halbrekursiv/AEPT halbschlau/AEPT halbseiden/AEPT halbsitzend/AEPT halbstark/AEPT halbstündig/AEPT halbtägig/AEPT halbtäglich/AEPT halbtags halbtot/AEPT halbverhungert/AEPT halbverkohlt/AEPT halbverscharrt/AEPT halbwegs halbwüchsig/AEPT half/PVZ halftern/DIXY hallen/DIVXY hallo halluzinieren/DIXY halogenfrei/AEPT halsbrecherisch/ACEPT halsstarrig/AEPT haltbar/ACEPTU halten/BDGIVW haltlos/ACEGPT handbreit/AEPT handeln/BDIVXY handelseinig/AEPT handelsgerichtlich/AEPT handelspolitisch/AEPT handelstechnisch/AEPT handelsüblich/AEPT handelt/EGPVX handelte/GNVZ handelten/GIVWX handfest/ACEPT handgearbeitet/AEPT handgeknüpft/AEPT handgeschrieben/AEPT handgestoppt/AEPT handgestrickt/AEPT handgewebt/AEPT handgreiflich/AEPT handhaben/BDI handlich/ACEPTU handlungsbevollmächtigt/AEPT handlungsfähig/AEPTV handlungsorientiert/AEPT handlungsunfähig/AEPT handschriftlich/AEPT handvoll/AEPT handwerklich/AEPT hanebüchen/AEPT hanseatisch/AEPT hanteln/DIXY hantieren/DIXY hapern/DIXY happig/AEPT hardlock hardlockgeschützt/AEPT hardwaregleich/AEPT hardwaremäßig/AEPT hardwareseitig/AEPT hardwarespezifisch/AEPT harken/IXY harmlos/ACEPT harmonieren/DIXY harmonisch/ACEPTU harmonisieren/DIOXY harren/DIVXY harsch/AEPT hart/AEPT hartherzig/ACEPT hartnäckig/ACEPT haschen/DIXY hascht/EGPX haselnussbraun/AEPT hassen/DIXY hasserfüllt/AEPT hasst/EGPV hasten/DIWXY hastet/EGPWX hastig/AEPT hat/X hatte/NZ hauchdünn/AEPT hauchen/DIWXY hauchfein/AEPT hauchzart/AEPT hauen/DGIVWXY haufenweise hauptamtlich/AEPT hauptberuflich/AEPT hauptbeteiligt/AEPT hauptsächlich/ACEPT hausbacken/AEPT hauseigen/AEPT hausen/DIXY hausfraulich/AEPT hausgemacht/AEPT haushälterisch/AEPT haushalten/DI haushaltspolitisch/AEPT haushoch haushohe/ANRS hausieren/DIXY hausintern/AEPT haust/EGPW hauswirtschaftlich/AEPT hauteng/AEPT hautnah/AEPT hebeln/DIXY hebelt/EGPX heben/DIX hebräisch/AEPT hecheln/DIXY hechten/DIXY hecken/IXY hedonistisch/AEPT heften/DIXY heftig/ACEPT hegen/DIXY hehlen/DIVXY heidnisch/AEPT heikel/AC heil/ACEPTZ heilbar/AEPTU heilbringend/AEPTU heilen/BDIWXY heilfroh/AEPT heilig/ACEPT heilklimatisch/AEPT heilkräftig/ACEPT heillos/AEPT heilpädagogisch/AEPT heilsam/ACEPT heimatlich/AEPT heimatlos/AEPT heimattreu/AEPT heimbegleiten/DIOXY heimbrachte/NZ heimbringen/DIX heimelig/ACEPT heimfahren/DI heimgegangen/AEPT heimgehen/DIX heimgekehrt/AEPT heimgekommen/AEPT heimgeleuchtet/AEPT heimgesucht/AEPT heimgezahlt/AEPT heimisch/AEPT heimkam/PZ heimkehren/DIXY heimkommen/DIX heimleuchten/DIXY heimlich/ACEPTU heimsen/IXY heimsuchen/DIXY heimtückisch/ACEPT heimwehkrank/AEPT heimzahlen/DIXY heimzuführen/D heimzukehren heimzukommen heimzureisen heimzusuchen/D heimzutragen/D heimzuzahlen/D heiraten/DIVXY heiratet/EGPVWX heiratete/GNVZ heirateten/GIVWX heiß/ACEPTZ heißblütig/ACEPT heißen/DGIWX heißend/AEPTV heißhungrig/AEPT heißlaufen/DI heiser/AEPT heiter/ACEPT heiterhell/AEPT heizen/BDIVXY hektisch/ACEPT heldenhaft/ACEPT heldenmütig/AEPT heldisch/AEPT helfen/DIV heliozentrisch/AEPT hell/ACEPTZ hellbeige hellblau/AEPT hellblond/AEPT hellen/DIWXY hellenisch/AEPT hellenistisch/AEPT hellgelb/AEPT hellgrau/AEPT hellgrüner/AEPT hellhäutig/AEPT hellhörig/AEPT helllicht/AEPT hellrot/AEPT hellseherisch/AEPT hellsichtig/ACEPT helltönend/AEPT hellwach/AEPT helvetisch/AEPT hemdsärmlig/AEPT hemmen/DIXY hemmungslos/ACEPT her herab herabdrücken/DIXY herabfahren/DI herabgedrückt/AEPT herabgefallen/AEPT herabgelassen/AEPT herabgelaufen herabgeschüttet/AEPT herabgesehen herabgesetzt/AEPT herabgesprungen herabgestiegen/AEPT herabgesunken/AEPT herabgewirtschaftet/AEPT herabgezogene herablassen/DI herabrinnt/X herabsacken/IXY herabsehen/DI herabsetzen/DIXY herabsteigen/DIX herabstieg/PZ herabstürzen/DIXY herabtreiben/DIX herabzusetzen/D heran heranbrachte/NZ heranbringen/DIX herandonnern/D heranfahren/DI heranführen/DIXY heranfuhr/PZ herangebracht/AEPT herangefahren/AEPT herangeführt/AEPT herangegangen/AEPT herangehen/DIX herangekommen/AEPT herangemacht herangerückt/AEPT herangeschafft/AEPT herangeschleppt/AEPT herangeschlichen/AEPT herangetragen/AEPT herangetreten herangewachsen/AEPT herangezogen/AEPT heranging/EPZ herankam/PZ herankommen/DIX heranmachen/DIXY herannahen/DIXY heranpirschen/DIXY heranrasen/DIXY heranreifen/DIXY heranschaffen/BDIXY heranschleichen/DIX heranstürmen/DIXY herantragen/DI herantrat/PZ herantreten/DI herantrittst/WX heranwächst heranwachsen/DI heranziehen/DIX heranzog/PZ heranzüchten/DIXY heranzubilden/D heranzuführen/D heranzugehen heranzukommen heranzutreten heranzuziehen/D herauf heraufbeschwören/DIXY heraufbeschworen/AEPTWX heraufgekommen/AEPT heraufgesetzt/AEPT heraufgestiegen/AEPT heraufgezogen/AEPT heraufkam/PZ heraufkommen/DIX heraufreichen/DIXY heraufschrauben/DIXY heraufsteigen/DIX heraufziehen/DIX heraufzuführen/D heraufzuholen/D heraus herausarbeiten/DIXY herausbekommen/AEIPTX herausbewegen/DIXY herausbilden/DIXY herausbringen/DIX herausdestillieren/IOXY herausdrehen/DIXY herausfällt/X herausfahren/DI herausfallen/DI herausfinden/DIX herausfischen/DIXY herausfordern/DIXY herausführen/IXY herausfuhr/PZ herausgab/PZ herausgearbeitet/AEPT herausgeben/DI herausgebildet/AEPT herausgebracht/AEPT herausgedreht/AEPT herausgefahren herausgefallenen/AEPT herausgefördert/AEPT herausgefordert/AEPT herausgeführt/AEPT herausgefunden/AEPT herausgegangen/AEPT herausgegeben/AEPT herausgegriffen/AEPT herausgehalten/AEPT herausgehen/DIX herausgehört/AEPT herausgehoben/AEPT herausgekommen/AEPT herausgekriegt/AEPT herausgelassen/AEPT herausgelöscht/AEPT herausgelockt/AEPT herausgenommen/AEPT herausgenudelt herausgeplatzt/AEPT herausgepumpt herausgequollen/AEPT herausgeragt/AEPT herausgeraten/AEPT herausgeredet/AEPT herausgerissen/AEPT herausgerückt/AEPT herausgerufen/AEPT herausgerutscht/AEPT herausgeschickt/AEPT herausgeschlagen/AEPT herausgeschleudert/AEPT herausgeschmuggelt/AEPT herausgeschnitten/AEPT herausgeschobenen/AEPT herausgeschrieben/AEPT herausgesprungen/AEPT herausgestellt/AEPT herausgestoppt/AEPT herausgestreckt/AEPT herausgestrichen/AEPT herausgetragen/AEPT herausgetreten/AEPT herausgewagt/AEPT herausgeworfen/AEPT herausgezogen/AEPT herausgleiten/DIX heraushältst/WX heraushängen/DIX herausheben/DIX heraushören/DIXY herausholen/DIXY herauskam/PZ herausklingen/DIX herauskommen/DIX herauskriegen/DIXY herauskristallisieren/IOXY herauslas/PZ herauslesen/BDIX herausließ/EPZ herauslöschen/DIXY herauslösen/DIXY herauslugen/DIXY herausnehmen/DI herausoperieren/DIOXY herauspicken/DIXY herausplatzen/DIXY herausquellen/DI herausragen/DIXY herausragendste/ANRS herausreden/DIXY herausreißen/DIX herausrieseln/IXY herausrücken/DIXY herausrufen/DIX herausschieben/DIX herausschießen/DIX herausschlagen/DI herausschmeißen/DIX herausschneiden/DIX herausschoss/PZ herausschrauben/DIXY herausspringen/DIX herausstanzen/DIXY heraussteht/X herausstellen/DIXY herausstrecken/DIXY herausstreichen/DIX heraussuchen/DIXY heraustrat/PZ heraustreten/DI heraustrittst/WX herauswagen/DIXY herauswarf/PZ herauswerfen/DI herauswirft/X herausziehen/DIX herauszuangeln/D herauszuarbeiten/D herauszubekommen/D herauszubringen/D herauszufahren herauszufinden/D herauszufischen/D herauszufordern/D herauszuführen/D herauszugeben/D herauszuhängen/D herauszuhalten/D herauszuholen/D herauszukehren/D herauszukommen herauszukopieren/D herauszukriegen/D herauszulesen/D herauszulösen/D herauszunehmen/D herauszupauken/D herauszuquetschen/D herauszureden herauszureißen/D herauszurücken/D herauszuschieben/D herauszuschinden/D herauszuschlagen/D herauszuschneiden/D herauszusteigen herauszustellen/D herauszuverstärken/D herauszuwerfen/D herauszuziehen/D herb/ACEPT herbei herbeieilen/DIXY herbeiführen/DIXY herbeigeeilt/AEPT herbeigeflogen/AEPT herbeigeführt/AEPT herbeigeholt/AEPT herbeigeredet/AEPT herbeigerufen/AEPT herbeigeschafft/AEPT herbeigesehnt/AEPT herbeigezogen/AEPT herbeirufen/DIX herbeischaffen/DIXY herbeisehnen/IXY herbeiwünschen/DIXY herbeiziehen/DIX herbeizubringen/D herbeizuführen/D herbeizuquasseln/D herbeizureden herbestellen/DIOXY herbewegen/DIXY herblättern/IXY herbringen/DIX herbstlich/AEPT herdrehen/DIXY herein hereinbitten/DIX hereinbrechen/DI hereinbricht/X hereinbringen/DIX hereinfallen/DI hereinführen/DIXY hereingebeten/AEPT hereingebracht/AEPT hereingebrochen/AEPT hereingefallen/AEPT hereingeführt/AEPT hereingekommen/AEPT hereingelassen/AEPT hereingelegt/AEPT hereingenommen/AEPT hereingeplatzt/AEPT hereingeschaut hereingeschneit/AEPT hereingesprungen hereingetragen/AEPT hereingezogenen/AEPT hereinholen/DIXY hereinkam/PZ hereinkommen/DIX hereinlassen/DI hereinlegen/DIXY hereinplatzen/DIXY hereinragen/DIXY hereinschauen/DIXY hereinschneien/DIXY hereinschwappen/DIXY hereinspazieren/DIOXY hereinstürmen/DIXY hereinzubitten/D hereinzufallen hereinzuholen/D hereinzukommen herfallen/DI herfiel/PZ herfuhr/PZ hergeben/DI hergebracht/AEPT hergefallen/AEPT hergegeben/AEPT hergehen/DIX hergekommen/AEPT hergelaufen/AEPT hergeleitet/AEPT hergemacht/AEPT hergenommen/AEPT hergerichtet/AEPT hergerührt/AEPT hergerufen/AEPT hergeschaltet hergeschickt/AEPT hergeschoben/AEPT hergeschrieben/AEPT hergesehen hergestammt hergestellt/AEPT hergewagt/AEPT hergezogen/AEPT hergibt/X herging/EPZ herhalten/DI herhasten/DIXY herhüpfen/DIXY herkam/PZ herkömmlich/AEPT herkommen/DIX herlaufen/DI herleiten/BDIXY herlief/PZ herlocken/DIXY hermachen/DIXY hermetisch/AEPT hernach hernehmen/DI hernieder heroinsüchtig/AEPT heroisch/AEPT herrenlos/AEPT herrichten/DIXY herrisch/ACEPT herrlich/ACEPT herrschaftlich/AEPT herrschen/DIXY herrscht/EGPX herrühren/DIXY herrufen/DIX herschieben/DIX herschreiben/DIX hersehen/DI herstammen/DIXY herstellen/BDIXY herstellerspezifisch/AEPT herstellerunabhängig/AEPT herüber herübergeholt/AEPT herübergekommen/AEPT herüberklingen/DIX herüberkommen/DIX herum herumballern/DIXY herumblättern/DIXY herumdrehen/DIXY herumdrücken/DIXY herumführen/DIXY herumfuchteln/DIXY herumgedreht/AEPT herumgedrückt herumgeführt/AEPT herumgefuchtelt herumgekriegt/AEPT herumgelaufen herumgelungert/AEPT herumgereicht/AEPT herumgereist/AEPT herumgeritten/AEPT herumgeschlagen/AEPT herumgeschleudert/AEPT herumgeschlichen herumgeschliffen herumgesprochen herumgestanden/AEPT herumgestoßen/AEPT herumgestrolcht herumgetrieben/AEPT herumgeturnt herumgezogen/AEPT herumknattern/IXY herumkommandieren/DIOXY herumkrabbeln/DIXY herumkreuzen/IXY herumkriegen/DIXY herumläuft/X herumlaufen/DI herumliegen/DIX herumlungern/DIXY herumnörgeln/DIXY herumprobieren/DIXY herumreichen/DIXY herumreißen/IX herumreisen/DIXY herumreiten/DIX herumschlagen/DI herumschleppen/DIXY herumschnipseln/DIXY herumschwirren/DIXY herumsegeln/DIXY herumspionieren/DIXY herumsprechen/DI herumspritzen/DIXY herumstehen/DIX herumstolpern/DIXY herumtanzen/DIXY herumticken/DIXY herumtragen/I herumtreiben/DIX herumwirbeln/IXY herumwirtschaften/IXY herumzeigen/DIXY herumziehen/DIX herumzubewegen herumzufliegen herumzuführen/D herumzugehen herumzuknutschen herumzulaufen herumzureden herumzureißen/D herumzuschlagen herumzuspähen herumzustehen herumzustochern herunter herunterbringen/DIX herunterfällt/X herunterfahren/DI herunterfallen/DI herunterfuhr/PZ heruntergebracht/AEPT heruntergedrückt heruntergefahren/AEPT heruntergefallen/AEPT heruntergegangen heruntergeholt/AEPT heruntergekommen/AEPT heruntergeladen/AEPT heruntergerissen/AEPT heruntergeschraubt/AEPT heruntergespielt/AEPT heruntergewirtschaftet/AEPT herunterhandeln/DIXY herunterhüpft herunterkam/PZ herunterkommen/DIX herunterlädt/X herunterladen/I herunterlief/PZ herunterpoltern/DIXY herunterreißen/DIX herunterriss/PZ herunterrutschen/DIXY heruntersetzen/DIXY herunterspielen/DIXY heruntersprechen/DI herunterwirtschaften/DIXY herunterzubringen/D herunterzufahren/D herunterzuholen/D herunterzukommen herunterzuladen/D herunterzuspielen herunterzusteigen hervor hervorbrachte/NZ hervorbrechen/DI hervorbringen/DIX hervorgebracht/AEPT hervorgegangen/AEPT hervorgehen/DIX hervorgehoben/AEPT hervorgeholt/AEPT hervorgeragt/AEPT hervorgerufen/AEPT hervorgesagt/AEPT hervorgesprungen/AEPT hervorgestanden/AEPT hervorgetan hervorgetreten/AEPT hervorging/EPZ hervorheben/DIX hervorhob/PZ hervorholen/DIXY hervorkroch/PZ hervorlodern/DIXY hervorlugen/DIXY hervorquoll/PZ hervorragen/DIXY hervorragend/ACEPT hervorrief/EPZ hervorrufen/DIX hervorschauen/DIXY hervorschoss/PZ hervorspringen/DIX hervorstechen/DI hervorstehen/DIX hervorstieß/PZ hervortrat/PZ hervortreten/DI hervortrittst/WX hervortun/IX hervorzubringen/D hervorzuheben/D hervorzukommen hervorzurufen/D hervorzutreten herwagen/DIXY herzensgut/AEPT herzerfrischend/AEPT herzergreifend/AEPT herzförmig/AEPT herzhaft/AEPT herziehen/DIX herzig/ACEPT herzkrank/AEPT herzlich/ACEPT herzlichst/AEPTW herzlos/ACEPT herzog/LPZ herzstärkend/AEPT herzu herzubitten/D herzubringen/D herzufahren herzufallen herzugeben/D herzugerufen/AEPT herzulaufen herzuleiten/D herzurichten/D herzusagen/D herzuschalten herzustammen herzustellen/D herzzerbrechend/AEPT herzzerreißend/AEPT hessesche/ANRS hessisch/AEPT heterogen/AEPT heterosexuell/AEPT hetzen/DIXY heucheln/DIXY heuchlerisch/ACEPT heuer/EGN heuern/IWXY heuert/EGPWX heulen/DIXY heult/EGPX heureka heuristisch/AEPT heute heutig/AEPT heutzutage hexadezimal/AEPT hexagonal/AEPT hexen/DIVXY hie/R hielt/EPVZ hienieden hieran hierarchisch/AEPT hierauf hieraus hierbei hierdurch hierein hierfür hiergegen hierher hierhin hierin hiermit hiernach hierüber hierunter hiervon hierzu hierzulande hieß/EPVZ hiesig/AEPT hieven/DIWXY hievt/EGPWX hilbertsch/AEPT hilfebedürftig/AEPT hilfeflehend/AEPT hilflos/ACEPT hilfreich/AEPT hilfsbedürftig/AEPT hilfsbereit/ACEPT hilft/VWX himbeerfarben/AEPT himbeerrot/AEPT himmelblau/AEPT himmelhoch himmelhochjauchzend/AEPT himmelwärts himmelweit/ACEPT himmlisch/ACEPT hin hinab hinabgegangen/AEPT hinabgehen/DIX hinabgestiegen/AEPT hinabgestoßen/AEPT hinabsteigen/DIX hinabzugehen hinabzustürzen/D hinabzuziehen/D hinan hinarbeiten/DIXY hinauf hinaufarbeiten/DIXY hinauffahren/DI hinaufführen/DIXY hinauffuhr/PZ hinaufgearbeitet/AEPT hinaufgegangen/AEPT hinaufgehen/DIX hinaufgeklettert hinaufgesetzt/AEPT hinaufgestiegen/AEPT hinaufkriechen/DIX hinaufkroch/PZ hinaufschauen/DIXY hinaufsetzen/DIXY hinaufsteigen/DIX hinaufziehen/DIX hinaufzuführen/D hinaufzuklettern hinaufzusteigen hinaufzuziehen/D hinaus hinausbegleiten/DIXY hinausbeugen/DIXY hinausfallen/DI hinausführt/X hinausfuhr/PZ hinausgebeugt/AEPT hinausgefahren/AEPT hinausgegangen/AEPT hinausgehen/DIX hinausgekommen/AEPT hinausgelaufen/AEPT hinausgeleitet/AEPT hinausgeragt/AEPT hinausgereicht/AEPT hinausgeschleudert/AEPT hinausgeschoben/AEPT hinausgeschossen/AEPT hinausgetragen/AEPT hinausgewachsen/AEPT hinausgeworfen/AEPT hinausgezögert/AEPT hinausging/EPZ hinausgreifen/DIX hinausgriff/PZ hinausheben/DIX hinauskommen/DIX hinausläuft/X hinauslaufen/DI hinauslief/EPZ hinausmarschieren/DIOXY hinausposaunen/DIXY hinauspressen/DIXY hinausragen/DIXY hinausreichen/DIXY hinausschieben/DIX hinausschießen/DIX hinausschleichen/DIX hinausschnellen/DIXY hinausspringen/DIX hinaustrat/PZ hinaustreten/DI hinauswachsen/DI hinauswerfen/DI hinauszögern/DIXY hinauszubringen/D hinauszufahren/D hinauszuführen/D hinauszugehen hinauszukommen hinauszuschaffen/D hinauszuschieben/D hinauszustoßen/D hinauszutragen/D hinauszutreiben/D hinauszuzögern/D hinbewegen/DIOXY hinblättern/DIXY hinblicken/IXY hinbringen/DIX hindämmern/DIXY hinderlich/ACEPT hindern/DIVXY hindeuten/DIXY hinduistisch/AEPT hindurch hindurchführen/DIXY hindurchgegangen hindurchgehen/DIX hindurchging/EPZ hindurchsehen/DI hindurchzuschauen hineilen/DIXY hinein hineinarbeiten/DIXY hineinbringen/DIX hineindenken/DIX hineindichten/DIXY hineindrängen/DIXY hineinfahren/DI hineinfallen/DI hineinfrisst hineinführen/DIXY hineingearbeitet/AEPT hineingebracht hineingedacht/AEPT hineingefallen/AEPT hineingeführt hineingegangen/AEPT hineingeguckt hineingehen/DIX hineingehetzt hineingehören/DIXY hineingelassen/AEPT hineingelegt/AEPT hineingeraten/ADEIPT hineingeschrieben/AEPT hineingeschüttelt hineingesetzt hineingesteckt/AEPT hineingestellt/AEPT hineingeworfen/AEPT hineingezogen/AEPT hineingucken/DIXY hineinkommen/DIX hineinkrähen/DIXY hineinlassen/DI hineinlegen/DIXY hineinleuchten/DIXY hineinmünden/DIXY hineinpassen/IXY hineinplatzen/DIXY hineinpressen/DIXY hineinragen/DIXY hineinreden/DIXY hineinreichen/DIXY hineinrufen/DIX hineinsah/PZ hineinschauen/DIXY hineinschieben/IX hineinschlittern/DIXY hineinschreiben/DIX hineinschrieb/PZ hineinsehen/DI hineinsetzen/DIXY hineinsieht/X hineinstecken/DIXY hineinstellen/DIXY hineinströmen/DIXY hineintanzen/DIXY hineintreten/DI hineinwachsen/DI hineinwechseln/DIXY hineinwerfen/DI hineinwirken/DIXY hineinziehen/DIX hineinzoomen/DIXY hineinzubringen/D hineinzugehen hineinzukommen hineinzulegen/D hineinzulesen/D hineinzuschauen hineinzusehen hineinzustecken/D hineinzusteuern/D hineinzuwirken hineinzuziehen/D hineinzwingen/DIX hinfällig/AEPT hinfahren/DI hinfallen/DI hinfiel/EPZ hinführen/DIXY hinfuhr/PZ hing/EPZ hingab/PZ hingeben/DI hingebracht/AEPT hingebungsvoll/ACEPT hingedeutet/AEPT hingeduckt hingefallen/AEPT hingeführt/AEPT hingegangen/AEPT hingegeben/AEPT hingegen hingehalten/AEPT hingehen/DIX hingehören/IXY hingekniet/AEPT hingekommen/AEPT hingelegt/AEPT hingenommen/AEPT hingeraten/AEPT hingerichtet/AEPT hingerissen/AEPT hingeschlagen/AEPT hingeschleppt/AEPT hingeschrieben/AEPT hingeschwunden/AEPT hingesehen hingesetzt/AEPT hingestellt/AEPT hingestreckt/AEPT hingewiesen/AEPT hingewirkt hingeworfen/AEPT hingezogen/AEPT hingibt/X hinhalten/DI hinhauen/DIXY hinhielt/EPZ hinhören/DIXY hinken/DIXY hinkommen/DIX hinkriegen/DIXY hinkt/EGPX hinlänglich/AEPT hinlegen/DIXY hinleiten/DIXY hinnehmen/BDI hinnimmt/X hinreichen/DIXY hinreißen/DIX hinreisen/DIXY hinrichten/DIXY hinsähen/IX hinsah/PZ hinschauen/DIXY hinschlängeln/DIXY hinschlagen/DI hinschmeißen/IX hinschreiben/DIX hinschweifen/DIXY hinschwinden/DIX hinsehen/DI hinsetzen/DIXY hinsichtlich hinsieht/X hinspielen/DIXY hinstellen/DIXY hinsteuern/DIXY hinstreuen/DIXY hinten hintenherum hinter/AEPST hintereinander hinterfragen/DIOXY hintergangen/AEPT hintergehen/DIX hintergründig/AEPT hinterhältig/ACEPT hinterher hinterherfahren/DI hinterherhetzen/DIXY hinterherhinken/DIXY hinterherläuft/X hinterherrannte/NZ hinterherrennen/DIX hinterherwinken/DIXY hinterherzuhetzen hinterlässt hinterlassen/ADEIPT hinterlegen/DIOXY hinterleuchtet/AEPT hinterließ/EPZ hinterlistig/ACEPT hinterm hinterrücks hintersinnig/AEPT hinterspritzen/DIXY hinterste/ANRS hintertreiben/DIX hintertrieb/PZ hinterwäldlerisch/AEPT hintreten/DI hinüber hinübergebastelt hinübergehen/DIX hinübergerufen/AEPT hinüberlenken/DIXY hinüberströmen/DIXY hinüberwaten/DIXY hinüberzuretten/D hinunter hinunterfällt/X hinunterfallen/DI hinunterfuhr/PZ hinuntergegangen/AEPT hinuntergehen/DIX hinuntergelassen/AEPT hinuntergeschluckt/AEPT hinuntergestürzt/AEPT hinunterreichen/DIXY hinunterrennen/DIX hinunterrutschen/IXY hinunterschlendern/DIXY hinunterschlich/EPZ hinunterschlucken/DIXY hinuntersteigen/DIX hinunterstieg/PZ hinunterzukommen hinweg hinwegbringen/DIX hinwegdreht hinweggebraust/AEPT hinweggefegt hinweggekommen/AEPT hinweggeschleudert hinweggesetzt/AEPT hinweggetäuscht/AEPT hinweghelfen/DI hinwegkommen/DIX hinwegraffen/IXY hinwegschwemmen/DIXY hinwegschwingt hinwegsehen/DI hinwegsetzen/DIXY hinwegtäuschen/DIXY hinwegtrösten/DIXY hinwegzufegen hinwegzureden/D hinwegzusehen hinwegzusetzen hinwegzutragen hinweisen/DIX hinwenden/DIXY hinwerfen/DI hinwies/EPZ hinwirken/DIXY hinziehen/DIX hinzielen/DIXY hinzögen/IX hinzog/PZ hinzu hinzuarbeiten hinzudeuten hinzuerfunden/AEPT hinzufahren hinzufallen hinzufügen/DIXY hinzugeben/DI hinzugedichtet hinzugefügt/AEPT hinzugehen hinzugekauft/AEPT hinzugekommen/AEPT hinzugelernt/AEPT hinzugenommen hinzugerechnet/AEPT hinzugetan hinzugewählt/AEPT hinzugewinnen/DIX hinzugewonnen/AEPT hinzugezogen/AEPT hinzugibt/X hinzukam/PZ hinzukaufen/DIXY hinzukommen/DIX hinzukriegen hinzulädt/X hinzuladen/DI hinzulernen/DIXY hinzunehmen/DI hinzunimmt/X hinzurechnen/DIXY hinzureißen hinzurichten/D hinzuschmeißen/D hinzusehen hinzusetzen/DIXY hinzustellen/D hinzutreten/DI hinzutrittst/WX hinzuwählen/DIXY hinzuweisen hinzuwerfen/D hinzuwirken hinzuzählen/IXY hinzuziehen/DIX hinzuzufügen/D hinzuzunehmen hinzuzurechnen/D hinzuzuziehen/D hirnverbrannt/AEPT hirnverletzt/AEPT hissen/DIXY histologisch/AEPT historisch/AEPT historisieren/DIXY hitzebeständig/ACEPT hitzeflimmernd/AEPT hitzefrei hitzig/ACEPT höchst/AEPT höchsten/SW höchstgenau/AEPT höchstmöglich/AEPT höchstqualifiziert/AEPT höchstwahrscheinlich/AEPT höchstzulässig/AEPT höflich/ACEPTU höflichst/AEPTW höhenverstellbar/AEPT höher/AEPT höherfrequent/AEPT höherverzinst/AEPT höherwertig/AEPT höhlt/X höhnen/DIVXY höhnisch/ACEPT höhnt/EGPVX höllisch/AEPT hölzern/AEPT hörbar/AEPTU hören/BDGIVWXY hörig/AEGPT hob/PZ hobeln/DIWXY hoch hochachten/DI hochachtungsvoll/ACEPT hochaktuell/AEPT hochalpin/AEPT hochamtlich/AEPT hochanständig/AEPT hochaufgeschossen/AEPT hochauflösend/AEPT hochbegabt/AEPT hochbeladen/AEPT hochbesetzt/AEPT hochbesteuert/AEPT hochbetagt/AEPT hochbringen/DIX hochbrisant/AEPT hochdeutsch/AEPT hochdifferenziert/AEPT hochdramatisch/AEPT hochdynamisch/AEPT hocheffizient/AEPT hocherfreut/AEPT hochexplosiv/AEPT hochfährt/X hochfahren/DI hochfavorisiert/AEPT hochflexibel/A hochgeachtet/AEPT hochgearbeitet/AEPT hochgebildet/AEPT hochgebracht/AEPT hochgefahren/AEPT hochgegangen/AEPT hochgehen/DIX hochgeklappt/AEPT hochgekommen/AEPT hochgelegen/AEOPT hochgelegt/AEPT hochgelehrt/AEPT hochgelobt/AEPT hochgepäppelt/AEPT hochgepflegt/AEPT hochgereckt/AEPT hochgeredet hochgerutscht/AEPT hochgescheit/AEPT hochgeschlagen/AEPT hochgeschlossen/AEPT hochgeschraubt/AEPT hochgespannt/AEPT hochgespielt/AEPT hochgestellt/AEPT hochgestimmt/AEPT hochgestochen/AEPT hochgewachsen/AEPT hochgewirbelt/AEPT hochgezählt/AEPT hochgezogen/AEPT hochglanzpoliert/AEPT hochgradig/AEPT hochhältst/WX hochhalten/DI hochherzig/AEPT hochimpedant/AEPT hochindustrialisiert/AEPT hochinteressant/AEPT hochkarätig/AEPT hochkommen/DIX hochkonzentriert/AEPT hochleistungsfähig/AEPT hochleitfähig/AEPT hochmodern/AEPT hochmütig/ACEPT hochnäsig/ACEPT hochohmig/AEPT hochperformant/AEPT hochpersönlich/AEPT hochpolitisch/AEPT hochprozentig/AEPT hochqualifiziert/AEPT hochqualitativ/AEPT hochrangig/AEPT hochrot/AEPT hochschätzen/DIXY hochschießen/DIX hochschoss/PZ hochschulfrei/AEPT hochschulpolitisch/AEPT hochschulunabhängig/AEPT hochschwanger/AEPT hochspekulativ/AEPT hochspezialisiert/AEPT hochspezifisch/AEPT hochsprachlich/AEPT hochstaplerisch/AEPT hochstehen/DIX hochstellen/IXY hochtalentiert/AEPT hochtechnisiert/AEPT hochtrabend/AEPT hochtreiben/DIX hochverehrt/AEPT hochverzinslich/AEPT hochviskos/AEPT hochwertig/ACEPT hochwirksam/AEPT hochwürdig/AEPT hochziehen/DIX hochzischen/DIXY hochzog/PZ hochzufrieden/AEPT hochzujubeln/D hochzuklettern/D hochzuschrauben hochzuverlässig/AEPT hochzuziehen/D hocken/DIXY hoffen/DIXY hoffentlich hoffnungsfroh/AEPT hoffnungslos/ACEPT hoffnungsvoll/ACEPT hofft/EGPX hohe/ANRS hoheitlich/AEPT hoheitsvoll/ACEPT hohl/ACEPT hold/AEPTU holen/DIWXY holistisch/AEPT holländisch/AEPT holografisch/AEPT holographisch/AEPT holperig/AEPT holpern/DIXY holsteinisch/AEPT holzfrei/AEPT holzig/AEPT holzwirtschaftlich/AEPT homerisch/AEPT homöopathisch/AEPT homoerotisch/AEPT homogen/AEPT homomorph/AEPT homophon/AEPT homosexuell/AEPT honorieren/DIOXY honorig/AEPT hoppeln/DIXY hopsen/DIXY horchen/DGIWXY hordenweise horizontal/AEPT hormonell/AEPT horrend/AEPT horten/DIXY hospitalisieren/DIOXY hospitieren/DIWXY hotelmäßiger hrsg hrsg. http hübsch/AEPT hübsche/ACNRS hüglig/AEPT hühnereigroß/AEPT hüllen/DIVXY hüllt/EGPVX hüllte/GNVZ hüllten/GIVWX hündisch/AEPT hünenhaft/AEPT hüpfen/DIXY hüsteln/DIXY hüten/DIVXY hütet/EGPVWX hütete/GNVZ hüteten/GIVWX huckepack hugenottisch/AEPT huldigen/DIXY huldigt/EGPX huldvoll/AEPT human/ACEPT humanisieren/DIOXY humanistisch/AEPT humanitär/AEPT humanpharmazeutisch/AEPT humoristisch/AEPT humorlos/AEPT humorvoll/AEPT humpeln/DIXY hundert/ER hundertfältig/AEPT hundertfach/AEPT hundertjährig/AEPT hundertköpfig/AEPT hundertmal hundertprozentig/AEPT hundertste/ANRS hundertstel hunderttausend/E hundertzehn hundertzwanzig hundsmiserabel/A hungern/DIVXY hungert/EGPVX hungrig/ACEPT hupen/DIXY hupt/EGPX huren/DIXY hurra hurtig/ACEPT huschen/IXY husten/DIXY hustet/EGPWX hybrid/AEPT hydraulisch/AEPT hygienisch/ACEPTU hyperaktiv/AEPT hyperbolisch/AEPT hyperelegant/AEPT hypnotisieren/BDIOXY hypothekarisch/AEPT hypothetisch/AEPT hysterisch/ACEPT ich ichbewusst/AEPT ichbezogen/AEPT ideal/ACEPT idealerweise idealisieren/DIOXY idealistisch/ACEPT idealtypisch/AEPT ideell/ACEPT ideenarm/AEPT ideenlos/AEPT ideenreich/ACEPT identifizieren/BDIOXY identisch/AEPT ideologieanfällig/AEPT ideologisch/AEPT idiomatisch/AEPT idiotisch/ACEPT idiotischerweise idyllisch/ACEPT ignorant/AEPT ignorieren/DIOXY ihm ihn/P ihr/AEPT ihrerseits ihresgleichen ihrethalben ihretwegen ihretwillen ihrige/ANRS illegal/AEPT illegitim/AEPT illiquide/ANRS illoyal/AEPT illuminieren/DIOXY illusionslos/AEPT illusorisch/AEPT illuster/AEPT illustrativ/AEPT illustre/ANRS illustrieren/DIOXY im imaginär/AEPT imaginativ/AEPT imitieren/DIOXY imkern/DIXY immanent/AEPT immateriell/AEPT immatrikulieren/DIOXY immens/AEPT immer immerfort immergrün/AEPT immerhin immerzu immun/AEPT immunisieren/DIOXY imperativ/AEPT imperial/AEPT imperialistisch/AEPT impertinent/AEPT impfen/BDIXY implantieren/BDIOWXY implementationsabhängig/AEPT implementationstechnisch/AEPT implementieren/BDIOXY implizieren/DIOXY implizit/AEPT implodieren/DIOXY imponieren/DIXY importieren/DIOXY imposant/ACEPT impotent/ACEPT imprägnieren/DIOXY impressionistisch/AEPT improvisatorisch/AEPT improvisieren/BDIOXY impulsartig/AEPT impulsiv/ACEPT imputieren/DIOWXY imstande in/FS inadäquat/AEPT inaktiv/AEPT inaktivieren/DIOXY inakzeptabel/A inbegriffen/AEPT inbrünstig/AEPT incl incl. indefinit/AEPT indem indes indessen indexmäßig/AEPT indianisch/AEPT indifferent/AEPT indignieren/DIOXY indirekt/AEPT indisch/AEPT indiskret/AEPT indiskrete/ACNRS indiskutabel/A individualisieren/DIOXY individualistisch/AEPT individuell/ACEPT indizieren/DIOXY indoktrinieren/DIOXY indonesisch/AEPT indossieren/DIOXY induktiv/AEPT industrialisieren/DIOXY industriell/AEPT industrienah/AEPT industrieorientiert/AEPT induzieren/BIOXY ineffektiv/AEPT ineffizient/ACEPT ineinander inessentiell/AEPT inessenziell/AEPT infam/AEPT infantil/AEPT inferieren/BDIOXY infiltrieren/DIOXY infinitesimal/AEPT infizieren/DIOXY inflationär/AEPT inflationistisch/AEPT inflationsanfällig/AEPT inflationsbedingt/AEPT inflationsbereinigt/AEPT inflationsschürend/AEPT inflatorisch/AEPT infolge infolgedessen informationstechnisch/AEPT informationsverarbeitend/AEPT informativ/AEPT informatorisch/AEPT informell/AEPT informieren/DIOXY infrage ingenieurmäßig/AEPT ingenieurwissenschaftlich/AEPT inhärent/AEPT inhaftieren/DIOXY inhalieren/BDIOXY inhaltlich/AEPT inhaltsabhängig/AEPT inhaltslos/AEPT inhaltsreich/ACEPT inhomogen/AEPT inhuman/AEPT initialisieren/BDIOXY initiieren/DIOXY injektiv/AEPT injizieren/BDIOXY inkl inkl. inkludieren/DIOXY inklusive inkompatibel/A inkompetent/AEPT inkonsequent/ACEPT inkonsistent/ACEPT inkorrekt/ACEPT inkrementell/AEPT inkrementieren/DIOXY inländisch/AEPT inliegend/AEPT inmitten inne/N innegehabt innegehalten/AEPT innegewohnt/AEPT innehältst/WX innehaben/DIW innehalten/DI innehat/X innehatte/NZ innenpolitisch/AEPT inneramerikanisch/AEPT innerbetrieblich/AEPT innerdeutsch/AEPT innere/ANRS innereuropäisch/AEPT innerfranzösisch/AEPT innerhalb innerjapanisch/AEPT innerkirchlich/AEPT innerlich/AEPT innerparteilich/AEPT innerpolitisch/AEPT innerrussisch/AEPT innerstädtisch/AEPT innerstaatlich/AEPT innerste/ANRS innerwirtschaftlich/AEPT innewohnen/DIXY innig/ACEPT innovativ/AEPT innovieren/DIOXY inoffiziell/AEPT inopportun/AEPT inquisitorisch/AEPT insbes insbes. insbesondere insektenförmig/AEPT insektenhaft/AEPT inselartig/AEPT inserieren/DIOXY insgeheim/AEPT insges insges. insgesamt insistieren/IXY insofern insolvent/AEPT insoweit inspirieren/DIOXY inspizieren/DIOXY inständig/ACEPT inständigst/AEPTW instabil/AEPT installieren/BDIOXY instand instandsetzen/DIXY instantiieren/BDIOXY instinktiv/AEPT instinktmäßig/AEPT institutionalisieren/IOXY institutionell/AEPT instruieren/DIOXY instruktiv/AEPT instrumental/AEPT inszenatorisch/AEPT inszenieren/DIOXY intakt/ACEPT integer/AEPT integral/AEPT integrationsfähig/AEPT integrativ/AEPT integrieren/BDIOXY intellektualistisch/AEPT intellektuell/AEPTU intelligent/ACEPT intendieren/DIOXY intensiv/ACEPT intensivieren/DIOXY interagieren/DIOXY interaktiv/AEPT interamerikanisch/AEPT interdisziplinär/AEPT interessant/ACEPTU interessanterweise interessehalber interessenbedingt/AEPT interessieren/DIOXY intereuropäisch/AEPT interferieren/DIOXY interfraktionell/AEPT interkommunal/AEPT interkommunistisch/AEPT interkontinental/AEPT intermediär/AEPT intern/AEPT international/AEPT internieren/IOXY interplanetarisch/AEPT interpolieren/DIOXY interpretativ/AEPT interpretatorisch/AEPT interpretieren/BDIOXY interprozedural/AEPT intervallabhängig/AEPT intervenieren/DIOXY interviewen/DIOXY inthronisieren/DIOXY intim/ACEPT intolerant/ACEPT intonieren/DIOXY intransitiv/AEPT intraprozedural/AEPT intraspezifisch/AEPT intravenös/AEPT intrigant/ACEPT intrigieren/DIXY intuitiv/AEPT intus invalide/ANRS invariant/AEPT inventarisieren/BIOXY invers/AEPT invertieren/DIOXY investieren/DIOXY involvieren/DIOXY inwendig/AEPT inwiefern inwieweit inzwischen ionisieren/DIOXY iota ipso irakisch/AEPT iranisch/AEPT irden/AEPT irdisch/AEPT irgend irgendein/AEPT irgendeinmal irgendetwas irgendjemand/PT irgendjemandem irgendwann irgendwas irgendwelche/ANRS irgendwem irgendwer irgendwie irgendwo irgendwohin irisch/AEPT ironisch/ACEPT ironisieren/DIXY irr/ACEPTZ irrational/AEPT irreal/AEPT irreführen/DIXY irregeführt/AEPT irregulär/AEPT irrelevant/AEPT irreligiös/AEPT irren/DIWXY irreparabel/A irreversibel/A irrezuführen/D irrig/AEPT irritieren/BDIOXY irrsinnig/ACEPT irrt/EGPWX irrtümlich/AEPT irrtümlicherweise isländisch/AEPT islamisch/AEPT isolationistisch/AEPT isolieren/BDIOXY isometrisch/AEPT isomorph/AEPT israelisch/AEPT isst/W ist italic italienisch/AEPT iterativ/AEPT iterieren/DIOXY ja jäh/AEPT jählings jähren/IVXY jährig/AEPT jährlich/AEPT jähzornig/ACEPT jämmerlich/ACEPT jäten/DIXY jagdgrün/AEPT jagen/DIVXY jagt/EGPVX jagte/GNVZ jagten/GIVWX jahraus jahrein jahrelang/AEPT jahreszeitlich/AEPT jahrhundertealt/AEPT jahrhundertelang/AEPT jahrtausendelang/AEPT jahrzehntelang/AEPT jammern/DIXY jammert/EGPX janusköpfig/AEPT japanisch/AEPT jauchzen/DIXY jaulen/DIXY javanisch/AEPT je jede/ANRS jedenfalls jederart jederlei jedermann jederzeit jederzeitig/AEPT jedoch jedwede/ANRS jegliche/ANRS jeher jemals jemand/PT jemandem jene/ANRS jenseits jetten/DIXY jetzige/ANRS jetzt jeweilig/AEPT jeweils jiddisch/AEPT jmdm jmdm. jobben/DIXY jonglieren/DIXY jordanisch/AEPT journalistisch/AEPT jüdisch/AEPT jünger/AEPT jüngst/AEPT jubeln/DIVXY jubelt/EGPVX jubelte/GNVZ jubelten/GIVWX jucken/DIXY juckt/EGPX judenfeindlich/AEPT judizieren/DIOXY jugendfrei/AEPT jugendgefährdend/AEPT jugendlich/AEPT jugendpflegerisch/AEPT jugoslawisch/AEPT jung/AEPT jungenhaft/AEPT jungfräulich/AEPT junggeblieben/AEPT jungverheiratet/AEPT jure juristisch/AEPT juryfrei/AEPT just justieren/BDIOXY kHz kOhm kW kältebeständig/AEPT kälteempfindlich/ACEPT kälteerzeugend/AEPT kälter/AEPT kälteste/ANRS kämen/IX kämmen/DIXY kämpfen/DIXY kämpferisch/ACEPT kämpft/EGPX kärglich/ACEPT käuflich/AEPTV kabarettistisch/AEPT kabbeln/DIXY kabelgerecht/AEPT kabeln/DIXY kabelseitig/AEPT kahl/AEPT kahlgefressen/AEPT kahlköpfig/AEPT kahmig/AEPT kaiserlich/AEPT kalbern/DIXY kalendarisch/AEPT kalibrieren/DIOXY kalifornisch/AEPT kalkarm/AEPT kalkartig/AEPT kalkig/AEPT kalkulatorisch/AEPT kalkulieren/BDIOVXY kalorienbewusst/ACEPT kalorienreich/ACEPT kalt/AEPT kaltblütig/ACEPT kaltbrüchig/AEPT kaltfeucht/AEPT kaltgeblieben/AEPT kaltgehämmert/AEPT kaltgehärtet/AEPT kaltgemacht/AEPT kaltgeräuchert/AEPT kaltgeschmiedet/AEPT kaltgestellt/AEPT kaltgezogen/AEPT kalthämmern/DIXY kalthärten/DIXY kaltherzig/ACEPT kaltmachen/DIXY kaltschmieden/DIXY kaltschnäuzig/ACEPT kaltstellen/DIXY kaltziehen/DIX kalvinistisch/AEPT kam/PVZ kamelhaarfarbig/AEPT kameradschaftlich/ACEPT kampfbegierig/ACEPT kampfbereit/AEPT kampferfahren/AEPT kampferprobt/AEPT kampferregt/AEPT kampffähig/AEPT kampfgewohnt/AEPT kampflos/AEPT kampflustig/ACEPT kampfmüde/ANRS kampfreich/AEPT kampfstärker/AEPT kampfstärkste/ANRS kampfstark/AEPT kampfunfähig/AEPT kampieren/DIXY kanadisch/AEPT kanalig/AEPT kanalisieren/BDIOXY kanariengelb/AEPT kanarisch/AEPT kandidieren/DIXY kandieren/DIOXY kannibalisch/AEPT kannst/W kannte/GNVZ kannten/GIVX kanonisch/AEPT kanten/DIXY kantig/AEPT kanzeln/IXY kapazitätsbedingt/AEPT kapazitiv/AEPT kapieren/DIOWXY kapital/AEPT kapitalintensiv/ACEPT kapitalisieren/BDIOXY kapitalistisch/AEPT kapitalkräftig/ACEPT kapitalstark/AEPT kapitulieren/DIOXY kappa kapriziös/ACEPT kapseln/BDIVXY kaputt/AEPT kaputtgegangen/AEPT kaputtgehen/DIX kaputtgemacht/AEPT kaputtgeschlagen/AEPT kaputtmachen/DIXY kaputtschlagen/DI karambolieren/DIOXY kardial/AEPT kardinale/ANRS kardinalrot/AEPT karg/ACEPT karibisch/AEPT kariert/AEPT karikativ/AEPT karikieren/DIOXY kariös/AEPT karitativ/ACEPT karmesinrot/AEPT karminrot/AEPT karren/DIXY karrierebedingt/AEPT karriereschädlich/AEPT kartesisch/AEPT kartografisch/AEPT kartographisch/AEPT kartonieren/DIOXY kaschieren/BDIOXY kasernieren/DIOXY kaskadieren/BDIOXY kaspern/DIXY kaspisch/AEPT kassieren/DIOXY kastanienbraun/AEPT kasteien/DIOXY kastrieren/DIOXY katalanisch/AEPT katalogisieren/DIOXY katalysieren/DIOXY katalytisch/AEPT katapultieren/DIOXY katastrophal/ACEPT kategorisch/ACEPT kategorisieren/DIOXY katholisch/ACEPT katzenartig/AEPT katzenfreundlich/AEPT katzengewandt/AEPT katzenhaft/AEPT katzenjämmerlich/AEPT kaudern/DIXY kauen/DIWXY kauern/DIWXY kaufbereit/AEPT kaufen/DIVWXY kaufenswert/AEPT kaufkräftig/ACEPT kaufmännisch/AEPT kaufstark/AEPT kauft/EGPVWX kaufte/GNVZ kauften/GIVWX kaum kausal/AEPT kaustisch/ACEPT kauzig/AEPT kavitös/AEPT keck/ACEPT kegelförmig/AEPT kegeln/DIWXY kehren/DIVWXY kehrt/EGPVWX kehrte/GNVZ kehrten/GIVWX kehrtgemacht/AEPT kehrtmachen/DIXY keifen/DIXY keift/EGPX keilen/DIVXY keilförmig/AEPT keimen/DIXY keimfähig/AEPT keimfrei/AEPT keimt/EGPX keimtötend/AEPT kein/AEPST keinerlei keinesfalls keineswegs keinmal keinwrtquop kelchförmig/AEPT kellern/IXY keltern/DIXY keltisch/AEPT kennen/DIVX kennerhaft/AEPT kennt/LVX kenntlich/AEPTU kenntnisreich/ACEPT kennzeichnen/DIXY kentern/DIXY keramisch/AEPT kerben/DIXY kernfaul/AEPT kerngesund/AEPT kernig/ACEPT kernlos/AEPT kerzengerade/ANRS kess/ACEPT ketten/DIVXY kettenartig/AEPT kettenförmig/AEPT kettenlos/AEPT kettet/EGPVWX kettete/GNVZ ketteten/GIVWX ketzerisch/ACEPT keuchen/DIWXY keucht/EGPWX keulenförmig/AEPT keusch/ACEPTU kg kichern/DIWXY kichert/EGPWX kicken/DIWXY kidnappen/DIXY kiemenatmend/AEPT kieselartig/AEPT kieselgrau/AEPT kieshaltig/AEPT kiesig/AEPT killen/DIWXY kilometerlang/AEPT kilometerweit/AEPT kinderfeindlich/AEPT kinderfreundlich/ACEPT kinderleicht/AEPT kinderlieb/AEPT kinderlos/AEPT kinderreich/ACEPT kindgerecht/AEPT kindisch/ACEPT kindlich/ACEPTU kinematisch/AEPT kinetisch/AEPT kippen/DIWXY kirchenfeindlich/AEPT kirchentreu/AEPT kirchlich/AEPT kirschenrot/AEPT kistenweise kitschig/ACEPT kitten/DIVXY kittet/EGPVWX kittete/GNVZ kitteten/GIVWX kitzeln/DIWXY kitzlig/AEPT klägerisch/AEPT kläglich/ACEPT klären/DIVWXY klaffen/DIXY klafft/EGPX klagen/BDIVWXY klagt/EGPVWX klamm/ACEPRT klammern/DIWXY klammheimlich/AEPT klang/PVZ klanggetreu/AEPT klanglos/AEPT klangvoll/ACEPT klappen/BDIVWXY klapperfrei/AEPT klapperig/AEPT klappern/DIWXY klappert/EGPWX klappt/EGPVWX klar/ACEPTU klarerweise klargekommen klargelegt/AEPT klargemacht/AEPT klargestellt/AEPT klarkommen/DIX klarlegen/DIXY klarmachen/DIXY klarstellen/DIXY klasse klassenbewusst/AEPT klassenlos/AEPT klassifizieren/BDIOXY klassisch/AEPT klassischerweise klassizistisch/AEPT klatschen/DIWXY klatschhaft/AEPT klatschnass/AEPT klatschsüchtig/ACEPT klatscht/EGPWX klauen/DIWXY klavierähnlich/AEPT kleben/DIVWXY klebrig/ACEPT klebt/EGPVWX klebte/GNVZ klebten/GIVWX kleckern/DIWXY kleiden/DIVXY kleidet/EGPVWX kleidete/GNVZ kleideten/GIVWX kleidsam/ACEPTU kleidungsbewusst/AEPT klein/ACEPT kleinbürgerlich/ACEPT kleineuropäisch/AEPT kleinformatig/AEPT kleinkariert/ACEPT kleinlich/ACEPT kleinmütig/AEPT kleinstädtisch/AEPT kleinstmöglich/AEPT kleisterig/AEPT klemmen/DIVWXY klemmt/EGPVWX klemmte/GNVZ klemmten/GIVWX kleptomanisch/AEPT klerikal/AEPT klettern/DIWXY klettert/EGPWX klicken/DIWXY klickt/EGPWX klimatisch/AEPT klimatisieren/BDIOXY klimpern/DIWXY klimpert/EGPWX klingeln/DIWXY klingelt/EGPWX klingen/DIVWX klinisch/AEPT klinken/DIXY klipp klippenreich/AEPT klirren/DIWXY klirrt/EGPWX klischeehaft/AEPT klischieren/DIXY klitschnass/AEPT klitzeklein/AEPT klönen/DIWXY klönt/EGPWX klösterlich/AEPT klonen/BDIWXY klopfen/DIWXY klopft/EGPWX klotzig/ACEPT klüger/AEPT klügste/ANRS klug/AEPTU klugerweise klumpig/AEPT km knabbern/DIWXY knabenhaft/AEPT knacken/DIWXY knallen/DIVWXY knallfroschartig/AEPT knallhart/AEPT knallig/ACEPT knallrot/AEPT knallt/EGPVWX knapp/ACEPT knarren/DIWXY knattern/DIWXY knauserig/ACEPT knausern/DIWXY knebeln/DIWXY knechten/DIXY kneifen/DIVWX kneten/BDIXY knicken/BDIVWXY knickerig/AEPT knickt/EGPVWX knickte/GNVZ knickten/GIVWX knien/DIXY kniet/EGPWX knietief/AEPT knieweich/AEPT kniff/PVZ knifflig/ACEPT knipsen/DIWXY knirschen/DIWXY knirscht/EGPWX knistern/DIWXY knistert/EGPWX knitterfrei/ACEPT knöchellang/AEPT knöchern/AEPT knöpfen/DIWXY knobeln/DIWXY knochentrocken/AEPT knochig/AEPT knollig/AEPT knorplig/AEPT knorrig/AEPT knospenhaft/AEPT knoten/DIVXY knotig/AEPT knüpfen/DIVWXY knüpft/EGPVWX knüpfte/GNVZ knüpften/GIVWX knüppeldick/AEPT knüppeln/DIWXY knurren/DIWXY knurrt/EGPWX knusperig/ACEPT königlich/AEPT können/DIY köpfen/DIWXY körnig/ACEPT körperbehindert/AEPT körperlich/AEPTU köstlich/ACEPT koalieren/DIXY koalitionstreu/AEPT koalitionsunfähig/AEPT kobaltblaue/ANRS kochecht/AEPT kochen/BDIWXY kodieren/BDIOXY kodifizieren/DIOXY kofferweise kognakfarbig/AEPT kognitiv/AEPT kohärent/AEPT kohlrabenschwarz/AEPT kokett/ACEPT kokettieren/DIWXY kollabieren/DIWXY kollaborieren/DIXY kollegial/ACEPTU kollektiv/AEPT kollektivieren/DIOXY kollektivistisch/AEPT kollern/DIXY kollidieren/DIOXY kollinear/AEPT kolonial/AEPT kolonisieren/DIOXY kolorieren/IOXY kolossal/AEPT kolportieren/DIOWXY kolumbianisch/AEPT kombinatorisch/AEPT kombinieren/BDIOXY kometenhaft/AEPT komfortabel/ACU komisch/ACEPT kommandieren/DIOXY kommen/DGIVWX kommentarlos/AEPT kommentieren/DIOXY kommerzialisieren/DIOXY kommerziell/ACEPT kommissarisch/AEPT kommissionshungrig/AEPT kommunal/AEPT kommunikationsfähig/AEPT kommunikationstechnisch/AEPT kommunikativ/AEPT kommunistisch/AEPT kommunizieren/DIXY kommutativ/AEPT kommutieren/DIOXY komödiantisch/AEPT kompakt/ACEPT kompatibel/A kompensationslos/AEPT kompensatorisch/AEPT kompensieren/BDIOXY kompetent/ACEPT kompetitiv/AEPT kompilieren/BDIOXY komplanar/AEPT komplementär/AEPT komplett/ACEPT komplettieren/DIOXY komplex/ACEPT komplizieren/DIOVXY kompliziert/ACEPTX komponentenorientiert/AEPT komponentenweise/ANRS komponentig/AEPT komponieren/DIOXY kompositorisch/AEPT kompostieren/DIOWXY kompress komprimieren/BDIOXY kompromissbereit/AEPT kompromisslos/ACEPT kompromittieren/DIOXY kondensieren/DIOXY konditionell konditionieren/DIOXY kondolieren/DIXY konfektioniert/AEPT konferieren/DIXY konfessionell/AEPT konfessionslos/AEPT konfigurieren/BDIOXY konfiszieren/DIOXY konfliktfrei/AEPT konflikthaltig/AEPT konfliktreich/AEPT konfluent/AEPT konföderal/AEPT konform/AEPT konfrontieren/DIOXY konfus/ACEPT konfuzianisch/AEPT kongenial/AEPT kongolesisch/AEPT kongruent/AEPT konisch/AEPT konjugieren/DIOXY konjunkturdämpfend/AEPT konjunkturell/AEPT konjunkturgerecht/AEPT konkatenieren/IOXY konkav/AEPT konkret/AEPT konkrete/ACNRS konkretisieren/BDIOXY konkurrenzfähig/ACEPT konkurrenzlos/AEPT konkurrieren/DIXY konkursreif/AEPT konnotativ/AEPT konnte/GNZ konsensfähig/AEPT konsensorientiert/AEPT konsequent/ACEPT konsequenterweise konservativ/ACEPT konservieren/BDIOXY konsistent/AEPT konsolidieren/DIOXY konspirativ/AEPT konstant/AEPT konstantinisch/AEPT konstatieren/DIOXY konsternieren/DIOXY konstituieren/DIOXY konstitutionell/AEPT konstitutiv/AEPT konstruieren/DIOXY konstruktionsbedingt/AEPT konstruktionsreif/AEPT konstruktiv/ACEPT konsularisch/AEPT konsultieren/DIOXY konsumieren/DIOXY kontaktarm/AEPT kontaktfreudig/ACEPT kontaktieren/DIOXY kontaktschwach/AEPT kontaktsuchend/AEPT kontaminieren/DIOXY kontemplativ/AEPT konterkarieren/DIOXY kontern/DIXY kontert/EGPX kontextabhängig/AEPT kontextfrei/AEPT kontextsensitiv/AEPT kontextspezifisch/AEPT kontextunabhängig/AEPT kontinental/AEPT kontinentaleuropäisch/AEPT kontingentieren/DIOXY kontinuierlich/AEPT konträr/AEPT kontraproduktiv/AEPT kontrastbetont/AEPT kontrastieren/DIWXY kontrastreich/ACEPT kontraststärker/AEPT kontrollierbar/AEPTU kontrollieren/BDIOXY kontrovers/AEPT konventionell/AEPTU konvergent/AEPT konvergieren/DIOXY konvertieren/BDIOXY konvex/AEPT konzentrieren/DIOXY konzeptionell/AEPT konzeptionslos/AEPT konzeptlos/AEPT konzeptuell/AEPT konzernartig/AEPT konzernintern/AEPT konzertant/AEPT konziliant/AEPT konzipieren/DIOXY kooperativ/AEPTU kooperieren/DIXY kooptieren/DIOXY koordinieren/DIOXY kopernikanisch/AEPT kopflastig/AEPT kopflos/ACEPT kopfschüttelnd/AEPT kopfüber kopieren/BDIOXY koppeln/BDIVXY koppelt/EGPVX koppelte/GNVZ koppelten/GIVWX korbartig/AEPT koreanisch/AEPT korrekt/ACEPTU korrekterweise korrelieren/DIOXY korrespondieren/DIXY korrigierbar/AEPTU korrigieren/BDIOXY korrodieren/DIOXY korrosionsbeständig/AEPT korrumpieren/BDIOXY korrupt/AEPT koscher/AEPT kosmetisch/AEPT kosmisch/AEPT kosmopolitisch/AEPT kostbar/ACEPT kosten/BDIXY kostenfrei/AEPT kostengünstig/ACEPT kostenintensiv/AEPT kostenlos/AEPT kostenmäßig/AEPT kostenpflichtig/AEPT kostenschonend/AEPT kostensenkend/AEPT kostensparend/AEPT kostet/EGPWX kostspielig/ACEPT kostümieren/DIOXY kotzen/DIXY kp krächzen/DIXY kräftezehrend/AEPT kräftig/ACEPTZ kräftigen/DIWXY kräftigt/EGPWX krähen/DIXY kränken/BDIXY kränker/AEPT kränklich/ACEPT kränkst/AEPT krabbeln/DIXY krachen/DIVXY krachledern/AEPT kracht/EGPVX kraftlos/ACEPT kraftraubend/ACEPT kraftvoll/AEPT krakeelen/DIXY krallen/IXY kramen/IXY krampfen/DIVXY krampfhaft/AEPT krank/AEPT kranken/DIWXY krankhaft/ACEPT krankschreiben/I krass/ACEPT kratzen/DIVWXY kratzt/EGPVWX kraulen/DIXY krault/EGPX kraus/ACEPTZ krausen/DIWXY kraushaarig/AEPT kreativ/ACEPT kreatürlich/AEPT krebsartig/AEPT krebskrank/AEPT krebsrot/AEPT kredenzen/DIOXY kreditfähig/ACEPT kreditieren/DIOXY kreditsuchend/AEPT kreditunwürdig/AEPT kreditwürdig/ACEPT kreidebleich/AEPT kreiden/DIXY kreideweiß/AEPT kreieren/DIOXY kreischen/DIXY kreischt/EGPX kreiseln/DIXY kreisen/DIXY kreisförmig/AEPT kreisrund/AEPT krempig/AEPT krepieren/DIOXY kreuzen/DIXY kreuzigen/DIXY kreuzweise/ANRS kribbeln/DIXY kribblig/AEPT kriechen/DIVX kriegen/DIXY kriegerisch/AEPT kriegsbeschädigt/AEPT kriegsblind/AEPT kriegsfeindlich/AEPT kriegsgerichtlich/AEPT kriegsgeschädigt/AEPT kriegsuntauglich/AEPT kriegsversehrt/AEPT kriegswillig/AEPT kriegszerstört/AEPT kriegt/EGPX kriminalistisch/AEPT kriminalpolizeilich/AEPT kriminell/ACEPT kriminologisch/AEPT kriseln kriselt/E krisenanfällig/AEPT krisenfest/AEPT krisenhaft/AEPT krisensicher/AEPT krisenunabhängig/AEPT kristallin/AEPT kristallinisch/AEPT kristallisationsfest/AEPT kristallisieren/DIOXY kristallklar/AEPT kristallrein/AEPT kritikbedacht/AEPT kritiklos/AEPT kritisch/ACEPTU kritisieren/BDIOXY kritzeln/IXY kritzelt/EGPX krönen/DIXY kroatisch/AEPT kroch/PVZ krochen/GVWX kross/ACEPT krümeln/DIVXY krümmen/DIVXY krümmt/EGPVX krümmte/GNVZ krümmten/GIVWX krüppelhaft/AEPT krüpplig/ACEPT krud/AEPT krumm/ACEPT kryptisch/AEPT kryptographisch/AEPT kt kühl/ACEPTZ kühlen/DIWXY kühn/ACEPT kümmerlich/AEPT kümmern/DIVXY kümmert/EGPVX kündbar/AEPTU künden/BDIVXY kündigen/DIVXY kündigt/EGPVX kündigte/GNVZ kündigten/GIVWX künftig/AEPT künstlerisch/AEPT künstlich/ACEPT küren/DIXY kürze/CNR kürzen/DIVXY kürzlich/AEPT küssen/DIWXY küstengebunden/AEPT kubanisch/AEPT kubieren/DIOWXY kubisch/AEPT kubistisch/AEPT kugelförmig/AEPT kugeln/DIXY kugelsicher/AEPT kuglig/AEPT kulant/AEPT kulanzweise kulinarisch/AEPT kullern/IXY kultisch/AEPT kultivieren/BDIOXY kulturell/ACEPT kulturfreundlich/ACEPT kulturgeschichtlich/AEPT kulturhistorisch/AEPT kulturkritisch/ACEPT kulturpolitisch/AEPT kummervoll/ACEPT kumulativ/AEPT kumulieren/DIOWXY kund kundenfreundlich/AEPT kundenseitig/AEPT kundenspezifisch/AEPT kundgetan kundig/AEPTU kundtat/PZ kundtun/IX kundzutun kunstbewusst/AEPT kunstinteressiert/AEPT kunstlos/AEPT kunstvoll/ACEPT kunterbunt/AEPT kupferfarben/AEPT kupfern/AEPT kuppeln/DIVXY kurativ/AEPT kurbeln/DIXY kurdisch/AEPT kuren/DIXY kurieren/BDIOXY kurios/AEPT kurioserweise kursieren/DIXY kursiv/AEPT kursvernichtend/AEPT kurven/DIXY kurvenreich/AEPT kurz/AEPT kurzatmig/AEPT kurzbeinig/AEPT kurzentschlossen/AEPT kurzerhand kurzfristig/AEPT kurzgeschlossen/AEPT kurzhaarig/AEPT kurzlebig/AEPT kurzschließen/DIX kurzschlussfest/AEPT kurzsichtig/AEPT kurzum kurzweilig/AEPT kurzzeitig/AEPT kuscheln/DIWXY kuschelweich/AEPT kuschen/DIXY kussecht/AEPT kybernetisch/AEPT kyrillisch/AEPT lächeln/DIXY lächerlich/AEPT lädieren/DIOXY lädt/VX lägen/IX lähmen/DIXY ländermäßig/AEPT ländlich/ACEPT länger/AEPT längerfristig/AEPT länglich/ACEPT längs längst/AEPT längsten/SW lärmen/DIXY lärmig/ACEPT lärmvoll/AEPT lässig/ACEPT lässt/V lästern/DIVXY lästert/EGPVX lästig/ACEPT läufig/AEGPT läuft/VX läuten/DIXY läutern/DIWXY laben/DIXY labil/ACEPT laborieren/DIXY labormäßig/AEPT lachen/DIWXY lacht/EGPWX lackgeschützt/AEPT lackieren/DIOXY ladefähig/AEPT laden/BDGIV lag/PZp lagebedingt/AEPT lagerichtig/AEPT lagern/BDIVXY lagert/EGPVX lagerte/GNVZ lagerten/GIVWX lahm/ACEPTZ lahmen/DIXY lahmlegen/DIXY lahmt/EGPWX lahmzulegen/D laichen/DIXY laienhaft/ACEPT laienhafterweise laizistisch/AEPT lakonisch/AEPT lallen/DIXY lambda lamentieren/DIXY lammfromm/AEPT lancieren/DIOXY landab landeinwärts landen/DIXY landesbedingt/AEPT landeseigen/AEPT landesplanerisch/AEPT landespolitisch/AEPT landesweit/AEPT landgebunden/AEPT landläufig/AEPT landschaftlich/AEPT landwirtschaftlich/AEPT lang/AEGPTZ langarmig/AEPT langatmig/AEPT langbeinig/AEPT langen/DGIWXY langfristig/AEPT langgehen/I langhaarig/AEPT langhalsig/AEPT langjährig/AEPT langlaufen/DI langlebig/AEPT langmütig/AEPT langsam/ACEPT langwährend/AEPT langweilen/DIXY langweilig/ACEPT langwierig/AEPT laotisch/AEPT lapidar/AEPT las/PVZq lasergedruckt/AEPT lassen/DGIVW lasten/DIWXY lastenfrei lasterhaft/ACEPT lastfrei/AEPT lasziv/AEPT lateinamerikanisch/AEPT lateinisch/AEPT latent/AEPT lateral/AEPT latschen/DIXY latscht/EGPX lau/ACEPRTZ laude lauern/DIWXY laufen/DGIVW lauffähig/AEPT laugen/IXY launenhaft/ACEPT launig/AEPT launisch/ACEPT lauschen/DIXY lauschig/AEPT lauscht/EGPX lausen/DIOXY lausig/AEPT laust/AEGPTW lauste/AGNRSZ laut/ACELPTWX laute/ACNRSZ lauten/DIWXY lauter/AEPTU lauthals lautlos/ACEPT lautstark/AEPT lauwarm/AEPT lawinenartig/AEPT lax/ACEPT leasen/DIXY leben/DIVXY lebendgeboren/AEPT lebendig/ACEPT lebensbedrohend/AEPT lebensbejahend/AEPT lebensfähig/AEPT lebensfreundlich/AEPT lebensfroh/AEPT lebensgefährlich/AEPT lebensgewandt/AEPT lebensklug/AEPT lebenslänglich/AEPT lebenslang/AEPT lebenslustig/AEPT lebensmüde/ANRS lebensnah/AEPT lebensnotwendig/AEPT lebensunfähig/AEPT lebensuntüchtig/AEPT lebensvoll/AEPT lebenswert/ACEPT lebenswichtig/ACEPT lebhaft/ACEPT leblos/AEPT lebt/EGPVX lebte/GNVZ lebten/GIVWX lechzen/DIXY lecken/DIXY lecker/AEPT ledern/AEPT ledig/AEPT lediglich leer/ACEPTZ leeren/DIWXY legal/ACEPT legalisieren/DIOXY legen/DGIVWXY legendär/AEPT leger/AEPT legiert/AEPT legislativ/AEPT legitim/AEPT legitimerweise legitimieren/DIOWXY lehmig/AEPT lehnen/DIXY lehnt/EGPX lehren/DIXY lehrreich/ACEPT leibeigen/AEPT leibhaftig/AEPT leiblich/AEPT leibt/V leichenblass/AEPT leicht/ACEPT leichtathletisch/AEPT leichtfertig/ACEPT leichtfüßig/AEPT leichtgängig/AEPT leichtgläubig/ACEPT leichthändig/AEPT leichtlebig/AEPT leichtsinnig/ACEPT leide/NRZ leiden/DIVX leidenschaftlich/ACEPT leidgeprüft/AEPT leidig/AEPT leidlich/AEPTU leidtragen/DI leidvoll/AEPT leihen/DIVWX leihweise leimen/DIVXY leimt/EGPVX leimte/GNVZ leimten/GIVWX leinwandverstärkt/AEPT leise/ACNRS leisten/DIXY leistungsbezogen/AEPT leistungsfähig/ACEPT leistungsgerecht/AEPT leistungsorientiert/AEPT leistungsstärkste/ANRS leistungsstark/AEPT leistungssteigernd/AEPT leiten/DGIVXY leitfähig/AEPT leitungsmäßig/AEPT lemmingartig/AEPT lenken/BDIXY lernbegierig/ACEPT lernbehindert/AEPT lernen/DIVXY lernfähig/AEPT lesbar/AEPTU lesbisch/AEPT lesen/BDGIV lesenswert/AEPT leserlich/ACEPTU lettisch/AEPT letzte/ANRSV letzten/S letztendlich/AEPT letzter/AEPT letztgeliefert/AEPT letztgenannt/AEPT letzthändig/AEPT letzthin letztjährige/ANRS letztklassig/AEPT letztlich/AEPT letztmalig/AEPT letztmals letztmöglich/AEPT letztwillig/AEPT leuchten/DIXY leuchtend/ACEPT leugnen/DIVXY leugnet/EGPVWX leugnete/GNVZ leugneten/GIVWX leutselig/ACEPT lexikalisch/AEPT lexikographisch/AEPT lfd lfd. libanesisch/AEPT liberal/ACEPT liberalisieren/DIOXY libysch/AEPT lichtblau/AEPT lichtdurchlässig/ACEPT lichte/ANRSZ lichtempfindlich/ACEPT lichten/DIWXY lichterloh/AEPT lieb/ACELPTZ liebäugeln/DIXY lieben/DIWXY liebenswert/ACEPT liebenswürdig/ACEPT liebeskrank/AEPT liebevoll/ACEPT liebgeworden/AEPT liebkosen/DIXY lieblich/ACEPT lieblichst/AEPTW lieblos/ACEPT liebreizend/AEPT liederlich/ACEPT lief/EPVZ lieferfähig/AEPT lieferfertig/AEPT liefern/BDIXY liegen/DIX lieh/PVZ liehen/GVWX lies ließ/EPVZ liest/V lifte/NZ lila limitieren/DIOXY lind/AEGPRT linde/AGNRS lindern/DIWXY linear/AEPT linguistisch/AEPT linientreu/AEPT linke/ANRS linken/DIXY links linksbündig/AEPT linksextrem/ACEPT linksextremistisch/AEPT linksgerichtet/AEPT linkslastig/AEPT linksliberal/AEPT linksliegen/D linksorientiert/AEPT linksradikal/AEPT linksrheinisch/AEPT linksseitig/AEPT linkssozialistisch/AEPT linksum linksunabhängig/AEPT liquid/AEPT liquidieren/BDIOXY lispeln/DIXY listen/DIXY listenreich/AEPT listig/ACEPT litaneiartig/AEPT literarisch/AEPTU literweise lithografisch/AEPT lithographisch/AEPT litt/EPZ liturgisch/AEPT live livriert/AEPT lizenzieren/BDIOXY löblich/AEPT löchern/DIXY löchrig/AEPT löffeln/DIXY löhnen/DIXY lösbar/ACEPTU löschen/DIVXY lösen/BDIXY löslich/ACEPTU löten/DIVXY lötet/EGPVWX loben/DGIVXY lobenswert/ACEPT lochen/DIXY locken/DIVXY locker/ACENPTZ lockerlassen/DI lockermachen/DIX lockern/DIWXY lockerzumachen lockig/AEPT lockt/EGPVX lockte/GNVZ lockten/GIVWX lodern/DIXY log/PZ logarithmisch/AEPT loggen/DIXY loggt/EGPX logieren/DIXY logikbasiert/AEPT logisch/AEPTU logischerweise logistisch/AEPT lohnabhängig/AEPT lohnen/DIXY lohnend/ACEPT lohnenswert/AEPT lohnpolitisch/AEPT lohnt/EGPX lokal/AEPT lokalbedingt/AEPT lokalisieren/BDIOXY longitudinal/AEPT los/ACEPTZ losband/PZ losbinden/DIX losbrach/PZ losbrechen/DI losbricht/X loseisen/DIXY losen/DIWXY losfährt/X losfahren/DI losgebrochen/AEPT losgebunden/AEPT losgefahren/AEPT losgegangen/AEPT losgehen/DIX losgelassen/AEPT losgelegt/AEPT losgelöst/AEPT losgemacht/AEPT losgerast losgerissen/AEPT losgesagt/AEPT losgesaust losgeschickt/AEPT losgeschlagen losgeworden/AEPT loshetzen/DIXY loskommen/DIX loslassen/DI loslegen/DIXY losließ/EPZ loslösen/DIXY losmachen/DIXY losreißen/DIX losrollen/IXY losschicken/DIXY losschlagen/DI lost/EGPV loste/GNVZ losten/GIVWX losweinen/DIXY loswerden/DI loswiehern/DIXY loszueisen/D loszukaufen/D loszureißen/D loszuschneiden/D loszuwerden/D lotsen/IXY lottospielen/DIXY loyal/AEPT lt lt. lückenhaft/ACEPT lückenlos/ACEPT lüften/DIXY lügen/DIX lügnerisch/ACEPT lüstern/AEPT lud/PVZ luftdicht/ACEPT luftfahrttechnisch/AEPT luftförmig/AEPT luftig/ACEPT lugen/DIXY lukrativ/ACEPT lukullisch/AEPT lumpig/AEPT lungern/DIXY lupenrein/ACEPT lustig/ACEPTU lustlos/ACEPT lustvoll/ACEPT lutherisch/AEPT lutschen/DIXY luxemburgisch/AEPT luxuriös/ACEPT lyrisch/AEPT mA mäanderartig/AEPT mäanderförmig/AEPT mäandern/DIXY mäandrieren/DIOXY mächtig/ACEPT mädchenhaft/ACEPT mähen/DIWXY männlich/ACEPTU märchenhaft/ACEPT märkisch/AEPT mäßig/ACEPTZ mäßigen/DIWXY mästen/DIXY machen/BDIVWXY macht/EGPVWX machte/GNVZ machten/GIVWX machthaberisch/AEPT machtlos/ACEPT machtpolitisch/AEPT machtsüchtig/AEPT machtvoll/ACEPT madig/AEPT magellansche/S mager/ACEPT magisch/AEPT magnetisch/AEPT magnetisiert/AEPT magst/VW mahlen/DGIXY mahnen/DIXY majestätisch/AEPT majorisieren/DIOXY makaber/ACEPT makellos/ACEPT makroskopisch/AEPT malaysisch/AEPT malen/DIWXY malerisch/AEPT maliziös/AEPT malträtieren/DIOXY man managen/DIXY manch/AEPT mancherlei manchmal mandelförmig/AEPT mangelhaft/AEPT mangeln/DIXY mangels manifestieren/DIOXY manipulieren/BDIOXY manisch/AEPT mannhaft/AEPT mannigfach/ACEPT mannigfaltig/AEPT manövrieren/DIXY manövrierunfähig/AEPT manuell/AEPT marginal/AEPT marinieren/DIOXY maritim/AEPT markant/ACEPT markenpflichtig/AEPT markgräflich/AEPT markieren/DIOXY marktbeherrschend/AEPT marktfähig/ACEPT marktführend/AEPT marktgerecht/AEPT marktkonform/AEPT marktorientiert/AEPT marktpolitisch/AEPT marktreif/AEPT marktschreierisch/AEPT marktüblich/AEPT marktwirtschaftlich/AEPT marokkanisch/AEPT maronitisch/AEPT marschieren/DIXY martern/DIXY martialisch/AEPT marxistisch/AEPT maß/PVZ maßgearbeitet/AEPT maßgebend/ACEPT maßgeblich/AEPTU maßgerecht/AEPT maßgeschneidert/AEPT maßlos/AEPT maßstäblich/AEPT maßstabsgetreu/AEPT maßvoll/AEPT maschinell/AEPT maschinenabhängig/AEPT maschinenbezogen/AEPT maschinenfertig/AEPT maschinenhaft/AEPT maschinenmäßig/AEPT maschinennäher/AEPT maschinennah/AEPT maschinenspezifisch/AEPT maschinensprachlich/AEPT maschinenunabhängig/AEPT maschinenunterstützt/AEPT maschinenzugehörig/AEPT maskenhaft/AEPT maskenorganisiert/AEPT maskieren/DIOXY maskulin/AEPT massakrieren/DIOXY massenhaft/AEPT massenpsychologisch/AEPT massenweise massieren/DIOXY massig/AEPT massiv/ACEPT masturbieren/DIWXY materialgerecht/AEPT materialistisch/ACEPT materialspezifisch/AEPT materiell/AEPT mathematisch/AEPT matschig/ACEPT matt/ACEPT mattgelb/AEPT mattgolden/AEPT mattiert/AEPT mattschwarz/AEPT mauern/DIVXY mauert/EGPVX mauerte/GNVZ mauerten/GIVWX maulen/DIXY mausern/DIXY mausgrau/AEPT max max. maximal/AEPT maximieren/DIOXY mazedonisch/AEPT mechanisch/AEPT mechanisiert/AEPT mechanistisch/AEPT meckern/DIXY meckert/EGPX mecklenburgisch/AEPT meditativ/AEPT mediterran/AEPT meditieren/DIXY medizinisch/AEPT megärenhafte mehlig/ACEPT mehraderig/AEPT mehrdeutig/ACEPT mehrdimensional/AEPT mehreckig/AEPT mehren/DIWXY mehrere/NR mehrfach/AEPT mehrfarbig/AEPT mehrgeschossig/AEPT mehrgliederig/AEPT mehrheitlich/AEPT mehrjährig/AEPT mehrkanalig/AEPT mehrlinig/AEPT mehrmalig/AEPT mehrmals mehrmonatig/AEPT mehrpolig/AEPT mehrprozentig/AEPT mehrseitig/AEPT mehrsilbig/AEPT mehrsortig/AEPT mehrsprachig/AEPT mehrstellig/AEPT mehrstimmig/AEPT mehrstöckig/AEPT mehrstündig/AEPT mehrstufig/AEPT mehrtägig/AEPT mehrteilig/AEPT mehrwöchig/AEPT mehrzeilig/AEPT meiden/DIVX meilenweit mein/AEGPTZ meinen/DGIWXY meinerseits meinesgleichen meinesteils meinethalben meinetwegen meinetwillen meinige/N meinte/GNVZ meinten/GIVWX meinungsbildend/AEPT meißeln/DIXY meist/EP meistbesucht/AEPT meistbietend/AEPT meisten/SW meistenteils meisterhaft/ACEPT meisterlich/AEPT meistern/DIXY meistgekauft/AEPT meistgenannt/AEPT meistgespielt/AEPT meistzitiert/AEPT melancholisch/ACEPT melden/DIVXY meldepflichtig/AEPT meldet/EGPVWX meldete/GNVZ meldeten/GIVWX melken/DIXY melodiös/AEPT melodisch/AEPT melodramatisch/AEPT memorieren/DIOXY mengen/IVXY mengenmäßig/AEPT menschenähnlich/AEPT menschenfreundlich/AEPT menschenleer/AEPT menschenmöglich/AEPT menschenscheu/ACEPT menschenspezifisch/AEPT menschenunwürdig/ACEPT menschenwürdig/ACEPT menschlich/ACEPTU menstrual/AEPT mental/AEPT menügesteuert/AEPT merk/ELPV merkantil/AEPT merken/BDIVWXY merklich/AEPTU merkmalsarm/AEPT merkt/EGPVWX merkte/GNVZ merkten/GIVWX merkwürdig/ACEPT merkwürdigerweise messbar/AEPTU messen/BDGIV messerscharf/AEPT messtechnisch/AEPT metabol metabolisch/AEPT metallen/AEPT metallgrün/AEPT metallhaltig/AEPT metallisch/AEPT metallisiert/AEPT metallurgisch/AEPT metaphysisch/AEPT meteorologisch/AEPT meterweise methodisch/ACEPTU methodologisch/AEPT metrisch/AEPT meucheln/DIXY meuchlerisch/AEPT meutern/DIXY meutert/EGPX mexikanisch/AEPT miauen/DIXY mich mickerig/AEPT mied/PVZ mieden/GVWX mies/AEPT mietähnlich/AEPT mieten/BDIVXY mietet/EGPVWX mietete/GNVZ mieteten/GIVWX mikrobiologisch/AEPT mikroelektronisch/AEPT mikroskopisch/AEPT mikroverfilmt/AEPT milchig/AEPT mild/ACEPRT mildern/DIWXY mildtätig/ACEPT milieubedingt/AEPT militärähnlich/AEPT militärisch/AEPTU militärpolitisch/AEPT militärtechnisch/AEPT militant/AEPT militaristisch/AEPT millimeterdünn/AEPT millimetergenau/AEPT millimeterweise millionenfach/AEPT millionenschwer/AEPT millionste/ANRS mimisch/AEPT min min. minder/AENPTZ minderbemittelt/AEPT minderjährig/AEPT mindern/DIWXY minderte/GNVZ minderten/GIVWX minderwertig/ACEPT mindeste/N mindesten/S mindestreservepflichtig/AEPT minenverseucht/AEPT mineralisch/AEPT minimal/ACEPT minimalisieren/DIOXY minimieren/DIOXY minoisch/AEPT minütig/AEPT minus minutenlang/AEPT minutenschnell/AEPT minutiös/AEPT mir mischen/BDIWXY miserabel/AC miss/ELPVZ missachten/DIOXY missbehagen/DIXY missbilligen/DIOXY missbräuchlich/AEPT missbrauchen/DIOXY missdeuten/DIOXY missen/DIVWXY missfällt/X missfallen/DI missfiel/EPZ missgebildet/AEPT missgelaunt/AEPT missgestimmt/AEPT missglücken/DIOXY missgönnen/DIOXY missgünstig/ACEPT misshandeln/DIOXY missionieren/DIOXY misslang/PZ misslingen/DIX misslungen/AEPT missmutig/ACEPT missraten/ACEPT misst/EGPVW misste/GNVZ missten/GIVWX misstönend/AEPT misstönig/AEPT misstrauen/DIXY misstrauisch/ACEPT missvergnügt/AEPT missverständlich/AEPTU missverstanden/AEPTWX missverstehen/DIX misszudeuten/D misszuverstehen/D misten/DIXY mistig/AEPT mit mitangeben/DI mitangehört/AEPT mitangeklagt/AEPT mitangesehen/AEPT mitanhören/DIXY mitarbeiten/DIXY mitarbeiterorientiert/AEPT mitaufnehmen/DI mitausstellen/DIXY mitbegründen/DIXY mitbekam/PZ mitbekommen/DIX mitbelastet/AEPT mitbenützen/DIOXY mitbenutzt/AEPT mitbeobachtet/AEPT mitberechnen/DIOXY mitberücksichtigen/DIOXY mitbestellt/AEPT mitbestimmen/DIOXY mitbeteiligt/AEPT mitbetreuen/DIOXY mitbetrifft mitbewirken/IXY mitbezahlen/DIOXY mitbringen/DIX mitdenken/DIX mitdienen/DIXY mitdrehen/DIXY miteinander miteinbeziehen/DIX miteinbezogen/AEPT miteinkalkuliert/AEPT mitempfinden/DIX mitentwickelt/AEPT miterleben/BDIOXY mitfahren/DI mitfinanzieren/DIOXY mitfühlen/DIXY mitführen/DIXY mitfuhr/PZ mitgab/PZ mitgearbeitet mitgeben/DI mitgebracht/AEPT mitgedruckt mitgefahren/AEPT mitgefangen/AEPT mitgefiebert mitgefühlt mitgeführt/AEPT mitgegangen/AEPT mitgegeben/AEPT mitgehalten/AEPT mitgehen/DIX mitgehört/AEPT mitgekämpft mitgekommen/AEPT mitgekriegt mitgeliefert/AEPT mitgeloggt/AEPT mitgemacht/AEPT mitgemessen/AEPT mitgemietet/AEPT mitgenommen/AEPT mitgeprägt mitgeredet mitgereist/AEPT mitgerissen/AEPT mitgeschickt/AEPT mitgeschleift/AEPT mitgeschleppt/AEPT mitgesendet/AEPT mitgespielt mitgesprochen mitgestalten/DIOXY mitgesteuert mitgesungen/AEPT mitgeteilt/AEPT mitgetragen/AEPT mitgewirkt mitgezählt mitgezogen mitgibt/X mithältst/WX mithalten/DI mithandeln/DIXY mithelfen/DI mithilfe mithin mithören/DIXY mitjubeln/DIXY mitkämen/IX mitkämpfen/DIXY mitkam/PZ mitkassieren/DIOXY mitkommen/DIX mitkriegen/DIXY mitlachen/DIXY mitlaufen/DI mitleiden/DIX mitleidig/AEPT mitleidlos/ACEPT mitleidvoll/AEPT mitlesen/DI mitliefern/IXY mitloggen/DIXY mitmachen/DIXY mitmenschlich/AEPT mitmischen/DIXY mitnahm/PZ mitnehmen/DI mitnichten mitprotokollieren/DIOXY mitrechnen/DIXY mitreden/DIXY mitreißen/DIX mitreisen/DIXY mitsamt mitschicken/DIXY mitschneiden/DIX mitschuldig/AEPT mitschwingen/DIX mitsenden/DIX mitsingen/DIX mitspielen/DIXY mitsprechen/DI mitspringen/DIX mitsteigen/DIX mittäglich/AEPT mittags mitteilen/DIXY mitteilsam/AEPT mitteilungsgemäß/AEPT mittelalterlich/AEPT mittelamerikanisch/AEPT mittelasiatisch/AEPT mittelbar/AEPTUV mittelblau/AEPT mitteldeutsch/AEPT mittelenglisch/AEPT mitteleuropäisch/AEPT mittelflach/AEPT mittelfristig/AEPT mittelgroß/AEPT mittelklassig/AEPT mittelkurz/AEPT mittellang/AEPT mittellos/AEPT mittelmäßig/ACEPT mittelminoisch/AEPT mittelmykenisch/AEPT mitteln/BDIVXY mittelöstlich/AEPT mittels/V mittelschwer/AEPT mittelständisch/AEPT mitteltief/AEPT mittelträge/ANRS mitten mittendrin mittig/AEPT mittlere/ANRS mittlerweile mittragen/DI mittwochs mitüberträgt/X mitunter mitverantwortlich/AEPT mitverarbeiten/DIOXY mitverfolgen/DIOXY mitversichern/DIXY mitversorgen/DIOXY mitverwaltet/AEPT mitverwenden/DIOXY mitwählen/DIXY mitwirken/DIXY mitwissen/DI mitziehen/DIX mitzuarbeiten mitzubenutzen/D mitzubringen/D mitzuerleben/D mitzufahren mitzugeben/D mitzugestalten/D mitzuhalten mitzukommen mitzulesen/D mitzumachen/D mitzunehmen/D mitzureißen/D mitzusenden/D mitzusprechen mitzuteilen/D mitzutragen/D mitzuübernehmen/D mitzuwirken/D mixen/DIXY mm möblieren/BDIOXY möchte/NZ möge/NVZ mögen/DIV möglich/ACEPTU möglicherweise möglichst/AEPTW mörderisch/AEPT mobil/ACEPT mobilgemacht/AEPT mobilisieren/BDIOXY mochte/GNVZ mochten/GIVX modebewusst/AEPT modellbasiert/AEPT modellgestützt/AEPT modellhaft/AEPT modellieren/BDIOXY modellorientiert/AEPT modelltheoretisch/AEPT modemfähig/AEPT moderat/AEPT moderieren/DIOXY moderig/AEPT modern/ACDEIPTUVXY modernisieren/BDIOXY modifizieren/BDIOXY modisch/ACEPT modular/AEPT modularisieren/BDIOXY modulieren/DIOXY modulo modulübergreifend/AEPT modulüberschreitend/AEPT mogeln/DIXY mogelt/EGPX mohammedanisch/AEPT mokieren/DIXY molar/AEPT molekular/AEPT mollig/ACEPT momentan/AEPT monarchisch/AEPT monatelang/AEPT monatlich/AEPT monatsweise mondän/AEPT monegassisch/AEPT monetär/AEPT mongolisch/AEPT monieren/IOXY monistisch/AEPT monogam/AEPT monografisch/AEPT monolithisch/AEPT monopolistisch/AEPT monotheistisch/AEPT monoton/AEPT monströs/AEPT montags montieren/BDIOXY monumental/ACEPT moorig/AEPT moralisch/AEPTU moralisieren/DIXY morastig/AEPT morden/DIXY mordet/EGPWX mordsmäßig/AEPT morgen/S morgenländisch/AEPT morgige/ANRS morphologisch/AEPT morsch/AEPT mosaikartig/AEPT mosern/DIWXY mosert/EGPWX moslemisch/AEPT mosten/DIXY motivieren/BDIOXY motorisch/AEPT motorisieren/DIOXY motorsportlich/AEPT motzen/DIXY mounten/IXY ms msec müde/ACNRS mühelos/ACEPT mühen/DIXY mühevoll/ACEPT mühsam/AEPT mühselig/ACEPT mündelsicher/AEPT münden/DIXY mündig/AEPTU mündlich/AEPT münzen/DIXY mürbe/ANRS mürrisch/AEPT müßig/AEPT müssen/DIXY mütterlich/AEPT mütterlicherseits muffig/AEPT mulmig/AEPT multifunktional/AEPT multilateral/AEPT multimedial/AEPT multinational/AEPT multipel/A multiplikativ/AEPT multiplizieren/DIOXY mundgerecht/AEPT munkeln/DIXY munkelt/EGPX munter/ACEPT murmeln/DIXY murren/DIXY museumsreif/AEPT musikalisch/ACEPTU musikliebend/AEPT musisch/AEPT musizieren/DIXY muskulär/AEPT muskulös/ACEPT muslimisch/AEPT musst/EGPW mussten/IWX mustergültig/AEPT musterhaft/ACEPT mustern/DIXY muten/DIVXY mutig/ACEPTU mutlos/ACEPT mutmaßen/IXY mutmaßlich/AEPT mutterlos/AEPT mutterseelenallein muttersprachlich/AEPT mutwillig/AEPT mysteriös/AEPT mystisch/AEPT mythisch/AEPT mythologisch/AEPT nächst/AEPT nächstälteste/ANRS nächstbeste/ANRS nächstfolgend/AEPT nächstgelegen/AEPT nächstgrößere/ANRS nächsthöher/AEPT nächstjährig/AEPT nächstkleinere/ANRS nächstliegend/ACEPT nächstmöglich/AEPT nächststärkste/ANRS nächsttiefer/AEPT nächtelang/AEPT nächtigen/DIXY nächtlich/AEPT nähen/DIVXY näher/AENPTZ nähergekommen/AEPT nähergerückt/AEPT nähern/DIWXY näherungsweise nähmen/IX nähren/DIXY nährstoffreich/AEPT näht/EGPVX nähte/GNVZ nähten/GIVWX nämlich/AEPT närrisch/ACEPT näseln/DIXY nach nachahmen/DIXY nachahmenswert/AEPT nacharbeiten/DIXY nachbarlich/AEPT nachbauen/BDIXY nachbehandelt/AEPT nachbereiten/DIXY nachbessern/DIXY nachbestellen/DIOXY nachbestückt/AEPT nachbezahlen/DIOXY nachbilden/IXY nachblicken/DIXY nachdachte/NZ nachdem nachdenken/DIX nachdenklich/AEPT nachdrängen/DIXY nachdrehen/DIXY nachdrücken/DIXY nachdrücklich/AEPT nachdrucken/DIXY nacheifern/DIXY nacheilen/DIXY nacheinander nachempfinden/DIX nachempfunden/AEPT nacherzählen/DIOXY nachfolgen/DIXY nachfordern/DIXY nachforschen/DIXY nachfragen/DIXY nachfühlen/BDIXY nachfüllen/BDIXY nachgab/PZ nachgaloppieren/DIXY nachgeahmt/AEPT nachgeben/DI nachgebildet/AEPT nachgeblättert nachgeblickt/AEPT nachgedacht nachgedichtet/AEPT nachgedrängt nachgedruckt/AEPT nachgeeifert nachgefolgt/AEPT nachgeforscht nachgefragt nachgefühlt/AEPT nachgeführt nachgefüllt/AEPT nachgegangen nachgegeben nachgegossen/AEPT nachgehen/DIX nachgeholfen nachgeholt/AEPT nachgekauft/AEPT nachgeklungen nachgekommen/AEPT nachgeladen/AEPT nachgelassen/AEPT nachgeleiert/AEPT nachgelesen nachgeliefert/AEPT nachgelöst/AEPT nachgemacht/AEPT nachgemessen/AEPT nachgeordnet/AEPT nachgerannt nachgerechnet/AEPT nachgeredet/AEPT nachgereicht/AEPT nachgeritten nachgerückt/AEPT nachgerüstet/AEPT nachgesagt/AEPT nachgesandt/AEPT nachgeschaltet/AEPT nachgeschaut nachgeschickt/AEPT nachgeschlagen/AEPT nachgeschleppt/AEPT nachgeschoben/AEPT nachgesehen/AEPT nachgesendet/AEPT nachgesetzt nachgesprochen/AEPT nachgespürt nachgestanden/AEPT nachgestellt/AEPT nachgetragen/AEPT nachgetriggert/AEPT nachgewachsen/AEPT nachgeweint nachgewiesen/AEPT nachgewiesenermaßen nachgewirkt nachgezählt nachgezogen/AEPT nachgibt/X nachgiebig/ACEPTU nachging/EPZ nachhängen/DIX nachhaltig/AEPT nachhelfen/DI nachher nachholen/DIXY nachinstallieren/DIOXY nachjagen/IXY nachjustieren/DIOXY nachkäme/NZ nachklingen/DIX nachkommen/DIX nachlässig/AEPT nachlässt nachläuft/X nachladen/BDI nachlassen/DI nachlaufen/DI nachlesen/BDI nachlief/EPZ nachliefern/DIXY nachließ/EPZ nachliest nachlösen/DIXY nachmachen/DIXY nachmessen/BDI nachmittäglich/AEPT nachmittags nachprüfen/BDIXY nachrangig/AEPT nachrechnen/DIXY nachreden/DIXY nachreformatorisch/AEPT nachrennen/DIX nachrichtendienstlich/AEPT nachrichtentechnisch/AEPT nachrücken/DIXY nachrühmen/DIXY nachrüsten/BDIXY nachsagen/DIXY nachschicken/DIXY nachschlagen/DI nachschleppen/DIXY nachsehen/BDI nachsenden/DIXY nachsichtig/ACEPTU nachsinnen/DIX nachsitzen/DIX nachsprechen/DI nachspüren/DIXY nachstehen/DIX nachsteigen/DIX nachstellen/DIXY nachsuchen/DIXY nachtdunkel/A nachteilig/ACEPT nachträglich/AEPT nachträumen/DIXY nachtragen/DI nachtrauern/DIXY nachtriggern/BDIXY nachts nachtschwarz/AEPT nachvollziehen/BDIX nachvollzog/PZ nachwachsen/DI nachweinen/DIXY nachweisen/BDIX nachweislich/AEPT nachwirken/DIXY nachzählen/BDIXY nachzeichnen/DIXY nachziehen/DIX nachzog/PZ nachzuahmen/D nachzuarbeiten/D nachzubessern/D nachzubilden/D nachzudenken nachzudrucken/D nachzufolgen nachzufragen nachzufügen/D nachzugeben nachzugehen nachzugießen/D nachzuholen/D nachzujagen nachzukommen nachzukonstruieren/D nachzuladen/D nachzulassen/D nachzulaufen nachzulesen/D nachzumachen/D nachzumessen/D nachzuprüfen/D nachzuregeln/D nachzureichen/D nachzusagen/D nachzuschieben/D nachzuschießen/D nachzusehen/D nachzuspüren nachzusuchen nachzutrimmen/D nachzuvollziehen/D nachzuweisen/D nachzuziehen/D nackend/AEPT nackig/AEPT nackt/AEPT nadelgestreift/AEPT nageln/DIVXY nagelneu/AEPT nagelt/EGPVX nagen/DIXY nagt/EGPX nah/AEPTZ nahen/BDIWXY nahezu nahm/PVZ nahöstlich/AEPT nahrhaft/ACEPT nahtlos/AEPT naiv/ACEPT namenlos/AEPT namens namentlich/AEPT namhaft/ACEPT nannte/GNZ napoleonisch/AEPT narkotisieren/DIOXY narren/DIVXY narrensicher/AEPT narzisstisch/AEPT naschen/DIVXY nass/ACEPT nasskalt/AEPT national/AEPT nationalbewusst/ACEPT nationalchinesisch/AEPT nationalisieren/DIOXY nationalistisch/AEPT nationalkommunistisch/AEPT nationalsozialistisch/AEPT natürlich/ACEPTU natürlicherweise natürlichzahlig/AEPT natura naturalisieren/DIOXY naturalistisch/AEPT naturblond/AEPT naturfrisch/AEPT naturgegeben/AEPT naturgemäß/ACEPT naturgetreu/AEPT naturherstellend/AEPT naturrein/AEPT naturverbunden/AEPT naturwissenschaftlich/AEPT nautisch/AEPT navigieren/DIWXY nebelfrei/AEPT nebelhaft/ACEPT neben nebenamtlich/AEPT nebenan nebenbei nebenberuflich/AEPT nebeneinander nebenher nebensächlich/AEPT nebenstehend/AEPT neblig/ACEPT nebst necken/DIXY negativ/ACEPT negieren/BDIOXY nehmen/DGIV neiden/DIXY neidisch/ACEPT neidlos/AEPT neidvoll/AEPT neigen/BDIVXY neigt/EGPVX neigte/GNVZ neigten/GIVWX nein nennbar/AEPTU nennen/BDIX nennenswert/ACEPT neofaschistisch/AEPT neokonservativ/AEPT neolithisch/AEPT neonazistisch/AEPT nepalesisch/AEPT nerven/DIXY nervenaufreibend/AEPT nervenstark/AEPT nervig/AEPT nervlich/AEPT nervös/ACEPT nervtötend/AEPT nett/ACEPT netto netzwerkfähig/AEPT neu/ACENPT neuartig/ACEPT neudeutsch/AEPT neuer/ELPT neuerdings neuesten/S neugeboren/AEPT neugierig/ACEPT neulich neunfach/AEPT neunhundert neunjährig/AEPT neunköpfig/AEPT neunmal neunpolig/AEPT neunprozentig/AEPT neunt/AEPTW neuntägig/AEPT neuntausend neunundachtzig neunundachtzigste/ANRS neununddreißig neununddreißigste/ANRS neunundfünfzig neunundfünfzigste/ANRS neunundneunzig neunundsechzig neunundsechzigste/ANRS neunundsiebzig neunundsiebzigste/ANRS neunundvierzig neunundvierzigste/ANRS neunundzwanzig neunundzwanzigste/ANRS neunzehn neunzehnjährig/AEPT neunzehnmal neunzehnte/ANRS neunzig/R neunzigste/ANRS neunzigtausendste/ANRS neuphilologisch/AEPT neuralgisch/AEPT neurochirurgisch/AEPT neurologisch/AEPT neuronal/AEPT neurotisch/AEPT neuseeländisch/AEPT neusprachlich/AEPT neusten/S neutestamentlich/AEPT neutral/ACEPT neutralisieren/DIOXY neuwertig/AEPT neuzeitlich/AEPT newtonsche/ANRS nicht/S nichtakademisch/AEPT nichtaktiv/AEPT nichtamerikanisch/AEPT nichtamtlich/AEPT nichtarbeitend/AEPT nichtatomar/AEPT nichtaufhörend/AEPT nichtberechtigt/AEPT nichtbestätigt/AEPT nichtchristlich/AEPT nichtdeterministisch/AEPT nichtdeutsch/AEPT nichteingeweiht/AEPT nichteinverstanden/AEPT nichteisenhaltig/AEPT nichterneuerbar/AEPT nichteuklidisch/AEPT nichteuropäisch/AEPT nichtflüchtig/AEPT nichtfunktionierend/AEPT nichtgenehmigt/AEPT nichtgewünscht/AEPT nichtig/AEPT nichtjapanisch/AEPT nichtklassisch/AEPT nichtkommunistisch/AEPT nichtlinear/AEPT nichtmetallisch/AEPT nichtöffentlich/AEPT nichtoptimierend/AEPT nichtproduktiv/AEPT nichtproportional/AEPT nichtrussisch/AEPT nichtsdestotrotz nichtsdestoweniger nichtsequentiell/AEPT nichtsequenziell/AEPT nichtsnutzig/AEPT nichttechnisch/AEPT nichtverhandlungsfähig/AEPT nichtverwandt/AEPT nichtweiß/AEPT nichtzulässig/AEPT nichtzutreffend/AEPT nicken/DIXY nieder/AEPT niederbrennen/DI niederdeutsch/AEPT niederfallen/DI niederfrequent/ACEPT niedergebracht/AEPT niedergebrannt/AEPT niedergedrückt/ACEPT niedergefallen/AEPT niedergegangen/AEPT niedergehalten/AEPT niedergehen/DIX niedergekämpft/AEPT niedergeknüppelt/AEPT niedergelassen/AEPT niedergelegt/AEPT niedergemacht/AEPT niedergerissen/AEPT niedergeschlagen/ACEPT niedergeschossen/AEPT niedergeschrieben/AEPT niedergesetzt/AEPT niedergestochen/AEPT niedergewalzt/AEPT niederging/EPZ niederkämpfen/DIXY niederknien/DIXY niederländisch/AEPT niederlassen/DI niederlegen/IXY niederließ/EPZ niedermähen/DIXY niedermachen/DIXY niederohmig/AEPT niederreißen/DIX niederrheinisch/AEPT niedersächsisch/AEPT niedersausen/DIXY niederschießen/DIX niederschlägt/X niederschlagen/DI niederschlagsfrei/AEPT niederschlug/PZ niederschmettern/DIXY niederschreiben/DIX niederschrieb/EPZ niederste/ANRS niederträchtig/ACEPT niederzuknien niederzulassen/D niederzulegen/D niederzuschlagen/D niederzusetzen niedlich/ACEPT niedrig/ACEPT niemals niemand/P niemandem nieseln/DIXY niesen/DIXY niest/EGPW niet/EPWX nieten/DIWXY nihilistisch/AEPT nikotinfrei/AEPT nimmer nimmermüde/ANRS nimmt/VWX nippen/DIXY nippt/EGPX nirgends nirgendwo nirgendwohin nisten/DIXY nivellieren/DIOXY nördlich/ACEPT nörgeln/DIXY nötig/ACEPTZ nötigen/DIWXY nötigenfalls nobel/A noch nochmal/S nochmalig/AEPT noethersch/AEPT nominal/AEPT nominell/AEPT nominieren/DIOXY nonchalant/ACEPT nonkonformistisch/AEPT nonstop nonverbal/AEPT nordafrikanisch/AEPT nordamerikanisch/AEPT nordatlantisch/AEPT norddeutsch/AEPT nordfranzösisch/AEPT nordisch/AEPT nordostwärts nordwärts nordwestlich/AEPT normal/ACEPT normalerweise normalisieren/DIOXY normannisch/AEPT normativ/AEPT norme normgerecht/AEPT normieren/BDIOXY norwegisch/AEPT nostalgisch/AEPT notariell/AEPT notdürftig/ACEPT notfalls notgedrungen/AEPT notgelandet/AEPT notgeschlachtet/AEPT notieren/DIOXY notlanden/DIXY notorisch/AEPT notwendig/ACEPT notwendigerweise nsec nüchtern/ACEPT nützen/DIXY nützlich/ACEPT nuancieren/DIOXY nuklear/AEPT nullte/ANRS numerisch/AEPT nummerieren/DIOXY nummerisch/AEPT nummern/DIXY nun nunmehr nur nutzbar/ACEPT nutzbringend/AEPT nutzen/BDIXY nutzlos/ACEPT öd/ACEPT öffentlich/ACEPT öffnen/DIXY öfter/PS öftesten ökologisch/AEPTU ökonomisch/AEPTU ökumenisch/AEPT ölen/DIXY ölig/ACEPT ölverbrauchend/AEPT örtlich/AEPT österlich/AEPT österreichisch/AEPT östlich/ACEPT ob/P obdachlos/AEPT obenan obenauf obendrein ober/AEPT oberflächlich/ACEPT oberhalb oberirdisch/AEPT oberst/AEPTW obgleich obig/AEPT objektiv/ACEPT objektivieren/BDIOXY objektorientiert/AEPT oblag/PZ obliegen/DIX obligat/AEPT obligatorisch/AEPT obschon obskur/AEPT obsolet/AEPT obwalten/DIXY obwohl obzwar ocker ockerfarben/AEPT ockerfarbig/AEPT ockergelb/AEPT oder offen/ACEPT offenbar/AELPTZ offenbaren/DIOWXY offenherzig/ACEPT offenkundig/ACEPT offenkundigst/AEPTW offensichtlich/ACEPT offensiv/AEPT offerieren/DIOXY offiziell/ACEPT offiziös/AEPT offline offsetgedruckt/AEPT oft oftmalig/AEPT oftmals oh ohmsch/AEPT ohne ohnedies ohnegleichen ohnehin ohnmächtig/AEPT oho ohrenbetäubend/AEPT ohrfeigen/DIXY okay okkult/AEPT okkupieren/DIOXY oktroyieren/DIOXY oligarchisch/AEPT oligopolistisch/AEPT oliv olivfarben/AEPT olivgrün/AEPT olympiadritte/ANRS olympisch/AEPT omega ominös/AEPT onanieren/DIWXY onkelhaft/AEPT online operational/AEPT operationalisieren/BIOXY operativ/AEPT operettenhaft/AEPT operieren/BDIOXY opferbereit/AEPT opfern/IWXY opferreich/AEPT opponieren/DIXY opportun/AEPT opportunistisch/AEPT oppositionell/AEPT optimal/AEPT optimieren/BDIOXY optimistisch/ACEPT optional/AEPT optisch/AEPT optoelektronisch/AEPT optoentkoppelt/AEPT opulent/AEPT oral/AEPT orange orangefarben/AEPT orangeroter ordentlich/ACEPTU ordern/DIXY ordinär/ACEPT ordnen/DIVXY ordnungsgemäß/AEPT ordnungsliebend/ACEPT ordnungsmäßig/AEPT ordnungsrechtlich/AEPT ordnungswidrig/ACEPT organisatorisch/AEPT organisch/ACEPTU organisieren/BDIOXY orgiastisch/AEPT orientalisch/AEPT orientieren/DIOXY originär/AEPT original/AEPT originalgetreu/AEPT originell/AEPT orkanartig/AEPT orten/DIXY orthodox/AEPTU orthogonal/AEPT orthographisch/AEPT orthopädisch/AEPT ortsabhängig/AEPT ortsansässig/AEPT ortsbedingt/AEPT ortseigen/AEPT ortsfest/AEPT ortsgebunden/AEPT ortskundig/ACEPT ortsüblich/AEPT ortsungebunden/AEPT osmotisch/AEPT ostamerikanisch/AEPT ostasiatisch/AEPT ostchinesisch/AEPT ostdeutsch/AEPT ostentativ/AEPT osteuropäisch/AEPT ostfriesisch/AEPT ostholsteinisch/AEPT ostindisch/AEPT ostpolitisch/AEPT ostpreußisch/AEPT ostwärts oszillieren/DIOXY oszillographieren/IXY oszillographisch/AEPT oval/AEPT ovulationshemmend/AEPT oxidieren/DIOXY ozeanographisch/AEPT pädagogisch/AEPTU päpstlich/AEPT paaren/IWXY paarweise/ANRS pachten/DIVXY pachtet/EGPVWX pachtete/GNVZ pachteten/GIVWX packen/DIVXY packt/EGPVX packte/GNVZ packten/GIVWX paddeln/IWXY paddelt/EGPWX paffen/DIXY paillettenbestickt/AEPT pakistanisch/AEPT palästinensisch/AEPT palavern/DIXY paletti panamaisch/AEPT panarabisch/AEPT panieren/DIOXY panikartig/AEPT panisch/ACEPT pantomimisch/AEPT papieren/AEPT papierne/ANRS pappig/ACEPT papyrusweiß/AEPT parabolisch/AEPT paradieren/DIXY paradiesisch/AEPT paradox/ACEPT paradoxerweise parallel/AEPT parallelisieren/BDIOXY paralysieren/DIOXY paralytisch/AEPT parameterlos/AEPT parametrieren/BDIOXY parametrisch/AEPT parametrisieren/IOXY paramilitärisch/AEPT paraphieren/IOXY parasitär/AEPT parasitisch/AEPT parat parfümieren/DIOXY parieren/BDIOXY paritätisch/AEPT parkartig/AEPT parken/DIXY parlamentarisch/AEPT parodieren/DIOXY parodistisch/AEPT parteiintern/AEPT parteiisch/ACEPTU parteilich/AEPT parteilos/AEPT parteipolitisch/AEPT parteischädigend/AEPT partiell/ACEPT partikulär/AEPT partikular/AEPT partitionieren/BDIOXY partizipieren/DIXY partnerschaftlich/AEPT partout parzellieren/IOXY passabel/A passe/EN passen/DIVXY passend/ACEPTU passgerecht/AEPT passierbar/AEPTU passieren/BDIXY passioniert/ACEPT passiv/ACEPT passivieren/DIOXY passt/EGPV passwortgeschützt/AEPT passé pastellzart/AEPT pastenförmig/AEPT pasteurisieren/DIOXY pastoral/AEPT patent/AEPT patentfähig/ACEPT patentieren/BDIOXY patentierfähig/AEPT patentrechtlich/AEPT pathetisch/ACEPT pathologisch/ACEPT patriarchalisch/AEPT patriotisch/ACEPTU patrouillieren/DIXY patschnass/AEPT patzen/DIVXY patzt/EGPVX pauken/IXY pausbäckig/AEPT pauschal/AEPT pausen/DIXY pausenlos/AEPT pausieren/DIXY pazifisch/AEPT pazifistisch/AEPT pechschwarz/AEPT pedantisch/ACEPT peilen/DIXY peilt/EGPX peinigen/DIXY peinlich/ACEPT peinlichst/AEPTW peitschen/DIXY pendeln/DIXY penetrant/ACEPT penibel/A pensionieren/DIOXY pensionsberechtigt/AEPT pensionsreif/AEPT per perfekt/ACEPT perfektionieren/DIOXY perfektionistisch/AEPT perfid/ACEPT perforieren/DIOXY periodisch/AEPT peripher/AEPT perlen/DIXY permanent/ACEPT permutieren/BDIOXY perplex/AEPT persiflieren/DIOXY persisch/AEPT persistent/AEPT persönlich/ACEPTU persönlichst/AEPTW personal/AEPT personalisieren/BDIOWXY personalsparend/AEPT personell/AEPT personenbezogen/AEPT personifizieren/DIOXY perspektivisch/AEPT pervers/AEPT pervertieren/DIOXY pessimistisch/ACEPT petzen/DIVXY peu pfählen/DIXY pfälzisch/AEPT pfändbar/AEPTU pfänden/BDIVXY pfändet/EGPVWX pfändete/GNVZ pfändeten/GIVWX pfändungssicher/AEPT pfeffern/DIXY pfeifen/DIX pfeilschnell/AEPT pferchen/IXY pfiff/EPZ pfiffig/AEPT pflanzen/DIVXY pflanzlich/AEPT pflanzt/EGPVX pflanzte/GNVZ pflanzten/GIVWX pflastern/DIXY pflegebedürftig/AEPT pflegeleicht/ACEPT pflegen/DIVXY pfleglich pflichtbewusst/ACEPT pflichteifrig/AEPT pflichten/IVXY pflichtgemäß/AEPT pflichtgetreu/AEPT pflichtig/AEPT pflichtschuldig/AEPT pflichtversichert/AEPT pflichtwidrig/ACEPT pflücken/BDIXY pflügen/DIXY pfriemeln pfundschwer/AEPT pfuschen/DIVXY pfuscht/EGPVX phänomenal/AEPT phantasielos/ACEPT phantasiereich/ACEPT phantasieren/DIXY phantasievoll/ACEPT phantastisch/ACEPT pharisäerhaft/AEPT pharmakologisch/AEPT pharmazeutisch/AEPT phasengenau/AEPT phasenverschoben/AEPT phasenweise/ANRS phi phil phil. philatelistisch/AEPT philharmonisch/AEPT philippinisch/AEPT philosophieren/DIXY philosophisch/AEPT phonetisch/AEPT phosphoreszieren/DIXY photochemisch/AEPT photoelektrisch/AEPT photogen/ACEPT photographieren/DIOXY photographisch/AEPT photokopieren/BIOXY phrasenhaft/AEPT phylogenetisch/AEPT physikalisch/AEPTU physiologisch/AEPT physisch/AEPT pi pianissimo piano picken/DIXY picklig/AEPT pickt/EGPX piekfein/AEPT piepen/DIXY pietätvoll/AEPT piezoelektrisch/AEPT piezoelektronisch/AEPT pikant/ACEPT pikieren/DIOWXY pilgern/DIXY pilotieren/DIXY pilzförmig/AEPT pingelig/ACEPT pinseln/DIXY pinselt/EGPX pirschen/IXY pissen/DIXY pistolenähnlich/AEPT pitschnass/AEPT pittoresk/AEPT plädieren/DIXY plärren/DIXY plätschern/IXY plagen/DIXY plakativ/AEPT plancksche/ANRS planen/BDIVXY planerisch/AEPT planetarisch/AEPT plangemäß/AEPT plangläubig/AEPT planlos/ACEPT planmäßig/ACEPT planschen/IXY plantschen/DIXY plantscht/EGPX planvoll/AEPT planwidrig/AEPT planwirtschaftlich/AEPT plappern/DIVXY plastikartig/AEPT plastisch/AEPT platonisch/AEPT platsch platt/AEPT plattdeutsch/AEPT plattfahren plattfüßig/AEPT plattgewalzt/AEPT platzen/DIWXY platzieren/BDIOXY platzsparend/AEPT plaudern/DIVXY plaudert/EGPVX plausibel/ACU pleite pleitebedroht/AEPT plötzlich/AEPT plombieren/DIOXY plotten/DIXY plündern/DIXY plump/ACEPT pluralistisch/AEPT plus pneumatisch/AEPT pochen/DIXY pockenverdächtig/AEPT poetisch/AEPT pointiert/AEPT pokern/DIXY pokert/EGPX polar/AEPT polarisieren/DIOXY polemisch/AEPT polemisieren/DIOXY polieren/DIOXY polig/AEPT politisch/AEPTU politisieren/DIOXY polizeilich/AEPT polizeiwidrig/AEPT polnisch/AEPT polstern/DIXY poltern/DIXY polygam/AEPT polymer/AEPT polymorph/AEPT polyzentrisch/AEPT pomadisieren/DIOXY pompös/AEPT poppig/AEPT populär/ACEPTU populärwissenschaftlich/AEPT popularisieren/DIOXY pornografisch/AEPT pornographisch/AEPT porös/ACEPT portabel/A portieren/BDIOXY portionsweise portofrei/AEPT portopflichtig/AEPT porträtieren/DIOXY portugiesisch/AEPT posaunen/DIWXY posieren/DIXY positionell/AEPT positionieren/DIOXY positiv/ACEPT positivistisch/AEPT possessiv/ACEPT possierlich/AEPT postalisch/AEPT posteriori posthum/AEPT postieren/IOXY postkartengroß/AEPT postlagernd/AEPT postmodern/AEPT postnatal/AEPT postscriptfähig/AEPT postulieren/DIOXY postum/AEPT postwendend/AEPT potemkinsch/AEPT potent/ACEPT potentialfrei/AEPT potentiell/AEPT potentiometrisch/AEPT potenzialfrei/AEPT potenziell/AEPT potenzieren/DIOXY potenziert/ACEPTX potenzierte/ACNRSZ potthässlich/AEPT poussieren/DIXY prächtig/ACEPT prädestiniert/AEPT prädisponieren/DIOXY präferentiell/AEPT präferenziell/AEPT prägen/DIXY prägnant/ACEPT prähistorisch/AEPT präjudizieren/DIOXY prämieren/DIOXY prämiieren/DIOXY pränatal/AEPT präparieren/DIOXY präpositional/AEPT präsent/AEPT präsentabel/A präsentieren/BDIOXY präsidial/AEPT präsidieren/DIXY präskriptiv/AEPT prätentiös/AEPT präventiv/AEPT präzis/ACEPT präzisieren/DIOXY prachtvoll/AEPT pragmatisch/AEPT prahlen/DIXY prahlerisch/AEPT prahlt/EGPX praktikabel/ACU praktisch/ACEPTU praktizieren/BDIOXY prall/ACEPTZ prallen/IWXY prangen/DIXY prasseln/DIXY prassen/DIVXY prasst/EGPV praxisbezogen/AEPT praxisfern/AEPT praxisfremd/AEPT praxisgerecht/AEPT praxisnah/AEPT praxistauglich/AEPT predigen/DIXY predigt/EGPX preemptiv/AEPT preis/ELPZ preisanpassend/AEPT preisbereinigt/AEPT preisbestimmend/AEPT preisbewusst/AEPT preisbildend/AEPT preisbrechen/D preisen/DIWX preisfestsetzend/AEPT preisgab/PZ preisgeben/DI preisgebunden/AEPT preisgegeben/AEPT preisgekrönt/AEPT preisgibt/X preisgleich/AEPT preisgünstig/ACEPT preiskritisch/AEPT preismäßig/AEPT preisneutral/AEPT preispolitisch/AEPT preisregulierend/AEPT preissenkend/AEPT preissteigernd/AEPT preistreibend/AEPT preiswert/ACEPT preiswürdig/AEPT prekär/AEPT preschen/DIXY pressen/DIXY pressieren/DIOXY prestigeträchtig/AEPT preußisch/AEPT prickeln/DIXY pries/EPZ priesterlich/AEPT prima primär/AEPT primitiv/ACEPT print prinzipiell/AEPT priori privat/ACEPT privatisieren/DIOVXY privatwirtschaftlich/AEPT privilegieren/DIOXY privilegiert/ACEPTX privilegierte/ACNRSZ probehalber proben/DIXY probeweise probieren/DIXY problematisch/ACEPTU problematisieren/DIOXY problembezogen/AEPT problemfrei/AEPT problemlösend/AEPT problemlos/AEPT problemorientiert/AEPT problemspezifisch/AEPT produktiv/ACEPTU produzieren/BDIOXY profan/AEPT professionell/AEPTU profilieren/DIOXY profiliert/ACEPTX profilierte/ACNRSZ profitabel/AC profitieren/DIXY profund/AEPT prognostisch/AEPT prognostizieren/BDIOXY programmabhängig/AEPT programmatisch/AEPT programmgemäß/AEPT programmgesteuert/AEPT programmieren/BDIOXY programmiertechnisch/AEPT progressiv/ACEPT prohibitiv/AEPT projektieren/DIOXY projektspezifisch/AEPT projizieren/BDIOXY proklamieren/DIOXY proletarisch/AEPT promenieren/DIXY prominent/ACEPT promovieren/DIOXY prompt/AEPT propagandistisch/AEPT propagieren/DIOXY prophetisch/AEPT prophezeien/DIOXY prophylaktisch/AEPT proportional/AEPT proportioniert/ACEPT proppenvoll/AEPT proprietär/AEPT prosaisch/AEPT prost/W prostituieren/DIOXY protegieren/DIOXY protektionistisch/AEPT protestantisch/AEPT protestieren/DIXY protokollarisch/AEPT protokollieren/DIOXY prototypisch/AEPT protzen/DIXY protzig/ACEPT protzt/EGPX provinziell/AEPT provisorisch/ACEPT provokativ/ACEPT provokatorisch/AEPT provozieren/DIOXY prozedural/AEPT prozentig/AEPT prozentual/AEPT prozessführend/AEPT prozessieren/DIXY prozessorientiert/AEPT prozessorspezifisch/AEPT prüde/ACNRS prüfen/BDIXY prüfenswert/AEPT prügeln/DIVXY prügelt/EGPVX prügelte/GNVZ prügelten/GIVWX prunkvoll/AEPT psychiatrisch/AEPT psychisch/AEPT psychogen/AEPT psychologisch/AEPT psychomotorisch/AEPT psychopathisch/AEPT psychophysisch/AEPT psychosomatisch/AEPT psychotherapeutisch/AEPT psychotisch/ACEPT pünktlich/ACEPTU pubertär/AEPT pubertieren/DIXY publik/AEPT publikumswirksam/ACEPT publizieren/DIOXY publizistisch/AEPT pudelnass/AEPT pudelwohl pudern/IXY puffern/IXY pulsieren/DIXY pulverisieren/DIOXY pulvern/DIVXY pumpen/DIVWXY pumpt/EGPVWX pumpte/GNVZ pumpten/GIVWX puncto punisch/AEPT punktgenau/AEPT punktgleich/AEPT punktieren/IOXY punktuell/AEPT punktweise/ANRS pur/AEPT puritanisch/AEPT purpurn/AEPT purpurrot/AEPT purzeln/DIXY puschen/DIXY pushen/DIXY pusten/DIVXY puterrot/AEPT putschen/IXY putscht/EGPX putzen/DIVXY putzig/AEPT putzt/EGPVX putzte/GNVZ putzten/GIVWX pyramidenförmig/AEPT qm qmm quälen/DIXY quälend/ACEPT quadratisch/AEPT qualifizierbar/AEPTU qualifizieren/BDIOXY qualifiziert/ACEPTX qualitätsbewusst/AEPT qualitativ/AEPT qualmen/DIVXY qualmig/AEPT qualvoll/ACEPT quantenmechanisch/AEPT quantifizierbar/AEPTU quantifizieren/BDIOXY quantitativ/AEPT quantorenfrei/AEPT quartalsweise/ANRS quarzgenau/AEPT quarzstabil/AEPT quasi quasianalog/AEPT quasiperiodisch/AEPT quastenverziert/AEPT quatschig/AEPT quellen/DIW quer querschnittgelähmt/AEPT querschnittsgelähmt/AEPT querzustellen/D quetschen/DIXY quieken/DIXY quietschen/DIXY quietscht/EGPX quillt/WX quirlig/AEPT quitt quittieren/DIOXY quollen/GX quotieren/DIOXY rächen/DIXY räkeln/DIXY rändern/DIXY rät/GV rätselhaft/AEPT rätseln/DIXY rätselt/EGPX rätst/GVWX räuchern/DIVXY räuchert/EGPVX räucherte/GNVZ räucherten/GIVWX räudig/AEPT räumen/DIXY räumlich/AEPT räuspern/DIXY räuspert/EGPX rabenschwarz/AEPT rabiat/ACEPT rachelüstern/AEPT racheschnaubend/AEPT rachgierig/AEPT rachsüchtig/AEPT radargesteuert/AEPT radebrechen/DI radeln/DIXY radelt/EGPX radförmig/AEPT radial/AEPT radieren/DIOXY radikal/ACEPT radikalisieren/DIOXY radioaktiv/ACEPT radiologisch/AEPT raffen/DIWXY raffgierig/ACEPT raffinieren/DIOXY ragen/DIXY ragt/EGPX rammeln/DIVXY rammelt/EGPVX rammen/DIXY ramponieren/DIOXY ran randalieren/DIXY randnah/AEPT randvoll/AEPT rang/PZ ranghöchte/ANRS ranghöher/AEPT rangieren/DIXY ranken/DIXY rannte/NVZ rapid/AEPT rapple rar/ACEPT rasa rasant/ACEPT rasch/ACEPT rasche/ACNRS rascheln/DIXY raschelt/EGPX rasen/DIXY rasieren/DIOXY rasierklingenscharf/AEPT rasseln/DIXY rasselt/EGPX rassig/AEPT rassisch/AEPT rassistisch/AEPT rasten/DIWXY rastet/EGPWX rastlos/AEPT raten/DGIV ratenweise ratifizieren/DIOXY ratio rational/AEPT rationalisieren/DIOXY rationell/ACEPTU rationieren/DIOXY ratlos/AEPT ratsam/AEPTU rattern/DIXY ratzekahl rau/ACEPSTZ raubeinig/AEPT rauben/DIXY rauchen/DIVXY rauchfrei/AEPT rauchig/AEPT raucht/EGPVX rauchte/GNVZ rauchten/GIVWX rauen/DIWXY raufen/DIXY rauflustig/AEPT raumkrank/AEPT raumweit/AEPT raunen/DIXY raupenartig/AEPT raupengetrieben/AEPT rauschen/DIXY rauschgiftsüchtig/AEPT rausgefahren/AEPT rausgesetzt/AEPT rausgesucht/AEPT reagieren/DIXY reaktionär/ACEPT reaktiv/AEPT reaktivieren/DIOWXY real/AEPT realisieren/BDIOXY realistisch/ACEPTU realistischerweise realiter rebellieren/DIXY rebellisch/AEPT rechen/DIOXY rechenintensiv/AEPT recherchieren/DIOXY rechnen/DIVXY rechnergesteuert/AEPT rechnergestützt/AEPT rechnerisch/AEPT rechnerunterstützt/AEPT recht/AEGLPSTX rechteckig/AEPT rechten/GISWX rechtfertigen/BDIXY rechthaberisch/AEPT rechtlos/AEPT rechtmäßig/AEPTU rechtsbündig/AEPT rechtschaffen/AEPT rechtsextrem/ACEPT rechtsextremistisch/AEPT rechtsgängig/AEPT rechtsgerichtet/AEPT rechtsgültig/AEPT rechtshändig/AEPT rechtsherum rechtskräftig/AEPT rechtskundig/AEPT rechtsradikal/AEPT rechtsseitig/AEPT rechtsstaatlich/AEPT rechtsum rechtsunfähig/AEPT rechtsverbindlich/AEPT rechtswidrig/ACEPT rechtswirksam/AEPT rechtwinklig/AEPT rechtzeitig/AEPT recken/DIVXY reckt/EGPVX recyceln/BDIOWXY redaktionell/AEPT redefinieren/BDIOXY redegewandt/ACEPT reden/DIXY redet/EGPWX redigieren/IOXY redlich/ACEPTU redselig/ACEPT redundant/AEPT reduzieren/DIOXY reell/ACEPTU referentiell/AEPT referenziell/AEPT referenzieren/BDIOXY referieren/DIOXY refinanzieren/DIOXY reflektieren/DIOXY reflektorisch/AEPT reflexartig/AEPT reflexionsfrei/AEPT reflexiv/AEPT reformatorisch/AEPT reformfreudig/AEPT reformieren/DIOXY reformorientiert/AEPT reformpädagogisch/AEPT reg/ACEPTZ regelbasiert/AEPT regelhaft/AEPT regelmäßig/ACEPTU regeln/BDIXY regelrecht/AEPT regelwidrig/AEPT regen/DIWXY regendicht/AEPT regenerativ/AEPT regenerieren/DIOXY regennass/AEPT regenreich/ACEPT regieren/BDIOXY regierungsfreundlich/AEPT regional/AEPT registrieren/DIOXY reglementieren/DIOXY reglos/AEPT regnen/DIVXY regnerisch/AEPT regnet/EGPVWX regressiv/AEPT regresspflichtig/AEPT regsam/ACEPT regulär/AEPT regulativ/AEPT regulieren/BDIOXY regungslos/AEPT rehabilitieren/DIOXY reiben/DIX reibungsfrei/AEPT reibungslos/AEPT reich/ACELPT reichen/DGIWXY reichhaltig/ACEPT reichlich/ACEPT reichsunmittelbar/AEPT reif/ACELPTU reifen/DIWXY reiflich/ACEPT reihen/DIXY reihenweise reimen/DIXY reimplementieren/BDIOXY rein/ACEPTU reingefallen/AEPT reingehen/DIX reingeschaut reinigen/DIXY reinitialisieren/BDIOXY reinkommen/DIX reinlich/ACEPTU reinrassig/AEPT reinschnuppern/DIXY reinschreiben/DIX reinstallieren/DIOXY reinvestieren/DIOXY reinwaschen/DI reißen/DIVWX reißerisch/AEPT reisefertig/AEPT reiselustig/ACEPT reisen/DIVXY reist/EGPV reiste/GNVZ reisten/GIVWX reiten/DIWX reizbar/ACEPT reizen/BDIWXY reizlos/ACEPT reizvoll/ACEPT rekapitulieren/DIXY reklamieren/DIOXY rekognoszieren/DIOXY rekompilieren/BDIOXY rekonstruieren/BDIOXY rekordbrechend/AEPT rekrutieren/DIOXY rekursiv/AEPT relational/AEPT relativ/ACEPT relativieren/DIOXY relaxed relaxen/DIW relegieren/DIOXY relevant/AEPT religiös/AEPT remis rempeln/IXY rempelt/EGPX renitent/AEPT rennen/DIVX renommiert/AEPT renovieren/DIOXY rentabel/ACU rentieren/DIXY rentierlich/AEPT reorganisieren/DIOXY reparabel/A reparierbar/AEPTU reparieren/BDIOXY repetieren/DIOXY replizieren/DIOWXY repräsentativ/AEPT repräsentieren/DIOXY repressiv/ACEPT reproduzieren/BDIOXY republikanisch/AEPT reservepflichtig/AEPT reservieren/DIOXY resident/AEPT residieren/DIXY residual/AEPT resignieren/DIOXY resistent/AEPT resolut/AEPT resp resp. respektabel/AC respektieren/DIOXY respektive respektlos/ACEPT respektvoll/ACEPT respektwidrig/AEPT ressourcensparend/AEPT restaurieren/DIOXY restlich/AEPT restlos/AEPT restriktiv/AEPT restständig/AEPT resümieren/DIOXY resultieren/DIXY retournieren/BDIOXY retten/DIXY returnieren/DIOXY retuschieren/DIOXY reuelos/ACEPT reuevoll/ACEPT reumütig/AEPT revanchieren/DIXY revanchistisch/AEPT reversibel/A reversieren/DIOXY revidieren/DIOXY revisionistisch/AEPT revoltieren/DIXY revolutionär/AEPT revolutionieren/DIOWXY rezensieren/DIOXY rezidiv/AEPT reziprok/AEPT rezitieren/DIOXY rheinisch/AEPT rhetorisch/AEPT rheumatisch/AEPT rhythmisch/AEPT richten/DIVXY richterlich/AEPT richtig/ACEPTU richtiggehend richtungweisend/AEPT rieb/EPZ riechen/DIX rief/EPZ riemannsch/AEPT rieseln/DIXY riesengroß/AEPT riesenhaft/AEPT riesig/ACEPT riet/EGPVZ riete/GNVZ rieten/GIVWX rietet/GVWX rigid/AEPT rigoros/AEPT ringen/DGIX ringförmig/AEPT rings ringsum ringsumher rinnen/DGIVX rinnend/AEGPTV rinnende/AGNRSV risikofrei/AEPT risikolos/AEPT risikoscheu/AEPT riskant/ACEPT riskanterweise riskieren/DIOXY riss/PVZ rissen/GVWX rissfest/ACEPT rissig/ACEPT ritt/EPZ ritterlich/AEPTU rittlings ritualisiert/AEPT rituell/AEPT ritzen/DIXY rivalisieren/DIXY röcheln/DIXY röchen/IX röhren/DIXY röhrenförmig/AEPT römisch/AEPT röntgen/DIXY rösten/DIXY röter rötlich/AEPT robben/IXY roboterhaft/AEPT robust/ACEPT roch/PZ rockig/AEPT rodeln/DIXY roden/DIXY roh/AEPT rollen/DIXY rolling romanisch/AEPT romantisch/ACEPTU rosa rosarot/AEPT rosig/ACEPT rostbeständig/AEPT rosten/DIVXY rostfrei/AEPT rostig/ACEPT rot/AEPT rotbraun/AEPT rothaarig/AEPT rotieren/DIOXY rotten/DIVXY rotzen/DIXY routinemäßig/AEPT routiniert/AEPT rüberspielen/DIXY rückblickend/AEPT rücken/DIVXY rückgängig/AEPT rückgeliefert/AEPT rückgesandt/AEPT rückgesetzt/AEPT rückhaltlos/AEPT rückkopplungsfähig/AEPT rückläufig/ACEPT rückschrittlich/AEPT rücksetzen/DIXY rücksichtslos/AEPT rücksichtsvoll/AEPT rückständig/AEPT rückt/EGPVX rückte/GNVZ rückten/GIVWX rückwärtig/AEPT rückwärts rückwirkend/AEPT rückzahlbar/AEPT rückzusetzen rügen/IXY rühmen/DIXY rühmenswert/AEPT rühmlich/AEPTU rühren/DIXY rülpsen/DIXY rüsten/DIXY rüstig/ACEPT rüttelfest/AEPT rütteln/DIXY rubinrot/AEPT ruchbar/AEPT ruckartig/AEPT ruckweise/ANRS rudern/DIXY rudert/EGPX rudimentär/AEPT rufen/DGIWX ruhelos/ACEPT ruhen/DGIXY ruhig/ACEPTU ruhmbedeckt/AEPT ruhmreich/AEPT ruinieren/DIOXY ruinös/AEPT rumänisch/AEPT rumlöten/DIXY rummachen/DIXY rumspielen/DIXY rund/AELPT runden/DIWXY rundherum rundlich/ACEPT rundum runter runtergeschraubt/AEPT runtergezählt/AEPT runterrutschen/DIXY runzeln/DIXY runzlig/AEPT rupfen/DIXY rußgeschwärzt/AEPT rußig/AEPT russisch/AEPT rustikal/AEPT rutschen/DIVWXY rutschig/AEPT rutscht/EGPVWX rutschte/GNVZ rutschten/GIVWX sächlich/AEPT sächsisch/AEPT säen/DIXY sägen/DIXY sägezahnförmig/AEPT sähe/NZ säkular/AEPT säkularisieren/DIOXY sämtlich/AEPT säße/NZ sättigen/DIXY säuberlich/ACEPT säubern/DIXY säuerlich/ACEPT säuern/DIXY säuft/VX säugen/DIXY säumen/DIVXY säumig/ACEPT säurebeständig/ACEPT säurehaltig/ACEPT säurelöslich/AEPT säuseln/DIXY sabbern/DIXY sabotieren/DIOXY sachbedingt/AEPT sachbezogen/AEPT sachdienlich/AEPT sachgemäß/AEPTU sachgerecht/AEPT sachkundig/AEPT sachlich/AEPTU sacht/AEPT sacken/IXY sadistisch/AEPT saftig/AEPT saftlos/AEPT sagen/DIVWXY sagenhaft/ACEPT sagenumwoben/AEPT sahen/VWX sahnen/IWXY sahnig/AEPT saisonal/AEPT saisonbedingt/AEPT saisonbereinigt/AEPT sakral/AEPT salben/DIXY salbungsvoll/ACEPT saldieren/DIOXY salonfähig/AEPT salopp/ACEPT salutieren/DIXY salzen/DGIVXY salzig/ACEPT salzlos/ACEPT sammeln/DIVXY sammelt/EGPVX sammelte/GNVZ sammelten/GIVWX samstagnachts samstags samtartig/AEPT samten/AEGPTW sandgekapselt/AEPT sandig/AEPT sandte/GNVZ sandten/GIVX sanft/ACEPTU sanftmütig/AEPT sang/PZ sanguinisch/AEPT sanieren/DIOXY sanitär/AEPT sank/PVZ sanktionieren/DIOXY sann/PZ sapperlot sarkastisch/AEPT saß/PZ satanisch/ACEPT satinieren/DIOXY satirisch/AEPT satt/ACEPT sattelfest/ACEPT satteln/DIXY sattsam saturieren/DIOXY satzungsgemäß/AEPT satzungsmäßig/ACEPT sauber/ACEPTU saublöd/AEPT sauen/DIVXY sauer/AC sauerer sauerstoffhaltig/AEPT sauerstoffreich/AEPT saufen/DIV saugen/DIXY saugfähig/ACEPT saumäßig/ACEPT sausen/DIXY scannen/DIXY schäbig/ACEPT schädigen/DIXY schädlich/AEPTU schäkern/DIXY schälen/DIXY schämen/DIXY schänden/DIXY schändlich/ACEPT schärfen/DIVXY schärfer/AEPTU schärfste/ANRSU schärft/EGPVX schärfte/GNVZ schärften/GIVWX schätzen/BDIXY schätzenswert/ACEPT schätzt/EGPVX schätzte/GNVZ schätzten/GIVWX schätzungsweise schäumen/DIXY schaben/DIXY schablonenhaft/ACEPT schablonenmäßig/ACEPT schablonieren/DIOXY schachbrettartig/AEPT schachmatt/AEPT schaden/DIXY schadenfroh/ACEPT schadensersatzpflichtig/AEPT schadhaft/ACEPT schadlos/ACEPT schaffen/BDGIVWXY schafft/EGPVWX schaffte/GNVZ schafften/GIVWX schal/ACEPT schalkhaft/ACEPT schallabstrahlend/AEPT schalldämmend/AEPT schalldämpfend/ACEPT schalldicht/AEPT schallen/DIXY schallhart/AEPT schalloptisch/AEPT schallschluckend/ACEPT schalltechnisch/AEPT schallverstärkend/AEPT schallweich/AEPT schalten/BDIWXY schamhaft/ACEPT schamlos/ACEPT schamrot/AEPT schandbar/AEPT scharen/DIXY scharf/AEPTU scharfgemacht/AEPT scharfkantig/AEPT scharfmachen/DIXY scharfrandig/AEPT scharfsichtig/ACEPT scharfsinnig/ACEPT scharlachrot/AEPT scharmant/ACEPT scharren/DIVXY scharrt/EGPVX scharrte/GNVZ scharrten/GIVWX schassen/DIXY schattenhaft/ACEPT schattieren/DIOXY schattig/ACEPT schauderhaft/ACEPT schaudern/DIXY schauen/DIWXY schauerartig/AEPT schauerlich/ACEPT schauern/DIXY schaufeln/DIXY schaukeln/DIXY schaukelt/EGPVX schaukelte/GNVZ schaukelten/GIVWX schaulustig/ACEPT schaumig/ACEPT schaurig/ACEPT scheckig/AEPT scheel/AEPT scheffeln/DIXY scheiden/DIVX scheinbar/ACEPTU scheinen/BDIX scheinheilig/ACEPT scheintot/AEPT scheißen/DIWX scheiteln/DIXY scheitern/DIXY schellen/DIXY schelmisch/ACEPT schelten/DI schematisch/AEPT schematisieren/DIOXY schemenhaft/AEPT schenken/DIVXY schenkt/EGPVX schenkte/GNVZ schenkten/GIVWX scheppern/DIXY scheren/DIWXY scherzen/DIVXY scherzhaft/AEPT scherzt/EGPVX scherzte/GNVZ scherzten/GIVWX scheu/ACEPRTZ scheuchen/DIVXY scheucht/EGPVX scheuchte/GNVZ scheuchten/GIVWX scheuen/DIWXY scheuern/DIWXY scheuerte/GNVZ scheuerten/GIVWX scheußlich/ACEPT schichten/DIXY schick/AELPT schicken/DIWXY schicksalhaft/AEPT schieben/DIVX schied/PVZ schieden/GVWX schief/ACEPT schieferig/AEPT schiefgelacht/AEPT schieflachen/DIXY schiefwinklig/AEPT schielen/DIXY schienen/DGIWXY schier/AEPT schießen/DIVX schießwütig/AEPT schiffbrüchig/AEPT schiffen/BDIVXY schifft/EGPVX schiffte/GNVZ schifften/GIVWX schikanieren/DIOXY schildern/DIXY schilfig/AEPT schillern/DIXY schiltst/WX schimmeln/DIVXY schimmelreitend/AEPT schimmelt/EGPVX schimmelte/GNVZ schimmelten/GIVWX schimmern/DIXY schimmlig/AEPT schimpfen/DIXY schimpflich/AEPT schinden/DIXY schirmen/DIXY schiss/PVZ schissen/GVWX schizophren/AEPT schläfrig/ACEPT schläft/VX schlägt/VX schlängeln/DIXY schlabberig/AEPT schlabbern/DIWXY schlachten/DIXY schlacken/DIXY schlackern/DIXY schlackig/ACEPT schlafen/DGIV schlaff/ACEPT schlaflos/AEPT schlaftrunken/AEPT schlafwandeln/DIXY schlafwandlerisch/AEPT schlagartig/ACEPT schlagen/DGIVW schlagfertig/AEPT schlagfest/AEPT schlagkräftig/ACEPT schlagstark/AEPT schlagwettergefährdet/AEPT schlagwettergeschützt/AEPT schlagwortartig/AEPT schlaksig/ACEPT schlammig/AEPT schlampig/AEPT schlang/PVZ schlank/ACEPT schlapp/ACEPT schlappgemacht/AEPT schlappmachen/DIXY schlau/ACEPT schlecht/ACEPT schlechterdings schlechthin schlecken/DIXY schleichen/DIX schleierhaft/ACEPT schleifen/DIVXY schleift/EGPVX schleifte/GNVZ schleiften/GIVWX schleimig/AEPT schleimlösend/AEPT schleißen/DIWXY schleißte/GNVZ schleißten/GIVWX schlemmen/DIXY schlendern/DIXY schlendert/EGPX schlenkern/DIXY schlenkert/EGPX schleppen/DIVXY schleppt/EGPVX schleppte/GNVZ schleppten/GIVWX schlesisch/AEPT schleudern/IVXY schleudert/EGPVX schleuderte/GNVZ schleuderten/GIVWX schleunig/ACEPT schleunigst/AEPTW schleusen/IXY schleust/EGP schlich/EPZ schlichen/GIOWXY schlicht/ACEPTWX schlichte/ACNRSZ schlichten/DIWXY schlichtweg schlief/EPVZ schlierenartig/AEPT schließen/BDIVX schließlich schliff/PZ schlimm/ACEPT schlimmstenfalls schlingen/DIVX schliss/EPZ schlittern/DIXY schlitzäugig/AEPT schlitzohrig/AEPT schlohweiß/AEPT schloss/PVZ schlossen/GVWX schlotterig/AEPT schlottern/DIXY schlottert/EGPX schlüpfen/DIXY schlüpfrig/AEPT schlürfen/DIXY schlüsselfertig/AEPT schlüssig/ACEPTU schluchzen/DIXY schlucken/DIVXY schluckt/EGPVX schluckte/GNVZ schluckten/GIVWX schluderig/AEPT schlug/PVZ schlummern/DIXY schlummert/EGPX schlurfen/DIXY schlurft/EGPX schlussendlich/AEPT schlussfolgern/DIXY schlussfolgert/EGPX schmächtig/AEPT schmähen/DIVXY schmählich/AEPT schmäht/EGPVX schmähte/GNVZ schmähten/GIVWX schmälern/DIXY schmachten/DIVXY schmachvoll/ACEPT schmackhaft/ACEPTU schmal/AEPT schmalspurig/AEPT schmalzig/AEPT schmarotzen/DIXY schmarotzerisch/AEPT schmatzen/DIXY schmatzt/EGPX schmausen/DIXY schmecken/BDIXY schmeckt/EGPX schmeichelhaft/AEPT schmeicheln/DIXY schmeichlerisch/AEPT schmeißen/DIX schmelzen/BDIVXY schmerzen/DIVXY schmerzerfüllt/AEPT schmerzhaft/AEPT schmerzlich/ACEPT schmerzlindernd/AEPT schmerzlos/AEPT schmerzstillend/AEPT schmerzt/EGPVX schmerzverzerrt/AEPT schmerzvoll/ACEPT schmettern/DIXY schmieden/BDIXY schmiegen/DIXY schmiegsam/AEPT schmiegt/EGPX schmieren/DIVXY schmierig/AEPT schmiert/EGPVX schmierte/GNVZ schmierten/GIVWX schmilzt/VW schminken/DIXY schmirgeln/DIXY schmiss/EPZ schmissig/AEPT schmollen/DIXY schmolz/PVZ schmolzen/GVWX schmoren/DIXY schmücken/DIXY schmuck/ACEPT schmucklos/AEPT schmuggeln/DIXY schmunzeln/DIXY schmunzelt/EGPX schmusen/DIXY schmutzen/DIVXY schmutzig/ACEPT schnäuzen/DIXY schnäuzt/EGPX schnabelförmig/AEPT schnallen/DIXY schnalzen/DIXY schnappen/DIXY schnappt/EGPX schnarchen/DIXY schnarcht/EGPX schnarren/IXY schnattern/DIXY schnattert/EGPX schnauben/DIXY schnaufen/DIVXY schnauft/EGPVX schneckenförmig/AEPT schneebedeckt/AEPT schneeblind/AEPT schneeig/AEPT schneeweiß/AEPT schneiden/DIVX schneidern/DIXY schneidig/ACEPT schneien/DIXY schneit/EGPX schnell/ACEPTZ schnellen/DIWXY schnellentschlossen/AEPT schnellfüßig/AEPT schnelllebig/ACEPT schnellstmöglich/AEPT schnellt/EGPWX schnickschnacklos/AEPT schniefen/DIXY schniegeln/DIXY schnippeln/DIXY schnippen/DIXY schnippisch/AEPT schnitt/PVZ schnitten/GVWX schnittig/ACEPT schnitzen/DIXY schnöd/AEPT schnörkelhaft/AEPT schnörkellos/AEPT schnörkeln/DIXY schnodderig/ACEPT schnorren/DIXY schnüffeln/DIXY schnüffelt/EGPX schnüren/DIVXY schnürt/EGPVX schnürte/GNVZ schnürten/GIVWX schnuckelig/AEPT schnupfen/DIVXY schnupft/EGPVX schnupfte/GNVZ schnupften/GIVWX schnuppern/DIXY schnurgerade/ANRS schnurren/DIXY schnurrt/EGPX schnurstracks schön/ACEPTU schönfärben/DIXY schöpfen/DIXY schöpferisch/AEPT schob/PVZ schoben/GVWX schocken/BDIWXY schockfarben/AEPT schockieren/DIOXY schonen/DIWXY schonte/GNVZ schonten/GIVWX schonungslos/AEPT schor/PZ schorfig/AEPT schoss/PVZ schossen/GVWX schottisch/AEPT schräg/ACEPT schränken/DIVXY schränkt/EGPVX schränkte/GNVZ schränkten/GIVWX schraffieren/DIOXY schrammen/DIXY schrammig/AEPT schrankenlos/AEPT schrauben/DIVXY schraubenförmig/AEPT schraubt/EGPVX schraubte/GNVZ schraubten/GIVWX schrecken/DIVXY schreckerregend/ACEPT schreckhaft/AEPT schrecklich/ACEPT schreckt/EGPVX schreiben/DIVWX schreibfaul/AEPT schreibgeschützt/AEPT schreibmaschinengeschrieben/AEPT schreibschützen/BDIXY schreibunkundig/AEPT schreien/DIXY schreiten/DIWX schrieb/PVZ schrien/GIVX schriftlich/AEPT schriftstellerisch/AEPT schrill/ACEPTZ schrillen/DIWXY schritt/EPZ schritthalten/I schrittweise/ANRS schröpfen/DIXY schroff/ACEPT schrottreif/AEPT schrubben/DIXY schrullenhaft/AEPT schrullig/ACEPT schrumpfen/DIXY schrumplig/AEPT schrundig/AEPT schüchtern/ACEPT schülerhaft/AEPT schüren/DIXY schürfen/DIXY schütteln/DIXY schütten/DIVXY schüttet/EGPVWX schüttete/GNVZ schütteten/GIVWX schützen/DIXY schubkarrenweise schuf/PZ schufen/WXY schuften/DIWXY schuftig/AEPT schuldbeladen/AEPT schuldbewusst/AEPT schulden/DIWXY schuldenfrei/AEPT schuldet/EGPVWX schuldete/GNVZ schuldeten/GIVWX schuldhaft/ACEPT schuldig/ACEPTU schuldlos/AEPT schulen/DIXY schulfrei/AEPT schulisch/AEPT schulmeisterlich/AEPT schulpflichtig/AEPT schulterfrei/AEPT schummeln/DIXY schummerig/AEPT schuppen/DIXY schuppig/AEPT schurkisch/AEPT schussbereit/AEPT schussfertig/AEPT schussfest/ACEPT schusslig/ACEPT schustern/DIXY schutzbefohlen/AEPT schutzlos/ACEPT schwäbisch/AEPT schwächen/DIXY schwächer/AEPT schwächlich/AEPT schwächst/AEPT schwängern/DIXY schwänzeln/DIXY schwänzelt/EGPX schwänzen/DIXY schwärmen/DIXY schwärmerisch/AEPT schwärzen/DIXY schwärzlich/AEPT schwabbeln/DIXY schwabbelt/EGPX schwabblig/AEPT schwach/AEPT schwachköpfig/AEPT schwachsichtig/AEPT schwachsinnig/AEPT schwadronieren/DIXY schwafeln/DIXY schwamm/PVZ schwammig/AEPT schwand/PVZ schwang/PZ schwanger/AEPT schwanken/DIXY schwankt/EGPX schwappen/DIXY schwappt/EGPX schwarz/AEPT schwarzärgern/DIXY schwarzblau/AEPT schwarzbraun/AEPT schwarzweiß/AEPT schwatzen/DIXY schwatzhaft/ACEPT schwatzt/EGPX schweben/DIXY schwedisch/AEPT schwefelfarbig/AEPT schwefelgelb/AEPT schwefeln/DIXY schweflig/AEPT schweifen/DIXY schweige/GNV schweigen/DIVWX schweigsam/AEPT schweinisch/AEPT schweißen/DIXY schweißgebadet/AEPT schweißig/AEPT schweißt/EGPV schweißte/GNVZ schweißten/GIVWX schweißtreibend/AEPT schweißtriefend/AEPT schweizerisch/AEPT schwelen/DIXY schwelgen/DIXY schwelgerisch/AEPT schwelgt/EGPX schwellen/DI schwemmen/DIXY schwemmt/EGPX schwenken/BDIXY schwer/ACEPTU schwerblütig/AEPT schwergewichtig/AEPT schwerhörig/AEPT schwerlich schwermütig/AEPT schwerpunktartig/AEPT schwerpunktmäßig/AEPT schwerwiegend/ACEPT schwesterlich/AEPT schwieg/PVZ schwiegen/GVWX schwielig/AEPT schwierig/ACEPT schwillt/X schwimmen/DIVX schwinde/GNVZ schwindelerregend/AEPT schwindelfrei/AEPT schwindeln/DIXY schwindelt/EGPX schwinden/DGIVX schwindlig/AEPT schwindsüchtig/AEPT schwingen/DIX schwingungsempfindlich/AEPT schwingungsfrei/AEPT schwirren/DIXY schwirrt/EGPX schwitzen/DIVXY schwitzt/EGPVX schwören/DIVX schwollen/GWX schwor/PVZ schworen/GVWX schwül/ACEPT schwülstig/AEPT schwul/ACEPT schwunghaft/AEPT schwunglos/ACEPT schwungvoll/ACEPT schwuppdiwupp scrollen/DIXY sechs sechseckig/AEPT sechseinhalb sechsfältig/AEPT sechsfach/AEPT sechshundert sechsjährig/AEPT sechsmonatig/AEPT sechsmonatlich/AEPT sechsseitig/AEPT sechsstöckig/AEPT sechsstündig/AEPT sechst/AEPT sechstägig/AEPT sechstausenddreihundert sechstel sechsundachtzig sechsundachtzigste/ANRS sechsunddreißig sechsunddreißigste/ANRS sechsundfünfzig sechsundfünfzigste/ANRS sechsundneunzig sechsundneunzigste/ANRS sechsundsechzig sechsundsechzigste/ANRS sechsundsiebzig sechsundsiebzigste/ANRS sechsundvierzig sechsundzwanzig sechswöchig/AEPT sechzehn sechzehntausend sechzehnte/ANRS sechzehntel sechzig/R sechzigjährig/AEPT sechzigste/ANRS sedimentieren/DIOXY seefahrend/AEPT seefest/AEPT seeklar/AEPT seekrank/AEPT seelenfroh/AEPT seelenruhig/AEPT seelenvergnügt/AEPT seelenvoll/AEPT seelisch/AEPT seemännisch/AEPT seemäßig/AEPT seetüchtig/ACEPT segelfertig/AEPT segelklar/AEPT segeln/DIXY segelt/EGPX segensreich/AEPT segensvoll/AEPT segnen/DIXY sehen/DGIV sehenswert/AEPT sehenswürdig/AEPT sehnen/DIXY sehnig/AEPT sehnlich/AEPT sehnlichst/W sehnsüchtig/AEPT sehnt/EGPX sehr seicht/AEPT seiden/AEPTW seidenartig/AEPT seidenweich/AEPT seidig/AEPT seien/DWX seifen/IWXY seifig/AEPT seilen/IWXY seimig/AEPT sein/AEPT seinerseits seinerzeit seinesgleichen seinetwegen seinetwillen seinige/ANRS seit/LWX seitdem seiteneffektfrei/AEPT seitenlang/AEPT seitens seitenweise seither seitherige/ANRS seitig/AEPT seitwärts sek sek. sekundär/AEPT sekundenlang/AEPT sekundieren/DIOXY selbe/ANRS selbig/AEPT selbst selbständig/ACEPTU selbstbewusst/AEPT selbstbezüglich/AEPT selbsterklärend/AEPT selbsterkoren/AEPT selbsteröffnet/AEPT selbstevident/AEPT selbstgefällig/AEPT selbstgenügsam/AEPT selbstgerecht/AEPT selbsthaltend/AEPT selbstherrlich/AEPT selbstklebend/AEPT selbstleuchtend/AEPT selbstlos/AEPT selbstmörderisch/AEPT selbstredend selbstregulierend/AEPT selbstsicher/ACEPT selbstständig/ACEPTU selbstsüchtig/AEPT selbsttätig/AEPT selbstvergessen/AEPT selbstverständlich/AEPT selektieren/BDIOXY selektiv/AEPT selig/ACEPTU selten/ACEPT seltsam/ACEPT seltsamerweise semantikbasiert/AEPT semantikerhaltend/AEPT semantisch/AEPT semiformal/AEPT semilegal/AEPT semiotisch/AEPT sendekopfseitig/AEPT senden/DIVXY sengen/DIVXY sengt/EGPVX sengte/GNVZ sengten/GIVWX senil/ACEPT senken/DIVXY senkrecht/AEPT senkt/EGPVX senkte/GNVZ senkten/GIVWX sensationell/AEPT sensationshaschend/AEPT sensibel/AC sensibilisieren/DIOWXY sensitiv/AEPT sensorseitig/AEPT sentenziös/ACEPT sentimental/ACEPT separat/AEPT separieren/BIOXY septisch/AEPT sequentiell/AEPT sequenziell/AEPT serbisch/AEPT serbokroatisch/AEPT serialisieren/DIOXY seriell/AEPT serienmäßig/AEPT serienreif/AEPT serienweise seriös/ACEPT servicefreundlich/AEPT servieren/DIOXY servil/ACEPT sesshaft/ACEPT setting setzen/BDIVXY setzt/EGPVX setzte/GNVZ setzten/GIVWX seufzen/DIXY seufzt/EGPX sexistisch/AEPT sexual/AEPT sexuell/AEPT sezieren/DIOXY sibirisch/AEPT sich/R sichelförmig/AEPT sicher/ACENPTZ sichergehen/DIX sichergestellt/AEPT sicherheitsbewusst/AEPT sicherheitsgerichtet/AEPT sicherheitshalber sicherheitskritisch/AEPT sicherheitsrelevant/AEPT sicherheitstechnisch/AEPT sicherlich sichern/DIWXY sicherstellen/DIXY sicherungsübereignet/AEPT sicherzugehen sicherzustellen/D sichten/BDIXY sichtlich/AEPT sickern/DIXY sie sieben/DIOXY siebeneinhalb siebenfältig/AEPT siebenfach/AEPT siebenhundert siebenjährig/AEPT siebenmal siebenmalig/AEPT siebent/AEPTW siebentägig/AEPT siebentel siebenundachtzig siebenundachtzigste/ANRS siebenunddreißig siebenunddreißigste/ANRS siebenundfünfzig siebenundfünfzigste/ANRS siebenundneunzig siebenundneunzigste/ANRS siebenundsechzig siebenundsechzigste/ANRS siebenundsiebzig siebenundsiebzigste/ANRS siebenundvierzig siebenundvierzigste/ANRS siebenundzwanzig siebt/AEGPTX siebte/AGNRSZ siebtel siebten/GISWX siebzehn siebzehnjährig/AEPT siebzehnte/ANRS siebzehntel siebzig/R siebzigste/ANRS siech/AEPT siechen/DIWXY siecht/EGPWX siedeln/DIXY siedelt/EGPX sieden/DIXY siedet/EGPWX siegeln/DIVXY siegelt/EGPVX siegelte/GNVZ siegelten/GIVWX siegen/DIVXY siegesgewiss/AEPT siegessicher/AEPT siegestrunken/AEPT sieghaft/AEPT sieglos/AEPT siegreich/ACEPT siegt/EGPVX sieh/E sieht/WX sigma signalisieren/DIOXY signalrot/AEPT signieren/DIOXY signifikant/AEPT silberhell/AEPT silbermetallic silbern/AEPT simpel/AC simulieren/BDIOXY simultan/AEPT sind singen/DIWX singulär/AEPT sinkbar/AEPTU sinken/BDIVX sinnbildlich/AEPT sinnen/DIX sinnenfreudig/AEPT sinnerfüllt/AEPT sinnfällig/AEPT sinngemäß/AEPT sinngerecht/AEPT sinngetreu/AEPT sinnieren/DIXY sinnig/ACEPTU sinnigerweise sinnlich/AEPT sinnlos/ACEPT sinnreich/AEPT sinnverwandt/AEPT sinnvoll/AEPT sinnvollerweise sinnwidrig/AEPT sintern/DIXY sintflutartig/AEPT sistieren/DIOXY sittenlos/ACEPT sittenstreng/AEPT sittig/AEPT sittlich/AEPTU sittsam/ACEPT situationsabhängig/AEPT situationsbedingt/AEPT situationsgerecht/AEPT situiert/AEPT sitzen/DIX sixtinisch/AEPT sizilianisch/AEPT skalieren/BDIOXY skalpieren/DIOXY skandalös/AEPT skandinavisch/AEPT skeptisch/AEPT skizzenhaft/AEPT skizzieren/DIOXY sklavisch/AEPT skrupellos/ACEPT skurril/ACEPT slawisch/AEPT slowakisch/AEPT slowenisch/AEPT smaragdgrün/AEPT smart/AEPT so söhnen/IVXY sobald sodann sodass soeben sofern soff/PVZ soffen/GVWX sofort sofortbeziehbar/AEPT sofortig/AEPT soft/AEPT softwarekompatibel/A softwaremäßig/AEPT softwaretechnisch/AEPT softwaretechnologisch/AEPT sog/PZ sogar sogleich solang/E solch/AEPT solcherart solcherlei solchermaßen solcherweise solidarisch/AEPT solidarisieren/DIOXY solide/ACNRSU sollen/DIWXY solvent/AEPT somatisch/AEPT somit sommerlich/AEPT sommersprossig/AEPT sonder/LN sonderbar/ACEPT sondergleichen sonderpädagogisch/AEPT sondieren/DIOXY sonnabends sonnen/GIXY sonnenerhitzt/AEPT sonnenklar/AEPT sonnenüberglänzt/AEPT sonnenverbrannt/AEPT sonnig/ACEPT sonntäglich/AEPT sonntags sonnverbrannt/AEPT sonor/AEPT sonst sonstig/AEPT sooft sophistisch/AEPT sorgen/DIVXY sorgenfrei/AEPT sorgenlos/AEPT sorgenvoll/AEPT sorgfältig/ACEPT sorglich/AEPT sorglos/AEPT sorgsam/ACEPT sorgt/EGPVX sortieren/DIOXY soundso soundsoviel souverän/AEPTU soviel soweit sowie sowieso sowjetisch/AEPT sowjetrussisch/AEPT sowohl sozial/ACEPTU sozialdemokratisch/AEPT sozialisieren/DIOXY sozialistisch/AEPT sozialkritisch/AEPT sozialliberal/AEPT sozialökonomisch/AEPT sozialpädagogisch/AEPT sozialpolitisch/AEPT sozialpsychologisch/AEPT sozialwissenschaftlich/AEPT soziodemografisch/AEPT soziographisch/AEPT soziologisch/AEPT sozusagen spähen/DIXY spärlich/ACEPT spät/ACEPT späterhin spätesten/S spätminoisch/AEPT spätmykenisch/AEPT spachteln/DIXY spalten/BDGIXY spaltenlang/AEPT spaltenweise/ANRS spanabhebend/AEPT spanisch/AEPT spanlos/AEPT spannen/DIVWXY spannend/ACEPTU spannkräftig/AEPT spannungsgeladen/AEPT spannungsversorgt/AEPT sparen/DIXY sparsam/ACEPT spaßen/DIVXY spaßeshalber spaßhaft/AEPT spaßig/ACEPT spaßt/EGPV spastisch/AEPT spazieren/DIXY spe speckig/AEPT spedieren/DIOXY speicherintensiv/AEPT speichern/DIXY speicherplatzeffizient/AEPT speicherplatzintensiv/AEPT speicherprogrammierbar/AEPT speicherprogrammiert/AEPT speien/DIX speisen/DIVXY speist/EGPV speiste/GNVZ speisten/GIVWX spektakulär/ACEPTU spektral/AEPT spektroskopisch/AEPT spekulativ/AEPT spekulieren/DIVXY spenden/DIXY spendieren/DIOWXY sperren/BDIVWXY sperrig/AEPT sperrt/EGPVWX sperrte/GNVZ sperrten/GIVWX spesenfrei/AEPT spezial/AEPT spezialisieren/DIOWXY speziell/ACEPT spezifisch/ACEPT spezifizieren/DIOWXY sphärisch/AEPT spiegelblank/AEPT spiegelglatt/AEPT spiegeln/DIXY spielen/BDIVXY spielerisch/AEPT spielfrei/AEPT spielfreudig/AEPT spielt/EGPVX spielte/GNVZ spielten/GIVWX spien/GIX spießbürgerlich/AEPT spießen/DIXY spießig/AEPT spindeldürr/AEPT spinnen/DIVX spionieren/DIXY spiralförmig/AEPT spiritistisch/AEPT spirituell/AEPT spitz/AEPTZ spitzbübisch/AEPT spitzeln/DIXY spitzen/DIWXY spitzfindig/AEPT spitzig/AEPT spitzwinklig/AEPT spleenig/AEPT splitten/DIXY splitterfrei/AEPT splitterig/AEPT splittern/DIXY splitternackt/AEPT spötteln/DIXY spöttisch/AEPT spontan/ACEPT sporadisch/AEPT sporenbewehrt/AEPT spornen/DIXY spornstreichs sportlich/AEPTU spottbillig/AEPT spotten/DIVXY spottet/EGPVWX spottete/GNVZ spotteten/GIVWX spräche/NZ spränge/NZ sprach/LPVZ sprachabhängig/AEPT sprachkundig/AEPT sprachlos/AEPT sprachspezifisch/AEPT sprachunabhängig/AEPT sprachwissenschaftlich/AEPT sprang/PZp sprayen/DIXY sprechen/DIV spreizen/DIXY sprengen/DIVXY sprengt/EGPVX sprengte/GNVZ sprengten/GIVWX sprenkeln/DIXY spricht/VWX sprichwörtlich/AEPT sprießen/DIXY springen/DIWX sprinten/DIXY spritzen/DIVXY spritzig/ACEPT spritzt/EGPVX spritzte/GNVZ spritzten/GIVWX spritzwasserfest/AEPT spritzwassergeschützt/AEPT spröd/ACEPT spross/PZ sprühen/DIVXY sprüht/EGPVX sprühte/GNVZ sprühten/GIVWX spruchreif/AEPT sprudeln/DIXY sprunghaft/ACEPT spülen/DIXY spürbar/ACEPT spüren/BDIVXY spürt/EGPVX spürte/GNVZ spürten/GIVWX spucken/DIXY spuken/DIXY spukhaft/AEPT spulen/DIXY spurlos/AEPT spurten/DIXY stäche/NZ städtebaulich/AEPT städtisch/AEPT stählern/AEPT stämmig/ACEPT ständig/AEGPTV ständige/AGNRSV stänkern/DIXY stärkehaltig/AEPT stärken/DIVXY stärker/AEPT stärkst/AEPT stärkt/EGPVX stärkte/GNVZ stärkten/GIVWX stäuben/DIXY staatenlos/AEPT staatlich/AEPT staatsbürgerlich/AEPT staatseigen/AEPT staatsfeindlich/AEPT staatsklug/AEPT staatsmännisch/AEPT staatspolitisch/AEPT staatsrechtlich/AEPT staatsverbürgt/AEPT stabil/ACEPT stabilisieren/DIOXY stach/PZ stacheln/DIXY stachlig/ACEPT stadtbekannt/AEPT stadteigen/AEPT staffelförmig/ACEPT staffeln/DIXY staffieren/DIOXY stagnieren/DIXY stahl/PZ stahlblau/AEPT stahlhart/AEPT stak/PZ stalinistisch/AEPT stammeln/DIXY stammen/DIXY stammesgeschichtlich/AEPT stammverwandt/AEPT stampfen/DIXY stand/GPVZ standardisieren/DIOXY standardmäßig/AEPT standen/GVWX standesamtlich/AEPT standesgemäß/AEPT standfest/AEPT standgehalten standhältst/WX standhaft/ACEPT standhalten/DI standhielt/EPZ standrechtlich/AEPT stank/PZ stanzen/DIXY stapeln/BDIXY stapfen/DIXY stapft/EGPX starb/PVZ stark/AEPT starr/ACEPTZ starren/DIWXY starrköpfig/ACEPT starrsinnig/ACEPT starrt/EGPWX startbereit/AEPT starten/DIXY startklar/AEPT stationär/AEPT stationieren/DIOXY statisch/AEPT statistisch/AEPT statt/ELP stattdessen statten/GIWXY stattfand/PZ stattfinden/DI stattgeben/DI stattgefunden/AEPT stattgegeben/AEPT statthaft/AEPTU stattlich/ACEPT statuenhaft/AEPT statuieren/DIOXY statutenmäß/AEPT staubdicht/AEPT stauben/DIVXY staubfrei/AEPT staubhaltig/ACEPT staubig/ACEPT stauchen/DIVXY staucht/EGPVX stauchte/GNVZ stauchten/GIVWX stauen/DIVXY staunen/DIXY staunenswert/AEPT staunt/EGPX staut/EGPVX staute/GNVZ stauten/GIVWX stechen/DI steckbrieflich stecken/BDIVXY steckkompatibel/A steckt/EGPVX steckte/GNVZ steckten/GIVWX stehen/DGIVWX stehend/AEGPTV stehende/AGNRSV stehlen/DI steif/ACEPT steifen/DIWXY steifte/GNVZ steiften/GIVWX steigen/DIWX steigern/BDIVXY steigert/EGPVX steigerte/GNVZ steigerten/GIVWX steil/ACEPT steilheitsbegrenzt/AEPT steinalt/AEPT steinern/AEPT steinhart/AEPT steinig/ACEPTZ steinigen/DIWXY steinreich/ACEPT steinzeitlich/AEPT stellen/DIVWXY stellenlos/AEPT stellig/AEPT stellt/EGPVWX stellte/GNVZ stellten/GIVWX stellungslos/AEPT stellvertretend/AEPT stelzen/DIXY stelzt/EGPX stemmen/DIXY stempeldruckabhängig/AEPT stempeln/DIXY stenografieren/DIOXY stenografisch/AEPT stenographieren/DIOXY stenographisch/AEPT steppen/DIXY sterben/DI sterbenskrank/AEPT sterblich/AEPTU stereotyp/AEPT stereotypieren/DIOXY steril/ACEPT sterilisieren/DIOXY sternenförmig/AEPT sternenklar/AEPT sternförmig/AEPT sternhagelvoll/AEPT sternhell/ACEPT sternklar/AEPT stete/ANRSU stetig/ACEPT stets steuerbefreit/AEPT steuerbegünstigt/AEPT steuerfrei/AEPT steuerlich/AEPT steuern/BDIVXY steuerpflichtig/AEPT steuerpolitisch/AEPT steuerrechtlich/AEPT steuert/EGPVX steuerte/GNVZ steuerten/GIVWX steuerungsseitig/AEPT steuerungstechnisch/AEPT stibitzen/DIOXY sticheln/DIXY stichfest/AEPT stichhaltig/AEPT stichig/AEPT stichprobenartig/AEPT stichpunktartig/AEPT sticht/X sticken/DIXY stickig/AEPT stickstoffhaltig/AEPT stieben/DIXY stiefeln/DIXY stiefmütterlich/AEPT stieg/PVZ stiegen/GVWX stiehlt/X stieren/DIXY stiernackig/AEPT stieß/EPVZ stieße/NVZ stiften/DIXY stilecht/AEPT stilgerecht/AEPT stilisieren/DIOXY stilistisch/AEPT still/ACEPTZ stillen/DIWXY stillgelegt/AEPT stillgestanden/AEPT stillhältst/WX stillhalten/DI stilliegen/DIX stilllegen/DIXY stillos/AEPT stillschweigen/DIX stillstehen/DIX stillvergnügt/AEPT stilvoll/AEPT stimmberechtigt/AEPT stimmen/DIVXY stimmig/AEPTU stimmt/EGPVX stimmte/GNVZ stimmten/GIVWX stimmungsvoll/AEPT stimulieren/BDIOXY stinken/DIX stirbt/VWX stöbern/DIXY stöbert/EGPX stöhnen/DIXY stöhnt/EGPX stöpseln/DIXY störanfällig/AEPT stören/BDIVXY störfrei/AEPT störrig/ACEPT störrisch/ACEPT störsicher/AEPT störungsfrei/AEPT störungsverursachend/AEPT stößt/V stochastisch/AEPT stochern/DIXY stocken/DIXY stocksteif/AEPT stoisch/AEPT stolpern/DIXY stolz/AEPT stopfen/DIVXY stopft/EGPVX stopfte/GNVZ stopften/GIVWX stoppen/DIWXY stornieren/DIOXY stoßartig/AEPT stoßen/DGIVW stoßfest/AEPT stottern/DIXY sträflich/AEPT sträuben/DIXY strafen/BDIWXY straff/ACEPT straffen/DIWXY strafrechtlich/AEPT strahlen/DIXY strahlt/EGPX strampeln/DIXY strampelt/EGPX strangulieren/DIOXY strapazieren/DIOXY strapaziös/AEPT strategisch/AEPT streben/DIVXY strebt/EGPVX strebte/GNVZ strebten/GIVWX strebweit/AEPT strecken/DIXY streckenweise streicheln/DIXY streichen/BDIVX streifen/DIXY streifenweise streifig/AEPT streiken/DIXY streikt/EGPX streiten/BDIX streitig/AEPTU streitlustig/AEPT streitsüchtig/ACEPT streng/ACEGPTZ strengen/GIWXY strenger/AEGPT strengsten/SW stressen/DIXY stressig/ACEPT streuen/DIVXY streut/EGPVX streute/GNVZ streuten/GIVWX strich/PZ strichen/GVWX stricken/DIVXY strickt/EGPVX strickte/GNVZ strickten/GIVWX strikt/AEPT stringent/ACEPT stritt/EPZ strittig/AEPTU strömen/DIXY strömungsproportional/AEPT strombegrenzt/AEPT stromfressend/AEPT stromlos/AEPT stromsparend/AEPT strotzen/DIXY strotzt/EGPX strukturbasiert/AEPT strukturell/AEPT strukturgleich/AEPT strukturieren/DIOXY stückchenweise stückeln/DIXY stückweise stülpen/DIXY stümperhaft/AEPT stünde/NVZ stündlich/AEPT stürbe/NZ stürmen/DIXY stürmisch/AEPT stürzen/DIXY stützen/DIXY stubenrein/AEPT studentisch/AEPT studieren/DIOXY studierwillig/AEPT stufen/DIWXY stufenartig/AEPT stufenförmig/AEPT stufenlos/AEPT stufenweise/ANRS stumm/ACEPT stumpf/ACEPT stumpfen/DIWXY stumpfsinnig/ACEPT stumpfwinklig/AEPT stundenlang/AEPT stundenweise/ANRS stupid/ACEPT stupsen/DIXY stupsnasig/AEPT stur/ACEPT stutzen/DIXY stutzerhaft/AEPT stutzig/AEPT süchtig/AEPT südafrikanisch/AEPT südamerikanisch/AEPT südchinesisch/AEPT süddeutsch/AEPT südeuropäisch/AEPT südfranzösisch/AEPT südländisch/AEPT südlich/ACEPT südöstlich/AEPT südwärts südwestenglisch/AEPT südwestlich/AEPT süffig/AEPT süffisant/AEPT sühnen/IXY sündenfällig/AEPT sündhaft/AEPT sündig/AEPTZ sündigen/DIWXY sündigte/GNVZ sündigten/GIVWX süß/ACELPTZ süßen/DIWXY süßsauer/A süßte/GNVZ süßten/GIVWX subatomar/AEPT subjektiv/AEPT suboptimal/AEPT subsequent/AEPT substantiell/ACEPT substantivisch/AEPT substanziell/ACEPT substituieren/BDIOWXY subsumieren/DIOXY subtil/ACEPT subtrahieren/DIOXY subtropisch/AEPT subventionieren/DIOXY subversiv/AEPT suchen/DIVWXY suchterzeugend/AEPT sudanesisch/AEPT sudeln/DIXY sudlig/AEPT suggerieren/DIOXY suggestibel/A suggestionsbereit/AEPT suggestiv/AEPT sukzessiv/AEPT sulfidisch/AEPT sulzen/DIXY summa summarisch/AEPT summen/DIWXY summieren/DIOXY sumpfig/ACEPT super supererfolgreich/AEPT superklug/AEPT superlativisch/AEPT superspezialisiert/AEPT surfen/DIXY surft/EGPX surrealistisch/AEPT surren/DIXY suspekt/AEPT suspendieren/DIOXY swingen/DIVX sybillinisch/AEPT symbolisch/AEPT symbolisieren/DIOXY symmetrisch/AEPTU sympathisch/ACEPTU sympathisieren/DIXY symphonisch/AEPT synchron/AEPT synchronisieren/DIOXY synonym/AEPT synonymisch/AEPT syntaktisch/AEPT syntaxgesteuert/AEPT synthetisch/AEPT synthetisieren/BDIOXY syphilitisch/AEPT syrisch/AEPT systematisch/AEPT systematisieren/DIOWXY systemdefiniert/AEPT systemimmanent/AEPT systemlos/AEPT systemnah/AEPT systemunterstützt/AEPT systolisch/AEPT szenisch/AEPT täfeln/DIXY täglich/AEPT tändeln/DIXY tänzeln/DIXY tänzerisch/AEPT täppisch/AEPT täte/NZ tätig/ACEPTZ tätigen/DIWXY tätlich/AEPT tätowieren/DIOXY tätscheln/DIXY täuschen/DIXY tabellarisch/AEPT tabellarisieren/DIOXY tabellengesteuert/AEPT tabellengetrieben/AEPT tabu tabuisieren/DIOXY tadellos/ACEPT tadeln/DIXY tadelnswert/ACEPT tadelsüchtig/ACEPT tafelfertig/AEPT tafeln/DIWXY tagaus tagein tagelang/AEPT tagen/DIVXY tagesaktuell/AEPT tageweise/ANRS tagsüber tagt/EGPVX tagtäglich/AEPT tagte/GNVZ tagten/GIVWX taillieren/DIOXY takeln/DIXY takten/DIXY taktfest/ACEPT taktieren/DIXY taktisch/AEPT taktlos/ACEPT taktvoll/ACEPT talentiert/ACEPT talentlos/ACEPT talentvoll/ACEPT talgig/AEPT tangential/AEPT tangieren/DIOXY tanken/DIXY tanzen/DIXY tapezieren/DIOWXY tapfer/ACEPT tappen/DIXY tapsen/DIXY tapsig/AEPT tapst/EGP tarieren/DIOXY tariflich/AEPT tarifmäßig/AEPT tarifpolitisch/AEPT tarnen/DIXY taschenrechnergewandt/AEPT tasten/DIXY tat/PZ tatendurstig/AEPT tatenlos/AEPT tatkräftig/ACEPT tatsächlich/AEPT taub/ACEPT taubengrau/AEPT taubstumm/AEPT tauchen/DIXY tauen/DIXY taufen/DIXY taufrisch/AEPT taugen/DIXY tauglich/ACEPTU taumeln/DIXY taumlig/AEPT tauschen/BDIVXY tauscht/EGPVX tauschte/GNVZ tauschten/GIVWX tausend/EP tausenderlei tausendfältig/AEPT tausendfach/AEPT tausendjährig/AEPT tausendmal tausendste/ANRS tausendstel/S tautologisch/AEPT taxieren/DIOXY taylorisieren/BDIXY technikphilosophisch/AEPT technisch/ACEPT technokratisch/AEPT technologiefrei/AEPT technologieinduziert/AEPT technologisch/AEPT teeren/DIXY teigig/ACEPT teil/EPSZ teilbar/AEPTUV teilbestücken/O teilbestückt/AEPT teilen/BDIVWXY teilgenommen/AEPT teilhaben/DI teilhaftig/AEPT teilnahm/PZ teilnahmslos/ACEPT teilnahmsvoll/ACEPT teilnehmen/DI teilnimmt/X teilweise/ANRS teilzuhaben teilzunehmen tektonisch/AEPT telefonieren/DIVWXY telefonisch/AEPT telegrafieren/DIXY telegrafisch/AEPT telegraphieren/DIXY telegraphisch/AEPT teleologisch/AEPT telepathisch/ACEPT teleskopisch/AEPT temperamentlos/AEPT temperamentvoll/ACEPT temperaturabhängig/AEPT temperieren/DIOXY temporär/AEPT temporal/AEPT tendenziell/AEPT tendenziös/ACEPT tendieren/DIXY terminführen/D termingerecht/AEPT terminieren/DIOUXY terminlich/AEPT terrassenförmig/AEPT terrestrisch/AEPT territorial/AEPT terrorisieren/DIOXY tertiär/AEPT testamentarisch/AEPT testen/BDIXY testieren/DIOXY teuer/AC teuflisch/ACEPT teutonisch/AEPT texanisch/AEPT textkritisch/AEPT textlich/AEPT textlinguistisch/AEPT thailändisch/AEPT theatralisch/AEPT thematisch/AEPT thematisieren/DIOXY themenverwandt/AEPT theologisch/AEPT theoretisch/ACEPT theoretisieren/DIXY therapeutisch/AEPT therapieren/BDIOWXY thermisch/AEPT thermometrisch/AEPT thermoplastisch/AEPT theta thrombotisch/AEPT thronen/DIXY thüringisch/AEPT tibetanisch/AEPT tibetisch/AEPT ticken/DIXY tief/ACEPTU tiefblau/AEPT tiefgekühlt/AEPT tiefgeladen/AEPT tiefgründig/ACEPT tiefladbar/AEPT tiefschwarz/AEPT tiefsinnig/ACEPT tiefstellen/IXY tiefzuladen/P tierisch/AEPT tierlieb/AEPT tierlieben/DW tilgbar/ACEPTU tilgen/BDIVXY tilgt/EGPVX tilgte/GNVZ tilgten/GIVWX tippeln/DIXY tippen/DIVXY tippt/EGPVX tippte/GNVZ tippten/GIVWX tirolerisch/AEPT tischlern/DIXY titanisch/AEPT titulieren/DIOXY tödlich/ACEPT tölpelhaft/ACEPT tönen/DIXY tönern/AEPT töpfern/DIXY töricht/ACEPT töten/DIXY toasten/DIXY toben/DIXY tobsüchtig/AEPT tobt/EGPX todblass/AEPT todbringend/AEPT todernst/AEPT todgeweiht/AEPT todkrank/AEPT todlangweilig/AEPT todmüde/ANRS todschick/AEPT todsicher/AEPT toggeln/DIXY toggelt/EGPX tolerabel/A tolerant/ACEPT toleranzbedingt/AEPT tolerieren/DIOXY toll/ACEPTZ tollen/DIWXY tollkühn/ACEPT tollpatschig/AEPT tolpatschig/AEPT tonangebend/AEPT tonhaltig/AEPT tonlos/ACEPT tonnenweise topfit topografisch/AEPT topographisch/AEPT topologisch/AEPT torkeln/DIXY torlos/AEPT torpedieren/DIOXY tosen/DXY tot/AEPTX total/AEPT totalitär/ACEPT totarbeiten/DIXY totenblass/AEPT totenbleich/AEPT totenstill/AEPT totgearbeitet/AEPT totgelaufen/AEPT totgeschlagen/AEPT totgeschossen/AEPT totgeschwiegen/AEPT totgestochen/AEPT totlachen/DIXY totlaufen/DI totschießen/DIX totschlagen/DI totschweigen/DIX totstechen/DI totzuschlagen/D toupieren/DIOXY touristisch/AEPT toxikologisch/AEPT trächtig/ACEPT träfe/NZ träg/ACEPTZ trägerlos/AEPT trällern/DIXY tränen/DIXY tränennass/AEPT tränken/DIXY träufeln/DIXY träumen/DIVXY träumerisch/ACEPT träumt/EGPVX träumte/GNVZ träumten/GIVWX traben/DIXY trachten/DIXY tradieren/O traditionell/ACEPT traditionsbewusst/AEPT traditionsgemäß/AEPT traditionsreich/AEPT traf/PZ tragbar/ACEPTU tragen/BDGIV tragfähig/ACEPT tragikomisch/AEPT tragisch/ACEPT trainieren/DIOXY traktieren/DIOXY trampeln/DIXY tranchieren/DIOXY trank/PVZ transatlantisch/AEPT transferieren/DIOXY transformieren/DIOXY transistorisieren/DIOXY transitiv/AEPT transparent/ACEPT transpirieren/DIXY transplantieren/DIOXY transponieren/BDIOXY transportabel/AC transportfähig/ACEPT transportieren/DIOXY transsibirisch/AEPT transversal/AEPT transzendent/AEPT trapezförmig/AEPT trappeln/DIXY trassieren/DIOXY trat/PVZ tratschen trauen/DIOVWXY trauern/DIXY traulich/ACEPTV traumatisch/ACEPT traumatisieren/DIOWXY traumhaft/AEPT traurig/ACEPT traut/AEGPTVWX traute/AGNRSVZ trauten/GIVWX traversieren/BDIOXY travestieren/DIOXY trecken/DIXY treffen/DI trefflich/ACEPT treffsicher/ACEPT treiben/DIVWX treideln/DIXY tremolieren/DIOXY trennbar/ACEPTU trennen/BDIXY trennend/ACEPT trennschärfer/AEPT trennschärfste/ANRS trennscharf/AEPT trenschärfste/ANRS treppenförmig/AEPT treten/DGIV treu/ACEGPTU treubrüchig/ACEPT treue/ACGNRSU treuhänderisch/AEPT treuherzig/ACEPT treulich/G treulos/ACEPT treuselig/AEPT tributpflichtig/AEPT trichterförmig/AEPT trickreicherweise tricksen/IXY trickst/EGP trieb/PVZ trieben/GVWX triebhaft/ACEPT triefäugig/AEPT triefen/DIXY triefnass/AEPT trifft/WX triftig/ACEPT triggern/BDIXY triggert/EGPX trigonometrisch/AEPT trilateral/AEPT trillern/DIXY trimmen/DIXY trinkbar/AEPTU trinken/BDIVWX trinkfest/ACEPT trippeln/DIXY trist/ACEPT trittst/VWX triumphal/ACEPT triumphieren/DIXY trivial/ACEPT trivialerweise trödeln/DIVXY trödelt/EGPVX trödelte/GNVZ trödelten/GIVWX tröpfchenweise tröpfeln/DIXY trösten/DIVXY tröstet/EGPVWX tröstete/GNVZ trösteten/GIVWX tröstlich/ACEPTU trocken/ACEPT trockengelegt/AEPT trockenlegen/DIXY trocknen/DIVXY trocknet/EGPVWX trocknete/GNVZ trockneten/GIVWX trog/PZ trojanisch/AEPT trollen/DIXY trommeln/DIXY trompeten/DIXY tropenfest/ACEPT tropfen/DIXY tropfenförmig/AEPT tropfnass/AEPT tropisch/ACEPT trostlos/ACEPT trostreich/ACEPT trostvoll/AEPT trotten/DIXY trotzdem trotzen/DIWXY trotzend/ACEPT trotzig/ACEPT trotzköpfig/ACEPT trüb/ACEPTZ trüben/DIWXY trübselig/ACEPT trübsinnig/ACEPT trügen/DIX trügerisch/ACEPT trudeln/DIXY trudelt/EGPX trugen/VWX trumpfen/DIXY trunken/ACEGPT trunkene/AGNRSV trunkener/AEGPT trunksüchtig/ACEPT truppweise tschechisch/AEPT tschetschenisch/AEPT tschüs tschüss tüchtig/ACEPT tückisch/ACEPT tüfteln/DIXY tünchen/DIXY türkis türkisch/AEPT türkisfarben/AEPT türmen/DIXY tuberkulös/AEPT tuend/AEPT tugendhaft/ACEPT tugendreich/ACEPT tummeln/DIXY tumultuarisch/AEPT tun/IX tunesisch/AEPT tunken/DIWXY tunlich/AEPT tunlichst/W tuntig/AEPT tupfen/DIXY turbogeladen/AEPT turbulent/AEPT turmhoch turmhohe/ANRS turnen/DIXY turnerisch/AEPT turnusmäßig/AEPT turteln/DIXY tuscheln/DIXY tuschen/DIVXY tuscht/EGPVX tuschte/GNVZ tuschten/GIVWX tut/EPX tuten/DIWXY typinkonsistent/AEPT typisch/ACEPTU typischerweise typisieren/DIOXY typografisch/AEPT typographisch/AEPT tyrannisch/ACEPT tyrannisieren/DIOXY übe/NR übel/AC üben/DIVXY über/S überängstlich/AEPT überall überallhin überaltert/AEPT überanstrengen/DIOXY überantworten/DIOXY überarbeiten/DIOXY überaß/PZ überaus überbeanspruchen/DIOXY überbegabt/AEPT überbeladen/AEPT überbelasten/DIOXY überbelichten/DIOXY überbesetzt/AEPT überbetonen/DIOXY überbevölkert/AEPT überbewerten/DIOXY überbieten/DIX überblättern/DIOWXY überblenden/DIOXY überblicken/DIOXY überboten/AEPTWX überbracht/AEPTZ überbreit/AEPT überbringen/DIX überbrückbar/AEPTU überbrücken/BDIOXY überdachen/DIOXY überdauern/DIOXY überdecken/DIOXY überdenken/DIX überdies überdimensional/AEPT überdimensioniert/AEPT überdrehen/DIOXY überdrüssig/ACEPT überdrucken/DIOXY überdurchschnittlich/ACEPT übereifrig/ACEPT übereignen/DIOXY übereilen/DIOXY überein übereinander übereinandergelagert/AEPT übereinandergelegt/AEPT übereingekommen/AEPT übereingestimmt/AEPT übereinkommen/DIX übereinstimmen/DIXY übereinzustimmen überempfindlich/ACEPT überessen/ADEIPT überfährt/X überfällig/ACEPT überfällt/X überfahren/ADEIPT überfallen/ADEIPT überfiel/EPZ überfliegen/DIX überfließen/DIX überflogen/AEPTWX überfloss/PZ überflügeln/DIOXY überflüssig/ACEPT überflüssigerweise überfluten/DIOXY überfordern/DIOXY überfrachten/DIOXY überfragen/DIXY überfressen/DI überfreundlich/AEPT überführen/DIOXY überfüllen/DIOXY überfüttern/DIOXY überfuhr/PZ übergab/PZ übergangen/AEPT übergangslos/AEPT übergeben/ADEIPT übergebietlich/AEPT übergeflossen/AEPT übergeführt/AEPT übergegangen/AEPT übergegriffen/AEPT übergehen/DIX übergekippt/AEPT übergekocht/AEPT übergelaufen/AEPT übergeleitet/AEPT übergeordnet/AEPT übergeschnappt/AEPT übergeschoben/AEPT übergesiedelt/AEPT übergestreift/AEPT übergeworfen/AEPT übergibt/X übergießen/DIX überging/EPZ überglasen/DIOXY überglücklich/ACEPT übergossen/AEPTWX übergreifen/DIX übergriff/PZ übergroß/AEPT übergroßzügig/AEPT überhängen/DIOX überhäufen/DIOXY überhand überhastet/AEPT überhaupt überheben/DIX überheblich/ACEPT überhin überhitzen/DIOXY überhöht/ACEPT überhören/BDIOXY überhoben/AEPTWX überholen/DIOXY überholungsbedürftig/AEPT überhüpfen/DIXY überinterpretieren/DIOXY überirdisch/ACEPT überkam/PZ überkippen/DIXY überkleben/DIOXY überklettern/DIXY überkochen/DIXY überkommen/ADEIPTX überkrusten/DIOXY überlädt/X überlässt überläuft/X überladen/ADEIPTX überlagern/DIOXY überlang/AEPT überlappen/DIOXY überlasen/WXY überlassen/ADEIPT überlasten/DIOWXY überlastfest/AEPT überlastgeschützt/AEPT überlaufen/ADEIPT überlaut/AEPT überleben/DIOXY überlebensgroß/AEPT überlegen/ADEIOPTXY überleiten/DIXY überlesen/ADEIPT überlief/EPZ überliefern/DIOXY überliegend/AEPT überließ/EPZ überliest überlisten/DIOXY überlud/PZ übermächtig/ACEPT übermäßig/ACEPT übermachen/DIOXY übermalen/DIOXY übermannen/DIOXY übermenschlich/AEPT übermitteln/DIOXY übermodern/ADEIOPTXY übermorgen übermüdet/AEPT übermütig/ACEPT übernächste/ANRS übernächtigt/AEPT übernachten/DIOXY übernahm/PZ übernational/AEPT übernatürlich/AEPT übernehmen/DI übernervös/AEPT übernimmt/WX übernommen/AEPT überörtlich/AEPT überordnen/DIXY überparteilich/AEPT überpflanzen/DIOXY überproportional/AEPT überprüfbar/AEPTU überprüfen/BDIOXY überquellen/DI überqueren/DIOXY überquillt/X überquoll/PZ überragen/DIOXY überrannt/AEPTZ überraschen/DIOXY überraschenderweise überreden/DIOXY überregional/AEPT überreich/AELPT überreichen/DIOWXY überreif/AEPT überreizen/DIOXY überrennen/DIX überrollen/DIOXY überrumpeln/DIOXY überrunden/DIOXY übersät/AEPT übersättigen/DIOXY übersah/PZ übersandt/AEPTZ übersatt/AEPT überschätzen/DIOXY überschäumen/DIOXY überschatten/DIOXY überschauen/BDIOXY überschießen/DIX überschläft/X überschlägig/AEPT überschlägt/X überschlafen/ADEIPT überschlagen/ADEIPT überschlief/PZ überschlug/PZ überschmieren/DIOXY überschnappen/DIXY überschneiden/DIX überschneidungsfrei/AEPT überschnitten/AEPTWX überschreiben/DIX überschreiten/DIX überschrieben/AEPTWX überschritten/AEPTWX überschüssig/AEPT überschütten/DIOXY überschuldet/AEPT überschwänglich/ACEPT überschwemmen/DIOXY überseeisch/AEPT übersehbar/AEPTU übersehen/ABDEIPT übersenden/DIXY übersetzen/BDIOXY übersichtlich/ACEPTU übersiedeln/DIOXY übersieht/X übersinnlich/AEPT überspannen/DIOXY überspannungsfest/AEPT überspannungsgeschützt/AEPT überspannungssicher/AEPT überspielen/DIOXY überspitzen/DIOXY übersprang/PZ übersprechen/DI überspringen/DIX übersprudeln/DIXY übersprungen/AEPT überstaatlich/AEPT überstanden/AEPTWX überstehen/DIX übersteigen/DIX übersteigern/DIOXY überstiegen/AEPTWX überstimmen/DIOXY überstrahlen/DIOXY überstreichen/DIX überstreifen/DIXY überstrichen/AEPTWX überströmen/DIOXY überstürzen/DIOXY übertage übertakten/DIOXY übertariflich/AEPT überteuert/AEPT übertölpeln/DIOXY übertönen/DIOXY überträgt/X übertraf/PZ übertragbar/AEPTU übertragen/ABDEIPT übertrainieren/DIOXY übertrat/PZ übertreffen/DI übertreiben/DIX übertreten/ADEIPT übertrieben/AEPTWX übertrifft/X übertrittst/WX übertroffen/AEPTU übertrug/PZ übertrumpfen/DIOXY übertünchen/DIOXY übervölkern/DIOXY übervoll/AEPT übervorteilen/DIOXY überwältigen/DIOXY überwachen/DIOXY überwand/PZ überwechseln/IXY überweisen/DIX überwerfen/DI überwiegen/DIX überwiesen/AEPTWX überwindbar/AEPTU überwinden/BDIX überwintern/DIOXY überwölben/DIOXY überwog/PZ überwuchern/DIOXY überwunden/AEPT überzählen/DIOXY überzählig/AEPT überzeichnen/DIOXY überzeugen/DIOXY überzeugend/ACEPT überziehen/DIWX überzogen/AEPTWX überzuckern/DIOXY überzugehen überzugreifen überzuwechseln üblich/ACEPTU üblicherweise übrig/AEPT übrigen/SW üppig/ACEPT ubiquitär/AEPT uferlos/AEPT ukrainisch/AEPT ulken/DIXY ulkig/ACEPT ultima ultimativ/AEPT ultralangfristig/AEPT ultramarin/AEPT ultraviolett/AEPT um/S umändern/DIXY umadressieren/DIOXY umarbeiten/DIXY umarmen/DIOXY umbauen/DIOXY umbenannt/AEPT umbenennen/DIX umbetten/DIXY umbiegen/DIX umbilden/DIXY umbinden/DIX umblättern/DIXY umbrechen/DI umbricht/X umbringen/DIX umbuchen/DIXY umdachte/NZ umdefinieren/DIOXY umdenken/DIX umdirigieren/DIOXY umdisponieren/DIOXY umdrehen/DIXY umdrucken/DIXY umeinander umfängt/X umfahren/ADEIPT umfallen/DI umfangen/ADEIPT umfangreich/ACEPT umfassen/DIOXY umfassend/ACEPT umfing/PZ umfliegen/DIX umflogen/AEPTWX umfluten/DIOXY umformen/DIXY umformulieren/DIOXY umfüllen/DIXY umfunktionieren/DIOXY umgänglich/ACEPTU umgab/PZ umgangen/AEPT umgangssprachlich/AEPT umgarnen/DIOXY umgeändert/AEPT umgearbeitet/AEPT umgebaut/AEPT umgeben/ADEIPT umgebettet/AEPT umgebildet/AEPT umgeblättert/AEPT umgebogen/AEPT umgebracht/AEPT umgebrochen/AEPT umgebucht/AEPT umgebunden/AEPT umgedreht/AEPT umgedruckt/AEPT umgefallen/AEPT umgeformt/AEPT umgefüllt/AEPT umgegangen umgegossen/AEPT umgegraben/AEPT umgehängt/AEPT umgehabt umgehackt/AEPT umgehalst/AEPT umgehauen/AEPT umgehen/DIX umgekehrt/AEPT umgekippt/AEPT umgeklappt/AEPT umgekleidet/AEPT umgeknickt/AEPT umgekommen/AEPT umgekrempelt/AEPT umgeladen/AEPT umgelagert/AEPT umgelegt/AEPT umgeleitet/AEPT umgelenkt/AEPT umgelernt/AEPT umgemodelt/AEPT umgemünzt/AEPT umgepackt/AEPT umgepflanzt/AEPT umgepflügt/AEPT umgepolt/AEPT umgerechnet/AEPT umgerissen/AEPT umgerührt/AEPT umgerüstet/AEPT umgesattelt/AEPT umgeschaltet/AEPT umgeschaut umgeschichtet/AEPT umgeschlagen/AEPT umgeschnallt/AEPT umgeschrieben/AEPT umgeschüttelt/AEPT umgeschüttet/AEPT umgeschuldet/AEPT umgeschult/AEPT umgeschwenkt/AEPT umgesehen/AEPT umgesetzt/AEPT umgesiedelt/AEPT umgesprungen/AEPT umgespult/AEPT umgestalten/DIOXY umgesteckt/AEPT umgestellt/AEPT umgesteuert/AEPT umgestiegen/AEPT umgestimmt/AEPT umgestoßen/AEPT umgestrickt/AEPT umgestürzt/AEPT umgesunken/AEPT umgetauft/AEPT umgetauscht/AEPT umgewälzt/AEPT umgewandelt/AEPT umgewandt/AEPT umgewechselt/AEPT umgewendet/AEPT umgewertet/AEPT umgeworfen/AEPT umgezogen/AEPT umgibt/X umgießen/DIX umging/EPZ umgoss/PZ umgraben/DI umgrenzend/AEPT umgrenzt/AEPT umgruppieren/DIOXY umgürten/DIOXY umhängen/DIOXY umhaben/DI umhacken/DIXY umhalsen/DIOXY umhauen/DIXY umher umherblicken/DIXY umhergeirrt umhergeschweift/AEPT umhergestrichen/AEPT umhergewirbelt/AEPT umhergezogen/AEPT umherschweifen/DIXY umherstreichen/DIX umherziehen/DIX umhin umhingekommen umhingekonnt umhinkam/PZ umhinkannst/W umhinkönnen/IY umhinkommen/IX umhinkonnte/NZ umhüllen/DIOXY umkämpfen/DIOXY umkam/PZ umkehren/BDIXY umkippen/DIXY umklammern/DIOXY umklappen/DIXY umkleiden/DIXY umknicken/DIXY umkommen/DIX umkonstruieren/DIOXY umkreisen/DIOXY umkrempeln/DIXY umlädt/X umläuft/X umladen/DI umlagern/DIOXY umlaufen/ADEIPT umlauten/DIXY umlegen/BDIXY umleiten/DIXY umlenken/DIXY umlernen/DIXY umlief/EPZ umliegend/AEPT ummodeln/DIXY umnachtet/AEPT umnebeln/DIOXY umordnen/DIXY umorganisieren/DIOXY umpacken/DIXY umpflanzen/DIXY umpflügen/DIXY umpolen/DIXY umprogrammieren/BDIOXY umquartieren/DIOXY umrahmen/DIOXY umranden/DIOXY umrang/PZ umranken/DIOXY umrannte/NZ umrechnen/DIXY umreißen/DIX umrennen/DIX umringen/DIOX umrissen/AEPTWX umrühren/DIXY umrüsten/IXY umrunden/DIOXY umsäumen/DIOXY umsah/PZ umsatteln/DIXY umschalten/BDIXY umschauen/DIXY umschichten/DIXY umschiffen/DIOXY umschlagen/DI umschlang/PZ umschließen/DIX umschlingen/DIX umschlossen/AEPTWX umschlungen/AEPT umschmeicheln/DIXY umschmelzen/DI umschmolzen/AEPT umschnallen/DIXY umschreiben/DIX umschrieben/AEPTWX umschütteln/DIXY umschütten/DIXY umschulen/DIXY umschwärmen/DIOXY umschweifig/AEPT umschwenken/DIXY umsegeln/DIOXY umsehen/DI umseitig/AEPT umsetzbar/ACEPT umsetzen/BDIXY umsichtig/ACEPT umsiedeln/DIXY umsieht/X umsinken/DIX umso umsonst umsorgen/DIOXY umsortieren/BDIOXY umspannen/DIOXY umspielt/AEPT umspinnen/DIX umsponnen/AEPT umsprang/PZ umspringen/DIX umsprungen/AEPT umspülen/DIOXY umspulen/DIXY umständlich/AEPT umstehend/AEPT umsteigen/DIX umstellen/DIOXY umsteuern/DIXY umstimmen/DIXY umstoßen/DI umstricken/DIOXY umstritten/ACEPTU umstürzen/DIXY umstürzlerisch/AEPT umtaufen/DIXY umtauschen/BDIXY umtuend/AEPT umtun/IX umwälzen/DIXY umwandeln/BDIXY umwarb/PZ umwarf/PZ umwechseln/DIXY umweltbedingt/AEPT umweltfreundlich/AEPT umweltschonend/AEPT umweltschützend/AEPT umwenden/DIXY umwerben/DI umwerfen/DI umwerten/DIXY umwickeln/DIOXY umwirbt/X umwirft/X umwölken/DIOXY umwogt/AEPT umworben/AEPT umzäunen/DIOXY umziehen/DIX umzingeln/DIOXY umzöge/NZ umzog/PZ umzubenennen/D umzubringen/D umzugehen umzugswillig/AEPT umzukippen/D umzukonstruieren/D umzulegen/D umzuleiten/D umzulernen/D umzuordnen/D umzuprogrammieren/D umzuschalten/D umzuschichten/D umzuschulden/D umzusehen umzusetzen/D umzusteigen umzustellen/D umzuwandeln/D umzuwerfen/D unabdingbar/AEPT unablässig/AEPT unabwehrbar/AEPT unabweisbar/AEPT unabweislich/AEPT unantastbar/AEPT unartikuliert/AEPT unaufhaltsam/AEPT unaufhörlich/AEPT unauflöslich/AEPT unaufschiebbar/AEPT unausbleiblich/AEPT unauslöschlich/AEPT unausrottbar/AEPT unaussprechlich/AEPT unausstehlich/AEPT unausweichlich/AEPT unautorisiert/AEPT unbändig/AEPT unbeabsichtigt/AEPT unbeachtet/AEPT unbeanstandet/AEPT unbeantwortet/AEPT unbearbeitet/AEPT unbebaut/AEPT unbedarft/AEPT unbedeckt/AEPT unbedingt/AEPT unbedruckt/AEPT unbefahrbar/ACEPT unbefleckt/AEPT unbefriedigt/AEPT unbefristet/AEPT unbegabt/ACEPT unbegrenzt/ACEPT unbegründet/AEPT unbehandelt/AEPT unbehelligt/AEPT unbeherrscht/ACEPT unbehindert/AEPT unbeholfen/ACEPT unbeirrbar/AEPT unbeirrt/AEPT unbekehrbar/AEPT unbekleidet/AEPT unbekümmert/ACEPT unbelastet/AEPT unbelebt/ACEPT unbelegt/AEPT unbelehrbar/ACEPT unbeleuchtet/AEPT unbelichtet/AEPT unbeliebt/ACEPT unbelohnt/AEPT unbemerkt/AEPT unbemittelt/ACEPT unbenommen unbenutzt/ACEPT unbeobachtet/AEPT unbequem/ACEPT unberechtigt/AEPT unberücksichtigt/AEPT unberührt/AEPT unbeschädigt/AEPT unbeschäftigt/ACEPT unbeschadet unbeschleunigt/AEPT unbescholten/AEPT unbeschränkt/ACEPT unbeschreiblich/AEPT unbeschrieben/AEPT unbeschriftet/AEPT unbeschwert/AEPT unbeseelt/AEPT unbesetzt/AEPT unbesiegbar/ACEPT unbesiegt/AEPT unbesoldet/AEPT unbesorgt/ACEPT unbestätigt/AEPT unbestellt/AEPT unbestimmt/AEPT unbestraft/AEPT unbestreitbar/ACEPT unbestückt/AEPT unbeteiligt/ACEPT unbetont/AEPT unbeugsam/ACEPT unbewährt/AEPT unbewacht/ACEPT unbewaffnet/AEPT unbewegt/AEPT unbeweibt/AEPT unbeweint/AEPT unbewohnt/AEPT unbezähmbar/ACEPT unbezahlbar/ACEPT unbezahlt/AEPT unbezweifelbar/AEPT unbezwingbar/ACEPT unbiegsam/ACEPT unblessiert/AEPT unbotmäßig/AEPT und undatiert/AEPT undefiniert/AEPT undenklich/AEPT undicht/ACEPT undifferenziert/ACEPT undiszipliniert/ACEPT undokumentiert/AEPT unduldsam/ACEPT undurchdringbar/AEPT undurchdringlich/AEPT uneinbringlich/AEPT uneinig/AEPT unentdeckt/AEPT unentschieden/ACEPT unentschlossen/ACEPT unentspannt/ACEPT unentwegt/ACEPT unentwickelt/AEPT unentwirrbar/AEPT unerbittlich/AEPT unerfindlich/AEPT unerforschlich/AEPT unerforscht/AEPT unerfüllt/AEPT unergründbar/ACEPT unergründet/AEPT unergründlich/ACEPT unerhört/ACEPT unerkannt/ACEPT unerlässlich/ACEPT unerlaubt/ACEPT unerledigt/AEPT unermesslich/ACEPT unermüdlich/ACEPT unerörtert/AEPT unerreichbar/ACEPT unerreicht/ACEPT unersättlich/ACEPT unerschlossen/ACEPTWX unerschöpflich/ACEPT unerschrocken/ACEPT unerschütterlich/ACEPT unerschüttert/AEPT unersetzlich/ACEPT unerwähnt/AEPT unerwartet/ACEPT unerwidert/AEPT unerzogen/AEPT unfair/ACEPT unfallfrei/AEPT unfallgefährdet/AEPT unfehlbar/ACEPT unfertig/ACEPT unflektiert/AEPT unförmig/ACEPT unformatiert/AEPT unfrankiert/AEPT unfrei/ACEPT unfühlbar/ACEPT ungarisch/AEPT ungebärdig/ACEPT ungebeten/ACEPT ungebraucht/ACEPT ungebührlich/ACEPT ungedeckt/ACEPT ungefähr/AELPT ungefährdet/ACEPT ungefedert/AEPT ungehemmt/ACEPT ungeheuer/ACL ungeheuerlich/ACEPT ungehört/ACEPT ungehobelt/ACEPT ungeklärt/ACEPT ungekünstelt/ACEPT ungeladen/ACEPT ungelenk/AEPT ungelernt/ACEPT ungenannt/ACEPT ungenehmigt/AEPT ungeniert/ACEPT ungenießbar/ACEPT ungenützt/AEPT ungerächt/ACEPT ungeraten/ACEIPT ungereimt/ACEPT ungern ungerührt/ACEPT ungesäumt/ACEPT ungeschoren/AEPT ungestüm/AEPT unglaublich/AEPT unheilvoll/AEPT unidirektional/AEPT uniform/AEPT uniformiert/AEPT uninformiert/AEPT uninteressiert/AEPT unipolar/AEPT universal/AEPT universalistisch/AEPT universell/ACEPT universitär/AEPT unknackbar/AEPT unkommentiert/AEPT unkompliziert/ACEPT unkomprimiert/AEPT unkontrolliert/AEPT unkonzentriert/AEPT unkoordiniert/AEPT unkultiviert/AEPT unlängst unlenksam/AEPT unleugbar/AEPT unlieb/ACEPT unliebsam/AEPT unlimitiert/AEPT unliniert/AEPT unmäßig/ACEPT unmanierlich/AEPT unmarkiert/AEPT unmaskiert/AEPT unmöbliert/AEPT unmodifiziert/AEPT unmotiviert/AEPT unnachahmlich/AEPT unnahbar/ACEPT unnötig/ACEPT unnötigerweise unnütz/AEPT unoptimiert/AEPT unpässlich/AEPT unpaarig/AEPT unpartitioniert/AEPT unplatziert/AEPT unpräzise/ANRS unprivilegiert/AEPT unqualifiziert/ACEPT unquittiert/AEPT unrasiert/AEPT unrecht/AELPT unreflektiert/AEPT unretouchiert/AEPT unrettbar/ACEPT unrühmlich/ACEPT uns/R unsäglich/ACEPT unsachgemäß/ACEPT unsachlich/ACEPT unsagbar/ACEPT unschätzbar/ACEPT unschicklich/ACEPT unschlagbar/ACEPT unser/AENPT unsereiner unsereins unsererseits unseresgleichen unserm unserseits unsersgleichen unserthalben unsertwegen unsertwillen unsicher/ACEPT unsichtbar/ACEPT unsittlich/ACEPT unskaliert/AEPT unsortiert/AEPT unspezifiziert/AEPT unsportlich/ACEPT unsre/ANRS unsresgleichen unsrig/AEPT unstarr/ACEPT unstet/AEPT unsteteste/ANRS unstillbar/ACEPT unstreitig/ACEPT unstrukturiert/AEPT unsymmetrisch/ACEPT untätig/ACEPT untadelhaft/ACEPT untadlig/ACEPT unten unter/ACEPT unterband/PZ unterbaut/AEPT unterbelichten/DIOXY unterbeschäftigt/AEPT unterbesetzt/AEPT unterbewertet/AEPT unterbewusst/ACEPT unterbieten/DIX unterbinden/DIX unterbleiben/DIX unterblieb/EPZ unterboten/AEPTWX unterbrach/PZ unterbrechen/BDI unterbrechungsfrei/AEPT unterbrechungsgesteuert/AEPT unterbreiten/DIOXY unterbricht/X unterbringen/DIX unterbrochen/AEPTU unterbunden/AEPT unterdessen unterdrücken/DIOXY unterdurchschnittlich/AEPT untereinander unterentwickelt/ACEPT unterernährt/ACEPT unterfängt/X unterfangen/ADEIPT unterfertigen/DIOXY unterfing/PZ unterfordern/DIOWXY untergeben/ACEPT untergebracht/AEPT untergegangen/AEPT untergegliedert/AEPT untergehen/DIX untergejubelt/AEPT untergekommen/AEPT untergekriegt/AEPT untergeordnet/ACEPT untergestellt/AEPT untergetaucht/AEPT unterging/EPZ untergliedern/DIOXY untergräbt/X untergraben/ADEIPT untergründig/AEPT untergrub/PZ unterhältst/WX unterhalb unterhalten/ADEIPT unterhaltsam/ACEPT unterhandeln/DIOXY unterhebeln/DIXY unterhielt/EPZ unterhöhlen/DIOXY unterirdisch/AEPT unterjochen/DIOXY unterkellern/DIOXY unterkriegen/DIXY unterlässt unterläuft/X unterlag/PZ unterlassen/ADEIPT unterlaufen/ADEIPT unterlegen/ADEIOPTXY unterlief/EPZ unterliegen/DIX unterließ/EPZ unterm untermalen/DIXY untermauern/DIOXY unternähme/NZ unternahm/PZ unternehmen/DI unternehmenseigen/AEPT unternehmerisch/AEPT unternehmungslustig/AEPT unternimmt/X unternommen/AEPT unterordnen/DIXY unterprivilegiert/AEPT unterreden/DIXY unterrichten/DIOXY untersagen/DIOXY unterschätzen/DIOXY unterscheiden/BDIX unterschieben/BDIX unterschied/LP unterschieden/AEPTWX unterschiedlich/ACEPT unterschlägt/X unterschlagen/ADEIPT unterschlüge/NZ unterschlug/PZp unterschreiben/DIX unterschreiten/DIX unterschrieben/AEPTWX unterschritten/AEPTWX untersetzen/DIOXY untersetzt/ACEPTX untersetzte/ACNRSZ unterst/AEPTW unterstand/PZ unterstehen/DIX unterstellen/DIOXY unterstreichen/DIX unterstrichen/AEPTWX unterstützen/DIOXY untersuchen/DIOXY untertägig/AEPT untertänig/AEPT untertänigst/W untertage untertauchen/DIXY unterteilen/DIOXY untervermieten/DIOXY unterversorgt/AEPT unterwandern/DIOXY unterwarf/PZ unterwegs unterweisen/DIX unterwerfen/DI unterwies/PZ unterwirft/X unterworfen/AEPT unterwürfig/ACEPT unterzeichnen/DIOXY unterziehen/DIX unterzöge/NZ unterzog/PZ unterzubringen/D unterzukriegen/D unterzuordnen/D unterzutauchen untrüglich/AEPT unüberbietbar/AEPT unüberlegt/AEPT unübersteigbar/AEPT unüberwindlich/AEPT unumstößlich/AEPT unumwunden ununtersucht/AEPT unverändert/AEPT unveräußerlich/AEPT unverarbeitet/AEPT unverbaubar/AEPT unverbesserlich/AEPT unverdächtig/ACEPT unverdient/AEPT unverdrossen/ACEPT unvereinbar/AEPT unverfälscht/ACEPT unvergessen/AEPT unvergleichlich/AEPT unverheiratet/AEPT unverhofft/AEPT unverhohlen/AEPT unverhüllt/AEPT unverifiziert/AEPT unverkauft/AEPT unverkennbar/AEPT unverletzt/AEPT unverlierbar/AEPT unvermeidlich/ACEPT unvermeidlicherweise unvermindert/AEPT unvermittelt/AEPT unvermutet/AEPT unveröffentlicht/AEPT unverrichtet/AEPT unverrückbar/AEPT unverschlüsselt/AEPT unverschuldet/AEPT unversehrt/AEPT unverstanden/AEPT unverstellt/AEPT unversteuert/AEPT unverstümmelt/AEPT unverwechselbar/AEPT unverzeihlich/ACEPT unverzerrt/AEPT unverzüglich/AEPT unvollendet/AEPT unvorbereitet/AEPT unwegsam/AEPT unweigerlich/AEPT unweit unwert unwiderstehlich/AEPT unwiederbringlich/AEPT unwillig/ACEPT unwohl unwürdig/ACEPT unzählig/AEPT unzensiert/AEPT unzertrennbar/AEPT unzertrennlich/AEPT unzüchtig/ACEPT unzuschreiben/D unzustellbar/AEPT updatemäßig updaten/DIX upgedatet/AEPT upzudaten/D urälteste/ANRS uralt/AEPT uraufführen/DIXY uraufgeführt/AEPT urban/AEPT ureigen/AEPT urgeschichtlich/AEPT urheberrechtlich/AEPT urig/AEPT urinieren/DIXY urkundlich/AEPT urologisch/AEPT urplötzlich/AEPT ursächlich/AEPT ursprünglich/ACEPT urteilen/DIVXY urteilsfähig/AEPT urteilt/EGPVX urtümlich/AEPT usbekisch/AEPT usw usw. utopisch/AEPT utopistisch/AEPT väterlich/ACEPT väterlicherseits vag/AEPT vaginal/AEPT vakant/AEPT validieren/BDIOXY van variabel/AC variieren/BDIOXY vaterländisch/ACEPT vaterlos/AEPT vatikanisch/AEPT vegetabilisch/AEPT vegetarisch/AEPT vegetativ/AEPT vegetieren/DIXY vehement/AEPT veilchenblau/AEPT venerisch/ACEPT venezianisch/AEPT ventilieren/DIOXY verächtlich/ACEPT veränderbar/AEPTU veränderlich/AEPTU verändern/BDIOXY verängstigt/ACEPTX veräppeln/DIOXY verärgern/DIOXY verästeln/DIOXY verästelt/ACEPTX veräußerlichen/DIOXY veräußern/DIOXY verabfolgen/DIOXY verabreden/DIOXY verabreichen/DIOXY verabsäumen/DIOXY verabscheuen/DIOXY verabscheuend/ACEPT verabscheuenswert/ACEPT verabschieden/DIOXY verachten/DIOXY verallgemeinern/BDIOXY veralten/DIOXY verankern/DIOXY veranlagen/DIOXY veranlassen/DIOXY veranschaulichen/DIOXY veranschlagen/BDIOXY veranstalten/DIOXY verantworten/BDIOXY verantwortlich/ACEPTU verantwortungsbewusst/ACEPT verantwortungslos/ACEPT verantwortungsvoll/ACEPT verarbeiten/DIOXY verargen/DIOXY verarmen/DIOXY verarmt/ACEPTX verarmte/ACNRSZ verarschen/DIOXY verarzten/DIOXY verausgaben/DIOXY verbal/ACEPT verbannen/DIOXY verbarrikadieren/DIOXY verbauen/DIOXY verbauern/DIOXY verbessern/BDIOXY verbesserungswürdig/AEPT verbeten/AEPT verbeugen/DIOXY verbeulen/DIOXY verbiestern/IOXY verbildlichen/DIOXY verbilligen/DIOXY verbinden/BDIWX verbindlich/ACEPTU verbindungslos/AEPT verbissen/ACEPTWX verbittern/DIOXY verbittert/ACEPTX verblassen/DIOXY verblasst/ACEPT verblasste/ACNRSZ verblendet/ACEPTWX verblichen/AEPT verblieben/AEIPTWX verblöden/DIOXY verblüffen/DIOXY verblüffend/ACEPT verblüfft/ACEPTX verblüffte/ACNRSZ verblühen/DIOXY verblümt/ACEPT verbluten/DIOXY verbogen/ACEPTWX verbohrt/ACEPTX verborgen/ACEPT verboten/AEPTWX verbrachte/ANRSZ verbrannt/AEPT verbrannte/ANRSZ verbrauchen/DIOXY verbrauchsbedingt/AEPT verbrauchsunabhängig/AEPT verbrecherisch/ACEPT verbreiten/DIOXY verbreitern/DIOXY verbreitet/ACEPTWX verbriefen/DIOXY verbrochen/AEPT verbrüdern/DIOXY verbrühen/DIOXY verbünden/DIOXY verbürgen/DIOXY verbüßen/DIOXY verbuchen/DIOXY verbummeln/DIOXY verbunden/AEPTU verchromt/AEPT verdächtig/ACEPTZ verdächtigen/DIOWXY verdacht/AEPT verdammen/DIOXY verdammenswert/ACEPT verdammt/ACEPTX verdammte/ACNRSZ verdampfen/DIOXY verdanken/DIOXY verdarb/PZ verdaten/DIOXY verdattern/DIOXY verdauen/DIOXY verdaulich/ACEPTU verdecken/DIOWXY verderben/DIO verderblich/ACEPTU verdeutlichen/DIOXY verdeutschen/DIOXY verdichten/DIOXY verdicken/DIOXY verdienen/DIOXY verdienstvoll/ACEPT verdientermaßen verdienterweise verdingen/DIOXY verdirbt/X verdolmetschen/DIOXY verdonnern/DIOXY verdorben/ACEPTU verdorren/DIOXY verdrängen/DIOXY verdrahten/DIOXY verdreckt/AEPT verdrehen/DIOWXY verdreifachen/DIOXY verdrießen/DIOX verdrießlich/ACEPT verdrießt/AEPT verdrillen/DIOXY verdroschen/AEPTW verdrossen/ACEPTWX verdrücken/DIOXY verdrucken/DIOXY verdünnen/DIOXY verdünnisieren/DIOXY verdünnt/ACEPTX verdünnte/ACNRSZ verdüstern/DIOXY verduften/DIOXY verdummen/DIOXY verdunkeln/DIOXY verdunsten/DIOXY verdursten/DIOXY verdutzen/DIOXY verebben/DIOXY veredeln/DIOXY verehelichen/DIOXY verehren/DIOXY verehrenswert/ACEPT verehrlicht/AEPT verehrungswürdig/ACEPT vereidigen/DIOXY vereinbare/ANRSU vereinbaren/DIOWXY vereinbarungsgemäß/AEPT vereinen/BDIOXY vereinfachen/DIOXY vereinheitlichen/DIOXY vereinigen/DIOXY vereinnahmen/DIOXY vereinsamen/DIOXY vereinsamt/ACEPTX vereinsamte/ACNRSZ vereinzeln/DIOXY vereisen/DIOXY vereiteln/DIOXY vereitern/DIOXY verekeln/DIOXY verelenden/DIOXY verenden/DIOXY verengen/DIOXY verengern/DIOXY vererben/DILOXY verewigen/DIOXY verfällt/X verfälscht/ACEPTX verfänglich/ACEPTU verfärbt/ACEPTX verfahren/ADEIPT verfahrenstechnisch/AEPT verfallen/ADEIPT verfangen/ADEIPT verfassen/DIOXY verfassungsändernd/AEPT verfassungsmäßig/AEPT verfassungsrechtlich/AEPT verfassungswidrig/ACEPT verfaulen/DIOXY verfault/ACEPTX verfaulte/ACNRSZ verfehlen/DIOWXY verfeinden/DIOXY verfeinern/DIOXY verfemen/DIOXY verfertigen/DIOXY verfestigen/DIOXY verfeuern/DIOXY verfilmen/BDIOXY verfilzen/DIOXY verfinstern/DIOXY verflachen/DIOXY verflechten/DI verflixt/ACEPT verflochten/AEPTWX verflogen/AEPTWX verflossen/AEPTWX verflüchtigen/DIOXY verflüssigen/BDIOXY verflucht/ACEPTX verfochten/AEPTWX verfolgen/DIOXY verformen/BDIOXY verfrachten/DIOXY verfremden/DIOXY verfressen/AEPT verfroren/AEPTWX verfrüht/AEPT verfügbar/AEPTU verfügen/BDIOXY verführen/BDIOXY verführerisch/ACEPT verfüllen/BDIOWXY verfünffachen/DIOXY verfüttern/DIOXY vergällen/DIOXY vergänglich/ACEPTU vergaffen/DIOXY vergammeln/DIOXY vergangen/AEPT vergangenheitsbezogen/AEPT vergaß/PZ vergasen/DIOXY vergeben/ABDEIPST vergeblich/ACEPT vergegenwärtigen/DIOXY vergeistigen/DIOXY vergessen/ADEIPT vergessene/ANRSU vergesslich/ACEPTU vergeuden/DIOXY vergewaltigen/DIOXY vergewissern/DIXY vergiften/DIOXY vergilbt/ACEPT vergisst/W vergittern/DIOXY vergl vergl. verglasen/DIOXY vergleichbar/AEPTU vergleichen/BDIX vergleichsweise verglichen/AEPTWX verglommen/AEPTW verglühen/DIOWXY vergnügen/DIOXY vergnüglich/ACEPT vergnügt/ACEPTX vergnügte/ACNRSZ vergnügungssüchtig/ACEPT vergönnen/DIOXY vergöttern/DIOXY vergolden/DIOXY vergolten/AEPT vergossen/AEPTWX vergrämen/DIOXY vergraben/ADEIPT vergreisen/DIOXY vergriffen/AEPTWX vergrößern/DIOXY vergüten/BDIOXY verhältnismäßig/ACEPTU verhältniswidrig/AEPT verhängen/DIOXY verhängnisvoll/ACEPT verhärmt/AEPT verhärten/DIOXY verhätschelt/ACEPTX verhaften/DIOXY verhaken/DIOXY verhallen/DIOXY verhalten/ACDEIPTW verhandeln/BDIOXY verhangen/AEPT verharmlosen/DIOXY verharren/DIOXY verhaspeln/DIOXY verhasst/ACEPT verhauen/ADEIPTWXY verheddern/DIOXY verheeren/DIOXY verheerend/ACEPT verhehlen/DIOXY verheilen/DIOXY verheimlichen/DIOXY verheiraten/DIOXY verheißen/ADEIPTX verheißungsvoll/ACEPT verheizen/DIOXY verherrlichen/DIOXY verhexen/DIOXY verhimmeln/DIOXY verhindern/DIOXY verhöhnen/DIOXY verhökern/DIOXY verhören/DIOWXY verholfen/AEPT verhüllen/DIOXY verhüten/BDIOXY verhundertfachen/DIOXY verhungern/DIOXY verhunzen/DIOXY verifizieren/BDIOXY verinnerlichen/DIOXY verirren/DIOXY veritabel/A verjähren/DIOXY verjagen/DIOXY verjüngen/DIOXY verjubeln/DIOXY verkabelt/AEPT verkalken/DIOXY verkannt/AEPTZ verkantet/AEPT verkappen/DIOXY verkapseln/DIOXY verkaufen/DIOWXY verkaufsfähig/AEPT verkaufsfördernd/AEPT verkaufsoffen/AEPT verkaufstechnisch/AEPT verkaufswillig/AEPT verkehrsgünstig verkehrspolitisch/AEPT verkehrsreich/ACEPT verkehrsschwach/AEPT verkehrssicher/AEPT verkehrsstark/AEPT verkehrstechnisch/AEPT verkehrt/ACEPTWX verkeilen/DIOXY verketten/BDIOXY verketzern/DIOXY verkippt verkitten/DIOXY verklären/DIOWXY verklagen/DIOWXY verklappen/DIOWXY verklausulieren/DIOXY verkleben/DIOWXY verkleiden/DIOXY verkleinern/DIOXY verklemmen/DIOWXY verklickert/AEPT verklungen/AEPT verknallen/DIOWXY verknappen/DIOXY verkniffen/AEPTWX verknöchern/DIOXY verknoten/DIOXY verknüpfen/BDIOWXY verkörpern/DIOXY verköstigen/DIOXY verkohlen/DIOXY verkommen/ADEIPTWX verkoppeln/DIOXY verkorkst/AEPT verkrachen/DIOXY verkraften/DIOXY verkrampfen/DIOXY verkratzen/BDIOWXY verkrochen/AEPTWX verkrümeln/DIOXY verkrümmen/DIOXY verkrüppeln/DIOXY verkrusten/DIOXY verkümmern/DIOXY verkünden/DIOXY verkündigen/DIOXY verkürzen/BDIOXY verkupfern/DIOXY verkuppeln/DIOXY verlängern/BDIOXY verlässlich/ACEPTU verlästern/DIOXY verlachen/DIOXY verladen/ADEIPT verlagern/DIOXY verlagsüblich/AEPT verlangen/DIOXY verlangsamen/DIOXY verlassen/ADEIPTW verlaufen/ADEIPTW verlaust/AEPT verlautbaren/DIOXY verlauten/DIOXY verleben/DIOXY verlegen/ABDEIOPTWXY verleiben/IWXY verleiden/DIOXY verleimen/DIOXY verleiten/DIOXY verleitend/ACEPT verlernen/DIOXY verlesen/ADEIPT verletzbar/ACEPT verletzen/BDIOXY verletzend/ACEPT verletzlich/ACEPTU verleugnen/DIOXY verleumden/DIOXY verleumderisch/AEPT verlieben/DIOXY verliehen/AEPTWX verlieren/DIX verlinkt/AEPT verlischt verlöschen/DIOXY verlöten/DIOXY verloben/DIOXY verlocken/DIOXY verlockend/ACEPT verlogen/ACEPT verloren/AEPTWX verlosen/DIOXY verlottern/DIOXY verlustbehaftet/AEPT verlustbringend/AEPT verlustfrei/AEPT verlustmachend/AEPT verlustreich/AEPT vermählen/DIOXY vermachen/DIOWXY vermarkten/BDIOXY vermasseln/DIOXY vermauern/DIOXY vermehren/DIOXY vermeidbar/AEPTU vermeiden/BDIX vermeidlich/AEPTU vermeinen/DIOXY vermeint/AELPTX vermelden/DIOXY vermengen/DIOXY vermenschlichen/DIOXY vermerken/DIOWXY vermessen/ADEIPT vermieden/AEPTWX vermieten/BDIOXY vermindern/DIOXY vermint/AEPT vermischen/DIOXY vermissen/DIOWXY vermitteln/BDIOXY vermögend/ACEPTU vermögensrechtlich/AEPT vermögenswirksam/AEPT vermochten/IWX vermodern/ACDEIOPTXY vermummen/DIOWXY vermuten/DIOXY vermutlich/AEPT vernähen/DIOXY vernachlässigen/BDIOXY vernageln/DIOXY vernarben/DIOXY vernarren/DIOXY vernaschen/DIOXY vernebeln/DIOXY vernehmen/BDI vernehmlich/AEPT verneigen/DIOXY verneinen/DIOXY vernetzen/BDIOXY vernichten/BDIOXY vernickeln/DIOXY verniedlichen/DIOXY vernommen/AEPT vernünftig/ACEPTU vernünftigerweise vernunftbegründet/AEPT vernunftbezogen/AEPT vernunftlos/AEPT vernunftmäßig/AEPT vernunftwidrig/AEPT veröden/DIOXY veröffentlichen/DIOXY verordnen/DIOXY verpachten/DIOXY verpacken/DIOXY verpassen/DIOXY verpatzen/DIOXY verpesten/DIOXY verpetzen/DIOXY verpfänden/DIOXY verpflanzen/DIOXY verpflegen/DIOXY verpflichten/DIOXY verpfuschen/DIOXY verplappern/DIOXY verplaudern/DIOXY verplempern/DIOXY verpönt/AEPT verpolsicher/AEPT verpolt/AEPT verpolungssicher/AEPT verprassen/DIOXY verprügeln/DIOXY verpuffen/DIOXY verpulvern/DIOXY verpumpen/DIOWXY verpuppen/DIOXY verpusten/DIOXY verputzen/DIOXY verqualmen/DIOXY verquicken/DIOXY verquollen/AEPT verräterisch/AEPT verräuchern/DIOXY verrammeln/DIOXY verramschen/DIOXY verrannt/AEPTWZ verraten/ADEIPT verrauchen/DIOXY verrechnen/DIOXY verrecken/DIOXY verregnen/DIOXY verreisen/DIOXY verrenken/DIOXY verrichten/DIOXY verriegeln/DIOXY verringern/DIOXY verrissen/AEPTWX verrohen/DIOXY verronnen/AEPT verrosten/DIOXY verrotten/DIOXY verrücken/DIOXY verrucht/AEPT verrufen/AEPT verrutschen/DIOWXY versäumen/DIOXY versagen/DIOWXY versalzen/ADEIOPTXY versammeln/DIOXY versandbereit/AEPT versanden/DIOXY versandfertig/AEPT versandt/AEPT versandte/ANRSZ versauen/DIOXY versauern/DIOXY verschämt/AEPTU verschärfen/DIOXY verschätzen/IXY verschachern/DIOXY verschachteln/BDIOXY verschaffen/DIOWXY verschalen/DIOXY verschandeln/DIOXY verschanzen/DIOXY verscharren/DIOXY verschaukeln/IOXY verschenken/DIOXY verscherbeln/DIOXY verscherzen/DIOXY verscheuchen/DIOXY verscheuern/DIOXY verschicken/DIOXY verschieben/BDIX verschieden/ACELPTWX verschiedenartig/ACEPT verschiedenerlei verschiedenfarbig/AEPT verschiffen/DIOXY verschimmeln/DIOXY verschlafen/ADEIPT verschlagen/ADEIPTW verschlammen/DIOXY verschlampen/DIOXY verschlechtern/DIOXY verschleiern/DIOXY verschleifen/DIOXY verschleißen/DIOXY verschleppen/DIOXY verschleudern/DIOXY verschließen/BDIX verschlimmern/DIOXY verschlossen/AEPTWX verschlüsseln/DIOXY verschlucken/DIOXY verschlungen/AEPT verschmähen/DIOXY verschmachten/DIOXY verschmerzen/BDIOXY verschmieren/DIOXY verschmitzt/AEPT verschmolzen/AEPTWX verschmutzen/DIOXY verschnaufen/DIOXY verschneit/AEPT verschnitten/AEPTWX verschnörkelt/AEPT verschnüren/DIOXY verschnupfen/DIOXY verschönern/DIOXY verschoben/AEPTWX verschollen/AEPT verschonen/DIOXY verschossen/AEPTWX verschränken/DIOXY verschrauben/DIOXY verschrecken/DIOXY verschrieben/AEPTWX verschrieen/AEPTWX verschroben/AEPT verschrotten/DIOXY verschrumpeln/DIOWXY verschüchtern/DIOXY verschütten/DIOXY verschulden/DIOXY verschwägert/AEPT verschweißen/IOWY verschwenden/DIOXY verschwenderisch/AEPT verschwiegen/AEPTWX verschwistert/AEPT verschwitzen/DIOXY verschwörerisch/AEPT verschwollen/AEPT verschwommen/AEPT verschworen/AEPTWX verschwunden/AEPT versehen/ADEILPT versehren/DIOXY verselbständigen/IOXY verselbstständigen/IOXY versenden/DIOXY versengen/DIOXY versenken/DIOXY versessen/AEPT versetzen/DIOXY versetzungswirksam/AEPT verseuchen/DIOXY versichern/DIOXY versicherungsmathematisch/AEPT versicherungspflichtig/AEPT versicherungstechnisch/AEPT versickert/AEPT versiegeln/DIOXY versiegen/DIOXY versieht/X versiert/AEPT versilbern/DIOXY versinnbildlichen/DIOXY versklaven/DIOXY versnobt/AEPT versöhnbar/AEPTU versöhnen/BDIOXY versöhnlich/AEPTU versoffen/AEPTWX versonnen/AEPT versorgen/DIOXY verspäten/DIOXY verspannen/DIOWXY verspeisen/DIOXY verspekulieren/DIOXY versperren/DIOWXY verspielen/DIOXY verspinnen/BDIX versponnen/AEPT verspotten/DIOXY versprengen/DIOXY verspritzen/DIOXY versprochen/AEPT versprühen/DIOXY verspüren/DIOXY verstädtert/AEPT verständig/ACEPTZ verständigen/DIOWXY verständlich/ACEPTU verständlicherweise/U verständnisinnig/AEPT verständnislos/AEPT verständnisvoll/ACEPT verstärken/DIOXY verstaatlichen/DIOXY verstandene/ANRSU verstauben/DIOXY verstauchen/DIOXY verstauen/DIOXY versteckt/ACEPTX versteifen/DIOXY versteigern/DIOXY versteinern/DIOXY verstellen/BDIOWXY versteuern/BDIOXY verstiegen/AEPTWX verstimmen/DIOXY verstören/DIOXY verstockt/AEPT verstohlen/AEPT verstopfen/DIOXY verstorben/AEPT verstoßen/ADEIPTW verstreben/DIOXY verstreuen/DIOXY verstrichen/AEPTWX verstrickt/ACEPTX verstümmeln/DIOXY verstummen/DIOXY versündigen/DIOXY versüßen/DIOXY versuchen/DIOWXY versuchsweise versumpfen/DIOXY versunken/AEPT versus vertagen/DIOXY vertauschen/BDIOXY verteidigen/DIOXY verteilen/BDIOWXY verteuern/DIOXY verteufeln/DIOXY vertiefen/DIOXY vertikal/AEPT vertilgen/DIOXY vertippen/DIOXY vertonen/DIOXY verträglich/AEPTU verträgt/X verträumen/DIOXY vertrackt/AEPT vertraglich/AEPT vertragsbrüchig/AEPT vertragschließend/AEPT vertragsgemäß/AEPT vertragslos/AEPT vertragsmäßig/AEPT vertragstreu/AEPT vertragswidrig/AEPT vertrauenerweckend/AEPT vertrauensbildend/AEPT vertrauensselig/ACEPT vertrauensvoll/AEPT vertrauenswürdig/AEPT vertrauert/AEPT vertraut/ACEPTWX vertretbar/AEPTU vertreten/ABDEIPT vertretungsberechtigt/AEPT vertrieben/AEPTWX vertrödeln/DIOXY vertrösten/DIOXY vertrocknen/DIOXY vertrotteln/DIXY vertrunken/AEPT vertuschen/DIOXY verübeln/DIOXY verüben/DIOXY verunglimpfen/DIOXY verunglücken/DIOXY verunreinigen/DIOXY verunsichern/DIOXY verunstalten/DIOXY veruntreuen/DIOXY verursachen/DIOXY verurteilen/DIOXY vervielfältigen/DIOXY vervielfachen/IOXY vervierfachen/DIOXY vervollkommnen/DIOXY vervollständigen/DIOXY verwässern/DIOXY verwachsen/ADEIPT verwackelt/AEPT verwahren/DIOXY verwahrlosen/DIOXY verwaisen/DIOXY verwalten/DIOXY verwaltungsintern/AEPT verwaltungstechnisch/AEPT verwandeln/DIOXY verwandt/ACEPT verwandtschaftlich/AEPT verwarnen/DIOXY verwaschen/AEPT verwechseln/DIOXY verwegen/ACEPT verwehen/DIOWXY verwehren/DIOXY verweichlichen/DIOXY verweigern/DIOXY verweilen/DIOXY verweint/AEPT verwelken/DIOXY verweltlichen/DIOXY verwenden/BDIOXY verwendungsfähig/AEPT verwerflich/ACEPT verwertbar/AEPTU verwerten/BDIOXY verwesen/DIOXY verweslich/AEPT verwetten/DIOXY verwickeln/DIOXY verwiesen/AEPTWX verwildern/DIOXY verwinkelt/AEPT verwirken/DIOXY verwirklichen/DIOXY verwirren/DIOXY verwirtschaften/DIOXY verwischen/DIOXY verwittern/DIOXY verwitwen/DIOXY verwöhnen/DIOXY verwöhnt/ACEPTX verwöhnte/ACNRSZ verwoben/AEPT verworfen/AEPT verworren/AEPT verwünschen/DIOXY verwüsten/DIOXY verwundbar/AEPTU verwunden/BDIOXY verwundern/DIOXY verwurstet/AEPT verwurzeln/DIOXY verzählen/DIOWXY verzärteln/DIOXY verzagen/DIOXY verzahnen/DIOWXY verzanken/DIOWXY verzapfen/DIOWXY verzaubern/DIOWXY verzehnfachen/DIOXY verzehren/BDIOWXY verzeichnen/DIOXY verzeih/ELPZ verzeihen/DIWX verzerren/DIOWXY verzetteln/DIOWXY verzichtbar/AEPTU verzichten/BDIOXY verziehen/ADEIPTWX verzieren/DIOWXY verzigfachen/DIOXY verzinken/IOXY verzinnen/IOXY verzinsen/DIOXY verzinslich/AEPT verzögern/DIOWXY verzogen/AEPTWX verzollen/BDIOXY verzücken/DIOWXY verzuckern/DIOXY verzweifeln/DIOWXY verzweigen/DIOXY verzwickt/AEPT vespern/DIXY vgl vgl. via vibrieren/DIXY viehisch/AEPT viel/AEPT vieladerig/AEPT vieldeutig/AEPT vielerlei vielerorts vielfältig/ACEPT vielfach/AEPT vielfarbig/AEPT vielgestaltig/AEPT vieljährig/AEPT vielleicht vielmalig/AEPT vielmals vielmehr vielschichtig/AEPT vielseitig/ACEPT vielsilbig/AEPT vielstimmig/AEPT vielzellig/AEPT vieraderig/AEPT vierbeinig/AEPT vierblätterig/AEPT vierdimensional/AEPT viereckig/AEPT viereinhalb vierfach/AEPT vierfarbig/AEPT vierfüßig/AEPT vierhändig/AEPT vierhundert vierjährig/AEPT vierkantig/AEPT vierköpfig/AEPT viermal viermalig/AEPT viermonatig/AEPT viermotorig/AEPT vierpolig/AEPT vierräderig/AEPT vierschrötig/AEPT vierseitig/AEPT viersilbig/AEPT vierspännig/AEPT vierstellig/AEPT vierstöckig/AEPT vierstündig/AEPT viert/AEPTW viertägig/AEPT viertausend vierteilen/DIXY viertel vierteljährig/AEPT vierteljährlich/AEPT viertelstündlich/AEPT vierten/SW vierundachtzig vierundachtzigste/ANRS vierunddreißig vierunddreißigste/ANRS vierundfünfzig vierundfünfzigste/ANRS vierundneunzig vierundneunzigste/ANRS vierundsechzig vierundsechzigste/ANRS vierundsiebzig vierundsiebzigste/ANRS vierundvierzig vierundvierzigste/ANRS vierundzwanzig vierwöchig/AEPT vierzehn vierzehntägig/AEPT vierzehnte/ANRS vierzig/R vierzigjährig/AEPT vierzigste/ANRS violett/AEPT virtuell/AEPT virtuos/ACEPTU virulent/ACEPT visieren/DIOXY visitieren/DIOXY visualisieren/DIOXY visuell/AEPT vital/ACEPT vitaminarm/AEPT vitaminhaltig/AEPT vitaminisieren/DIOXY vitaminreich/ACEPT vivendi vögeln/DIWXY vögelt/EGPWX völkerrechtlich/AEPT völkerrechtswidrig/AEPT völlig/AEPT vogelähnlich/AEPT voilà volatil/ACEPT volkreich/AEPT volkstümlich/AEPT volksverdummte/ANRS volkswirtschaftlich/AEPT voll/ACEPT vollamtlich/AEPT vollauf vollautomatisch/AEPT vollbeschäftigt/AEPT vollbesetzt/AEPT vollblütig/AEPT vollbracht/AEPT vollbrachte/ANRSZ vollbringen/DIX vollbusig/AEPT vollenden/DIOXY vollends vollfinanziert/AEPT vollführen/DIOXY vollgefüllt/AEPT vollgepfropft/AEPT vollgeschrieben/AEPT vollgetankt/AEPT vollgültig/AEPT volljährig/AEPT vollkommen/AEPTU vollmundig/AEPT vollschlank/AEPT vollständig/AEPTU vollstrecken/BDIOXY vollsynthetisch/AEPT vollwertig/AEPT vollzählig/AEPT vollziehen/DIX vollzogen/AEPTWX vom von voneinander vonnöten vonseiten vonstatten vor/N vorab vorahnen/DIXY voran voranbringen/DIX vorangebracht vorangegangen/AEPT vorangehen/DIX vorangekommen/AEPT vorangestellt/AEPT vorangetrieben vorangewählt/AEPT vorankommen/DIX voranschreiten/DIX voranstellen/DIXY vorantreiben/DIX vorantrieb/EPZ voranzubringen voranzugehen voranzukommen voranzutreiben/D vorarbeiten/DIXY voraus vorausbedingt/AEPT vorausberechenbar/AEPT vorausberechnen/DIOXY vorausbestellen/DIOXY vorausbestimmen/BDIOXY vorausbezahlen/DIOXY vorausblicken/DIXY vorausdatieren/DIOXY vorausdenken/DIX vorauseilen/DIXY vorausgeahnt/AEPT vorausgedacht/AEPT vorausgeeilt/AEPT vorausgegangen/AEPT vorausgehen/DIX vorausgesagt/AEPT vorausgeschätzt/AEPT vorausgeschickt/AEPT vorausgesehen/AEPT vorausgesetzt/AEPT vorausgewählt/AEPT vorausging/PZ vorausplanen/DIXY voraussagen/BDIXY vorausschauen/DIXY voraussehen/BDI voraussetzen/DIXY voraussichtlich/AEPT vorauszuahnen vorauszuberechnen vorauszusagen/D vorauszusehen/D vorbedruckt/AEPT vorbehältst/WX vorbehalten/AEPT vorbehaltlich/AEPT vorbehaltlos/AEPT vorbei vorbeifährt/X vorbeifahren/DI vorbeiflimmernd/AEPT vorbeiführen/DIXY vorbeigefahren/AEPT vorbeigegangen/AEPT vorbeigehen/DIX vorbeigekommen vorbeigeredet vorbeigeschossen/AEPT vorbeiging/EPZ vorbeihuschen/DIXY vorbeikommen/DIX vorbeilassen/DI vorbeileben/DIXY vorbeimarschieren/IXY vorbeireden/DIXY vorbeischicken/DIXY vorbeischießen/DIX vorbeiziehen/DIX vorbeizog/PZ vorbeizukommen vorbeizumanövrieren vorbeizuziehen vorbelastet/AEPT vorbelegt/AEPT vorbenannt/AEPT vorbereiten/DIOXY vorberuflich/AEPT vorbesetzt/AEPT vorbestellen/DIOXY vorbestimmt/AEPT vorbestraft/AEPT vorbeugen/DIXY vorbildlich/AEPT vorbringen/DIX vorbuchstabieren/DIOXY vordatieren/DIOXY vordefinieren/DIOXY vordem vordere/ANRS vordergründig/AEPT vorderste/ANRS vordrängen/DIXY vordrang/PZp vordringen/DIX vordringlich/ACEPT vordrücken/DIXY vorehelich/AEPT voreilen/DIXY voreilig/AEPT voreinander voreingenommen/AEPTU voreingestellt/AEPT voreinstellen/DIXY vorenthältst/WX vorenthalten/ADEIPT vorentscheiden/DIX vorerst vorerwähnt/AEPT vorexerzieren/DIOXY vorfabrizieren/DIOXY vorfahren/DI vorfinden/DIX vorformatieren/DIOXY vorführen/DIXY vorgab/PZ vorgaukeln/DIXY vorgeahnt/AEPT vorgearbeitet vorgeben/BDI vorgebetet/AEPT vorgebeugt/AEPT vorgebildet/AEPT vorgeblich/AEPT vorgebracht/AEPT vorgedrängt/AEPT vorgedruckt/AEPT vorgedrungen/AEPT vorgefahren/AEPT vorgefallen/AEPT vorgefasst/AEPT vorgefertigt/AEPT vorgeformt/AEPT vorgeführt/AEPT vorgefunden/AEPT vorgegangen vorgegaukelt/AEPT vorgegeben/AEPT vorgegriffen/AEPT vorgehabt/AEPT vorgehalten/AEPT vorgehen/DIX vorgeherrscht vorgekaut/AEPT vorgekommen/AEPT vorgelagert/AEPT vorgelassen/AEPT vorgelegen/AEOPT vorgelegt/AEPT vorgelesen/AEPT vorgelogen/AEPT vorgemacht/AEPT vorgemerkt/AEPT vorgenannt/AEPT vorgenommen/AEPT vorgerechnet/AEPT vorgeredet/AEPT vorgerichtet vorgerückt/AEPT vorgesagt/AEPT vorgeschlagen/AEPT vorgeschoben/AEPT vorgeschossen/AEPT vorgeschrieben/AEPT vorgeschützt/AEPT vorgeschwindelt/AEPT vorgesehen/AEPT vorgesetzt/AEPT vorgesorgt/AEPT vorgespannt/AEPT vorgespiegelt/AEPT vorgespielt/AEPT vorgestanden vorgesteckt/AEPT vorgestellt/AEPT vorgestern vorgestoßen/AEPT vorgestreckt/AEPT vorgestrig/AEPT vorgestürmt vorgesungen/AEPT vorgetäuscht/AEPT vorgetanzt/AEPT vorgetragen/AEPT vorgetreten/AEPT vorgewählt/AEPT vorgewärmt/AEPT vorgewiesen/AEPT vorgeworfen/AEPT vorgezeichnet/AEPT vorgezeigt/AEPT vorgezogen/AEPT vorgibt/X vorging/EPZ vorgreifen/DIX vorhältst/WX vorhaben/I vorhalten/DI vorhanden/AEPT vorhat/X vorher vorherbestellen/DIOXY vorherbestimmen/DIOXY vorhergegangen/AEPT vorhergehen/DIX vorhergesagt/AEPT vorhergesehen/AEPTU vorherig/AEPT vorherrschen/DIXY vorhersagen/BDIXY vorhersehbar/AEPTU vorhersehen/BDI vorherzusehen/D vorhin vorholen/DIXY vorig/AEPT vorindustriell/AEPT vorinitialisieren/DIOXY vorinstalliert/AEPT vorjährig/AEPT vorkauen/DIXY vorknöpfen/DIXY vorkommen/DIX vorkonfigurieren/DIOXY vorl vorl. vorlädt/X vorläufig/AEPT vorladen/DI vorlag/PZ vorlas/PZq vorlassen/DI vorlaut/AEPT vorlegen/DIXY vorlesen/DI vorlesungsfrei/AEPT vorletzte/ANRS vorlieb vorliegen/DIX vorlügen/DIX vorm vorm. vormachen/DIXY vormalig/AEPT vormals vormenschlich/AEPT vormerken/DIXY vormittäglich/AEPT vormodern/AEPT vormontieren/DIOXY vormundschaftlich/AEPT vorn/E vornahm/PZ vornehm/ACELPT vorneweg vornherein vornimmt/X vornweg vorolympisch/AEPT vorperforiert/AEPT vorprellen/DIXY vorprogrammiert/AEPT vorrätig/AEPT vorrangig/AEPT vorrechnen/DIXY vorrechtlich/AEPT vorrichten/DIXY vorrücken/DIXY vorsätzlich/AEPT vorsah/PZ vorschalten/DIXY vorschieben/DIX vorschießen/DIX vorschlägt/X vorschlagen/DI vorschlug/PZ vorschnell/AEPT vorschreiben/DIX vorschriftsmäßig/AEPTU vorschriftswidrig/AEPT vorschützen/DIXY vorschweben/DIXY vorschwindeln/DIXY vorsehen/DI vorsetzen/DIXY vorsichtig/ACEPTU vorsichtshalber vorsieht/X vorsingen/DIX vorsintflutlich/AEPT vorsitzen/DIX vorsorgen/DIXY vorsorglich/AEPT vorspalten/DIXY vorspannen/DIXY vorspiegeln/DIXY vorspielen/DIX vorsprechen/DI vorspringen/DIX vorstädtisch/AEPT vorstehen/DIX vorstellbar/AEPTU vorstellen/BDIXY vorstoßen/DI vorstürmen/DIXY vortäuschen/DIXY vorteilhaft/ACEPTU vortippen/DIXY vorträgt/X vortragen/DI vortrefflich/AEPT vortreten/DI vorüber vorübergehen/DIX vorüberziehen/DIX vorurteilsfrei/AEPT vorurteilslos/AEPT vorverkauft/AEPT vorverlegen/DIOXY vorverstärken/DIOXY vorvorgestern vorvorig/AEPT vorwählen/DIXY vorwärmen/DIXY vorwärts vorwarf/PZ vorweg vorweggenommen/AEPT vorwegnahm/PZ vorwegzunehmen/D vorweisen/DIX vorwerfen/DI vorwiegend vorwirft/X vorwurfsvoll/AEPT vorzeichenrichtig/AEPT vorzeigen/DIXY vorzeiten vorzeitig/AEPT vorziehen/DIX vorzüglich/AEPT vorzubereiten/D vorzubesetzen vorzubeten/D vorzubeugen/D vorzubringen/D vorzudringen vorzufinden/D vorzuführen/D vorzugeben/D vorzugehen vorzugsweise vorzulegen/D vorzulesen/D vorzuliegen/D vorzumerken/D vorzunehmen/D vorzuschieben/D vorzuschlagen/D vorzuschreiben/D vorzusehen/D vorzusorgen vorzusprechen/D vorzustellen/D vorzustoßen vorzutäuschen/D vorzutragen/D vorzuweisen/D vorzuwerfen/D vorzuzeigen/D vorzuziehen/D votieren/DIWXY vs vs. vulgär/ACEPT vulkanisch/AEPT wächst/V wägbar/ACEPTU wägen/BDIX wählbar/ACEPT wählen/BDIXY wählerisch/ACEPT wählfähig/AEPT wähnen/DIXY währen/DGIXY währenddessen währungspolitisch/AEPT wälzen/DIXY wären/IX wärmebeständig/ACEPT wärmedämmenden/AEPT wärmen/DIXY wärmer/AEPT wärmetechnisch/AEPT wärmst/AEPT wäscht/X wässerig/ACEPT wässern/DIWXY waagerecht/ACEPT waagrecht/ACEPT wabblig/ACEPT wach/ACEPT wachen/DIWXY wachgerüttelt/AEPT wachgerufen/AEPT wachrütteln/DIXY wachrufen/DIX wachsam/ACEPT wachsartig/AEPT wachsen/DGIO wachsend/AEPTV wachst/AEGPTW wackeln/DIXY wacker/ACEPT wacklig/ACEPT waffenfähig/ACEPT waffenlos/ACEPT waffnen/DIXY wagemutig/ACEPT wagen/DIXY waghalsig/ACEPT wahlberechtigt/AEPT wahlfähig/ACEPT wahlfrei/ACEPT wahllos/ACEPT wahlweise wahnsinnig/ACEPT wahnwitzig/ACEPT wahr/ACEGLPTU wahrgehabt/AEPT wahrgenommen/AEPT wahrgesagt/AEPT wahrhaben/D wahrhaft/ACEPT wahrhaftig/ACEPT wahrheitsgemäß/ACEPT wahrheitsgetreu/ACEPT wahrheitsliebend/ACEPT wahrheitswidrig/ACEPT wahrnahm/PZ wahrnehmbar/ACEPT wahrnehmen/BDI wahrnimmt/X wahrsagen/DIXY wahrscheinlich/ACEPTU wahrscheinlichkeitstheoretisch/AEPT wahrzunehmen/D waldärmer/AEPT waldärmste/ANRS waldarm/AEPT waldig/ACEPT waldreich/ACEPT wallen/DIXY wallfahren/DI wallgefahren/AEPT wallonisch/AEPT walten/DIVXY waltet/EGPVWX walzen/DIXY walzenförmig/ACEPT wand/PZ wandelbar/ACEPTU wandeln/BDIVXY wandelt/EGPVX wandelte/GNVZ wandelten/GIVWX wandern/DIXY wandte/GNZ wankelmütig/ACEPT wanken/DIXY wann/G wappnen/DIXY warb/PZ ward waren/WXY warf/PVZ warm/AEPT warmgehalten/AEPT warmhalten/D warmherzig/ACEPT warnen/DIVXY warnt/EGPVX warnte/GNVZ warnten/GIVWX warten/BDIWXY wartungsfrei/AEPT wartungsfreundlich/AEPT warum warzig/AEPT was waschecht/AEPT waschen/BDGI wasserärmer/AEPT wasserärmste/ANRS wasserabstoßend/AEPT wasserarm/AEPT wasserbeständig/ACEPT wasserdampfgesättigt/AEPT wasserdicht/AEPT wasserfest/AEPT wasserhaltig/AEPT wasserlöslich/ACEPT wassern/DIXY wasserreich/AEPT wasserscheu/AEPT wasserstoffhaltig/ACEPT wassersüchtig/AEPT waten/DIXY watscheln/DIXY wattieren/DIOXY weben/DIXY wechselfähig/AEPT wechselhaft/ACEPT wechseln/BDIVXY wechselseitig/AEPT wechselt/EGPVX wechselte/GNVZ wechselten/GIVWX wechselvoll/ACEPT wechselweise/ANRS wechselwirken/DIXY wecken/DIXY wedeln/DIXY wedelt/EGPX weder weg/P wegbeförderte wegbekommen/AEPT wegbereiten/D wegbewegen/DIXY wegblasen/DIX wegbleiben/DIX wegblicken/DIXY wegbringen/DIX wegdiskutieren/DIOXY wegfährt/X wegfahren/DI wegfallen/DI wegfangen/DI wegfegen/DIXY wegfiel/EPZ wegfischen/DIXY wegföhnen/DIXY wegführen/DIXY weggeben/DI weggeblasen/AEPT weggeblickt weggeblieben/AEPT weggebracht/AEPT weggebrochen/AEPT weggedrückt/AEPT weggefahren/AEPT weggefallen/AEPT weggefangen/AEPT weggefegt/AEPT weggefischt/AEPT weggeführt/AEPT weggegangen/AEPT weggegeben/AEPT weggehen/DIX weggeholt/AEPT weggejagt/AEPT weggekommen/AEPT weggelassen/AEPT weggelaufen/AEPT weggelegt/AEPT weggemacht/AEPT weggemittelt/AEPT weggemusst weggenommen/AEPT weggepackt/AEPT weggeputzt/AEPT weggeräumt/AEPT weggerafft/AEPT weggeredet weggereist/AEPT weggerissen/AEPT weggerückt/AEPT weggeschafft/AEPT weggeschaltet weggeschert weggeschickt/AEPT weggeschleppt/AEPT weggeschlichen/AEPT weggeschliffen/AEPT weggeschlossen/AEPT weggeschmissen/AEPT weggeschnappt/AEPT weggeschnitten/AEPT weggeschrieben/AEPT weggesehen weggesetzt/AEPT weggestorben/AEPT weggestrichen/AEPT weggetan/AEPT weggetragen/AEPT weggetreten/AEPT weggewendet/AEPT weggewischt/AEPT weggeworfen/AEPT weggezaubert/AEPT weggezogen/AEPT wegging/EPZ weghältst/WX weghalten/DI weghelfen/DI wegholen/DIXY wegjagen/DIXY wegkommen/DIX weglassen/BDI weglaufen/DI weglegen/DIXY wegmachen/DIXY wegmüssen/D wegnehmen/DI wegpacken/DIXY wegputzen/DIXY wegräumen/DIXY wegraffen/DIXY wegreden wegreißen/DIX wegreisen/DIXY wegrücken/DIXY wegrutschen/DIXY wegschaffen/DIXY wegscheren/DIXY wegschicken/DIXY wegschleichen/DIX wegschleppen/DIXY wegschlich/PZ wegschließen/DIX wegschloss/PZ wegschmeißen/DIX wegschnappen/DIXY wegschneiden/DIX wegschreiben/DIX wegsehen/DI wegsetzen/DIXY wegspeichern/DIXY wegsterben/DI wegstreichen/DIX wegtragen/I wegtreten/DI wegtuend/AEPT wegtun/IX wegweisend/AEPT wegwenden/DIXY wegwerfen/DI wegwischen/DIXY wegzaubern/DIXY wegziehen/DIX wegzudenken/D wegzudiskutieren/D wegzufahren wegzugehen wegzulassen/D wegzunehmen/D wegzutragen/D wegzuziehen wehen/DIVWXY wehklagen/DIXY wehleidig/ACEPT wehmütig/ACEPT wehren/DIVXY wehrfähig/ACEPT wehrlos/ACEPT wehrpflichtig/AEPT wehrt/EGPVX weht/EGPVWX wehte/GNVZ wehten/GIVWX wehtun/IX weibchenhaft/AEPT weiblich/ACEPT weich/ACELPT weichen/DIWXY weichgelötet/AEPT weichherzig/ACEPT weichlich/ACEPT weichlöten/DIXY weiden/DIXY weidgerecht/ACEPT weidlich/AEPT weidmännisch/AEPT weigern/DIVXY weigert/EGPVX weihen/DIWXY weihevoll/AEPT weihnachtlich/ACEPT weiland weilen/DIWXY weilt/EGPWX weinen/DIWXY weinerlich/AEPT weinrot/AEPT weint/EGPWX weiß/AELPTZ weißgelb/AEPT weißgewaschen/AEPT weißgrau/AEPT weißhäutig/AEPT weißhaarig/ACEPT weißwaschen/DI weise/ACNRS weisen/DIVX weisgemacht weisgesagt/AEPT weislich/AEPT weismachen/DIXY weissagen/DIXY weisungsgemäß/AEPT weiszumachen weit/ACEPTX weitab weitaus weitblickend/ACEPT weite/ACNRSZ weiten/IWXY weiterarbeiten/DIXY weiterausgebaut/AEPT weiterbearbeitet/AEPT weiterbefördern/DIOXY weiterbelastet/AEPT weiterbestanden/AEPT weiterbestehen/DIX weiterbewegen/DIXY weiterbilden/DIXY weiterblättern/DIXY weiterbringen/DIX weiterdifferenziert/AEPT weiterdrucken/DIXY weiterentwickeln/DIXY weitererzählen/DIOXY weiterfährt/X weiterfahren/DI weiterfließen/DIX weiterführen/DIXY weitergab/PZ weitergearbeitet weitergeben/DI weitergebracht/AEPT weitergedruckt weitergefahren weitergeflogen weitergeführt/AEPT weitergegeben/AEPT weitergehen/DIX weitergekommen/AEPT weitergelebt weitergeleitet/AEPT weitergemacht weitergereicht/AEPT weitergesagt/AEPT weitergeschoben/AEPT weitergesendet weitergespielt weitergestrickt weiterging/EPZ weiterhelfen/DI weiterhilft/X weiterhin weiterkönnen weiterkommen/DIX weiterlaufen/DI weiterleben/DIXY weiterleiten/DIXY weitermachen/DIXY weiterreichen/DIXY weiterreisen/DIXY weitersagen/DIXY weitersehen weiterspielen/DIXY weiterspringen/DIX weitertragen/DI weiterverarbeiten/DIOXY weiterverbreiten/DIOXY weiterverfolgen/DIOXY weiterverkaufen/DIOXY weiterversichert weiterversucht weiterverweisen/DIX weiterverwenden/BDIOXY weiterwachsen/DI weiterzuarbeiten weiterzubilden/D weiterzuführen/D weiterzugeben/D weiterzulaufen weiterzuleiten/D weiterzumachen/D weiterzurüsten weiterzuschicken/D weiterzuschreiben/D weiterzuverfolgen/D weitestgehend/AEPT weitflächig/AEPT weitgehend/ACEPT weitgreifend/AEPT weither weitherzig/ACEPT weithin weitläufig/ACEPT weitmaschig/ACEPT weiträumig/AEPT weitreichend/AEPT weitschweifig/ACEPT weitsichtig/ACEPT weittragend/AEPT weitverzweigt/AEPT welch/AEPT welk/ACEPT welken/DIWXY welkte/GNVZ welkten/GIVWX wellen/DIXY wellenförmig/ACEPT wellig/AEPT weltabgeschieden/AEPT weltabgewandt/ACEPT weltanschaulich/AEPT weltbeherrschend/AEPT weltbekannt/AEPT weltberühmt/AEPT weltbeste/ANRS weltbewegend/ACEPT welterfahren/ACEPT welterschütternd/AEPT weltfremd/AEPT weltgeschichtlich/AEPT weltgewandt/ACEPT weltklug/AEPT weltlich/ACEPT weltmännisch/ACEPT weltoffen/AEPT weltpolitisch/AEPT weltumfassend/AEPT weltumkrempelnd/AEPT weltumspannend/AEPT weltweit/AEPT weltwirtschaftlich/AEPT wem wen/N wenden/DIVXY wendet/EGPVWX wendete/GNVZ wendeten/GIVWX wendig/ACEPT wenig/ACEPT wenigsten/S wenngleich werbemäßig/AEGPT werben/DI werbewirksam/ACEPT werblich/AEGPT werden/DI werfen/DIV werkeln/DIXY werken/DIXY werksseitig/AEPT werktätig/AEPT werktags wert/ACEPTW wertbeständig/AEPT werte/ACNRSZ werten/DIWXY werterhaltend/AEPT wertet/EGPVWX wertete/GNVZ werteten/GIVWX wertfrei/AEPT wertgeschätzt/AEPT wertlos/ACEPT wertmäßig/AEPT wertneutral/AEPT wertschätzen/DIXY wertvoll/ACEPT wesenlos/ACEPT wesensfremd/AEPT wesensgleich/AEPT wesentlich/ACEPTU weshalb wessen westdeutsch/AEPT westeuropäisch/AEPT westfälisch/AEPT westlich/ACEPT westwärts weswegen wettbewerblich/AEPT wettbewerbsfähig/AEPT wettbewerbsneutral/AEPT wettbewerbsorientiert/AEPT wetteifern/DIXY wetten/DIWXY wetterbestimmend/AEPT wetterfest/ACEPT wetterfühlig/ACEPT wetterhärter/AEPT wetterhärteste/ANRS wetterhart/AEPT wettern/DIXY wetterwendisch/ACEPT wettet/EGPVWX wettete/GNVZ wetteten/GIVWX wettgeeifert wettmachen/DIXY wettrüsten/DIXY wetzen/DIXY wg wg. wich/EPSZ wichsen/DIWXY wichtig/ACEGPTU wickeln/DIVXY wickelt/EGPVX wickelte/GNVZ wickelten/GIVWX widerborstig/ACEPT widerfährt widerfahren/ADEIPT widerfuhr widergehallt/AEPT widergespiegelt/AEPT widerhallen/DIXY widerlegbar/ACEPTU widerlegen/BDIOXY widerlegt/ACEPTX widerlich/ACEPT widern/DIWXY widernatürlich/ACEPT widerrätst/WX widerraten/ADEIPT widerrechtlich/ACEPT widerrief/EPZ widerriet/PZ widerrufen/ADEIPTX widerruflich/AEPTU widersetzen/DIXY widersetzlich/AEPT widersinnig/ACEPT widerspenstig/ACEPT widerspiegeln/DIXY widerspräche/NZ widersprach/PZ widersprechen/DI widerspricht/X widersprochen/AEPTU widersprüchlich/ACEPT widerspruchsfrei/AEPT widerspruchslos/ACEPT widerspruchsvoll/ACEPT widerstand/PZ widerstandsfähig/ACEPT widerstandslos/ACEPT widerstehen/DIX widerstreben/DIXY widerstrebend/ACEPT widerstreiten/DIX widerwärtig/ACEPT widerwillig/ACEPT widerzuspiegeln/D widmen/DIXY widrig/ACEPT widrigenfalls wie/S wieder wiederangeknüpft/AEPT wiederangestellt/AEPT wiederanknüpfen/DIXY wiederanstellen/DIXY wiederauferstanden/AEPT wiederaufgebaut/AEPT wiederaufgeblüht/AEPT wiederaufgekommen/AEPT wiederaufgelebt/AEPT wiederaufgenommen/AEPT wiederaufgetreten/AEPT wiederaufkommen/DIX wiederaufladen/BDI wiederaufleben/DIXY wiederaufnehmen/DI wiederauftreten/DI wiederbekommen/DIX wiederbeleben/DIOXY wiederbewaffnen/DIOXY wiederbringen/DIX wiedereinbringen/DIX wiedereinfinden/DIX wiedereinführen/DIXY wiedereingebracht/AEPT wiedereingeführt/AEPT wiedereingefunden/AEPT wiedereingelöst/AEPT wiedereingenommen/AEPT wiedereingesetzt/AEPT wiedereingestellt/AEPT wiedereingliedern/DIXY wiedereinlösen/DIXY wiedereinmal wiedereinnehmen/DI wiedereinsetzen/DIXY wiedereinstellen/DIXY wiederergreifen/DIX wiederergriffen/AEPT wiedererkannt/AEPT wiedererkennen/DIX wiedererlangen/DIOXY wiedererstatten/DIOXY wiedererstehen/DIX wiedererzählen/DIOXY wiederfand/PZ wiederfinden/DIX wiedergab/PZ wiedergeben/DI wiedergebracht/AEPT wiedergefunden/AEPT wiedergegeben/AEPT wiedergekäut/AEPT wiedergekehrt/AEPT wiedergekommen/AEPT wiedergenesen/DIX wiedergesehen/AEPT wiedergewählt/AEPT wiedergewinnen/DIX wiedergewonnen/AEPT wiedergibt/X wiedergutgemacht/AEPT wiedergutmachen/DIXY wiedergutzumachen/D wiederhergestellt/AEPT wiederherstellbar/AEPTU wiederherstellen/BDIXY wiederherzustellen/D wiederholbar/AEPTU wiederholen/BDIOXY wiederkäuen/DIXY wiederkehren/DIXY wiederkommen/DIX wiederkriegen/DIXY wiedermal wiedersehen/DI wiedertreffen/DI wiederum wiedervereinigen/DIOXY wiedervereint/AEPT wiederverheiraten/DIOXY wiederverwenden/BIOXY wiederwählen/BDIXY wiederzufinden/D wiederzugeben/D wiederzugelassen/AEPT wiederzukommen wiederzulassen/D wiederzusehen wiederzuvereinigen/D wiederzuverwenden/D wiegen/DIXY wiehern/DIXY wienerisch/ACEPT wies/PVZ wieselflink/AEPT wiesen/GVWX wieso wievielerlei wievielt/AEPT wieweit wild/ACEPRT wildern/DIWXY wildfremd/AEPT wildledern/AEPT willen/LSW willenlos/ACEPT willensschwächer/AEPT willensschwächste/ANRS willensschwach/AEPT willensstärker/AEPT willensstärkste/ANRS willensstark/AEPT willig/ACEPTZ willigen/IWXY willkommen/ACEPTU willkürlich/ACEPTU willst/W wimmeln/DIXY wimmern/DIXY windelweich/AEPT winden/DIVX windgeschützt/ACEPT windig/ACEPT windschief/ACEPT windschlüpfig/ACEPT windstill/AEPT winkelförmig/AEPT winken/DIXY winklig/AEPT winseln/DIXY winterfest/AEPT winterlich/ACEPT winzig/ACEPT wippen/DIXY wirbellos/AEPT wirbeln/DIXY wirbelt/EGPX wirbt/X wird wirft/VWX wirken/DIVXY wirklich/ACEPT wirklichkeitsfremd/ACEPT wirklichkeitsgetreu/AEPT wirklichkeitsnächste/ANRS wirklichkeitsnäher/AEPT wirklichkeitsnah/AEPT wirksam/ACEPTU wirkt/EGPVX wirkte/GNVZ wirkten/GIVWX wirkungslos/ACEPT wirkungsvoll/ACEPT wirr/ACEPTZ wirren/DIWXY wirst/W wirtlich/ACEPTU wirtschaften/DIVXY wirtschaftet/EGPVWX wirtschaftete/GNVZ wirtschafteten/GIVWX wirtschaftlich/ACEPT wirtschaftspolitisch/AEPT wischen/DIVXY wischfest/AEPT wischt/EGPVX wischte/GNVZ wischten/GIVWX wispern/DIXY wissbegierig/ACEPT wissen/DGIL wissend/ACEPTU wissensbasiert/AEPT wissenschaftlich/ACEPTU wissenschaftstheoretisch/AEPT wissenswert/ACEPT wissentlich/ACEPTU wittern/DIVXY wittert/EGPVX witterte/GNVZ witterten/GIVWX witterungsbeständig/ACEPT witzeln/DIXY witzig/ACEPT wo wöchentlich/AEPT wöge/NZ wölben/DIXY wörtlich/ACEPT woanders wobei wochenlang/AEPT wochentags wochenweise/ANRS wodurch wofern wofür wog/PZ wogegen woher wohin wohingegen wohinter wohl/ACEPT wohlangebracht/ACEPT wohlanständig/ACEPT wohlauf wohlbehalten/ACEPT wohlbeleibt/ACEPT wohlbetucht/AEPT wohldefiniert/AEPT wohlerwogen/AEPT wohlerzogen/ACEPT wohlfeil/ACEPT wohlgefällig/ACEPT wohlgefühlt wohlgemerkt/AEPT wohlgemut wohlgenährt/ACEPT wohlgeplant/AEPT wohlgeraten/ACEPT wohlgesinnt/ACEPT wohlgesittet/ACEPT wohlgesonnen/AEPT wohlgestaltet/ACEPT wohlhabend/ACEPT wohlig/ACEPT wohlklingend/ACEPT wohlmeinend/ACEPT wohlorganisiert/AEPT wohlriechend/ACEPT wohlschmeckend/ACEPT wohltätig/AEPT wohltuend/ACEPT wohltun/IX wohlverdient/ACEPT wohlverstanden/AEPT wohlweislich/ACEPT wohlwollend/AEPT wohnen/DIXY wohnhaft/AEPT wohnlich/ACEPTU wohnungslos/AEPT wohnungspolitisch/AEPT wohnungssuchend/AEPT wolkenlos/ACEPT wolkig/ACEPT wollen/ADEIPTY wollig/ACEPT wollüstig/ACEPT womit womöglich/AEPT wonach wonnetrunken/ACEPT wonnig/ACEPT woran worauf woraufhin woraus worden/G worin wortärmer/AEPT wortärmste/ANRS wortarm/AEPT wortbrüchig/ACEPT wortgetreu/ACEPT wortgewandt/ACEPT wortkarg/ACEPT wortlos/ACEPT wortreich/ACEPT wortweise wortwörtlich/AEPT worüber worum worunter wovon wovor wozu wrang/PZ wringen/DIX wühlen/DIXY wühlerisch/ACEPT wünschen/BDIVXY wünschenswert/ACEPT würde/NZ würdevoll/ACEPT würdig/ACEPTZ würdigen/DIWXY würfelförmig/ACEPT würfeln/DIXY würflig/AEPT würgen/DIXY württembergisch/AEPT würzen/DIXY würzig/ACEPT wüsste/NZ wüst/ACEPT wüste/ACNRSZ wüsten/DIWXY wüten/DIXY wütend/ACEPT wütet/EGPWX wucherhaft/ACEPT wucherisch/ACEPT wuchern/DIXY wuchernd/ACEPT wuchs/PVZ wuchten/DIXY wuchtig/ACEPT wulstig/ACEPT wund/ACEPRT wunderbar/ACEPT wunderbarerweise wunderhübsch/AEPT wunderhübscheste/ANRS wunderlich/ACEPTV wundern/BDIWXY wundernehmen/D wundersam/ACEPT wunderschön/AEPT wundertätig/ACEPT wundervoll/ACEPT wunschgemäß/ACEPT wunschlos/ACEPT wurde/NZ wurmen/DIWXY wurmförmig/ACEPT wurmkrank/AEPT wurmstichig/ACEPT wurmt/EGPWX wursteln/DIXY wurstelnd/ACEPT wurstig/ACEPT wurzeln/DIVXY wurzelt/EGPVX wurzelte/GNVZ wurzelten/GIVWX wusch/PZ wuseln/DIWXY wusste/GNZ wutentbrannt/ACEPT wutschäumend/ACEPT wutschnaubend/ACEPT xerographieren/IOXY xi zäh/AEPT zäher/AEPT zähflüssig/AEPT zählebig/AEPT zählen/BDIVWXY zähmen/BDIXY zähneknirschend/AEPT zärtlich/ACEPT zackig/AEPT zaghaft/AEPT zahlen/BDIWXY zahlenmäßig/AEPT zahlentheoretisch/AEPT zahllos/AEPT zahlreich/ACEPT zahlungsfähig/ACEPT zahlungskräftig/AEPT zahlungsunfähig/ACEPT zahlungsunwillig/AEPT zahm/ACEPT zahnärztlich/AEPT zahnlos/AEPT zanken/DIVWXY zankt/EGPVWX zapfen/DIVWXY zapft/EGPVWX zapfte/GNVZ zapften/GIVWX zappeln/DIWXY zappelt/EGPWX zappenduster zapplig/ACEPT zart/ACEPT zauberhaft/ACEPT zaubern/DIVWXY zaubert/EGPVWX zauberte/GNVZ zauberten/GIVWX zaudern/DIWXY zehnfach/AEPT zehnjährig/AEPT zehnmalig/AEPT zehnprozentig/AEPT zehnt/AEPTW zehntägig/AEPT zehntausend/EP zehntels zehnten/SW zehnwöchig/AEPT zehren/DIVWXY zeichengetreu/AEPT zeichnen/DIVXY zeichnerisch/AEPT zeichnungsberechtigt/AEPT zeigen/DIWXY zeilenweise zeit/L zeitabhängig/AEPT zeitaufwändig/ACEPT zeitaufwendig/ACEPT zeitgemäß/ACEPTU zeitgenössisch/AEPT zeitgerecht/AEPT zeitgeschichtlich/AEPT zeitgleich/AEPT zeitig/AEPTZ zeitkritisch/AEPT zeitlebens zeitlos/AEPT zeitnah/AEPT zeitraubend/AEPT zeitsparend/AEPT zeitunabhängig/AEPT zeitweilig/AEPT zeitweise/ANRS zelebrieren/DIOWXY zellenförmig/AEPT zellstoffhaltig/AEPT zellulär/AEPT zellular/AEPT zelten/DIXY zeltet/EGPWX zementieren/DIOWXY zensieren/DIOWXY zentnerschwer/AEPT zentral/ACEPT zentralamerikanisch/AEPT zentralbeheizt/AEPT zentralisieren/DIOWXY zentralisiert/ACEPTWX zentralisierte/ACNRSZ zentralistisch/AEPT zentrieren/DIOWXY zentrifugal/AEPT zentripetal/AEPT zentrisch/AEPT zerbarst/PZ zerbeißen/DIWX zerbersten/DI zerbirst zerbissen/AEPT zerbombt/AEPT zerborsten/AEPT zerbrach/PZ zerbrechen/DI zerbrechlich/ACEPTU zerbricht/X zerbröckeln/DIOWXY zerbrochen/AEPT zerdeppern/DIOWXY zerdrücken/DIOWXY zerdrückt/ACEPTWX zerdrückte/ACNRSZ zeremoniell/AEPT zeremoniös/ACEPT zerfällt/X zerfahren/ACEPT zerfallen/ACDEIPTW zerfetzen/DIOWXY zerfetzt/ACEPTWX zerfetzte/ACNRSZ zerfiel/EPZ zerflattern/DIXY zerfleischen/DIOWXY zerfließen/DIX zerflossen/AEPTWX zerfressen/ADEIPT zerfrisst/W zergangen/AEPT zergehen/DIWX zerging/EPZ zergliedern/DIOXY zerhacken/DIOWXY zerkauen/DIOWXY zerkleinern/DIOWXY zerklüftet/ACEPT zerknicken/BDIOWXY zerknickt/ACEPTWX zerknirscht/ACEPT zerknittern/DIOWXY zerknittert/ACEPTWX zerknüllen/DIOWXY zerkochen/DIOWXY zerkratzen/DIOWXY zerlässt zerlassen/ADEIPT zerlegen/BDIOWXY zerlesen/AEPT zerließ/PZ zerlumpt/ACEPT zermahlen/ADEIPTWXY zermalmen/DIOWXY zermartern/DIOWXY zermürben/DIOXY zermürbend/ACEPT zernagen/DIOWXY zerpflücken/DIOXY zerplatzen/DIOWXY zerquetschen/DIOWXY zerrann/PZ zerreden/DIOXY zerreiben/DIWX zerreißbar/AEPTU zerreißen/BDIWX zerren/DIVWXY zerrieben/AEIPTWX zerrinnen/DIX zerrissen/AEIPTWX zerronnen/AEPT zerrt/EGPVWX zerrte/GNVZ zerrten/GIVWX zerrütten/DIOXY zersägen/DIOWXY zerschellen/DIOWXY zerschießen/DIWX zerschlägt/X zerschlagen/ADEIPTW zerschlug/PZ zerschmelzen/DIW zerschmettern/DIOWXY zerschmilzt/X zerschmolzen/AEPTWX zerschneiden/DIWX zerschnitt/PZ zerschnitten/AEPTWX zerschossen/AEPTWX zerschrammen/DIOXY zerschrammt/ACEPTX zerschrammte/ACNRSZ zersetzen/DIOWXY zersetzender/AEPT zerspalten/ADEIPTWXY zerspanen/DIOXY zersplittern/DIOWXY zersprang/PZ zersprengen/DIOWXY zerspringen/DIX zersprungen/AEPT zerstäuben/DIOXY zerstach/PZ zerstampfen/DIOWXY zerstechen/DI zersticht/X zerstieben/ADEIPTX zerstieß/EPZ zerstörbar/ACEPTU zerstören/BDIOWXY zerstörerisch/ACEPT zerstößt zerstochen/AEPT zerstoßen/ADEIPTW zerstreiten/DIX zerstreuen/DIOWXY zerstreut/ACEPTWX zerstreute/ACNRSZ zerstritt/PZ zerstritten/AEPTWX zerstückeln/DIOWXY zerteilen/DIOWXY zertifizieren/DIOWXY zertrampeln/DIOWXY zertrat/PZ zertreten/ADEIPT zertrittst/WX zertrümmern/DIOWXY zerwühlen/DIOWXY zerwühlt/ACEPTWX zerwühlte/ACNRSZ zerzausen/DIOXY zerzaust/ACEPT zerzauste/ACNRSZ zeta zetern/DIWXY zetteln/IVWXY zeugen/DIWXY zeugungsfähig/ACEPT zeugungsunfähig/AEPT zickig/AEPT ziegelrot/AEPT ziehen/DIVWX zielbewusst/ACEPT zielen/DIWXY zielgenau/ACEPT zielgerichtet/ACEPT ziellos/ACEPT zielsicher/ACEPT zielstrebig/ACEPT ziemen/DGIXY ziemlich/AEPT zier/ELPVZ zieren/DIVWXY zierlich/ACEPT ziert/EGPVWX zierte/GNVZ zierten/GIVWX ziffrig/AEPT zigste/ANRS zigtausend/E zimmerig/AEPT zimmern/DIWXY zimperlich/ACEPT zinkig/AEPT zinnern/AEPT zinnfarben/AEPT zinnrot/AEPT zinsbringend/ACEPT zinsesverzinst zinsfrei/AEPT zinslos/AEPT zinspflichtig/AEPT zionistisch/AEPT zirka zirkeln/DIXY zirkulieren/DIOXY zirpen/DIXY zischeln/DIXY zischen/DIWXY ziselieren/DIOXY zitieren/DIOXY zitterig/ACEPT zittern/DIWXY zittert/EGPWX zivil/AEPT zivildienstleistend/AEPT zivilisatorisch/AEPT zivilisieren/DIOXY zivilisiert/ACEPTX zivilisierte/ACNRSZ zivilrechtlich/AEPT zöge/NRZ zöger/ELNV zögern/DIVWXY zögernd/ACEPT zögert/EGPVWX zögerte/GNVZ zögerten/GIVWX zöllig/AEPT zog/PVZ zollen/DIVXY zollfrei/AEPT zollpflichtig/AEPT zollt/EGPVX zollte/GNVZ zollten/GIVWX zoologisch/AEPT zoomen/DIWXY zopfig/AEPT zornentbrannt/ACEPT zornfunkelnd/AEPT zornig/ACEPT zotig/AEPT zottig/AEPT züchten/DIXY züchtig/ACEPTZ züchtigen/DIWXY zücken/DIVWXY zückt/EGPVWX zückte/GNVZ zückten/GIVWX zügellos/ACEPT zügeln/DIWXY zügig/AEPT zündeln/DIWXY zündelt/EGPWX zünden/DIWXY zündstoffgeladen/AEPT züngeln/DIXY züngelt/EGPX zürnen/DIXY zu/S zuallererst zuallerletzt zuallermeist zuarbeiten/DIXY zubauen/DIXY zubeißen/DIX zubereiten/DIOXY zubilligen/DIXY zubinden/DIX zubleiben/DIX zublinzeln/DIXY zubringen/DIX zuchtlos/ACEPT zucken/DIWXY zuckerig/ACEPT zuckerkrank/AEPT zuckern/DIVXY zuckersüß/AEPT zuckert/EGPVX zuckerte/GNVZ zuckerten/GIVWX zudecken/DIXY zudem zudrehen/DIXY zudringlich/ACEPT zudrücken/DIXY zudrucken/DIXY zueignen/DIXY zueinander zuerkannt/AEPT zuerkennen/DIX zuerst zufällig/ACEPT zufälligerweise zufällt/X zufallen/DI zufallsbedingt/AEPT zufassen/DIXY zufiel/P zufliegen/DIX zufließen/DIX zuflog/PZ zufloss zuflüstern/DIXY zufolge zufrieden/ACEPTU zufriedenstellend/AEPT zufrieren/DIX zufügen/DIXY zuführen/DIXY zufüllen/DIXY zugänglich/ACEPTU zugab/PZ zugebaut/AEPT zugeben/DI zugebilligt/AEPT zugebissen/AEPT zugeblieben/AEPT zugeblinzelt/AEPT zugebracht/AEPT zugebunden/AEPT zugedämmt/AEPT zugedacht/AEPT zugedeckt/AEPT zugedreht/AEPT zugedrückt/AEPT zugeeignet/AEPT zugeeilt/AEPT zugefallen/AEPT zugefasst/AEPT zugeflogen/AEPT zugeflossen/AEPT zugeflüstert/AEPT zugefroren/AEPT zugefügt/AEPT zugeführt/AEPT zugefüllt/AEPT zugegangen/AEPT zugegeben/AEPT zugegebenermaßen zugegen zugegossen/AEPT zugegriffen zugeguckt zugehängt/AEPT zugehabt/AEPT zugehalten/AEPT zugeheftet/AEPT zugeheilt/AEPT zugehen/DIX zugehören/DIXY zugehörig/AEPT zugejubelt zugekauft/AEPT zugekehrt/AEPT zugeklappt/AEPT zugeklebt/AEPT zugeknallt/AEPT zugeknöpft/AEPT zugeknüpft/AEPT zugekommen/AEPT zugekorkt/AEPT zugelangt zugelassen/AEPT zugelaufen/AEPT zugelegt/AEPT zugeleitet/AEPT zugemacht/AEPT zugemauert/AEPT zugemessen/AEPT zugemutet/AEPT zugenäht/AEPT zugenagelt/AEPT zugeneigt/AEPT zugenickt/AEPT zugenommen/AEPT zugeordnet/AEPT zugepackt/AEPT zugepflastert/AEPT zugeraten/AEPT zugerechnet/AEPT zugeredet/AEPT zugereicht/AEPT zugerichtet/AEPT zugeritten/AEPT zugerüstet/AEPT zugerufen/AEPT zugesagt/AEPT zugesandt/AEPT zugeschaltet/AEPT zugeschaut zugeschickt/AEPT zugeschlagen/AEPT zugeschlossen/AEPT zugeschmiert/AEPT zugeschmissen/AEPT zugeschnallt/AEPT zugeschnappt/AEPT zugeschnitten/AEPT zugeschnürt/AEPT zugeschoben/AEPT zugeschossen/AEPT zugeschraubt/AEPT zugeschrieben/AEPT zugeschrien/AEPT zugeschüttet/AEPT zugeschweißt/AEPT zugesehen zugesellt/AEPT zugesetzt/AEPT zugesichert/AEPT zugesiegelt/AEPT zugespielt/AEPT zugespitzt/AEPT zugesprochen/AEPT zugesprungen/AEPT zugestanden/AEPT zugesteckt/AEPT zugestehen/DIX zugestellt/AEPT zugestiegen/AEPT zugestimmt/AEPT zugestochen zugestopft/AEPT zugestoßen zugeströmt/AEPT zugestürzt/AEPT zugetan/ACEPT zugeteilt/AEPT zugetragen/AEPT zugetraut zugetroffen zugewachsen/AEPT zugewandert/AEPT zugewandt/AEPT zugewartet zugeweht/AEPT zugewendet zugewiesen/AEPT zugeworfen/AEPT zugewunken/AEPT zugezählt/AEPT zugezahlt/AEPT zugezogen/AEPT zugezwinkert zugießen/DIX zugig/ACEPT zuging/EPZ zugkräftig/ACEPT zugleich zugreifen/BDIX zugrunde zugucken/DIXY zugunsten zugute zuhältst/WX zuhängen/DIXY zuhalten/DI zuhanden zuhauen/DIXY zuheften/DIXY zuhinterst zuhören/DIXY zuinnerst zujubeln/DIXY zukaufen/DIXY zukehren/DIXY zuklappen/DIXY zukleben/DIXY zuknallen/DIXY zukneifen/DIX zuknöpfen/DIXY zuknüpfen/DIXY zukommen/DIX zukorken/DIXY zukünftig/AEPT zukunftbezogen/AEPT zukunftsorientiert/AEPT zukunftsreich/ACEPT zukunftssicher/AEPT zukunftsweisend/AEPT zulächeln/DIXY zulänglich/AEPTU zulässig/AEPTU zulässt zulangen/DIXY zulassen/DI zulasten zulaufen/DI zulegen/DIXY zuleide zuleiten/DIXY zuletzt zuliebe zuließ/EPZ zulöten/BDIXY zum zumachen/DIX zumal zumauern/DIXY zumeist zumessen/DI zumindest zumutbar/AEPTU zumuten/BDIXY zunächst zunähen/DIXY zunageln/D zunehmen/DI zuneigen/DIXY zungenfertig/ACEPT zungenförmig/AEPT zunichte zunicken/DIXY zunimmt/X zunutze zuoberst zuordnen/DIXY zupacken/DIXY zupass/E zupfen/DIWXY zur zurande zuraste/NZ zuraten/DI zurechenbar/AEPT zurechnen/DIXY zurechnungsfähig/ACEPTU zurecht zurechtbasteln/DIXY zurechtbringen/DIX zurechtfand/PZ zurechtfinden/DIX zurechtgebastelt/AEPT zurechtgebracht/AEPT zurechtgefunden/AEPT zurechtgekommen/AEPT zurechtgelegt/AEPT zurechtgemacht/AEPT zurechtgesetzt/AEPT zurechtgestellt/AEPT zurechtgestutzt/AEPT zurechtgewiesen/AEPT zurechtkommen/DIX zurechtlegen/DIXY zurechtmachen/DIXY zurechtsetzen/DIXY zurechtstellen/DIXY zurechtstutzen/DIXY zurechtweisen/DIX zurechtzufinden zurechtzukommen zureden/DIXY zureichen/DIXY zureichend/AEPTU zureiten/DIX zurichten/DIXY zurück zurückbegeben/ADEIPT zurückbegleiten/DIOXY zurückbehältst/WX zurückbehalten/ADEIPT zurückbekommen/ADEIPTX zurückberufen/ADEIPTX zurückbezahlt/AEPT zurückbilden/DIXY zurückblättern/DIXY zurückbleiben/DIX zurückblicken/DIXY zurückblieb/EPZ zurückbringen/DIX zurückdatieren/DIOXY zurückdenken/DIX zurückdrängen/DIXY zurückdrehen/DIXY zurückeilen/DIXY zurückerbeten/AEPT zurückerbitten/DIX zurückerhältst/WX zurückerhalten/DI zurückerobern/DIOXY zurückerstatten/DIOXY zurückfällt/X zurückfahren/DI zurückfallen/DI zurückfinden/DIX zurückfliegen/DIX zurückfordern/DIXY zurückführen/DIXY zurückgab/PZ zurückgeben/DI zurückgeblickt zurückgeblieben/AEPT zurückgebracht/AEPT zurückgedacht/AEPT zurückgedrängt/AEPT zurückgedreht/AEPT zurückgeeilt/AEPT zurückgefahren/AEPT zurückgefallen/AEPT zurückgeflogen/AEPT zurückgefordert/AEPT zurückgeführt/AEPT zurückgefunden/AEPT zurückgegangen/AEPT zurückgegeben/AEPT zurückgegriffen/AEPT zurückgehalten/AEPT zurückgehen/DIX zurückgeholt/AEPT zurückgekauft/AEPT zurückgekehrt/AEPT zurückgekommen/AEPT zurückgekonnt zurückgelassen/AEPT zurückgelegen/AEOPT zurückgelegt/AEPT zurückgeliefert/AEPT zurückgemeldet/AEPT zurückgenommen/AEPT zurückgeprallt/AEPT zurückgerechnet/AEPT zurückgerufen/AEPT zurückgesandt/AEPT zurückgeschaffen/AEPT zurückgeschaltet/AEPT zurückgeschaudert zurückgeschaut zurückgeschickt/AEPT zurückgeschlagen/AEPT zurückgeschleudert/AEPT zurückgeschoben/AEPT zurückgeschossen zurückgeschrieben/AEPT zurückgeschwenkt/AEPT zurückgesehnt/AEPT zurückgesendet/AEPT zurückgesetzt/AEPT zurückgesprungen/AEPT zurückgestanden/AEPT zurückgesteckt/AEPT zurückgestellt/AEPT zurückgestoßen/AEPT zurückgestrahlt/AEPT zurückgestreift/AEPT zurückgetreten/AEPT zurückgetrieben/AEPT zurückgewichen/AEPT zurückgewiesen/AEPT zurückgewinnen/DIX zurückgewirkt/AEPT zurückgewonnen/AEPT zurückgeworfen/AEPT zurückgewünscht/AEPT zurückgezahlt/AEPT zurückgezogen/ACEPT zurückging/EPZ zurückgreifen/DIX zurückgriff/PZ zurückhängen/DIX zurückhalten/DI zurückhaltend/ACEPT zurückhielt/PZ zurückholen/DIXY zurückkaufen/DIXY zurückkehren/DIXY zurückkönnen/D zurückkommen/DIX zurücklag/PZ zurücklassen/DI zurücklegen/DIXY zurückliegen/DIX zurückmelden/DIXY zurückmüssen/D zurücknehmen/DI zurückprallen/DIXY zurückrechnen/DIXY zurückregeln/DIXY zurückreichen/DIXY zurückrufen/DIX zurückschaffen/DIXY zurückschalten/DIXY zurückschaudern/DIXY zurückschauen/DIXY zurückscheuen/DIXY zurückschicken/DIXY zurückschlagen/DI zurückschrauben/DIXY zurückschrecken/DIXY zurückschreiben/DIX zurückschwenken/DIXY zurücksehnen/DIXY zurücksenden/DIXY zurücksetzen/DIXY zurückspringen/DIX zurückstecken/DIXY zurückstehen/DIX zurückstellen/DIXY zurückstoßen/DI zurückstrahlen/DIXY zurückstreifen/DIXY zurücktreiben/DIX zurücktreten/DI zurücktrittst/WX zurückübersetzen/DIOXY zurückverfolgen/DIOXY zurückvergüten/DIOXY zurückverlangen/DIOXY zurückversetzen/DIOXY zurückverwandeln/DIOXY zurückverweisen/DIX zurückweichen/DIX zurückweisen/DIX zurückwerfen/DI zurückwich/PZ zurückwies/EPZ zurückwirft/X zurückwirken/DIXY zurückwünschen/DIXY zurückzahlen/DIXY zurückziehen/DIX zurückzog/PZ zurückzublättern zurückzubleiben zurückzublicken zurückzubringen/D zurückzuerhalten/D zurückzufordern/D zurückzuführen/D zurückzugeben/D zurückzugehen zurückzugelangen zurückzugewinnen/D zurückzugreifen zurückzuhalten/D zurückzukaufen/D zurückzukehren zurückzukommen zurückzulegen/D zurückzunehmen/D zurückzuschauen zurückzuschicken/D zurückzusenden/D zurückzusetzen zurückzutreten zurückzuzahlen/D zurückzuziehen/D zurüsten/DIXY zurufen/DIX zurzeit zus. zusätzlich/AEPT zusagen/DIXY zusah/PZ zusammen zusammenaddieren/DIOXY zusammenarbeiten/DIXY zusammenballen/DIXY zusammenbasteln/DIXY zusammenbauen/DIXY zusammenbeißen/DIX zusammenbekommen/DIX zusammenberufen/ADEIPTX zusammenbinden/DIX zusammenbrach/PZ zusammenbrachen/WXY zusammenbrauen/DIXY zusammenbrechen/DI zusammenbricht/X zusammenbringen/DIX zusammendrängen/DIXY zusammendrücken/DIXY zusammenfällt/X zusammenfahren/DI zusammenfallen/DI zusammenfalten/DIXY zusammenfassen/DIXY zusammenfiel/EPZ zusammenfinden/DIX zusammenflicken/DIXY zusammenfließen/DIX zusammenfügen/DIXY zusammenführen/DIXY zusammengearbeitet/AEPT zusammengeballt/AEPT zusammengebastelt/AEPT zusammengebaut/AEPT zusammengebissen/AEPT zusammengebracht/AEPT zusammengebraut/AEPT zusammengebrochen/AEPT zusammengebunden/AEPT zusammengedrängt/AEPT zusammengedrückt/AEPT zusammengefahren/AEPT zusammengefallen/AEPT zusammengefaltet/AEPT zusammengefasst/AEPT zusammengeflickt/AEPT zusammengeflossen/AEPT zusammengefügt/AEPT zusammengeführt/AEPT zusammengefunden/AEPT zusammengegangen/AEPT zusammengehäuft/AEPT zusammengehalten/AEPT zusammengehaut/AEPT zusammengeheftet/AEPT zusammengeheilt/AEPT zusammengehen/DIX zusammengehören/DIXY zusammengehörig/AEPT zusammengeholt/AEPT zusammengekauft/AEPT zusammengekittet/AEPT zusammengeklappt/AEPT zusammengeklaubt/AEPT zusammengeklebt/AEPT zusammengekniffen/AEPT zusammengeknüllt/AEPT zusammengekommen/AEPT zusammengekoppelt/AEPT zusammengeläppert/AEPT zusammengelaufen/AEPT zusammengelebt/AEPT zusammengelegt/AEPT zusammengenommen/AEPT zusammengepackt/AEPT zusammengepasst/AEPT zusammengepfercht/AEPT zusammengeprallt/AEPT zusammengepresst/AEPT zusammengerafft/AEPT zusammengeraten/ADEPT zusammengerechnet/AEPT zusammengereimt/AEPT zusammengerissen zusammengerollt/AEPT zusammengerottet/AEPT zusammengerückt/AEPT zusammengerufen/AEPT zusammengeschart/AEPT zusammengeschlagen/AEPT zusammengeschlossen/AEPT zusammengeschmolzen/AEPT zusammengeschnürt/AEPT zusammengeschossen/AEPT zusammengeschrieben/AEPT zusammengeschrumpft/AEPT zusammengeschustert/AEPT zusammengeschweißt/AEPT zusammengesessen zusammengesetzt/AEPT zusammengestanden/AEPT zusammengesteckt/AEPT zusammengestellt/AEPT zusammengestoppelt/AEPT zusammengestoßen/AEPT zusammengestrichen/AEPT zusammengeströmt/AEPT zusammengestürzt/AEPT zusammengesucht/AEPT zusammengesunken/AEPT zusammengetan zusammengetragen/AEPT zusammengetreten/AEPT zusammengetroffen/AEPT zusammengetrommelt/AEPT zusammengewachsen/AEPT zusammengewickelt/AEPT zusammengewirkt/AEPT zusammengeworfen/AEPT zusammengewürfelt/AEPT zusammengezählt/AEPT zusammengezogen/AEPT zusammenhältst/WX zusammenhängen/DIX zusammenhängend/AEPTU zusammenhäufen/DIXY zusammenhalten/DI zusammenhanglos/ACEPT zusammenhauen/DIXY zusammenheften/DIXY zusammenheilen/DIXY zusammenhing/PZ zusammenholen/DIXY zusammenkaufen/DIXY zusammenkitten/DIXY zusammenklappen/BDIXY zusammenkleben/DIXY zusammenknüllen/DIXY zusammenkommen/DIX zusammenkratzen/DIXY zusammenläppern/DIXY zusammenlaufen/DI zusammenleben/DIXY zusammenlegen/BDIXY zusammenmontieren/DIOXY zusammennehmen/DI zusammenpacken/DIXY zusammenpassen/DIXY zusammenpferchen/DIXY zusammenprallen/DIXY zusammenraffen/DIXY zusammenrechnen/DIXY zusammenreimen/DIXY zusammenreißen/DIX zusammenrollen/DIXY zusammenrotten/DIXY zusammenrücken/DIXY zusammenrufen/DIX zusammensacken/DIXY zusammenschalten/BDIXY zusammenscharen/DIXY zusammenschießen/DIX zusammenschlagen/DI zusammenschließen/DIX zusammenschmelzen/DI zusammenschnüren/DIXY zusammenschreiben/DIX zusammenschrumpfen/DIXY zusammenschweißen/DIXY zusammensetzen/DIXY zusammensinken/DIX zusammenspielen/DIXY zusammenstecken/DIXY zusammenstehen/DIX zusammenstellen/BDIXY zusammenstoppeln/DIXY zusammenstoßen/DI zusammenstreichen/DIX zusammenströmen/DIXY zusammenstürzen/DIXY zusammensuchen/DIXY zusammentraf/PZ zusammentragen/DI zusammentreffen/DI zusammentreten/DI zusammentrommeln/DIXY zusammentuend/AEPT zusammentun/IX zusammenwachsen/DI zusammenwerfen/DI zusammenwickeln/DIXY zusammenwirken/DIXY zusammenzählen/DIXY zusammenziehen/DIX zusammenzuarbeiten zusammenzubrechen zusammenzubringen zusammenzufassen/D zusammenzufügen/D zusammenzuführen/D zusammenzulegen/D zusammenzupassen zusammenzuschließen/D zusammenzusetzen zusammenzustehen zusammenzustellen/D zusammenzutragen/D zusammenzutreffen zusammenzutreten zusandte/NZ zuschalten/BDIXY zuschauen/DIXY zuschicken/DIXY zuschieben/DIX zuschießen/DIX zuschlägt/X zuschlagen/DI zuschlagsfrei/AEPT zuschließen/DIX zuschmeißen/DIX zuschmieren/DIXY zuschnallen/DIXY zuschnappen/DIXY zuschneiden/DIX zuschnüren/DIXY zuschrauben/DIXY zuschreiben/DIX zuschreibend/AEPTU zuschütten/DIXY zuschulden zusehen/DI zusehend/AEPST zuseiten zusenden/DIXY zusetzen/DIXY zusichern/DIXY zusiegeln/DIXY zusieht/X zuspielen/DIXY zuspitzen/DIXY zusprang/PZ zusprechen/DI zuspringen/DIX zuständig/AEPT zuständlich/AEPT zustand/EPZ zustandsabhängig/AEPT zustandsorientiert/AEPT zustatten zustecken/DIXY zustehen/D zusteht zustellen/DIXY zustellungsbevollmächtigt/AEPT zusteuern/DIXY zustimmen/DIXY zustößt zustopfen/DIXY zustoßen/DI zustreben/DIXY zuströmen/DIXY zustürzen/DIXY zutage zuteilen/DIWXY zutiefst zuträglich/ACEPT zutragen/DI zutrauen/DIXY zutraulich/ACEPT zutreffen/DI zutreffend/AEPTU zutrifft/X zutrinken/DIX zutuend/AEPT zuungunsten zuunterst zuverlässig/ACEPTU zuversichtlich/ACEPT zuvor zuvorderst zuvorgekommen/AEPT zuvorkommen/DIX zuvorkommend/ACEPT zuvortun/IX zuvorzukommen zuwachsen/DI zuwandern/DIXY zuwarf/PZ zuwarten/DIXY zuwehen/DIXY zuweilen zuweisen/DIX zuwenden/DIXY zuwerfen/DI zuwider zuwidergehandelt/AEPT zuwidergelaufen/AEPT zuwiderhandeln/DIXY zuwiderlaufen/DI zuwinken/DIXY zuzahlen/DIXY zuzeiten zuziehen/DIX zuzog/PZ zuzüglich/AEPT zuzubereiten/D zuzubilligen/D zuzudrücken/D zuzufügen/D zuzuführen/D zuzugeben/D zuzugestehen/D zuzugreifen zuzuhalten/D zuzuhören zuzulassen/D zuzuleiten/D zuzumachen zuzumuten/D zuzunehmen/D zuzuordnen/D zuzurechnen/D zuzureden zuzurichten/D zuzuschalten/D zuzuschicken/D zuzuschieben/D zuzuschlagen/D zuzuschreiben/D zuzusehen zuzusichern/D zuzustellen/D zuzustimmen zuzuteilen/D zuzutrauen/D zuzuweisen/D zuzuwenden/D zuzwinkern/DIXY zwängen/DIXY zwang/PZp zwanghaft/ACEPT zwanglos/ACEPT zwangsbewirtschaftet/AEPT zwangsläufig/ACEPT zwangsumgetauscht/AEPT zwangsverpflichtet/AEPT zwangsversteigert/AEPT zwangsweise zwanzig/R zwanzigerlei zwanzigfach/AEPT zwanzigjährig/AEPT zwanzigste/ANRS zwanzigstel zwanzigtausend zwar zweckbestimmt/AEPT zweckdienlich/ACEPT zweckentfremdet/ACEPT zweckentsprechend/AEPT zweckgebunden/AEPT zwecklos/ACEPT zweckmäßig/ACEPTU zweckmäßigerweise zwecks zweckwidrig/ACEPT zweiaderig/AEPT zweiarmig/AEPT zweiatomig/AEPT zweibändig/AEPT zweibeinig/AEPT zweideutig/ACEPTU zweidimensional/AEPT zweidrittel zweieinhalb zweieinhalbjährig/AEPT zweieinhalbstündig/AEPT zweier zweierlei zweifältig/AEPT zweifach/AEPT zweifarbig/AEPT zweifelhaft/ACEPTU zweifellos/ACEPT zweifeln/DIVWXY zweifelnd/ACEPT zweifelsfrei/AEPT zweifelsohne zweifelt/EGPVWX zweifelte/GNVZ zweifelten/GIVWX zweigen/IVXY zweigeteilt/AEPT zweigleisig/AEPT zweihändig/AEPT zweihundert zweijährig/AEPT zweijährlich/AEPT zweimal zweimalig/AEPT zweimotorig/AEPT zweipolig/AEPT zweiräderig/AEPT zweireihig/AEPT zweischneidig/AEPT zweiseitig/AEPT zweisilbig/AEPT zweisitzig/AEPT zweispaltig/AEPT zweisprachig/AEPT zweistellig/AEPT zweistimmig/AEPT zweistöckig/AEPT zweistündig/AEPT zweistündlich/AEPT zweistufig/AEPT zweit/AEPTW zweitägig/AEPT zweitälteste/ANRS zweitausend zweitausenddreihundert zweitausendzweihundert zweitbeste/ANRS zweiteilig/AEPT zweiten/SW zweitgrößte/ANRS zweitjüngste/ANRS zweitklassig/AEPT zweitletzte/ANRS zweitmächtigste/ANRS zweitrangig/AEPT zweitstärkste/ANRS zweiundachtzig zweiundachtzigste/ANRS zweiunddreißig zweiunddreißigste/ANRS zweiunddreißigstel zweiundfünfzig zweiundfünfzigste/ANRS zweiundneunzig zweiundneunzigste/ANRS zweiundsechzig zweiundsechzigste/ANRS zweiundsiebzig zweiundsiebzigste/ANRS zweiundvierzig zweiundvierzigste/ANRS zweiundzwanzig zweiundzwanzigste/ANRS zweiwöchentlich/AEPT zweiwöchig/AEPT zweizackig/AEPT zweizeilig/AEPT zwerchfellerschütternd/AEPT zwergenhaft/ACEPT zwickelförmig/AEPT zwicken/DIWXY zwiebelförmig/AEPT zwiefach/AEPT zwielichtig/AEPT zwiespältig/ACEPT zwieträchtig/AEPT zwingen/DIWX zwinkern/DIWXY zwirnen/DIXY zwischen zwischendurch zwischengelagert/AEPT zwischengeschaltet/AEPT zwischengeschoben/AEPT zwischengespeichert/AEPT zwischenlanden/DIXY zwischenmenschlich/AEPT zwischenparteilich/AEPT zwischenpersönlich/AEPT zwischenspeichern/IX zwischenstaatlich/AEPT zwischenzeitlich/AEPT zwischenzuspeichern zwitschern/DIWXY zwitterhaft/AEPT zwölfeckig/AEPT zwölferlei zwölffach/AEPT zwölfhundert zwölfjährig/AEPT zwölfstämmig/AEPT zwölfstündig/AEPT zwölft/AEPTW zwölftägig/AEPT zwölftausend zwölftel zwölften/SW zyklisch/AEPT zyklopisch/AEPT zylinderförmig/AEPT zylindrisch/AEPT zynisch/ACEPT zzgl zzgl. ================================================ FILE: dictionaries/en_GB/LICENSE ================================================ From https://cgit.freedesktop.org/libreoffice/dictionaries/tree/en/ GNU GENERAL PUBLIC LICENSE Version 2, June 1991 Copyright (C) 1989, 1991 Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA Everyone is permitted to copy and distribute verbatim copies of this license document, but changing it is not allowed. Preamble The licenses for most software are designed to take away your freedom to share and change it. By contrast, the GNU General Public License is intended to guarantee your freedom to share and change free software--to make sure the software is free for all its users. This General Public License applies to most of the Free Software Foundation's software and to any other program whose authors commit to using it. (Some other Free Software Foundation software is covered by the GNU Lesser General Public License instead.) You can apply it to your programs, too. When we speak of free software, we are referring to freedom, not price. Our General Public Licenses are designed to make sure that you have the freedom to distribute copies of free software (and charge for this service if you wish), that you receive source code or can get it if you want it, that you can change the software or use pieces of it in new free programs; and that you know you can do these things. To protect your rights, we need to make restrictions that forbid anyone to deny you these rights or to ask you to surrender the rights. These restrictions translate to certain responsibilities for you if you distribute copies of the software, or if you modify it. For example, if you distribute copies of such a program, whether gratis or for a fee, you must give the recipients all the rights that you have. You must make sure that they, too, receive or can get the source code. And you must show them these terms so they know their rights. We protect your rights with two steps: (1) copyright the software, and (2) offer you this license which gives you legal permission to copy, distribute and/or modify the software. Also, for each author's protection and ours, we want to make certain that everyone understands that there is no warranty for this free software. If the software is modified by someone else and passed on, we want its recipients to know that what they have is not the original, so that any problems introduced by others will not reflect on the original authors' reputations. Finally, any free program is threatened constantly by software patents. We wish to avoid the danger that redistributors of a free program will individually obtain patent licenses, in effect making the program proprietary. To prevent this, we have made it clear that any patent must be licensed for everyone's free use or not licensed at all. The precise terms and conditions for copying, distribution and modification follow. GNU GENERAL PUBLIC LICENSE TERMS AND CONDITIONS FOR COPYING, DISTRIBUTION AND MODIFICATION 0. This License applies to any program or other work which contains a notice placed by the copyright holder saying it may be distributed under the terms of this General Public License. The "Program", below, refers to any such program or work, and a "work based on the Program" means either the Program or any derivative work under copyright law: that is to say, a work containing the Program or a portion of it, either verbatim or with modifications and/or translated into another language. (Hereinafter, translation is included without limitation in the term "modification".) Each licensee is addressed as "you". Activities other than copying, distribution and modification are not covered by this License; they are outside its scope. The act of running the Program is not restricted, and the output from the Program is covered only if its contents constitute a work based on the Program (independent of having been made by running the Program). Whether that is true depends on what the Program does. 1. You may copy and distribute verbatim copies of the Program's source code as you receive it, in any medium, provided that you conspicuously and appropriately publish on each copy an appropriate copyright notice and disclaimer of warranty; keep intact all the notices that refer to this License and to the absence of any warranty; and give any other recipients of the Program a copy of this License along with the Program. You may charge a fee for the physical act of transferring a copy, and you may at your option offer warranty protection in exchange for a fee. 2. You may modify your copy or copies of the Program or any portion of it, thus forming a work based on the Program, and copy and distribute such modifications or work under the terms of Section 1 above, provided that you also meet all of these conditions: a) You must cause the modified files to carry prominent notices stating that you changed the files and the date of any change. b) You must cause any work that you distribute or publish, that in whole or in part contains or is derived from the Program or any part thereof, to be licensed as a whole at no charge to all third parties under the terms of this License. c) If the modified program normally reads commands interactively when run, you must cause it, when started running for such interactive use in the most ordinary way, to print or display an announcement including an appropriate copyright notice and a notice that there is no warranty (or else, saying that you provide a warranty) and that users may redistribute the program under these conditions, and telling the user how to view a copy of this License. (Exception: if the Program itself is interactive but does not normally print such an announcement, your work based on the Program is not required to print an announcement.) These requirements apply to the modified work as a whole. If identifiable sections of that work are not derived from the Program, and can be reasonably considered independent and separate works in themselves, then this License, and its terms, do not apply to those sections when you distribute them as separate works. But when you distribute the same sections as part of a whole which is a work based on the Program, the distribution of the whole must be on the terms of this License, whose permissions for other licensees extend to the entire whole, and thus to each and every part regardless of who wrote it. Thus, it is not the intent of this section to claim rights or contest your rights to work written entirely by you; rather, the intent is to exercise the right to control the distribution of derivative or collective works based on the Program. In addition, mere aggregation of another work not based on the Program with the Program (or with a work based on the Program) on a volume of a storage or distribution medium does not bring the other work under the scope of this License. 3. You may copy and distribute the Program (or a work based on it, under Section 2) in object code or executable form under the terms of Sections 1 and 2 above provided that you also do one of the following: a) Accompany it with the complete corresponding machine-readable source code, which must be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, b) Accompany it with a written offer, valid for at least three years, to give any third party, for a charge no more than your cost of physically performing source distribution, a complete machine-readable copy of the corresponding source code, to be distributed under the terms of Sections 1 and 2 above on a medium customarily used for software interchange; or, c) Accompany it with the information you received as to the offer to distribute corresponding source code. (This alternative is allowed only for noncommercial distribution and only if you received the program in object code or executable form with such an offer, in accord with Subsection b above.) The source code for a work means the preferred form of the work for making modifications to it. For an executable work, complete source code means all the source code for all modules it contains, plus any associated interface definition files, plus the scripts used to control compilation and installation of the executable. However, as a special exception, the source code distributed need not include anything that is normally distributed (in either source or binary form) with the major components (compiler, kernel, and so on) of the operating system on which the executable runs, unless that component itself accompanies the executable. If distribution of executable or object code is made by offering access to copy from a designated place, then offering equivalent access to copy the source code from the same place counts as distribution of the source code, even though third parties are not compelled to copy the source along with the object code. 4. You may not copy, modify, sublicense, or distribute the Program except as expressly provided under this License. Any attempt otherwise to copy, modify, sublicense or distribute the Program is void, and will automatically terminate your rights under this License. However, parties who have received copies, or rights, from you under this License will not have their licenses terminated so long as such parties remain in full compliance. 5. You are not required to accept this License, since you have not signed it. However, nothing else grants you permission to modify or distribute the Program or its derivative works. These actions are prohibited by law if you do not accept this License. Therefore, by modifying or distributing the Program (or any work based on the Program), you indicate your acceptance of this License to do so, and all its terms and conditions for copying, distributing or modifying the Program or works based on it. 6. Each time you redistribute the Program (or any work based on the Program), the recipient automatically receives a license from the original licensor to copy, distribute or modify the Program subject to these terms and conditions. You may not impose any further restrictions on the recipients' exercise of the rights granted herein. You are not responsible for enforcing compliance by third parties to this License. 7. If, as a consequence of a court judgment or allegation of patent infringement or for any other reason (not limited to patent issues), conditions are imposed on you (whether by court order, agreement or otherwise) that contradict the conditions of this License, they do not excuse you from the conditions of this License. If you cannot distribute so as to satisfy simultaneously your obligations under this License and any other pertinent obligations, then as a consequence you may not distribute the Program at all. For example, if a patent license would not permit royalty-free redistribution of the Program by all those who receive copies directly or indirectly through you, then the only way you could satisfy both it and this License would be to refrain entirely from distribution of the Program. If any portion of this section is held invalid or unenforceable under any particular circumstance, the balance of the section is intended to apply and the section as a whole is intended to apply in other circumstances. It is not the purpose of this section to induce you to infringe any patents or other property right claims or to contest validity of any such claims; this section has the sole purpose of protecting the integrity of the free software distribution system, which is implemented by public license practices. Many people have made generous contributions to the wide range of software distributed through that system in reliance on consistent application of that system; it is up to the author/donor to decide if he or she is willing to distribute software through any other system and a licensee cannot impose that choice. This section is intended to make thoroughly clear what is believed to be a consequence of the rest of this License. 8. If the distribution and/or use of the Program is restricted in certain countries either by patents or by copyrighted interfaces, the original copyright holder who places the Program under this License may add an explicit geographical distribution limitation excluding those countries, so that distribution is permitted only in or among countries not thus excluded. In such case, this License incorporates the limitation as if written in the body of this License. 9. The Free Software Foundation may publish revised and/or new versions of the General Public License from time to time. Such new versions will be similar in spirit to the present version, but may differ in detail to address new problems or concerns. Each version is given a distinguishing version number. If the Program specifies a version number of this License which applies to it and "any later version", you have the option of following the terms and conditions either of that version or of any later version published by the Free Software Foundation. If the Program does not specify a version number of this License, you may choose any version ever published by the Free Software Foundation. 10. If you wish to incorporate parts of the Program into other free programs whose distribution conditions are different, write to the author to ask for permission. For software which is copyrighted by the Free Software Foundation, write to the Free Software Foundation; we sometimes make exceptions for this. Our decision will be guided by the two goals of preserving the free status of all derivatives of our free software and of promoting the sharing and reuse of software generally. NO WARRANTY 11. BECAUSE THE PROGRAM IS LICENSED FREE OF CHARGE, THERE IS NO WARRANTY FOR THE PROGRAM, TO THE EXTENT PERMITTED BY APPLICABLE LAW. EXCEPT WHEN OTHERWISE STATED IN WRITING THE COPYRIGHT HOLDERS AND/OR OTHER PARTIES PROVIDE THE PROGRAM "AS IS" WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESSED OR IMPLIED, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. THE ENTIRE RISK AS TO THE QUALITY AND PERFORMANCE OF THE PROGRAM IS WITH YOU. SHOULD THE PROGRAM PROVE DEFECTIVE, YOU ASSUME THE COST OF ALL NECESSARY SERVICING, REPAIR OR CORRECTION. 12. IN NO EVENT UNLESS REQUIRED BY APPLICABLE LAW OR AGREED TO IN WRITING WILL ANY COPYRIGHT HOLDER, OR ANY OTHER PARTY WHO MAY MODIFY AND/OR REDISTRIBUTE THE PROGRAM AS PERMITTED ABOVE, BE LIABLE TO YOU FOR DAMAGES, INCLUDING ANY GENERAL, SPECIAL, INCIDENTAL OR CONSEQUENTIAL DAMAGES ARISING OUT OF THE USE OR INABILITY TO USE THE PROGRAM (INCLUDING BUT NOT LIMITED TO LOSS OF DATA OR DATA BEING RENDERED INACCURATE OR LOSSES SUSTAINED BY YOU OR THIRD PARTIES OR A FAILURE OF THE PROGRAM TO OPERATE WITH ANY OTHER PROGRAMS), EVEN IF SUCH HOLDER OR OTHER PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. END OF TERMS AND CONDITIONS ================================================ FILE: dictionaries/en_GB/en_GB.aff ================================================ # Affix file for British English MySpell dictionary. # Also suitable as basis for Commonwealth and European English. # Built from scratch for MySpell. Released under LGPL. # # Sources used to verify the spelling of the words # Marco Pinto included in the dictionary: # 1) Oxford Dictionaries; 4) Wiktionary (used with caution); # 2) Collins Dictionary; 5) Wikipedia (used with caution); # 3) Macmillan Dictionary; 6) Physical dictionaries. # # David Bartlett, Andrew Brown, Kevin Atkinson, # Áron Budea, Marco A.G.Pinto. # R 2.42, 2016-11-01 SET UTF-8 TRY esiaénrtolcdugmfphbyvkw-'.zqjxSNRTLCGDMFPHBEAUYOIVKWóöâôZQJXÅçèîêàïüäñ NOSUGGEST ! # ordinal numbers COMPOUNDMIN 1 # only in compounds: 1th, 2th, 3th ONLYINCOMPOUND _ # compound rules: # 1. [0-9]*1[0-9]th (10th, 11th, 12th, 56714th, etc.) # 2. [0-9]*[02-9](1st|2nd|3rd|[4-9]th) (21st, 22nd, 123rd, 1234th, etc.) COMPOUNDRULE 2 COMPOUNDRULE #*0{ COMPOUNDRULE #*@} WORDCHARS 0123456789’ REP 27 REP f ph REP ph f REP f gh REP f ugh REP gh f REP ff ugh REP uf ough REP uff ough REP k ch REP ch k REP dg j REP j dg REP w ugh REP ness ity REP leness ility REP ness ivity REP eness ity REP og ogue REP ck qu REP ck que REP eg e.g. REP ie i.e. REP t ght REP ght t REP ok OK REP ts ce REP ce ts PFX A Y 2 PFX A 0 re [^e] PFX A 0 re- e PFX a Y 1 PFX a 0 mis . PFX I Y 4 PFX I 0 il l PFX I 0 ir r PFX I 0 im [bmp] PFX I 0 in [^blmpr] PFX c Y 1 PFX c 0 over . PFX U Y 1 PFX U 0 un . PFX C Y 2 PFX C 0 de [^e] PFX C 0 de- e PFX E Y 1 PFX E 0 dis . PFX F Y 5 PFX F 0 com [bmp] PFX F 0 co [aeiouh] PFX F 0 cor r PFX F 0 col l PFX F 0 con [^abehilmopru]. PFX K Y 1 PFX K 0 pre . PFX e Y 1 PFX e 0 out . PFX f Y 2 PFX f 0 under [^r] PFX f 0 under- r PFX O Y 1 PFX O 0 non- . PFX 4 Y 1 PFX 4 0 trans . SFX V Y 15 SFX V 0 tive [aio] SFX V b ptive b SFX V d sive d SFX V be ptive be SFX V e tive ce SFX V de sive de SFX V ke cative ke SFX V e ptive me SFX V e ive [st]e SFX V e ative [^bcdkmst]e SFX V 0 lative [aeiou]l SFX V 0 ative [^aeiou]l SFX V 0 ive [st] SFX V y icative y SFX V 0 ative [^abdeilosty] SFX v Y 15 SFX v 0 tively [aio] SFX v b ptively b SFX v d sively d SFX v be ptively be SFX v e tively ce SFX v de sively de SFX v ke catively ke SFX v e ptively me SFX v e ively [st]e SFX v e atively [^bcdkmst]e SFX v 0 latively [aeiou]l SFX v 0 atively [^aeiou]l SFX v 0 ively [st] SFX v y icatively y SFX v 0 atively [^abdeilosty] SFX u Y 15 SFX u 0 tiveness [aio] SFX u b ptiveness b SFX u d siveness d SFX u be ptiveness be SFX u e tiveness ce SFX u de siveness de SFX u ke cativeness ke SFX u e ptiveness me SFX u e iveness [st]e SFX u e ativeness [^bcdkmst]e SFX u 0 lativeness [aeiou]l SFX u 0 ativeness [^aeiou]l SFX u 0 iveness [st] SFX u y icativeness y SFX u 0 ativeness [^abdeilosty] SFX N Y 26 SFX N b ption b SFX N d sion d SFX N be ption be SFX N e tion ce SFX N de sion de SFX N ke cation ke SFX N e ption ume SFX N e mation [^u]me SFX N e ion [^o]se SFX N e ition ose SFX N e ation [iou]te SFX N e ion [^iou]te SFX N e ation [^bcdkmst]e SFX N el ulsion el SFX N 0 lation [aiou]l SFX N 0 ation [^aeiou]l SFX N 0 mation [aeiou]m SFX N 0 ation [^aeiou]m SFX N er ration er SFX N 0 ation [^e]r SFX N 0 ion [sx] SFX N t ssion mit SFX N 0 ion [^m]it SFX N 0 ation [^i]t SFX N y ication y SFX N 0 ation [^bdelmrstxy] SFX n Y 28 SFX n 0 tion a SFX n e tion ce SFX n ke cation ke SFX n e ation [iou]te SFX n e ion [^iou]te SFX n e ation [^ckt]e SFX n el ulsion el SFX n 0 lation [aiou]l SFX n 0 ation [^aeiou]l SFX n er ration er SFX n 0 ation [^e]r SFX n y ation py SFX n y ication [^p]y SFX n 0 ation [^aelry] SFX n 0 tions a SFX n e tions ce SFX n ke cations ke SFX n e ations [iou]te SFX n e ions [^iou]te SFX n e ations [^ckt]e SFX n el ulsions el SFX n 0 lations [aiou]l SFX n 0 ations [^aeiou]l SFX n er rations er SFX n 0 ations [^e]r SFX n y ations py SFX n y ications [^p]y SFX n 0 ations [^aelry] SFX X Y 26 SFX X b ptions b SFX X d sions d SFX X be ptions be SFX X e tions ce SFX X ke cations ke SFX X de sions de SFX X e ptions ume SFX X e mations [^u]me SFX X e ions [^o]se SFX X e itions ose SFX X e ations [iou]te SFX X e ions [^iou]te SFX X e ations [^bcdkmst]e SFX X el ulsions el SFX X 0 lations [aiou]l SFX X 0 ations [^aeiou]l SFX X 0 mations [aeiou]m SFX X 0 ations [^aeiou]m SFX X er rations er SFX X 0 ations [^e]r SFX X 0 ions [sx] SFX X t ssions mit SFX X 0 ions [^m]it SFX X 0 ations [^i]t SFX X y ications y SFX X 0 ations [^bdelmrstxy] SFX x Y 40 SFX x b ptional b SFX x d sional d SFX x be ptional be SFX x e tional ce SFX x ke cational ke SFX x de sional de SFX x e ional [^o]se SFX x e itional ose SFX x e ional te SFX x e ational [^bcdkst]e SFX x el ulsional el SFX x 0 lational [aiou]l SFX x 0 ational [^aeiou]l SFX x er rational er SFX x 0 ational [^e]r SFX x 0 ional [sx] SFX x 0 ional [^n]t SFX x 0 ational nt SFX x y icational y SFX x 0 ational [^bdelrstxy] SFX x b ptionally b SFX x d sionally d SFX x be ptionally be SFX x e tionally ce SFX x ke cationally ke SFX x de sionally de SFX x e ionally [^o]se SFX x e itionally ose SFX x e ionally te SFX x e ationally [^bcdkst]e SFX x el ulsionally el SFX x 0 lationally [aiou]l SFX x 0 ationally [^aeiou]l SFX x er rationally er SFX x 0 ationally [^e]r SFX x 0 ionally [sx] SFX x 0 ionally [^n]t SFX x 0 ationally nt SFX x y icationally y SFX x 0 ationally [^bdelrstxy] SFX H N 13 SFX H y ieth y SFX H ree ird ree SFX H ve fth ve SFX H e th [^ev]e SFX H 0 h t SFX H 0 th [^ety] SFX H y ieths y SFX H ree irds ree SFX H ve fths ve SFX H e ths [^ev]e SFX H 0 hs t SFX H 0 ths [^ety] SFX H 0 fold . SFX Y Y 9 SFX Y 0 ally ic SFX Y 0 ly [^i]c SFX Y e y [^aeiou]le SFX Y 0 ly [aeiou]le SFX Y 0 ly [^l]e SFX Y 0 y [^aeiou]l SFX Y y ily [^aeiou]y SFX Y 0 ly [aeiou][ly] SFX Y 0 ly [^cely] SFX G Y 24 SFX G e ing [^eioy]e SFX G 0 ing [eoy]e SFX G ie ying ie SFX G 0 bing [^aeio][aeiou]b SFX G 0 king [^aeio][aeiou]c SFX G 0 ding [^aeio][aeiou]d SFX G 0 fing [^aeio][aeiou]f SFX G 0 ging [^aeio][aeiou]g SFX G 0 king [^aeio][aeiou]k SFX G 0 ling [^aeio][eiou]l SFX G 0 ing [aeio][eiou]l SFX G 0 ling [^aeo]al SFX G 0 ing [aeo]al SFX G 0 ming [^aeio][aeiou]m SFX G 0 ning [^aeio][aeiou]n SFX G 0 ping [^aeio][aeiou]p SFX G 0 ring [^aeio][aeiou]r SFX G 0 sing [^aeio][aeiou]s SFX G 0 ting [^aeio][aeiou]t SFX G 0 ving [^aeio][aeiou]v SFX G 0 zing [^aeio][aeiou]z SFX G 0 ing [aeio][aeiou][bcdfgkmnprstvz] SFX G 0 ing [^aeiou][bcdfgklmnprstvz] SFX G 0 ing [^ebcdfgklmnprstvz] SFX J Y 25 SFX J e ings [^eioy]e SFX J 0 ings [eoy]e SFX J ie yings ie SFX J 0 bings [^aeio][aeiou]b SFX J 0 king [^aeio][aeiou]c SFX J 0 dings [^aeio][aeiou]d SFX J 0 fings [^aeio][aeiou]f SFX J 0 gings [^aeio][aeiou]g SFX J 0 kings [^aeio][aeiou]k SFX J 0 lings [^aeio][eiou]l SFX J 0 ings [aeio][eiou]l SFX J 0 lings [^aeo]al SFX J 0 ings [aeo]al SFX J 0 mings [^aeio][aeiou]m SFX J 0 nings [^aeio][aiou]n SFX J 0 pings [^aeio][aeiou]p SFX J 0 rings [^aeio][aiou]r SFX J 0 sings [^aeio][aeiou]s SFX J 0 tings [^aeio][aiou]t SFX J 0 vings [^aeio][aeiou]v SFX J 0 zings [^aeio][aeiou]z SFX J 0 ings [^aeio]e[nrt] SFX J 0 ings [aeio][aeiou][bcdfgkmnprstvz] SFX J 0 ings [^aeiou][bcdfgklmnprstvz] SFX J 0 ings [^ebcdfgklmnprstvz] SFX k Y 8 SFX k e ingly [^eioy]e SFX k 0 ingly [eoy]e SFX k ie yingly ie SFX k 0 kingly [^aeio][aeiou]c SFX k 0 lingly [^aeio][aeiou]l SFX k 0 ingly [aeio][aeiou][cl] SFX k 0 ingly [^aeiou][cl] SFX k 0 ingly [^ecl] SFX D Y 25 SFX D 0 d [^e]e SFX D e d ee SFX D 0 bed [^aeio][aeiou]b SFX D 0 ked [^aeio][aeiou]c SFX D 0 ded [^aeio][aeiou]d SFX D 0 fed [^aeio][aeiou]f SFX D 0 ged [^aeio][aeiou]g SFX D 0 ked [^aeio][aeiou]k SFX D 0 led [^aeio][eiou]l SFX D 0 ed [aeio][eiou]l SFX D 0 led [^aeo]al SFX D 0 ed [aeo]al SFX D 0 med [^aeio][aeiou]m SFX D 0 ned [^aeio][aeiou]n SFX D 0 ped [^aeio][aeiou]p SFX D 0 red [^aeio][aeiou]r SFX D 0 sed [^aeio][aeiou]s SFX D 0 ted [^aeio][aeiou]t SFX D 0 ved [^aeio][aeiou]v SFX D 0 zed [^aeio][aeiou]z SFX D y ied [^aeiou]y SFX D 0 ed [aeiou]y SFX D 0 ed [aeio][aeiou][bcdfgkmnprstvz] SFX D 0 ed [^aeiou][bcdfgklmnprstvz] SFX D 0 ed [^ebcdfgklmnprstvyz] SFX d Y 16 SFX d 0 d e SFX d 0 ked [^aeio][aeiou]c SFX d 0 led [^aeio][aeiou]l SFX d y ied [^aeiou]y SFX d 0 ed [aeiou]y SFX d 0 ed [aeio][aeiou][cl] SFX d 0 ed [^aeiou][cl] SFX d 0 ed [^ecly] SFX d e ing [^eioy]e SFX d 0 ing [eoy]e SFX d ie ying ie SFX d 0 king [^aeio][aeiou]c SFX d 0 ling [^aeio][aeiou]l SFX d 0 ing [aeio][aeiou][cl] SFX d 0 ing [^aeiou][cl] SFX d 0 ing [^ecl] SFX h Y 22 SFX h 0 dly e SFX h 0 bedly [^aeio][aeiou]b SFX h 0 kedly [^aeio][aeiou]c SFX h 0 dedly [^aeio][aeiou]d SFX h 0 fedly [^aeio][aeiou]f SFX h 0 gedly [^aeio][aeiou]g SFX h 0 kedly [^aeio][aeiou]k SFX h 0 ledly [^aeio][aeiou]l SFX h 0 medly [^aeio][aeiou]m SFX h 0 nedly [^aeio][aiou]n SFX h 0 pedly [^aeio][aeiou]p SFX h 0 redly [^aeio][aiou]r SFX h 0 sedly [^aeio][aeiou]s SFX h 0 tedly [^aeio][aiou]t SFX h 0 vedly [^aeio][aeiou]v SFX h 0 zedly [^aeio][aeiou]z SFX h 0 edly [^aeio]e[nrt] SFX h y iedly [^aeiou]y SFX h 0 edly [aeiou]y SFX h 0 edly [aeio][aeiou][bcdfgklmnprstvz] SFX h 0 edly [^aeiou][bcdfgklmnprstvz] SFX h 0 edly [^ebcdfgklmnprstvyz] SFX i Y 22 SFX i 0 dness e SFX i 0 bedness [^aeio][aeiou]b SFX i 0 kedness [^aeio][aeiou]c SFX i 0 dedness [^aeio][aeiou]d SFX i 0 fedness [^aeio][aeiou]f SFX i 0 gedness [^aeio][aeiou]g SFX i 0 kedness [^aeio][aeiou]k SFX i 0 ledness [^aeio][aeiou]l SFX i 0 medness [^aeio][aeiou]m SFX i 0 nedness [^aeio][aiou]n SFX i 0 pedness [^aeio][aeiou]p SFX i 0 redness [^aeio][aiou]r SFX i 0 sedness [^aeio][aeiou]s SFX i 0 tedness [^aeio][aiou]t SFX i 0 vedness [^aeio][aeiou]v SFX i 0 zedness [^aeio][aeiou]z SFX i 0 edness [^aeio]e[nrt] SFX i y iedness [^aeiou]y SFX i 0 edness [aeiou]y SFX i 0 edness [aeio][aeiou][bcdfgklmnprstvz] SFX i 0 edness [^aeiou][bcdfgklmnprstvz] SFX i 0 edness [^ebcdfgklmnprstvyz] SFX T Y 42 SFX T 0 r e SFX T 0 st e SFX T 0 ber [^aeio][aeiou]b SFX T 0 best [^aeio][aeiou]b SFX T 0 ker [^aeio][aeiou]c SFX T 0 kest [^aeio][aeiou]c SFX T 0 der [^aeio][aeiou]d SFX T 0 dest [^aeio][aeiou]d SFX T 0 fer [^aeio][aeiou]f SFX T 0 fest [^aeio][aeiou]f SFX T 0 ger [^aeio][aeiou]g SFX T 0 gest [^aeio][aeiou]g SFX T 0 ker [^aeio][aeiou]k SFX T 0 kest [^aeio][aeiou]k SFX T 0 ler [^aeio][aeiou]l SFX T 0 lest [^aeio][aeiou]l SFX T 0 mer [^aeio][aeiou]m SFX T 0 mest [^aeio][aeiou]m SFX T 0 ner [^aeio][aeiou]n SFX T 0 nest [^aeio][aeiou]n SFX T 0 per [^aeio][aeiou]p SFX T 0 pest [^aeio][aeiou]p SFX T 0 rer [^aeio][aeiou]r SFX T 0 rest [^aeio][aeiou]r SFX T 0 ser [^aeio][aeiou]s SFX T 0 sest [^aeio][aeiou]s SFX T 0 ter [^aeio][aeiou]t SFX T 0 test [^aeio][aeiou]t SFX T 0 ver [^aeio][aeiou]v SFX T 0 vest [^aeio][aeiou]v SFX T 0 zer [^aeio][aeiou]z SFX T 0 zest [^aeio][aeiou]z SFX T y ier [^aeiou]y SFX T y iest [^aeiou]y SFX T 0 er [aeiou]y SFX T 0 est [aeiou]y SFX T 0 er [aeio][aeiou][bcdfgklmnprstvz] SFX T 0 er [^aeiou][bcdfgklmnprstvz] SFX T 0 er [^ebcdfgklmnprstvyz] SFX T 0 est [aeio][aeiou][bcdfgklmnprstvz] SFX T 0 est [^aeiou][bcdfgklmnprstvz] SFX T 0 est [^ebcdfgklmnprstvyz] SFX R Y 72 SFX R 0 r e SFX R 0 rs e SFX R 0 ber [^aeio][aeiou]b SFX R 0 bers [^aeio][aeiou]b SFX R 0 ker [^aeio][aeiou]c SFX R 0 kers [^aeio][aeiou]c SFX R 0 der [^aeio][aeiou]d SFX R 0 ders [^aeio][aeiou]d SFX R 0 fer [^aeio][aeiou]f SFX R 0 fers [^aeio][aeiou]f SFX R 0 ger [^aeio][aeiou]g SFX R 0 gers [^aeio][aeiou]g SFX R 0 ker [^aeio][aeiou]k SFX R 0 kers [^aeio][aeiou]k SFX R 0 ler [^aeio][eiou]l SFX R 0 er [aeio][eiou]l SFX R 0 ler [^aeo]al SFX R 0 er [aeo]al SFX R 0 lers [^aeio][eiou]l SFX R 0 ers [aeio][eiou]l SFX R 0 lers [^aeo]al SFX R 0 ers [aeo]al SFX R 0 mer [^aeio][aeiou]m SFX R 0 mers [^aeio][aeiou]m SFX R 0 ner [^aeio][aeiou]n SFX R 0 ners [^aeio][aeiou]n SFX R 0 per [^aeio][aeiou]p SFX R 0 pers [^aeio][aeiou]p SFX R 0 rer [^aeio][aeiou]r SFX R 0 rers [^aeio][aeiou]r SFX R 0 ser [^aeio][aeiou]s SFX R 0 sers [^aeio][aeiou]s SFX R 0 ter [^aeio][aeiou]t SFX R 0 ters [^aeio][aeiou]t SFX R 0 ver [^aeio][aeiou]v SFX R 0 vers [^aeio][aeiou]v SFX R 0 zer [^aeio][aeiou]z SFX R 0 zers [^aeio][aeiou]z SFX R y ier [^aeiou]y SFX R y iers [^aeiou]y SFX R 0 er [aeiou]y SFX R 0 ers [aeiou]y SFX R 0 er [aeio][aeiou][bcdfgkmnprstvz] SFX R 0 ers [aeio][aeiou][bcdfgkmnprstvz] SFX R 0 er [^aeiou][bcdfgklmnprstvz] SFX R 0 ers [^aeiou][bcdfgklmnprstvz] SFX R 0 er [^ebcdfgklmnprstvyz] SFX R 0 ers [^ebcdfgklmnprstvyz] SFX R 0 r's e SFX R 0 ber's [^aeio][aeiou]b SFX R 0 ker's [^aeio][aeiou]c SFX R 0 der's [^aeio][aeiou]d SFX R 0 fer's [^aeio][aeiou]f SFX R 0 ger's [^aeio][aeiou]g SFX R 0 ker's [^aeio][aeiou]k SFX R 0 ler's [^aeio][eiou]l SFX R 0 er's [aeio][eiou]l SFX R 0 ler's [^aeo]al SFX R 0 er's [aeo]al SFX R 0 mer's [^aeio][aeiou]m SFX R 0 ner's [^aeio][aeiou]n SFX R 0 per's [^aeio][aeiou]p SFX R 0 rer's [^aeio][aeiou]r SFX R 0 ser's [^aeio][aeiou]s SFX R 0 ter's [^aeio][aeiou]t SFX R 0 ver's [^aeio][aeiou]v SFX R 0 zer's [^aeio][aeiou]z SFX R y ier's [^aeiou]y SFX R 0 er's [aeiou]y SFX R 0 er's [aeio][aeiou][bcdfgkmnprstvz] SFX R 0 er's [^aeiou][bcdfgklmnprstvz] SFX R 0 er's [^ebcdfgklmnprstvyz] SFX r Y 24 SFX r 0 r e SFX r 0 ler [^aeio][aeiou]l SFX r 0 ker [^aeio][aeiou]c SFX r y ier [^aeiou]y SFX r 0 er [aeiou]y SFX r 0 er [aeio][aeiou][cl] SFX r 0 er [^aeiou][cl] SFX r 0 er [^ecly] SFX r 0 rs e SFX r 0 lers [^aeio][aeiou]l SFX r 0 kers [^aeio][aeiou]c SFX r y iers [^aeiou]y SFX r 0 ers [aeiou]y SFX r 0 ers [aeio][aeiou][cl] SFX r 0 ers [^aeiou][cl] SFX r 0 ers [^ecly] SFX r 0 r's e SFX r 0 ler's [^aeio][aeiou]l SFX r 0 ker's [^aeio][aeiou]c SFX r y ier's [^aeiou]y SFX r 0 er's [aeiou]y SFX r 0 er's [aeio][aeiou][cl] SFX r 0 er's [^aeiou][cl] SFX r 0 er's [^ecly] SFX S Y 9 SFX S y ies [^aeiou]y SFX S 0 s [aeiou]y SFX S 0 es [sxz] SFX S 0 es [cs]h SFX S 0 s [^cs]h SFX S 0 s [ae]u SFX S 0 x [ae]u SFX S 0 s [^ae]u SFX S 0 s [^hsuxyz] SFX P Y 6 SFX P y iness [^aeiou]y SFX P 0 ness [aeiou]y SFX P 0 ness [^y] SFX P y iness's [^aeiou]y SFX P 0 ness's [aeiou]y SFX P 0 ness's [^y] SFX m Y 20 SFX m 0 sman [bdknmt] SFX m 0 sman [aeiou][bdklmnt]e SFX m 0 man [^aeiou][bdklmnt]e SFX m 0 man [^bdklmnt]e SFX m 0 man [^bdeknmt] SFX m 0 smen [bdknmt] SFX m 0 smen [aeiou][bdklmnt]e SFX m 0 men [^aeiou][bdklmnt]e SFX m 0 men [^bdklmnt]e SFX m 0 men [^bdeknmt] SFX m 0 sman's [bdknmt] SFX m 0 sman's [aeiou][bdklmnt]e SFX m 0 man's [^aeiou][bdklmnt]e SFX m 0 man's [^bdklmnt]e SFX m 0 man's [^bdeknmt] SFX m 0 smen's [bdknmt] SFX m 0 smen's [aeiou][bdklmnt]e SFX m 0 men's [^aeiou][bdklmnt]e SFX m 0 men's [^bdklmnt]e SFX m 0 men's [^bdeknmt] SFX 5 Y 15 SFX 5 0 swoman [bdknmt] SFX 5 0 swoman [aeiou][bdklmnt]e SFX 5 0 woman [^aeiou][bdklmnt]e SFX 5 0 woman [^bdklmnt]e SFX 5 0 woman [^bdeknmt] SFX 5 0 swomen [bdknmt] SFX 5 0 swomen [aeiou][bdklmnt]e SFX 5 0 women [^aeiou][bdklmnt]e SFX 5 0 women [^bdklmnt]e SFX 5 0 women [^bdeknmt] SFX 5 0 swoman's [bdknmt] SFX 5 0 swoman's [aeiou][bdklmnt]e SFX 5 0 woman's [^aeiou][bdklmnt]e SFX 5 0 woman's [^bdklmnt]e SFX 5 0 woman's [^bdeknmt] SFX 6 Y 3 SFX 6 y iful [^aeiou]y SFX 6 0 ful [aeiou]y SFX 6 0 ful [^y] SFX j Y 3 SFX j y ifully [^aeiou]y SFX j 0 fully [aeiou]y SFX j 0 fully [^y] SFX p Y 5 SFX p y iless [^aeiou]y SFX p 0 less [aeiou]y SFX p 0 ess ll SFX p 0 less [^l]l SFX p 0 less [^ly] SFX Q Y 44 SFX Q 0 tise a SFX Q e ise [^l]e SFX Q le ilise [^aeiou]le SFX Q e ise [aeiou]le SFX Q um ise um SFX Q 0 ise [^u]m SFX Q s se is SFX Q 0 ise [^i]s SFX Q y ise [^aeiou]y SFX Q 0 ise [aeiou]y SFX Q 0 ise [^aemsy] SFX Q 0 tises a SFX Q e ises [^l]e SFX Q le ilises [^aeiou]le SFX Q e ises [aeiou]le SFX Q um ises um SFX Q 0 ises [^u]m SFX Q s ses is SFX Q 0 ises [^i]s SFX Q y ises [^aeiou]y SFX Q 0 ises [aeiou]y SFX Q 0 ises [^aemsy] SFX Q 0 tised a SFX Q e ised [^l]e SFX Q le ilised [^aeiou]le SFX Q e ised [aeiou]le SFX Q um ised um SFX Q 0 ised [^u]m SFX Q s sed is SFX Q 0 ised [^i]s SFX Q y ised [^aeiou]y SFX Q 0 ised [aeiou]y SFX Q 0 ised [^aemsy] SFX Q 0 tising a SFX Q e ising [^l]e SFX Q le ilising [^aeiou]le SFX Q e ising [aeiou]le SFX Q um ising um SFX Q 0 ising [^u]m SFX Q s sing is SFX Q 0 ising [^i]s SFX Q y ising [^aeiou]y SFX Q 0 ising [aeiou]y SFX Q 0 ising [^aemsy] SFX 8 Y 44 SFX 8 0 tize a SFX 8 e ize [^l]e SFX 8 le ilize [^aeiou]le SFX 8 e ize [aeiou]le SFX 8 um ize um SFX 8 0 ize [^u]m SFX 8 s ze is SFX 8 0 ize [^i]s SFX 8 y ize [^aeiou]y SFX 8 0 ize [aeiou]y SFX 8 0 ize [^aemsy] SFX 8 0 tizes a SFX 8 e izes [^l]e SFX 8 le ilizes [^aeiou]le SFX 8 e izes [aeiou]le SFX 8 um izes um SFX 8 0 izes [^u]m SFX 8 s zes is SFX 8 0 izes [^i]s SFX 8 y izes [^aeiou]y SFX 8 0 izes [aeiou]y SFX 8 0 izes [^aemsy] SFX 8 0 tized a SFX 8 e ized [^l]e SFX 8 le ilized [^aeiou]le SFX 8 e ized [aeiou]le SFX 8 um ized um SFX 8 0 ized [^u]m SFX 8 s zed is SFX 8 0 ized [^i]s SFX 8 y ized [^aeiou]y SFX 8 0 ized [aeiou]y SFX 8 0 ized [^aemsy] SFX 8 0 tizing a SFX 8 e izing [^l]e SFX 8 le ilizing [^aeiou]le SFX 8 e izing [aeiou]le SFX 8 um izing um SFX 8 0 izing [^u]m SFX 8 s zing is SFX 8 0 izing [^i]s SFX 8 y izing [^aeiou]y SFX 8 0 izing [aeiou]y SFX 8 0 izing [^aemsy] SFX q Y 22 SFX q 0 tisation a SFX q e isation [^l]e SFX q le ilisation [^aeiou]le SFX q e isation [aeiou]le SFX q um isation um SFX q 0 isation [^u]m SFX q s sation is SFX q 0 isation [^i]s SFX q y isation [^aeiou]y SFX q 0 isation [aeiou]y SFX q 0 isation [^aemsy] SFX q 0 tisations a SFX q e isations [^l]e SFX q le ilisations [^aeiou]le SFX q e isations [aeiou]le SFX q um isations um SFX q 0 isations [^u]m SFX q s sations is SFX q 0 isations [^i]s SFX q y isations [^aeiou]y SFX q 0 isations [aeiou]y SFX q 0 isations [^aemsy] SFX - Y 22 SFX - 0 tization a SFX - e ization [^l]e SFX - le ilization [^aeiou]le SFX - e ization [aeiou]le SFX - um ization um SFX - 0 ization [^u]m SFX - s zation is SFX - 0 ization [^i]s SFX - y ization [^aeiou]y SFX - 0 ization [aeiou]y SFX - 0 ization [^aemsy] SFX - 0 tizations a SFX - e izations [^l]e SFX - le ilizations [^aeiou]le SFX - e izations [aeiou]le SFX - um izations um SFX - 0 izations [^u]m SFX - s zations is SFX - 0 izations [^i]s SFX - y izations [^aeiou]y SFX - 0 izations [aeiou]y SFX - 0 izations [^aemsy] SFX s Y 33 SFX s 0 tiser a SFX s e iser [^l]e SFX s le iliser [^aeiou]le SFX s e iser [aeiou]le SFX s um iser um SFX s 0 iser [^u]m SFX s s ser is SFX s 0 iser [^i]s SFX s y iser [^aeiou]y SFX s 0 iser [aeiou]y SFX s 0 iser [^aemsy] SFX s 0 tisers a SFX s e isers [^l]e SFX s le ilisers [^aeiou]le SFX s e isers [aeiou]le SFX s um isers um SFX s 0 isers [^u]m SFX s s sers is SFX s 0 isers [^i]s SFX s y isers [^aeiou]y SFX s 0 isers [aeiou]y SFX s 0 isers [^aemsy] SFX s 0 tiser's a SFX s e iser's [^l]e SFX s le iliser's [^aeiou]le SFX s e iser's [aeiou]le SFX s um iser's um SFX s 0 iser's [^u]m SFX s s ser's is SFX s 0 iser's [^i]s SFX s y iser's [^aeiou]y SFX s 0 iser's [aeiou]y SFX s 0 iser's [^aemsy] SFX 9 Y 33 SFX 9 0 tizer a SFX 9 e izer [^l]e SFX 9 le ilizer [^aeiou]le SFX 9 e izer [aeiou]le SFX 9 um izer um SFX 9 0 izer [^u]m SFX 9 s zer is SFX 9 0 izer [^i]s SFX 9 y izer [^aeiou]y SFX 9 0 izer [aeiou]y SFX 9 0 izer [^aemsy] SFX 9 0 tizers a SFX 9 e izers [^l]e SFX 9 le ilizers [^aeiou]le SFX 9 e izers [aeiou]le SFX 9 um izers um SFX 9 0 izers [^u]m SFX 9 s zers is SFX 9 0 izers [^i]s SFX 9 y izers [^aeiou]y SFX 9 0 izers [aeiou]y SFX 9 0 izers [^aemsy] SFX 9 0 tizer's a SFX 9 e izer's [^l]e SFX 9 le ilizer's [^aeiou]le SFX 9 e izer's [aeiou]le SFX 9 um izer's um SFX 9 0 izer's [^u]m SFX 9 s zer's is SFX 9 0 izer's [^i]s SFX 9 y izer's [^aeiou]y SFX 9 0 izer's [aeiou]y SFX 9 0 izer's [^aemsy] SFX t Y 22 SFX t 0 tisable a SFX t e isable [^l]e SFX t le ilisable [^aeiou]le SFX t e isable [aeiou]le SFX t um isable um SFX t 0 isable [^u]m SFX t s sable is SFX t 0 isable [^i]s SFX t y isable [^aeiou]y SFX t 0 isable [aeiou]y SFX t 0 isable [^aemsy] SFX t 0 tisability a SFX t e isability [^l]e SFX t le ilisability [^aeiou]le SFX t e isability [aeiou]le SFX t um isability um SFX t 0 isability [^u]m SFX t s sability is SFX t 0 isability [^i]s SFX t y isability [^aeiou]y SFX t 0 isability [aeiou]y SFX t 0 isability [^aemsy] SFX + Y 22 SFX + 0 tizable a SFX + e izable [^l]e SFX + le ilizable [^aeiou]le SFX + e izable [aeiou]le SFX + um izable um SFX + 0 izable [^u]m SFX + s zable is SFX + 0 izable [^i]s SFX + y izable [^aeiou]y SFX + 0 izable [aeiou]y SFX + 0 izable [^aemsy] SFX + 0 tizability a SFX + e izability [^l]e SFX + le ilizability [^aeiou]le SFX + e izability [aeiou]le SFX + um izability um SFX + 0 izability [^u]m SFX + s zability is SFX + 0 izability [^i]s SFX + y izability [^aeiou]y SFX + 0 izability [aeiou]y SFX + 0 izability [^aemsy] SFX M Y 1 SFX M 0 's . SFX B Y 48 SFX B e able [^acegilotu]e SFX B 0 able [acegilou]e SFX B te ble ate SFX B e able [^a]te SFX B 0 bable [^aeio][aeiou]b SFX B 0 kable [^aeio][aeiou]c SFX B 0 dable [^aeio][aeiou]d SFX B 0 fable [^aeio][aeiou]f SFX B 0 gable [^aeio][aeiou]g SFX B 0 kable [^aeio][aeiou]k SFX B 0 lable [^aeio][aeiou]l SFX B 0 mable [^aeio][aeiou]m SFX B 0 nable [^aeio][aeiou]n SFX B 0 pable [^aeio][aeiou]p SFX B 0 rable [^aeio][aeiou]r SFX B 0 sable [^aeio][aeiou]s SFX B 0 table [^aeio][aeiou]t SFX B 0 vable [^aeio][aeiou]v SFX B 0 zable [^aeio][aeiou]z SFX B 0 able [aeio][aeiou][bcdfgklmnprstvz] SFX B 0 able [^aeiou][bcdfgklmnprstvz] SFX B y iable [^aeiou]y SFX B 0 able [aeiou]y SFX B 0 able [^ebcdfgklmnprstvzy] SFX B e ability [^acegilotu]e SFX B 0 ability [acegilou]e SFX B te bility ate SFX B e ability [^a]te SFX B 0 bability [^aeio][aeiou]b SFX B 0 kability [^aeio][aeiou]c SFX B 0 dability [^aeio][aeiou]d SFX B 0 fability [^aeio][aeiou]f SFX B 0 gability [^aeio][aeiou]g SFX B 0 kability [^aeio][aeiou]k SFX B 0 lability [^aeio][aeiou]l SFX B 0 mability [^aeio][aeiou]m SFX B 0 nability [^aeio][aeiou]n SFX B 0 pability [^aeio][aeiou]p SFX B 0 rability [^aeio][aeiou]r SFX B 0 sability [^aeio][aeiou]s SFX B 0 tability [^aeio][aeiou]t SFX B 0 vability [^aeio][aeiou]v SFX B 0 zability [^aeio][aeiou]z SFX B 0 ability [aeio][aeiou][bcdfgklmnprstvz] SFX B 0 ability [^aeiou][bcdfgklmnprstvz] SFX B y iability [^aeiou]y SFX B 0 ability [aeiou]y SFX B 0 ability [^ebcdfgklmnprstvzy] SFX 7 Y 9 SFX 7 e able [acegilou]e SFX 7 0 able [^acegilou]e SFX 7 0 kable [^aeio][aeiou]c SFX 7 0 lable [^aeio][aeiou]l SFX 7 0 able [aeio][aeiou][cl] SFX 7 0 able [^aeiou][cl] SFX 7 y iable [^aeiou]y SFX 7 0 able [aeiou]y SFX 7 0 able [^cely] SFX g Y 9 SFX g e ability [^acegilou]e SFX g 0 ability [acegilou]e SFX g 0 kability [^aeio][aeiou]c SFX g 0 lability [^aeio][aeiou]l SFX g 0 ability [aeio][aeiou][cl] SFX g 0 ability [^aeiou][cl] SFX g y iability [^aeiou]y SFX g 0 ability [aeiou]y SFX g 0 ability [^cely] SFX l Y 9 SFX l e ably [^acegilou]e SFX l 0 ably [acegilou]e SFX l 0 kably [^aeio][aeiou]c SFX l 0 lably [^aeio][aeiou]l SFX l 0 ably [aeio][aeiou][cl] SFX l 0 ably [^aeiou][cl] SFX l y iably [^aeiou]y SFX l 0 ably [aeiou]y SFX l 0 ably [^cely] SFX b Y 3 SFX b e ible [^aeiou]e SFX b 0 ible [aeiou]e SFX b 0 ible [^e] SFX L Y 12 SFX L 0 ament m SFX L y iment [^aeiou]y SFX L 0 ment [aeiou]y SFX L 0 ment [^my] SFX L 0 aments m SFX L y iments [^aeiou]y SFX L 0 ments [aeiou]y SFX L 0 ments [^my] SFX L 0 ament's m SFX L y iment's [^aeiou]y SFX L 0 ment's [aeiou]y SFX L 0 ment's [^my] SFX Z Y 22 SFX Z e y [^aeiouy]e SFX Z 0 y [aeiouy]e SFX Z 0 ey [aiouy] SFX Z 0 by [^aeio][aeiou]b SFX Z 0 ky [^aeio][aeiou]c SFX Z 0 dy [^aeio][aeiou]d SFX Z 0 fy [^aeio][aeiou]f SFX Z 0 gy [^aeio][aeiou]g SFX Z 0 ky [^aeio][aeiou]k SFX Z 0 ly [^aeio][aeiou]l SFX Z 0 my [^aeio][aeiou]m SFX Z 0 ny [^aeio][aiou]n SFX Z 0 py [^aeio][aeiou]p SFX Z 0 ry [^aeio][aiou]r SFX Z 0 sy [^aeio][aeiou]s SFX Z 0 ty [^aeio][aiou]t SFX Z 0 vy [^aeio][aeiou]v SFX Z 0 zy [^aeio][aeiou]z SFX Z 0 y [^aeio]e[nrt] SFX Z 0 y [aeio][aeiou][bcdfgklmnprstvz] SFX Z 0 y [^aeiou][bcdfgklmnprstvz] SFX Z 0 y [^aebcdfgiklmnoprstuvyz] SFX 2 Y 21 SFX 2 e iness [^aeiouy]e SFX 2 0 iness [aeiouy]e SFX 2 0 biness [^aeio][aeiou]b SFX 2 0 kiness [^aeio][aeiou]c SFX 2 0 diness [^aeio][aeiou]d SFX 2 0 finess [^aeio][aeiou]f SFX 2 0 giness [^aeio][aeiou]g SFX 2 0 kiness [^aeio][aeiou]k SFX 2 0 liness [^aeio][aeiou]l SFX 2 0 miness [^aeio][aeiou]m SFX 2 0 niness [^aeio][aiou]n SFX 2 0 piness [^aeio][aeiou]p SFX 2 0 riness [^aeio][aiou]r SFX 2 0 siness [^aeio][aeiou]s SFX 2 0 tiness [^aeio][aiou]t SFX 2 0 viness [^aeio][aeiou]v SFX 2 0 ziness [^aeio][aeiou]z SFX 2 0 iness [^aeio]e[nrt] SFX 2 0 iness [aeio][aeiou][bcdfgklmnprstvz] SFX 2 0 iness [^aeiou][bcdfgklmnprstvz] SFX 2 0 iness [^ebcdfgklmnprstvz] SFX z Y 24 SFX z e ily [^aeiouy]e SFX z 0 ily [aeiouy]e SFX z 0 ily [aiou]y SFX z ey ily ey SFX z y ily [^aeiou]y SFX z 0 bily [^aeio][aeiou]b SFX z 0 kily [^aeio][aeiou]c SFX z 0 dily [^aeio][aeiou]d SFX z 0 fily [^aeio][aeiou]f SFX z 0 gily [^aeio][aeiou]g SFX z 0 kily [^aeio][aeiou]k SFX z 0 lily [^aeio][aeiou]l SFX z 0 mily [^aeio][aeiou]m SFX z 0 nily [^aeio][aiou]n SFX z 0 pily [^aeio][aeiou]p SFX z 0 rily [^aeio][aiou]r SFX z 0 sily [^aeio][aeiou]s SFX z 0 tily [^aeio][aiou]t SFX z 0 vily [^aeio][aeiou]v SFX z 0 zily [^aeio][aeiou]z SFX z 0 ily [^aeio]e[nrt] SFX z 0 ily [aeio][aeiou][bcdfgklmnprstvyz] SFX z 0 ily [^aeiou][bcdfgklmnprstvyz] SFX z 0 ily [^ebcdfgklmnprstvyz] SFX y Y 15 SFX y e ory te SFX y e atory [mr]e SFX y e ary se SFX y 0 ry [^mrst]e SFX y 0 ory [^aeous]t SFX y 0 ry [aeous]t SFX y 0 ery h SFX y 0 atory [^i]m SFX y im matory im SFX y 0 ory s SFX y 0 ary ion SFX y 0 ry [^i]on SFX y 0 nery [aiu]n SFX y 0 ry [^aiou]n SFX y 0 ry [^ehmstn] SFX O Y 12 SFX O 0 l a SFX O e al [^bcgv]e SFX O e ial [bcgv]e SFX O 0 ial [bcrx] SFX O um al um SFX O 0 al [^u]m SFX O y al ty SFX O y ial [^t]y SFX O 0 ual [px]t SFX O 0 tal [iu]t SFX O 0 al [^ipux]t SFX O 0 al [^aebcrtxmy] SFX o Y 12 SFX o 0 lly a SFX o e ally [^bcgv]e SFX o e ially [bcgv]e SFX o 0 ially [bcrx] SFX o um ally um SFX o 0 ally [^u]m SFX o y ally ty SFX o y ially [^t]y SFX o 0 ually [px]t SFX o 0 tally [iu]t SFX o 0 ally [^ipux]t SFX o 0 ally [^aebcrtxmy] SFX W Y 21 SFX W ce tific ce SFX W e atic me SFX W se tic se SFX W le ic ble SFX W e ic [^b]le SFX W e ic [^clms]e SFX W 0 lic [ay]l SFX W 0 ic [^ay]l SFX W us ic us SFX W 0 tic [^u]s SFX W er ric er SFX W 0 ic [^e]r SFX W 0 atic [aeiou]m SFX W 0 ic [^aeiou]m SFX W 0 tic ma SFX W a ic [^m]a SFX W y etic thy SFX W y ic [^t]hy SFX W y tic sy SFX W y ic [^hs]y SFX W 0 ic [^aelmrsy] SFX w Y 9 SFX w e ical e SFX w er rical er SFX w 0 ical [^e]r SFX w 0 atical [aeiou]m SFX w 0 ical [^aeiou]m SFX w 0 tical ma SFX w a ical [^m]a SFX w y ical y SFX w 0 ical [^aemry] SFX 1 Y 9 SFX 1 e ically e SFX 1 er rically er SFX 1 0 ically [^e]r SFX 1 0 atically [aeiou]m SFX 1 0 ically [^aeiou]m SFX 1 0 tically ma SFX 1 a ically [^m]a SFX 1 y ically y SFX 1 0 ically [^aemry] SFX 3 Y 21 SFX 3 e ist [^aceiou]e SFX 3 ce tist ce SFX 3 0 ist [aeiou]e SFX 3 y ist [^aeioubp]y SFX 3 0 ist [aeioubp]y SFX 3 o ist o SFX 3 0 ists [^eoy] SFX 3 e ists [^aceiou]e SFX 3 ce tists ce SFX 3 0 ists [aeiou]e SFX 3 y ists [^aeioubp]y SFX 3 0 ists [aeioubp]y SFX 3 o ists o SFX 3 0 ists [^eoy] SFX 3 e ist's [^aceiou]e SFX 3 ce tist's ce SFX 3 0 ist's [aeiou]e SFX 3 y ist's [^aeioubp]y SFX 3 0 ist's [aeioubp]y SFX 3 o ist's o SFX 3 0 ist's [^eoy] ================================================ FILE: dictionaries/en_GB/en_GB.dic ================================================ 62169 'gainst 'mongst 'neath 'strewth 'struth 'twas 'twixt 0/#@ 0th/}{ 1/#0 1024x768 1080i 1080p 1280x720 1280x720p 128K 1366x768 16-bit 16K 1920x1080 1920x1080i 1920x1080p 1D 1st/} 1th/{_ 2/#@ 24-bit 2D 2nd/} 2th/{_ 3/#@ 32-bit 320x240 3D 3DES 3GPP's 3rd/} 3th/{_ 4/#@ 48K 4D 4th/}{ 4x4/S 5/#@ 5th/}{ 6/#@ 64-bit 640x480 64K 6th/}{ 7/#@ 720p 7th/}{ 8-bit 8/#@ 800x600 8th/}{ 9/#@ 9th/}{ A A-levels a.m. a/o AA AAA AAC Aachen/M aardvark/MS aardwolf aardwolves aargh Aarhus/M Aaron/M Aaronvitch/M Ababa/M aback abacus/SM abaft abalone/MS abandon/LdS abandonable abandonedly abandoner/M abandonware abase/SGLD abaser/M abash/LGhSD abashed/UY abate/DLGS abated/U abater/M abatis/S abattoir/SM abaxial Abba/M abbess/SM abbey/SM abbot/SM Abbott/M abbreviate/NDnSG abbreviated/U abbreviation/M Abby/M abbé/S ABC/S abdicate/DNGSn abdication/M abdomen/MS abdominal/YS abdominiser abdominizer abdominoplasty/S abdominoscopy abducens abduct/SDG abductee/S abduction/SM abductive abductor/MS Abdul/M Abdullah Abe/M abeam abed Abel/M Abelard/M Abelson/M Aberconwy/M Aberdeen/M Aberdeenshire/M aberdevine Abernathy/M aberrant/Y aberration/MSO Aberystwyth/M abet/GSD abettor/SM abeyance/SM abeyant abhor/SGD abhorrence/SM abhorrent/Y abhorrer/M abidance/MS abide/kGDS abider/M Abidjan Abigail/M Abilene/M ability/ESIM abiogenesis abiogenic abiotic abiotically abject/PY abjection/MS abjectness/S abjuration/M abjure/nyRSDGN ablate/SDG ablation/M ablaze able-bodied able/nVvYNT abloom ablution/SM abnegate/NGnDS abnegation/M abnormal/Y abnormality/SM aboard abode/MS abolish/DGLRS abolition/3MS abolitionism/SM abolitionist abominable/Y abominate/DnNSG abomination/M aboriginal aboriginals/M Aboriginals/M aborigine/oSM abort/DVGvSu aborter abortifacient abortion/3SM abortionist abortive/P abound/GDS about above aboveboard aboveground abracadabra/S abrade/DGVXvuNS abrader/M Abraham/M Abram/M Abramovich/M Abrams/M abrasion/M abrasive/MS abrasiveness/S abreact/SGD abreaction/MS abreast abrenunciation abricotine abridge/LSGD abridged/U abridgedly abridger/M abroad abrogate/DNnGS abrogation/M abrogator/MS abrupt/TPY abruptness/S abs/M abscess/DSGM abscissa/MS abscissae abscission/SM abscond/DRSG abseil/SDG abseiler absence/SM absent-minded/Y absent-mindedness/S absent/YDG absentee/MS absenteeism/SM absenter absentia/M absinthe/MS absolute/PTY3S absoluteness/S absolution/MS absolutism/SM absolve/GSD absolver/M absorb/GRXNVk absorbance/S absorbancy absorbed/UA absorbency/SM absorbent/M absorbs/A absorption/M absorptivity/M abstain/RGSD abstemious/YP abstemiousness/S abstention/MS abstinence/MS abstinent/Y abstract/ShTVPGY abstracted/P abstractedness/S abstracter/M abstraction/3SM abstractionism/M abstractionist abstractness/S abstractor/SM abstruse/TYP abstruseness/S absurd/PYT absurdism absurdist/S absurdity/MS absurdness/S Abu/M abubble Abuja/M abundance/MS abundant/Y abusable abuse/GESD abuser/MS abusive/YP abusiveness/S abut/GRSLD abutilon abuzz abysmal/Y abyss/SM abyssal Abyssinia/M Abyssinian Ac AC acacia/SM academe/1SMZw academia/MS academic/S academicals academician/SM academicianship academicism academism academy/MS Acadia Acadian/S acanthus/SM Acapulco/M ACAS acc. accede/SDG accelerate/NVDSnGk acceleration/M accelerator/SM accelerometer/MS accent/GMDS accented/U accentor/S accentual/Y accentualist accentuality accentuate/NDSnG accentuation/M accept/BSRVGkhl acceptability/MS acceptable/P acceptableness/S acceptably/U acceptance/SM acceptant acceptation/S accepted/U acceptingness acceptor/MS access/NSXDyMbG accessibility/ISM accessible/IY accessibly/I accession/MDG accessorial accessors accessory/MS accidence/M accident-prone accident/oMS accidental/SP acclaim/DSG acclaimer/M acclamation/MS acclimate/Ss9Q8DNnG acclimation/M acclimatisation acclimatise/ADSG acclimatization acclimatize/ADSG acclivity/SM accolade/MGDS accommodate/DGnkSNVu accommodating/U accommodation/M accommodative/P accompanied/U accompanier/M accompany/3SLDG accomplice/SM accomplish/RLSGD accomplished/U accord/SMDkRG accordance/SM accordant/Y accordion/MS3 accordionist accost/DSG account/MBlSG accountability's/U accountability/SM accountable/P accountably/U accountancy/SM accountant/SM accounted/U accounting/M accoutre/LDSG Accra/M accredit/Snd accreditation/M accredited/U accrementitious accreted accretion/SM accretionary accretive accrual/MS accrue/SGD acct acculturate/VDSNGn acculturation/M accumulate/DSGNVnvu accumulation/M accumulative/P accumulator/SM accuracy/ISM accurate/YP accurately/I accurateness/S accursed/YP accursedness/S accusal/M accusation/M accusative/S accusatorial accusatory accuse/nRkSGD accused/M accustom/dS accustomed/U accustomedness/M ace/vNSMnuV acellular acentric acephaly acepromazine acer/S acerbate/GDS acerbic/Y acerbity/SM acetabula acetabulum acetaldehyde acetaminophen/S acetanilide acetate/SM acetic acetobacter acetogenic acetone/SM acetyl acetylcholine acetylcholinesterase acetylene/MS acetylsalicylic Achaean/M ache/DGkZSM ached/FKA achene/SM aches/KFA Acheulian achievable/U achieve/RSfDG achieved/Uc achievement's achievement/f achievements achiever/cS achieves/c achieving/c Achill achillea Achilles achimenes aching/KY achromatic achy/TK acid/YPWSM acidanthera acidification/M acidify/NSGD acidimetrical acidimetrically acidimetry/W acidity/SM acidophil/SW acidophiles acidoses acidosis/M acidulous Ackerman/M acknowledge/LRGSh acknowledgeable acknowledged/U ACM acme/MS acne/SMD acolyte/MS aconite/MS acorn/MS acoustic/Y acoustical acoustician/M acoustics/M acquaint/ASDG acquaintance/SM acquaintanceship/S acquainted/U acquiesce/GSD acquiescence/SM acquiescent/Y acquirable acquire/DASG acquiree/S acquirement/SM acquirer/S acquisition/MA acquisitions acquisitive/PY acquisitiveness/S acquit/DGS acquittal/SM acquittance/M acquitter/M acre/SM acreage/MS acrid/PY acridine acridity/SM acridness/S acrimonious/PY acrimoniousness/S acrimony/SM acrobat/M1SW acrobatic/S acrobatics/M acrocentric acrolect's acrolect/SO acromegaly/W acronym/SM acropetal/Y acrophobia/MS acropolis/MS across acrostic/MS acrylamide acrylate/M acrylic/S act's act/cS4GAD actin actinic actinide/MS actinium/M actinometer/MS actinomorphic action/IMS4A actionable actioned actioning activate/SINnDCG activated/A activating/A activation/IMCA activator/SM active/3NSnP actively/IA activeness/S activewear ActiveX activism/MS activity/SMI Acton/M actor/S4MA actress/MS actual/q8YSQ- actuality/SM actuarial actuary/SMo actuate/NSGnD actuation/M actuator/SM acuity/MS acumen/SM acupoint/S acupressure/S acupuncture/MS3 acute/PTY acuteness/S ACW acyclic/Y acyclovir/S acyl ad's ad/AC adage/SM adagio/S Adair/M Adam/SM adamant/SY Adami/M Adamski/M Adamson/M adapt/NRvuBinSVG adaptability/MS adaptably adaptation/M adaptationalism adaptationism adaptationist/S adaptativeness adapted/P adaption/S adaptive/P adaptivity adaptogen/S adaptogenic adaptor/S adaxial adbot/S ADC add-on/SM add/RDGS7 addend/SM addenda addendum/M addict/DSGVu addiction/MS addictively Addis Addison/M addition/oMS additional additive/YSM additivity addle/DSG addorsed address/RMBGS addressed/Aa addressee/MS addresses/aA addressing/a adduce/bGVNSD adducer/M adduct/GDS adduction/M adductor/M Adelaide/M Adele/M Adeline/M Aden/M Adenauer/M adenine/M adenocarcinoma/S adenocarcinomata adenohypophyses adenohypophysis adenoid/S adenoidal adenoma/S adenomata adenomatous adenosine adenoviral adenovirus/S adept/TPYS adeptness/S adequacy/ISM adequate/IYP adequateness/SI ADHD adhere/DGRS adherence/MS adherent/YSM adhesion/MS adhesive/PMSY adhesiveness/S Adi/M adiabatic/Y Adidas/M Adie/M adieu/S adipic adipoceration adipocere adipocyte/S adipose/S Adirondack/S adiós adj. adjacency/MS adjacent/Y adjectival/Y adjective/SM adjoin/SDG adjourn/SLDG adjudge/DSG adjudicate/DGnSNVy adjudication/M adjudicator/MS adjunct/SYMV adjuration/M adjure/NGSDn adjust/RLDlGS7V adjusted/UA adjustor's adjusts/A adjutant/MS adjuvant/S Adkins adland Adleman/M Adler/M Adlerian/S Adlington/M adman/M admass admen admin/S adminicle adminicular administer/dNSn administrable administrate/DGSvV administration/M administrator/MS administratrix/M admirable/P admiral/SM admiralty/SM admiration/M admire/NRGSDkln admissibility/MSI admissible/Y admission/AM admit/SANDGX admittance/SM admitted/Y admix/SGD admixture/MS admonish/SkGLD admonisher/M admonition/SM admonitory adnate ado/M adobe/NvVSMX adolescence's adolescence/SK adolescent/MYS Adolf/M Adolph/M Adonis/M adopt/DR7G adopted/AU adoptee/S adoption/M adopts/A adorable/P adorableness/S adoration/M adore/lRSNnGkD adorn/DLSG adorned/U adpressed adrenal/Y adrenalin adrenaline/MS adrenergic Adrian/M Adriatic/M Adrienne/M adrift adroit/TYP adroitness/S ads/A ADSL adsorb/XvDNVGS adsorbate/M adsorbent adsorption/M ADte adulate/SDNnGy adulation/M adulator/SM adult/YPSM adulterant/MS adulterate/GDnNS adulterated/U adulteration/M adulterer/SM adulteress/MS adulterous/Y adultery/SM adulthood/SM adumbrate/VSGnvDN adumbration/M adv. advance/LGSDR advantage/MEDGS advantageous/EY advantageousness's advantageousness/E advect/SGD advection advective advent/SvM Adventism Adventist's adventist/S adventitia adventitial adventitious/PY adventure's/a adventure/RMSGD adventures/a adventuresome adventuress/SM adventurism adventurist/S adventurous/U adventurously adventurousness/SM adverb/SoM adverbial/MS adversarial/Y adversary/MS adverse/yTDYGP adverseness/S adversity/SM advert/GDQsS advertise/LJ advertised/U advertising/M advice/MS advisabilities advisability's advisability/I advisable/I advise/BLRSGDlh advisedly/I advisee/SM adviser/MS advisor/MS advisory/S advocaat advocacy/MS advocate/GSVD advocator advocatory adware AdWords adze/DMSG Aegean/M aegis/SM Aegon/M aegrotat/SM Aeneas Aeneid aeolian Aeolus aeon/SM aepyornis aerate/NSnDG aeration/M aerator/SM aerial/M3S aerialist aerie/oSM aero aero-engine/MS aeroacoustic aerobatic/S aerobic/SY aerobicist/S aerobiology aerobrake/G aerodrome/SM aerodynamic/SY aerodynamics/M aeroelastic aeroelasticity aerofoil/MS aerogel/S aerogramme aerolite/S aeromagnetic aeromedical aeromodeller aeromodelling aeronautic/SY aeronautica aeronautical aeronautics/M aeronef aeronomer aeronomic aeronomical aeronomist aeronomy aerophagy aerophone/S aeroplane/MS aeroponic/S aeroponically aeroshell aerosol/SM aerospace/SM aerosphere aerostatics aerotrain aerotropism aerovane Aertex AES Aeschylus Aesculapius Aesop/M aesthete/1WS aesthetic/S aesthetician/SM aestheticism/SM aestival aestivate/N aether/M aetiology/SW1wM AFAIK afar AFC afebrile affability/SM affable/TY affair/SM affect/hVvNnkDiSG affectation/M affected/EPY affectedly/U affecter/M affecting/E affection/EMS affectionate/U affectionately affective/M affectivity affectless affectlessness affects/E afferent/YS Affero affiance/SDG affidavit/SM affiliate/nESGDN affiliated/U affiliation/ME affine affinity/MS affirm/DGVnvSN affirmation/MA affirmed/A affirms/A affix/DSG afflatus/SM afflict/VvGDS affliction/SM affluence/SM affluent/Y afford/SGBD affordable/U affordably affordance afforest/GnDNS afforestation/M affray/MSDG affricate/VSNM affrication/M affricative/M affright affront/GDMS Afghan/SM afghani/S Afghani/SM Afghanistan/M aficionado/MS afield afire AFK aflagellar aflagellate aflame aflank aflap aflatoxin/S afloat aflutter afoot afore aforementioned aforesaid aforethought afoul afraid/U afresh Africa/M African/SM Africanisation Africanise/SDG Africanism/S Africanist Africanize/SDGN Afrikaans Afrikaner/SM Afrikanerdom afro Afrocentric Afrocentrism Afrocentrist/S afrormosia Afrotropical afrown aft after-effect/SM after-hours after-image/MS after-school after/S afterbirth/SM afterburner/MS aftercare/MS afterdamp afterdeath afterdeck afterglow/SM afterknowledge afterlife/M afterlight afterling afterlives afterload/G aftermath/MS aftermost afternoon/SM afters/M aftersales aftershave/S aftershock/MS aftershow aftersight aftersound aftersun aftertaste/SM afterthought/MS aftertime afterwards afterword/SM afterworld Ag Agaa/M again against Agamemnon/M agammaglobulinaemia agammaglobulinemia agamospermous agamospermy agapanthus agape agar-agar agar/MS agarose agate/SM Agatha/M agave/SM age's/e age-long age-old age/MihpSD aged/P ageing ageism/S ageist/M ageless/YP agelessness/S agency/SM agenda/MS agender agent/AMS agented agenting agentive agentspace/S Ager/S ageratum/M ages/e Agey Aggie/M agglomerate/nVDNSG agglomeration/M agglutinate/nVGNDS agglutination/M agglutinin/SM agglutinogen/S aggrandise/DSLG aggrandize/GLDS aggravate/GkDSnN aggravation/M aggregate/vNnVDYSG aggregated/E aggregates/E aggregating/E aggregation's aggregation/E aggregator/S aggression/MS aggressive/c aggressively aggressiveness/S aggressivity aggressor/MS aggrieve/DhSG aggrievedness aggrievement aggro aggroupment aggry aghast aghastness agile/TY agility/MS agitate/DVGSNnh agitation/M agitator/MS agitprop/SM agleam aglitter aglow agnate/S Agnatha agnatic agnation Agnes/M Agnew/M agnolotti agnosia agnostic/MS agnosticism/SM ago agog agonise/kh agonism agonist/S agonistic agonistically agonize/hk agony/Q8Ss9 agoraphobe/S agoraphobia/SM agoraphobic/S Agostino/M agouti AGP AGPL Agra agrammatism agranulocyte agranulocytosis agrarian/S agrarianism/MS agree/dESLlG agreeable/PE agreeableness/ES agreer/SM agrestic agri-industrial agri-industry agri-monetary agribusiness/SM agribusinessman agribusinessmen agrichemical/S agricultor agricultural/3 agriculturalist agriculture/M3oS agrimony/S Agrippa/M agriproduct/S agriscience/3 agritourism agro-industry/SO Agrobacterium agrobacterium agrobiological agrobiologist agrobiology agrochemical/S agrochemistry agroclimatic agrodespotic agroecosystem/S agroforestry agronomic/S agronomical agronomically agronomy/3SMW agrostology agroterrorism agroterrorist aground agroupment aguardiente ague/MS Aguila/M ah aha/S Ahab/M AHCI ahead ahem/S Ahern/M Ahmari aholehole ahoy/S AI aid/RGDS Aida/M Aidan/M aide-de-camp aide-memoire aide-mémoire aide/MS aided/U aides-de-camp aides-memoire/S aidful aigrette/SM Aiken/M aikido ail/LSDG Aileen/M aileron/MS ailurophile/S ailurophobe/S ailurophobia ailurophobic aim/RGDpSy aimless/YP aimlessness/S ain't ainhum Ainsley/M Ainsworth/M Aintree Ainu air-conditioned air-conditioner air-conditioning air-cooled air-to-air air-to-ground air/mzGTp2ZRMDJS airbag/S airband airbase/S airbed airboat/S airborne airbrick/S airbrush/MGDS airburst/S Airbus/SM aircraft-carrier/SM aircraft/M aircraftman aircraftmen aircraftwoman aircraftwomen aircrew/MS Airdrie airdrop/SDG Airedale/M Aires/M airfare/S airfield/SM airflow/MS airframe/MS airfreight/DSG airgraph airgun/S airhead/SMD airiness/S airing/M airlessness/S airlift/GDMS airline/RMS airling airlock/MS airmail/DMG airmanship airmass airmobile airplay/S airport/MS airscrew/S airship/MS airsick/P airsickness/S airside airspace/MS airspeed/SM airstream/S airstrip/SM airtight/P airtime airwall/S airwaves airway/MS airwoman airwomen airworthiness/S airworthy/TP airy/TP aisle/DGSM aisleless ait aitch/MS aitchbone aitchless Aitken/M ajar Ajax AK AK-47/SM aka akasha/W Akihito/M akimbo akin Akira/M Akita/S Akkad/M Akkadian/S Akron/M Akshaya/M Al-Anon al-Haili Al-Haili Al-Jazeera al-Jazeera al-Qa'ida/M Al-Qa'ida/M al-Qaeda/M Al-Qaeda/M al-Sharif Al-Sharif Al-Zawahiri al-Zawahiri al/AFC Al/M Alabama/M Alabamans Alabamian/M alabaster/SM alack alacrity/SM Aladdin/M Alain/M Alameda Alamo/S Alamogordo Alan/M alanine/M Alaric/M alarm/3DGkS alarmism alarmist alas/S Alaska/M Alaskan/S Alastair/M alba/M albacore/SM Albania/M Albanian/MS Albans Albany albatross/MS albedo/MS Albee/M albeit Albert/M Alberta/M Alberto/M albinism/SM albino/SM Albion/M albitic Albrecht/M album/MS albumen/SM albumin/MS albuminous albuminuria Albuquerque/M Alcatraz/M alchemise/SDG alchemize/SDG alchemy/W3SMw Alcoa alcohol/MW1S alcoholic/SM alcoholism/MS alcove/DSM Aldebaran aldehyde/MS Alden/M alder/mM5S Alderney/M Aldiss/M aldose aldosterone Aldrich/M Aldridge/M Aldus ale/SM aleatory Alec/M Aleck alee alehouse/SM Aleister/M Alejandro/M alembic/MS Alentejo aleph/M Aleppo/M alert/PhSDRTYG alertness/S aleurone Aleut Aleutian/M alewife/M alewives Alex/M Alexa/M Alexander/M Alexandra/M Alexandria/M Alexandrian Alexandro/M Alexia/M Alexis Alf/M Alfa/M alfalfa/SM Alfie/M Alfons/M Alfonso/M Alfred/M Alfredo/M alfresco alga/M algae algaecide algal Algarve algebra/3SM algebraic/Y algebraical algebraist Alger/M Algeria/M Algerian/SM algicide/S Algiers alginate/SM Algol ALGOL Algonquian Algonquin/M algophobia algorism algorismic algorist algorithm/SWM1 algorithmics algose algous algraphy Alhambra/M Ali/M alias/GSD alibi/GSMD Alice/M Alicia/M alicyclic/S alien/NGDMn3S7 alienability alienable/IU alienage alienate/SGD alienation/M alienee/S aliener alienist aliform aligation alight/SGD align/SaDGLA aligned/U aligner/MS alike/P aliment/DGMS alimentary alimony/SM alinement's aliphatic aliquot/S Alison/M alisphenoid/S Alistair/M alive/P aliveness/S alizarin alkali/MS alkaline alkalinity/MS alkalis/QdS alkaloid/SM alkalosis alkane/S alkanet alkene/S alkoxy alkoxyl alkyd/S alkyl/M alkylamine alkylammonium alkylating all-clear all-day all-embracing all-female all-important all-in all-in-one all-inclusive all-inclusiveness all-independent all-instrumental all-knowing all-male all-night all-out all-pervading all-powerful all-purpose all-round all-rounder all-star all-time all/MSc Allah/M allamanda/S Allan/M allay/GSD Allcock/M Allee/M allegation/M allege/NShnDG Allegheny/S allegiance/SM allegiant allegoricalness allegorising allegory/1MWS3w allegretto/MS allegri allegro/MS allele/SMW alleluia/S allemande/M Allen/M Allendale Allentown allergen/MSW allergy/3W1SM alleviate/SVDnGN alleviation/M alleviator/SM alley-oop alley/MS alleyway/MS alliance/aMS Allianz/M allier allies/M alligate/SGD alligation alligator/MS Allis Allison/M alliterate/nNVSvDG alliteration/M allium/S allocable allocatable/C allocate/CDnAGSKN allocated/U allocation's/CKA allocation/c allocative allocator's/C allocator/KSC allogeneic allogenic allograft/S allometry/W allopath allopathic allopathist/S allopathy allopatric allopatry allophone/MSW allophonically alloplasty/W allopolyploid/Z allopurinol allosaurus/S allosteric allosterically allot/SLGD allotrope/WM allots/A allotted/A allotter/M allotting/A allow/7DSGhl allowable/P allowance/MS allowed/E allowing/E allows/E alloxan alloy/SGMD alloyed/U allozyme allseed allspice/M Allstate allude/vDGVuXSN allure/LDkGS allusion/M allusive/P allusiveness/S alluvia alluvial alluvions alluvium/SM ally/SGD allée/S Alma almagest almanac/MS almandine Almere/M almighty/P almond/SM almoner/MS almost alms/m almshouse/MS alnico aloe/SM Alofi/M aloft aloha/MS alone/P along alongshore alongside aloof/PY aloofness/S alopecia aloud alp/M alpaca/SM Alpert/M alpha/SM alphabet/sQ-SW89q1Mw alphafetoprotein alphanumeric/YS alphanumerical Alphonse/M alpine/S Alpinist/MS alprazolam Alps already Alresford/M alright Alsace/M Alsatian/S Alsation/SM also also-ran/S alstroemeria Alt alt-rock Altai/M Altaic/M Altair/M altar/SM altarpiece/SM altazimuth alter/dS7 alterable/UI alteration/SM altercate/nN altercation/M altered/U alterer/S alternant/S alternate/NVvuSDGYn alternation/M alternative/PMS alternator/SM Althea/M although altimeter/MS altimetry/W altitude/SM alto/SM altocumuli altocumulus altogether Alton/M altostratus altruism/SM altruist/1MSW ALU alum/SM alumina/SM aluminium/M aluminosilicate/S alumna/M alumnae alumni alumnus/MS alundum Alva/M Alvarez alveolar/YS alveolate alveoli alveolus/M Alvin/M always Alyssa/M alyssum/S Alzheimer/M am/A AMA Amadeus/M Amalfi amalgam/nVSM amalgamate/SDG amalgamation/M Amalie/M Amanda/M amanuenses amanuensis/M amaranth/SM amaretto/S Amarillo/M amaryllis/SM amass/GDS amasser/M amassment/S amateur/MS amateurish/PY amateurishness/S amateurism/SM amatriciana amaurosis amaurotic amaze/LDhkGS amazon Amazon/MS Amazonas Amazonia Amazonian ambassador/SM ambassadorial ambassadorship/MS ambassadress/SM amber/MS ambergris/MS amberjack Amberley/M ambiance/SM ambidexterity/SM ambidextrous/Y ambience/M ambient ambifix/S ambiguity/SM ambiguous/UY ambiguousness/M ambisexual/Y ambisonic/S ambit/NMX ambition/M ambitious/UY ambitiousness/SM ambivalence/SM ambivalent/Y amble/KS ambled ambler/MS Ambleside ambling amboyna ambrose ambrosia/MSo ambrosial ambulance/MS ambulanceman ambulancemen ambulant/S ambulate/SNyDGn ambulation/M ambulatory/S ambuscade/SMDG ambuscader/M ambush/RSGDM AMD Amdahl/M Amelia/M ameliorate/DGnNVS amelioration/M amen/dgl7S amenability/SM amend/LDSG7 amender/M amends/M amener amenity/SM amenorrhoea/M Amerada amerce/SGLD America/MS American/Qq-8MS Americana Americanism/S americium/SM Amerindian Ames amethyst/SM amethystine Amfreville Amherst/M Ami amiability/SM amiable/YTP amicability/MS amicable/PY amid amide/MS amidship/S amidst Amiga/SM AmigaOS amigo/MS amikacin amine/S amino/M aminobenzoic aminoglycoside/S aminohydrolase aminophylline amir's Amish/M amiss Amit/M amitosis amitotic amitotically amitriptyline amity/MS Amman/M ammeter/SM ammo/SM ammonia/SM ammoniac ammoniacal ammoniated ammonite/S ammonium/M ammonoid/S ammunition/SM amnesia/MS amnesiac/SM amnesic amnesty/DSGM amniocenteses amniocentesis/M amnion/MS amniotic Amoco/M amoeba/MSW amoebae amoebiasis amoeboid amok among amongst amontillado/SM amoral amorality/SM amorallym amorous/PY amorousness/S amorphous/PY amorphousness/S amortise/nSGD amortised/U amortize/nNSGD Amos amount/MSGD amour/MS amoxicillin amoxycillin amp/SYGMD amperage/SM ampere/MS ampersand/SM amphetamine/MS Amphibia amphibian/MS amphibious/PY amphibole/S amphibology/MS amphibrach/W amphipod/S amphitheatre/SM amphora/M amphorae amphoteric amphotericin amphoterism ampicillin ample/PT Ampleforth/M amplification/M amplify/NDRGSn amplitude/SM ampoule/MS ampulla ampullae amputate/DNSGn amputation/M amputee/SM Amsterdam/M Amstrad/M amt. Amtrak/M amu amuck amulet/MS amuse/RSkLVhDG amused/U amusing/P Amy/M amygdala amygdalae amygdaloid amyl/M amylase/MS amylopectin amylose an/CS Ana/M Anabaptist/MS anabiosis anabiotic anabolic anabolism/MS anachronism/SM anachronistic/Y anaclitic anaconda/SM Anacreon/M anacreontic/S anadromous anaemia/SM anaemic/Y anaerobe/MW1S anaesthesia/MS anaesthesiology/M3S anaesthetic/YMS anaesthetise/RnSGD anaesthetist/MS anaesthetize/NRDSGn anagen anaglyph/SMW anagram/GMDS anagrammatic/Y Anaheim/M Anakin/M anal-sadism anal-sadistic anal/Y analecta analects analeptic/S analgesia/MS analgesic/S analogous/PY analogousness/S analogue/SM analogy/SQ8M1w analphabetic analysable analysand/MS analysandum analysation analyse/GWDS analysed/aU analyser/S analysis/M analyst/SM analyte/S analytic/YS analytical analyticity/S analytics's anamorphic anamorphoses anamorphosis anapaest/WSM anaphase anaphora/1WM anaphrodisiac/S anaphylactic anaphylaxis anaplasmosis/M anarchism/SM anarchist/W anarchy/3Ww1SM Anastasia/M anastigmatic anastomose/SGD anastomosis/M anastomotic anathema/MQ8S Anatolia/M Anatolian/S anatomy/Q813wSWM Ancaster/M ancestor/MS ancestral/Y ancestress/SM ancestry/SM ancho/S anchor/m5dSM anchorage/MS anchoress anchoret/W anchorite/SWM anchoritism/M anchorpeople anchorperson/S anchovy/MS ancient/TPYS ancientness/S ancillary/S Ancyra/M and/DG Andalusia/M Andalusian/S Andaman/M andante/S Andean/M anders Andersen/M Anderson/M Andes andesite andesitic Andie/M andiron/MS Andorra/M Andorran/S Andover/M andradite Andre/M Andrea/SM Andrei/M Andrew/MS androcentric androcentrism androcracy/S androcratic androecia androecial androecium androgen/MSW androgenetic androgyne/S androgynous androgynously androgyny/MS android/SM andrologist andrology Andromache/M Andromeda Andromedae andropause/O androsterone André/M Andy/M anecdotal anecdote/SMo anechoic anemometer/SM anemometric anemometry/M anemone/MS anemophilous anemophily aneroid aneurysm/OSM anew Ang/M angel/S1wMW Angela/M Angeles angelfish/SM angelica/MS Angelika/M Angelina/M Angelo/M angelology Angelou/M Angelus angelus anger/MdS Angie/M angina/MS angiogenesis angiogram/S angiographer/S angiographic angiographically angiography angioneurotic angioplasty/S angiosperm/SM angiospermous angiotensin Angkor/M angle/MRSJGD anglepoise anglerfish/S Anglesey/M angleworm/MS Anglia/M Anglican/MS Anglicanism/M anglicise/nSGD Anglicism/S anglicize/nNSGD angling/M Anglo Anglo-Boer Anglo-French Anglo-Indian Anglo-Irish Anglo-Irishman Anglo-Israelism Anglo-Israelitism Anglo-Jewish Anglo-Jewry Anglo-Judaic Anglo-Latin Anglo-Norman Anglo-Russian Anglo-Saxon Anglomania Anglophile/SM Anglophilia Anglophobe/M Anglophobia/M anglophone/MS Anglophonie Anglophony Anglosphere Angola/M Angolan/SM angora/MS angry/PTY angst/MS angstroms Anguilla/M anguish/MDSG angular/Y angularity/MS angulate/SGD angulation/S Angus/M Anhalt/M Anheuser/M anhydride/M anhydrite/M anhydrous/Y aniline/MS animadversion/SM animadvert/GDS animal/Q8S-qM animalcular animalcule/S animalism animality animalness animate/DnASNG animated/Y animately/I animateness's animateness/I animatic/S animation/AM animator/SM animatronic/S anime animism/MS animist/WS animosity/MS animus/SM animé anion/SWM anise/MS aniseed/SM aniseikonic anisette/SM anisotropically anisotropy/MWS Anita/M Ankara/M ankh/SM ankle/GDMS anklebone/MS anklet/MS Ann/M Anna/M Annabelle/M annal/3SM annalen annalist Annan/M Annapolis/M Anne/M anneal/DRGS annelid/MS Annelida Annette/M annex/nDSG annexation/M annexationist/S annexe/M Annie/M annihilate/NSnVDG annihilation/M annihilator/SM anniversary/SM annock annotate/GnNVDS annotation/M annotator/SM announce/RDSLG announced/U annoy/DkRSG annoyance/MS annoybot/S annoyingness annoyware annual/Q8YS annuitant/SM annuity/SM annul/GLDS annular/Y annulate/D annulation/S annulet/S annuli annulus/M annum annunciate/NDnSG annunciation/M annunciator/MS anode/8MQSW anodyne/M anoint/SDGL anointer/M anomalistic anomalous/PY anomaly/SM anomic anomie anon anon. anonym/S anonymisation anonymise/SGD anonymiser/S anonymity/SM anonymization anonymize/SGD anonymous/Y anopheles/M anopheline anorak/SM anorectal anorectic anorexia/MS anorexic/S anorgasmia anorgasmic anorthosite another/M anovulant/S anovulation anoxia anoxic ans/M Anselm/M ANSI/M Anson/M answer/7drSM answerable/U answered/U answerphone/S ant's ant/E antacid/SM antagonise/RSGD antagonism/SM antagonist/WSM1 antagonize/RSDG Antalya/M Antananarivo/M Antarctic/M Antarctica/M antbird/S ante-mortem ante/MW anteater/SM antebellum antecedence/SM antecedent/YMS antechamber/MS antechapel antedate/GSD antediluvian/S antelope/MS antenatal antenatally antenna/SM antennae antennule/S antepartum antepenult anterior/SY anterograde anterogradely anterolateral anteroloph/S anteroom/MS anteroposterior anteverted anthelmintic/S anthem/MdS anther/MS antherozoid/S anthesis anthill/S anthocyanin anthology/Q8SM3 Anthony/M anthophilous Anthozoa anthozoan/S anthracene anthraces anthracite/MS anthracosis anthrax/M anthropic/a Anthropocene anthropocentric anthropocentrically anthropocentrism anthropogenic/Y anthropoid/S anthropology/31wMS anthropometric/S anthropometry/WM anthropomorphic/Y anthropomorphise anthropomorphising anthropomorphism/SM anthropomorphize anthropomorphizing anthropomorphous anthropophagi anthropophagous anthropophagously anthropophagus anthropophagy anthropophilic anthurium/S anti-abortion anti-abortionist/SM anti-ageing anti-aircraft anti-American anti-Americanism anti-apartheid anti-British anti-capitalism anti-capitalist anti-Christian anti-constitutional anti-corruption anti-democratic anti-emetic/S anti-establishment anti-feminism anti-feminist anti-fraud anti-gay anti-government anti-gravity anti-hero/M anti-heroes anti-hunt/G anti-infective anti-inflammatory anti-intellectual/S anti-lock anti-magnetic anti-nuclear anti-personnel anti-piracy anti-racism anti-racist/S anti-Semitic anti-Semitism/M anti-slavery anti-tank anti-tetanus anti-war anti-Western anti/S antialiasing antianxiety antibacterial/S antiballistic antibiosis antibiotic/MS antiblack antiblackism antibody/MS antibubble antic/GMDS anticancer anticathode/S anticellulite anticholinergic/S anticholinesterase Antichrist/S anticipate/NnySvVGD anticipated/U anticipation/M anticlerical/S anticlericalism anticlimactic/Y anticlimax/MS anticline/MS anticlockwise anticoagulant/S anticoagulation/M anticommunism/SM anticommunist/MS anticompetitive anticonvulsant/S anticyclone/SMW antidemocratic antidepressant/SM antidevelopment antidiabetic antidiarrhoeal antidisestablishmentarian/S antidisestablishmentarianism/M antidiuretic antidote/SDMG antiepileptic/S Antietam/M antifascist/SM antifeedant/S antiferromagnetic antifog/G antiformant antifouling antifreeze/MS antifundamentalist/M antifungal antigen/MSW antigenicity/SM antiglobalisation antiglobalization Antigone antigravity Antigua/M Antiguan antihistamine/MS antihistorical antihypertensive antiknock/SM Antilles/M antilog/S antilogarithm/MS antilogy/S antimacassar/MS antimalarial/S antimatter/MS antimicrobial/S antimilitarism antimilitarist/S antimissile/S antimonide antimony/M Antin/M antineoplastic antinomian/S antinomianism antinomy/M antinovel/S Antioch/M Antiochus antioxidant/MS antiparallel antiparasitic antiparticle/SM antipasti antipasto/MS antipathy/SMW antipattern/S antiperspirant/SM antiphon/MSo antiphonal/S antipodal/S antipode/SM antipodean/S antipruritic/S antipsychotic/S antipyretic/S antiquarian/MS antiquarianism/MS antiquark/S antiquary/SM antiquate/GSD antiquation/M antique/MSDNG antiquity/SM antiredeposition antiresonance/M antiresonator antiretroviral/S antirrhinum/S antiscience antiscorbutic/S antisense antisepses antisepsis/M antiseptic/SY antisera antiserum/M antislavery antisocial/Y antispam antispasmodic/S antistatic Antisthenes antistrophe/S antisubmarine antisymmetry/W antitank antiterror antiterrorism antiterrorist antitheses antithesis/M antithetic/Y antithetical antithyroid antitoxic antitoxin/SM antitrust/M antitruster antitumour antitussive antitype/S antitypical antiulcer antivenene antivenin/SM antivenom/S antiviral/S antivirus antivivisection antivivisectionism antivivisectionist/S antiworm Antje/M antler/MS antlered Antoine/M Antoinette/M Anton/M Antonio/M antonomasia antonym/SM antonymous antra antral Antrim/M antrum ants antsier antsiest Antwerp/M Anubis/M Anunnaki anuran/S anus/MS anvil/DGSM anxiety/SM anxiolytic/S anxious/PY anxiousness/S any anybody/SM anyhow anyone/M anything/M anytime anyway anywhere anywise AOL/M aorist aorta/WSM APA apace Apache/SM Apalachicola apart/PL apartheid/M apathetic/Y apathy/MSW apatite/SM apatosaurus APC ape/M1GwSD aped/A apelike Apelles/M apeman apemen Apennines aper/A aperiodic/Y aperiodicity/M aperitif/S apertural aperture/DMS apetalous apex/SM aphasia/SM aphasic/S aphelia aphelion/SM aphid/MS aphonic aphorism/MS aphoristic/Y aphrodisiac/SM Aphrodite/M API/S Apia/M apiary/S3M apices apices's apiece apish/YP aplenty aplomb/SM apnoea APO apocalypse/WMS apocalyptically apocrypha/oM apocryphal/P apogee/SM apolar apolitical/Y Apollo/M Apollonian apologetic/SY apologetics/M apologia/SM apology/SQ8s9M3 apolune apomictic apomixis apophasis apophthegm/SM apophyllite apoplast apoplastic apoplectic apoplexy/SM apoprotein/S apoptosis apoptotic aposematic aposematism apospory apostasy/SM apostate/QMS8 Apostille apostle/MS apostlebird/S apostleship/MS apostolate/S apostolic apostrophe/Q8SM apothecary/MS apothem/S apotheoses apotheosis/M apotheosized apotheosizes apotheosizing apozem/S app/S appal/DSGk Appalachia/M Appalachian/MS appaloosa/S appanage/M apparat apparatchik/S apparatus/SM apparel/DGMS apparent/PY apparently/I apparition/SM appeal/GDSkM appealable appealer/M appealing/U appear/GADSE appearance/AMES appearer/SM appease/SDRLG appeased/U appellant/SM appellate/NVvn appellation/M appellative/SM append/SGRD appendage/SM appendectomy/SM appendices appendicitis/MS appendicular appendix/MS apperception apperceptive appertain/SDG appetiser/SM appetising/UY appetite/VSM appetizer/SM appetizing/UY Appiah/M Appian applaud/RSDG applause/MS apple-pie apple/YSM Appleby/M AppleScript/S applet/S Appleton/M appliance/SM applicabilities applicability/MI applicable/Y applicant/SM application/AM applicator/SM applied/Aa applier/aM applies/Aa appliqué/SMG appliquéd applistructure/S applotment apply/vnNRGDSV applying/a appoggiatura/S appoggiature appoint/RLSVDG appointed/EA appointee/SM appointing/E appoints/EA Appomattox apportion/LADSG apposite/Yx appositeness apposition/M appraisable appraisal/AMS appraise/AGSD appraisee/S appraisement appraiser/MS appraising/Y appraisive appreciable/YI appreciably/I appreciate/vyGVDNnuS appreciated/U appreciation/M appreciative/IYP appreciator/MS apprehend/DvNVSGuX apprehended/a apprehender/M apprehending/a apprehends/a apprehensible apprehension/aMS apprehensive/P apprehensiveness/S apprentice/DSGM apprenticeship/SM apprise/kSGD approach/BRGDS approachability/M approachable/U approbate/Nn approbation/MES appropriable appropriacy/S appropriate/GnaDNS appropriately/I appropriateness/ISM appropriation/M appropriative appropriator/SM approval/MES approve/RkEGSD approved/U approx approximate/GVNSvDYn approximation/M appurtenance/MS appurtenant Apr apricot/MS April/MS apron/SM aproned apropos après-ski/G apse/SM apsis/M apt/TPY aptitude/SM aptly/I aptness/IS APU aqua/MS aquaculture/MS aqualung/MS aquamarine/SM aquanaut/SM aquaplane/MDGS aquarelle/S aquaria Aquarian/S aquarium/SM Aquarius/M aquarobics aquatic/YS aquavit/SM aqueduct/SM aqueous/Y aquiculture's aquifer/MS Aquila aquiline Aquinas Aquitaine/M aquittal Arab/MS arabesque/MS Arabia/M Arabian/SM Arabic/M Arabically Arabicism Arabidopsis arability/MS arabin arabine arabinogalactan arabinogalactane arabinose arabinoside arabis Arabism Arabist/S arable/S arachnid/SM Arachnida arachnoid/M arachnophobia Arafat/M Aragon/M aragonite aragonitic Aral/M araldite Aramaic araneid/S araneous Arapaho/M Ararat/M Araucanian/S Arber/M arbiter/MNnS arbitrage/DGRSM arbitrageur/S arbitral arbitrament/MS arbitrariness/S arbitrary/PY arbitrate/VSGD arbitration/M arbitrator/MS arboreal/Y arboretum/SM arboriculture/O3 arborist arborvitae/SM arbour/MDS arbovirus/S Arbroath/M arbutus/MS arc/SMDG arcade/SDGM Arcadia/M Arcadian arcana/M arcane/Y arcaneness arcanum Arcata/M arccos arccosine arch-enemy/SM arch/yTDRYSPGM archaea Archaean archaean/S archaebacteria archaebacterial archaebacterium archaeoastronomy archaeologic archaeology/w3SM1 archaeomagnetic archaeomagnetism archaeopteryx archaic/Y archaicness archaise/RDSG archaism/MS archaist/MS archangel/MSW archbishop/MS archbishopric/SM archboard archdeacon/yMS archdevil/S archdiocesan archdiocese/MS archducal archduchess/SM archduchy/S archduke/MS archegonia archegonium archery/M archetypal archetype/wMS archfiend/MS archfool Archibald/M Archie/M archiepiscopacy/S archiepiscopal archiepiscopate Archimedes arching/M archipelago/SM archipelagoes architect/SM architectonic/SY architectonics/M architectural architecture/oSM architrave/SM archival archive/DRS3MG archivolt/S archness/S archosaur/S archpriest/S archway/SM arclike ARCO arcology/S arcsin arcsine arctangent arctic Arctic/M arctophile/S arctophilia arctophilist arctophily Arcturus Arden/M ardency/M Ardennes ardent/Y ardour/SM Ards/M arduous/YP arduousness/S are/B area/MS areal areawide aren't arena/MS arenaceous arenavirus/S arenosol/S areola areolae areolar areolate areole/S areological areologist/S areology Ares Aretha/M argent/M Argentina/M Argentine/SM Argentinian/S arginine argon/M Argonaut/SM Argos argosy/MS argot/SM arguable/YIU arguably/IU argue/7DRSG argued/e argues/e arguing/e argument/SnMN argumentation/M argumentative/PY argumentativeness/S argumentless Argus argy argy-bargy/SD Argyll/M argyrophilic aria/SM Ariadne/M Arial Arian/SM Ariana/M Arianism/M arid/PY aridity/SM Ariel/M Aries/M aright aril/S arillate arise/SGJ arisen ariser aristo/S aristocracy/SM aristocrat/WM1S Aristophanes Aristotelian/SM Aristotle/M arithmetic/YM arithmetical arithmetician/MS arithmetise/SGD arithmetize/SGD Arizona/M ark/MS Arkansan/S Arkansas/M Arkwright/M Arlen/M Arlene/M Arlette Arlington/M arm's arm-wrestle arm-wrestling arm/RELGDS armada/SM armadillo/SM Armageddon/M Armagh/M Armagnac armamentaria armamentarium Armani/M armature/DMGS armband/MS armchair/SM Armco armed/UA Armenia/M Armenian/MS armful/SM armhole/SM arming/M Arminian/S Arminianism armistice/MS armless armlet/SM armload/MS armlock/S armoire/S Armonk/M armorial armour-plate/D armour/SRDGMZ armoury/SMD armpit/MS armrest/SM arms/Afc Armstrong/M army/MS Arne/M Arnold/M aroma/WSM1 aromantic/S aromanticism aromatherapeutic aromatherapist/MS aromatherapy/S aromatic/PS aromaticity/M arose around arousal/SM arouse/SDG ARPA Arpanet/M arpeggio/SM arr arrack/M arraign/LGDS arrange/LRSDG arrangeable arranged/EKA arranges/AEK arranging/AEK arrant/Y arras/M array/EGMSD arrayer arraylike arrearage arrears arrest/Rk7DGS arrested/A arrestee/SM arrestor/SM arrests/A arrhythmia/SM arrhythmic arrhythmical Arriaga/M Arriva/M arrival/MS arrive/GSD arriver/M arrivisme arriviste/S arrogance/SM arrogant/Y arrogate/DNGnS arrogation/M arrondissement/S arrow/MGSD arrowgrass arrowhead/SM arrowroot/MS arroyo/MS arse-licker arse-licking arse/SGD arsehole/SD arsenal/SM arsenate/MS Arsenault/M arsenic/SM arsenide/M arsenopyrite arsewipe arsine/MS arson/3SM arsonist arsphenamine art/6MjZ32pS Artaud/M Arte artefact/SM artefactual Artemis artemisia/S arterial arteriolar arteriole/SM arterioscleroses arteriosclerosis/M arteriovenous artery/MSo artesian artful/P artfulness/S arthralgia arthritic/S arthritides arthritis/M arthrogram/MS arthroplasty arthropod/MS Arthropoda arthroscope/SW arthroscopy Arthur/M Arthurian artichoke/SM article/MSDG articulable/I articulacy/I articular articulate/nPSGyYDNV articulated/EU articulately/I articulateness/S articulation/M articulator/MS Artie/M artifice/oMRS artificial/P artificiality/SM artillery/3mSM artiness/S artiodactyl/S artisan/MS artist/W1y artiste/MS artistic/IY artistry/MS artless/YP artlessness/S Arturo/M artwork/MS arty/3TP Aruba/M arum/MS Aryan/SM Aryeh/M aryl arytenoid/S arête/MS as asana/S asap Asaph/M asbestos/SM asbestosis ASBO/S ascaris ascend/RXDGSN ascendancy/MS ascendant/Y ascended/A ascendency ascends/A ascension/M ascent/MS ascertain/L7SDG ascetic/MYS asceticism/SM Ascher/M ascidian/S ASCII ascorbate/S ascorbic Ascot/M ascribable ascribe/NDGXSV ascription/M asepsis aseptic/Y asexual/YS asexuality/SM Asgard/M ash/SMDGZ ashamed/UY Ashanti/M Ashbee/M ashen asher Asheville/M Ashford/M Ashgabat/M Ashgate/M Ashland/M ashlar/dSM Ashley/M Ashmolean Ashmore/M ashore ashram/SM ashtanga Ashtar Ashtaroth/M Ashton/M ashtray/SM Ashworth/M ashy/T Asia/M Asian/SM Asiatech/M Asiatic/MS aside/S asimilar Asimov/M asinine/Y asininity/SM ask/DRSG askance asked/U askew askewness ASL aslant asleep Asmara/M asocial asp/MWS asparagine asparagus/SM aspartame/S aspartate/S aspect/MSGD AspectJ aspectual Aspell aspen/MS asperity/SM aspersion/SM asphalt/SGDM asphalter aspheric/Y aspherical asphodel/SM asphyxia/MSn asphyxial asphyxiant/S asphyxiate/SDG asphyxiation/M aspic/MS aspidistra/SM aspirant/SM aspirate/SGD aspiration/M aspirator/SM aspire/xSDnGN aspirer/M aspirin/SM asplenia asplenium Asquith/M ass/S8M Assad/M assail/7DSG assailable/U assailant/MS Assam/M Assamese assassin/NSnM assassinate/SGD assassination/M assault/GSVuMvD assaulter/M assay/GDRS assemblage/SM assemble/SGREDY assembled/AU assembles/A assemblies/A assembling/A assembly's/AE assembly/m5SM assen assent/GMSD assenter Asser/M assert/xvuRSDVG asserted/A assertion/MAS assertive/P assertiveness/S asserts/A asses/GD assess/7LS assessed/A assesses/A assessor/SM asset/SM asseverate/SGnDN asseveration/M assibilate/DN assiduity/SM assiduous/PY assiduousness/S assign/RL7DSNGn assignation/M assigned/KACU assignee/MS assigning/K assignor/SM assigns/KCA assimilable assimilate/DSVGnN assimilation/M3 assimilationist Assisi/M assist/SGD assistance/MS assistant/MS assistantship/SM assisted/U assister/M assistive assize/M assn associability associable associate/EDSGnN associateship/S association's/E association/oM associational associationism associationist/S associative/Y associativity/S associator/MS assonance/SM assonant/S assort/GDLS assorter/M asst assuage/LDSG assuaged/U assume/GNXBSDV assumedly assumer/M assuming/U assumption/M assurance/SAM assure/GASkD assured/PY assurer/MS Assyria/M Assyrian/MS Assyriology Astana/M astanga astatine/SM aster/FSEM asterisk/SDGM astern asteroid/SM asteroidal Asteroidea asthenia asthenic asthenosphere/W asthma/WSM asthmatic/S asthmatically astigmatic astigmatism/MS astilbe/S astir Astley/M Aston/M astonish/SLkDG Astor/M Astoria/M astound/kGSD astraddle astragal/S astragali astragalus Astrakhan astral/Y astray astride astringency/SM astringent/YS astro-archaeology astrobiological astrobiologist/S astrobiology astrobleme/S astrochemical astrochemist/S astrochemistry astrocompass astrolabe/SM astrologer/MS astrology/w1MS3 astrometry/W astronaut/WwSM astronautic/S astronautics/M astronomer/SM astronomy/1MWSw astrophotographer/S astrophotographic astrophotography astrophysical astrophysicist/SM astrophysics/M astroturfing astrovirus Asturian/S Asturias astute/TPY astuteness/S Asunción/M asunder ASUS Aswan/M asylee/S asylum-seeker/S asylum/MS asymmetry/WwS1M asymptomatic/Y asymptote/1MSW async asynchronicity/S asynchronism/M asynchronous/Y asynchrony asystole At at/F ATA Atacama/M ATAPI ataractic ataraxia ataraxic ataraxy Atari/M atavism/MS atavist/SMW ataxia/MS ataxic atbash ATC ate/c atelier/SM atemporal atenolol ates Athanasius/M atheism/MS atheist/M1SW athematic Athena/M Athenaeum Athenian/SM Athens/M atherogenesis atherogenic atheroma atheromatous atheroscleroses atherosclerosis/M atherosclerotic Atherton/M athirst athlete/1SMW athletic/S athleticism/M athletics/M Athlon/M athwart atilt Atkin/M Atkins/M Atkinson/M ATL Atlanta/M Atlantean atlantes Atlantic/M Atlantis atlas/MS Atlee/M ATM/MS Atman/M atmosphere/MS1DW atmospheric/S atoll/MS atom/Qs-98MqS atomic/Y atomicity/MS atomics/M atomism atomist/S atomistic atonal atonalism atonalist/S atonality/SM atone/SoLDG atonic atony atop atopy/W atrabilious atrabiliousness atraumatic atrazine atria atrial atrioventricular atrium/MS atrocious/PY atrociousness/S atrocity/SM atrophy/MDWGS atropine/SM attach/SDRL7GM attached/AU attaches/A attaché/S attack/RSDG7M attain/lDRBGLS attainability/MS attainable/P attainably/U attainder/MS attained/AU attainment/A attains/A attar/MS attempt/DRGS attempted/A attempts/A attend/SRGD attendance/MS attendant/MS attended/U attendee/SM attention/ISM attentional/Y attentionality attentive/PIY attentiveness/IS attenuate/GnSDN attenuated/U attenuation/M attenuator/SM Atterbury/M attest/DnGNS attestable attestation/M attested/U attester/M attestor/S attic/MS Attica/M Attila/M attire/DGS attitude/MS attitudinal/Y attitudinise/GDS attorney/MS attornment attract/VuS7DGv attractant/SM attraction/MS attractive/UY attractiveness/SM attractor/SM attributable/U attribute/MxGVvDS attributed/U attributer/M attribution/SM attrition/SMO attune/DSG attunement atwitter Atwood/M ATX atypical/Y au aubergine/MS aubretia/S Aubrey/M aubrietia/S auburn/SM Auchan/M Auckland/M auction/DMGS auctioneer/DSMG AUD audacious/PY audaciousness/S audacity/SM audax/S Audi/M audibility/MIS audible/YI audibly/I audience/SM audio/M audioboard/S audiobook/S audiogram/S audiology/S3Mw audiometer/SWM audiometry/M audiophile/MS audiospectrogram audiospectrograph audiospectrometer audiotape/SGD audiovisual/S audit/dXyMVSN auditability auditable audited/U audition/DMG auditor/MS auditorial auditorium/SM Audra/M Audrey/M Audubon/M Aug auger/MS aught augite augment/NnDRGS augmentation/M augmentative/S augur/dMS augury/SM August's august/YPT Augusta/M Augustan Augustine/M Augustinian augustness/S Augusts Augustus auk/SM auklet/S aunt/ZSM auntie/M aunty/MS aura/WSMo aural aurei Aurelius aureole/MDSG aureomycin aureus auricle/SM auricula/S auricular auriculate auriculotherapy auriferous aurify/SGD Auriga Aurignacian aurora/SM aurorae auroral Auschwitz auscultate/DGSNn auscultation/M auscultatory auspice/SM auspicious/IY auspiciousness/MS Aussie/MS austenite/W austere/YPT austerity/MS Austerlitz/M Austin/M austral Australasia/M Australasian/S australes Australia/M Australian/SM Australis australites australopithecine/S Australopithecus Austria/M Austrian/MS autarchy/WSw autarky/SW autecological autecology auteur/S auteurism auteurist auth/SGD authentic/nNY authenticate/DSG authenticated/U authentication/M authenticator/MS authenticities authenticity's authenticity/I authigenic author/Qs-9d8qSM authorable authoress/S authorial authorise/KA authorised/AU authorises/A authorising/A authoritarian/S authoritarianism/MS authoritative/YP authoritativeness/S authority/SM authorization/M authorize/KA authorized/AU authorizes/A authorizing/A authorship/MS autism/MS autistic auto auto-suggestibility/M autobahn/MS autobahnen autobiographer/SM autobiography/M1SwW AutoCAD/M autocatalysis autocatalyst/S autocatalytic autocephalous autochange/R autochrome/S autoclave/MDSG autocollimator/M autocomplete/SD autocompletion autoconfigure/SGDN autoconfirm/SGDN autocorrect/SDG autocorrelate/GSnDN autocorrelation/M autocracy/SM autocrat/MWS1 autocrime/S autocrine autocross autocue autodetect/SGD autodetection autodial/DGRS autodidact/SMW autodiscovery autoecology autofill autofit/SGD autofluorescence autofocus/d autoformat/SGD autogamous autogamy autogenesis autogenetic autogenic/S autogeny autogiro/MS autograft/S autograph/ZWGMSD autogyro/MS autoharp autohypnosis autohypnotic autoignition/M autoimmune autoimmunity/S autoincrement/SGD autointoxication autokey autokinesis autokinesy autokinetic autokinetical autoland/SG autolaryngoscope autolaryngoscopy autolatry autoload/SGDR autologous autolysis autolytic automagically automata automate/D8NQWGSn1 automatic/S automaticity automation/M automatism/SM automatist automaton/MS automorphism/SM automotive autonomic/S autonomous/Y autonomy/SMW autophagosome autophagous autophagy autophon autophone autopilot/MSd autoplay/SGD autopsy/SMDG autoradiograph/ZWDS autorecover autorecovery autoregressive autorepeat/GS autoresponder autoreverse autorickshaw/S autorotate/SGD autorotation/S autoroute/S autosave/SGD autoscopy autoshaping autosomal autosome/S autostereoscopic autostereoscopy autosuggestion autosuggestion autotest/S autotoxic autotoxin/S autotransformer/MS autotransplant/NDS autotroph/S autotrophic autotrophy autotune/SGDR autotype/S autowind/SGR autowound autoxidation autoxidise/SGD autoxidize/SGD autumn/MoS autumnal autunite Auvergne auxiliary/S auxin/MS auxotroph/SW AV avail/BlSDG availabilities availability/UM available/P availing/U avalanche/GSMD Avalon/M avant avant-garde/3 avant-gardism avarice/MS avaricious/YP Avarua/M avast/S avatar/SM avaunt/S AVCHD ave/S Avebury/M avenge/DGRS avenged/U avens avenue/SM aver/SGD average/GMDSY averageness averment/S Avernus averse/PNXVY aversion/M avert/GbSD Avery/M Aves Avesta avgas AVI avian/S aviary/SM aviate/DGnN aviation/M aviator/MS aviatrices aviatrix/SM avicularia avicularium avicultural aviculturalist/S aviculture aviculturist/S avid/Y avidity/MS avidness avifauna avifaunal avionic/S avionics/M Avis/M avitaminoses avitaminosis/M Aviv/M Aviva/M avocado/MS avocation/MoS avocational avocet/S avoid/RSDGl7 avoidable/U avoidably/U avoidance/MS avoidant avoirdupois/M avoision Avon/M avoparcin avouch/DSG avow/GSED avowal/SEM avowed/Y avower/M Avram/M avulse/SGD avulsion avuncular avunculate AWACS await/SDG awake/SG awaken/dJS awakened/AU awakener/M awakens/A award-winning award/DRGS awardee/S aware/P awareness/U awarenesses awash away awayness awe-inspiring/Y awe/SMDG awed/c aweigh awes/c awesome/YP awesomeness/S awestricken awestruck awful/TPY awfulness/S awhile awing/c awk/S awkward/YPT awkwardness/S awl/SM awn/SMDJG awning/MD awoke awoken AWOL awry/T axe/DmMGS axed/F axehead/S Axel/M axes/F axial/FY axil/S axilla axillae axillary axinite axiology/SM1w axiom/SWM1 axiomatising axiomatizing Axis axis/M axisymmetric axle/SM axolotl/MS axon/MSO axoneme/SO ayah/SM ayatollah/S Ayckbourn/M aye/MS Ayers Aylesbury/M Aymara/S Ayr/M Ayrshire/MS Ayurveda Ayurvedic azalea/MS Azam/M Azania Azanian azarole/S azeotrope/SW Azerbaijan/M Azerbaijani/S Azeri/M AZERTY azidothymidine Azikiwe/M Azilian azimuth/SMo azimuthal Aziz/M Azizur Azores Azov Azrael AZT Aztec/SM Aztecan azulejo/S azure/SM b'day B-film/S B-movie/S b.c.c. B.Sc. b/pb ba Ba BA baa/GSD Baal/M Babbage/M Babbitt/M babble/RGDS Babcock/M babe/SZM babel babesiosis baboon/SM Babs/M babushka/MS baby-doll baby-faced baby/DTMSG babyccino/S babycino/S babyfather/S Babygro/S babyhood/MS babyish/YP Babylon/M Babylonia Babylonian/MS babysat babysit/RSG baccalaureate/SM baccarat/MS bacchanal/SM bacchanalia bacchanalian Bacchanalian/S Bacchus Bach/M bachelor/MS bachelorhood/SM bacillary bacilli bacilliform bacillus/MS back-door back-pedal/GD back-seat back-to-back back-up/S back/eM backache/MS backarrow backbeat/S backbench/SR backbend/S backbite/RS backbiting backboard/SM backbone/MS backbreaking backcast/SG backchaining backchannel/S backchat backcloth/M backcourt/S backcrawl backcross/SDG backdate/DSG backdoor/SGD backdraught backdrop/DSMG backed backer/SM backfield/MS backfill/SGD backfire/GDS backflip/S backflow backgammon/MS background/DRGSM backhand/hRMSGD backhoe/S backing/SM backlash/SDGM backlasher backless backlift backlight/DG backline backlink/S backlist/S backlit backload/DS backlog/DGMS backlot/S backmarker/S backmost backorder backpack/SRDGM backplane/MS backplate/MS backport/SGD backrest/SM backronym/S backs backscatter/dMS backscroll backshift backside/MS backsight/S backslapper/SM backslapping/M backslash/GSD backslid/r backslide/GS backspace/DGS backspin/SM backstabber/M backstabbing/S backstage backstairs backstamp/S backstay/S backstitch/MSGD backstop/MSGD backstory/S backstreet/MS backstretch/MS backstroke/DGMS backstroker/S backtalk/S backtick/S backtrace/SGD backtrack/RGSD backup/MS Backus backward-compatible backward/PSY backwardness/S backwards-compatible backwash/DGMS backwater/MS backwind/SGD backwood/mS backyard/SM bacon/SM baconer/M Baconian/S bacronym/S bacteraemia bacteria/Mo bacterial bactericidal bactericide/MS bacteriology/MwW3S bacteriophage/S bacteriophobia bacteriophora bacteriostasis bacteriostat/S bacteriostatic bacteriostatically bacterium/M bacteriuria bacteroid/S Bactria Bactrian bacula baculovirus/S baculum bad-egg bad-tempered bad/PY baddie/MS baddish baddy bade Baden/M badge/SRGMD badger-baiting badger/d badinage/SDMG badland/S badman/M badmen/M badminton/M badmouth/DGS badness/S Badoo/M badware BAE BAe Baedeker/M Baez/M Baffin/M baffle/RDLGkS bag/2ZzR6MGDS bagatelle/SM bagel/SM bagful/SM baggage/mSM bagged/M bagginess/S bagging/M baggy/TPS baggywrinkle Baghdad/M bagpipe/MRS baguette/MS bagwash bagworm/S bah/S Bahamas/M Bahamian/S Bahnson/M Bahrain/M baht Baikal/M bail/7MDGS bailee/MS bailer Bailey/M bailey/S bailiff/MS bailiwick/SM bailment bailor bailout/MS bails/m bain-marie/S Bain/M Baird/M Bairiki/M bairn/SM bait/SMGD baitcaster/S baitcasting baiter/M baitfish baize/M Baja/M bake/RGSDy baked/U bakehouse/M Bakelite/M Bakersfield/M bakery/MS bakeware baking/M baklava/M baksheesh/MS Baku/M Bakula/M balaclava/MS balalaika/MS balance/DMIS balanced/cAeU balancedness balancer/SM balances/cAeU Balanchine/M balancing/AcUe balanitis balboa/MS balcony/DSM bald/PGYTDZ balder/W balderdash/SM baldness/S baldric/M Baldry/M Baldwin/M bale/R6GjSMD Balearic/M baleen/SM baleful/TP balefulness/S Balfour/M Balharry/M Bali/M balibuntal Balinese/M balk/SD Balkan/SM balkanise/GSnD balkanize/GSnND ball-bearing/S ball/DRGSM Balla/M ballad/MyS ballade/MS balladeer/MS balladry/SM Ballagh/M Ballard/M ballast/SMGD ballastless ballboy/S ballcock/S ballerina/MS ballet/MWS ballfields ballgame/S ballgirl/S ballgown/S Balliol/M ballistic/S ballistically ballistics/M Ballmer/M balloon/3RSMDG balloonist ballot/dMS balloter/M ballotine/S ballpark/MS ballplayer/SM ballpoint/MS ballroom/SM balls/Z ballsy/T ballyhoo/MDGS Ballymena/M Ballymoney/M balm/M2ZS balminess/S Balmoral/M balmoral/S balmy/TP balneological balneologist/S balneology balneotherapy Balog/M baloney/SM Balrog/M balsa/SM balsam/dMS balsamic Baltic/M Baltimore/M Baltistan/M Baluchistan/M balun baluster/MS balustrade/MS balustraded Balzac/M Bamako/M Bamber/M Bambi/M bamboo/SM bamboozle/GDS ban/SoRMDG banal banality/SM banana/MS bananaquit/S banausic Banbridge/M Banbury/M bancassurance bancassurer/S Bancroft/M band/DmGZSM bandage/SDMG bandager/M bandanna/M Bandar/M bandbox/SM bandeau/M bandeaux banded/E bander/M bandfish bandicoot/S banding's banding/E bandit/MS banditry/SM banditti bandleader/S bandmaster/MS bandmate/S bandoleer/SM bandolero/S bandoneon bandpass/S bands/E bandstand/SM bandstop bandwagon/SM bandwidth/SM bandy-bandy bandy-bandys bandy-legged bandy/DTSG bane/M6j baneful/T bang/RMDGS Bangalore/M Bangkok/M Bangladesh/M Bangladeshi/M bangle/SM Bangor/M Bangui/M banish/GSLD banisher/M banister/SM banjo/SM banjoist/MS Banjul/M bank/S7RGJMD bankassurance bankbook/MS bankcard/S banking/M banknote/S bankroll/GSDM bankrupt/GSDM bankruptcy/SM banner/d Bannerman/M bannister/SM bannock/MS Bannockburn banns banquet/rdSM banquette/MS bans/U banshee/SM bantam/SM bantamweight/MS banter/kdS banterer/M Bantu/M banyan/SM banzai/S baobab/MS bap/S Baphomet baphometic baptise/DRSG baptism/oSM baptismal baptist/SM baptistery/SM baptistry's baptize/SGD bar's bar-room/MS bar/CDESUG Barack barb/SRGMDi Barbados/M Barbara/M barbarian/SM barbarianism/MS barbaric/Y barbarise/GDS barbarism/SM barbarity/MS barbarize/DSG barbarous/YP Barbary barbecue/DSMG barbecuer barbedwire/MS barbel/SM barbell/MS barber/dy barberry/SM barbershop/SM barbet/S Barbette/M barbette/S barbican/S Barbie/SM barbital/M barbiturate/SM Barbour/M Barbuda/M barbule/S barcarole/SM barcarolle Barcelona/M barchan/S Barclay/M Barclaycard Barclays/M barcode/SD bard/MSDGW bardolater/S bardolator/S bardolatry Bardstown/M bare-foot/D bare/YPDTSG bareback bareboat barefaced/YP barefoot/D barehanded bareheaded Bareket barelegged Barends bareness/S Barents barf/SYGD barfly/SM bargain-basement bargain/DGRSM barge/DmMSZG bargepole/M bargy/DS barhop/GSD bariatrics baritone/MS barium/M bark/MDRGS barked/C barkeep/RS Barkley/M barks/C barley/MS barleycorn/SM Barlow/M barmaid/SM barman/M barmbrack barmen/M barmy/PYRT barn/MDS6G Barnabas barnacle/DMS Barnard/M Barnes Barnet/M Barnett/M Barney/M barney/S barns/6 Barnsley/M Barnstaple/M barnstorm/GRDS Barnum/M barnyard/M Baroda/M barometer/MS1W baron/MS baronage/MS baroness/SM baronet/SM baronetcy/SM baronial barony/MS baroque/SYM baroqueness barotrauma barouche/S barque/MS Barr/M barrack/SGD barracker/M barracouta/S barracuda/SM barracudina/S barrage/SMDG barramundi/S Barranquilla barrator/S barratrous barratry Barratt/M barre/SMJ barrel/GMDS barrelfish/S barrelhead/S barren/P barrenly barrenness/S barrenwort/S Barrett/M barrette/MS barricade/GDSM Barrichello/M Barrie/M barrier/MS Barrington/M barrio/MS barrique/S barrister-at-law barrister/MS Barron/M Barroso/M Barrow Barrow-in-Furness barrow/SM Barry/M Barrymore/M Barsky/M barstool/SM Barstow/M Bart/M bartend/SGD bartender/SM barter/rdS Barth/M Barthes/M bartholinitis Bartholomew/M Bartlett/M Bartley/M Barton/M Bartók/M barwing/S Barwood/M barycentre/SMW baryon/MS baryonic bas-relief/S bas/Sd1o basal basalt/WSM base/mYPpLMT baseball/SM baseband baseboard/MS baseborn based/C Basel/M baselessly baselessness baseline/SM baseload baseness/S baseplate/M baser/C baserunner/S bases/C basetting bash/Sj6DG basher bashful/P bashfulness/S bashism/S basic/SM basicity basil/SM basilar Basildon/M basilect/MS basilectal basilica/SM basilican basilisk/SM basilosaurus basin/6MS basinal basined basinful/S basing/C Basingstoke/M basioccipital basipetal/Y basis/M bask/GSD basket/6SMy basketball/MS basketmaker/S basketmaking basketry/SM basketwork/SM basmati basophil/SW basophilia Basotho Basque/MS bass/S3M Basse-Terre/M basset/MS Basseterre/M Bassett/M Bassey/M bassinet/MS bassline/S basso/S3M bassoon/3MS bassoonist basswood/SM bast/DRGM bastard/Q8q-MSYZ bastardy/M baste/nSN Bastien/M Bastille/M basting/M bastion/MD Bastogne bat/FdMS Batavia/M batch/DSGM batcher bate/CDASG Bateman/M bater/C batfish/S bath/SRGMD bathe/S bathetic bathhouse/MS bathmat/S bathos/MS bathrobe/MS bathroom/DMS bathtub/SM bathwater bathymeter/SW bathymetry bathypelagic bathyscaphe's bathysphere/MS batik/SM batiste/SM batman batmen baton/SM Bator/M batrachian bats/m batsmanship battalion/MS batted batten/MdS batter/dZMS batterer/S battery/MS Battilana/M batting/M battle-cry battle/RDLMSG battleaxe/S battlebus/S battlecruiser/SM battledore/SM battledress battlefield/MS battlefront/MS battleground/SM battlement/D battleship/SM battlespace battue/S batty/T batwing batwoman batwomen bauble/MS baud/M Baudot/M Baudrillard/M Bauer/M Bauhaus/M baulk/GZSMD2 baulker/M baulky/TP Bausch/M bauxite/M Bavaria/M Bavarian/SM bawd/2ZSMz bawdiness/S bawdy/TP bawl/DGS bawler/M Baxter/M bay/GMDS Bayamón Bayard/M bayberry/MS Bayer Bayern Bayes/M Bayesian Baykal/M Baylor/M bayonet/dMS Bayonne/M bayou/SM bayside bazaar/MS bazillion/S bazooka/SM BBC/M bbl BBQ BBS/S bc BC bcc BCD BCE BCG BD-R/S BD-RE/S BD-ROM/S BD-XL Bdr bdrm BDXL be/Y Bea/M beach/GSDM beachcomber/SM Beachcroft/M beachhead/MS beachside beachwear/M beachy/TP beacon/dSM beaconfish/S bead/ZSMDmJG beading/M beadle/MS beadwork beadworker beady/T beagle/DGSM beagler/S beak/MDRS beakhead Beale/M beam-width beam/SRGMD bean/DRGSM beanbag/SM beanfeast/S beanie/SM beano beanpole/MS beanstalk/MS bear-baiting bear/JlRSG7 bearable/U bearably/U beard/pSGiDM beardfish/S Beardsley/M beargrass bearing's bearing/c bearish/YP bearishness/S bearlike bears/c bearskin/SM beast/YSMJ beasties beastings/M beastliness/S beastly/TP beat/SlRG7J beatable/U beatably/U beatbox/GSr beaten/U beatification/M beatify/WDGnS1N beating/M beatitude/MS Beatles beatnik/MS Beatrice/M Beatson/M Beatty/M beau/SM Beauchamps Beaufort/M Beaujolais Beauman/M Beaumont/M Beaussier beaut/MZS beauteous/PY beautician/MS beautification/M beautify/WNRSDnG beauty/jSM6 beaux/M beaver/dSM Beaverbrook/M Beaverton/M bebop/SM becalm/DGS became becaplermin because beck/SMDG Beckenham/M Becket/M becket/S Beckett/M Beckham/M Beckmann/M beckon/Sd Beckton/M Becky/M becloud/SDG become/SGk becoming/UY Becquerel BECTa bed's bed-wetting bed/F bedaub/DSG bedazzle/DLSG bedbug/SM bedchamber/SM bedclothes beddable bedded bedder/SM bedding/SM Bede/M bedeck/DGS Bedell/M bedevil/LDGS bedfellow/SM Bedford/M Bedfordshire/M bedhead/S bedight bedim/GSD bedizen/Sd bedjacket bedlam/SM bedlamp/S bedlinen bedload bedmaker/SM bedmate/SM Bedouin/M bedpan/MS bedplate bedpost/SM bedraggle/DSG bedridden bedrock/SM bedroll/MS bedroom/SDM beds bedsheets bedside/MS bedsit/S bedsitter/M bedsock/S bedsore/SM bedspread/MS bedspring/SM bedstead/MS bedstraw/MS bedtime/SM Bedu Bedworth/M bee-eater/S bee-keeper/SM bee-keeping/M bee-stung bee/RSyM Beeb Beebe/M beebread/MS beech/SM beechen beecher beechnut/MS beechwood beef/MD2GZS beefburger/SM beefcake/SM beefeater beefiness/S beefsteak/SM beefwood beefy/PT beehive/SM beehived beeline/GSD Beelzebub/M been beep/DRSGM Beerbohm/M beermat/S Beersheba/M beery/T beestings beeswax/MDG beeswing beet/MS Beethoven/M beetle/DMSG beetler beetroot/SM beeves/M befall/GS befallen befell befit/SGDM befitting/Y befog/DGS before beforehand befoul/DSG befriend/DGS befuddle/LSDG beg/SGD began Begawan/M beget/SGT beggar-my-neighbour beggar/dMSY beggarly/P beggary/M begin/RJGS beginning/M begone/S begonia/SM begot begotten/a begrime/SDG begrudge/GDSk begrudger beguile/DRLSGk beguine/SM begum/SM begun behalf/M behalves behave/SaGD behaver/a behaviour/aSM behavioural/Y behaviouralism behaviouralist/S behavioured behaviourism/SM behaviourist/WMS Behe/M behead/DSG beheld behemoth/SM behest/MS behind/S behindhand behold/GSR beholden behove/DS beige Beijing/M being/SM beingness Beirut/M bejewel/DGS Bel belabour/DGSM Belarus/M Belarusian/S belate/Dih belated/P belay/DSG belch/SGD beleaguer/Sd beleaguerment belemnite/S Belfast/M Belford/M belfry/SM Belgian/MS Belgic Belgium/M Belgrade/M Belgrano/M Belial Belichick/M belie belief's/U belief/SME belier/M believability/M believable/YU believably/U believe/GERDS believer/UMS believing/U believingly belittle/GLDS belittler/M Belize/M Belknap/M bell-bottom/S bell-bottomed bell-hop's bell-ringer/S bell-shaped bell/SGmMDY Bella/M belladonna/SM Bellamy/M bellbird/S bellboy/SM belle/SM belletrist/SMW Belleville/M Bellevue/M bellflower/MS bellhop/MS Bellhouse/M bellicose/YP bellicosity/SM bellied belligerence/ZSM belligerency/SM belligerent/YSM Bellinger/M Bellini/SM bellow/SDG bellwether/MS Bellwood belly/SfM bellyache/MSGD bellyacher/M bellyband bellyboard/SRG bellybutton/SM bellyflop/SDG bellyful/S bellying Belmarsh Belmont/M Belmopan/M Beloit belong/GSDJ belonging/M belongingness Belorussia beloved/S below belowground belt-fed belt/DGSM belted/U belting/M Belton/M Beltsville/M beltway/SM beluga/SM belvedere/M Belview bely/SDG Belém/M beman Bemba Bembridge/M bemire/SDG bemoan/SGD bemuse/DLhSG Ben/M bench/GSDM bencher/M benchmark/DSGM benchwork bend/SUG bendable bended bender/SM bendy/TP beneath Benedict/M Benedictine/SM benediction/SM benedictory benefaction/SM benefactive/S benefactor/SM benefactress/S benefice/MGoDS beneficence/MS beneficent/Y beneficial/P beneficiary/SM benefit/rMdS Benelux/M benevolence/SM benevolent/YP Benford/M BEng benga Bengal/M Bengali/M Benghazi/M Benidorm/M benighted/PY benign/Y benignant benignity/SM Benin/M Benjamin/M Benji/M Bennet/M Bennett/M Bennington/M Bennison/M Benny/M Benoni/M Benson/M bent/U Bentham/M benthic benthos Bentley/MS Benton/M bentonite bentwood/SM benumb/SDG Benz/M Benzedrine/M benzene/SM benzenoid benzine/SM benzoate/S benzocaine benzodiazepine/S benzoic benzoin benzyl Beowulf/M bequeath/GDS bequest/SM Beral/M berate/SDG Berber/M Berberich/M Berea/M bereave/LGDS bereft Beresford/M beret/MS berg/SM bergamot Bergen/M Bergenfield/M bergenia/S Berger/M Bergerac/M Bergeron/M Bergman/M Bergstrom/M Bergström beribbon beribboned beriberi/MS Bering Berk berk/S Berkeley/M berkelium/M Berkowitz/M Berkshire/M Berlin/Mr Berlinski/M Berlioz/M Berlitz/M Berlusconi/M berm/MS Berman/M Bermuda/M Bern/M Berna/M Bernadette/M Bernadine/M Bernard/M Bernardino/M Bernardo/M Berne/M Bernese/M Bernhard/M Bernhardt/M Bernice/M Bernie/M Bernini/M Bernoulli/M Bernstein/M Berrigan/M berry/SDGM berrylike berserk/S berserker/M Bert/M Bertelsen/M berth/GSDM Bertha/M Bertie/M Bertolucci/M Bertram/M Bertrand/M Berwick-upon-Tweed/M Berwick/M beryl/MS beryllium/M bes Besant/M beseech/RDkSGJ beseem/DGS beset/SG beside/S besiege/SRDG besmear/DGS besmirch/DGS besom/SdM besot/SDG besought bespangle/DSG bespatter/dS bespeak/GS bespectacled bespoke bespoken Bessel/M Bessemer Bessey/M Bessie/M best-known best-seller/S best-selling best/SGD bester bestial/Y bestiality/SM bestiary/SM bestir/SDG bestow/DSG bestowal/SM bestrew/DGS bestrewn bestridden bestride/SG bestrode bestseller/S bestselling bestubble/D bet/MRGSD beta/MS Betacam betaine betake/SG betaken Betamax betatron/MS betcha betel/SM Betelgeuse Beth/M Bethany/M bethel/M Bethesda/M bethink/SG Bethlehem/M bethought betide/DGS betimes Betjeman/M betoken/dS betook betray/GRSD betrayal/SM betroth/DGS betrothal/SM Betsey/M Betsy Bette/M better-off better/dL Bettman/M bettong/S Betty/MS between/PS betwixt Beulah/M Bevan/M bevatron/S bevel/RSDMG beverage/SM Beveridge/M Beverley/M Beverly bevy/MS bewail/DSG beware/GSD bewhisker bewhiskered bewigged bewilder/idLhSk bewitch/LDSkG Bewkes/M Bexley/M beyond bezel/MS bezique bezoar/S Bezzi bf BFI Bharat/M Bharata/M Bharatanatyam Bharati/M Bhavani/M Bhavnagar/M Bhopal/M Bhutan/M bi-endian bi-gender bi-gendered bi-level bi/M biannual/Y bias/MDSG biased/U biassed biasses biassing biathlete/S biathlon/MS biaxial/Y bib/DMGS bibelot/S bible/1wMS biblicist/SM bibliographer/SM bibliography/Ww1MS bibliolater/S bibliomancy bibliomane/S bibliomania bibliomaniac/M bibliometric/S bibliophile/SM bibliophilic bibliophily bibliopole/S bibliotherapy bibulous BIC/S bicameral bicameralism/MS bicarb/SM bicarbonate/MS bicentenary/S bicentennial/S bicephalous biceps Bichette/M bichromate/MD bicker/drS bickering/M biclique/S bicolour/D biconcave biconnected biconvex bicultural biculturalism bicuspid/S bicycle/RG3SMD bicyclic bid/RMZdGJS biddable bidden/U bidding/M Biddle/M biddy/SM bide/S bider/M bidet/SM bidiagonal bidimensional bidirectional/Y bids/fcAe Bielefeld biennale/S biennial/SY biennium/SM bier/M biface/S bifacial bifid bifocal/S bifold bifunctional bifurcate/YSGnDN bifurcation/M big-boned big-endian big-name big/TGDP bigamous bigamy/3MS Bigelow/M bigeneric bigeye/S Bigfeet Bigfoot biggie/MS biggish Biggs/M bigha/S bighead/MS bighearted bigheartedness/S bighorn/SM bight/MGDS bigmouth/MS bigness/S bigot/ydSM bigoted/Y bigotry/SM bigram/S biguanide bigwig/SM Biham/M biharmonic bijection/SM bijective/Y bijou/M bijouterie bijoux bikable bike/RMSGD bikeable bikeshed/SG bikini/SMD bilabial bilateral/YP bilayer/S Bilbao/M bilberry/SM bilboes bilby/S bile/MS bilge/DGMS bilharzia biliary bilinear bilingual/YS bilingualism/MS bilious/PY biliousness/S bilirubin bilk/DRGS bill/RM7YDJSG billboard/SGDM billet-doux billet/SdM billets-doux billfish/S billhook/S Billian/M billiard/MS Billie/M billing/M billion/MHS billionaire/SM billow/DGMZS billowy/T billposters billy-goat billy/MS bilobate bilobed bilocation bimbo/MS bimetallic bimetallism/SM bimillenary/S bimodal bimolecular/Y bimonthly/S bin/DGSM binary/S binate binational binaural/Y bind/kRJSG binder/Z bindery/SM binding/PM bindle/M binds/AU bindweed/SM Binet/M Bing bing binge/DGMS bingen Bingham/M Binghamton Bingley/M bingo/SM binman binmen binnacle/SM binocular/SY binodal binomial/SYM Bintcliffe Bintley binuclear binucleate binucleated bio/S bioaccumulate/SGDN bioaccumulations bioacoustics bioactive bioactivity bioadhesive/S bioarchaeological bioarchaeologist bioarchaeology bioassay/S bioavailability bioavailable biobank/S biobibliography/S biocentric biocentrism biocentrist/S biochar biochemical/SY biochemist/SyM biochemistry/SM biochip/S biocide/SO biocircuit/S bioclast/SW bioclimatic biocoenoses biocoenosis biocolloid biocompatibility biocompatible biocomplexity biocomposite biocomputation biocomputer/S biocomputing biocontrol bioconversion biocultural biocybernetic/S biodata biodefence biodegradability/S biodegradable biodegrade/nSGD biodeterioration biodiesel biodigester biodiversity/S biodome biodynamic/S biodynamical/Y bioecological bioecology bioeconomic/S bioeffluent bioelectric bioelectrical bioelectricity bioelectrochemistry bioelectromagnetic/S bioelectronics bioelement bioenergetic/S bioenergy bioengineer/SD bioengineering/M bioequivalent bioethanol bioethical bioethicist/S bioethics biofeedback/SM biofilm/S bioflavonoid/S biofuel/S biog/S biogas biogeneric/S biogenesis biogenetic biogenic biogeochemical biogeochemist biogeochemistry biogeographer/S biogeographical biogeographically biogeography/W biogerontology biograph/WZRw1 biographee/S biography/SM biohacker/S biohacking biohazard/S bioindicator/S bioinformatic/S biol biologics biology/w3MW1S bioluminescence bioluminescent biomagnetism biomarker/S biomass/MS biomaterial/S biomathematics biome/S biomechanical biomechanically biomechanics biomechanist biomedical biomedicine/M biometeorology biometric/S biometrical biometrician/S biometrics/M biometry/WM biomineral biomineralisation biomineralised biomineralization biomineralized biomolecular biomolecule/S biomorph/SM biomorphic biomorphism bion bionic/YS bionics/M bionomic/S biopesticide biopharma/S biopharmaceutical/S biopharmaceutics biopharming biophilia biophysic/S3Y biophysical biophysicist biophysics/M biopic/S biopiracy bioplasm/W bioplastic bioplay biopoesis biopolitical biopolitics biopolymer/S biopolymeric biopotential biopower biopreservation bioprinter bioprinting bioprivacy bioprospecting bioprospector/S biopsy/DGMS bioreactor/S bioregion/S bioregional bioregionalism bioregionalist/S bioremediation bioreserve biorheology biorhythm/SW biorhythmicist BIOS biosafety bioscience/S3 biosecure biosecurity biosensing biosensor/S biosignature biosimilar/S biosocial biosolids biosphere/SMW biostatistic/S biostatistical biostatistician biostratigrapher/S biostratigraphic biostratigraphical biostratigraphically biostratigraphy biosurgery biosynthesis biosynthesized biosynthetic biosystematics biosystematist/S biota/W biotech biotechnology/w3SM biotecture bioterrorism bioterrorist/S biotherapy/S biotin/MS biotite biotransformation bioturbated bioturbation biotype/S biowarfare bioweapon/S bipartisan bipartisanship/SM bipartite/Y bipartition/M biped/SM bipedal bipedalism bipedality biphasic biplane/SM bipolar bipolarity/SM biracial birch/SGDM birchen Bircher/M bird's-foot/S bird-like bird/DRGSM birdbath/MS birdbrain/SMD birdcage/MS birdhouse/SM birdie/MDS birdieing birdlife birdlike birdlime/SMGD birdling/S Birdsall/M birdseed/SM birdshot birdsong birdtables birdwatch/RG birefringence/M birefringent biretta/MS Birgit/M biriani biriyani Birk/M Birkbeck/M Birkenhead/M Birman Birmingham/M Biro/M birth/SM birthday/SM birthed birthing birthmark/SM birthplace/SM birthrate/MS birthright/SM birthstone/SM birthweight birthwort/S biryani bis Biscay/M Biscayne/M biscotti biscuit/MS biscuity bisect/GSD bisection/SM bisector/SM biserial bisexual/MSY bisexuality/MS Bishkek/M bishop/dSM bishopric/SM Bishopsgate/M Bismarck/M Bismark/M bismuth/M bison/M bisque/MS Bissau/M Bisset/M bistable bistate bistoury/S bistro/SM bisyllabic bit's bit/CS bitblt/S bitch/GZDSz2M bitchiness/S bitchy/TP bitcoin/SM bite/cS biter/SM Bithell/M biting/Y bitmap/DGMS BITNET bitonal bitonality Bitrex bitrot bitser/M Bitstream bitstream bitten bitter/YPSd bittercress bitterer bitterest bitterling/S Bitterman/M bittern/MS bitterness/S bitternut/M bitterroot/M bittersweet/SYP bittiness Bittinger/M BitTorrent bitty/T bitumen/MS bituminous bitwise bivalence bivalent/S bivalve/SMD bivariate bivouac/GMDS biweekly/S biyearly biz/M bizarre/PY bizarrerie/S Bizet/M bizzes bk blab/RSDG blabber/d blabbermouth/SM black-hearted black/TSPYGD Blackadder/M blackball/DGSM blackberry/DMSG BlackBerry/SGD blackbird/GSMD blackboard/MS blackbodies blackboy/S blackbuck/S Blackburn/M Blackburne/M blackbutt/S blackcap/S blackcurrant/SM blacken/Sd blackener/M blackface Blackfeet blackfish/S blackfly/S Blackfoot/M blackguard/SDYGM Blackhawk/M blackhead/SM blacking/M blackish blackjack/MSDG blacklead/D blackleg/DGMS blacklist/GD blacklister blackly/3 blackmail/RGMDS Blackman/M Blackmore/M blackness/S blackout/MS blackpoll/S Blackpool/M Blackrod/M blackshirt/S Blackshirt/SM blacksmith/GSM Blackstone/M blackthorn/SM Blackthorne/M Blackwell/M Blackwood/M bladder/MS bladdernut/M bladderwort/M blade/GDMS Blaenau/M blag/SGDR blagueur blah/MDSG Blaine/M Blair/M Blairism Blairite/S Blake/M Blalock/M blame/R7SGMpD blameless/PY blamelessness/S blameworthiness/S blameworthy/P blanc/M blanch/DSG Blanchard/M Blanche/M blancher/M blancmange/MS bland/TPY blandish/DGLS blandness/S Blandy/M Blane/M blank/PDGSTY blanket/dSM blanketer/S blanketing/M blankness/S Blanton/M Blantyre/M blare/GDS blarney/GSMD blaspheme/RDSZG blasphemous/YP blasphemy/MS blast/GRSMD blasting/M blastocyst/S blastoderm blastoff/SM blastomycosis blastula blastulae blasé blatancy/MS blatant/Y blatantness blather/dS blatherer blatting Blavatsky/M blaxploitation blaze/RkGDMS blazon/Sd blazoner/M bldg bleach/GRDS bleached/U bleak/TPSY bleakness/S blear/SD2GzZ bleariness/S bleary-eyed bleary/TP bleat/DGS bleater/M bled bleed/RSG bleeding-heart bleep/MDGSR Bleiler/M blemish/MDSG blemished/U blench/DGS blend/RGSD blepharitis blepharoplasty blepharospasm bless/hGSDiJ blessed/U blessedness/MS blessing/M Bletchley/M Blevins blew Bligh/M blight/DGMS blighter/M blimey/S blimp/MS blind/SDRTPGkY blindable blindfold/DSG blinding/M blindness/S bling bling-bling blingy/T blink/RSGD blinker/d blinking/U blinks/M blip/DGMS blipvert/S bliss/D6jS blissful/P blissfulness/S blister/dMkSZ blithe/YTP blitheness/S blithering blithesome blitz/GSDM blitzkrieg/SM blizzard/SM bloat/SDRG bloatware blob/SMDG blobby/T blobfish/S bloc/GDMSR Bloch/M block's block/UGDS blockade/DMGRS blockage/MS blockboard blockbuster/MS blockbusting/M blockchain blockhead/SMD blockhouse/MS blockiness blockish blocklist/S blockship/S blockwork blocky/T Bloemfontein/M Blofeld/M blog/SBM blogged blogger/SM blogging bloggy/T blogosphere blogroll/S bloke/MS blokeish/P Blomberg/M Blomquist/M blond/PMST blonde/SM blondish blondness/S blood-brother blood-curdling blood-heat blood-money blood-poisoning blood-red blood-wort/M blood/zhp2MDiZGS bloodbath/S bloodhound/SM bloodied/U bloodiness/S bloodish bloodless/PY bloodlessness/S bloodletter bloodletting bloodline/MS bloodlust bloodroot/MS bloodshed/SM bloodshedder bloodshedding bloodshot bloodsport/S bloodstain/DMS bloodstock/SM bloodstone/M bloodstream/SM bloodsucker/MS bloodsucking bloodthirsty/PTY bloodwood/S bloodworm/M bloodwort bloody/STPGD bloodymindedness bloom/RMDGS Bloomberg/M Bloomfield/M Bloomington/M Bloomsbury bloop/SDRG blossom/dMS blossomy blot/GMRSD blotch/SGMZD blotchy/T blotto Blount/M blouse/SMGD blousy/T blow-by-blow blow-drier blow-dry/GD blow-dryer blow-out/SM blow-up/SM blow/RGZS blowback/S blowfish/SM blowfly/SM blowgun/SM blowhole/S blowing-up blowing/M blowlamp/S blown-up blown/c blowout/S blowpipe/MS blowsy/TYP blowtorch/MS blowy/T blowzy/T Blu-ray/S blubber/dSZ blubberer Blucher/M bluchers bludgeon/MGSD blue-black blue-blooded blue-collar blue-eyed blue-green blue-pencils blue/TZGSYPDMJ blueback Bluebeard/M bluebell/SM blueberry/MS bluebill/M bluebird/MS bluebonnet/SM bluebook/M bluebottle/SM bluebush Bluefields/M bluefin bluefish/SM bluegill/MS bluegrass/SM bluegum/S blueing's blueish bluejacket/SM bluejeans blueliner blueness/S bluenose/MS bluepoint/SM blueprint/GSMD bluer/M bluesman bluesmen bluest/M bluestocking/SM bluesy/T bluethroat/S bluetongue Bluetooth/D bluff/PSDRGTY bluffness/S bluing/M bluish/P Blum/M blunder/dkrJMS blunderbuss/M Blunkett/M blunt/DSTGPY bluntish bluntness/S blur/hGDZSM2 blurb/GSDM blurriness/S blurring/Y blurry/T blurt/SGD blurter blush/GDkRS blushing/UY bluster/rSZdk blusterous blvd Blythe/M BMW/MS BMX BNFL/M Bo/M boa/SM Boadicea/M boar/MS board/RMGDSJ boardgames boarding/M boardinghouse/MS boardroom/SM boards/e boardwalk/S boast/DRG6jJS boasted/e boastful/P boastfulness/S boasting/e boasts/e boat/MDRGS boatbuilder/S boatbuilding boatclubs boatfly boathook/S boathouse/SM boating/M boatless boatlift/SGD boatlike boatload/MS boatman/M boatmen/M boatswain/MS boatyard/SM bob/MDGSZ Bobbie/M bobbin/SM bobbing/M bobbish bobble/SGMD bobbly bobby/MS bobbysoxer's bobcat/SM bobolink/S bobs/M bobsleigh/RSDMG bobtail/SMGD bobwhite/SM Boca/M Boccaccio/M Boccherini/M boccie/SM bock/SGD bockwurst bod/SMd bode/SZ bodega/SM bodger/S bodhisattva bodice/SM bodied/M boding/M bodkin/MS Bodleian body-blow body-builder/SM body-building body-check body-colour body-piercing body/pDMSYG bodyboard/S bodyboarder/S bodyboarding bodybuilder/S bodybuilding bodyguard/MS bodyhood bodying/M bodyline bodyshell/S bodyside/S bodysnatcher/S bodysnatching bodysuit/S bodysurf/rG bodyweight bodywork/rMS Boedeker/M Boeing/M Boer/SM Boethius/M boff/S boffin bog/GDMZS Bogart/M bogbean/S bogey/GmMDS boggle/DGSk boggy/T bogie/S bogland Bogotá/M bogus Bohemia/M bohemian/S bohemianism/S Bohr/M bohrium boil/AGSD boiled/U boiler/MS boilermaker/MS boilerplate/SM boing Bois/M Boise/M boisterous/YP boisterousness/S bokeh bokken Bokmål bola/SM bold/PYT Bolden/M boldface/MGDS Boldini/M boldness/S bole/MS bolero/MS Bolivar/M Bolivia/M Bolivian/S boll/MS bollard/SM Bollinger/M bollocking bollocks bollworm/S Bollywood Bologna/M bolognaise Bolognese bolognese bolometer/WSM boloney's Bolshevik/SM Bolshevism/M Bolshevist/WMS Bolshoi/M bolster/dS bolsterer/M bolt's bolt-on bolt/UGSD bolter/M bolthole/S Bolton/M Boltzmann/M bolus/MS bomb/RSMDGJ bombard/GLDS bombardier/SM bombardon/S bombast/WMS1 bombaster Bombay/M bombazine bombed-out bombproof bombshell/SM bona bona fide Bonanome/M bonanza/SM Bonaparte/M Bonapartism Bonapartist bonbon/SM bond/MmDJRGS bondage/MS bondholder/SM bondwoman/M bondwomen bone/pRMSZGD bonehead/DMS bonemeal boneset boneshaker/S boneyard bonfire/SM bong/SMDG bongo/MS Bonham/M Bonhoeffer/M bonhomie/SM Boniface/M Bonilla/M boniness/S bonito/MS bonkers Bonn/M Bonner/M bonnet/dSM bonnethead Bonneville/M bonnie bonny/T Bonnybridge bonobo/S bonsai/M bonus/MS bony/PT bonzes boo/DSG boob/MDZGS boobook/S booby-trap/S booby/MS boodle/DMSG boogeyman's boogie/SD boohoo/SDG book/7GMDRJS bookaholic bookbind/RGJ bookbinder/Z bookbindery/MS bookbinding/M bookcase/SM booked/cA bookend/DSG bookie/MS booking/M bookish/YP bookkeep/RGJ bookkeeping/M bookland booklet/SM booklice booklouse bookmaker/MS bookmaking/M bookman bookmark/GSDM bookmarker bookmarklet bookmen bookplate/S bookrest/S books/cA bookseller/SM bookselling bookshelf/M bookshelves bookshop/MS bookslide bookstack bookstall/SM bookstamp booksy bookwoman bookwork/M bookworm/MS Boole/M boolean boom/SGD boomer/MS boomerang/GSDM boomy/PT boon/SM Boone/M boonies boor/MS boorish/YP boorishness/S boost/RGSMD boosterism boot's boot/SAGD bootable bootblack/SM bootboy/S bootee/SM booth/MS Boothtown bootie/SM bootlace/S Bootle/M bootleg/GSRD bootlegged/M bootlegging/M bootless bootlick/G bootlicker/S bootloader/S bootmaker/S bootprints bootstrap/MDGS booty/SM booze/RZGDMS boozy/T bop/RGDS borage borane/S borate/DMS borax/M Borazon Bordeaux Borden/M border/dMS borderer/SM borderland/SM borderless borderline/MS bore/RGSkDW Boreal boreal Borealis boredom/MS borehole/S Borg/M Borghini/M Borgnine/M boride/S boring/M boringness Boris/M Borkowska born-again born-free/S born/AU borne/c Bornean Borneo/M Bornholm Borobudur/M Borodin/M Borodino/M boron/M borosilicate/M borough/MS Boroughbridge borrow/RGS7JD borrowing/M Borsalino/S borscht/SM borstal/MS Bortz/M borzoi/MS Bosch/M Bose/M bosh/SM Bosnia-Herzegovina/M Bosnia/M Bosnian/SM bosom's bosom/UdS bosomy/T boson/SM bosonic Bosphorus Bosporus/M boss/SzG2MDZ bosser bossiness/S bossism/SM bossy/TP Boston/M Bostonian/MS bosun/M Boswell/M bot/S botanicals botanise/G botanize/G botany/3WSMw1 botch/SRGD botfly/M both/Z Botham/M bother/dS bothersome Bothwell/M bothy/M botnet/S Botox/D botryoidal Botswana/M Botticelli/M bottle-fed bottle-feed bottle-green bottle-nosed bottle/RDGSM bottlebrush/S bottleneck/MDGS bottlenose bottlescrew/S bottom-dweller/S bottom-dwelling bottom-up bottom/dSpM bottomer bottomless/YP bottommost botty/S botulin/M botulinum botulinus/M botulism/SM Boucher/M Bouckaert/M bouclé boudoir/MS bouffant bougainvillea/M bough/SM bought/c bouillabaisse/M bouillon/MS boulder/dMS boulevard/MS Boulogne/M bounce/kZSRG2D bouncy/YT bound/ADSG boundary/MS bounded/P bounden bounder/SM boundless/PY boundlessness/S bounds/e bounteous/YP bounteousness/S bountiful/P bountifulness/S bounty/6DjSM bouquet/MS bourbon/MS bourgeois/M bourgeoisie/MS bourn/S Bourne/M bourne/S Bournemouth/M bourses bourée boustrophedon bout/MS boutique/SM boutiquey boutonnière/SM Bouvier/M Bouyssou/M bovine/Y bow-legged bow-legs bow-saw/MS bow-tie/SM bow-window bow/mRGDS bowdlerise/nDGS bowdlerize/NnDSG bowed/U bowel/SGMD Bowen/M bower/d bowerbird/S Bowery Bowes bowfin/S bowhead/S Bowie/M bowie/S bowing/M Bowker/M bowl/R6MSDG Bowles/M bowlful/S bowline/SM bowling/M bowser/MS bowshot bowsprit/MS bowstring/DMGS bowstrung bowwow/SDMG bowyer/SM box-office box-shifter/S box/DZ2RS6GM boxboard boxcar/MS boxfish/S boxful/M boxing/M boxlike boxtops boxwood/SM boxy/T boy/MS Boyce/M boycott/SGD boycotter/M Boyd/M boyer boyfriend/SM boyhood/SM boyish/PY boyishness/S Boyle/M boyscout boysenberry/MS bozo/SM BP BPD BPhil bpi bpm bps BR/M bra/WpSM Brabant/M Brabham/M brace/SkGDM bracelet/SM bracer/M brachia brachial brachiopod/S Brachiopoda brachiosaurid brachiosaurus brachium/M brachycephalic brachycephaly brachytherapy bracken/SM bracket/dSM bracketing/M brackish/P brackishness/S Bracknell/M braconid/S bract/MS bracteal bracteate brad/DSGM bradawl/M Bradbury/M Bradford/M Bradley/M Bradman/M Bradshaw/M Brady bradycardia brae/SMQ brag/TSDRG Bragg/M braggadocio/MS braggart/MS Brahma/M Brahman/MS Brahmana/S Brahmanic Brahmanical Brahmanism Brahmaputra/M Brahmin Brahms braid/DGSJ braider/M braiding/M Braille/M brain-damaged brain-dead brain/GD2pMZS brainbox/S braincase braincell/S brainchild/M brainchildren braininess/S brainless/PY brainpower/M brainstem brainstorm/SMDG brainstormer brainstorming/M brainteaser/S brainteasing Braintree/M brainwash/SGD brainwasher/M brainwashing/M brainwave/S brainwork brainy/PTY brake/SGDM Bram/M Bramah/M bramble/GMYDS brambling/M brambly/T Brampton/M bran/SDGM branch-like branch/SMGD branchia branchiae branchial branching/M branchlet/S branchlike Branchville/M branchy brand/MRGZSD branded/Ua Brandenburg/M brander/d Brandi/M branding/a brandish/SGD Brando/M Brandon/M brands/a Brandt/M brandy/GMDS brandywine branks Brannon/M Branson/M Brant/M Braque/M bras/2GzZD Brash/M brash/YSPT brashness/S Brasilia/M brass-necked brass/MS brassard/S brasserie/SM brassfounder/S brassiere/MS brassiness/S brassy/TSP brat/MZS Bratislava/M bratty/T bratwurst/MS Braun/M braunite bravado brave/DYyTGPS braveness/S bravery/SM bravest/M bravo/GDS bravura/MS brawl/MRGSD brawn/ZSM2 brawniness/S brawny/TP bray/SGD brayer/M braze/DSG brazen/dYP brazenness/S brazier/SM Brazil/M Brazilian/SM Brazzaville/M BrE breach/DRSGM bread-and-butter bread/HDMSG breadbasket/MS breadboard/DGMS breadbox/S breadcrumb/S breadfruit/MS breadhead/S breadline/MS breadstick/S breadth/M breadwinner/SM breadwinning break-bulk break-fall break-in/S break-off break-up/S break/eMS breakable/S breakage/MS breakaway/MS breakbeat/S breakdance/GRD breakdown/SM breaker/SM breakfast/MRGDS breakfront breaking/M breakneck breakout/MS breakpoint/DGMS breakthrough/MS breaktime breakup/SM breakwater/SM bream/DSG Breanne/M breast/DGMS breastbone/SM breastfed breastfeed/GS breasthook/S breasting/M breastpin/S breastplate/MS breaststroke/SM breaststroker/S breastsummer breastwork/MS breath/RpZDS7JGM breathability breathable/U breathalyse/SD breathalyser/S breathe/S breathing/M breathless/YP breathlessness/S breathtaking/Y breathy/T breccia/S brecciate/SDN Brechin/M bred breech-loaded breech-loader breech-loading breech/SGMD breeching/M breed/MRGS breeding/M breeze/ZMGSD breeziness/S breezy/TPY Breightmet Breitinger/M Bremen/M bremsstrahlung/M Brenda/M Brendan/M Brennan/M Brenner/M Brent/M Brentford/M Brentwood/M Bresenham/M Bresson/M bressummer Brest/M brethren Breton/MS Brett/M Bretton/M Breughel breve/MS brevet/dMGDS breviary/SM brevity/MS brew/RGMDS brewer/Z brewery/SM brewing/M Brewster/M Brexit Breydon/M Brezhnev/M Brian/M briar/M bribe/BDRySG bribery/SM bric-a-brac bric-à-brac bric/DG Brice/M brick-red brick/SM brickbat/MS bricker bricklayer/SM bricklaying/SM brickmason/S brickwork/SM brickyard/MS bricolage/S bridal bride-to-be bride/SM bridegroom/MS brides-to-be bridesmaid/MS Bridewell/M bridge/MGSD bridgeable/U bridgehead/SM Bridgend/M Bridgeport/M Bridger/M Bridget/M Bridgetown/M Bridgewater/M bridgework/MS bridging/M Bridgnorth/M bridle/MGSD bridled/U bridleway/S Brie brief/TJSYDPG briefcase/MS briefed/C briefer/C briefing/M briefless briefness/S briefs/C brier/SM Brierly/M brig/MS brigade/GDSM brigadier/SM Brigadoon/M brigand/SM brigandage/SM brigantine/SM Briggs/M Brigham/M Brighouse/M bright-eyed bright/TPGY brighten/drS brightness/S Brighton/M brill brilliance/SMZ brilliancy/SM brilliant/PSY brim-full brim/DGMSp6 brimstone/SM Brindisi/M brindle/MDS brine/SGDZM briner/M bring/RSG brininess/S brink/MS Brinkley/M brinkmanship/MS briny/TP brio brioche/SM Briot/M briquette/SM Brisbane/M brisk/TYPG brisket/SM briskness/S bristle/SMYGD bristlebird/S bristly/T Bristol/M bristols Brit. Brit/S Britain/M Britannia/M Britannic Britannica britches Briticism British/RY Britishness Briton/SM Britt/M Brittany/M Britten/M brittle/DTGPS brittlely brittleness/S Brixit Brixton/M BRM Brno/M bro broach/SGD broacher/M broad-brush broad-minded/Y broad-mindedness broad/TYS broadband broadbill/S broadcast/SARG broadcasting/S broadcloth/SM broaden/Srd broadleaf broadleaved broadleaves broadloom/MS broadloomed broadness/S broadsheet/SM broadside/SMGD broadsword/MS Broadway/M Broadwell/M Broadwood/M brocade/DMSG broccoli/MS brochette/SM brochure/SM Brock/M Brockden Brockmeier/M Brodie/M Broederbond/M brogue/SM broil/GRSD broke/RG broken-down broken-hearted/Y broken-heartedness broken/UY brokenness/M broker/d brokerage/MS brolly/S bromance bromantic bromeliad/S Bromford/M bromide/SMW bromine/M Bromley/M Bromsgrove/M Bromwich/M bronc/S bronchi/M bronchial bronchiolar bronchiole/MS bronchiolitis bronchitic/S bronchitis/MS bronchodilation bronchodilator/S bronchogenic bronchopneumonia bronchoscope/S bronchoscopic bronchoscopy bronchospasm bronchus/M bronco/MS broncobuster/MS Bronson/M brontosaur/SM brontosaurus/SM Bronx/M bronze/SMGDR bronzed/M bronzing/M bronzy brooch/SM brood/GM2ZRSDk broodmare/SM broody/TP brook/DSMG Brookes/M Brookhaven/M Brookhouse/M Brooklands/M brooklet/SM Brooklyn/M Brooks/M brookside brookweed broom/GMSD broomball/M Broome/M broomstick/MS Bros. brose broth/RMS brothel/SM brother-in-law brother/dY brotherhood/MS brotherliness/S brotherly/P brothers-in-law brougham/SM brought brouhaha/MS brow/SM Broward browbeat/GS browbeaten browbeater/S brown/DTSMPGY Browne/M Brownell/M brownfield Brownian brownie/SMT browning/M brownish brownness/S brownout/SM brownstone/MS browntop Brownwood/M brows/SDRBG browse Broxbourne/M Broxtowe/M Brozman/M brr Bruant/M Brubeck/M Bruce/M brucellosis/M Bruckner/M Brudenell/M Bruegel Brueghel bruin/SM bruise/RGSDJ bruit/S brunch/SDGM Brundtland/M Brunei/M Brunel/M brunet/S brunette/MS Bruno/M Brunschwig/M Brunswick/M brunt/DMGS bruschetta brush-off/S brush-turkey/S brush-up brush/ZGSDM brushback/S brusher/M brushfire/SM brushier brushless brushlike brushstroke/S brushtail brushwood/SM brushwork/SM brusque/PTY brusqueness/S Brussels/M brutal/qQ8- brutalism brutalist brutality/MS brute/GSMoD bruter brutish/PY brutishness/S Brutus/M bruxism Bryan/M Bryant/M Bryce/M Bryde/M Bryn/M bryological bryologist/S bryology Bryon bryony/S bryophyte/S bryophytic bryozoan/S BSA BSc BSD BSE BSkyB/M BSOD BTC BTU BTW bu. bubble/GYSMD bubblegum/S bubbly/T bubo/M buboes bubonic bucatini buccal buccaneer/GDSM buccinator/S Bucephalus Buchanan/M Bucharest/M Buchenwald/M buck-passing buck/SMDG buckbean/S bucker/M bucket/Sd6M bucketful/SM bucketwheel/S buckeye/MS buckhorn/M buckhound/S Buckingham/M Buckinghamshire/M Buckland/M buckle/RGSMD buckled/U buckles/U Buckley/M buckling/M Buckminster/M buckminsterfullerene buckram/dMS bucksaw/MS Bucksch buckshot/MS buckskin/DSM buckteeth buckthorn bucktooth/DM buckwheat/SM buckyball/S buckytube/S bucolic/YS bud/SGDMZ Budapest/M Budd/M Buddha/M Buddhism/M Buddhist/SM buddleia buddy/MSGD Budea/M budge/DGS budgerigar/MS budget/rSdM budgetary budgie/MS budging/U budo budstick/S Budweiser/M budwood budworm/S Buena Buenos buff-tip buff/RSMDG buffalo/M buffaloes buffed/A buffer/rd buffered/U buffet/SdJM bufflehead/M buffo/S buffoon/MS buffoonery/MS buffoonish buffs/A bug's bug-eyed bug/CRGSD bugaboo/SM Bugatti/M bugbane/S bugbear/MS bugfix/S bugger/dZ buggery/M buggy/MTS bugle/RGDMS bugless Bugzilla/M Buick/M build-up/SM build/RGJS buildability buildable building/MeS builds/Ac built-in built-up built/Ac Bujumbura/M bukkake Bukowski/M Bukrin Bulawayo'sc Bulawayo/M bulb/DSGM bulblet bulbous bulbul/S Bulgaria/M Bulgarian/MS bulge/ZGDMSk bulgy/T bulimarexia/S bulimia/SM bulimic bulk/ZSMD2G bulker bulkhead/DSM bulkiness/S bulky/TP bull's-eye bull/GYSMD bulla bullae bullcrap bulldog/MS bulldoze/RGDS Bullen/M bullet/dSM bulletin/MdS bulletproof/DG bullfight/RSMG bullfighting/M bullfinch/MS bullfrog/SM bullhead/hMDSi bullheaded/P bullheadedness/S bullhide bullhorn/SM bullied/M bullion/SM bullish/PY bullishness/S bullock/SM bullpen/SM bullring/SM bullseye/S bullshit/RSDMG! bullshot bullwhackers bully/DGTMS bullyboy/SM bullying/M bulrush/SM bulwark/MGDS bum-bailiff/S bum-sucker bum-sucking bum/SDRGTM bumbag/S bumble/DRkSG bumblebee/SM bumbledom bumboat/S bumboy bumf bumfluff bumhole bummed/M bumming/M bump/DRGZS2 bumper/d bumph bumpily bumpiness/S bumpkin/MS bumptious/PY bumptiousness/S bumpy/TP bumsters bun/MZS bunch/ZSDGM bunchy/T bunco's buncombe's Bundaberg/M Bundesliga Bundestag/M bundle's bundle/UDG bundler/M bundles Bundy/M bunfight/S bung/GMDS bungalow/SM bungarotoxin bungee/SM bunghole/SM bungle/GkDRS bunion/SM bunk's bunk/RCSDG bunker/d bunkhouse/MS bunkmate/MS bunko's bunkum/M bunny/MS Bunsen/M bunt/RSGDJ bunting/M buoy/SGMD buoyancy/MS buoyant/Y bur/DGSYM Burbank/M Burberry/M burble/GSD burbler/M burbot/S burbs Burch/M burden/dMS burdened/Uc burdening/c burdens/cU burdensome/PY Burdick/M burdock/MS bureau/MS bureaucracy/MS bureaucrat/1QWq8SM- Burel Buren/M burg/RSM burgeon/SDG burgess/MS burgh/RMS Burghley/M burglar/MS burglarious burglarproof/GD burglary/SM burgle/SDG burgomaster/SM Burgos/M Burgoyne/M Burgundian/S burgundy/S burial/SAM buried/U burier/M Burk/M burka/S Burkard/M Burke/M burkha/S Burkhardt/M Burkina/M burl/2MDS burlap/MS burler/M burlesque/DYRMSG burley burliness/S Burlingame/M Burlington/M burly/TP Burma/M Burmese burn/DR7kSGJ burnable/S Burnaby/M Burnage/M Burne/M burned/U Burnett/M Burney/M Burnham/M burnish/RSGD Burnley/M burnous burnout/MS Burnside/M burnt/Y burntness burp/MDSG burqa/S burr/MS Burrell/M burrfish/S burrito/S Burroughs burrow/DMGSR bursa/yM bursae bursar/MS bursary/MS bursitis/SM burst/eS burster/M bursting bursty Burstyn/M Burt/M Burtenshaw/M Burton/M Burtt/M Burundi/M bury/ADSG bus/MAS busbar/S busby/S Busch/M bush/S2mGMJZD bushbuck/S bushel/MSDGJ bushelful/S busher bushfire bushido/M bushiness/S bushing/M bushland bushmaster/MS bushmeat Bushnell/M bushwhack/GRSD bushwhacking/M bushy/TP business/m5S businesslike businesspeople businessperson/S busk/MRG buskin/SM buskined busman/M busmen bust/RGZSMD bustard/MS busted/F bustle/kSGD busty/T busway/S busy/PSYTGD busybody/SM busyness busywork/SM but/DAGS butane/MS butanol butch/RyS butcher/dY butcherer/M butchery/SM Bute/M butene/M butler/dSM butt-end/S butt/RSM butter/drZ butterball/MS butterbur/M buttercream buttercup/MS butterfat/MS Butterfield/M butterfingered butterfingers/M butterfish/S butterfly/DGMS buttermilk/M butternut/S butterscotch/M Butterstone butterwort/S Butterworth/M buttery/TS butting/M buttock/DSMG button's button/UdS buttonbush/S buttoner/M buttonhole/DMSG buttonholer/M buttonhook/S buttonweed buttonwood/SM buttress/SGDM butyl/M butyrate/M butyric buxom/Y buxomness Buxtehude/M Buxton/M buy-back/S buy/RSG buyback/S buying/c buyout/S buys/c buzz/MDRSGZ buzzard/SM buzzword/SM bx bxs by by-blow by-election/S by-law/MS by-product/SM Byblos/M bye-bye/S bye-law/SM bye/MS Byelorussia byers bygone/S byline/GDSM byliner/M byname/S bypass/MDSG bypath/SM byplay/S Byrd/M byre/SM Byrne/M byroad/MS Byron/WM Byronismyah bys byssi byssinosis byssus/S bystander/MS byte/MS bytecode/S byway/SM byword/SM byzantine Byzantine/S Byzantinism Byzantinist/S Byzantium bêche bête/S bêtise c.elegans C.Lit. c/nN CA ca Ca/y CAA caatinga cab/GMDXVSN cabal/GDSM cabala/MS caballero/SM cabana/SM cabaret/SM cabbage/DGSM Cabbala cabbalism cabbalist/S cabbalistic cabbie/S cabby/M cabdriver/MS caber/M Cabernet/M cabin/dMS cabinet/MyS cabinetmaker/SM cabinetmaking/SM cabinetry/SM cabinetwork/MS cable/DGSM cablecast/SG cablegram/SM cableless cabochon caboodle/SM Cabot/M cabriolet/SM cabstand/SM cacao/SM cacciatore cachaca cache/p7DGSM cachectic cacheing cachepot/MS cacher cachet/MdS cachexia cackle/DRSYG CACM cacophonous cacophony/3SM cacti cactus/MS cacuminal CAD cad/MZS cadastral cadaver/MS cadaverous/YP CADCAM Caddick/M caddie caddish/YP caddishness/S caddy/MDSG Cadell/M cadence/CMS cadenced cadencing cadent/C cadenza/MS cadet/MS cadge/DRSG Cadillac/SM Cadman/M cadmium/M cadre/SM caducei caduceus/M caeca caecal caecitis caecum/M caenorhabditis Caerphilly/M Caesar/M caesarean/S caesarian caesium/M caesura/SM cafe/S cafeteria/MS cafetière caffeinated caffeine/SM caftan/MS café/MS cage/GDzR2MS cagey cageyness cagier cagiest caginess/MS cagoule/S Cahokia cahoot/MS Caicos/M caiman's Cain/M Cainozoic caipirinha/S caique/S cairn/DSM Cairo/M Caisos caisson/SM Caithness/M caitiff/MS Caius cajole/RLyDSG cajolery/SM Cajun/SM cake/MDGS cakeage cakehole cakewalk/SDGM Cal cal Calabar/M calabash/SM calaboose/SM caladium/S Calais calamander calamari/S calamine/MDGS calamites calamitous/PY calamity/SM calathea/S Calc calcalkaline calcarenite/S calcareous/YP Calchas/M calciferous calcification/M calcify/WNDSnG calcimine/DSMG calcine/NSDG calcite/SM calcium/M CALCOMP calculability/IM calculable/I calculableness calculate/iVDSGkBhNn calculated/aA calculates/Aa calculating/aA calculation/aSAM calculator/SM calculi calculus/MS Calcutta/M Calcuttan caldaria caldarium Calder caldera/SM caldron's Caldwell/M Caleb/M Caledonia/M Caledonian/S calendar/SdM calender/dMS calf-length calf/M calfskin/SM Calgary Calhoun/M calibrate/SAGDN calibrater's calibration/M calibrator/MS calibre/MnSN caliche calico/M calicoes California/M Californian/SM californium/M Caligula/M caliper/S caliph/SM caliphate/SM call-boy call-girl/S call-up call/RSGDJ7 calla/SM Callaghan/M Callahan/M Callao callback/S called-for called/AUa callee/M calligrapher/SM calligraphy/S3MW calling's calling/a calliope/MS calliper/SM callisthenic/S callisthenics/M Callisto callop/S callose callosity/SM callous/PDYSG callousness/S callow/PT callowness/S calls/aA callus/SdM calm/YTGPSkD calmative/S calmness/S caloric calorie/SM calorific calorifically calorimeter/SMW calorimetry/M calotype calque/SGD Caltech caltrop/S calumet/MS calumniate/nDSGN calumniation/M calumniator/SM calumnious calumny/SM Calvados calvarial calvary Calvary calve/DGS Calvert/M calves/M Calvin/3M Calvinism Calvinist/W calyces's calypso/MS calyx/SM cam/MSD camaraderie/SM camber/dMWS Camberley/M cambial cambium/MS Cambodia/M Cambodian/S Cambrian cambric/MS Cambridge/M Cambridgeshire/M camcorder/S Camden/M came/c camel-hair camel/SM camelback camelhair's camellia/SM Camelopardalis Camelot/S Camembert cameo/MSDG camera-ready camera/MmS5 camerae cameraperson camerawork Cameron/M Cameroon/M Cameroonian/S camgirl Camilla/M Camille Camino camion/M camisole/MS camomile/M camouflage/GDRSM camp/RGZSM2Dz campaign/MRDSG campaniform campanile/SM campanology/3wSM campanula/S campanulate Campbell/M Campbellsport camped/C Camperdown/M campfire/MS camphor/SM Campos camps/C campsite/SM campus/MS campy/T camshaft/SM Camus/M camwood can't can't've can-opener can/dz2SDRZrGyM Canaan/M Canaanite Canada/M Canadian/S canal/q-GSMQ8D canapé/S canard/MS canary/MS canasta/SM Canaveral Canberra/M cancan/MS cancel/RDGS cancelbot/S cancellable cancellate/DnN cancellation/M cancels/K cancer/SM cancerous/Y Cancún/M Candace candelabra/S candelabrum/M candelas candid/PY candidacy/MS candidal candidate/MS candidature/S candider candidiasis candidness/S candle/RMDSG candleberry/S candleholder/S candlelight/SM candlelighter candlelit candlenut/S candlepower/MS candlestick/MS candlewick/SM candomblé candour/SM candy-striped candy/SGMD candyfloss candytuft/S cane/SMJ canebrake/SM canine/S caning/M canister/dSM canker/dMS cankerous canna/S cannabinoid/S cannabinol cannabis/MS cannelloni cannery/SM Cannes cannibal/MQ8Sq- cannibalism/SM cannibalistic cannibalistically cannier canniest canniness/S cannister/SM Cannock cannon/dSM cannonade/MGDS cannonball/SDMG cannoneer/S cannonry cannot cannula/S cannulae cannulate/SGDN canny/UPY canoe/GD3SM Canoga canola canon/wMW-1qQ8S3 canoness/S Canongate/M canonical/SQ8q- canonicity canonist canonry/S Canopus canopy/DGMS canst cant's cant/DCRGS cantabile cantaloup cantaloupe/SM cantankerous/YP cantankerousness/S cantata/SM canted/AI canteen/MS canter/d Canterbury/M canterbury/S canticle/SM cantilever/dSM canto/MS canton/dMSL cantonal Cantonese cantor/SM cants/A Cantwell/M Canute/M canvas/MRGDS canvasback/SM canvaser canvass/S canyon/SM cap's cap/SADG capability/ISM capable/IP capabler capablest capably/I capacious/PY capaciousness/S capacitance/SM capacitate/I capacitative capacitive/Y capacitor/MS capacity's/c capacity/SMI caparison/SM caparisoned cape/BDRMlS capellini caper/d capeskin/SM Capilano capillarity/MS capillary/S Capistrano capita/onM capital/-qMQs893S capitalise/ADGnS capitalised/Uc capitalises/c capitalising/c capitalism/SM capitalist/1W capitalize/AGnSDN Capitan capitate capitation/CMS capitol/SM capitula capitular capitulate/ASDGNn capitulation/MA capitulum capo/SM capoeira capon/SM Capone caponise/SGD caponize/SGD Capote Cappadocia Cappadocian/S capped/U cappellacci Cappiello/M capping/M cappuccino/SM Capri caprice/SM capricious/YP capriciousness/S Capricorn caps/8 capsicum/MS capsid/S capstan/SM capstone/SM capsular capsule/8SQMGD capsulotomy/S Capt. captain/GDSM captainate/S captaincy/MS CAPTCHA/S captcha/S caption/DGM captioner captious/PY captiousness/S captivate/SDG captivatingly captivation/M captivator/MS captive/NSMn captivity/SM captor/SM capture/RDGS captured/A captures/A capturing/A capuchin/S Capuchin/S Caputo car-jack/SDJRG car-sharing car-sick/P car-sickness/S car/rZdMS carabiniere carabinieri caracara/S Caracas/M carafe/SM caragana caramba carambola/S caramel/Q8SM caramelisation caramelization carapace/MS carapaxes carat/MS caravan/MSDG caravanette/S caravanner/MS caravansary/SM caravanserai/SM caravel/MS caraway/SM carbamate/S carbamazepine carbapenem/S carbide/SM carbine/SM carbo-load/G carbo/S carbohydrase carbohydrate/SM carbolic carbon-14 carbon-neutral carbon-paper carbon/sQ9S8W-NqMn carbonaceous carbonate/GDSM carbonation/M Carbondale carboniferous carbonyl/M carborundum carbostyril carbowax carboxy carboxyl carboxylase carboxylate/SD carboxylation carboxylic carboy/MS carbuncle/DSM carbuncular carburettor/SM carcase/MS carcass/MS Carcassonne Carchemish carcinogen/WMS carcinogenesis carcinogenicity/MS carcinoid/S carcinoma/SM card's card-carrying card-index card/DERGS cardamom/SM cardboard/SM cardholder/S cardiac/S Cardiff/M Cardigan/M cardigan/MS Cardin cardinal/MYS cardinality/MS carding/M cardio cardiogram/SM cardiograph/ZRSM cardioid/M cardiological cardiology/3MS cardiomegaly/M cardiomyopathy cardioprotection cardiopulmonary cardiorespiratory cardiothoracic cardiovascular carditis cardmember/S cardoon/S cardsharp/RMS Cardus/M care/6jSp cared/U careen/DGS career/G3MDS careerer careerism/M careerist carefree careful/TP carefulness/S caregiver/S careless/YP carelessness/S careline cares/DG caress/SvVMk caresser/M caret/SM caretaker/MS Carew/M careworn Carey/M cargo/M cargoes Carib/S Caribbean caribou/M caricature/3SGDM caricaturisation caricaturization caries/M carillon/MS Carina caring/U Carinthia/M cariogenic carious/K carisoprodol Carl/MG Carla Carleton Carlin/M Carline Carlisle/M Carlo/S carload/GMS Carlota Carlow/M Carlsbad/M Carlson Carlton Carlyle Carmarthen/M Carmel Carmen/M Carmichael carmine/SM carnage/SM carnal/Y carnality/SM carnassial Carnatic carnation/MIS Carnegie/M carnelian/MS Carnell/M carnet/SM Carney/M Carnforth/M carnitine carnival/SM carnivalesque Carnivora carnivore/MS carnivorous/YP carnivorousness/S carnosaur/S Carnot carnotite carny/G carob/MS carol-singing carol/DRGSM Carolina/SM Caroline/M Carolingian/M Carolinian/S Carolyn carom/S carotene/SM carotenoid/S carotid/M carousal/SM carouse/RGDS carousel/SM carp/GMDkRS Carpaccio carpaccio carpal/SM Carpathian/S carpel/SM carpenter/dSM carpentering/M carpentry/SM carpet/dJSM carpetbag/RMSDG carpeting/M carphology carpi/M carpool/DSG carport/MS carpus/M Carr/M carrageen/M carrel/SM Carrera/M carriage/aSMf carriageway/MS Carrick Carrickfergus/M Carrie carried/a carries/a Carrington/M carrion/SM Carroll/M Carrolton carrot/MS carroty/T carry-all/SM carry-cot/SM carry-on carry/DRSG carrying/a carsick/P Carson/M Carsten/M cart/RMD6GS cartage/MS carte/M cartel/SM Cartesian/S Cartesianism cartful/S Carthage Carthaginian carthorse/MS Cartier cartilage/SM cartilaginous cartload/MS cartographer/SM cartographical cartographically cartography/WSM cartomancy carton/dMS cartonnage cartoon/G3DMS cartoonish cartoonist cartophilist/S cartophily cartridge/MS cartwheel/RGMDS Cartwright Caruso Carvalho/M carve/RSJGDy carven carving/M caryatid/SM caryopses caryopsis Carys casaba/SM Casablanca Casanova/M casbah/M cascade/GDSM cascara/SM case-harden/dS case-load/SM case-sensitive case/DMLJSG casebook/MS cased/U casein/MS caseload/S casework/RSM Casey/M cash-book/MS cash/DGSpM cashback cashew/SM cashier/GMDS cashmere/SM cashpoint/S casing/M casino/SM Casio/M cask/SMGD casket/dSM Caspar Caspian Cassady/M Cassandra cassava/SM Cassels casserole/MGDS cassette/MS cassia/SM Cassidy/M Cassie/M cassingle/S Cassini/M cassino's Cassiopeia Cassius cassock/SMD cassowary/MS cast's/e cast-iron cast-off/S cast/RSGJM Castalian castanet/SM castaway/SM caste/MS castellated castellation/S caster/nN casteth castigate/SnDNG castigation/M castigative castigator/MS castigatory Castile Castilian/S Castillo/M casting/Mc castle/GMDS Castleford/M Castlereagh/M castor/MS castrate/GDS castration/M castrato Castries/M Castro/M casts/aAe casual/SPY casualness/S casualty/SM casuarina/S casuist/SMWy casuistical/Y casuistry/MS Caswell/M cat-and-dog cat-bear cat-sit/RG cat/M2ZzDGS catabolic catabolism catabolite/S catabolize/G catachreses catachresis catachrestic cataclysm/WSM cataclysmal cataclysmically catacomb/MS catadromous catafalque/SM Catalan/S catalepsy/MS cataleptic/S Catalina catalogue/GRDS catalogued/U Catalonia catalpa/SM catalufa/S catalyse/SDWG catalyser catalysis/M catalyst/SM catalytic/Y catamaran/MS cataplectic cataplexy catapult/GMDS cataract/MS catarrh/MS catastrophe/SM1W catastrophism catastrophist/S catatonia/MS catatonic/S catatonically Catawba catbird/MS catboat/SM catcall/DGSM catch-all/SM catch/LRGZ7S catchfly/S catchlight/S catchline catchpenny/S catchphrase/S catchup/SM catchweight catchword/MS catchy/PTY catechesis catechetical catechetically catechetics catechin/S catechise/SGD catechism/MS catechist/SM catechize/GSD catechol catecholamine/SM catechumen/S categoricity categorise/AGSD categorised/U categorize/AGSD category/wq8W9Qs-SM1 catenate/FN catenation/MF catenative/S cater/drS catering/M caterpillar/SM caterwaul/GDS Catesby/M catfight/SG catfish/SGDM catgut/SM catharses catharsis/M cathartic Cathay cathead/S cathedral/SM Catherine/M catheter/8QMS catheterisation catheterization cathodal cathode/SWM cathodoluminescence catholic/M Catholic/SM Catholicism catholicity/MS catholicly Cathy cation/MW catkin/SM catlick catlike catmint/M catnap/DMSG catnip/SM Cato Caton/M Catskill/S catsuit/MS cattery/MS cattiness/S cattle/mM catty/TP Catullus CATV catwalk/SM Caucasian/S Caucasoid Caucasus Cauchy caucus/S caudal/Y caught/U cauldron/SM Cauldwell/M cauliflower/SM caulk/GDRJS causal causalgia causality/MS causate/vV causation/M causative/S cause/GnDMoRSp causerie/MS causeway/GMSD caustic/SY causticity/SM cauterise/DnGS cauterize/NSDGn caution/KSGyDM cautioner/SM cautious/IY cautiousness's cautiousness/I cautiousnesses cavalcade/MS cavalier/YPSDG cavalry/SmM Cavan/M Cavanagh/M cave-in cave/mRSMDG caveat/SM Cavendish caver/F cavern/DSGM cavernous/Y cavernulous cavesson/S cavewoman cavewomen caviar caviare/MS cavil/SDRGJ caving/M cavitary cavitation cavity/FMS cavort/DSG caw/GSMD Caxton cay/SCM Cayenne/M cayenne/MS Cayley/M Cayman/M cayman/S Cayuga/M CB CBS CBT cc cc'd cc'ing cc's CCD CCTV CD-R/S CD-ROM/S CD-RW/S CD/M CDC/M CDMA cDNA CDs CDT Ce CE ceanothus cease/CDSG ceasefire/S ceaseless/PY ceaselessness/S ceasing/U Cebuano Cecil/M Cecilia Cecily/M cedar/MS cedarwood cedary cede/FKAGDS cedilla/MS Cedric/M cefotaxime Ceil ceilidh/SM ceiling/MSD celandine/SM Celanese celeb/S celebrant/SM celebrate/inNSDyG celebrated/U celebratedness/M celebration/M celebrator/SM celebrity/MS celeriac celerity/SM Celeron celery/SM celesta/SM Celeste celestial/SMY celestiality/S Celia/M celibacy/SM celibate/SM cell/MDS3G cellar/dMS cellarer/M cellmate/S cello/S3M cellophane/SM cellphone/SM cellular/Y cellularity cellulite cellulitis celluloid/MS cellulose/MS cellulosic Celsius Celt/WS Celticism Celticist/S cement/RGDSM cementa cementite cementum/MS cemetery/SM cenobite/SMW cenotaph/SM Cenozoic censer/SM censor/dSM censored/U censorial censorious/PY censoriousness/S censorship/SM censorware censurable censure/GRMSD census/SdM cent/SM centaur/MS Centaurus centavo/SM centenarian/SM centenary/S centennial/Y centesimal/Y centigrade/S centilitre/SM centime/SM centimetre/MS centimetric centipede/SM centra central/qsQ89-3 Centralia centralise/CDnSAG centralism/M centralist centrality/SM centralize/CDNSAnG centre/GDRMJ3WoS centreboard/SM centreboarder centrefire centrefold/S centreless centreline/MS centrement centremost centrepiece/SM centrepin Centrex centric/F centrifugal/SY centrifugate/M centrifugation/M centrifuge/MGNDS centring/M Centrino centripetal/Y centrism centroid/SM centromere/S centromeric centrosome/S centrum/S centuple/DGS centurion/SM century/SM CEO/SM cephalic/S cephalization Cephalochordata cephalochordate/S cephalopod/S Cephalopoda cephalosporin/S cephalothorax Cepheid ceramic/3MS ceramicist ceramide ceramist/SM ceratobranchial/S Cerberus cercopithecoid/S cereal/MS cerebellar cerebellum/MS cerebra/no cerebral/S cerebrate/SDG cerebration/M cerebriform cerebroside/S cerebrospinal cerebrovascular cerebrum/MS cerement/SM ceremonial/S ceremonialness ceremonious/UY ceremoniousness/SM ceremony/SMo Ceres cerise/MS cerium/M cermet/SM CERN Cernan/M cert/SF certain/UY certainer certainest certainty/USM certificate/SDM certification/MCA certified/UAC certifies/CA certify/NRl7DGnS certiorari/M certitude/MIS cerulean/MS ceruloplasmin cerumen cerussite/S Cervantes cervical cervicitis cervix/M cess cessation/SM cession/FMAK cessions/F Cessna cesspit/M cesspool/MS CET Cetacea cetacean/S cetology/3 ceviche/S Ceylon cf. CFC/S CfIT/M CFO/S CGI Ch'ing cha-cha cha/Wy Chablis chachalaca/S chaconne Chacornac/M chad Chad/M Chadian/S chador/S Chadwick/M chaetognath/S Chaetognatha chafe/SGD chafer/M chaff/MGSD chaffer/rd chaffinch/SM chaffweed Chagas/M chagrin/MS chagrined chain's chain-smoke/GD chain/UDGS chainlike chainsaw/DSG chair/MGm5SD chairlady/M chairlift/SM chairmanship/MS chairperson/SM chaise/MS Chakotay/M chakra/S Chalan/M chalcedony/SM Chalcolithic chalcopyrite Chaldean/S chalet/SM chalice/MDS chalicothere/S chalk/MGZ2SD chalkboard/MS chalkiness/S chalkline chalky/T challenge/RDGSk challenged/U challenging/U challis/SM Chalmers/M chamade chamber/rdMS Chamberlain/M chamberlain/SM Chamberlin/M chambermaid/MS chamberpot/S Chambers/M chambray/SM chameleon/MS chamfer/dSM chammy's chamois/MDSG chamomile/MS champ/DGS champagne/SM champaign/M champers champion/SGDM championship/SM Champlain chan/S chance's/a chance/DS2MZGy chancel/SM chancellery/SM chancellor/MS Chancellor/SM chancellorship/MS Chancellorship/S chancer chancery/SM chances/a chanciness/S chancing/M chancre/SM chancroid/S chancy/T chandelier/MS chandler/MS chandlery/S Chanel/M Chang change-ringing change/RBlpGDS changeability/MS changeable/U changeableness/SM changeably/U changed/U changeling/M changelog/S changeover/SM changeset/S changing/U channel/qs-9JSQ8RGDM channelling/M Channing ChanServ chanson/SM chant/MRDGSJ chanterelle/S chanteuse/SM Chanthaburi/M chanticleer/SM Chantilly chantry/SM chaology/3 chaos/MS chaotic/Y chap/SDMG Chaparral/M chapbook/MS chapeau/MS chapel/MyS chapelry/SM chaperon/d chaperonage/MS chaperone/SM chaplain/MS chaplaincy/MS chaplet/SM Chaplin/M Chaplinesque Chapman chappie/S chaptalisation chaptalise/SGD chaptalization chaptalize/SGD chapter/dSM char/5GDS charabanc/SM characin/S character/sQ98t+dpq6-MS characterised/U characteristic's characteristic/UY characteristics charade/SM charango/S charas charbroil/SGD charcoal/GSMD charcuterie/S chard/MS Chardonnay/S Charest/M charge/cGEfDAS chargeable/AE chargeableness/M chargeback/S charged/U chargee chargehand/S charger/ESM chargrill/D chariness/S chariot/SGMD charioteer/DSMG charism/S charisma/M1W charismata charismatic/U charismatics charitable/UY charitableness/MS charitably/U charity/SM charlady/M charlatan/MS charlatanism/SM charlatanry/SM Charlemagne/M Charles Charleston Charley Charlie/M Charlotte/M Charlottesville Charlottetown Charlton charm/MRGkDpS charming/T charro/S Charron charset/S chart/RDG73MJS chartbuster/S charted/U charter/dr chartist chartreuse/SM chartroom/S chary/TPY chase/RDGS Chasidism chasing/M chasm/SM Chassell/M Chassidism chassis/M chaste/sQTYP chastely/U chasten/Sd chasteness/S chastise/L chastity/SM chasuble/SM chat/GS2MZDz chatbot/S chateaubriand Chatelain/M chatelaine/MS chatline/S chatroom/S Chattahoochee Chattanooga chattel/SM chatter/dSr chatterbot/S chatterbox/SM chattiness/S chatty/PT ChatZilla/M Chaucer/M Chaucerian/S chauffeur/DSMG Chautauqua chauvinism/MS chauvinist/MSW1 chav/S chavish chavvy/T Chazen cheap/TY cheapen/dS cheapish cheapness cheapskate/SM cheat/RDSG Chechen/S check-in/S check-list/S check-up/MS check/ASGD checkable checkbox/S checker/S checklist/S checkmate/MDSG checkout/S checkpoint/MS checksum/GMSD cheddar/S Chee/M cheek/2GMzDZS cheekbone/SM cheekiness/S cheekpiece/S cheeky/TP cheep/MGDS cheer/RDp6G2ZjSz cheerful/TP cheerfulness/S cheeriness/S cheerio/S cheerleader/SM cheerleading cheerless/YP cheerlessness/S cheery/PT cheese-cutter/S cheese-paring cheese-skipper cheese/ZMDSG cheeseboard cheeseburger/MS cheesecake/SM cheesecloth/MS cheesemaker/S cheesemaking cheesemonger/S cheeseparing/S cheesewood cheesiness/S cheesy/PT cheetah/SM chef-d'oeuvre chef/GDSM Chekhov/M Chekhovian Chekov/M chelate/DnMNG chelation/M chelicerate/S Chelmsford Chelmsleywood Chelsea/M Cheltenham chem/3 chemautotrophically chemical/MSY chemigraphy chemiluminescence/M chemiluminescent chemise/SM chemist/y chemistry/SM chemitype Chemnitz/M chemo chemo-statical chemoarchitecture chemoattractant/S chemoattraction chemoattractive chemoautotroph/S chemoautotrophic chemoautotrophically chemoautotrophy chemoceptor/S chemocline chemoimmunotherapy chemokine/S chemoprevention chemoreception chemoreceptor/S chemosensory chemosynthesis chemosynthetic chemotactic chemotaxis chemotherapeutic/S chemotherapist/SM chemotherapy/SM chemtrail/S chemurgy/SM Chen/M Cheney/M Cheng chenille/SM Chennai/M cheque/RSM chequebook/MS chequeing chequer/d chequerboard/MS Cherie cherish/GDS cherisher/M Chernobyl/M Cherokee/S cheroot/MS cherry-pick/SGD cherry/MS chert/SM cherub/SMW cherubically cherubim/S chervil/SM Cherwell Cheryl/M Chesapeake Cheshire/M chess/mSM chessboard/MS chest/6ZSDM Chester-le-Street Chester/M chesterfield/SM Chesterton/M chestful/S chestnut/MS chesty/T Chetham/M chetrum/S chevalier/MS Cheviot/SM Chevrolet chevron/SM chevroned Chevy/M chew/GRZ2S7D Chewbacca/M chewiness/S chewy/T Cheyenne/S chg chge chi/M Chiang/M chianti/M chiaroscuro/MS chiasma chiasmata Chiba Chicago/M Chicagoan/S Chicagoland/SM chicane/MDGSy chicanery/SM Chicano/SM chicer chicest Chichester Chichewa chichi/TS chick/MS chickadee/MS Chickasaw/S chicken-and-egg chicken-livered chicken/dSM chickenfeed chickenhearted chickenpox/SM chickpea/SM chickweed/MS chicle/YMS chicness/S chicory/SM chide/DkSG Chief chief/SMa chiefdom/MS chiefly chieftain/SM chiffon/MS chiffonade chiffonier/MS chigger/SM chignon/SM chihuahua/S chilblain/SM child/pM childage childbearing/M childbed childbirth/SM childcare childcarer/S childed childes childhood/SM childish/PY childishness/S childless/P childlessness/S childlike/P childmind childminder/SM childminding childproof/GD childrearing children/M Chile/MS Chilean/S chiliarch/M chiliarchs chiliastic chill/TDk2PRGMYS chilli/M chilliness/S chillness/S chilly/TPS Chiltern/S Chilton/M chimaera/Mw chime/RMDSG chimera/SMwW chimichanga/S chimichurri chimney/DMS chimp/MS chimpanzee/MS chin-strap/MS chin-wag/GD chin/pSMGD China/Mm china/SM chinaberry/S Chinatown/M chincherinchee/S chinchilla/MS chine/SM Chinese/M Ching ching chink/DGMS chino/SM chinoiserie/S Chinook chinstrap/S chintz/SMZ chintzily chintziness chintzy/T Chinyanja chionodoxa/S chip/GMJZDS chipboard/M chipmaker/S chipmunk/MS Chippendale Chippenham Chippewa chippie chipping/M chippy/S chipset/S Chirac/M chiral chirality chirography/SM chiromancy chiropody/3SM chiropractic/MS chiropractor/SM chiropteran/S chirp/GDZS chirpy/PYT chirr/GD chirrup/Sd chisel/RDSGJM Chisholm Chisinau/M Chiswick/M chit-chat/SGD chit/SM chitchat/DSMG chitin/MS chitinous chitosan chitterlings Chiu/M chivalrous/PY chivalrously/U chivalrousness/S chivalry/WSM chive/SM Chivers/M chivvy/SGD chlamydia/OS chlamydiae Chloe chloral/M chloramphenicol chlorate/M chloride/SM chlorinate/CGSDN chlorination/M chlorine/nNM chlorite/W chlorofluorocarbon/S chloroform/GDSM chlorophyll/SM chlorophyte/S chloroplast/SM chloroplastic chloroquine/M chloroses chlorosis chlorotic chlorpromazine chlorzoxazone chm choanocyte/S choccy/S chock-a-block chock-full chock/DGSM chocker chocoholic/S chocolate/SMZ chocolatey Choctaw/S choice/TSPYM choir/GSDM choirboy/MS choirgirl/MS choirman choirmaster/SM choirmen choisya/S choke/RkDSG chokeberry/SM chokecherry chokes/M cholecalciferol cholecystectomy/S cholecystitis cholelithiasis choler/SM cholera/MSW cholerically cholesteric cholesterol/SM choline/M cholinergic cholinesterase/M chomp/SDG Chomsky/M Chondrichthyes chondrocranium chondrocyte/S choosable choose/GR2SZ choosiness/S choosy/T chop/R2ZSzGD chophouse/SM Chopin chopper/d choppiness/S choppy/TP chopstick/SM choral chorale/MS chord/GSDM chordal Chordata chordata chordate/SM chording/M chordophone/S chordotonal chore/MoDSG chorea/SM choreograph/ZGRS1DW choreography/MS choreologist choreology chorines chorion/M chorister/SM chorizo/S Chorley chorographer/S chorographic chorography choroid/S choroidal chortle/RGDS chorus/MdS chose chosen choucroute chough/S choux chow/GSMD Chris chrism/MS Chrissie Christ/M Christchurch christen/dAS Christendom christened/U christening/MS Christensen/M Christi Christian/Q8MS Christiana/M Christianity/M Christiansen/M Christie/M Christina/M Christine Christless Christlike Christmas/MS Christmastide Christmastime Christological Christologically Christology Christoph/M Christopher/M chroma/M1 chromakey/SGD chromate/M chromatic/SP chromaticism/M chromaticity chromatics/M chromatid/S chromatin/MS chromatogram/MS chromatograph/ZW chromatography/M chrome/MWGD chromic chrominance chromite/M chromium/SM chromodynamics chromogenic chromoly chromophore/S chromophoric chromoplast/S chromosomal chromosome/SM chromosphere/WM chromous chronic/Y chronicle/MSRGD chronobiologist/SM chronobiology chronograph/WZSM chronologer/S chronology/13SMw chronometer/SMW chronometrical chronometrically chronometry chronostratigraphy/W chronotherapy chronotropic chrysalids chrysalis/SM chrysanthemum/MS Chrysler Chrysostom/M chub/SMZ2 chubbiness/S chubby/TP chuck/SDGM Chuckie/M chuckle/DkGS chucklehead/SD chucklesome chuckwalla/S chuff/MD chug/DSGM chukka/S chum/2DzMZSG chumminess/S chummy/TP chump/MGDS chumping/M Chung chunk/ZSGM2D chunkiness/S chunky/TP chuntering chupacabra/SM chuppa chuppah chuppot church Church Church-of-England church/mMG5SDY churchgoer/MS churchgoing/SM churchianity Churchill/M Churchillian Churchland/M churchly/P churchwarden/SM churchy/T churchyard/MS churl/MS churlish/YP churlishness/S churn/RDGSM churning/M churr/GD churrascaria/S churrasco Churrigueresque chute/SGMD chutney/SM chutzpah/SM chyme/MS chymotrypsinogen château/SM châtelaine/MS CI Ci CIA/M ciabatta/S ciao/S ciboria ciborium cicada/SM cicatrice/MS cicatricial cicatrisation cicatrise/SDG cicatrix/M cicatrize/SDGN cicchetti Cicciolina/M Cicely cicely/S Cicero cicerone/SM ciceroni Ciceronian Ciceronianism cicheti cichlid/S CID cider/CMS Cidre/M Ciecierski/M cig/S cigar/SM cigarette/MS cigarillo/SM ciguatera cilantro/S cilia/M ciliate/DFYS cilium/M Cimarron/M Cimmerian/SM cinch/DSGM cinchona/SM Cincinnati cincture/MGDS cinder/SdM Cinderella Cindy/M cine/M cinema/WMS cinematheque/S cinematograph/S cinematographer/SM cinematographically cinematography/WSM cinephile/S cinephilia Cinerama cineraria/S cinerarium/S cinerary cinereous cinereum/S cineritious cingula cingulate cingulum cinnabar/MS cinnamon/SM cinnarizine cinquefoil cipher/MdS ciphered/C ciphers/C ciphertext/S ciprofloxacin cir circa circadian Circe circle/GDSM circler/M circlet/MS circlip/S circuit/MdS circuital circuitous/YP circuitousness/S circuitry/MS circuity/SM circulant circular/8YQPMS circularity/MS circulate/GyNDSnV circulated/A circulates/A circulating/A circulation/MA circulator circumcircle/S circumcise/DSGNX circumcised/U circumciser/MS circumcision/M circumesophageal circumference/SM circumferential/Y circumflex/DSGM circumlocution/SM circumlocutory circumlunar circumnavigate/DNnSxG circumnavigation/M circumnavigator circumpolar circumscribe/SXDNG circumscription/M circumspect/Y circumspection/SM circumsphere circumstance/GSDM circumstantial/Y circumstantiality circumvallate/DG circumvallation/S circumvent/DGS7 circumvention/SM circus/SM cirque/SM cirrhoses cirrhosis/M cirrhotic/S cirri/M cirrostratus cirrus/M cis CISC Cisco/M cisgender cisgendered cissy cistern/SM cistus citable citadel/SM citation/MA cite/nAGNDS cited/I cites/I citified citing/I citizen/MYyS citizenry/SM citizenship/SM citrate/DM citriculture citrine Citrix/M Citroen/M citron/MS citronella/SM citrous citrus/ZSWM citrusy city/DMS cityscape/SM citywide civet/SM civic/S civics/M civil/s9qQ-8Y civilian/SM civilised/U civility/ISM civilized/U civilly/U civvies CJD ck/C cl/GJ clack/DGS clackers Clackmannanshire/M clad/JGS cladding/M clade/S cladism cladistic/S cladoceran/S cladogenesis cladogenetic cladogram/S Claffey claim's claim/ERSGCAD claimable claimant/SM claimed/U clairaudience clairaudient Claire clairvoyance/MS clairvoyant/SY clam/GMzZD2S clamant clamber/dSr clamdiggers clamminess/S clammy/TP clamorous/YP clamour/GMDRS clamp/SGMD clampdown/SM clamper/M clamshell/SM clan/mSM Clancarty/M Clancy clandestine/YP clandestinity clang/DRGS clangorous/Y clangour/SGDM clank/DMkGS clannish/YP clannishness/S clanship clap/RGDS clapperboard Clapton claptrap/MS claque/SM Clara Clare/MZ Claremont Clarence Clarendon/M claret/dSM clarification/M clarificatory clarifier/M clarify/NDGSn Clarinbridge/M clarinet/MS clarinettist/MS clarion/MDSG clarity/SM Clark/M Clarke/M Clarkson/M clary clash/DGS clasher/M clasp's clasp-knife clasp-knives clasp/SUGD clasped/M clasper/M class-concious class-conciousness class-list class/2GZDMwpS1 classed/e classer/M classes/e classful classic/3S classical/3 classicalist classicality classicism/SM classicist classics/M classifiable/U classification/MaCA classificatory classified/S classifies/CA classify/R7DSnGN classifying/a classily classiness/S classing/e classism classist/S classlessness classmanship classmark/SM classmate/SM classroom/MS classwork/M classy/TP clast/S clastic clathrate/S clathrin clatter/dSZk clatterer/M Claude Claudette/M Claudia claudication Claudio Claudius Claus clausal clause/SM Clausen Clausewitz/M claustra claustrophobe/SM claustrophobia/SM claustrophobic/S claustrophobically claustrum clavate clave/FM claver Claverack/M clavichord/SM clavicle/SM clavicular clavier/MS claw/DSGM clawback/S clawer/M clay/ZSMDG Clayborne/M clayier clayiest claymore/SM Clayton/M clayware clean-cut clean-living clean-shaven clean-up/MS clean/BDRTPYGS cleaning/M cleanish cleanliness/U cleanlinesses cleanly/TP cleanness/S cleans/DRSG cleanse cleanskin/S clear-cut clear-headed/PY clear-sighted clear-up/S clear/TPSYGJD clearance/MS clearer/M clearing-house/S clearing/M clearness/S cleartext Clearwater clearway/MS clearwing cleat/GMDS cleavage/SM cleave/RGSD Cleckheaton/M clef/SM cleft/DGSM Clegg/M cleistogamous cleistogamy clematis/MS Clemence Clemenceau clemency/MIS Clemens clement/IY Clement/SM Clemente/M Clementine clementine/S Clemson clench/GUSD Cleopatra/M Cleophas/M clerestory/SM clergy/5mSM cleric/SYM clerical/S clericalism/MS clerk/GSYDM clerkship/MS Clermont-Ferrand Cleveland/M clever/PY cleverer cleverest cleverness/S clevis/SM clew/SMDG CLI cliche/SD cliché/MS clichéd click-through/S click/RSGDM clickable clickbait clicket clickjacking clickstream/S client-server client/MS clientele clientelism clientship clientèle/M cliff/SM cliffhanger/SM cliffhanging Clifford clifftop/S Clifton/M climacteric/MS climactic climate/M1S climatology/S3Mw1 climax/MGDS climb/7GRDSJ climbdown climbed/U clime/WSM clinch/SRGkD Cline cling/RGZ clingfish/S clingstone/S clingy/TP clinic/YSM clinical/K clinician/SM clink/DGSR clinker/d clinometer/SIM Clint Clinton/M Clintonian Clio cliometric/S cliometrician/S clip-clop clip-on clip/RGSDJM clipboard/SM clipped/U clipping/M clique/DMGSZ cliquier cliquiest cliquish/YP cliquishness/S clitoral clitoridectomy/S clitorides clitoris/MS Clive Cliveden clivia/SM Clizbe cloaca/M cloacae cloak-and-dagger cloak/DMGS cloaked/U cloakroom/MS cloaks/U clobber/Sd cloche/SM clock-watch/GR clock/SDMRGJ clockmaker/MS clockmaking clockwatcher clockwise clockwork/SM clod/SMGD cloddish/P clodhopper/MS clog/MSGD clogs/U cloisonnes cloisonné cloister/MdS cloistral Cloke/M clomp/SMDG clonal clonazepam clone/GDMRS Cloney/M clonidine clonk/GSD Clonmel/M Clonmore clop/DSG closable close-cropped close-down close-fisted close-fitting close-hauled close-knit close-mouthed close-ratio close-set close-up/S close/TRJPDYGS closed-circuit closed/UE closer/ESM closes/E closet/SdM closing/E closish closure's/E closure/GDSM closures/E clot/GDMS cloth/DGJSM clothbound clothe/UGD clothes-peg/SM clothes/f clothesbrush clotheshorse/SM clothesline/SGDM clothesman clothesmen clothier/SM clothing/Mf cloud-cuckoo-land cloud/pZ2SMDGz cloudberry/S cloudburst/SM clouded/cU cloudiness/S clouding/c cloudless/PY cloudlet clouds/c cloudscape/SM cloudy/TP Clough/M clout/SMDG clove/RMS cloven cloverleaf/SM Clovis clown/SDGM clownfish/S clownish/PY clownishness/S cloy/DkSG clozapine club-class club-foot/MD club/GSMD clubbability clubbable clubbed/M clubber/S clubbing/M clubfeet clubhouse/MS clubland clubman clubmate/S clubmen clubmoss/S clubroom/SM clubroot cluck/DGMS clue/pMDGS clued-up clump/DZSGM clumpish clumpy/T clumsiness/S clumsy/TYP clung clunk/DRM2GzZS clunky/T cluster/MdSJ clutch/SDG clutter/dS cluttered/U Clwyd Clyde Clydebank/M Clydesdale Cláudio/M cm Cm Cmd. Cmdr Cmdre CMG Cmnd. CMOS CMS CNAA CNBC/M Cnidaria cnidarian/S CNN/M CNS CNY Co co-ally/D co-author/SMd co-belligerence co-belligerent/S co-branded co-branding co-chair/S co-channel co-conspirator/S co-counselling co-education co-educational co-evolution co-evolutionary co-evolve/SGD co-found/DG co-founder/S co-located co-morbid co-morbidity co-occurrence co-op co-operant co-operate/VSDGuNv co-operation/M co-operative/SP co-operator/MS co-opt/NVG co-option co-ordinate/GDSNV co-ordinator/SM co-owners co-ownership co-pilot co-produced co-producer/S co-production/S co-religionist co-respondent/SM co-site co-star/GSD co-trimoxazole co-worker/SM co-write/SG co-writer co-written co-wrote co/EDS coach/mGM coacher/M coachload/S coachroof/S coachwhip coachwood/S coachwork/M coadjutor/SM coagulable coagulant/SM coagulate/nGSDN coagulation/M coagulator/S coal-black coal-fired coal-holes coal/SGMD coaler/M coalesce/GDS coalescence/SM coalescent coalface/SM coalfield/MS coalfish/S coalhouse coalition/3SM coalitionist coalminers coarse/TPY coarsen/dS coarseness/S coarticulation/S coast-to-coast coast/SGMD coastal coasteering coastguard/SM coastland/S coastline/MS coat-hanger coat/cMSf coated/U coater/S Coates coatigan coating's/c coating/SM coattail/S coattest coax/RkoG cob/GMSD cobalamin/S cobalt/MW cobaltous Cobb/M Cobbe/M cobble/GRDMS cobblestone/SDM coble/M Cobol/M cobra/SM cobweb/MZSGD cobwebby/T Coca-Cola coca/SM cocaine/SM cocci/MS coccidia coccidian coccidioidomycosis coccolith/S coccolithophore/S coccolithophorid/S coccus/M coccyges coccyx/M Cochin cochineal/SM cochlea/MS cochleae cochlear cochoa/S Cochran/M Cochrane/M cock-a-doodle-doo cock-a-hoop cock-and-bull cock-eyed/Y cock-eyedness cock-fight/JSGM cock-fighting/M cock-of-the-rock cock-of-the-walk cock-of-the-wood cock-shy cock-up/SM cock/zGMDZS2 cockade/MSD cockapoo/S cockatoo/SM cockatrice/MS cockboat Cockburn/M cockchafer/S cockcrow Cockell/M cocker/M cockerel/SM Cockett cockfight/SG cockiness/S cockle/GDMS cocklebur/SM cockler/S cockleshell/MS cockloft/S cockney/MS cockneyism/S cockpit/MS Cockrell/M cockroach/SM cockscomb/MS cocksfoot/S cockshy/S cockspur/S cocksucker/S! cocksure cocktail/GDSM cocky/TP coco/MS cocoa/SM cocobolo/S coconut/MS cocoon/MGSD Cocos/M cocreate/SGD cocreation cocreator/S cod/rMdSDG coda/SM Codd/M coddle/SGD coddler/M code's code-switch/SGD code/CDaAGS codebase/S codebook/S codebreak codebreaker/S codebreaking codec/SM coded/K4 codeine/MS codeless codename/D codependence codependency/S codependent/S coder/4SCM codetermine/S codeword/SM codex/M codfish/MS codger/SM codices/M codicil/SM codification/M codify/RDGSNn coding's coding/4 codling/SM codomain codon/S codpiece/MS codswallop Cody/M coed/M coeducational coefficient/SM coelacanth/S Coelenterata coelenterate/MS coelurosaur/S coequal coerce/RDbGS coercible/I coercion/SM coercive/PY coercivity coetaneous coeternal/Y coeval/SY coevality cofactor/MS coffee-cake/MS coffee-cup/SM coffee-maker/S coffee-pot/MS coffee-table/MS coffee/SM coffer-dam/MS coffer/SdM Coffey/M coffin/dMS Coffman cog/DMGS cogency/SM cogenerator cogent/Y cogitate/SNVnGD cogitation/M cogitator/SM cognac/MS cognate/YnSN cognateness cognation/M cognisance cognisant cognition/AMKS cognitional/Y cognitive/SY cognitivism cognitivist/S cognizable cognizance/AMS cognizant/A cognomen/SM cognoscente cognoscenti cogwheel/SM cohabit/nd cohabitation/o cohabitational cohabitee/S cohabiter/S Cohen/M cohere/GDS coherence/SIMZ coherency/S coherent/IY coherer/M cohesion/MS cohesive/YP cohesiveness/S Cohn coho/S cohort/SM cohosh coif/M coiffed coiffing coiffure/SDMG coil/USADG coin/RMDG coinage/MS coincide/SGD coincident/Y Cointreau coital/Y coitus/MS Coke/SM coke/SMDG cokey col/SNVnW cola/SM colander/SM colatitude/SM Colbert/M Colburn/M Colby Colchester/M colchicine colchicum/S cold-blooded/Y cold-bloodedness cold-hearted cold-shouldering cold/TPSY Coldfield coldish coldness/S Cole/M Colebrooke/M colectomy/S Coleman/M coleopteran/S coleopterous coleorhiza coleorhizae Coleraine/M Coleridge/M coleslaw/SM Colette/M coleus/MS Colgate coli colic/ZSM coliform Colin coliseum/MS colitis/SM coll collaborate/VGDNSvn collaboration/3M collaborationist collaborative/S collaborator/MS collage/SDMG collagen/M collagenase collapse/b collapsibility/M collar/pdMS collarbone/SM collate/GSD collated/U collateral/M collation/M collator/SM collect/bSivDV7hG collectability collectable/S collectanea collected/UA collectedness/M collectible/S collection/AMS collective/q38SQ- collectivism/SM collectivity/SM collector/MS collectorate collects/A colleen/M college/MK colleges collegial collegiality/S collegian/MS collegiate/Y collet collide/XDGxNS collie/MRyD colliery/SM collimate/SCNDG collimated/U collimation/M collimator/M collinear Collingwood/M Collins/M collision/M collocational collogue/DSG colloid/MoS colloidal colloquia colloquial colloquialism/MS colloquies colloquium/SM colloquy/Mo collotype/S collude/DGNVSX collusion/M colobus cologne/SMD Colombia/M Colombian/S Colombo/M colon/9MWQsq3-8S colonel/SM colonelcy/SM colonial/S3 colonialism/SM colonialist colonialness colonise/AGCDSn colonised/U colonize/AGCDSNn colonnade/DSM colonoscope/S colonoscopy/S colony/oSM3 colophon/SM Coloradan Colorado/M coloratura/SM colorectal colorimeter/SMW colorimetry colossal/Y colosseum/S colossi colossus/MS colostomy/SM colostrum/SM colour-blind/P colour-code/D colour-fast/P colour-fastness/S colour-sergeant colour/qQ-8RNpGJSnD6jM colourable colourant/SM colouration/EM colourblock/GD coloured/ES colourful/P colourfulness/S colouring/M colourist/S colouristic/Y colourless/Y colourlessness colourman colourpoint colours/AE colourway/S colposcope/Z colt/MS colter/M coltish/PY Colton/M Coltrane coltsfoot/S colubrid/S Columba Columbae columbaria columbarium Columbia/M Columbian columbine/SM columbium Columbus/M column/D3SQ8M columnar columnated columnist Colwyn/M coma/SM comae comaker/MS Comanche/S comatose comb/RGMS combat/vVu combatant/MS combative/P combativeness/S combatted combatting combed/U combfish/S combinable combination's/A combination/oM combinational combinator/oWSM combinatorial combinatoric/S combine/DGAnSN combiner/SM combo/MS combust combustibility/SM combustible/IS combustion/MS combustive combustor Comcast/M Comdex/M come/RIGJS comeback/SM comedian/SM comedienne/MS comedown/MS comedy/WSM comeliness/S comely/PT comer/cM comes's comes/ce comestible/MS comet/MS cometary cometh comeuppance/SM comfit/SM comfits/E comfort/pEGMSDk comfortability/S comfortable/PY comfortableness/S comfortably/U comforted/U comforter/SM comfrey/S comfy/T comic/YMS comical comicality/SM coming/c comity/SM comix comm command/RkGDLMS commandant/SM commandeer/DGS Commander Commander-in-Chief commando/SM commemorate/NDvSVGn commemoration/M commemorative/S commemorator/S commemoratory commence/DLAGS commencer/M commend/AnS7DG commendable/Y commendation/AM Commendatore/M Commendatori commendatory/A commender/AM commensal/S commensalism commensality commensurable/I commensurably commensurate/YI comment/MUSD commentary/SM commentate/SGD commentator/SM commenter/MS commenting commerce/GoSDM commercial/qQ8S-U commercialism/SM commercialness commie/MS commination/S comminatory comminuted commiserate/VNnDGS commiseration/M commissar/MS commissarial commissariat/MS commissary/SM commission's/A commission/CRDSG commissionaire commissioned/A commissural commissure/S commit/NLSoXDG commitment/cS commits/A committable committal/MS committed/cU committee/mSM5 committer/S committing/c commode/ESI commodification commodify/SGD commodious/PIY commodity/MS commodore/MS common-law common-room/M common-sense common/YPSr commonality/MS commonalty/SM commonest commonly/U commonness/U commonplace/SP commons/M commonsensical commonwealth/SM commotion commove/SGD comms communal communalism communalist/SW communality/M commune/oQ8S3DG communicability/SM communicable/I communicably communicant/SM communicate/BDxSVvGnNu communicated/a communicates/a communication's communication/a communicative/P communicator/SM communion/MS communique/S communiqué/MS communism/MS communist/W communitarian/M community/SM commutable/I commutate/Vv commutativity commutator/M commute/R Comoran Comoros/M comp/DGS compact/TRPDYG compaction/M compactness/S compactor/SM compand/SRGD companion/DG7lMS companionable/P companionship/SM companionway/MS company/SMDG Compaq/M comparabilities comparability/MI comparable/P comparably/I comparative/PS comparator/MS compare/uVvGBl comparer/M comparison/SM compartment/DGMS compartmental/-8qQ compass/M compassionate/P compatibility/SMI compatible/SIY compatibleness/M compatibly/I compatriot compeer compel/7NGSDnk compelling/M compendia compendious/YP compendium/MS compensable compensate/DcSnGN compensated/U compensation/cM compensative compensator/M compensatory compete/SDG competence/MSZI competency's competency/IS competent/IY competitive/PY competitiveness/S competitor/SM compilation/SAM compilatory compile/RCNS7DG compiled/A compiles/A compiling/A complacence/Z complacency/SM complacent/Y complain/Rk complainant/SM complaining/UY complaint complaisance/SM complaisant/Y complement/DMGSRN complementarity/S complementary/YPS complementation/M completable complete/IYP completed/U completeness/IS completer/M completes completest completing completion's/I completion/SM completist/S completive complex/GxDYTPNXS complexion/DM complexities complexity/cM compliance/SM complicate/GcDS complicated/U complicatedly complicatedness/M complicator/MS complicit complicity/MS compliment/RGD complimentary/U comply/LRnJN component/SM componentry comport/L compose/CRDSXGN composed/PY composes/AE composing/EA composite/SYP composition/CM compositor/MS compossible compost/RGB composure/MES compote/SM compound/M7 comprehend/NuXSDvGV comprehended/a comprehending/U comprehensibility/IMS comprehensible/IPY comprehensibly/I comprehension/IMS comprehensive/PS comprehensiveness/S compresence compresent compress/XvNVhxb compressed/UC compresses/C compressibility/MI compressible/I compression/MC compressor/MS compromise/M compromising/UY Compton/M comptroller/SM compulsion/M compulsive/YSP compulsiveness/S compulsivity compulsory/YS compunction/SM CompuServe/M computability/M computation/oM computational compute/DRGnNlSB computed/AK computer-literate computer/Q8q- computerate computerese computerphobia computes/A computing/A compère/MD comrade/MSY comradeliness comradeship/SM Comte con/SwMW1DG Conakry/M Conan conation concatenate/nDSG concave/Y concavo-convex conceal/S7RDkLG concealed/U concede/Rh conceit/GiMSDh conceited/P conceitedness/S conceivability/I conceivable/IY conceivably/I conceive/KSDaG conceiver/M concentrate/SGNnVD concentration/M concentrator/MS concentric/Y Concepción/M concept/xSVoM conception/KSMa conceptual/-Q8q conceptuality/M concern/hUD concerning concerns concert/DiGhM concerted/E concerti concertina/MDGS concerting/E concertmaster/MS concerto/SM concerts/E concession/yo concessionaire/SM concessional concessioner concessive conch/MDG conchie/S conchoid conchs concierge/SM conciliar conciliate/nGVyN conciliation/MA conciliator/SM conciliatory/A concise/TYPNX conciseness/S concision/M conclave/S conclude/RNGXDSvVu conclusion/M conclusive/IPY conclusiveness/IS concoct/SDGV concocter/M concoction/SM concomitant/Y concord concordance/MS concordant/Y concordat/SM Concorde/M Concordia concrescence concrescent concrete/GPYNDSnM concreteness/S concreter concretion/M concubinage/SM concubine/MS concupiscence/MS concupiscent concur/DG7S concurrence/SM concurrent concuss/NXV concussion/M condemn/Nn7RGDS condemnation/M condemnatory condensate/MS condensation/M condense/DRSGbn condenseness condescend/NXk condescension/M condign condiment/SM condition's/K condition/oMGRJDS conditional/S conditionality conditionally/U conditioned/AUK conditioning/M conditions/KA condo/SM condolence/MS condom/SM condominium/SM Condon/M condonable condone/DGSN condoner/MS condor/MS conduce/nNvDGVS conducive/P conduct/aDGMS conductance's conductance/4 conductances conductibility/MS conductible conduction/M conductivity/SM conductor/SM conductress/MS conduit/SM condylarth/S condyle/S condyloma/S condylomata condylomatous cone/MZS coned coneflower/M Conestoga coney's confab/DSMG confabulate/NSnDG confabulation/M confect/S confection/R3SGDM confectioner/Z confectionery/SM confectionist confederacy/SM confederal confederate/M confer/7DgGRS conferee/MS conference/GMDS conferral/MS confess/GXxhDN confessant/MS confession/M confessional/S confessor/SM confetti/M confidant/SM confidante/SM confide/kDRGS confidence/cSM confident/cY confidential/PY confidentiality/SM confidingness configurability configurable/K configuration/OAM configure/NADGSn configured/K configuring/K confine/L confined/U confiner/M confirm/nANGSD confirmation/MA confirmatory confirmed/PY confiscate/yNnSGD confiscation/M confiscator/SM confit conflagration/SM conflate/GnDSN conflation/M conflict/kSMVDG conflictual confluence/MS conform/7R3x conformability conformable/U conformably conformal conformance/SM conformant conformism/SM conformist conformities conformity/IMU confound/h confront/NRnx confrontation/M confrère/SM Confucian/S Confucianism Confucianist Confucius confusable confuse/kRhi confused/P confutation/M confute/NSnDG confuter/M Cong conga/MDG congeal/DLGS congener/SM congeneric congenerous congenial/U conger/SM congeries/M congest/DVSG congested/U congestion/SM Congleton conglomerate/DMSGnVN conglomeration/M Congo/M Congolese congrats congratulate/DSGnyN congratulation/M congregate/GNnSD congregation/M congregational Congregational/3Y Congregationalism/MS Congregationalist congress/mxM5GSD congresspeople congressperson/S congruence's/I congruence/ZMS congruency/MS congruent/Y congruential congruently/I congruity/MSI congruous/YPI conic/S conical/P conics/M conidia conidium conifer/MS coniferous Coniston/M conjectural conjecture/GDoSMB conjecturer/M conjugacy conjugal/Y conjugality conjugant conjugate/DVGnSNY conjugateness conjugation/M conjunct/VSvD conjunctional conjunctiva/MSO conjunctivae conjunctive/S conjunctivitis/SM conjuration/M conjurator conjure/NRGSnD conjuring/M conjuror/S conk/RSD Conley/M conman/M conmen/M connate connect/viVbGhDS connected/EPY Connecticut connecting/E connection's/A connection/MES connectionless connective/MS connectivity/SM connector/SM connects/EA Connell/M Connelly conner connexion/SM Connie connivance/MS connive/RSDG connoisseur/SM connoisseurship Connors connotative/Y connubial/Y conodont/S Conor/M conquer/AdS conquerable/U conquered/U conqueror/MS conquest/ASM conquistador/SM conquistadores Conrad/M Conrail/M consanguineous/Y consanguinity/MS conscience-stricken conscience/p conscientious/PY conscientiousness/S conscionable/U conscious/YU consciousness/SM conscription/SM consecrate/ADNSnG consecrated/U consecration/MA consecrative consecrator consecratory consecutive/PY consensus/SM consent/SRGkD consequence consequent/Y consequential/IY consequentialism consequentialist/S consequentiality/SM consequentialness/M consequently/I consequentness conservancy/MS conservation/M3 conservationism conservationist conservatism/SM conservative/PS conservatoire/S conservator/SM conservatory/SM conserve/VnvNu consider/AdS considerable/YI considerably/I considerate/YnN considerately/I considerateness/I consideration/AS considered/U considerer/M considering/S consign/L consigned/A consignee/SM consignment/A consignor/S consigns/A consiprationally consist/SGD consistence/ZS consistency/SMI consistent/IY consistory/MS consol's consolable/I consolation/EM consolatory console/RNkn7 consolidate/DNGnS consolidated/AU consolidates/A consolidation/M consolidator/MS consommé/S consonance/IM consonances consonant/YSM consonantal consortia consortium/MS conspecific/S conspecificity conspectus/MS conspicuous/PIY conspicuousness/SI conspiracy/SM conspirational conspirator/SoM conspiratorial conspire/G constabulary/SM constance/Z constancy/IMS constant/IY Constant/M Constantine/M Constantinople constants constative/S constellation/MS consternate/DnNGS consternation/M constipate/NGDSn constipation/M constituency/MS constituent/YSM constitute/DASG constitution/AMS constitutional/3YS constitutionalism constitutionalist constitutionalities/U constitutionality/SM constitutionally/U constitutive/Y constrain/hG constrained/U constraint/SM constrict/SDVG constriction/SM constrictor/SM construal/S construct/ASbDG constructable constructibility construction/CMAS constructional/Y constructionist/SM constructive/YP3 constructiveness/S constructivism constructor/SM construe/DS7G construed/a construes/a construing/a consubstantial consubstantiality consul/SM consular/S consulate/SM consulship/SM consult/nDNGS consultancy/S consultant/SM consultation/M consultative consultee/SM consultees' consulter/M consumable/S consume/RVSXvkNDhGJ consumed/U consumer/3 consumerism/MS consumerist consummate/DSGVY consummated/U consumption/Mc consumptive/S cont cont'd contact-breaker contact/G7DS contactee/S contactless contactor/S contagion/SM contagious/YP contagiousness/S contain/7RLDSG container/Q-8q contaminant/MS contaminate/NVGDnS contaminated/UC contaminates/C contaminating/C contamination/MCS contaminator/SM contd contemn/SGD contemplate/VNDvuGn contemplation/M contemplative/PS contemporaneity/MS contemporaneous/PY contemporariness/S contemporary/YP contempt/bM contemptibility contemptible/Y contemptuous/PY contemptuousness/S content/LEDhGMS contented/P contentedness/S contention/SM contentious/UY contentiousness/MS contently conterminous/Y contest/7 contestable/I contestant/SM contested/U contextual/Q-q8 contextualism contextualist/S contiguity/MS contiguous/PY continence/IMS continent/oYSM continental/S continently/I contingency/MS contingent/MYS continua/on continual continuance/ESM continuant/MS continuation/ME continuative/S continue/7DSGN continued/E continuer/M continues/E continuing/E continuity/ESM continuous/YE continuousness's continuousness/E continuum/M contort/VDG contortion/M3S contortionist contra/yS contraband/M contrabandist/S contrabass/MS contrabassoon contraception/MS contraceptive/S contract/GbD contractee/S contractile contractility contractive contractual/Y contradance/S contradict/SGyD contradiction/SM contradictory/PY contradistinction/SM contrafactive contrafactual contraflow/S contrail/M contraindicate/VSNnDG contraindication/M contralateral contralto/SM contraposition contrapositive/S contraption/MS contrapuntal/Y contrarian/S contrarianism contrariety/SM contrariness/S contrariwise contrary/PSY contrast/GvZSDkV contravene/SGD contravener/M contravention/MS contretemps/M contribute/DvGVy contribution/SM contributor/MS contributory/SY contrite/P contriteness/S contrition/SM contrivance/SM contrive/RDSG control/BRMSlG controllability/M controllable/U controllably/U controlled/U controversial/UY controversialist/MS controversy/SMo controvert/DGSb controvertible/I contumacious/Y contumacy/MS contumelious contumely/MS contuse/XGSND contusion/M conule/S conundrum/MS conurbation/SM convalesce/DSG convalescence/MS convalescent/S convect/xGSDV convection/SM convene/GADS convener/SM convenience/ISM convenient/YI convenor/S conventicle/SM convention/SoM conventional/Q83 conventionalism/M conventionalist conventionality/MUS conventionally/U convergence/SM convergent convergently conversant/Y conversation/Mo conversational/3 conversationalist conversazione/M converse/GnY converser conversion's/A conversion/G convert/RSbDG converted/UA convertibilities convertibility/IM convertible/PS convertor/S converts/A convex/Y convexity/MS convey/D7SG conveyance/DRSGM conveyancing/M conveyor/MS convict/GVDS conviction/MS convince/RGDSk convinced/U convincing/UY convincingness/M convivial/Y conviviality/MS convocational convoke/GDNnS convolute/DY convolution's convolution/CO convolutions convolve/CSGD convolvulus/S convoy/GDMS convulse/GXDSVuNv convulsion/M convulsive/P Conway/M cony/MS coo/GSD Coogan/M cook's cook/KGADcS cookbook/MS Cooke/M cooked/fU cooker/SMZ cookery/M cookhouse/S cookie/MS cooking/M Cookstown/M cookware/SM cool-bag cool-box/SM cool-headed cool/GDPSRYT Coolaney coolant/SM cooled/c Cooley/M Coolidge/M coolie/MS cooling-off coolish CoolMax coolness/S coolth Coon/M cooncan coonhound/S coonskin/S coop/RDGM cooper/dvuV cooperage/MS cooperant cooperative/U coopery/S coordinate/DGV coordinated/U coordinator/M Coors coot/MS cootie/MS cop-out/S cop/GDRdMS copay/S cope/SZ Copeland Copenhagen/M copepod/S coper/M Copernican Copernicus/M copied/A copies/A copilot/SM coping/M Copini copious/YP copiousness/S coplanar coplanarity Copland Copley copolymer/SM copper/dZ copperas Copperfield copperhead/MS coppernob/S copperplate/SM coppersmith/SM coppice/DMSG Coppola/M copra/SM coprocessor/S coprolite/M coprophagous cops/DSG copse/M copter/SM Coptic copula/nMSV copular copulate/GSyD copulation/M copulative/S copy-edit/Sd copy/3DRGMS copyable copybook/SM copycat/SMDG copyhold copyholder/S copying/a copyleft/D copyread/GR copyright/GRMDS7 copywriter/MS copywriting coquetry/SM coquette/SMGD coquettish/Y cor coracle/SM coracoid coral/SM coralberry/S coralline coralroot/S corbel/SJGMD Corbett/M Corbie Corbin/M Corby Corbyn/M cord's/F cord/EGSAMD cordage/MS Cordeiro/M corder/AM cordgrass cordial/PYS cordiality/MS cordillera/MS cording/AM cordite/MS cordless Cordoba cordon/dSM Cordova cordovan/MS cords/F corduroy/DSMG cordwood cordyline/S core/MDRGS Corel corella/S Coren/M coreopses coreopsis Corey/M corf/M Corfu/M corgi/SM coriaceous coriander/MS coring/M Corinth/M Corinthian/S Coriolis cork/DRGMS corked/U corks/U corkscrew/DSMG corkwood/S corky/T Corley/M corm/SM Corman/M cormorant/SM corn/R2ZSMzDG cornball/MS cornbrash cornbread/S corncob/SM corncockle/S corncrake/SM cornea/SM corneal Cornelia/M Cornelis/M Cornelius Cornell/M corner/d cornerman cornermen cornerstone/SM cornerwise cornet/SM cornetfish/S cornett/S cornetti cornetto corneum cornfield/MS cornflake/S cornflour/M cornflower/SM cornice/DSMG corniculate corniness/S Cornish cornmeal cornmill cornrow/GSD cornstalk/MS cornstarch/MS cornucopia/SM Cornwall/M Cornwallis Cornwell corny/T corolla/yMS corollary/SM coromandel corona/ySnM Coronado coronae coronal/MS coronary/S coronate coronation/M coronavirus/S coroner/MS coronet/dSM coronoid/S coroutine/SM corp. corpora/MnVo corporal/MS corporate/3SY corporates/I corporation/MIS corporatise/SDGn corporatism/M corporatize/SDGN corporeal/IY corporeality/MS corporealness/M corps/SM corpse/M corpulence/SM corpulent/Y corpulentness/S corpus/M corpuscle/MS corpuscular corr corral/GDMS correct/TxvPSDuGY7V correctable/U corrected/U correction/SM correctitude corrective/S correctly/I correctness/S correlate/CSGDN correlated/U correlativity correlator/SM correspond/k correspondence/MS corridor/SM Corrigan corrigenda corrigendum/M corrigibility corrigible/I corroborate/DSnVvGyN corroborated/U corroboration/M corroborator/SM corrode/DvbGuSXNV corrosion/M corrosive/SP corrugate/DSNnG corrugation/M corrugator corrupt/VPTbvSDGY corrupted/U corrupter/M corruptibility/MIS corruptible/I corruption's/I corruption/MS corruptions/I corruptness/S corsage/MS corsair/SM corset/dSM Corsham/M Corsica/M Corsican Corso/M Cortana/M cortex/M cortical/Y cortices corticosteroid/MS cortisol cortisone/SM Cortland cortège/SM corundum/M Coruscant/M coruscate/NSnDG coruscation/M Corvallis corves corvette/MS corydalis corymb/S corymbose corynebacteria corynebacterium coryphée/S cos/S cosign/RSDG cosignatory/SM cosine/MS cosiness/S cosmeceutical/S Cosmelli cosmetic/MSY cosmetician/SM cosmetology/3MS cosmic/Y cosmical Cosmo cosmogony/3MS cosmographer/S cosmographic cosmographical cosmography/S cosmology/1S3Mw cosmonaut/SM cosmopolis cosmopolitan/MS cosmopolitanise/SGD cosmopolitanism/SM cosmopolitanize/SGD cosmopolite/S cosmos/MS COSPAR cosplay/SGDR cosponsor/Sd Cossack cossacks cosset/Sd cost-cutting cost-effective cost-effectiveness cost-efficient cost/YGvSMJuDpV Costa costa costae Costello costermonger/S costive/P costliness/S costly/TP costume/DRMSG cosupervise/SGD cosupervision cosupervisor/S cosy/SGDYTP cot/RMSD Cota-Robles cotangent/SM cote/SM coterie/MS coterminous/Y Cotgrave/M cotillion/MS cotinga/S cotoneaster Cotswold/M cottage/DMRSG cottagey cottar's cottered Cotterill/M Cottesloe/M Cottingham/M cotton/dMS cottonmouth/S cottontail/MS cottonweed/S cottonwood/SM cottony Cottrell/M cotyledon/MS couch/DGSM couchant couchette/S couching/M coudé Coues/M cougar/SM cough/GDS cougher/M Coughlan/M Coughlin/M could could've couldn't couldn't've couloir/S coulomb/SM Coulsdon/M Coulter/M Coulthard coulée/SM council/SmM5 councillor/MS councilperson/S counsel/MDJGS counsellor/SM count/GSlDRBpZ countable/U countably/U countback countdown/MS counted/AUEa countenance's countenance/SDEG countenancer/M counter-attack/SRMDG counter-claim/GSMD counter-clockwise counter-espionage/SM counter-inflation/y counter-intelligence/MS counter-intuitive counter-jumper counter-offensive/MS counter-offer/S counter-productive counter-revolution/ySM counter-revolutionary/MS counter-tenor/SM counter-terrorism counter/md counteract/DGVS counteraction/SM counteragent/S counterargument/SM counterbalance/MSDG counterblast counterbore/SGD counterchange/DGS countercharge/S countercheck/S counterclaim/DSG countercultural counterculture/SM countercurrent/S countercyclical counterdemonstration/S countereffort counterexample/S counterfactual/S counterfeit/GRSD counterflow counterfoil/MS counterforce/M counterillumination counterinsurgency/MS counterirritant/S counterirritation countermand/SGD countermark/SGD countermeasure/SM countermelody/S countermine/G countermove/S countermovement/S counternarcotics counteroffensive/S counteroffer/SM counterpane/SM counterpart/SM counterparty/S counterpetition counterplot/SGD counterpoint/DSMG counterpoise/DMGS counterproductive counterproliferation counterproposal/M counterpunch/GSD counterpuncher/S counterreformer counterrotate/GN counters/E counterscarp/S countershaded countershading countershaft/S countersign/DSG countersignature/MS countersink/SG counterspy/SM counterstatement/S counterstrike counterstyle countersubject countersunk countertenor/S counterterror counterterrorism counterterrorist/S counterthreat/S counterthrust countertrade countertransference countervail/SGD countervalue counterweigh/SGD counterweight/GMSD countess/SM counting/Ea countless/Y countrify/D country/5mMS countryfied countryfolk countryside/MS countrywide counts/AaEf county/M coup/AS Couperin couple's couple/DRCSGJ coupled/U couples/U couplet/MS coupling/MC coupon/MS coupé/SM courage's courage/ES courageous/U courageously courageousness/SM courgette/SM courier/MGDS course/SMFE coursebook/S coursed/E courser/ESM courseware coursework coursing/M court-martial court/SRYMGD courteous/YEP courteousness/SE courtesan/MS courtesied courtesy/ESM courtesying courthouse/MS courtier/SM courtliness/S courtly/PT Courtney/M courtroom/SM courtship/SM courtyard/MS couscous/MS cousin/MYS Cousteau couture/MS couturier/SM covalent/Y covariance/MS covariant/S covariate/SN covary cove/RDGMS coven/SM covenant/DSGM covenantal Covenanter/S covenanter/SM covenantor/SM Covent Coventry/M cover-up/S cover/Jd7 coverable/E coverage/SM coverall/DSM Coverdale/M covered/EAU coverer/AME covering's covering/E coverlet/SM Coverley/M covers's covers/AEU coversheet covert/PY covertness/S covet/dSk coveter/M covetous/PY covetousness/S covey/MS cow-lick/SM cow-parsley/M cow-pat/SM cow/ShGMDm coward/SMY cowardice/SM cowardliness/S cowardly/P cowbane cowbell/SM cowbird/S cowboy/SM Cowell/M cower/dkS Cowes cowfish/S cowgirl/SM cowhand cowherd/SM cowhide/SGDM cowl/DGMS Cowley cowling/M Cowper/M cowpox/MS cowrie/SM cowshed/SM cowslip/SM cox/SGMD coxcomb/MS Coxsackie coxswain/GSMD coy/TPYGD coyed/C coyness/S coyote/SM coypu/SM cozen/dS cozenage/SM CPA cpd CPI cpl CPR cps CPU/SM crab-apple/SM crab/2GhDRzMiZS Crabbe/M crabbed/P crabbiness/S crabbing/M crabby/T crabgrass/S crablike crabmeat crabwise crack/SRYDG7 crackable/U crackdown/MS crackle/DSGJ crackling/M crackly/T cracknel/S crackpot/MS cracksman cracksmen crackup/S cradle/SDMG cradler/M cradling/M craft/Dm52MGzZS crafter craftiness/S craftsmanship/SM craftspeople craftsperson/S craftwork/R crafty/PT crag/MZS2 cragginess/S craggy/TP cragsman cragsmen Craig Craigavon/M cram/GSD Cramer crammer/M cramp/DSMG cramper/M crampon/MS Cranach/M cranberry/SM Crandall crane-flies crane/MDSG cranelike cranesbill/S Craney/M Cranfield/M Cranford cranial craniate/S craniofacial craniological craniologist/S craniology craniopagi craniopagus craniosynostoses craniosynostosis craniotomy/S cranium/MS crank/DTZSGM2z crankcase/SM crankiness/S crankish crankpin/S crankshaft/SM cranky/TP Cranleigh Cranmer/M cranny/DSGM Cranston crap/GDMZS crape/SM crappie/S crappy/T crash-land/SGD crash/RSDGk Crashaw/M crashworthy/P crass/TYP crassness/S crate/MDRSG crater/d cravat/SMGD crave/DJSG craven/dPY cravenness/S craver/M craving/M craw/YSM crawdad/S crawfish's Crawford Crawfurd/M crawl/SRDG Crawley crawlspace/S crawlway crawly/ST Cray/M crayfish/SGDM crayon/MdS craze/SZGDM craziness/S crazy/YSPT CRC creak/zZSD2G creakiness/S creaky/PT cream-crackered cream/ZDRS2zMG creamer/Z creamery/MS creaminess/S creamware creamy/PT crease's crease/GISCD creased/U creaser/I creatable create/uGnSNDVv created/UA creates/A creatine creating/A creatinine creation/MASa creationism/SM creationist/MS creative/PS creativeness/S creativity/SM creator/SM creature/YSM creaturely/P credence/MS credential/MSd credentialism credenza/MS credibility/ISM credible/YI credibly/I credit's credit/dE7lS creditability/M creditable/P credited/U creditor/MS creditworthiness creditworthy credo/MS credulity/IMS credulous/PY credulously/I credulousness/S Cree/S creed/SM creedal creek/SM creekside creel/DGMS creep/RZSG2z creepiness/S creepy/PTS Creighton cremate/SyGnND cremation/M crematoria crematorium/MS cremocarp crenelate/SNGDn crenelation/M crenellated crenellation/S crenulate/D crenulation/S creole/MS creosote/SMGD crepe/GDMS crept crepuscular crescendo's/C crescendo/GDSM crescendos/C crescent/MS cress/S Cressida/M crest/DMGpS crestfallen/PY cresting/M Crestview Cretaceous/Y Cretan/S Crete cretin/MS cretinism/SM cretinous cretonne/MS Creutzfeldt Creutzfeldt-Jakob crevasse/MGDS crevice/MS crew/mMDGS Crewe crewel/SM crewelwork/MS crewmember/S crib/DRGSM cribbage/SM cribbing/M cribella cribellate cribellum Crichton crick/DSMG cricket/rdMS cricketess cricketty crickety crickle crickle-crackle crickling cricoarytaenoid cricoarytenoid cricoid cries/e crime/DGSM Crimea Crimean/S crimeware criminal/qQ8-SMY criminalise/CnDSG criminalistics criminality/MS criminalize/CGNnDS criminogenic criminology/3wMS crimp/SGD crimper/M crimson/SMd cringe/GSD cringer/M crinkle/DGSY crinkly/TS crinoid/S crinoline/MS criollo/S cripes cripple/RGkDSM crises crisis/M crisp/GYPDTZ2S crispbread crisper/M crispiness/S crispness/S crispy/TP criss criss-cross/DGS Cristina/M cristobalite Criswell/M criteria criterion/M critic/YQ8Ss9M critical/UY criticality criticise/k criticism/MS criticize/k critique/MGSD critter/SM CRM croak/RDZSG croakily croaky/T Croat/S Croatia/M Croatian/S crochet/dJSZr crock/DGSM crocker/Z crockery/SM Crockett Crockford/M crocodile/MS crocus/MS croft/MGSR croissant/SM Croix Croke/M Crombie/M Cromwell/M Cromwellian cron Cronbach/M crone/SZM croneyism Cronin Cronus/M crony/MS cronyism crook/DSiMhG crooked/P crookeder crookedest crookery Crookes croon/GSRD crop/GSeMD cropland/S cropper/MS croquembouche croquet/SdM croquette/MS Crosby crosier/SM cross's cross-assembler/S cross-beam/S cross-border cross-bred/S cross-breed/GS cross-check/DGS cross-colour cross-compiler cross-connection/S cross-contaminate/DG cross-contamination cross-correlate/D cross-correlation/S cross-country cross-court cross-cultural cross-curricular cross-cut/SMG cross-disciplinary cross-dress/GR cross-examine/NDSG cross-eyed cross-fertilisation cross-fertilization cross-grained cross-hatch/DSG cross-legged cross-link/SGD cross-linkage cross-ply cross-point cross-polar cross-post/G cross-promote/D cross-promotion cross-question/GD cross-refer/S cross-reference/DGS cross-section/oS cross-sectional cross/GASUD crossable crossarm crossbar/MSDG crossbeam/MS crossbones crossbow/mSM crosscurrent/MS crosser/S crossest crossfire/MS crossing/MS Crossley/M crossly crossmatch/SGD crossness/MS crossopterygian/S crossover/MS crosspatch/SM crosspiece/SM crosspoint crossproduct/S crossroad/SM crosstalk/M crosstrees crossways crosswind/SM crosswise crossword/SM crotch/DSpM crotchet/MSZ2 crotchety/P Crothers/M croton/S crouch/SGD croup/DMGZS croupy/RT croutons crow/MDSG crowbait crowbar/SMGD crowberry/S crowd's crowd-pleaser/S crowd/cSDG crowded/P crowdfund/SGD crowdsource/DG Crowell/M crowfeet crowfoot/M Crowley/M crown/MSGD crowned/U crowner/M Croydon/M crozier/SM croûton/SM CRT/S crucial/Y cruciate crucible/SM cruciferous crucifix/XNMS crucifixion/M cruciform/S crucify/DGRS7 crud/GDMZS cruddy/T crude/PTY crudeness/S crudity/SM crudités cruel/DTYGP cruelness/S cruelty-free cruelty/SM cruet/MS Cruickshank/M Cruikshank/M cruise/RSDG cruiserweight crumb/YDZSMG crumble/SJDG crumbliness/S crumbly/TP crumby/T crumminess/S crummy/T crump crumpet/MS crumple/SDG crunch/RSDZG2 crunchiness/S crunchy/TP crupper/MS crura crus crusade/MRSDG cruse/SM crush/R7kSDG crushproof Crusoe crust/MGZzS2D Crustacea crustacean/MS crustal crustiness/S crustless crusty/TPS crutch/SDGM crux/M Cruz cruzado/S cry/CRSGD crybaby/MS cryobiological cryobiology/3 cryogenic/S cryogenics/M cryoglobulin/S cryonic/SY cryopreserve/ND cryostat/M cryosurgery/SM cryotherapy crypsis crypt/MW1S cryptanalysis/M cryptanalyst/MS cryptanalytic cryptanalytical cryptanalytically cryptical crypto/S cryptobiosis cryptobiotic cryptococcal cryptococcosis cryptocrystalline cryptocurrency/S cryptogam/S cryptogamic cryptogenic cryptogram/MS cryptographer/SM cryptography/W1SM cryptology/M3Ww cryptomeria/S cryptonym/S cryptonymous cryptorchid/S cryptorchidism cryptosporidia cryptosporidium cryptosystem/SM Cryptozoic cryptozoological cryptozoologist/S cryptozoology crypts/C crystal-clear crystal/MS crystalline/S crystallinity crystallisable crystallise/AnDSG crystalliser/SM crystallite/SM crystallizable crystallize/NRnDGS crystallized/A crystallizes/A crystallizing/A crystallographer/MS crystallographically crystallography/WM crystalloid/S crèche/MS crème Crébillon crêpe/SM crêpey Cs CSA CSE CSEU CSP CSPRNG/S CSS CST CSU CSV CSYS ctenoid Ctenophora CTOL Ctrl Cu cu. cub/dWw3SD1GM Cuba/M Cuban/S cubbyhole/SM cube/M3S cuber/M cubic/S cubicle/SM Cubie cubism/SM cubit/SM cubital cubitus cuboid/SO cuckold/MDGyS cuckoldry/SM cuckoo/MSGD cucumber/MS cud/SM cuddle/D2GYS cuddly/T cudgel/DSGMJ Cudworth/M cue/DaMSG cueing cuff/DGMS cufflink/S cuirass/S cuisine/MS cul-de-sac cul/DG Culbertson/M culex culices culicine/S culinary cull/S Cullen/M culler/M cullet Culloden Cully culminate/NSGnD culmination/M culotte/S culpa/SM culpability/MS culpable/YP culprit/SM cult/SM3 cultigen/S cultism/MS cultist cultivable cultivar/S cultivatable cultivate/NGSnD cultivated/U cultivation/M cultivator/MS cultural/4 culture/SMoDG cultured/U Culver/S culverin/S culvert/MS cum/S cumber/Sd Cumberland/M cumbersome/PY cumbersomeness/S Cumbria/M Cumbrian/M cumbrous cumin/SM cummerbund/SM Cummings Cummins/M cumquat's cumulate/DNvGnSV cumulation/M cumuli cumulonimbi cumulonimbus/M cumulus/M cuneiform/S cunnilingus/MS cunning/TYP Cunningham/M cunt/MS! cup/DM6GS cupboard/MS cupcake/SM Cupertino/M cupful/MS cupholder/S cupid/S cupidinously cupidity/SM cupola/DSGM cuppa/S cupping/M cupric cuprite cupro-nickel cuprous cupule/S cur/rYgvZl7dSMV curability/SM curable/PI curacy/SM curare/MS curassow/S curate/NDGMS curative/S curator/SM curatorial curatorships curb/MDSG curbing/M curbside curbstone/SM curd/GvuMVSD curdle/GSD cure/S curettage/SM curette/SGD curfew/SM curia/M curiae curial curie/MS curio/SM curiosity/SM curious/TPY curiousness/S curium/M curl/DGSR2 curled/U curlew/SM curlicue/SDMG curliness/S curling/M curls/U curly/PT curlycue's curmudgeon/MYS Curran/M currant/MS currawong/S currency/FSM current/PYS currently/AF currents/f curricle/M curricula curricular curriculum/MS Currie Currier curry/DGMS currycomb/SMDG curs/GyihSD curse/M cursed/P cursive/EY cursiveness's cursiveness/E cursives cursor's/K cursor/dSM cursorily cursoriness/MS cursors/K cursory/K curt/YTP curtail/RLSDG curtain/DMGS curtilage/S Curtis/M curtness/S curtsey/DSMG curtsy/DGSM curvaceous/Y curvaceousness/S curvature/MS curve/SZGDM curveball curved's curved/A curvilinear/Y curvilinearity/M curving/M curvy/T Curzon/M Cusack/M Cushing/M cushion/ZSGMD Cushman cushy/T cusk-eel/S cusp/MDS cuspate cuspid/S cuspidal cuss's/F cuss/DhiSGM cussed/EF cussedness/M cusser/FE cusses/FE cussing/F custard/SM Custer/M custodial custodian/SM custodianship/MS custody/SM custom-built custom-made custom/sQ-9Mr8qSt+ customary/YP customhouse/S customised/C cut-and-paste cut-down cut-off/SM cut-out/SM cut-price cut-throat/MS cut/RSGJM cutaneous/Y cutaway/SM cutback/SM cute/TYP cuteness/S cutesy/T cuticle/SM cuticular cutie/S cutlass/MS cutlassfish/S cutler/ZSM cutlery/MS cutlet/MS cuts/f cutscene/S cutting/MY cuttle/M cuttlebone/MS cuttlefish/SM cutup/MS cutworm/SM cuvette/S Cuvier/M Cuyahoga/M CV/S CVA CVE CVT cw Cwmbran/M CWO cwt cyan/MWS Cyanamid cyanate/M cyanide/SMGD cyanoacrylate/S Cyanobacteria cyanobacteria cyanobacterial cyanogen/M cyanophyte/S cyanosis cyanotic Cybele/M cyber cyber-thriller cyberart cyberattack/S cyberbabe cyberbully/GS cybercafe cybercash cybercast/SG cyberchondria cyberchondriac/S cybercommunity cybercop cybercrime/S cybercriminal/S cybercrook/S cyberculture cyberespionage cyberjournalist cyberland cyberlaw/S cyberlibertarian cyberlife cybermall cyberman cybernate/SGDN cybernaut/S cybernetic/S cybernetically cybernetician cyberneticist cybernetics/M cybernocracy cyberpet/S cyberphobe/S cyberphobia cyberphobic/SM cyberporn cyberpsychology cyberpunk/SM cybersecurity cybersex cybershop/SGD cyberslacker/S cyberslacking cybersmut cyberspace/MS cybersphere cyberspying cybersquatter/S cybersquatting cyberstalker/S cyberstalking cybersurf/SGD cyberterrorism cyberterrorist/S cybertheft/S cyberthreat/S cyberwar/S cyberwarfare cyberwarrior/S cyberweapon/S cyberworld cyborg/S cybrarian/S cybrary cybrid cycad/SM Cyclades Cycladic cyclamen/SM cycle/D3SWGwM1 cycled/A cycler/A cycles/A cycleway/S cyclicity cycling's cycling/A cyclizine cycloaddition/S cyclogenesis cyclohexane cyclohexanol cycloid/SM cycloidal cyclometer/MS cyclone/WSM cyclopaedia/MS cyclopaedic Cyclopean cyclophosphamide Cyclops cyclosportive/S cyclostome/S cyclostyle/SGD cyclothymia cyclothymic cyclotron/MS cyder/SM Cydonia/M cygnet/SM Cygnus Cygwin cylinder/wS1M cymbal/M3S cymbalist cymbidium/S cyme/S cymose Cynewulf/M cynic/SMY cynical cynicism/MS Cynon/M cynosure/MS Cynthia cyphel cypher/dSM cypherpunk/S cyphertext/S cypress/SM Cyprian Cypriot/SM Cyprus/M Cyril Cyrillic Cyrus cyst/SWM cystectomy/S cysteine cystitis cytoarchitectural cytoarchitecturally cytoarchitecture cytochemistry/M cytochrome/M cytogenetic cytogenetical cytogenetically cytogeneticist/S cytogenetics cytokine/S cytokinesis cytologically cytology/3wSM cytomegalic cytomegalovirus cytometer cytometry cytophotometer/S cytophotometry/W cytoplasm/SWM cytosine/SM cytoskeletal cytoskeleton cytosol cytosolic cytotoxic cytotoxicity Czaczkes/M czar/3MS czarevitch/M czarina/MS czarism/M czarist czarship Czech/M Czechoslovak Czechoslovakia/M Czechoslovakian Czechs Côte d'Arezzo d'art d'Azur d'Estaing d'etat d'etre d'oeuvre D'Orazio/M D'Orsay/M d's/A d'être D-day D-notice D.C. d/to da dab/TGDS dabber/M dabble/DRSG Daborn Dacca/M dace/M dacha/MS Dachau dachshund/SM dacite dacitic Dacron dactyl/SM dactylic dad/MZS Dada Dadaism Dadaist/W daddy-long-legs daddy/SM Dade dado/MS Daedalus daemon/SWM daemonize/SGD daffiness/S daffodil/SM daffy/T daft/YTP daftness/S Dag Dagenham dagger/dMS Daguerre daguerreotype/SMDG Dahl/M dahlia/SM dailiness/S daily/SP Daimler daintiness/S dainty/TSYP daiquiri/MS dairy/m5MSG dairying/M dairyland dairymaid/MS dais/SZM daisy-cutter/S daisy/MS Dakar/M Dakota/MS Dalai dale/MmS daleth/M Daley/M Dallara/M Dallas Dallet/M dalliance/MS dally/RGDS Dalmatia/M Dalmatian/S dalmatic/S DALnet/M Dalton/M Daly dam/MDGS damage/DRSkMG damageable damaged/U Damascus/M Damasio/M damask/DMGS dame/MS Damien Damietta/M Damjan/M dammit/S damn/lDGkNS7n damnation/M damneder damnedest damner Damocles Damon/M damp/SDTRPGY dampen/drS dampness/S damsel/SM damselfish/S damselfly/SM damson/SM dan Dan/M Dana/M Danaë Danbury Danby/M dance-off/S dance/SDRG danceable dancelike dancercise dancercize dandelion/MS dander/SdM dandify/GDS dandle/DSG dandruff/MS dandy/TYMS Dane/S danger/SdM dangerous/YP dangle/RGkDS Daniel/SM Daniele/M Danielle/M Danielson Danish dank/YPT dankness/S Danni/M Danny/M danseuse/SM Dante/M danthonia/S Danube/M Danubian Danville Danzig Daphne dapper/PY dapperer dapperest dapple/DSG Dara/M Darbishire/M Darby Darcy/M dare/RDkGS daredevil/SyM daredevilry/S Darell daresay Darger/M Darien/M daring/P Dario Darius Darjeeling dark/PSDTGY darken/rdS darkie/S darkish darkly/T darkness/S darknet darkroom/SM Darlene darling/PMS Darlington/M darn/DRGS darneder darnedest darning/M Darnley/M DARPA/M Darrell Darren dart/MGSRD dartboard/SM Dartford Darth/M Dartmoor/M Dartmouth Darwen/M Darwin/M Darwinian Darwinism Darwinist/S Daryl/M dash/GRSDk Dashamir dashboard/SM dashiki/MS dastardliness/S dastardly/P DAT data/M database/DMGS datable databus datacard datacomms datacoms datafile dataglove/S datagram/SM Datamation datary dataset/S datasphere datastore/S dataveillance/S date/MGVRSiphD dated/U datedness/e dateline/SMDG dative/S Datsun datum/MS daub/DRGS Daugherty/M daughter-in-law daughter/YMS daughterboard daughtercard daughters-in-law daunt/DGkpS daunted/U dauntless/PY dauntlessness/S dauphin/MS dauphinois dauphinoise Dauwe Dave/M Davenport/MS Daventry David/M Davidson Davie Davis Davison/M davit/SM Davy/S dawdle/DRSG Dawes Dawkins/M dawn/GDSM Dawson day-long day-to-day day/SM dayan dayanim daybed/S dayboat daybook/S daybreak/SM daycare/S daydream/SRMDG daylight/GSDM daymare/S daypack/S daysack/S daysailor dayside daytime/SM Dayton Daytona/M daywear daywork/R daze/DiSGh dazzle/SRGkD dB/M DBE dBi dBm DBMS dBW DC DCB DCM DCMG DCVO DDoS DDR DDT de-brief de-ice/DRGS de-industrialisation de-industrialization de/G deacon/SdM deaconess/SM dead-end dead-heat dead/PTY deadbeat/SM deadbolt/S deaden/Sdk deadener/MS deadening/M deadeye/S deadhead/SM deadlight/S deadline/MGSD deadliness/S deadlock/MGSD deadly/PT deadpan deadwood/SM deaf-and-dumb deaf/PYT deafen/dkS deafening/M deafness/S deal-breaker deal/JRGS dealership/MS dealfish/S dealign/DGL dealing's dealing/a dealmaker/S dealmaking deals/a dealt/a deaminase deaminated deamination dean/MGD Deane/M deanery/SM Deanna/M deanship/SM dear/TPYZS Dearborn Dearing/M dearness/S dearth/SM deary/SM deassign/G death-dealing death-knell death-obsessed death-or-glory death-rattle death-roll death-toll/M death-trap/MS death-warrant/MS death-watch/MS death-wish/S death/pYMS deathbed/MS deathblow/MS deathless/Y deathlessness deathlike deathly/T deathtrap deattribute/D deattribution deb/SM debacle/S debar/L debark/NnG debarkation/M debase/RL debatable debatably debate/RM debauch/yGhSiD debauched/P debauchee/MS debaucher/M debauchery/SM Debbie/M Debby debenture/SM Debian/M debilitate/SNGnD debilitation/M debility/SM debit/d debonair/PY debonairness/S Deborah/M debouch/DGS debouchure debounce/SGD Debra Debrett/M debride/D debridement debrief/JRG debris/M debt/MS debtor/SM Debussy/M debut/Sd debutant/S debutante/S Dec decade/SM decadence/Z decadency/S decadent/Y decaf/S decaffeinate/DGS decagon/MS decagonal decal/SM decalcification decalcifier decalcify/SGD Decalogue decametre/SW decamp/GL decanal decapitate/DSG decapitator/MS decapod/S decapsulate/SGDN decarbonisation decarbonise/SGDR decarbonize/SGDRN DeCaro/M decathlete/S decathlon/SM Decatur/M decay/GD decayer Decca decease's decease/KSGD deceit/S6jM deceitful/P deceitfulness/S deceive/UGDS deceiver/MS deceiving/Y decelerate/nDSNG deceleration/M decelerator/SM December/SM decenary decency/SIM decennary decennial/YS decent/YI deception/MS deceptive/PY deceptiveness/S decertify/NGn decibel/MS decide/DBGVivhNxXuS decidedness/M deciduous/YP decigram decigramme decile/MS decilitre/MS decimal/Q8Y-qSM decimate/NDSnG decimation/M decimetre/MS decimetric decinary decipher/dL7r decipherable/IU decision-making decision/IMS decisioned decisioning decisive/PIY decisiveness/IS deck/DRGSJM deckchair/S deckhand/S deckhouse/S decking/M decklid/S declaim/y declamation/SM Declan/M declarable declarant/SM declaration/AM declarative/S declarator/SM declare/vnRDNVGyS declared/KUA declares/A declaring/A declass/D declassify/DGNn declaw/SGD declension/SM declination/M declinational declinatory decline/RGNnSD declinism declivitous declivity/SM DECNET deco Deco decoct/GD decocture decode/B decolletes decompaction/S decompensated decompensation decompilations decomposability/M decomposable/I decompose/B decompress/NXG decompresser deconflict/SGD deconfliction decongest/SGD decongestant/S decongestion deconstruct/SGDV deconstructionism deconstructionist/S decontaminant decontaminate decontrol/SGD decor/S decorate/NVvGnDSu decorated/AcU decorates/cA decorating/Ac decoration/ASM decorative/P decorator/SM decorous/IPY decorousness/S decorticate/DGSN decortication/M decorum/SM decoupage/DGSM decoy/GMS decrease/k decree/SMdG decrement/SDGM decremental decrepit decrepitude/SM decrescendo decretal/S Decretum decry/J decrypt/GD decryption decubitus Dedekind/M dedicate/NASnDG dedicated/Y dedicatee dedication/M dedicative dedicator/MS dedicatory deduce/DGnbNVvS deducer deduct/b deductibility/M deductible/S deduction/M dee/M deed's/a deed/SGDM deeds/a deejay/GDSM deem/SDAG Deems/M deemster/S deep-discount deep-freeze/G deep-fried deep-frozen deep-laid deep-rooted deep-sea deep-seated deep/TPYS deepen/dS deepish deepness/S deer/M Deere Deerfield/M deergrass deerhound/S deerskin/SM deerstalker/SM deerstalking/M def deface/RL defalcate/GDSNn defalcation/M defalcator/S defamation/M defame/yRGn defat/SDG default/R DEFCON defcon defeasance/S defeasibility defeasible defeasibly defeat/RG3D defeated/UY defeatism/SM defeatist defecate/SNGnD defecation/M defect/GuSDMVv defection/MS defective/PS defectiveness/S defector/SM defeminise/DG defeminize/DG defence/p defenceless/Y defencelessness defenceman defencemen defend/Vuv defendant/MS defended/U defenestrate/DSG defensibility/M defensible/IY defensibly/I defer/RGSD deference/SM deferential/Y deferrable deferral/SM defervesce/D defervescence defiance/SM defiant/Y defibrillate/ND defibrillation defibrillator/SM deficiency/MS deficient/Y deficit/SM defile/L defiled/U definable/UI definably/I define/KSDAG defined/U definer/MS definienda definiendum definiens definientia definite/xVuv definitely/I definiteness/IS definition/KAMS definitive/SP deflagration deflatable deflate/GnDNS deflater deflation/My deflect/GSVD deflection/SM deflector/MS deflesh/D deflexed deflocculate/D deflocculation defloration Defoe defog/R defoliant/MS defoliator/SM DeForest/M deforest/NnG deform/xnR7GN deformity/SM DEFRA defrag/SGD defragment/GNR defraud/RGD defrayal/MS defriend defrost/R deft/PTY deftness/S defunct defuse defy/RSkDG deg degas/JDG degauss/GD degeneracy/MS degenerate/YP degradability degradable degradative degrade/hki degraded/P degranulate/N degree/SM degreed degressive dehisce/SGD dehiscence dehiscent dehydrate dehydrator/MS dehydroascorbic dehydrocholesterol dehydrogenase dehydrogenate deicidal deicide deictic deification/M deify/NDGnS Deighton/M deign/DGS deinstal/S deinstall/NXRSGD Deirdre/M deist/WMS deistical Deitch/M deity/MS deixis deja deject/GiDhS dejected/P dejection/SM DeKalb DeKastere Delaney/M Delano/M Delaware/M delay/D Delbru/M delectable/PSY delectation/SM delegable Delest/M deletable delete/NDnSG deleter deleterious/PY deletion/M deleverage/SDG delexical delft/SM delftware/S Delgado Delhi/M deli/M Delia/M Delian/S deliberate/nSGDPuvYV deliberateness/S deliberative/P Delibes delicacy/IMS delicate/IPY delicateness/S delicates delicatessen/MS delicious/PY deliciousness/S delicti delight/6jhGi delighted/P delightful/P Delilah delimit/nd delineate/SGDNnV delineation/M delink/SGD delinquency/MS delinquent/YSM deliquesce/GDS deliquescent deliration delirious/PY deliriousness/S delirium/MS Delius deliver/AdZS deliverable/S deliverance/SM delivered/U deliverer/SM delivery/m dell/SM Della/M Delmarva Delos Delphi Delphic Delphine/M delphinium/SM Delport delta/SM deltaic deltoid/SM delude/NXvkxSGVDu deluder/M deluge/GSD delusion/M delusive/P delve/RSDG demagnetiser demagnetizer demagogue/DySMG demagoguery/SM demagogy/MW demand/SGDk demander/M demanding/U demarcate/SNGnD demarcation/M demassify/SGDN dematerialisation dematerialise/SGD dematerialize/SGDN demean/D demeanour demented/PY dementia/SM demerara Demerara demerge/SDGR demeritorious Demerol demesne/MS Demeter demi-glace demi-mondaine/SM demi-monde/SM demigod/SM demigoddess/MS demijohn/SM demilitarise/n demilitarize/nNSG demise/DMGS demisemiquaver/S demisexual/S demisexuality demist/G demit/DNSG demitasse/MS demo/GDM democracy/SM democrat/qQ81-WSM democratic/UY demodectic demoded demographer/SM demographic/S demography/1WwSM demoi demolish/DSG demolisher/M demolition/MS demon/SWM demoness demoniac/S demoniacal/Y demonically demonisation demonise/SDG demonization demonize/SDG demonolatry demonology/MSw3 demonstrable/IY demonstrableness/M demonstrably/I demonstrate/uGnVSDvN demonstration/M demonstrative/UY demonstrativeness/MS demonstratives demonstrator/SM demoralise/n demoralize/R DeMorgan/M demos demoscene Demosthenes Demosthenic demote/DGW demotic/S demotion demotivate demotivation demount/7 Dempsey demulcent/S demur/GDS demure/YP demureness/S demurrable demurral/MS demurrer/S demythologise/n demythologize/nDGNS den/ZDSGM denary denaturation denature/G Denbigh/M Denbighshire/M dendrite/SM dendritic/Y dendrochronology/w dengue/SM Denham/M deniability deniable/UY denial/MS denigrate/nVGSND denigration/M denigratory denim/MS Denis Denise denitrify/SGDN denizen/dSM Denmark/M Dennis Dennistoun/M Denny denominate/x denotative denoter denouement/SM denounce/DLSGR Denpasar/M dens/T dense/FY denseness/SM denser/F densitometer/MWS densitometry/M density/SM dent's dent/SIGD dental/Y dentary/S denticle/S denticulate/D denticulation/S dentifrice/MS dentil/S dentine/M dentist/MSy dentistry/MS dentition/MS denture/SIM denuclearise/SDG denuclearize/SGD denudation/M denude/DRnG denunciate/DSGnNV denunciation/M Denver deny/DR7kGS deodorant/MS deodorise/nGRSD deodorize/nGRNSD deontological deontologist/S deontology deoxyribonucleic depaint depart/LG department/o departmental/Q8-q departure/SM depend/BSDGl dependability/MS dependable/P dependence/ISM dependency/MS dependent/cI dependently/I dependents dependingly depersonzlized depict/GSD depicter/M depiction/SM depigment/D depigmentation depilatory/S deplete/DGSNnV depletion/M deplorable/P deplore/klDGS deplorer/M deploy/LD7G deployed/A deploys/A depolarize/R depoliticisation depoliticization deponent/S deport/nLNG deportation/M deportee/SM deposit/AdS depositary/MS depositor/SM depository/SM depot deprave/NDhSiG depraved/P depraver/M depravingly depravity/MS deprecate/DSNnGky deprecation/M depreciable depreciate/DnvGkSVN depreciation/M depreciatory depredator/S depredatory depress/bvkVXN depressant/S depression/M depressive/S depressor/MS depressurisation depressurise/SGD depressurize/SGDN deprive/SGnND Dept. depth/SM depthless/Y depurate/D depuration depurative/S depurator/S deputation/M depute/SnQ8NGDZ deputy/SM dequeueing deracinate/D derail/L derange/L Derby/M derby/MS Derbyshire/M dereference/R deregister/Sd Derek/M derelict/S dereliction/MS derestrict/SGD derestriction deride/NXvkVuD derision/M derisive/P derisiveness/S derisory derivable derivate/S derivation/M derivational derivative/MPS derive/VuvNn dermabrasion dermal dermatitides dermatitis/MS dermatoglyphics dermatology/3SMw dermatome/S dermatomyositis dermatophytoses dermatophytosis dermatoses dermatosis dermestid dermis/SM Dermot/M derogate/NVSGnyD derogation/M derogatory/Y derrick/SDGM Derrida/M derring-do derringer/SM derrière/S Derry dervish/SM Derwent DES/M desalinate/SNnGD descale/GDS descaler/S descant/SM Descartes/M descend/FSGD descendant/SM descendent descender/SM describable/I describe/NVvuRX description/M descriptive/SP descriptiveness/S descriptivism descriptivist/S descriptivistic descriptor/SM descriptory descry/DGS desecrate/SDNnG desecrater/M desecration/M deseed/SGD deseeder/S deselection/S desensitise/n desensitiser/S desensitize/nN desensitizer/S desert/RGMDS desertification desertion/MS deserve/kih deserved/UY deservedness/M deserving/U deservingness desex/SGD desiccant/S desiccate/VDGSNn desiccation/M desiccator/SM desiderata desideratum/M design/NhJ7Vxn designate/DKGS designation/M designator/SM designed/A designs/A Desilu/M desipramine desirabilia desirabilities desirability/UM desirable/PS desirableness/S desirables/U desirably/U desire/BRl desired/U Desiree desirous/PY desist/DGS desk/MS deskill/SGD desktop/S Desmond/M desolate/YNPkGnDS desolateness/S desolater/M desolation/M desorption/M despair/SkDG despairer/M despatch/GDS desperado/M desperadoes desperate/YPNn desperateness/S desperation/M despicable/Y despise/SRGD despite despoil/L despond despondence/SZ despondency/SM despondent/Y despot/1W despotism/MS dessert/SM desserty dessicate/ND destain/SGD destigmatization/M destination/MK destine/nKND destiny/SM destitute/P destitution/SM destock/G destroy/DR7GS destruct/bvVuGDS destructibility/SMI destructible/I destruction/MS destructive/P destructiveness/S destructor/MS desuetude/MS desultory/YP desuperheater/S detach/GRSiLhD7 detachability detached/P detain/DGSL detainee/S detainer/MS detect/DGSBVl detectability/U detectable/U detectably/U detected/U detection/MS detective/MS detector/SM detention/MS deter/SGD deterers detergent/SM deteriorate/DNSnGV deterioration/M determinability/M determinable/IP determinacy/I determinant/MS determinate/IPYN determination/IMK determinative/P determine/uDRBvGVhiS determined/P determiner/KMS determines/KA determining/KA determinism's/I determinism/SM deterministic/Y deterred/U deterrence/SM deterrent/YSM detest/ln7N detestable/P detestation/M dethrone/LG detonable detonate/DVNGSn detonated/U detonation/M detonator/SM detox/SGD detoxification/M detoxify/GnDSN DETR/M detract/DGVv detribalise/DSG detribalize/DSG detriment/SoM detrimental detrital detritus/M Detroit Dettingen Deucalion/M deuce/DGhMS deuteranopia deuterium/M deuteron/MS Deuteronomy deutocerebra deutocerebrum Deutsch dev/S Devan/M devastate/DNSnkVG devastation/M devastator/SM devein/D develop/cdAS developable developed/Uf developer/SAM development/fMS developmental/Y deverbal/S deviance/MSZ deviancy/S deviant/MYS deviate/NDSGn deviating/U deviation/M devil/DLyMGS devilish/PY devilishness/S devilry/SM devious/YP deviousness/S devisable devise/DJRSG devisee/S devisor devitalize devkit/S Devlin/M devoid devolution/SM devolve/SGD Devon/M Devonian/S Devonport/M Devonshire/M Devorah/M devote/ixh devotee/SM devotion/SM devotional/S devour/DRSG devout/TYP devoutness/S dew/ZGS2M dewan dewar dewater/Sd dewberry/SM dewclaw/SM dewdrop/SM Dewey Dewhurst/M dewiness/S Dewitt dewlap/SM dewy-eyed dewy/TP Dexedrine dexes/I dexter dexterity/MS dexterous/PY dexterousness/S dextral dextrality dextrally dextran dextrose/SM dextrous/YP Deyo/M DfES Dhabi/M Dhaka/M dharma Dhiri dhoti/MS dhow/SM DHSS dhurrie/S diabase/M diabesity diabetes/M diabetic/S diabolic/Y diabolical/P diabolism/M diachroneity diachronic diachronically diachronicness diachronistic diachrony diaconate diacritic/MSY diacritical/S diadem/SMd diaereses diaeresis/M diagnometer/SM diagnosable diagnose/DGaS diagnosed/U diagnosis's diagnosis/a diagnostic/SYM diagnostician/MS diagnostics/M diagonal/tQ+8SY diagram/RDGMS diagrammable diagrammatic/Y diagrammaticality diakineses diakinesis dial/RSMGD dialect/wWSo1M dialectal dialectic/MS dialectology/w3 dialogic dialogical dialogist/S dialogue/SGD dialoguer dials/A dialyse/SGD dialysis/M diam diamagnetic diamanté diameter/SMw1W diamine/S diamond/MSDG diamondback/SM Diana/M Diane/M Dianne diapason/SM diapause/G diapedesis diaper/S diaphanous/PY diaphone/S diaphragm/MS diaphragmatic diaphyses diaphysis diapsid/S diarrhoea/SMW diarrhoeal diary/3MS diaspora/WM diaspore/S diastase/MS diastole/WSM diathermy/MS diatheses diathesis/M diatom/MS diatomaceous diatomic diatonic diatribe/MS diazepam dibasic dibble/MGDS Dibley diborane dibs dice/DnSGN dicentric dicer/M dices/I dicey dichasia dichasium dichlamydeous dichlamydious dichloride/M dichlorodifluoromethane dichloromethane dichotomous/Y dichotomousness dichotomy/qQS-8M dichromatic dichromatism dicier diciest dicing/M dick/DGMS dickens/M Dickensian Dickerson/M dickey/SM dickhead/S dickier dickiest Dickinson Dickson Dicky/M dicky/STM dicot/S dicotyledon/SM dicotyledonous dicrotic dicta/nM Dictaphone dictate/DGS dictation/M dictator/MoS dictatorial/P dictatorship/MS diction/KSM dictionary/MS dictum/M dicyclomine did/AecU didactic/SY didactics/M diddle/RDSG Diderot didn't Dido/M didst didymium die-cast die-stamping die/SDG dieffenbachia/S diegeses diegesis diegetic Diego/M diehard/S dielectric/SM diem Diemen/M Dieppe dies/U diesel-electric/S diesel/SM diet/MGSRD dietary/S dietetic/S dietetics/M diethyl dietician/MS dietitian/SM Dietrich Dietz diff/DGS differ/Sd difference/IMS differenced differencing different/IY differentia differentiae differential/MSY differentiate/SGnBDN differentiated/U differentiation/M differentiator/MS differentness differer/S difficult/YZ difficulty/MS diffidence/MS diffident/Y Diffie-Hellman Diffie/M diffract/DGS diffraction/SM diffractometer/MS diffuse/PSvYRDGubNxXV diffuseness/S diffusion/M diffusive/P diffusivity/MS dig/RSJG digastric Digby/M digerati digest/SKGD digested/U digester/M digestibility/SM digestible/I digestif/S digestion's/I digestion/MS digestive/YS digestiveness digicam/S Digimon digipak digit/q-s9SQ8M digital/-qQ9s8Y digitalis/M digitate digitation dignified/U dignify/DSG dignitary/SM dignity/ISM digoxin digram digraph/SM digress/uNvDSGXV digresser/S digression/M digressive/P dihedral/S Dijkstra/M Dijon dike/SMGD diker/M diktat/SM dilapidate/DGSNn dilapidation/M dilatancy dilatation/SM dilate/hiVGnDSNy dilation/M dilator/MS dilatory/P dildo/SM dilemma/SM dilettante/MS dilettantish dilettantism/MS diligence/SM diligent/YP dilithium dill/YM Dillard/M Dillinger Dillingham Dillon/M dilly-dally/GDS dilogarithm dilophosaurus diltiazem diluent dilute/PYVGDS diluted/U diluter dilution/SM dim/rSRPYDTG DiMaggio dime/MS dimension/DGpMoS dimensional dimensionality/M dimercaprol dimerous dimethyl/M dimethylglyoxime diminish/SDG7 diminished/U diminuendo/MS diminution/SM diminutive/PSY dimity/MS dimmable dimmed/U dimmish dimness/S dimorphic dimorphism/M dimorphous dimple/YMGDS dimply/T dimwit/DMS din/rDRSMdG Dinah dinar/SM dine/S dinette/MS ding-dong ding/zDG2Z dinghy/MS dinginess/S dingle/SM dingo/MS dingoes Dingwall/M dingy/TSP dinky/ST dinnertime/S dinnerware/SM dinoflagellate/S dinosaur/SM dint/MGSD diocesan/S diocese/SM diode/MS dioecious dioecy Diogenes Dione Dionysian Dionysus dioptre/SM diorama/SM diorite/W dioxalate dioxide/SM dioxin/S dip/DRGSZ DipEd diphtheria/OSM diphtheritic diphtheroid diphthong/SM diphthongal diphycercal diplexers diplodocus diploid/S diploma/SDM1W diplomacy/SM diplomat/3MS diplomata diplomatic/U diplomatics/M diplomatist diplopia diplotene dipole/SM dippy/T dipsomania/SM dipsomaniac/SM dipsomaniacal dipstick/MS dipteran/S dipterous diptych/M diptychs Dirac dire/PTj6Y direct/TxPDGySYV directed/aUIA directing/a direction-finder direction/IMaS directional/S directionality directionless directions/A directive/SM directivity/M directly/I directness/IS director/MAS directorate/SM directorial directors' directors/a directorship/SM directory/MS directrices directrix/M directs/aA DirectShow/M DirectX dirge/MSDG dirigible/S dirigisme dirigiste dirk/MS dirndl/SM dirt/zZ2SM dirtiness/S dirty/TDSGP dis/M disable/LGSDR disabler disadvantage/i disaffect disaffirm/SGDN disafforest/SGDN disaggregate disagreeable/S disallow disambiguate/NSDGn disambiguator/S disappoint/Lhk disarm/k disarrange/L disarticulate/N disastrous/Y disband/L disbar/L disbelieve/k disbenefit/S disbound disbud/SGD disburden disbursal/S disburse/LSGD disburser/M disc/SM discarnate discern/LbkSGD discerner/M discernibility discernible/I discernibly discerning/U disciple/MGDS discipleship/SM disciplic disciplinarian/SM disciplinary discipline's/I discipline/GDSM disciplined/UI discipliner/M discipular disclaim/7 disclose disclosed/U disclosure Discman disco/MG discographer/S discography/MS discoid/O discolith discolorous discolour/NniGJ discoloured/M discolourment discomania discomaniac discombobulate/D discombobulation discomfit/d discomfiture/SM discommode/GD discommodious discommodity discompose/D disconcert/k disconnect disconnectedness/S disconnecter/M disconsolate/Y discontinue/nN discordance/MS discordant/Y discorporate/D discotheque/SM discothèque/MS discount/RB discourage/LDGk discourager discourse/G discover/AdZS discoverability discovered/U discoverer/S discovery/MSA discreet/PIY discreeter discreetest discreetness/S discrepancy/MS discrepant/Y discrete/nYPN discreteness/S discretion/IMS discretionary discriminable discriminant/SM discriminate/SnNDVGky discriminating/IY discrimination/MI discriminator/MS discus/SMG discuss/N7X discussant/SM discusser/M discussion/M disdain/jMDG6S disdainful/P diseconomy/S disembark/Nn disembarrass/DGL disembody/L disembowel/LDSG disempower/LSd disenchantingly disengage/L disfigure/L disfranchise/L disfrock/SGD disgorge disgorgers disgrace disgracer/M disgruntle/LSDG disguise/GRDh disguised/U disgust/k6jh dish/SDMG dishabille/MS disharmonious disharmoniousness dishcloth/MS dishevel/DGLS dishwasher/SM dishwashing dishwater/M dishy/T disillusion/LDG disincorporate/G disinfectant/SM disinfest/GN disingenuous disinhibit/SdN disintegrative disintegrator/S disinterest/i disinterested/P disinterestedness/S disintermediate/DN disinvent/D disinvite/DG disinvoltura disjoin/SD disjointedness/S disjointness disjunct/SVv disjunctive/S disk/MS diskette/S dislodge/L disloyal dismal/YP dismantle/L dismantler/S dismast/SGD dismay/DSk dismayed/U dismember/dL dismiss/vR dismissible Disney/M Disneyland disodium disorder/hi disordered/P disorderly/P disparage/LRkDSG disparate/PSY dispassionate/P dispatch/R dispel/DGS dispensable/I dispensary/SM dispensate dispensation/M dispense/RyGnDS dispersal/SM dispersant/M disperse/LXVubNvDhRGS dispersion/M dispersive/P dispirit/dS dispirited/Y dispiritingly display/ADGSM displease/h displeasure disport disposable/S disposal/SM dispose/KGNISXD disposition/KMI disproportion/N disproportional disproportionality disproportionate/DG disproportionation/M Dispur disputable/I disputably/I disputant/MS disputation/M disputatious/YP dispute/lnRNDGS disputed/U disquiet/kM disquisition/OMS Disraeli/M disrate/SGD disregard/6 disrelish disrepair disreputable/P disrepute/M disrobe/G disrupt/uGVSDv disrupted/U disrupter/MS disruption/SM disruptor/MS dissatisfy dissect/GD dissection dissemble/DSRG disseminate/DSNnG dissemination/M dissension/SM dissent/RGDS dissentious dissertation/MS disservice dissidence/MS dissident/MS dissimilar/S dissimilitude/S dissipate/nVRNDShiG dissipated/P dissipation/M dissociable/I dissociate/NVvnSDG dissociation/M dissoluble/I dissolute/PY dissoluteness/S dissolve/AGDS dissolved/U dissolvent/S dissonance/SM dissonant/Y dissuade/VDGS dissuader/M dissyllable dissymmetrical dissymmetry/SW distaff/SM distal/Y distance/MGDS distanced/e distances/e distancing/e distant/PY distastefulness/S distend/XN distensibility distensible distil/NS7VnG distillate/MS distillation/M distiller/Z distillery/MS distinct/TvPVYu distinction/MS distinctive/P distinctiveness/S distinctly/I distinctness/IS distinguish/S7DlG distinguishable/IU distinguishably/I distinguished/U distort/DRG7 distorted/U distortion/SM distract/GhikD distracted/P distraint distrait distraught/Y distress/GkD6 distributable distributary/S distribute/ASVGD distributed/U distribution/ASM distributional distributive/YPS distributivity distributor/MS distributorship/M district/SM distro/S disturb/DRkGS disturbance/SM disturbed/U disulphide/M disunion disuse/M disyllable/MW ditch/DSMG ditcher/M dither/Sd ditherer/S ditto/DMGS ditty/MS ditz/S diuresis/M diuretic/S diurnal/SY diva/SM divagate/SD divagation divalent/S Divali divan/SM dive-bombing dive/RJDTGS dived/M divemaster/S diverge/DGS divergence/MS divergent/Y divers/NX diverse/YP diverseness/S diversification/M diversifier/M diversify/SGNDn diversion/My diversity/SM divert/SDG diverticula diverticular diverticulitis/M diverticulosis diverticulum divertimento/M divertissement/S divest/SGD divestiture/SM divestment dividable divide/RuDSGxVXvN divided/AU dividend/MS divides/A dividing/A divination/M divinatory divine/YTNDSGnR divinity/SM divisibility/IMS divisible/I division's division/A divisionist/S divisive/P divisiveness/S divisor/MS divorce/GSMD divorcee/S divorcé divorcée/SM divot/SM divulgation/S divulge/DGS divulgence divvy/DSMG DivX divx Diwali diwan Dixie Dixieland Dixon/M dizygotic dizygous dizziness/S dizzy/PTYDSGk DJ/M Djakarta/M djellaba/S djellabah's Djibouti/M djinn DJs DLA DLL/S DLR DMA DMCA dmg Dmitri DMZ DNA DNase Dnieper/M DNS DNSSEC/M do-gooder/S do-it-yourself do-or-die do/7TGJRzy DOB dobbin/MS Dobermann/S dobra Dobson/M doc/RSMDG docile/Y docility/SM dock/MS dockable dockage docket/SdM dockland/MS dockside/M dockworker/S dockyard/SM DoCoMo doctor/dSM doctoral/K doctorate/SM doctrinaire/S doctrinal doctrine/oMS docudrama/S document/NMRDGSn documentalist/SM documentarian/S documentarist/S documentary/MS documentation/M documented/U docusoap/S docx DOD dodder/dSZ doddle Dodds/M dodecahedra dodecahedral dodecahedron/M Dodecanese Dodge/M dodge/ZRSDG dodgem/S Dodgson/M dodgy/T dodo/MS Dodoma/M Dodson/M doe/SM Doering/M does/ecUA doeskin/MS doesn't doff/SDG dog's-tail dog's/f dog-biscuit/MS dog-box dog-clutch dog-collar/SM dog-eared dog-eat-dog dog-end dog-leg/D dog-paddle dog-star dog-tail dog-tired dog-tooth dog/DSMiGZh dogdom doge/MS dogfight/GSM dogfish/MS dogfood/G dogfought dogged/P doggedness/S doggerel/SM Doggett/M doggish doggo doggy-paddle doggy/MST doghouse/MS dogleg/SGDM doglike dogma/1MSW dogmatics's dogmatise/SGD dogmatism/SM dogmatist/MS dogmatize/SGD dognap/SDGR dogology dogs/f dogsbody/SGM dogship dogshore/S dogskin dogsleep dogstail dogstones dogtooth/M dogtrot/GSDM dogwatch/S dogwood/SM dogy's doh/M Doha/M doily/SM doing/MaS dojo/S Dolby/M doldrums dole's dole/FSGD doleful/PY dolefulness/S dolerite dolichocephalic dolichocephaly doll/SDMGY dollar/SM dollarise/SGD dollarize/SGD Dollie/M dollop/dSM dolly/DGMS dolman/S dolmen/MS dolomite/SWM Dolores dolorous/Y dolour/MS dolphin/MS dolphinaria dolphinarium/S Dolske dolt/SM doltish/PY doltishness/S Dom domain/MS dome/SMGD domes/W Domesday domestic/SnNY domesticate/SGD domesticated/U domestication/M domesticity/SM domicile/GSDM domiciliary dominance/KSM dominant/KY dominants dominate/KNDSG domination/KM dominations dominative dominator/MS dominatrices dominatrix domineer/DkSG domineering/P Domingo/M Dominic Dominica/M Dominican/SM Dominick/M dominion/SM Dominique/M domino/M dominoes don't don/NSGnVD dona/SM Donahue Donald/M Donaldson donate/DSG donation/M donative/M donator/S Doncaster done/fUeAcF Donegal/M dong/MGSD dongle/S Donington/M Donizetti donkey/SM donkeyman donkeymen Donna Donnelly Donnie/M donnish/YP Donny donor/SM Donovan/M doodah/S doodle/SRGD doodlebug/MS doodly-squat Doohan/M doolally Dooley/M Doolittle doom-laden doom/SDGM doomsday/MS doomster/S doomwatch/r doomy/RYPT Doonesbury/M dooper door-to-door door/DmGMS doorbell/SM doorhandles doorkeep/R doorknob/SM doormat/SM doornail/SM doorplate/SM doorpost doors/eI doorstep/DSGM doorstop/SM doorway/SM dooryard/SM dopa/SM dopamine dopaminergic dopant/SM dope/R2DMGS dopey dopier dopiest dopiness/S doppelgänger Doppler Dora/MW Dorado Dorchester Doreen/M Dorian Doris dork/ZS dorkiness dorky/T Dorland/M dorm/RMS dormancy/SM dormant dormice dormitory/SM dormouse/M Dorn/M doronicum/S Dorothea/M Dorotheus Dorothy dorsa dorsal/Y Dorset/M dorsiflex/SGDN dorsolateral dorsolaterally dorsoventral/Y dorsum Dortmund/M dory/MS dos/dSDG dosage/MS dose/cSMDG dosimeter/MS dosimetry/M doss doss-house dossier/MS dost Dostoevsky Dostoyevsky/M dot-bomb/S dot-com/SR dot-org dot/M2ZdDkrGS dotage/MS dotard/SM dote/S doth Dothan/M dotterel/S dotty/YT double-barrelled double-blind double-breasted double-checked double-click/d double-cross/G double-dealing double-decker/S double-edged double-ender double-glazed double-headed double-jointed double-parked double-sided double/SRDGY doubled/A Doubleday doubleheader/MS doubleness doubles's doubles/A doublespeak/S doublet/SM doubletalk doublethink doubleton/S doubling/A doubloon/MS doublure doubt/MAS7 doubted/U doubter/MS doubtful/YP doubtfulness/S doubting/Y doubtless/PY douche/GMSD Doug dough/MZS doughboy/S Dougherty doughnut/GMDS doughty/T doughy/T Douglas-Home/M Douglas/M Douglass dour/PTY dourness/S Douro/M douse/SGD douser/M dove/SM dovecot dovecote/MS doveish dovelike Dover dovetail/MGDS Dow dowager/MS Dowden/M dowdiness/S Dowding/M dowdy/PTY dowel/DSGM dower/MdS dowitcher/S Dowling/M down-and-out/S down-to-earth down/MGZRSD downbeat/SM downcase/SD downcast downcurved downcut/SG downdraught/M downdrift Downey downfall/SM downfield downfold downforce downgrade/SGD downhaul downhearted/PY downheartedness/S downhill/S downhiller/S downhole downland/S downlight/SRG downlink/SGD download/BGDS downloader/S downmarket downmost downpipe/S downplay/DGS downpour/SM downrange downrate/D downright/YP downriver downs/8 downsample/SGD downscale/DSG downshift/SG downside/S downslope/S downstage/S downstairs downstream downstroke downswing/MS downtime/SM downtrend downtrodden downturn/MSD downvote/SGD downward/PYS downwash downwelling/S downwind downy/T dowry/MS dowse/SDRG doxology/SM doxycycline doyen/SM doyenne/MS Doyle doze/SDG dozen/S dozenth dozer/MS dozy/TYP DPhil dpi Dr drab/YPT drabness/S dracaena/S drachma/SM drachmae Draco/M draconian draconic Dracula/M draft's/c draft/cSA drafted/A draftee/SMD drafter/SM drafting draftsman draftsmen drag/DMZSG draggability draggable dragger/M dragging/Y draggy/T dragline/S dragnet/SM dragon/MS dragonet/S dragonfish/S dragonfly/MS dragoon/MDSG drain/GRSMD drainage/SM draining-board/SM drainpipe/MS drake/MS Drakensberg/M dram/w1SMW drama/s9Q8q-SM Dramamine dramatic/S dramatics/M dramatist/SM dramaturg/S dramaturge/S dramaturgic dramaturgical dramaturgically dramaturgist/S dramaturgy/M drank drape/RSDGy drapery/SM drastic/Y drat/SDG draught/zm52SZ draughtboard/S draughtiness/S draughtproof/G draughtsmanship/MS draughtsperson draughty/TP Dravidian draw/SRG7J drawback/SM drawbar/S drawbridge/MS drawcard/S drawcord/S drawdown/S drawee/MS drawing-room drawing/M drawl/SGDk drawler/M drawn-out drawn/ceAI draws/ecA drawstring/SM dray/MSDG dread/S6GDj dreader dreadful/P dreadfulness/S dreadlocks dreadnought/SM dream-world/S dream/SM2GpZDRzk dreamboat/MS dreamed/U dreaminess/S dreamland/SM dreamless/YP dreamlike dreamscape/S dreamt Dreamtime Dreamweaver/M dreamwork dreamy/TP drear/2Zz dreariness/S dreary/TP dreck/Z dreckish dredge/GRMSD dreg/SM drench/GDS drencher/M Dresden dress/Z2RSDGJ dressage/MS dressed/cAU dresser/AM dresses/AUc dressiness/S dressing/M dressmaker/SM dressmaking/MS dressy/TP Drew's drew/Ace Drexel Dreyfuss dribble/RGDS dribbly driblet/SM drift/DRGkS driftwood/SM drill/SGDRM drilling/M drillmaster/MS drink-driving drink/7SGR drinkable/U drinkables drip-dry drip/JSMDG drippy/T drivable drive-ins drive/MRJSG drivel/RDGS driven drivenness driverless drives/c driveshaft/S drivetrain/S driveway/SM drizzle/GDSMkY drizzly/T DRM drogue/MS droid/S droll/YTP droller/Z drollery/MS drollness/S dromedary/SM dromoi dromos drone/SGkDM droner drongo/S drongoes drool/DRSG droop/S2GZDk droopiness/S droopy/TP drop-dead drop-down drop-forging drop-head drop-in drop-kick/S drop-out/SM drop-shot/MS drop-test/GSDM drop/DRMJGS Dropbox droplet/MS dropout/S droppable dropping/M drops/Zw dropseed dropside/S dropsy/SM dropwort drosera droshky/S drosophila/M drosophilist dross/MS Drottningholm/M drought/SM drove/GSDR drown/GJDS drowner/M drowse/ZGSD drowsiness/S drowsy/PTY drub/RDJGS drubbing/M drudge/kyMSDG drudger/M drudgery/SM drug-free drug-related drug/DMGS drugget druggie/TS druggish druggy drugless drugster Druid's druid/S Druidic Druidical Druidism/SM drum/RSDGM drumbeat/MSG drumhead/MS drumlin/MS Drummond/M drumstick/SM drunk/TMSY drunkard/MS drunken/PY drunkenness/S drupe/MS drupel Drury dry-cleaned dry-cleaning dry-eyed dry/SGTDRY dryad/MS Dryden dryer/SM dryish dryly dryness/SM Dryopithecus drystone drysuit/S drywall/GDS DSA DSL DSLR/SM DTP Du dual-purpose dual/SGD dualise dualism/MS dualist dualistic/Y duality/MS dualize Duane dub/cDGS Dubai/M dubber/MS dubbin/SM dubbing/M dubiety/SM dubious/PY dubiousness/S Dublin/M Dubrovnik Dubuque ducal Ducasse/M ducat/SM Duchamp/M duchess/SM duchy/MS duck-billed duck/GDZSMJ duckbill/SM duckboard/S ducker/M duckling/SM duckpins duckpond duckwalk/D duckweed/MS ducky/TSM duct's/F duct/CDISGF ductile ductility/MS ductless ductwork/M dud/SM dude/MS dudgeon/SM Dudley/M due/MoPS duel/RMDGJS duellist/SM duenna/SM duet/SDMG duff/GRDSM duffel/M Duffus/M Duffy dug-out dug/S Dugan/M Duggan/M dugout/SM duh Duisburg duke/SM dukedom/MS dulcet/Y dulcify dulcimer/SM dull/PYGSDT dullard/MS Dulles Duluth Dulwich/M duly/U Dumas/M Dumat/M dumb/DTPGY Dumbarton/M dumbbell/SM dumbfound/SGD dumbfoundedness dumbfounder Dumbiedykes dumbness/S dumbo/S dumbphone/S dumbshow/S dumbstruck dumdum/SM Dumfries/M dummy/SGDM Dumont/M dumortierite dump/DR2GZS dumpiness/S dumpling/MS dumpsite Dumpty dumpy/TSP dun/TDGS Dunbar/M Dunbartonshire/M Duncan/M dunce/SM Dundee/M dunderhead/SM dune/MS Dunedin/M Dunfermline/M dung-beetle dung/DGSM Dungannon/M dungaree/MS dungeon/GSMD dunghill/SM Dunglison/M Dunham dunk/GDS Dunkeld/M dunker/M Dunkirk/M Dunlap Dunn/M Dunne dunno/M dunnock/S Dunphy/M Dunstable Dunstan Dunwoody duo/SM duodecimal/S duodecimo/S duodena duodenal duodenary duodenum/M duologue/M duology/S duomo/S duopolistic duopoly/S3M duotone/S dupe/RSMGD dupion/M duple duplet/S duplex/SMDG duplexer/M duplexity duplicability/M duplicable duplicate/GAnNDS duplication/MA duplicative duplicator/MS duplicitous duplicity/SM Dupont durability/SM durable/SPY Duracell/M durance/M Durand/M duration/MS Durban/M Durbin/M duress/MS Durex Durey/M Durga/M Durham/M durian/S during Durnford/M Durrant/M durrie/S durst durum/MS Dusenberg Dushanbe/M dusk/GSDM2Z duskiness/S dusky/PT dust-up dust/2MZGSzRDp dustbin/SM dustcart/MS dustcoat/S dustheap Dustin dustiness/S dusting/M dustman/M dustmen/M dustpan/MS dustproof dusty/TP Dutch/5m Dutchwomen/M duteous/Y dutiful/U dutifulness/S Dutta/M duty-bound duty-free duty/6jMS7 Duursma/M Duvall/M duvet/SM duxes Duxford/M DVD+RW DVD-audio DVD-RAM DVD-ROM/S DVD-RW DVD/SM Dvorak Dvorák/M DVR/S DVT dwarf/GSMD dwarfish dwarfism/MS dwarfness dwarves Dwayne dwell/GRJS dwelling/M dwells/I dwelt/I Dwight dwindle/SGD DWP/M Dy dyad/SMW dybbuk/SM dybbukim dye/7GDRJMS dyeing/M dyestuff/MS Dyfed Dyfed-Powys dying/U dyke/SM Dylan/M dynamic/YS dynamical dynamics/M dynamism/SM dynamite/MGRDS dynamo/MS dynastical dynastically dynasty/SMW dyne/M dynode/S dysarthria dysentery/MW dysfunction/oSM dysfunctional dysfunctionality dysgraphia dysgraphic dyskinesia/S dyslectic/S dyslexia/SM dyslexic/SY dysmorphia dysmorphic Dyson/M dyspepsia/SM dyspeptic/S dysphagia dysphemism dysphemistic dysphoria dysphoric dysplasia dysplastic dyspnoea dyspraxia dysprosium/M dysregulation dysthymia dysthymic dystonia dystonic dystopia/MS dystopian/S dystopic dystrophy/M DZ début/S débutante/MS débâcle/SM déclassé déclassée décolletage/S décolleté décolletée décor/SM découpage déjà démodé dénouement dépaysé dépaysée dérailleur/MS déshabillé's détente/S Düsseldorf e e'en e'er e-billing e-book/S e-business e-card/S e-cash e-cigarette/S e-commerce e-crime/S e-criminal/S e-dating e-edition e-fit e-learning e-mail/MSGD e.coli e.g. e.m.f. ea each eager/MYP eagerer eagerest eagerly/c eagerness/cM eagernesses eagle-eyed eagle/MSGD eaglet/SM Ealham Ealing Eamon/M EAN ear-piercing ear-splitting ear-stud/MS ear/6SYMD earache/MS earbash/G earbud/S eardrum/MS earful/SM earhole/S earl/2MS earldom/SM Earley/M earliness/S earlobe/S earlock earlship early/PTS Earlybird earmark/GDJS earmuff/SM earn/GRSTDJ earned/U earnest/PY earnestness/S earning/M earphone/MS earpiece/S earplug/SM earring/SM earshot/M earth-shattering earth/SMZY2DG earthbound earthed/U earthen earthenware/MS earthfall/S earthiness/S earthlight earthliness/U earthling/SM earthly/PT earthmen earthmover/M earthmoving earthnut earthquake/MS earthscape earthshaking earthshine earthslip/S earthstar earthward/S earthwork/SM earthworm/SM earthy/PT earwax/M earwig/GSDM earworm/S ease's/U ease/EDMSG easel/SM easement/SM easer/M easier easiest easiness/SM easing/M east-north-east east/GM East/M eastbound Eastbourne/M EastEnders Easter/YS easterly/S Eastern eastern/R easternmost Eastertide Easthampton easting/M Eastland Eastleigh Eastman Easton/M eastward/S Eastward/S Eastwood easy/UY easygoing/P eat/ScG eatable/S eaten/Uc eater/cM eaters eatery/SM eating/M Eaton/M eave/SM eavesdrop/RDSG EB eBay/R ebb/GDS Ebbinghaus/M EBCDIC Eben/M Eberhart/M Ebola ebony/SM Ebrahim ebullience/SM ebullient/Y EC ECC eccentric/MSY eccentrical eccentricity/SM Eccles ecclesial Ecclesiastes ecclesiastic/SMY ecclesiastical ecclesiasticism ecclesiology/3w ecdysial ecdysis ecdysone ECG echelon/dSM echidna/S echinacea echinoderm/MS Echinodermata echinoid/S echinus echium Echiura echiuran/S echiuroid/S echo/WAGDRZpM echocardiogram/S echocardiograph/ZW echoes/A echogram/S echograph echolocation/SM echovirus/S Eckard/M Eckhart/M eclair/SM eclectic/SY eclecticism/MS eclipse/SGMDW ecliptic/MS eclogue/SM ECMAScript/M eco-tax/S eco-warrior/S ecocentric ecocentrism ecocentrist/S ecocide/SM ecoclimate/MS ecofeminism ecofeminist/S ecofreak/S Ecole ecolodge/S ecology/wS3M1 Econ. econometric/S econometricians econometrics/M economic/UY economical/U economics/M economy/qQ8s39wWS-M1 ecosphere ecosystem/MS ecoterrorism ecoterrorist/S ecotonal ecotone/S ecotour/S ecotourism/M ecotourist/S ecotown/S ecotoxicological ecotoxicologist ecotoxicology ecru/M Ecstasy ecstasy/MS ecstatic/YS ectoderm/O ectogenesis ectomorph/S ectomorphic ectomorphy ectoparasite/SW ectopic ectoplasm/M ectotherm/SW ectothermy ectropion ECTS ecu/S Ecuador/M Ecuadoran Ecuadorean/S Ecuadorian ecumenical/Y ecumenicism/SM ecumenicist/MS ecumenism/SM ecumenist/MS eczema/SM eczematous Ed ed. Edam edaphosaurus/S Eddie Eddington/M eddy/DGMS Ede/M edelweiss/M Eden/MW Edentata edentate/S Edgar/M Edgbaston edge/DZMGRpSJ Edgerton Edgewater edgeways edgewise Edgewood edginess/S edging/M edgy/TPY edibility/SM edible/PS edibleness/S edict/SM edification/M edifice/SM edified/U edify/RNSnDG edifying/U Edinburgh/M Edison/M edit/A7dNS editable/U edited/UF Edith/M editing/F edition/MS Editor Editor-At-Large editor/FMS editorial/s3Q89SY editorialist editorship/SM edits/F Edmonton/M Edmund Edmunds/M Edmundsbury Edna EDP eds/F EDT Eduard Eduardo/M educ/nNxV educability/SM educable/S educate/DGANS educated/cfU educatedly educatedness education/FSMo educational/3 educationalist educationist/S educator/MS educe/DNG7S eduction/M edutainment/SM Edward/MS Edwardian/MS Edwin/M Edwina/M Edwy/M EEC EEG eel-like eel/MS eelgrass/M eely EEOC EEPROM eerie/T eerily eeriness/SM efface/LDSG effaceable/I effacer/M effect/DuGvVSM effective/IPY effectiveness/SI effector/SM effectual/PIY effectuate/DGSN effectuation/M effeminacy/MS effeminate/SY effendi/SM efferent/YS effervesce/SGD effervescence/SM effervescent/Y effete/PY effeteness/S efficacious/YIP efficacy/ISM efficiency/MIS efficient/IF efficiently/I Effie/M effigy/SM effloresce efflorescence/SM efflorescent effluence/MS effluent/SM effluvia effluvium/M efflux/MN effort/SMp effortless/YP effortlessness/S effrontery/MS effulgence/MS effulgent effuse/NDvuVSGX effusion/M effusive/P effusiveness/S EFI EFT EGA/M egad egalitarian/S egalitarianism/SM Egan/M Egbert Egerton egg/MDGS eggbeater/SM eggcorn/S eggcup/SM egger/M eggfruit egghead/MiDS eggnog/MS eggplant/SM eggshell/MS egis's eglantine/MS ego/SM egocentric/YS egocentricity/MS egocentrism egoism/MS egoist/SMWw1 egomania/SM egomaniac/SM egomaniacal egosurf/SDGR egotism/MS egotist/WS1Mw egregious/YP egregiousness/S egress/DMSG egret/SM Egypt/M Egyptian/SM Egyptological Egyptologist/S Egyptology eh Ehrig/M Ehrlich/M Ehrman/M Ehsan/M EiB EiC Eichmann Eid eider/SM eiderdown/SM eidetic eidola eidolon/S eidos Eiffel eigenfrequency/S eigenfunction/MS eigenstate/S eigenvalue/MS eigenvector/MS eight/HMZS eighteen/HMS eightpence eighty-eight/H eighty-first/S eighty-five/H eighty-four/H eighty-nine/H eighty-one eighty-onefold eighty-second/S eighty-seven/H eighty-six/H eighty-three/H eighty-two eighty-twofold eighty/HMS Eileen/M Eindhoven/M Einstein/M Einsteinian einsteinium/M Eire/M Eisen/M Eisenhower Eisner/M eisteddfod/WMS eisteddfodau either ejaculate/nDGSNy ejaculation/M eject/VGSD ejecta ejection/MS ejector/MS eke/GSD EKG Ekker/M Ektachrome El elaborate/PDSGnYVN elaborateness/S elaboration/M elaborators Elaine/M eland/MS Elanor/M elans elapid/S elapse/SGD elastase elastic/SQ8Y elasticated elasticity/SM elastin elastodynamics elastomer/MS elastomeric elate/iSDGnhN elated/P elater/M elation/M Elba Elbe Elbert elbow-work elbow/GSDM elbowroom/MS elder/SY elderberry/SM elderflower elderly/SP eldest Eldon/M eldritch Eleanor/M Eleatic/S elect/DAGS7 electability electable/U elected/U election/SM electioneer/GSD elective/SPY elector/SM electoral/Y electorate/SM Electra electress/M electric/SY electrical/SP electrician/SM electricity/MS electrification/M electrify/nRDGSN electro-oculogram electro-oculographic electro-oculography electro-optic/S electro-optical electro/M electroactive electrocardiogram/SM electrocardiograph/MSZ electrocardiography/SM electrocautery electrochemical/Y electrochemist/S electrochemistry electroclash electrocoagulation electroconvulsive electrocute/SDG electrocution/SM electrode/MS electrodermal electrodesiccation electrodynamic/SY electrodynamics/M electroencephalogram/SM electroencephalograph/ZWMS electroencephalography/MS electrogenerated electrogenesis electrologist/SM electroluminescence electroluminescent electrolyse/GWSD electrolysis/M electrolyte/MS1 electrolytical electromagnet/W1MS electromagnetism/SM electromechanical electromechanics electromedical electrometer/W electrometry electromotive electromyogram/S electromyograph electromyographic/Y electromyography electron/SW1M electronegative electronegativity/S electronic/S electronica electronics/M electronvolt/S electrophile/S electrophilic electrophonic electrophonically electrophorese/SGD electrophoresis/M electrophoretic/Y electrophorus/M electrophysiological/Y electrophysiology/3 electroplaque electroplate/SGD electroplax electropolar electropolish/DG electropop electroporate/SGD electroporation electropositive electroreception electroreceptor electroscope/SMW electroshock/MGDS electrostatic/S electrostatics/M electrosurgery electrosurgical electrotechnic/S electrotechnical electrotechnology electrotherapeutic electrotherapeutical electrotherapist/SM electrotherapy electrothermal electrotype/SDGM electrotyper/S electroweak electrum electuary/S eleemosynary elegance/ISM elegant/IY elegiac/S elegiacal elegy/MS element/SMo elemental/S elementalism elementary/YP Elena/M elenchi elenchus elephant/SM elephantiases elephantiasis/M elephantine elevate/DSnGN elevation/M elevational elevator/SM elevatory eleven/HMS elevens/S elf/M elfin/S elfish ElGamal Elgamal Elgar/M Elgin Eli Elias/M elicit/dSn elicitation/M elicitor/S elide/NSDGX eligibility/IMS eligible/SYI eligibly/I Elijah eliminate/SVnNDG elimination/M eliminator/MS Eliot/M Eliphas/M Elisa/M Elisabeth/M Elise/M Elisha/M elision/M elite/S3M eliteness elitism/MS elixir/MS Eliza/M Elizabeth/M Elizabethan/S elk/MS Elkanah/M Elkhart elkhound/S Elkins/M ell/SM Ella ellagic Elle Ellen/M Ellesmere Ellie Ellington Elliot Elliott ellipse/SMW ellipsis/M ellipsoid/SM ellipsoidal ellipsometer/MS ellipsometry elliptic/Y elliptical/S ellipticity/M Ellis Ellison/M Ellsworth Ellwood/M elm/SM Elmer Elmhurst Elmira Elmo/M Elmsford Elmwood/M elocution/3SMy elocutionist elodea/S Elohim Eloise/M elongate/GnSND elongation/M elope/LSDG eloper/M eloquence/SM eloquent/IY Eloy/M Elphin/M Elroy Elsa/M else/M elsewhere Elsey/M Elsie Elstree/M Elton/M eluate/SM elucidate/VNDSGn elucidation/M elude/DuVGvS elusive/P elusiveness/S elute/DG elution/M elven elver/MS elves/M Elvington Elvira/M Elvis/M elvish Elwood/M Ely/M elysian Elysium Elysée/M em/M emaciate/SGnND emaciation/M Emacs/M email/MDGS emanate/DnVGSN emanation/M emancipate/DSNnGy emancipation/M emancipator/SM Emanuel emasculate/DSGNn emasculation/M embalm/RGDS embank/GLSD embarcadero embargo/MGD embargoes embark/EGSAD embarkation/MSE embarrass/kLDhSG embarrassed/U embassy/MS embattle/SGD embayment/S embed/SDGJ embeddable embeddedness embedder embedding/M embellish/DSGL embellished/U embellisher/M ember/SM embezzle/DLRSG embitter/LdS emblazon/LSd emblem/WSM emblematical emblematically emblematise/SGD emblematist emblematize/SGD emblements embodier/M embodiment/MS embody/AEGDS embolden/dS emboli embolisation embolism/SM embolization embolus embosom emboss/GDRS embouchure/MS embower/Sd embrace/SGDk embraceable embracer/M embracive embrasure/MS embrittle embrocation/MS embroider/rZdS embroidery/SM embroil/DLSG embryo/SM embryogenesis embryogenic embryogeny embryologically embryology/WS3wM embryonic emcee/MGS emend/7nGDS emendation/M emender emerald-cut emerald/MS emerge/ASGD emergence/SMZ emergency/SM emergent/S emerita emeritae emeriti emeritus Emerson/M emery/MS emetic/S emf/S EMI/M emigrant/SM emigrate/nSNDG emigration/M Emil/M Emile/MZ Emilia/M Emilio/M Emily/M Eminem/M eminence/SM eminent/Y emir/SM emirate/MS Emirates/M emissary/SM emission/M emissivity/SM emit/RXSNDG emittance/M Emma Emmanuel Emme/M emmenagogue/S Emmental Emmenthal emmet Emmett/M Emmy Emmys emo/S emoji/S emolliate/SGD emollience emollient/S emollition emolument/SM Emory emote/SvDxVG emoticon/S emotion/pMS emotional/Q8 emotionalism/SM emotionalist/S emotionality/M emotionally/Uc empanelled empanelling empath empathetic/Y empathetical empathic empathy/QM8WS emperor/MS emphases/c emphasis's/Cc emphasis/cdACQS emphasise/CR emphasize/CRGDS emphasized/c emphasizes/A emphasizing/A emphatic/Y emphysema/SM emphysematous empire/wS1MW empiric/M3 empiricism/MS empiricist emplace/LD emplane/GDS employ/DGLSRB employability/M employable/US employed/fUA employee/SM employing/A employment/fMU employments/f employs/A emporia emporium/MS empower/LSd empress/SM empt/zVZGSDv2 emptier/M emptiness/S emption/SM emptor/M empty-handed empty-headed empty/SGDTP empyreal empyrean/SM ems emu/MS emulate/nDVGSvN emulation/M emulator/SM emulsification/M emulsify/nRSNGD emulsion/SM en/7M enable/RDGS enact/GLSD enactable enacted/A enacting/A enaction enactive enactment/A enactor/S enacts/A enamel/GMRDJS enamelware/MS enamour/DGS enantiomer/S enantiomeric enantiomerically enantiomorph/S enantiomorphic enantiomorphism enantiomorphous enc Encaenia encage/SGD encamp/DLSG encapsidate/SGDN encapsulate/SNDnG encapsulation/M encase/GDLS encash/LDB encaustic Enceladus encephalic encephalin/S encephalitic encephalitides encephalitis/M encephalogram/S encephalograph encephalographic encephalography encephalon encephalopathy/MS enchain/LDGS enchant/EGLSD enchantedly enchanter/MS enchanting/Y enchantress/MS enchilada/MS encipher/Sd encipherer/M encipherment encircle/DGSL encl enclave/MS enclose/DSG enclosed/U enclosure/MS encode/JDRSBG encomium/SM encompass/DGS encore/DSG encounter/Sd encourage/LDSkG encourager/M encroach/LGDS encroacher/SM encrust/nDGNS encrustation/M encrypt/GSD encrypted/U encryption/MS encumber/ESd encumbered/U encumbrance/SM encyclical/SM encyclopaedia/SM encyclopaedic encyclopedia/S encyclopedic encyclopedism encyclopedist encyst/GLDS end-user/S end/SRpMDJG endanger/LSd endarterectomy/S endear/LkDGS endeavour/RGMDS endemic/SY endemicity endemism Enderlein/M endgame/MS endian Endicott ending's ending/U endive/SM endless/PY endlessness/S endmost endnote/SM endoblast/W endocardial endocarditic endocarditis endocentric endocrine/S endocrinology/3SM endocytosis endocytotic endoderm/O endodontics endogamous endogamy/M endogenous/Y endoglossic endolymph endometrial endometriosis endometrium endomorph endomorphic endomorphism/SM endomorphy endoplasmic endorphin/S endorse/LRDSG endorsee endoscope/MSWZ endoscopically endoscopist/S endoscopy/SM endoskeletal endoskeleton/S endosome endosperm/M endospore/S endostylar endostyle endosymbiont/S endosymbiosis endosymbiotic endosymbiotically endothelial endothelium endotherm/S endothermal endothermic endothermy endotoxin/S endow/GLSD endpaper/S endpoint/MS endue/GSD endungeoned endurable/U endurably/U endurance/SM endure/SGklD enduring/P enduro/S endways Endymion/M enema/MS enemy/MS energetic/YS energetics/M energised/U energized/U energy/qSQMs8-9 enervate/GDnVSN enervation/M enfeeble/LSDG Enfield enfilade/SMGD enfold/DGS enforce/RbBLDGhS enforceability/M enforceable/U enforced/AU enforcer/AS enforces/A enforcible/U enforcing/A enfranchise/EDLSG enfranchiser/SM enfranchize/LDGRS eng. engage/AGESD engagement/SM engaging/Y Engberg/M Engel/S Engelmann/M engender/dS Engin/M engine/SMD engineer/SDGM engineering/M enginery englacial England/M Englander/S Englewood English-speaker English-speaking English/m5M engorge/LDSG engrailed engrained engram/M engrammatic engrave/GRDJS engraving/M engross/LDSGhk engrosser/M engulf/LGDS enhance/GRLDS enhanceable enharmonic/Y Enid/M enigma/SWM1 Enigmail/M enigmatical enjambment/MS enjoin/SDG enjoinder enjoy/GLBSDl enjoyable/P enjoyer/S enkephalin/S enlace/D enlarge/RLDSG enlargeable enlighten/dSL enlightened/U enlightening/U enlist/AGDS enlistee/SM enlister/M enlistment's enlistment/A enlistments enliven/LSd enmesh/LDSG enmity/SM Ennis ennoble/LDSG ennobler/M ennui/MS Enoch enormity/SM enormous/PY enormousness/S enough enprint/S enqueue/SD enqueueing enqueuing enquire/GZSDRk enquiry/S enrage/DSG enrapture/GDS enrich/GSDL enricher/M Enrico enrobed enrol/LDRSG enrollee/MS Enron ensconce/DSG ensemble/MS enshrine/GDLS enshroud/SDG ensiform ensign/SM ensilage/SMGD enslave/RGLSD ensnare/SDLG ensue/SDG ensure/DRGS entablature/S entablement entail/DRLSG entangle/EDLSG entangler/EM entanglers entelechy/S entente/MS enter/AdS enterer/MS enteric enteritides enteritis/MS enterococci enterococcus enterokinase enteroviral enterovirus/S enterprise/RSGMk enterprising/U entertain/GRLSkD enthalpy/MS enthral/GDLS enthrone/DLGS enthuse/SDG enthusiasm/SM enthusiast/SWM1 enthusiastic/UY entice/SRLkJGD entire/Y entirety/SM entitle/SDLG entity/SM entoconid/S entomb/DLGS entomology/S3Mw entomophilous entomophily entourage/MS entr'acte/S entrails entrain/DGLS entrainer/M entrammel/DSG entrance/LMSGDk entranceway/M entrant's entrant/A entrants entrap/LGSD entreat/kSGZD entreaty/MS entrechat/S entrecôte/SM entremets entrench/LDSG entrepreneur/MS entrepreneurial/Y entrepreneurialism entrepreneurship/M entrepôt/S entresol entropically entropion entropy/WSM entrust/LDGS entry's entry/AS entryphone/S entryway/SM entrée/S entwine/SDG enucleate/DN enum/S enumerable enumerate/VnGDNS enumerated/A enumerates/A enumerating/A enumeration/M enumerator/SM enunciable enunciate/GSnDN enunciation/M enureses enuresis/M envelop/LrdS envelope/SM envenom/dS enviable/P envied/U envious/PY enviousness/S environ/LdS environment/o environmental/3 environmentalism/MS environmentalist envisage/SGD envision/GSD envoy/MS envy/MRS7lDkG Enzler enzootic enzymatic/Y enzyme/WSM enzymology/M Eocene eohippus/M eolith/W eosinophil/S eosinophilic EP EPA epaulette/MS epaxial ephedrine/SM ephemera/SMo ephemeral/S ephemerides ephemeris/M Ephesian/S Ephesus Ephraim epic/MSY epicene epicentral epicentre/MS epicondylar epicondyle Epictetus/M epicure/MS epicurean/S Epicurus epicycle/Ww1MS epicycloid/MOS Epidaurus epidemic/MYS epidemiologic epidemiology/WSM31w epidermal epidermic epidermis/SM epidermoid epidote epidural epifauna/O epifluorescence epigastria epigastrium epigenetic epiglottis/SM epigram/MS epigrammatic epigrammatically epigraph/wSMZ epigrapher/M epigraphy/31WSM epilate/SGD epilation epilator/S epilepsy/SM epileptic/S epilogue/MGDS epinephrine/SM epinician epiotic Epipalaeolithic epiphanic epiphany/MS epiphenomena epiphenomenal epiphenomenon epiphyseal epiphyses epiphysis epiphytal epiphyte/S epiphytic episcopacy/SM episcopal/Y episcopalian Episcopalian/S episcopalianism episcopate/SM episode/W1SM epistaxis epistemic epistemologist/S epistemology/1wM epistle/SM epistolary/S epitaph/MS epitaxial epitaxy/Mo epithelia epithelial epithelium/SM epithet/SWM epitome/s-9qQ8MS epitomic epitomist epitope/S epizoic epizoite/S epizootic EPLP/M epoch/oM epochal epochs eponymous/Y epoxide/S epoxy/DSG Epping EPROM/S epsilon/MS Epsom Epstein epyllia epyllion EQ equability/MS equable/YP equal/s9Q-DGYqS8 equalise/J equalised/U equalising/U equalitarian equalitarianism equality/IMS equalized/U equally/UF equals/F equanimity/MS equanimous equatable equate/DGBSnN equation/M equator/SM equatorial/S equerry/SM equestrian/S equestrianism/SM equestrienne/MS equiangular equidistant/Y equilateral/S equilibrate/DNSG equilibration/M equilibria equilibrium/ESM equine/S equinoctial/S equinox/MS equip/LDSG equipage/SM equipartition/M equipoise/MSDG equipotential equipped/UA equiproportional/Y equiproportionality equiproportionate equips/A equispaced equitable/PY equitably/I equitation/MS equity/MSI equiv equivalence/GDSM equivalency equivalent/YS equivocal/UY equivocalness/MS equivocate/GDNSn equivocation/M equivocator/SM Equuleus er/ae era/MS eradicable/I eradicate/VNSDGn eradication/M eradicator/SM eras/7gSrd erase Erasmus erasure/SM Eratosthenes/M erbium/M ere erect/DA erecter erectile erecting erection/SM erectly erectness/SM erector/MS erects erectus eremite/SM eremurus erg/SM ergo ergodic ergodicity/M ergonomic/U ergonomically ergonomics/M ergophobia ergosterol/MS ergot/MS Erhard Eric/M Erica Erich Erickson Ericsson/M Erie Erik/M Erika/M Eriksson/M Erin Eritrea/M erk Erlang/M Erlangen/M Erlenmeyer/M ERM ermine/SDM Ernest Ernestine Ernesto/M Ernie Ernst erode/VDuNGxXSb erogenous Eros erosible erosion/M erosive/P erotic/YS erotica/M eroticisation eroticise/SGD eroticism/SM eroticization eroticize/SGD erotogenic erotogenous erotomania erotomaniac/S err/DkSG errancy/SM errand/SM errant/YS errantry/M errata/SWM1 erratic/S erraticism erratum/MS erring/UY Errol erroneous/PY error/MSp ersatz/S Erse Erskine/M erst erstwhile eructation/MS erudite/Y erudition/SM erupt/DVGSv eruption/MS Ervin Erving/M Erwin erysipelas/SM erythema/O erythematosus erythematous erythrocyte/SM erythromycin Es ESA/M eSATA eSATAp Esau ESC escabeche escadrille/M escalade escalate/CDGNnS escalation/CM escalator/MS escallop/SM escalope/MS escapable/I escapade/MS escape/3SDLG escapee/SM escaper/M escapism/MS escapologist/S escapology escargot/S escarpment/SM eschatological eschatologist/S eschatology/M eschew/GDS escort/SGMD escorted/U escritoire/MS escrow/SDMG escudo/MS escutcheon/DSM Eskimo/S Eslick/M Esmeralda/M Esmond/M esoteric/Y esoterica esp/Z espadrille/MS Espagnol espalier/SDGM esparto/S especial/Y Esperantist/S Esperanto espial espionage/SM esplanade/MS Espoo Esposito/M espousal/MS espouse/GDRS espresso/SM esprit/MS espy/DGS esquire/SM ESR essay/DRMG3S essayistic Essen/M essence/MS essential/P3SY essentialism essentialist Essex/M est/R establish/ELDGSA established/A establisher/M establishes/A establishing/A establishment/A establishmentarian/S establishmentarianism estate/SM esteem/EDGS Estella/M Estelle Esterházy/M Estes Esther estimable/P estimableness/I estimate/cGfASND estimation/MSc estimations/f estimative estimator/SM Estonia/M Estonian estoppal estoppel estovers estrange/DGLS estranger/M Estremadura estuarial estuarine estuary/SM et ET/S ETA etalon etc. etcetera/MS etch/RGSDJ etchant etching/M eternal/PY eternalise/SGD eternality eternalize/SGD eternalness/S eternity/SM Ethan ethane/M ethanoic ethanol/M Ethel Ethelred/M ether/MQ8S ethereal/PY etheric Etherington/M Ethernet/MS Etherpad/M ethic/3MSY ethical/UY ethicality ethicalness/M ethicist ethidium Ethiopia/M Ethiopian/S ethnic/SY ethnicity/SM ethnobotanic ethnobotanical ethnobotanist/S ethnobotany ethnocentric ethnocentrism/SM ethnocide ethnogenesis ethnographer/S ethnography/MW ethnohistorian/S ethnohistoric ethnohistorical ethnohistory ethnolinguist/S ethnolinguistics ethnologically ethnology/W3SwM ethnomethodological ethnomethodologist/S ethnomethodology ethnomusicologic ethnomusicological ethnomusicologist/S ethnomusicology ethnopharmacology ethnoscience ethogram/S ethology/3wMS ethos/SM ethoxylate/D ethyl/MS ethylbenzene ethylene/M ethylenediamine etiquette/SM Etna Eton/M Etruscan ETSI etymology/31SMw Eu EU/M eubacteria eubacterial eubacterium Euboea eucalypti eucalyptus/SM eucatastrophe Eucharist/MWS Eucharistical euchologion euchology euchre/MSGD euchromatic euchromatin Euclid/M euclidean Eudora/M Eudoxus/M Eugene Eugenia eugenic/Y3S eugenicist eugenics/M euhedral eukaryote/S eukaryotic Euler/M eulogised/U eulogist/W eulogized/U eulogy/Q9s38SM Eunice eunuch/M eunuchs euphemism/SM euphemist/SW1M euphonious/Y euphonium/MS euphony/SM euphorbia/S euphoria/MS euphoric/Y euphrasia Euphrates EUR Euramerica Eurasia Eurasian eureka/S eurhythmics EURIBOR Euripides Euro Euro-MP/S Euro-wasp euro/S Eurobank Eurobond/S Eurocard Eurocentric Eurocentrist Eurocheque Euroclear Euroclydon Eurocommunism Eurocommunist Euroconnector Euroconvertible Eurocracy Eurocrat/S Eurocratic eurocredit eurocreep Eurocurrency/S Eurodisco Eurodollar/S Euroequity Eurofanatic Eurogroup Euroland/M Euromarket Euromart EuroMillions Euromissile Euronet Euronote Europa Europarliamentarian Europarliamentary Europasian Europass Europe-wide Europe/M European/Q8Mq-S Europeanism Europeanist Europhile Europhobe europium/M Europoort Europop Eurosceptic Eurosceptical Euroscepticism Eurostar euroterminal Eurotrash Eurovision eurozone/M euryapsid/S Eurydice/M Eurythmics eusocial eusociality Eustachian eustacy eustatic Euston/M eutectic eutectoid euthanasia/SM Eutheria eutherian/S eutrophic eV Eva evacuant evacuate/VNnDSG evacuation/M evacuee/SM evadable evade/SvRDNVGuX evaginate evagination/S evaluable evaluate/xNVDGSn evaluated/AU evaluates/A evaluating/A evaluation's evaluation/A evaluator/SM Evan/M evanescence/SM evanescent evangelic/Y evangelical/S evangelicalism/MS Evangelina/M Evangeline evangelise/DGS evangelism/SM evangelist/WSM evangelize/DGS Evans Evans-Pritchard/M Evanston Evansville evaporable evaporate/vGnDSVN evaporation/M evaporator/SM evaporite/S evasion/M evasive/P evasiveness/S eve/yMS Evelyn even-handed/Y even-handedness even/YdSPJ evener evenest evening/M evenly/U evenness/S evensong/MS event/6SjGM eventer/S eventful/P eventfully/U eventfulness/S eventide/MS eventual/Y eventuality/SM eventuate/DSG ever ever-changing ever-increasing Eveready Everest Everett/M Everglades evergreen/S Everhart/M everlasting/PY everliving Everly/M Everman/M evermore eversible eversion evert/SGD Everton everybody/M everyday/P Everyman everyone/M everything/M everywhere Evesham/M Evette/M evict/SGD eviction/SM evidence/DMGS evident/Y evidential/Y evidentiality evil/YSPT evildoer/MS evildoing/MS evilness/S evince/SDG eviscerate/GDSNn evisceration/M evocable evocation/M evocative/P evoke/VGuvSnDN evolute/SM evolution/3MyS evolutional/Y evolutionary/Y evolutionism evolutionist evolutive evolvable evolve/SGD evolvedly evolvement evolvent evolver Ewa/M Ewan/M ewe/RSM Ewing eww ex ex-communist/MS ex-con/S ex-partners ex-president ex-students ex-wife ex-wives exabit exabyte/S exacerbate/nNDSG exacerbation/M exact/PSGYTDk exactable exacter/M exacting/P exaction/SM exactitude/ISM exactly/I exactness/IS exactor/S exaggerate/SnvhiGNVD exaggeration/M exaggerator/SM exalt/RnhSNDG exaltation/M exam/SM examinable/A examination/SM examine/ASGDN examined/U examinee/SM examiner/SM example/MDGS exampled/U exanthema exanthemata exanthematic exanthematous exasperate/DhGnSkN exasperation/M exbibit/S exbibyte/S Excalibur excavate/DNSGn excavation/M excavator/MS exceed/SDGk exceeder/M excel/DGS Excel/M excellence/MZS excellency/MS excellent/Y excelsior/S except/xDGS exception/7MS exceptionable/U exceptional/UY exceptionalism exceptionalness/M excerpt/MSDG excerpter/M excess/DSuVvMG excessive/P exchange/RGDS exchangeable exchequer/MS excise/GDSMNBX excision/M excitability/SM excitable/P excitation/M excitatory excite/lknGNLRDSBh excited/Uc excites/c exciting/Uc exciton/M exclaim/yRSDG exclamation/MS exclude/NDSGuXVv excluder/M exclusion/My exclusive/SP exclusiveness/S exclusivism exclusivist/S exclusivity/SM excogitate/SGDN excommunicate/SNnVDG excommunication/M excommunicator/S excommunicatory excoriate/SGDNn excoriation/M excrement/SM excremental excrescence/MS excrescent excreta excrete/VynDGSN excreter/M excretion/M excretory/S excruciate/DSNkG excruciation/M exculpate/SDNnyG exculpation/M excursion/3MS excursionist excursive/PY excursiveness/S excursus/MS excusable/IP excusably/I excuse/RlGDS exec/MS execrable/PY execrate/SGVnND execration/M executable/SM execute/SVRxGD execution/SMR executive/MS executor/MS executrices executrix/M exegeses exegesis/M exegete/MwW exegetic/S exemplar/SM exemplarity exemplary/PY exemplification/M exemplify/SGRnND exempt/DGS exemption/MS exercise/RSBGD exercised/c exercises/c exercising/c exert/cGDS exertion/SMc Exeter/M exeunt exfoliant/S exfoliate/SGDN exfoliative exfoliator/S exhalant exhalation/M exhale/GNDSn exhaust/bkSVvDhuG exhauster/M exhaustible/I exhaustion/SM exhaustive/P exhaustiveness/S exhibit/XVdSN exhibition/MR3 exhibitionism/MS exhibitionist exhibitor/SM exhilarate/DSVNGkn exhilaration/M exhort/NnSDG exhortation/M exhorter/M exhumation/M exhume/GDSn exhumer/M EXIF exigence/ZS exigency/SM exigent/SY exiguity/MS exiguous exile/GSDM exist/FGSD existence/SFM existent/F existential/Y3 existentialism/MS existentialist/W exit/dSM Exmoor/M Exner/M exoatmospheric exobiological exobiologist/S exobiology/MS exocentric exocrine exocytosis exocytotic exodus/SM exogamous exogamy/M exogenous/Y exoglossic exon/S exonerate/nSNVDG exoneration/M exonic exophthalmia exophthalmos exophthalmus exoplanet/S exopolitics exorbitance/MS exorbitant/Y exorcise/GDS exorcism/MS exorcist/MS exorcize/SDG exoskeletal exoskeleton/MS exosphere/SMW exostoses exostosis exothermic/Y exothermicity exotic/PSY exotica exoticism/SM exotoxin/S exotropia exp expand/BDRXVNvGSu expandability/M expanded/U expanse/SDMGb expansion/y3M expansionism/MS expansionist expansiveness/S expatiate/GNDSn expatiation/M expatriate/DnSNG expatriation/M expect/nShGDi7kN expectancy/MS expectant/SY expectation/Mo expectational expected/UY expectedness/U expectorant/S expectorate/SGNDn expectoration/M expedience/SIZ expediency/IMS expedient/YS expediently/I expedite/RSDG expedition/SyM expeditious/PY expeditiousness/S expeditor's expel/DSn7GN expellee/S expeller/S expend/Du7VSGv expendable/S expended/U expender/M expenditure/MS expense/MGSD expensive/IPY expensiveness/IS experience/IMDRB experiences experiencing experiential/Y experiment/NRSGMonD experimental/3 experimentalism/M experimentalist experimentation/M expert's expert/IPY experted experting expertise/SM expertness/S experts expiable/I expiate/GyNnSD expiation/M expiration/M expire/ynDSZGN expired/U expiry/MS explain/AGDS explainable/U explained/U explainer/SM explanation/SM explanatory explant/SD explantation expletive/SM explicable/I explicate/VSnNvGD explication/M explicator explicatory explicit/PY explicitly/I explicitness/S explode/SDRGuXVvN exploded/U exploit/RVM7GnDS exploitation's exploitation/c exploitative exploited/Uf explorable exploration/M explore/SnDRNyG explored/U explosion/M explosive/SP explosiveness/S expo/MS exponent/SM exponential/YS exponentiate/GnDSN exponentiation/M export/DRGBnMSN exportation/M exported/A exporting/A exports/A expos/rdS expose/fDScG exposed/U exposit/yXN exposited exposition/M expositor/SM expostulate/nDGNS expostulation/M exposure/cSMf exposé/SM expound/SRDG express/SNvbuDGYXV expressed/U expresser/M expressibility/I expressible/IY expressibly/I expression/Mp expressionism/SM expressionist/WS expressionless/Y expressionlessness expressive/IPY expressiveness/SI expressivism expressivist/S expropriate/SGDNn expropriation/M expropriator/MS expulsion/M expunge/SGD expunger/M expurgate/SDNGn expurgated/U expurgation/M exquisite/YP exquisiteness/S exsanguine exsolution exsolve/SGD ext extant extemporaneous/YP extemporaneousness/S extempore/Qs89q-S extend/iDRVvhGNSxubX extendability extendable extended-play extended/c extendedness/M extendibility/M extendible/S extending/c extends/c extensibility/M extensible/I extension/M extensive/FY extensiveness/SM extensometer/S extensor/SM extent/SM extenuate/nGSDN extenuation/M exterior/MYS exteriorise/Dn exteriorize/DN exterminate/DnSNG extermination/M exterminator/SM external/qQ-8Ys9S externality/S exteroceptor/S extinct/V extinction/SM extinguish/GR7SD extinguishable/I extirpate/GSnDNV extirpation/M extol/SDG extoller/M extort/GDVS extorter/M extortion/MSR3 extortionate/Y extortionist extra-curricular extra/S extracellular/Y extracorporeal extract/G7VDSv extraction/SM extractor/SM extracurricular/S extraditable extradite/GDS extradition/SM extrados extrafloral extragalactic extrajudicial/Y extralegal/Y extralinguistic extramarital extrametrical extramural extramusical extraneous/PY extranet/S extraordinaire extraordinary/PYS extrapolate/SDnGNV extrapolation/M extrapulmonary extrapyramidal extrasensory extrasolar extrasystole/S extraterrestrial/S extraterritorial extraterritoriality/SM extravagance/SM extravagant/Y extravaganza/MS extravasate/DN extravascular extravehicular extraversion extravert/M extrema extremal extreme/PTY3S extremeness/S extremis extremism/MS extremity/SM extremophile/S extricable/I extricate/GnDSN extrication/M extrinsic/Y extropian/S extropy extrorse extroversion/SM extrovert/DMSG extrude/GNSDXV extruder/M extrusion/M exuberance/SM exuberant/Y exudate/MS exudation/M exude/SnDG exult/NnkGDS exultant/Y exultation/M exurb/MS exurban exurbanite/SM exurbia/SM Exxon eye-catching eye-level eye-liner/MS eye-opener/SM eye-opening eye-teeth eye-tooth/M eye/RSpMD6iG eyeable eyebags eyeball/DGSM eyebright eyebrow/SM eyedropper/MS eyeful/SM eyeglass/SM eyehole/S eyelash/MS eyelet/MdS eyelid/SM eyeline eyeliner/S eyepatch eyepiece/MS eyeshadow eyeshine eyeshot eyesight/MS eyesore/SM eyespot/S eyestalk eyestripe/S eyewash/SM eyewitness/MS eyot Eyre eyrie's Ezekiel/M Ezra Ezrin/M f-stop/S f/F7 fa/M FAA fab/SGD Faber/M Fabergé/M Fabians fable/MSDG fabler/M fabric/SNnM fabricate/DSKNnG fabrication/MK fabricator/SM fabulate/N fabulator fabulist/SM fabulous/PY Fabyan/M facade/S face's/K face-saver face-saving face-to-face face/CGKDASe faceache Facebook/rDGM facecloth/S faceless facelessness facelift/S faceplate/MS facer/KMC facet/SdM facetiae facetious/YP facetiousness/S faceworker facial/YS facies facile/YP facilitate/yDGSNnV facilitation/M facilitator/SM facility/SM facing/MS facsimile/MDS facsimileing fact/SMyxY faction/MS factionalism/SM factious/YP factitious factive facto factoid/S factor/Q8t+d-MqS factorial/SM factoring/MS factory/SM factotum/SM factual/YP factuality/M facultative facultatively faculty/SM fad/rSdM faddish faddist/MS fade-in/S fade-out/S fade-up fade/hS fadeout fading/M fado/S faecal faeces faerie/M Faeroe/M Faeroese faery/SM faff/GDS fag/SDGM Fagatogo/M faggot/dSM faggoting/M Fagin fah Fahrenheit fail-safe fail/SDGkJ failing/M failingly/U failover failure/MS fain faint-hearted/Y faint-heartedness faint/RGSPYTD faintness/S fair-minded fair-weather fair/DTZPSGpJY Fairbanks Fairburn/M Fairchild faire Fairfax/M Fairfield fairgoer/S fairground/SM fairing/M fairish fairlead/S fairly/U Fairmont fairness/S Fairport Fairview fairwater fairway/MS fairy/MS fairyland/SM fairytale Faisal faith/6DjpMGS faithful/UY faithfulness/SM faithless/PY faithlessness/S fajitas fake/RSDG fakery fakie/S fakir/SM falafel falcate falciparum Falcoff/M falcon/SryM falconry/SM Falk Falkirk/M Falkland/SM Falkner fall's/ce fall-back fall/RbMGS fallacious/PY fallacy/SM fallback fallen fallibility/ISM fallible/PY fallibleness/S fallibly/I falloff/S fallopian fallout/MS fallow/DPSG falls/e false/TYP falsehood/SM falseness/S falsetto/MS falsifiability/M falsification/M falsify/RBGnDSN falsity/SM Falstaff falter/rJdSk faltering/UY falutin faluting fame/MDSz famed/C fames/C familial familiar/9Qsq8-SY familiarise/k familiarity/MS familiarize/k familiarly/U familiarness family/MS famine/SM famish/DGS famous/YP famously/I fan/DSMGZ fanatic/MYS fanatical/P fanaticism/MS fanboy/S fanciable fanciful/P fancifulness/S fanciness/S fancy-free fancy/RTjPYDS6G fancywork/SM fandabidozi fandango/MS fandom/S fanfare/MS fanfold/M fang/SDM fangirl/S fanlight/MS fanny/MS fanout fantail/SM fantasia/MS fantasist fantastic/Y fantastical fantasy/Q8Ws9DSGM fanzine/S FAQ/SM far-distant far-fetched far-flung far-off far-ranging far-reaching far-sighted/YP far-sightedness/S far/d farad/MS Faraday Faragher/M faraway Farber farce/w1MS fare/SM Fareham farer/M farewell/MDGS farfetchedness/M Fargo farina/MS farinaceous Farley farm/SDRGM farmhand/S farmhouse/MS farming/M Farmington farmland/MS farmstead/MS farmworker/S farmyard/SM Farnborough faro/M Faroese farouche farraginous farrago/MS Farrell farrier/SM farrow/MDSG farseeing Farsi fart/SDGM farther farthermost farthest farthing/SM fas fascia/MS fascicle/DSM fasciculate/DnN fasciculation/M fascinate/DGSnkN fascination/M fascine/S fascism/SM fascist/WSM Fashanu fashion/RSMDl7G fashionable/PS fashionably/U fashioned/A fashions/A Faso/M Fass/M fast-forward fast/TGPSD fastback/SM fastball fasten/dASU fastener/SM fastening/MS fastidious/YP fastidiousness/S fastness/S fat/SoYPTMGZD2 fatal/3 fatale/3S fatalism/MS fatalist/W1 fatality/SM fatalness fate/jS6DM fateful/P fatefulness/S fathead/MSDi father-in-law father/dpSYM fatherhood/SM fatherland/SM fatherly/P fathers-in-law fathom/7dMpS fathomable/U fathomed/U fatidic fatigue/kDMSG Fatima fatling fatness/S fatso/MS fatten/drS fattiness/S fatty/TSP fatuity/SM fatuous/PY fatuousness/S fatwa/MS Faulkner fault-finder/SM fault-finding fault/CSDGM faultiness/S faultless/YP faultlessness/S faulty/PTY faun/SM fauna/SM faunal faunistic Fauntleroy Faurisson/M Faust Faustian fauvism/S faux fave/S favicon favour/ERSMDG favourable/SYM favourableness favourably/U favoured/SYM favouredness favouring/SMY favourite/UMS favouritism/MS Fawcett/M Fawkes Fawlty fawn/SRkDGM fax/SGMD fay/SM Fayette/M Fayetteville faze/DGS façade/SM faïence/S FBI/M FCC FDA fealty/SM fear/6MpGDjS fearful/TP fearfulness/S fearless/PY fearlessness/S fearsome/PY feasibilities feasibility's feasibility/I feasible/PY feasibly/I feast/RDMGS feat/SCM feather-bed/GD feather-bedding/M feather-brain/MD feather-edge feather-head/D feather-light feather-stitch feather/drpSZM featherback/S feathered/U feathering/M Featherstone/M featherweight/SM feathery/T feature's/a feature/DMGSp featurette/S Feb febrifuge febrile febrility February/SM feckless/YP fecund/ng fecundate/SDG fecundation/M fecundity/SM fed-up fed/Ufc federal/q-Q83Y federalism/MS federalist federate/FNGnSD federation/MF federative/Y fedora/MS Feds fee/GMYSd feeble-minded feeble/TPY feebleness/S feed/GRS feedback/SM feeding/M feeds/c feedstock feedstuffs feel/GkRSJ feeling/PM feelingly/U feet/M feign/RGSD feigned/U feijoada feint/SDMG Feistel/M feisty/T Felder Feldman feldspar/SM Felicia felicitate/DGSNn felicitation/M felicitous/YP felicitously/I felicity/ISM feline/YS Felipe Felix/M Felixstowe/M fell/GSTD fellah fellahin fellate fellatio/MS fellator fellow-traveller/MS fellow/MS fellowship/SM felon/SM felonious/PY felony/SM felt-tip/S felt/GSD Feltham felting/M fem female/PSM femaleness/S feminine/PYS femininity/SM feminise/nSGD feminism/MS feminist/SM feminize/nSNGD femme fatale femme/S femmes fatales femoral femtocell femtosecond/S femur/MS fen/MS fence/RSDMJG fenced/U fencepost/M fences/C fencing/M fend/CGDRS fenestration/CSM Fenian/S Fenianism Fenimore/M fenland/SM Fenn/M fennec fennel/SM fentanyl Fenton/M fenugreek Fenwick fer/KLFC feral Ferber/M ferberite Ferdinand feretory/S Fergus Ferguson/M Fermanagh/M Fermat/M ferment/nDNG fermentation/M fermenter Fermi fermion/MS fermionic fermium/M fern/MZS Fernandes/M Fernandez/M Fernando/M fernbird/S fernbrake fernery/M Fernhout ferny/T ferocious/YP ferociousness/S ferocity/SM ferox Ferrari/MS Ferreira ferret/rdSM ferricyanide ferriferous ferrimagnet ferrimagnetic ferrimagnetism Ferris ferrite/MS ferritic ferritin ferro ferrocene/S ferroconcrete ferroelectric/S ferroelectricity ferromagnet/MW ferromagnetism ferrous ferruginous ferrule/DMSG ferry/SGmWDM Ferrybank ferryboat/MS fertile/Ps-Q89qY fertility/ISM ferule/SDGM fervency/SM fervent/Y fervid/PY fervour/MS fescue/S fess's fess/SF festal/Y fester/IS festered festering festival/MS festive/YP festiveness/S festivity/SM festoon/SMGD feta/MS fetal fetch/DRkSG fetid fetidly fetidness fetish/M3S fetishism/MS fetishist/W fetlock/MS fetter's fetter/USd fettle/SDG fettling/M fettuccine fettucine fettucini fetus/S feud/DMSoG feudal feudalism/SM feudatory/M fever/SdM feverfew feverish/YP feverishness/S few/TP fewness/S fey/T fez/MD fezzes ff Fi FIA fiancé/SM fiancée/MS Fianna/M fiasco/SM fiat/MS fib/DRSG Fibonacci/M fibre/MSDp fibreboard/SM fibrefill/S fibreglass/M fibrescope/S fibril/MnSN fibrillate/SGD fibrillation/M fibrin/SM fibrinogen fibroblast/MS fibrocartilage fibrocystic fibrogenesis fibroid/S fibrolamellar fibromuscular fibroses fibrosis/M fibrous/PY fibula/M fibulae fibular fiche/SM fichu/SM Ficicchia/M fickle/PT fickleness/S fiction/MSOo fictional/Q8q- fictitious/YP fictive/Y ficus fiddle/RGMJDS fiddleback fiddlestick/SM fiddly/T fideism fideist/S fideistic Fidel/M Fidelio/M fidelity/IMS Fidgen fidget/SdZ fiducial/Y fiduciary/MS fie/y fief/MS fiefdom/S field/SeRIM fieldcraft fielded fieldfare/S fielding Fielding/M fieldstone/M fieldwork/SMR fiend/MS fiendish/PY fierce/TPY fierceness/S fieriness/S fiery/TYP fiesta/MS Fifa/M Fife/M fife/RSDMG FIFO fifteen/SHM fifth-generation fifth/Y fifty-eight/H fifty-fifty fifty-first/S fifty-five/H fifty-four/H fifty-nine/H fifty-one fifty-onefold fifty-second/S fifty-seven/H fifty-six/H fifty-three/H fifty-two fifty-twofold fifty/HMS fig/LMDGS Figaro figbird/S figgy/T fight/RSJG fightback/S fighter-bomber/S fighter/IMS fighting/IS fights/e figural figuration/MK4F figurations/4 figurative/PY figure's figure/EG4KSFD figurehead/SM figurer/SMF figurine/MS figuring/S Fiji/M Fijian/SM filament/DSM filamentary filamentous filariasis filbert/MS filch/DSG file's file/CaSAGD filename/S filer/CSM filesize/S filespace filesystem/S filet's filgrastim filial/UY filibuster/drSM Filiep filigree/GMS filing/S Filioque Filipino/S fill/JDRYGS7 filled/cAU fillet/SdM filleting/M filling/M fillip/MS Fillmore fills/Ac filly/MS film-going film-maker/SM film-making film-strip/MS film/ZS2DMG filmdom/M filmgoer/S filmic filminess/S filming/M filmography/S filmset/GR filmstrip/S filmy/TP filopodia/O filopodium filter-tipped filter/7SrndMN filtered/U filth/2ZSMz filthiness/S filthy/GTDP filtrate's filtrate/IGDNnS filtration/MI fin/DZGowMdS finable finagle/RSGD final/Q83q-S finale/M3S finality/SM finance's finance/ASGD financial/YS financier/SDGM financing/S finch/SM find/JRGS7 findable/U finding/M fine's fine-grained fine-tune/SDG fine/CFSDAG finely fineness/SM finer/FCA finery/MSA finespun finesse/MS finest finger-plate finger/prdSMJ fingerboard/SM fingering/M fingerling/MS fingermarks fingernail/MS fingerpick/SGD fingerprint/DGSM fingertip/MS finial/SM finickiness/S finicky/T fining/M finis/SM finish/ASGD finished/U finisher/SM finishing/S finite/CPYI finites Fink/M Finland/M Finlayson/M Finley/M Finn/MS Finnegan Finnish finny/T Finsbury/M Fiona/M Fionnan fiord/MS fir/rdS fire's fire-break/SM fire-control fire-eater fire-fighter/SM fire-guard/M fire-hose/MS fire-lighter/S fire-storm/MS fire-trap/SM fire-walker/S fire-walking fire-water fire/aSGD firearm/SM fireback/S fireball/SM fireballer fireballing firebase fireblight firebomb/DMGS firebox/MS firebrand/SM firebrat/S firebreak/S firebrick/SM firebug/S firecracker/MS firecrest/S fired/U firedamp/SM firedog/S firefight/SG firefighter/S firefish/S firefly/SM Firefox/M fireguard/S fireless firelight/M firelighter/S firelit firelock/S fireman/M firemen/M firepit fireplace/MS firepower/M fireproof/GD fireship/S fireside/M Firestone firestorm/S firewall/SDGM fireweed FireWire firewood/M firework/MS firing/MS firkin/M firm's firm/FDGS firmament/SM firmer firmest firmly/I firmness/SM firmware/SM firry first-aid first-class first-day first-floor first-hand first-name first-rate first-strike first/SY firstborn/SM firth/MS Fis fiscal/Y Fischer/M fish-bowl/MS fish-hook/SM fish-meal fish-pond/SM fish-tanks fish/BDRZGM2zyS fishbowl fishcake/S fished/c Fisher/M fisher/m fisherwoman fisherwomen fishery/SM fisheye Fishguard/M fishiness/S fishing/M Fishkill fishlike fishmeal fishmonger/SM fishnet/SM fishplate/S fishtail/DMSG fishwife/M fishwives fishy/PT Fisichella Fisk Fiske/M fissile fissility fission/7SMDG fissionable/S fissure/GDSM fist/DMGS6 fistfight/MS fistful/MS fisticuffs fistula/MS fistulous fit's/Aea fit/RPTJSG6YDjM Fitch Fitchburg fitful/P fitfulness/S fitment/S fitness/S fits/Aae Fitt/M fitted/e fitter/eMS fitting/PY fittingly/U Fitzgerald/M Fitzpatrick Fitzroy Fitzwilliam five-a-side five-finger five-fold five-spice five-year five/SHM fiver/M fivesome fivestones fix/KDS4G fixable fixate/DSnVGN fixatifs fixation/M fixative/S fixed-wing fixed/PY fixer/SM fixes/I fixigena fixigenae fixing/MS fixity/MS fixture/MS fizz/ZGSD fizzer/M fizzle/GDS fizzy/T fjord/SM fl. flab/ZSz2M flabbergast/GkSD flabbiness/S flabby/TP FLAC/M flaccid/Y flaccidity/SM flack/SDMG flag-waving flag/mDGMJS flagella/nM flagellar flagellate/DSG flagellation/M flagellum/M flagging's flagging/YU flagitious/YP Flagler/M flagon/SM flagpole/SM flagrancy flagrant/Y flagship/SM flagstaff/SM flagstone/SM flagtail flail/GSMD flair/SM flak/dSM flake/Z2MS flaker/M flaky/T flamboyance/MZS flamboyancy/SM flamboyant/Y flambé/GSD flame-proof/GD flame-thrower/MS flame/pGZRSMDkJ flamed/I flamelike flamen/M flamenco/SM flameout/S flameproof flamer/IM flames/I flamethrower/S flaming/I flamingo/SM flamingoes flammability/ISM flammable/IS flan/MS Flanagan Flanders Flandrian flange/DMGS flank's flank/eSDG flanker/SM flannel/DGMS flannelette/MS flap/SGDRM flapjack/MS flappy/T flaps/M flare-up/S flare/DGkS flarepath flash-pan flash/MDRZS2GzJ flashback/MS flashbulb/SM flashcard/S flashcube/SM flashgun/S flashiness/S flashing/M flashover/S flashpoint/S flashy/UTP flask/SM flasket flat-earther/S flat-footed/Y flat-footedness flat-head/M flat-top/S flat-weave flat-woven flat/PTSYGMD flatbed flatboat/S flatbread/S flatbug flatcar/SM flatfeet flatfish/SM flatfoot/MS Flathead/S flathead/S flatland/S flatlander flatmate/SM flatness/S flatten/Srd flatter/SdkZr flattering/UY flattery/SM flattest/M flattish flattop/SM Flattr flatulence/SM flatulent/Y flatus/SM flatware/MS flatworm/SM Flaubert/M flaunching flaunt/DkGS flaunter flaunty flautist/SM flavin/S flavine flavivirus/S flavone/S flavonoid/S flavoprotein/S flavour/RM6DGJSp flavoured/U flavouring/M flavoursome flaw/DGMpS flawless/PY flawlessness/S flax/MS flaxen flaxseed/M flay/DRGS flaysome flea/MS fleabag/SM fleabites fleapit/S fleawort/M fleck/GDSM flecker flection Fledermaus fledge/DSG fledged/U fledgeling fledgling/SM flee/DGS fleece/RDMGZS fleeciness/S fleecy/PT fleer fleet/DkGSTYPM fleeting/P fleetingly/M fleetingness/S fleetness/S Fleishman/M Fleming/S Flemish flesh/pY2MDGZS flesher/M fleshly/T fleshpot/SM fleshy/TP Fletch fletcher/MS fleuron/S flew/c flews/M flex's/A flex/SGDMb flexes/A flexibility/MIS flexible/IY flexibly/I flexicuffs flexion flexitarian/S flexitime/M flexural flexure/M flibbertigibbet/SM flick/DGS flicker/dSkZ Flickr/M flier/SM fliest flight's/cK flight/GSZ2pMD flightiness/S flightpath flights/c flighty/TP flimflam/SDGM flimsiness/S flimsy/TPY flinch/DSG flincher/M flinching/U fling/GSM flinger/M flint/ZSGMD2p flintlock/SM Flintoff/M Flintshire/M Flintstones flinty/TP flip-flop/SGD flip/RSTGD flippable flippancy/SM flippant/Y flirt/NDGZSn flirtation/M flirtatious/PY flirtatiousness/S flirter flit/SDG flitter/Sd float/DGZSRN floating-point flocculant/S flocculate/DSNG flocculation/M flocculence flocculent flock/DMJGS flockmaster Flodden floe/SM flog/DSGJR flogging/M flood/SGMD flooder floodgate/MS floodlight/GSM floodlit floodplain/S floodwater/S floor/SGJDM floorboard/SM floorcloth/S floorer/M flooring/M floorman floormen floorpan floorspace floozy/SM flop/2DGSzZ flopper/M floppiness/S floppy/TSPM flora/MSo floral/S Florence/M Florentine Flores florescence/MIS florescent/I floret/SM floriculture/O3 florid/PY Florida/M Floridian/S floridness/S floriferous florilegia florilegium/S florin/SM Florio/M florist/SM floristic/S floristically Floréal floss/DGMZS flossy/TS flotation/SM flotilla/MS flotsam/SM Floud/M flounce/DGSZ flouncing/M flouncy/T flounder/dS flour/DMGZS flourish/SDkG flourisher/M floury/T flout/GRDS flow/kRGDS flowchart/GS flowed/c flower/CSd flowerbed/MS floweriness/S flowerless flowerpecker/S flowerpot/MS flowery/PT flowing/c flown/c flows/Ifec flowstone Floyd/M flt flu/M fluctuant fluctuate/nGDSN fluctuation/M flue-cured flue/SM fluency/SM fluent/YF fluff/DMZSG2 fluffiness/S fluffy/PT fluid/Q8s9PSYM fluidity/SM fluke/SGDMZ fluky/T flume/GMSD flummox/DSG flung flunk/DZGS flunker flunkey's flunky/SM fluoresce/DGS fluorescein fluorescence/SM fluorescent/S fluorescer fluoridate/GSD fluoridation/M fluoride/nMS fluorinated fluorine/SM fluorite/MS fluorocarbon/MS fluorochrome/S fluorometer/S fluorometric fluorometrically fluorometry fluoropolymer fluoroquinolone fluoroscope/SGDMW fluoroscopy fluoxetine fluphenazine flurry/GSDM flush/7DPTGS fluster/dS flute/GMSZDJ flutelike fluticasone fluting/M flutter/rSZd fluvial flux's/I flux/DGAS fluxes/I fluxgate fluxion/S fluxional FLV fly-by fly-by-night fly-by-wire fly-bys fly-drive fly-fishing fly-paper/M fly/cGS flyable flyaway flyback flyblow flyblown flybridge flyby/M flybys flycatcher/SM flyer/SM flyest flyhalf flyleaf/M flyleaves flyman flymen flyness Flynn flyover/MS flypaper/SM flypast/M flysheet/SM flyspeck/SD flyswatter/MS flyweight/SM flywheel/MS FM fo'c's'le fo'c'sle foal/MGSD foam/DZSM2G foamer foaminess/S foamy/TP fob/DSMG focaccia focal/FY foci/M focus's focus/CdGDAS focusable focused/U focuser/M focussed/U focusses/CA fodder/SdM foe/SM foetal foeticide foetid/Y foetidness foetus/MS fog's fog/CGDS fogbound fogey Fogg/M fogginess/S foggy/TPY foghorn/SM fogy/MS fogydom fogyish foible/MS foil/SDG foist/DSG Fokker fol/Y folate fold-out/SM fold/BJGRSD foldaway foldback folded/UA folds/AU Foley/M foliaceous foliage/SMD foliar foliate/CGSnDN foliation/CM folic folio/SGMD folk-dance/MGS folk-singer/S folk-song/S folk-tale/S folk-ways folk/SM Folkestone/M folkie/SM folkish folklife folklike folklore/3WSM folkloristic folks/Z2 folksiness/S folksy/TP folky/TP foll follically follicle/SM follicular follow-on/S follow-up/SM follow/DGJRS7 followee/S folly/MS Folsom Folstone/M foment/RGSnDN fomentation/M fond/TPMY Fonda fondant/MS fondle/GDS fondler/M fondness/S fondue/MS font/S Fontaine/M Fontainebleau Fontana fontanelle/SM Fontenoy foo food/SM foodgrain/S foodie/S foodless foodshed foodstuff/MS foodway/S foodwise fool/GDMS foolery/SM foolhardiness/S foolhardy/TPY foolish/TPY foolishness/S foolproof foolscap/MS foot/GSRDJhipM footage/SM football/RDSGM footboard/S footbrake/S footbridge/SM Foote footfall/SM footgear foothill/SM foothold/MS footie footing/M footle footlights footling footlocker/SM footloose footman/M footmark/S footmen/M footnote/GDSM footpad/SM footpath/MS footplate/MS footprint/SM footrace/S footrest/MS footsie/MS footslog/SGDR footsoldier/SM footsore footstep/MS footstool/SM footwear/M footwork/MS footy foozle/SGD fop/GSMD foppery/SM foppish/PY foppishness/S for fora forage/RDGSM foramen foramina foraminifer/S foraminifera foraminiferal foraminiferan/S foraminiferous foray/DSGM forayer/M forb/S forbade forbear/MSG forbearance/MS forbearer/M Forbes forbid/GS forbidden forbidding/PY forbore forborne Forby/M force-fed force-feed/G force/Dh6jGbMS forced/U forcefield/SM forceful/P forcefulness/S forcemeat forceps/M forcer/M forcible/YP ford/SDGM7 Fordham fore/5m forearm/GMDS forebear/SM forebode/DSGJk foreboding/PM forecast/SRGD forecastle/MS foreclose/SGD foreclosure/MS forecourt/SM foredawn foredeck/S foredoom/GSD foredune/S forefather/SM forefeet forefinger/MS forefoot/M forefront/MS foregather foregathered forego/GJ foregoer/M foregoes foregone foreground/GMSD foregut/S forehand/SD forehead/SM forehock foreign/PRY foreignness/S forejudge foreknew foreknow/SG foreknowledge/MS foreknown foreland/S foreleg/SM forelimb/SM forelock/DGSM foremast/SM foremost forename/DSM forenoon/MS forensic/SY forensics/M foreordain/GDS forepart/S forepaws forepeak/S forepeople foreperson/S foreplay/SM forequarters forerunner/MS foresail/SM foresaw foresee/BGRS foreseeable/UY foreseen/U foreshadow/GSD foresheet/S foreshock/S foreshore/SM foreshorten/dS foresight/SMiDh foresighted/P foresightedness/S foreskin/MS forest/RMDSyNnG forestall/GRSD forestation/CMA forestay forested/AC forester/CMS forestland/S forestry/SM forests/AC foretaste/MGSD foretell/GRS forethought/MS foretold foretop/S foretriangle/S forever foreverness forewarn/SDJG forewarner/M forewent forewing/S foreword/SM forfeit/DRMSG forfeiture/MS forfend/SGD forgather/dS forgave forge's forge/SGAD forger/SZM forgery/SM forget-me-not/S forget/jGS6 forgetful/P forgetfulness/S forgettable/YU forgettably/U forging/MS forgivably/U forgive/RPlS7kG forgiven/U forgiveness/S forgiving/P forgo/RG forgoes forgone forgot forgotten/U forjudge fork/D6GSM forker forkful/S forklift/GDMS forktail/S forlorn/TPY form's form/FoSIGNnD forma/S formability/M formae formal/qsQ89P3- formaldehyde/SM formalin/M formalism/MS formalist/W formality/SMI formant/MIS format/RMGuSDvV formate/MS formation/OMFIC4S formative/PIY formatives formats/A formatted/U formed/K4CAU former/SC4FAI formerly formfitting formic Formica formicaria formicarium formication formidable/PY forming/K4 formless/PY formlessness/S Formosa Formosan forms/AKC4 formula/MSn formulae/W formularise/SGD formulate/DAGSNn formulated/U formulation/AM formulator/SM fornicate/SNDGn fornication/M fornicator/SM Forrest/M Forrester forsake/GS forsaken forseeability forsook forsooth forspeak Forster/M forswear/GS forswore forsworn forsythia/MS Fort-de-France/M fort/MZS forte/MS forth forthcoming/U forthright/PY forthrightness/S forthwith fortification/MS fortified/U fortifier/SM fortify/DAGS fortiori fortissimo/S fortitude/MS fortnight/MYS fortnightly/S Fortran/M fortress/DMGS fortuitous/YP fortuitousness/S fortuity/SM fortunate/UYS fortunateness/M fortune-teller/SM fortune-telling/SM fortune/SaM fortuned fortuning forty-eight/H forty-first/S forty-five/H forty-four/H forty-nine/H forty-one forty-onefold forty-second/S forty-seven/H forty-six/H forty-three/H forty-two forty-twofold forty/HMS forum/MS forward-looking forward/DYSTPRG forwarding/M forwardness/S forwent Foss FOSS fossa FOSSer/S fossil/Q-SMq8 fossiliferous fossorial Foster's foster/dS fosterer/M Foucault fought/e foul-mouth/D foul-up/S foul/DTPSGY foulard/SM foulness/S fouls/M found/DRGynS foundation/Mo foundational founded/FU founder/d founding/F foundling/SM foundry/SM founds/F fount/MS fountain-head/SM fountain-pen/MS fountain/SDMG fountainhead/S four-dimensional four-eyes four-in-hand four-leaved four-letter four-poster/MS four-square four-wheel four/HSM fourchette Fourier/M fourpence/M fourpenny fourscore/S foursome/MS foursquare fourteen/HSM fourth/Y fovea/M foveae foveal foveate fowl-run fowl/DMGS fowler/M fowling/M fox-hunting fox/MDzZG2S Foxe/M foxed/e foxes/e foxglove/SM foxhole/MS foxhound/MS foxiness/S foxing/M foxtail/M foxtrot/DMGS foxy/TP foyer/MS fps FPU fr fracas/SM frack/SGDR fractal/SM fraction's/IA fraction/DNoSGM fractional fractionate/DG fractionation/M fractions/IA fractious/PY fractiousness/S fracture/DSMG fragile/Y fragility/MS fragment/NGMSnD fragmentary/PY fragmentation/M fragrance/SM fragrant/Y frail/PTY frailness/S frailty/SM Frakes/M Fraktur frame/7pRMSDG framed/U framework/SM framing/M Framingham/M Fran/M franc/SM France/SM Francesca/M Francesco/M franchise's franchise/ESDG franchisee/MS franchiser/SM franchisor/SM Franchitti Francine/M Francis/M Francisca/M Franciscan/S Francisco/M francium/M Franck Franco francolin/S Francophile/S francophone/MS Francophonia Francophonie frangibility/SM frangible Frank's frank/PYSDTG Frankel/M Frankenstein franker/M Frankford Frankfort Frankfurt frankfurter/MS Frankie frankincense/MS Frankish franklin/M frankness/S Franks/M frantic/YP franticly Franz François Françoise/M frap/GSD frappé Fraser/M frater fraternal/Y fraternalism/M fraternise/RnSGD fraternity/SMF fraternize/NnSG fraternizer/M fratricidal fratricide/SM Frau fraud's fraud/CS fraudster/S fraudulence/S fraudulent/Y fraudulentness fraught fray's fray/CDGS Frazer Frazier frazzle/GDS freak-out freak/GSMDZ freakily freakiness freakish/PY freakishness/S freaky/T freckle/GMDSY freckly/T Fred/ZM Freda Freddie Freddy/M Frederic/M Frederica/M Frederick/S Frederickson/M Fredericton/M Frederik/M Frederiksen/M Fredrick Fredrickson Fredricton free-born free-fall/G free-for-all free-form free-handed/Y free-handeness free-kick free-living free-market free-range free-standing free-up free-wheel/DGS free/mTSYPdG freebase/DSG freebie/SM freeboard/S freeboot/RSGD freeborn FreeBSD freedman/M freedmen/M freedom/SM freegan/S freehand/Dh freehold/RSM freelance/SDRGM freeload/SGDR Freemason/SM freemasonry freemium Freeport freeridden freeride/SG freerode freesia/S freestone/SM freestyle/SMGDR freetail freethinker/MS freethinking/S Freetown/M freeware freewheel/SDG freewheeler freewill freezable freeze-dried freeze-frame freeze/RSG freezes/AU freezing/AU freezingly Freiberger/M freight/SMRDG French/m5M frenetic/Y Frentzen frenzy/DMShG freon/S freq frequency/MSI frequent/TDRYSGP frequentative frequented/U frequently/I fresco/DGMS frescoes fresh-faced fresh/TPRmY freshen/dSr fresher/AMS freshet/SM freshness/S freshwater/MS Fresnel Fresno fret/jD6SG fretboard fretful/P fretfulness/S fretsaw/S fretwork/SM Freud/M Freudian/S Freudianism Frey Freya/M Fri friable/P friar/YZSM friarbird/S friary/MS fricassee/dGSM frication/M fricative/MS Frick friction/oMSp frictional frictionless/Y Friday/SM fridge/SM fried/A Friedman Friedrich/M Friel/M friend/DGYMpS friendless/P friendlies friendlily friendliness/SM friendly/TU friends' friendship/MS frier's fries/M frieze/MGSD frig/SJGD frigate/SM fright/DGMjS6 frighten/Sdk frighteners frightful/P frightfulness/S frigid/PY Frigidaire frigidaria frigidarium frigidity/SM frigidness/S frill/GSMDY frilly/TS Frimley/M fringe's fringe/IDGS frippery/SM Frisbee Frisco Frisian frisk/ZGSDz2 frisker/M friskiness/S frisky/TP frisson/M Frith/M fritillaria/S fritillary/S Frito fritter/dS fritterer/M Fritz frivolity/SM frivolous/PY frivolousness/S frizz/GYSDZ Frizzell/M frizzle/DGS frizzly/T frizzy/T fro/S Frobisher frock's frock-coat/S frock/CGSDU frocking/M Frodo/M froed frog/DGmSM frogfish/S froghopper/S frogmarched frogspawn froid froing frolic/SRDMG frolicsome from frond/SM front's front-line front-page front/FDGS frontage/SM frontal/YS frontbencher/S frontend/S fronter/F frontier/SM frontiers/m frontispiece/MS frontlet/S frontman frontmen frontotemporal frontrunner/MS frontrunning frontside frontward/S frontwoman frontwomen frost's frost/CSGD frostbit frostbite/MGS frostbiting/M frostbitten frostiness/S frosting/MS frosty/TPY froth/ZSD2MG frothiness/S frothy/TP froufrou/SM froward/P frowardness/S frown/DGSk frowner/M frowziness/S frowzy/TPY Froyd/M froze/AU frozen/PY fructify/DSG fructose/SM Fruehauf/M frugal/Y frugality/MS frugivore/S frugivorous fruit/X6jNdpSM fruitarian/S fruitarianism fruitcake/MS fruiterer/M fruitful/TP fruitfulness/U fruitfulnesses fruitiness/S fruition/M fruitless/YP fruitlessness/S fruitlet/S fruity/PT frump/ZSM frumpish frumpy/T Frunze/M frustrate/hNDSknG frustrater/M frustration/M frustum/MS fruticulture fry/GSND7V Frye/M fryer/SM Fräulein Frédéric/M fs FSA FSF/M ft/C FTC ftp FTP fu Fuchs fuchsia/SM fuck/DRSMGJB! fuckery/S! fuckhead/S! fuckship/! fuckwit/S! fucoxanthin FUD fuddle/GDS fudge/MSDG fuehrer/SM fuel-cell fuel/MRGDS fuels/A fugal fugitive/PSYM fugue/GSDM fuhrer/S Fuji Fujio/M Fujitsu/M Fukuoka Fukuyama Fulani fulcrum/SM fulfil/DLGS fulfilled/U fulfiller Fulford Fulghum/M Fulham/M full-blooded full-blown full-bodied full-dress full-frontal full-grown full-length full-page full-scale full-time full-timer/S full-wave full/c fullback/SMG fuller/dSM Fullerton fullest fulling fullish fullness/SM fullstop/S fullword/MS fully fully-fledged fulmar/S fulminant fulminate/SNDGn fulmination/M fulness's fulsome/YP fulsomeness/S Fulton/M fumage fumarole/S fumble/GRkSJD fume/GkDZS fumigant/MS fumigate/SGDnN fumigation/M fumigator/MS fumy/T fun-loving fun/Mz2Z Funafuti/M function/SMyGopD functional functionalism/M functionalist/S functionalistic functionality/S functionary/MS functor/SM fund-raiser/SM fund-raising fund/ASDGM fundamental/SY3 fundamentalism/MS fundamentalist funded/fU funder/SM fundholder/S fundholding fundi funding/f fundraise/SRG fundus Fundy/M funebrial funeral/MS funerary funereal/Y funfair/MS fungal/S fungi/M fungible/M fungicidal fungicide/SM fungiform fungoid/S fungous fungus/MS funicular/SM funk/S2DGMZ funkiness/S funky/T funnel/MDGS funniness/S funny/TSP fur/GM2JZSD furacious furan/S furball furbelow/DGMS furbish/ASGD furbisher/MS furcula furculae furcular furious/YP furiouser Furkan/M furl/UGDS furlong/MS furlough/SM furnace/MS Furness/M furnish/RSGDJ furnished/UA furnishes/A furnishing/M furniture/SM furore/MS furriness/S furring/M furrow/SDMG furry/TRP further/drS furtherance/SM furtherest furthermore furthermost furthest furtive/YP furtiveness/S furunculosis fury/MS furze/SM fuscous fuse's/A fuse/SIX4NGFD fusebox/S fused/CA fusee/MS fusel fuselage/SM fuses/CA fuseway/S fusibility/SM fusible fusiform fusilier/SM fusillade/SMDG fusing/CA fusion/IM4F fusionism fusionist/S fuss/SD2ZMGz fusser/M fussiness/S fusspot/SM fussy/PT fustian/MS fustiness/S fusty/TP fut futile/PY futility/SM futon/S Futuna/M future/M3S futurism/MS futurist/W futuristic/S futurity/SM futurology/3SM fuzz/DZMGz2S fuzziness/S fuzzy-wuzzy/S fuzzy/TP fwd FWIW FX FY FYI Fátima fête/SM föhn führer/MS G g's G-string/SM G-suit g/7 G2B G7 G8 Ga/y gab/GZSD2 gabapentin gabardine/MS Gabarone gabbiness/S gabble/GDS gabby/T gaberdine/M gable/SDGM gabler Gabon/M Gabor/M Gaborone/M Gabriel Gabriele/M Gabrielle gad/RSDG gadabout/MS gadfly/MS gadget/SMy gadgeteer/S gadgetry/SM gadgety gadolinium/M Gadsden Gaea/M Gael/W Gaelic-speaking Gaeltacht gaff/RMSGD gaffe/MS gag/RDGS gaga Gagarin gage/SM gaggle/SGD Gagnon/M gagwriter/S Gaia/M Gaian/S gaiety/SM Gail gaily gain/ASDG gainer/SM Gaines Gainesville gainful/YP gainly gainsaid gainsay/RGS Gainsborough gait/SRM gaitered Gaithersburg gal/GkDM gala/SM galactagogue/S galactic/Y Galactica/M galactose Galahad galangal galantine/S Galapagos Galatia Galatian/S Galaxy galaxy/SM Galbraith gale's gale/AS galea galeae galen Galen's galena/M galette/S Galicia Galician/S Galilean Galilee Galilei/M Galileo/M gall/SM Gallagher/M gallant/SGDY gallantly/U gallantry/SM gallate gallberry/S gallbladder/MS galleon/SM galleria/S gallery/DSM galley/MS Gallic Gallicism gallimaufry/MS Gallipoli gallium/M gallivant/DGS gallon/SM gallonage/M gallop/Srd Galloway/M gallows/M gallstone/MS Gallup Galois galoot/SM Galoppini galore galosh/S galumph/SGD galvanic galvanise/nSDG galvanism/MS galvanize/NnSDG galvanometer/MSW Galveston Galvin/M Galway/M gamba/SM Gambia/M Gambian/S gambit/MS gamble/RDSG gambol/SGD game/JYPTSMGRZD gamecock/SM gamefowl gamekeeper/MS gamekeeping gamelan gameness/S gamepad/S gameplay gamesman gamesmanship/MS gamesmen gamest/R gamete/WMS gametogenesis gametogenic gametogeny gametophyte/W gamgee gamification gamify/SGD gamin/SM gamine/SM gaminess/S gaming/M gamma/MS gammon/dMS gamut/SM gamy/PT Gandalf/M gander/dMS Gandhi/M Gandhinagar gang/DMGSY gangboard ganger/M Ganges gangland/MS ganglia/M gangling ganglion/MW gangmaster/S gangplank/SM gangrene/DSMG gangrenous gangsta/S gangster/SM gangsterism gangway/MS ganja gannet/MS gantry/MS Gantt Ganymede GAO gaol/RDGMS gap-toothed gap/dkSMD gape/S gaper/MS gapping garage/GDSM garb/DMSG garbage/M garble/GDS garbler/M Garbo/M Garcia/M Garda Gardai garde garden/dSrM gardenia/SM gardening/M Gardiner/M Gardner/M Gareth/M Garfield/M garfish/S Garfunkel/M gargantuan gargle/DSG gargoyle/DSM Garibaldi/M garibaldi/S garish/PY garishness/S garland/SDMG garlic/DSGZM garment's/f garment/DSMG garments/f Garner/M garner/Sd garnet/SM Garnett garnierite garnish/LSDG garnishee/MSd garniture/S garotte/SMDG garret/MS Garrett Garrick garrison/dSM Garron/M garrotte/MRGSD garrulity/MS garrulous/PY garrulousness/S Garry Garten/M garter/dSM Garth/M Gartner/M garum Garvey Gary/M garçon/SM gas's gas-cooled gas-permeable gas/FC gasbag/SM Gascoigne/M Gascon/S Gascoyne-Cecil/M gaseous/YP gases gash/DMGTS gasholder/S gasification/M gasify/SRnGDN gasket/SM gaslight/GDMS gaslit gasman gasmen gasohol/S gasoline/M gasometer/MS gasp/SRDGk Gaspar gassed gasser/SM gasses gassing/CMS gassy/PT Gaston gastric gastritides gastritis/SM gastrocnemii gastrocnemius gastrocolic gastroenteritides gastroenteritis/M gastroenterological gastroenterologist/S gastroenterology gastrointestinal gastronome/Z1SwM gastronomy/MWS gastropod/SM Gastropoda gastropub/S gastroscope/SW gastroscopy gastrostomy/S gastrula gastrulae gastrulation gasworks/M gate/SMDG gateau/SM gatecrash/DRSG gatehouse/SM gatekeeper/MS gateleg/D gatepost/MS Gates/M Gateshead/M gateway/MS gather/drSJ gathered/AI gathering/M gathers/A Gatlinburg Gatling/S Gatsby Gatwick/M gauche/TPY gaucheness/S gaucherie/MS gaucho/MS gaudiness/S gaudy/TYP gauge/GaSD gaugeable gauger/M Gauguin Gaul Gaulish Gaulle/M gaunt/PYT gauntlet/SdM gauntness/S Gaurav/M gauss/MS gausses/C Gaussian Gautier gauze/DMZSG gauziness/S gauzy/TP gave gavel/DSMG Gavin/M gavotte/SMDG Gavron/M Gawd gawd gawk/D2MzZSG gawker gawkiness/S gawky/PT gawp/SGDR gay/TPS Gaye/M Gaylord gayness/S Gayton/M Gaza gazania/S gaze/RGSD gazebo/MS gazelle/SM gazette/DGMS gazetteer/SM gazillion/S gazpacho/SM gazump/SGD gazunder/Sd Gazza GB Gb Gbit GBP Gbps GCC/M GCSE/MS GDP Ge gear/DGSJM gearbox/MS gearhead/S gearing/M gearwheel/MS Geary gecko/MS geckoes geddit gee-gee/SM gee/dGMS geek/GDS geekdom geekery geekish geekspeak geeky/TP geese/M geez geezer/MS GeForce Gehenna Geiger geisha/M geitonogamous geitonogamy gel/DMGS gelable gelatin/MS gelatine gelatinous/PY gelcap geld/SGJD gelding/M gelid gelignite/MS Gellibrand/M gem/SZMDG Gemini/S Geminian gemlike gemminess gemmology/3M gemstone/SM gen/GD gendarme/SM gender-fluid gender/MSp gendered genderqueer/S gene/SM genealogy/w31MS genera/onWM1Vv general-purpose general/Q8Ptq93+s-SM generalisable/Y generalise/cDSG generalissimo/SM generalist generality/SM generalize/l generalship/SM generate/AnVCGDSN generation/CMA generational/Y generative/AY generator/AMS generic/S genericise/SGD genericness generosity/SM generous/YP generously/U generousness/S genesis Genet genet/S genetic/3SY geneticise geneticism geneticist geneticize genetics/M Geneva/M Genevieve/M Genghis genial/PU geniality/FSM genially/F geniculate genie/oSM genii/M genista/S genistein genisteine genital/YF genitalia genitals genitive/SM genitourinary genius/MS genlock Genoa/M genocidal genocide/SM genome/SM genomic/S genotoxic genotype/MS genre/MS gent/AMS gentamicin genteel/PY genteelest genteelism genteelness/S gentian/SM gentile/S gentility/SM gentle/5PYmTGD gentlefolk gentleman/Y gentlemanliness/M gentlemanly/U gentleness/S gentrification/M gentrify/nSDGN gentry/SM genuflect/DGS genuflection/SM genuflector/S genuine/YP genuineness/S genus geobotanical geobotanist/S geobotany geocache/SGDR geocentric/Y geocentricism geocentrism geochemical/Y geochemistry/SM geochronological geochronologist/S geochronology/M geocorona geocoronal geocratic geocyclic geodata geode/SM geodemographic/S geodesic/S geodesy/MS geodetic/S geoduck/S geodynamical geodynamo geoeconomics geoengineering geofencing Geoff/M Geoffrey/M geog geographer/MS geography/SM1Ww geoid geoinformation geolocate geolocation geology/w3WM1S geom geomagnetic/Y geomagnetism/MS geomancer/S geomancy geomantic geomantical geomatic/S geomembrane geometer/wS1MW geometric/S geometrician/M geometry/SM geomorphology/3wM geopark geophysical/Y geophysicist/SM geophysics/M geopolitic/YS geopolitical geopolitics/M Geordi/M Geordie George/SM Georgetown/M georgette Georgette Georgia/M Georgian/S Georgie/M geoscience/S geoscientific geoscientist/S geospatial geostationary geostrategic geostrategy geosynchronous geosyncline/S geotactic geotag/SGD geotaxis geotechnic/S geotechnical geotechnology geotextile/S geothermal/Y geotropic geotropism Geraint/M Gerald Geraldine Geraldton/M geranium/SM Gerard Gerber gerbil/MS Gerhard Gerhart/M geriatric/S geriatrician/S geriatrics/M germ/MS Germain/M German/MSW germander germane germanium/M Germantown Germany/M germicidal germicide/MS germinability germinable germinal/Y germinate/NnDGVvS germination/M germinator germling gerontic gerontocracy/M gerontology/3SMw Gerrit Gerrold/M Gerry/M gerrymander/dS Gershwin Gerstein/M Gertrude gerund/MS gerundive/M Gervase/M Gesher/M gesso gessoes gestalt/M Gestapo gestate/SNxDGn gestation/M gesticulate/VDNSGnv gesticulation/M gestural gesture/SMDG gesundheit get-out/S get-rich-quick get/RSG getaway/SM Gethsemane gettable gettered Getty Gettysburg getup/MS Geurts gewgaw/SM Gewürztraminer geyser/dMS Ghana/M ghastliness/S ghastly/TP ghat/SM Ghaznavid/S ghee Ghent gherkin/MS ghetto/QSDGM ghettoes ghillie/MS ghost-wrote ghost/DGMYS ghostbuster/S ghostlike ghostliness/S ghostly/PT ghostwrite/RGS ghostwritten ghoul/MS ghoulish/PY ghoulishness/S GHQ GHz Gianfranco/M giant/MS giantess/MS giantism giantkiller GiB gibber/Sd gibberish/MS Gibbes/M gibbet/SMd Gibbins/M gibbon/MS gibbosity gibbous/PY Gibbs gibe/GSD giber/M gibibit/S gibibyte/S giblets Gibraltar/M Gibraltarian/S Gibson/M giddiness/S Giddings giddy/PGYTDS Gideon GIF/S Gifford/M Giffuni gift/hGDSMi gifted/PU giftware gig/GMSD gigabit/S gigabyte/S gigacycle/MS gigaflop/S gigahertz/M gigajoule/S giganotosaurus gigantic/PY gigantism gigapixel/S gigaton/S gigatonne/S gigavolt gigawatt/MS giggle/RGDSYk giggly/T Giggs gigolo/SM Gilbert/M Gilbertson Gilchrist/M gild/RJGDS gilding/M Gilead/M Giles gilet/S Gilgamesh gill/MSGD Gillan/M Gillard/M giller Gillespie Gillette Gillian/M Gillibrand/M gillie/SM Gilligan/M Gillingham/M Gillmor/M Gilman/M Gilmartin/M Gilmore/M Gilmour/M gilt-edged gilt/S gimbals gimcrack/S gimcrackery/SM gimlet/MS gimmick/SZMy gimmickry/SM gimp/DMGZS GIMP/M gimpy/T gin/MDSG Gina/M ginger/ZYSdM gingerbread/SM gingerly/P gingham/MS gingiva gingivae gingivitis/MS ginkgo/MS ginkgoes ginmill Ginnie/M Gino/M Ginsberg/M Ginsburg/M ginseng/MS Gioconda Giordano/M Giorgi/M Giorgio Giotto/M Giovanni gipsy/S giraffe/SM Giraud gird/RSDG girdle/DSGM girdler/M girl/SM girlfriend/SM girlfully girlhood/SM girlie/M girlish/PY girlishness/S girly/S giro/MS girt girth/GDSM Girton/M Girvan/M Giselle/M gismo/SM Gissing/M gist/M git/M GitHub Gittoes Giuliani/M Giuseppe/M Giusto give-away/MS give/7RGSk giveaway/S giveback/S given giveth giving/aY gizmo/SM gizzard/SM glabella glabellae glabellar glabrous glacial/Y glaciate/DGSNn glaciation/M glacier/SM glaciology/M3w glaciomarine glacé/DGS glad/DZPGTY gladden/dS glade/MS gladiator/SM gladiatorial gladiola/SM gladioli gladiolus/M gladness/S gladsome/T Gladstone/M Gladwin/M Gladys glair/Z Glaister/M glaive/S glam/SGD Glamorgan/M glamorise/nDRSG glamorize/NnDRSG glamorous/UY glamour/GMDS glance/kDSG gland/MS glanders/M glandes glandular/Y glans/M Glanvill/M glare/kSDG glaring/P Glaser Glasgow/M glasnost glass-blower/S glass-blowing/MS glass-cloth glass-like glass-maker/MS glass/2D6MGZzSp glassful/MS glasshouse/SM glassiness/S glassmaker/S glassmaking glasspaper glassware/MS glasswork/S glasswort/M glassy/PT Glastonbury/M Glaswegian/S glaucoma/MS glaucous glaze/RSJDG glazed/U glazier/SM glazing/M gleam/GSMD glean/DRSGJ gleaning/M Gleason glee/jSM6 gleeful/P gleefulness/S glen/MS Glenda Glendale Glenhead Glenis Glenn/M Glenny/M glenohumeral glenoid glib/TPY glibness/S glide/GSRDJ glim/M glimmer/dJS glimmering/M glimpse/MGRDS glint/DGS gliosis glissandi glissando/MS glissé/S glisten/Sd glister/Sd glitch/ZMS glitter/dSZkJ glitterati glitz/SDGZ glitzy/T gloaming/MS gloat/GkSD gloater/M glob/SM global/3Y globalisation globalise/SGD globalism/S globalist globalization globalize/SGDR globe-like globe-trotting globe/SMD globetrotter/MS globoid globose globular/YP globularity/M globule/SM globulin/SM glocalisation glocalization glochid/S glockenspiel/SM glomerular glomeruli glomerulus gloom/MD2GZSz gloominess/S gloomy/TP gloop/Z Gloria/M glorification/M glorify/RNSGnD glorious/PYI glory/MSGD gloss/DMZGSz2 glossary/SM glossiness/S glossolalia/SM glossopharyngeal glossy/TSP glottal glottalization/M glottis/SM Gloucester/M Gloucestershire/M glove/SRGDMp glow-worm/SM glow/GRDkSM glower/d glowy/T gloxinia/S glucagon glucan/S glucocorticoid/S gluconate glucosamine glucose/MS glucoside/SW glucuronate/S glue-sniffing glue/SRMDGZ glued/U glueing gluier gluiest glum/TYP glume/S glumness/S gluon/MS glut/SMGD glutamate/SM glutamic glutamine glutaraldehyde glutathione gluteal/S glutei gluten/SM gluteus glutinous/PY glutton/SM gluttonous/Y gluttony/SM glyceride/MS glycerinate/DM glycerine/M glycerins glycerol/SM glycerolized/C glycine/M glycogen/MS glycol/SM glycolic glycollic glycolysis glycolytic glycoprotein/S glycoside/S glycosidic glycosuria glycosuric Glyndebourne/M Glynn glyph/MS gm gmail Gmail/M Gmane/M GmbH GMO/S GMT gnarl/GSMD gnash/DGS gnat/MS gnaw/JSGD gnawer/M gnawing/M gneiss/MS gnocchi gnome/MS gnomelike gnomic gnomish gnomon/WS gnostic/S gnosticism GNP GNU/M gnu/MS GnuPG/M go's go-ahead go-between go-kart go-slow go/fGe Goa/M goad/GDMS goal-kick/S goal-line/S goal-mouth/M goal/pSDM goalball goalhanger/S goalie/MS goalkeeper/MS goalkeeping/M goalmouth/S goalpost/S goalscorer/S goalscoring goaltending Goanese goat/SMZ goatee/SMd goatherd/SM goatish goatskin/SM goatsucker/S gob/SGDM gobbet/SM gobble/RDGS gobbledegook/M gobbledygook/S Gobi/M goblet/SM goblin/SM God god-daughter/MS God-fearing God-forsaken god/SMYp godawful godchild/M godchildren goddammit Goddard/M goddess/SM godfather/SdM godforsaken Godfrey/M godhead/S godhood/SM godless/PY godlier/U godlike/P godliness/S godly/PT godmother/MS godparent/MS godsend/MS godson/MS Godspeed Godwin/M godwit/S Godzilla/M goer/SM Goering goes/ef Goethe/M goethite Goff/M Goffman/M goggle-box/SM goggle-eyed goggle/SRDG Gogh/M going/SM goings-on goitre/DMS goitrous gold-plated gold/TSM Golda Goldberg goldbrick/MDRSG golden/PY goldendoodle/S goldeneye/S goldenrod/MS goldenseal/M goldfield/S goldfinch/SM goldfish/SM Goldie/M goldilocks Golding Goldman goldmine/S goldsmith/SM Goldstein/M Goleta/M golf/MRSGD golgotha Golgotha goliath Goliath/M golliwog/SM golly/S gollywog Gomez Gomorrah gonad/SM gonadal gonadotrophin/S gonadotropin/S gondola/MS gondolier/MS Gondwana/M Gondwanaland Gondwanan gone/R gong/SDMG goniometer/Ww goniometry gonna Gonne/M gonococcal gonococci gonococcus gonoduct gonolek/S gonorrhoea/M gonorrhoeal Gonubie Gonville Gonzales Gonzalez goo/ZM Goober good-for-nothing/S good-humoured/Y good-looking good-natured/Y good-oh good-tempered good/YPZS Goodall/M goodbye/MS gooder/S goodhearted goodie/M goodish goodly/TP Goodman goodness/S goodnight Goodrich goodwill/SM Goodwin Goodwood/M goody/MS Goodyear goof/GD2MZS goofiness/S goofy/TP googlable google/DSG Google/M googleable googly/S gooier gooiest Gooley/M goon/SM goop goopy/TP goosander/S goose-step/G goose/M gooseberry/SM goosebumps goosefoot/S goosegrass GOP gopher/MS Goran Gorbach/M Gorbachev/M Gordian Gordon/M Gordonstoun/M gore/SMDGZ Goren/M gorge/MSDG gorged/E gorgeous/YP gorgeousness/S gorger/EM gorges/E gorging/E gorgon/SM gorgonian/S Gorgonzola Gorham gorilla/SM goriness/S goring/M Gorkhali Gorky gormandise/GSRD gormandize/GSRD gormless Gornik/M gorse/MS gory/TYP gosh/S goshawk/SM gosling/M gospel/SM Gosport gossamer/MS gossamery Gosse/M gossip/dSM gossiper/S gossipy gossypol got/I gotcha gotcher Goth/1S goth/S Gotham/M Gothic/Q8 Gothicism GOTO gotta gotten gouache/S Gouda/M gouge/DRGS Gough goulash/MS Gould/M Gounod gourami/S gourd/M6S gourdful/S gourmand/SM gourmandise gourmandism gourmet/SM Gourock/M gout/ZSM gouty/T gov. Govan/M govern/GaSD governable/U governance/SM governed/U governess/MS government/aM governmental/Y governmentalism governments governor/MS governorship/MS Govt. Gower/M gown/SDMG Goya GP GPG/M Gpg4win/M GPGTools GPL GPMU GPO GPRS GPS GPSes GPSS GPU/S gr grab/RSJDG grace's/E grace/DpG6MjS graced/E graceful/EPY gracefuller gracefullest gracefully/U gracefulness/SE graceless/YP gracelessness/S graces/E Gracie gracile gracing/E gracious/UY graciousness/MS grackle/SM grad/S gradability gradable gradate/DSG gradation/CM grade's grade/nRCSDG graded/UA grades/A gradience gradient/SM grading/A gradings gradiometer Gradle/M gradual/SYP3 gradualism/SM gradualist gradualistic gradualness/S graduand/SM graduate's/f graduate/NMGnDS graduates/f graduation/M Grady Graeco-Roman Graeme Graff/M graffiti graffito/M graft/SMRGD grafting/M Grafton Graham/M Grahamstown/M grail/S grain's grain/DIGS grainer/M graininess/S graining/M grainy/TP gralloch gram/MS graminaceous graminivorous grammalogue grammar/SM grammarian/MS grammatical/PY grammaticalisation grammaticalise/D grammaticality's grammaticality/U grammaticalize/DN grammatically/U gramme/SM Grammy/S Grammys gramophone/MS gramophonic Grampian/M grampus/MS Gramsci/M Granada granary/SM grand/TYSP grandam/MS grandaunt/MS grandchild/M grandchildren granddad/SMZ granddaddy/SM granddaughter/MS grandee/SM grandeur/SM grandfather/MdSY grandiloquence/MS grandiloquent/Y grandiose/Y grandioseness grandiosity/MS grandma/SM grandmaster/SM grandmother/MYS grandmotherhood grandnephew/SM grandness/S grandniece/MS Grandon/M grandpa/MS grandparent/SM grandson/SM grandstand/SDGM grandstander/M granduncle/SM grange/SM Grangemouth/M Granger granite/MWS granitoid/S granny/MS granodiorite grant-maintained grant/DRMGS Grantchester grantee/SM Grantham grantor's grantsmanship/S granular/Y granularity/MS granulate/SDG granulation/M granule/nNMVS granulite/W granulocyte/S granulocytic granuloma/S granulomata granulomatous Granville grape/MS grapefruit/M grapeseed grapeshot/M grapestone/S grapevine/MS graph/MWGwD1S grapheme/MS graphemic/S graphemically graphic/PS graphics/M graphite/MS graphitic graphology/3MS grapnel/SM grapple/SGD grappler/M grappling/M grasp/Gk7DS grasper/M grasping/P grass/ZSDGM grassers grasshopper/SM Grassington/M grassland/SM grassquit/S grassy/T grate/jRG6SDkJ grateful/TP gratefully/U gratefulness/U gratefulnesses grates/I graticule/M gratification/M gratified/U gratify/RSGkNnD gratifying/U gratin grating/M gratis gratitude/SIM gratuitous/PY gratuitousness/S gratuity/MS Grauman/M gravadlax gravamen/MS grave-stone/SM grave/RSMZPTDYG gravedigger/SM gravel/DYGMS graven graveness/S Gravesen/M Gravesend graveside/S gravestone/MS graveyard/MS gravid/YP gravimeter/SWM gravitas gravitate/NDGnVxS gravitation/M graviton/MS gravitropic gravity/SM gravlax gravure/S gravy/MS grawlix/S Gray Grayson graze/RSGD grazed/c grazes/c grazing's grazing/c grease's grease/CDRGS greasepaint/SM greaseproof greasiness/S greasy/PTY great-aunt/S great-grandchildren great-grandfather great-grandmother/S great-grandparents great-nephew great-niece great-uncle great/PYST greatcoat/SDM greathearted greatness/S Greaves/M grebe/SM Grecian/S Greco-Roman Greece/M greed/2ZSzM greediness/S greedy/PT Greek/SM Greeley green-eyed green/TPMGYDS Greenaway/M greenbelt/S Greenberg greenbottle/S greenbul/S Greene/M greener/Z greenery/SM greenfield greenfinch/SM greenfly/MS greengage/MS greengrocer/SZM greengrocery/M greenhorn/MS greenhouse/MS greenie/S greening/M greenish greenishness greenkeeper/SM Greenland/M Greenlander/S Greenlandic Greenlandish greenlandit greenlandite Greenlandman greenless greenlet greenling/S greenmail/SGD greenmailer/S greenness/S Greenock/M Greenpeace/M Greensboro greenstick greenstone/S greensward/SM Greenville greenweed Greenwich greenwood/SM Greer/M greet/DRGSJ greeting/M Greg/M gregarious/PY gregariousness/S Gregg Gregor/M Gregorian Gregorio/M Gregory Greig gremlin/MS Grenada/M grenade/MS Grenadian/S grenadier/SM grenadine/MS Grenadines/M Grenoble Grenville Gresham/M Greta Gretchen Gretel/M Gretna grew/cAe Grexit grey/PGYDS greybeard/SM greyer greyhound/SM greyish greylag greyness/S greyscale Grice/M grid/SMD griddle/DGSM gridiron/MS gridlock/DSG grief/MSDG griefer/SM Grieg/M grievance/MS grieve/RkSDG grievous/PY grievousness/S griffin/SM Griffith Griffiths/M griffon/M Grigson/M grill/GSD grille/SM griller/M grilse grim/PYT grimace/RMDSG Grimaldi/M grime/ZM Grimes griminess/S Grimm/M grimness/S grimoire Grimsby grimy/TP grin/DGS grind/RGJSk grinds/A grindstone/MS gringo/SM grinner/M grinning/Y Grinstead/M griot/S grip/rRdGMDS gripe/S gripping/Y grisaille griseofulvin grisliness/S grisly/PT grist/MY gristle/SM gristly/PT Griswold/M grit/2GSDRMZ grittiness/S gritty/TP grizzle/SYGD grizzling/M grizzly/TS groan/MGRDS groat/MS Grobler/M grocer/ZSM grocery/SM Groff/M grog/Z2zM grogginess/S groggy/TP groin/SMGD grok/SDG grommet/dMS gromwell/S groom/RSDGM Groot groove/GSDMZ groovy/TYP grope/RJSDGk grosbeak/MS grosgrain gross/YSDTPG Grossman grossness/S grossular Grosvenor Grosz Grote/M grotesque/SPY grotesqueness/S Groton grotto/SMD grottoes grotty/TP grouch/2ZDSzG Groucho/M grouchy/T ground's/f ground-plan ground-squirrel ground-to-air ground/mRMGJDpS groundbait/G groundbreaker/S groundbreaking groundburst grounded/U groundless/PY groundmass groundnut/S grounds/f groundsheet/M groundskeepers groundswell/S groundwater groundwork/M group/SMRJGD grouped/A groupie/SM grouping/M groups/A groupset/S groupware/M grouse/RGSDM grout/MGDS grouter/M grove/RSM grovel/DSGR grow/7RkGS growing/Iec growl/2GSkDR grown-up/MS grown/ceIA grows/cAe growth/eSAIMcf Grozny/M grub/zRMZ2DGS grubbiness/S grubby/TP grubstake/MGDS grubworm/S Grude grudge/DkMGS grudger/M grudging/U gruel/MGkS gruesome/YPT gruesomeness/S gruff/DTPGY gruffness/S grumble/GRJkSD grume/S Grumman grump/2MZSz grumpiness/S grumpy/PT Grundy grunge/SZ grungy/T grunion/SM grunt/DGS grunter/SM gruntled Gruyère gryphon's grâce Grünewald/M GSA gsm GSM GT GTA GTIN GTX GU guacamole/SM Guadalajara Guadalcanal Guadalupe Guadeloupe/M Guam/M Guamanian/S Guangdong/M Guangzhou/M guanidine guanine/SM guano/MS Guantánamo/M guarani/SM guarantee/GdSM guarantor/SM guaranty/SM guard/RmGDhMiS guardant guarded/P guardedly/U guardee guardhouse/MS Guardi/M Guardia guardian/SM guardianship/SM guardrail/MS guardroom/SM Guatamala Guatemala/M Guatemalan/S guava/MS gubernatorial Gucci/M Guderian/M gudgeon/M Guenther/M guerilla/SM Guernsey/M guernsey/S Guerre Guerrero guerrilla/SM guess/DRG7S guessed/e guesses/e guessing/e guesstimate/GDS guesswork/SM guest/DGMS guestbook guestbooks guestimate/DSG Guevara guff/MS guffaw/GDSM Guggenheim GUI/SM Guiana/M guidable guidance/MaS guide/aDSG guidebook/MS guided/U guideline/SM guidepost/MS guider/aM guiders Guido guild/MSR Guildenstern/M Guildford guildhall/SM guile/pM6j guilefulness guileless/YP guilelessness/S Guiley/M Guillaume guillemot/MS guillotine/DSMG guilt/ZS2zMp guiltiness/S guiltless/PY guilty/TP Guinea-Bissau/M Guinea/M guinea/MS Guinean/S Guinevere/M Guinness guise/EMS guitar/3MS guitarist Gujarat Gujarati/S Gujerati/S gulag/S Gulag/S gulden/MS gulet/S gulf/SM gull/SDMbGY Gullah gullet/MS gulley/SM gullibility/SM Gulliver/M gully/MSGD gulp/RGSD gum/G2DZMS gumboil/SM gumboot/S gumdrop/SM gummy/TP gumption/SM gumshield/S gumtree/MS gun/yGSZRMD gunboat/MS guncotton Gunderson gunfight/RMS gunfire/SM gunk/MZS gunky/T gunman/M gunmen/M gunmetal/M Gunnar/M gunnel's gunnery/SM gunning/M Gunnison/M gunny/MS gunnysack/MS gunpoint/M gunpowder/MS gunrunner/MS gunrunning/MS gunship/S gunshot/MS gunsight/S gunslinger/S gunslinging gunsmith/SM gunstock/S Gunter Gunther/M gunwale/SM guppy/MS Gupta/M gurdwara/S Gurevich/M gurgle/DGS Gurkha/M Gurkhali Gurley/M Gurmukhi gurnard guru/SM Gus gush/GZRSD gushy/T gusset/SM gusseted gust/SD2MGzZ Gustafson/M gustatory Gustav/M Gustavo gusted/E gusting/E gusto/M gusts/E gusty/PT gut/MRGpDS Gutenberg Guthrie Gutierrez gutlessness/S guts/Z2 gutsy/PT gutta gutta-percha gutter/d guttering/M guttersnipe/SM guttural/PSY guy/RSMDG Guyana/M Guyanese Guysborough/M guzzle/DRGS Guélat GW Gwangju Gwen Gwendolen/M Gwent/M Gwynedd Gwyneth gybe/SGD Gyllenhaal/M gym/MS gymkhana/SM gymnasia/M gymnasium/SM gymnast/M1SW gymnastic/S gymnastics/M gymnosperm/SM gymnospermous gymslip/S gynaecocracy gynaecological/MS gynaecology/S3wM gynaecomastia gynarchy/S gynocentric gynoecia gynoecium gyp/S gypped gypping gyps/Z gypsite gypster/S gypsum/SM gypsy/MS gyrate/GDSNn gyration/M gyrator/SM gyratory/S gyrfalcon/MS gyro/S gyrocompass/M gyromagnetic gyropilot gyroplane/S gyroscope/SMW gyroscopically Gyves/M gzip/SGD Göbel/M Gödel/M Göteborg/M Günther H.264 H.265 h/E ha ha'p'orth ha'penny ha-ha Haag/M Haarlem/M habeas haberdasher/ZMS haberdashery/MS Habib/M habiliment/MS habilis habit-forming habit/7ndgSM habitability/MS habitable/P habitant/IFSM habitat/MS habitation/IMF habited/IF habits/FI habitual/YP habitualness/S habituate/NnSDG habituation/M habitué/MS hacienda/SM hack/R7DGSJ hackathon/S hackberry/S hackerspace Hackett hackette/S hackily hackle/DSMG hackler/M hackney/SDM hacksaw/GSMD hacktivism hacktivist/S hackwork/S had Hadamard Haddad/M Hadden/M haddock/SM Hadean hades hadj's hadji's Hadley/M hadn't Hadrian hadron/SM hadst haem/SM haemagglutination haemagglutinin haematin haematite/SM haematocrit haematogenous haematology/W3SMw haematoma/M haematopoiesis haematopoietic haematuria haemocyte/S haemodialyses haemodialysis haemodynamic haemodynamically haemodynamics haemoglobin/SM haemolytic haemophilia/MS haemophiliac/SM haemophilic/S haemopneumothorax haemopoiesis haemopoietic haemoptysis haemorrhage/SGDWM haemorrhoid/MS haemorrhoidal haemostasis haemostatic Hafiz hafnium/M haft/MDGS hag/MS Hagar Hagelstein/M Hagen/M Hager/M hagfish/S Haggai haggard/PY haggardness/S haggis/SM haggish haggle/DRSG hagiographer/SM hagiographic hagiographical hagiography/MS hagiological hagiologist/S hagiology Hagon/M Hague Hahn/M hahnium/S Haider/M Haifa haiku/M hail/RMDSG Haili hailstone/MS hailstorm/SM Haiphong/M hair-drier hair-dryer/S hair-raising hair-slide hair-splitter/SM hair-splitting hair-trigger hair/p2ZSMD hairball/SM hairband/S hairbreadth/SM hairbrush/SM haircare haircloth/SM haircut/SMG hairdo/SM hairdresser/SM hairdressing/MS hairgrip/S hairiness/S hairless/P hairlike hairline/MS hairnet/SM hairpiece/SM hairpin/SM hairsbreadth/S hairspray/S hairspring/SM hairstyle/3MSG hairy/TP Haiti/M Haitian/SM hajj/M hajjes hajji/SM hake/SM Hal/M halal/SDG halberd/SM halcyon/S hale/SIDG haler/MI halest Haley/M half-and-half half-arse/GD half-back/SM half-baked half-beak half-blood/D half-blue/S half-breed/SM half-brother/SM half-caste/S half-century/S half-crown/MS half-cut half-deck half-duplex half-eaten half-fare half-finished half-hardy half-hearted/YP half-heartedness/S half-hour/YS half-inch half-length half-life half-light half-lives half-marathon/MS half-mast half-moon half-pay half-seas-over half-sister/SM half-sovereign half-step half-term/S half-timbered half-time/S half-tone/S half-track half-truth/S half-wave half-way half-yearly half/M halfbreed halfness halfpence halfpenny/SM halfpennyworth halfpipe halfway halfwit/hiSMD halfword/SM halibut/M halide/SM Halifax/M halite/MS halitoses halitosis/M hall-stand/S hall/SM Hallam/M hallelujah/S Halley/M hallmark/SMDG hallo/GSD halloo's Hallot/M hallow/DGS hallowed/U Halloween hallucinate/nyNVGDS hallucination/M hallucinogen/SWM hallucinogenic/S hallway/SM halo/MDSG haloes halogen/SM halogenated halon/M haloperidol halophyte/S Halsey/M Halstead/M halt/RJGSMkD halter-neck halter/d haltere/S Halton halve/DSG halvers halves/M halyard/MS ham/DGSRZM hamadryas Hamal/M Haman/M hamate Hambleton Hamburg/M hamburger/SM Hamill/M Hamilton/M Hamiltonian/S Hamish hamlet/MS Hamlin/M Hamm/M Hammarskjöld/M hammer/dpr hammerhead/SM hammering/M hammerlock/SM Hammersmith/M hammertoe/SM Hammett hammock/MS Hammond hammy/T Hampden/M hamper/dS hampered/U Hampshire/M Hampstead Hampton/M hamster/MS hamstring/SGM hamstrung Han/M Hancock/M hand-axe hand-held hand-me-down/S hand-painted hand-pick/D hand-pick/GSD hand-to-hand hand-to-mouth hand/h6RzZSipMGD2 Handan/M handbag/SMDG handball/MS handbarrow/SM handbasin handbill/SM handbook/SM handbrake/SM handcart/MS handclap/SG handclasp/SM handcraft/SGD handcuff/DSG handcuffs/M handed/fU handedly/f handedness/SM Handel/M handful/MS handgrip/S handgun/MS handheld/S handhold/MS handicap/GDRMS handicraft/SM handing/c handiwork/MS handkerchief/SM handle/RMGDS handleable handlebar/MS handled/a handles/a Handley handling/M handlist/S handmade handmaid/SM handmaiden/SM handout/MS handover handpiece handprint/S handrail/MS hands/Uc handsaw/SM handset/SM handshake/SMG handshaker/M handshaking/M handsome/PTY handsomely/U handsomeness/S handspike/MS handspring/SM handstand/SM handwork/SM handwoven handwrite/GJS handwriting/M handwritten handy/mPT Hanemesis Haney/M hang-glide/RG hang/7RmDJSG hangar/SdM hangdog/S hanger-on hangers-on hanging's hanging/c hangnail/SM hangout/SM hangover/MS hangs/cA hank/RMZS hanker/Jd hankerer/M hankering/M hankie/M hanky-panky hanky/MS Hanna/M Hannah/M Hannibal/M Hanoi/M Hanover Hanoverian Hans Hansard/SM Hanse/M Hansel Hansen/M hansom/SM Hanson hantavirus Hanukkah hap/aS haphazard/PY haphazardness/S hapless/PY haplessness/S haploid/SZ haplotype/S happen/SJd happening/M happiness/SM happing happy-go-lucky happy/TUY Hapsburg/M haptic/S hara hara-kiri Harald harangue/DGS haranguer/M Harare/M harass/RLDSG Harbhajan/M Harbin/M harbinger/MS Harbor harbour/pRGSDM harbourage harbourmaster's Harcourt hard-boiled hard-code/D hard-core hard-done-by hard-earned hard-headed/YP hard-headedness/S hard-hearted/PY hard-heartedness/S hard-hitting hard-line/R hard-nosed hard-on hard-paste hard-pressed hard-wire/SDG hard-working hard/Z2YPzT hardback/SM hardbitten hardboard/M hardbody/SD hardbound hardcopy/S hardcore Hardecanute/M harden/rdS hardened/U hardening/M Hardesty/M hardihood/SM Hardin hardiness/S Harding hardish hardness/S hardpan hardshell hardship/MS hardstanding/S hardtop/SM hardware/M hardwood/MS hardy/TP hare/MDGS harebell/SM harebrained Harel/M harelip/MSD harem/MS Harewood/M Hargreaves haricot/S Haringey Harington hark/GSD harken/S Harlan/M Harlem harlequin/SM Harley-Davidson/M Harley/MS harlot/ySM harlotry/SM Harlow harm/GSjpM6D harmed/U harmer/M harmful/PU harmfulness/S harmless/PY harmlessness/S Harmon/M harmonic/YS harmonica/SM harmonics/M harmonious/IPY harmoniously/E harmoniousness/IS harmonise/RnGSD harmonised/U harmonium/MS harmonize/RDGnNS harmony/ESM Harmsworth/M Harnack/M harness's harness/SUDG harnesser/M Harold/M harp/RMDG3ZJS Harpenden/M harping/M harpist harpoon/RSDGM harpsichord/M3S harpsichordist harpy/MS harridan/SM Harriet Harrigan/M Harriman/M Harring/M Harrington/M Harris/M Harrisburg Harrison/M Harrisonburg Harrogate harrogate/M harrow/MGDS harrower/M harrumph/DGS Harry's harry/RDSG harsh/PTY harshen/d harshness/S hart/SM Hartford Harth/M Hartlepool/M Hartley Hartman Harvard harvest/MRGDS harvested/U harvestman/M harvestmen/M Harvey/M Harvie/M Harwell Harwich Harwood/M Harzan has Hasbro hash's hash/ADGS hasher/M hashing/M hashish/MS hashtag/S Hasidism Haskell/M Haskins Haslam/M hasn't hasp/GSMD Hassidism hassle/DMGS hassler hassock/MS hast/zZ2D haste/MS hasten/Sd hastener/M hastiness/S Hastings/M hasty/TP Haswell/M hat/rGRSMdpD hatband/S hatbox/S hatch/GyDSJ hatchback/SM hatcher/M hatchery/SM hatchet/dMS hatching/M hatchling/S hatchway/MS hate/jSM6 hateful/P hatefulness/S hatemonger/S Hatfield Hathaway/M hatred/SM hatstands Hattie hauberk/SM Haugen/M haughtiness/S haughty/YPT haul/cDSG haulage/SM hauler's hauler/c haulers haulier/MS haunch/DGSM haunt/kDRJGS Hauptmann Hauser hauteur Havana/M Havant have-not/MS have/SG Havelock/M haven't haven/SM haver/S Haverfordwest/M Haverhill/M havering haversack/SM havoc/SDMG haw/GMDS Hawaii/M Hawaiian/SM hawk/RMDGS hawking/M Hawkins/M hawkish hawkishness/S hawklike Hawkshead Hawley haws/R hawthorn/SM Hawthorne Haxby/M hay/GMSD haycock/SM Hayden/M Haydn/M Hayek/M hayer Hayes hayfield/MS Hayles/M hayloft/MS haymow/SM Haynes hayrick/SM Hays/M hayseed/MS haystack/MS haywain Hayward haywire Haywood Hayworth/M hazard/DGSM hazardous/YP haze/DMRSGZ hazel/SM hazelnut/SM haziness/S Hazlitt hazmat/S hazy/PYT Hašek/M HBA/S HBM HD HDD/S HDMI hdqrs HDSLR/SM HDTV he'd he'll he/M head-hunt/DGSR head-on head/DRzGm2pihMZJS headache/SM headage headband/MS headbang/SGD headbanger/SM headbay headboard/SM headborough headbutt/SDG headcam/S headcase/S headcount headdress/SM headedness/S headgear/MS headguard/S headhunt/RG headiness/S heading/M Headingley/M headlamp/S headland/SM headless/P headlight/MS headline/RDSMG headlock/MS headlong headman/M headmaster/YMS headmastership/M headmen/M headmistress/SM headnote/S headphone/SM headpiece/SM headquarter/Sd headrail/S headrest/MS headroom/SM heads/c headsail/S headscarf/M headscarves headset/SM headship/SM headshrinker/MS headstall/MS headstand/MS headstock/M headstone/MS headstrong headteacher/SM headwall/S headwater/S headway/SM headwind/SM headword/SM heady/T heal/DGRS healed/U health/M6jzS2Z healthcare healthful/P healthfulness/S healthiness/SM healthy/TUY heap/MDSG hear/GAaSc heard/UacA hearer's/c hearer/SM hearing/SM hearken/dS hears/SA hearsay/SM hearse's hearse/A Hearst heart-rending/Y heart-searching heart-to-heart heart-warming heart/DhiMZz2Sp heartache/SM heartbeat/MS heartbreak/SkGM heartbreaker/S heartbroken heartburn/GSM heartburning/M hearted/P heartedness/S hearten/kEdS heartfelt hearth/MS hearthrug hearthstone/MS heartiness/S heartland/MS heartless/PY heartlessness/S heartsick/P heartstrings heartthrob/SM heartwood/M heartworm hearty/TSP heat-resistant heat/RJ7MGDSh heated/cKUA heath/RSyM heathen/SM heathendom/SM heathenish/Y heathenism/SM Heathkit heathland/S Heathrow/M heating/Kc heatproof heats/KcA heatstroke/MS heatwave heave/RSGZD heaven-sent heaven/MSY heavenly/PT heavenward/S heaves/M Heavey/M heavier-than-air heaviness/S heavy-duty heavy-handed heavy/TPSY heavyhearted heavyset heavyweight/MS hebe Heber/M hebetude Hebraic Hebraism Hebrew/SM Hebrides Hecate/M hecatomb/M Hecht/M heck heckle/RGSD Heckmann/M hectarage hectare/SM hectic/Y hectogram/SM hectolitre/S hectometre/SM hector/dS Hecuba/M hedge/DRGSMk hedgehog/SM hedgehop/SDG hedgerow/MS hedonism/MS hedonist/WMS heed/6MGDjpS heeded/U heedful/P heeding/U heedless/YP heedlessness/S heehaw/DGS heel/pRSGMD heelflip/S heeling/M Hefner/M heft/DzG2ZS heftiness/S hefty/TP Hegel/M Hegelian hegemony/SWM hegira/S heh Heidelberg Heidfeld Heidi/M heifer/MS heigh heigh-ho height/MS heighten/Sd Heilman/M Heine/M Heinecke/M Heinlein/M heinous/PY heinousness/S Heinrich/M Heinz heir/SFM heiress/MS heirloom/MS Heisenberg held Helen/SM Helena/M Helene heli-ski/GR helical/Y helices/M helicon/M heliconia/S helicopter/dSM Heligoland/M heliocentric heliocentrically heliography/M Heliopolis Helios heliosphere heliotrope/MS heliotropic heliotropism helipad/S heliport/MS helium/M helix/M hell-bent hell-cat/MS hell-fire/M hell-hole/MS hell-raiser hell/MS hellebore/SM Hellenic Hellenise/DGnS Hellenism Hellenist/SMW Hellenize/DGS Heller hellfire hellhole/S hellish/YP hellishness/S Hellman/M hello/MGS helluva Hellyer/M helm/mSGMD helmet/dMS Helmholtz Helmont/M helmsmanship Helmut helot/S helotage helotism helotry help/RSjpD6JG helpful/P helpfully/U helpfulness/U helpfulnesses helping/M helpless/PY helplessness/S helpline/S helpmate/MS helpmeet's Helsinki/M helter helter-skelter helve/MS Helvetian hem/GRSMD hemicellulose/S Hemichordata hemichordate/S hemicycle/S hemicylindrical hemidemisemiquaver/S hemihydrate hemimetabolic hemimetabolous Hemingway hemisphere/SMWwD hemline/MS hemlock/SM hemp/SM hempen Hemphill/M Hempriggs hempseed hemstitch/DSGM hen/yMS hence henceforth henceforward henchman/M henchmen/M Henderson Hendrick/M Hendricks Hendrickson Hendrix henge/M Henley/M henna/DMGS Hennessey/M henpeck/DGS Henri/M Henrietta Henrik/M henry/M Henry/M Henschel/M Hensen/M Henstridge/M hentai Henze/M hep heparin/MS hepatic/S hepatitides hepatitis/M hepatocellular hepatocyte/S hepatoma/S hepatomata hepatomegaly hepatopancreas hepcat/S heptagon/MS heptagonal heptane/M heptathlon/S her/GS Hera/M Heraclitus/M herald/WGSMDy heralded/U heraldry/SM herb/MS herbaceous herbage/SM herbal/3S herbalism herbalist herbaria herbarium herbed Herbert/M herbicidal herbicide/SM herbivore/SM herbivorous/Y Herby herby/T Herculaneum herculean Hercules herd/mRGSMD here's here/FI hereabout/S hereafter/S hereat hereby hereditament/S hereditarian/S hereditarianism hereditary/YP heredity/SM Hereford/M Herefordshire/M herein hereinafter hereof heresy/SM heretic/SM heretical hereto heretofore hereunder hereunto hereupon herewith Hergenröther/M Heriot-Watt heritability heritable/I heritage/MS heritor/IM Herman Hermann/M hermaphrodite/SMW hermaphroditism Hermaphroditus hermeneutic/S hermeneutical hermeneutically hermeneutics/M Hermes hermetic/YS hermetical hermit/SM hermitage/SM hermitian Hermosa Hernandez/M Herne/M hernia/nSM hernial herniate/GDS hero/W1M Herod/M Herodotus heroes heroic/S heroin/MS heroine/MS heroism/SM heron/MS herpes/M herpesvirus/S herpetic herpetofauna/O herpetology/S3M Herr Herrick herring/SM herringbone/SMGD Herrington Herschel herself Hersham/M Hershel Hershey/M Hertfordshire/M hertz/M Hertzog/M Herzegovina/M hesitance/ZS hesitancy/SM hesitant/Y hesitate/nNDkSG hesitater/M hesitating/UY hesitation/M Hesketh/M Hesperus Hess Hesse/M hessian Hessian/S Hester/M Heswall/M hetero/SM heterocercal heterochromatic heterochromatin heterocyclic heterodox/Z heterodoxy/SM heterodyne heteroflexible heterogamous heterogamy/M heterogeneity/SM heterogeneous/YP heteromerous heteronomous heteronomy heteronormative heteronormativity heteronym/W heteronymous heteropaternal heterophilic heterophobe/S heterophobia heterophobic heteropteran/S heteropterous heterosexism heterosexist heterosexual/MYS heterosexuality/SM heterosocial heterosociality heterosporous heterostructure heterotroph heterotrophic heterotrophy heterozygous Hettie/M Hetton-le-Hole Heublein/M heulandite heuristic/SMY Heuser/M HEVC/M hew/RGSD Hewan/M Hewett/M Hewitt/M Hewkin/M Hewlett/M hewn Heworth hex/DSG hexachloride/M hexadecimal/SY hexafluoride/M hexagon/oSM hexagonal hexagram/SM hexameral hexamerism hexamerous hexameter/SM hexane hexaploid hexaploidy hexastyle/S hexavalent hexer/M heximal hexokinase hexose/S hey heyday/MS Heylin/M Heysham/M Heywood Hezbollah Hezekiah HF HFC/S Hg hgt HGV hgwy hi Hi hi-fi/S hi-res hi-tech Hialeah Hiatt/M hiatus/SM Hiawatha Hibbard/M hibernate/GSnDN hibernation/M hibernator/SM Hibernia Hibernian hibiscus/MS hiccough hiccup/dSM Hick Hickey/S Hickman/M hickory/SM hicks hid/r hidden/U hide-and-seek hide/GSJU hideaway/MS hidebound hideous/PY hideousness/S hideout/MS hidey hiding/M hie/GS hieing hierarchy/1WMSw hieratic hieroglyph/SW hieroglyphic/S hieroglyphical/Y hieroglyphics/M Higbee/M Higgins/M higgledy higgledy-piggledy high-born high-cal high-carbon high-class high-energy high-falutin high-faluting high-flier/S high-flown high-flyer/S high-flying high-grade high-handed/PY high-handedness/S high-hat high-heeled high-income high-jump high-level high-minded/Y high-mindedness high-octane high-pass high-pitched high-powered high-pressure high-profile high-quality high-ranking high-res high-resolution high-rise high-risk high-security high-sounding high-speed high-spirited high-spiritedness high-stepper high-stepping high-street high-strung high-tech high/STPY Higham/M highbrow/MS higher-level highfalutin Highfield Highgate highish highland/RSM highlandman highlandmen highlight/SGMDR highness/S highpoint hight highway/mMS Higson/M Higton hijab/S hijack/GRSDJ hijackers' Hikaru/M hike/RSGD hilarious/YP hilariousness/S hilarity/SM Hilary Hilberg/M Hilbert/M Hilda/M Hildebrand/M Hildegard/M Hiligaynon/S hill/2MGYS Hillary Hillbrow/M Hillcrest Hillenkoetter/M Hilliard hilliness/S hillock/SM Hillsboro Hillsdale hillside/MS hillstream/S hilltop/SM hillwalker hillwalking hilly/PT Hillyer hilt/GMDS Hilton him Himalayan Himalayas himself Hinckley hind/R hindbrain Hindemith Hindenburg hinder/d hindered/U hinderer/M Hindi hindlimb/S hindmost hindquarters hindrance/MS hindsight/SM Hindu/MS Hinduism Hindustan/M hindwing/S Hines hinge's hinge/USGD hinger Hinkle Hinkley/M Hinsdale hint/RSGMD hinterland/MS Hinton/M hip/TZMDSG hipbone/SM hipness/S hippie/M hipping/M hippo/MS hippocampi hippocampus hippocras Hippocrates/M Hippocratic hippodrome/SM hippogriff/S hippogryph/S Hippolyta/M Hippolyte/M hippopotami hippopotamus/MS hippy/TMS hipster/SM hipsterish hipsterism hiragana Hiram Hirata/M hire-purchase hire/GADS hireling/MS hirer/MS hiring/S Hiroshi/M Hiroshima Hirsch hirsute/P hirsuteness/S his/JDG Hispanic/SM hiss/SM hisser/M hissing/M hist histamine/MS histaminic histidine histochemic histochemical histochemistry/M histocompatibility histogram/MS histographer histography histologically histology/W3MSw histoplasmin histoplasmosis historian/SM historical/P historicism/M historicist/M historicity/MS historify/SGD historiograph historiographer/MS historiographic historiographically historiography/wSM history/SK1MW histrionic/SY histrionics/M hit-and-miss hit-and-run hit/pRMSG Hitachi hitch-hike/DRGS hitch/RDSG Hitchcock/M hitched/U hitches/U Hitchman/M hither hitherto hitherto-unseen Hitler/MS Hitlerian Hitlerism Hitlerite/S Hitt/M hittable hitting/a Hittite/SM HIV HIV-negative HIV-positive hive/MDGS Hix/M hiya hmm HMS HMSO ho's/F ho-hum ho/MRYD hoar/MZ2 hoard/MSRDJG hoarding/M hoarfrost/SM hoariness/S hoarse/PYT hoarseness/S hoary/TP hoatzin/S hoax/DRGSM hob/SZGMD Hobart/M Hobbes hobbit/SM hobble/RGDS Hobbs hobby-horse/SM hobby/3MS Hoberg/M Hoberman/M hobgoblin/SM hobnail/DMS hobnob/DGS Hoboken hock/MS hockey/SM hocus hocus-pocus hod/SM hodge/SM hodgepodge/MS Hodgkin/M hoe/GMS hoecake/MS hoes/F Hoff/M hoffens Hoffman hoftens hog/GSDM hogan/MS Hogarth hogback/SM Hogg Hoggard hogger hoggish/Y hognut hogshead/MS Hogwarts hogwash/MS hogweed/S Hohenzollern Hohl/M Hohlbein/M hoick/SGD hoist/SDG hoister/M hoity hoity-toity hokey hokey-cokey Hokkaido Holbeck Holbrook Holcomb/M hold-up/MS hold/RSGJ7 holdall/SM holdback/S Holden holding/M holdout/SM holdover/MS Holdsworth/M hole/GDSM holeable holey holiday/GSMD holidayer holidaymaker/S holier-than-thou holiness/S holism holist/S holistic/Y Holland/M hollandaise Hollander/S holler/Sd Hollerith Holley/M Hollingham Hollister hollow-eyed hollow/PDTGSY Holloway/M hollowness/S hollowware/M holly/MS hollyhock/SM Hollywood/M Holm/M Holman/M Holmes/M holmium/M holocaust/SM Holocene holodeck holoenzyme/S Holofernes/M hologram/SM holograph/DSZGWM holographically holography/SM holometabolous holotype/S Holst Holstein holster/MdS Holt Holtzman/M holy/PST Holyhead/M Holyoke Holyrood/M Holyroodhouse holystone/SMGD Holzman homage/SM homager/M homburg/MS home-based home-brew/SDM home-builder/S home-building home-cooked home-grown home-loving home-made home-maker/SM home-making/M home-owner/MS home-ownership home-owning home-schooling home-shopper home-shopping home/RpYGzDMS homebody/SM homebuilder/S homebuilding homebuilt homebuyer/S homecoming/SM homeland/MS homeless/P homelessness/S homelike homeliness/S homely/TP homeobox homeopath/S homeopathic/Y homeopathist homeopathy homeowner/S homepage/M Homeric Homerton homesick/P homesickness/S homespun/S homestead/GMDSR homestretch/MS Homet/M homeward-bound homeward/S homework/GRM homewrecker/S homey/P homeyness/S homicidal homicide/SoM homier homiest homiletic/S homily/SM hominess's homing/M hominid/SM hominoid/S homo/SM homocentric homocercal homocysteine homoeobox homoeopath/WSZ homoeopathy/SM homoeostases homoeostasis/M homoeostatic homoeotherm/ZW homoeothermal homoerotic homogamy/M homogenate/SM homogeneity/ISM homogeneous/Y homogeneousness homogenisation homogenise/RGDS homogenize/DRGnSN homograft/S homograph/SM homologise/SGD homologize/SGD homologous homologue/MS homology/SMw homomorph/WZM1 homomorphism/SM homomorphous homonym/MS homonymic homonymous homonymy homophile/S homophobe/S homophobia/S homophobic homophone/MSZ homophonic/Y homophonous homopolar homopolymers homorganic homosex homosexual/SMY homosexualist/S homosexuality/SM homosocial homosociality homotopy homozygous/Y homunculus Hon. Honda/M Hondo Honduras/M hone/STGDM Honecker honer/S honest/EZY honester honestest honesty/SME honey/SMD honeybee/SM honeycomb/GDSM honeycreeper/S honeydew/SM honeyeater/S honeyguide/S honeylocust honeymoon/RDGMS honeypot/S honeysucker/S honeysuckle/MS honeytrap Honeywell honeywort Hong/M Honiara/M honk/RSMDG Honolulu honorarium/MS honorary/SY honorific honour/E7MRlDGS honourable/MS honourableness honourably/S Honshu/M hoo-ha hood/DGMiS hooded/P hoodie/S hoodlum/SM hoodoo/MGDS hoodwink/SGD hoodwinker/M hoody/S hooey/MS hoof/MDGS hoofer/MS hoofmark/S Hooft/M hook-nosed hook/RGSMD hookah/SM Hooke hooked/U hooks/U hookup/MS hookworm/SM hooligan/SM hooliganism/SM hoop/GMDS hooper/M hoopla/MS hooray/S Hoosier hoot/RMDGS hootch's Hoover's hoover/d Hoovers hooves/M hop/RDSGM hope/6MjSGDp hopeful/SP hopefulness/S hopeless/PY hopelessness/S hoper/M Hopkins/M Hopkinsville/M hoppled hopples hopscotch/M Hopson/M Horace/M Horatian Horatio Horatius horde/MS Horgan horizon/SM horizontal/SY hormonal hormone/oMS Hormuz horn/DGip2ZSM hornbeam/MS hornbill/S hornblende/MS Hornblower/M hornbook/S Horne horned/P horner hornet/MS hornlike hornpipe/SM horntail/S Hornung horny/PT horology/W3wSM horoscope/SM horoscopic horoscopical horoscopy Horowitz/M horrendous/Y horrible/PY horribleness/S horrid/PY horrify/1SWGDk horror-stricken horror-struck horror/SM horse-breaker horse-cloth horse-doctor horse-drawn horse-race/SMG horse-trading horse/YmG5DMSp horseback horsebean/S horsebox/S horsedom horseflesh/M horsefly/SM horsehair/SM horselike horsemanship/SM horseplay horsepower horseradish/SM horseshed horseshoe/GDSM horsetail/SM horsewhip/GDSM horsey Horsham horsier horsiest horsing/M Horst hortatory horticultural horticulturalist/S horticulture/3SM Horton Horus/M Horwich hos/Sd hosanna/GSD hosannah hose/M Hosea hosepipe hosier/SMZ hosiery/SM hosp hospice/MS hospitable/YI hospitably/I hospital/Qq8SM- hospitality's/I hospitality/SM host/YSMGD hostage/MS hostel/DRMSyG hostelry/SM hostess/GMDS hostile/Y hostility/MS hostler/SM hostname/S hot-air hot-blooded hot-swap/DGB hot-tempered hot/PDSYGT hotbed/MS hotbox/SM hotcake/S hotchpotch/M hotel/mSM hotelier/MS hotfoot/DSG Hotham/M hothead/SDihM hotheaded/P hotheadedness/S hothouse/MSGD hotkey/S hotline/S hotlink/SG hotlist hotness/S hotplate/MS hotplug/SDG hotpot/MS hotrod hotshot/S hotspot/S Hottentot/M hotters hottie/S hotty Houdini hough/M Houghton-le-Spring/M Houghton/M hound/GSMD hounder/M hounding/M Hounslow hour/MYS hourglass/SM houri/SM hourly/S house's/e house-hunting house-husband house-mother/SM house-proud house-to-house house-train/D house-warming/SM house/M6SJmDG houseboat/MS housebound houseboy/MS housebreak/SRJG housebreaking/M housebroke housebroken housebuilder/S housebuilding houseclean/JGDS housecleaning/M housecoat/SM housed/A housefather housefly/SM houseful/SM household/RSM housekeep/GR housemaid/SM housemaster housemastering housemasterly housemastership housemate/S housemating housemistress housemonger housemother/SM housemotherly houseowner/SM housepainter/S houseparent/SM houseplace houseplant/S houser houseroom houses/eA houseshare housesharer housesmith housestead housetop/SM housewares housewife/MY housewifely/P housewifery housewifeship housewifish housewives housework/RSM housing's housing/A Houston hove Hove/M hovel/SM hover/dS hovercraft/M hoverer/M how'd how're how've how/MS Howard howbeit howdah/SM Howden/M Howe/S Howell/M however Howitt/M howitzer/SM howl/DSRGM Howley/M howsoever Howth/M Hoxha/M Hoxsey/M hoy/M hoyden/dMS hoydenish Hoyle Hoyt/M HP HPV HQ hr. HRH hrs. HRT/M html HTML/M http https Huang hub-cap/SM hub/MZS Hubbard/M Hubble/M hubbub/M hubby/MS hubcaps Huber/M Hubert hubris/MS Huck huckleberry/MS huckster/MSd HUD Huddersfield huddle/DSMG huddler/M Hudley Hudson hue/SMDp Huey huff/GMZDSz2 huffiness/S Huffington/M Huffman/M huffy/TP hug/SDG huge/PTY hugeness/S Huggins Hugh Hughes/M Hughie Hugo Huguenot/SM huh/S hula/MDGS hulk/GMDS Hull/M hull/SRGMD hullabaloo/MS hulling/M hullo/MSGD hum/RSDG human/MsQ8Y3-q9PS humane/P3Y humanely/I humaneness/I humanenesses humaner humanise/CRDSnG humanism/MS humanist/W humanitarian/S humanitarianism/SM humanity/SMI humanize/CRDnSNG humankind/M humanly/I humanness/S humanoid/S Humber Humberside humble/PTGSDY humbleness/S Humboldt humbug/GDSM humdinger/SM humdrum Hume humectant/S humeral/S humeri humerus/M humid/Y humidification/CM humidify/CnGNRDS humidistat/M humidity/SM humidor/MS humiliate/GSkNDn humiliation/M humility/SM humite hummable Hummel/M hummingbird/SM hummock/DSMZG hummus/S humongous humoral humoresque/S humorist/WSM humorous/PY humorousness/S humour/DhMpSG humourer/S humourless/PY humourlessness/S hump/GSMD humpback/DSM humph/S Humphrey/M Humphreys/M Humpty humpy/T humus/SM Hun/S hunch/GSDM hunchback/SMD hundred/HMS hundredweight/MS hung/Ac Hungarian/S Hungary/M hunger/dMS hungover hungriness/S hungry/YPT hunk/MZS hunker/Sd hunky/T Hunspell/M hunt/DmGRJS hunter-gatherer/S hunting/M Huntingdon/M Huntingdonshire/M Huntington/M Huntley/M huntress/SM Huntsville hurdle/RMGSD hurl/DYSGR Hurley/M hurling/M hurly-burly Huron hurrah/DG hurray/S hurricane/SM hurried/UY hurriedness/M hurrier hurry/iSGhD Hursley/M Hurst hurt/kjG6S Hurtak/M hurter/M hurtful/P hurtfulness/S hurtle/DGS husband-to-be husband/DYyGSM husbander/M husbandry/MS husbands-to-be hush/DGS husk/RzZSMD2G huskiness/S husking/M husky/TSP Hussain/M hussar/SM Hussein/M hussy/SM hustings/M hustle/RGSD Huston/M hut/MDGS hutch/GSDM Hutchins Hutchinson Hutchison Hutt/M Hutterite/S Hutu Huxley Huygens hwyl hyacinth/MS hyaena/SM hyaline hyaluronic Hyatt hybrid/q-MQ8S hybridism/MS hybridity Hyde/M Hyderabad hydra/nSM hydralazine hydrangea/MS hydrant/MS hydrate/MGDS hydrated/AC hydrates/CA hydrating/CA hydration/CMS hydraulic/YS hydrazine/M hydride/SM hydro/MS hydrobiology hydrocarbon/SM hydrocephali hydrocephalic hydrocephalus/MS hydrocephaly hydrochemistry hydrochloric hydrochloride/M hydrochlorothiazide/S hydrocodone/S hydrocolloid/S hydrocortisone hydroculture hydrodynamic/S hydrodynamical hydrodynamics/M hydroelectric/Y hydroelectricity/SM hydrofluoric hydrofluorocarbon/S hydrofoil/MS hydroforming hydrofracturing hydrogel/S hydrogen/nMN hydrogenate/SMGD hydrogenated/C hydrogenates/C hydrogenating/C hydrogenation/CM hydrogenous hydrographer hydrographic hydrographical hydrographically hydrography hydroid/S hydrology/M31Sw hydrolyse/DSG hydrolysis/M hydromagnetic/S hydromassage hydromechanics/M hydromedusa hydromedusae hydrometer/SM hydrometric hydrometry/MS hydronium hydroperoxide hydrophilic hydrophilous hydrophily hydrophobia/SM hydrophobic hydrophobicity hydrophone/MS hydroplane/DMSG hydroponic/SY hydroponics/M hydrosphere/MS hydrostatic/S hydrostatics/M hydrotherapy/MS hydrothermal/Y hydrous hydroxide/SM hydroxonium hydroxyapatite hydroxyl/NSM hydroxylate hydroxyproline hydroxyzine/M hyena/SM hygiene/M13WS hygienic/U hygienics/M hygrometer/SM hygroscope/S hygroscopic Hyman hymen/MS hymeneal/S Hymenoptera hymenoptera hymenopteran/S hymenopterous hymn-book/SM hymn/WSGMD hymnal/MS hymnary/S hymnody hymnographer hymnography hymnology/3 hyoid hyoscyamine hypaxial hype/DSMG hyper/S hyperacidity hyperactive/SY hyperactivity/SM hyperaemia/M hyperaemic hyperaesthesia hyperaesthetic hyperalgesia hyperalgesic hyperbola/MS hyperbole/M1SW hyperboloid/MS hyperboloidal hypercalcaemia hypercellular hypercellularity hyperchromasia hypercompetitive hypercorrect hypercorrection hypercritical/Y hypercube/SM hyperextend/SGDN hyperfine hypergamous/Y hypergamy/M hyperglycaemia hyperglycaemic hypergravity hyperinflation hyperinstrument/S Hyperion hyperkeratosis hyperkinesis hyperkinetic hyperlink/SDG hyperlipaemia hyperlipaemic hyperlipidaemia hyperlipidaemic hyperlocal hyperloop/S hypermarket/MS hypermedia hypermetropia hypermnesia hypermutable hypermutation hyperon/S hyperparasite/SW hyperparasitism hyperparathyroid hyperparathyroidism hyperphagia hyperpigmentation hyperplane/MS hyperplasia/M hyperprolactinaemia hyperreactivity hyperreal hyperrealism hyperrealist hyperrealistic hyperreality hyperresponsiveness hypersaline hypersensitive/P hypersensitiveness/S hypersensitivity/MS hypersexuality hypersomnia hypersomnolence hypersonic hyperspace/M hypersphere/M hypertension/SM hypertensive/S hypertext/MS hyperthermia hyperthermic hyperthyroid hyperthyroidism/SM hypertrophy/WDGSM hyperventilate/GSnDN hyperventilation/M hypha hyphae hyphal hyphen/MdnSN hyphenate/SGD hyphenated/U hyphenation/M hyphenator/S hypnoses hypnosis/M hypnotherapist/S hypnotherapy/MS hypnotic/SY hypnotise/SGD hypnotism/MS hypnotist/MS hypnotize/DSG hypo/MDGS hypoactive hypoallergenic hypocaust hypocellularity hypochondria/SM hypochondriac/MS hypochondriacal hypoconid/S hypocotyl/S hypocrisy/SM hypocrite/1wMS hypocycloid/O hypoderm hypoderma hypodermic/S hypodermis hypogastria hypogastrium hypoglossal hypoglycaemia/SM hypoglycaemic/S hypogonadal hypogonadic/S hypogonadism hypogonadotropic hypokalaemia hypokalaemic hypomagnesaemia hypomagnesaemic hypophyseal hypoplasia hypostatic hypostome hypostyle hypotactic hypotaxis hypotension hypotensive hypotenuse/SM hypothalami hypothalamic/Y hypothalamus/MW hypothermal hypothermia/MS hypothermic hypotheses hypothesis/d8rM9QS hypothetical/Y hypothyroid hypothyroidism/SM hypotropia hypoxaemia hypoxia/M hypoxic hyrax Hyrum/M hyssop/SM hysterectomy/SM hysteresis/M hysteria/MS hysteric/MSY hysterical Hyundai/M Hywel Hz Héloise/M Hügelschäfer I I'd I'll I'm i's I've I-beam/S I-chun i-mode i.e. i18n i3 i5 i7 IA IAEA Iain iamb/SMW iambi iambic/S Iamblichus/M iambus/SM Ian/M iatrogenic Iban IBAN/S Iberia/M Iberian/SM ibex/SM ibid ibidem ibis/SM Ibiza Ibizan IBM/M Ibrahim Ibsen/M ibuprofen/S IC ICANN/M Icarus ICC/M ice-cold ice-skate/G ice/mSMJGD iceberg/SM iceboat/MS icebound icebox/SM icebreaker/SM icecap/MS icefall/S icehouse Iceland/MRW Iceni icepack icepick/S ichneumon/SM ichnography/S ichthyolite/S ichthyological ichthyology/M3S ichthyophagous ichthyophagy ichthyornis ichthyosaur/S ichthyosaurus icicle/SM iciness/S icing/M icky/T ICM icon/SWM iconise/SGD iconize/SGD iconoclasm/MS iconoclast/MWS iconographer/S iconographical iconographically iconography/WMS iconolatry iconological iconology icosahedra icosahedral icosahedron/M ictorianises ictus/SM ICU icy/TPY ID'd ID'ing ID's id/MY ID/S Ida/M Idaho IDE idea/MoS ideal/SqQ-8s93M idealism/SM idealist/W1 idealization/M idealogical ideate/SGD ideation/M idem idempotence idempotency idempotent/S identical/PY identifiable/U identification/Ma identified/Ua identifies/a identify/BRnDlNSG identifying/a identity/MS ideogram/SM ideograph/WMS ideologue/S ideology/M31wS ides idiocy/SM idiolect/MS idiom/WSM1 idiomatic/U idiomaticness idiopathic idiosyncrasy/SM idiosyncratic/Y idiot/1SMW idiotype/S idle/DRTPSG idleness/S Ido idocrase idol-worshipping idol/QqSs-89M idolater/SM idolator/S idolatress/S idolatrous idolatry/MS ids idyll/SMW1 idyllist IEC IEE IEEE Iestyn if/FS iffiness/S iffy/T ifs igloo/MS Ignatius Ignatz/M igneous ignitable ignite/DASG igniter/M ignition/MS ignoble/YP ignominious/Y ignominy/SM ignorable ignoramus/SM ignorance/SM ignorant/SY ignorantness's ignore/GDS ignorer/M Igor/M iguana/SM iguanodon/S ii iii IIRC Ike/M Ikea/M Ilachinski ilang-ilang ilea ileitides ileitis/M ileostomy/S ileum/M ilia iliac Iliad ilium/M ilk Ilkley/M ill-advised ill-assorted ill-behaved ill-bred ill-conceived ill-considered ill-defined ill-disposed ill-equipped ill-fated ill-favoured ill-fitting ill-founded ill-gotten ill-humoured ill-informed ill-judged ill-mannered ill-matched ill-omened ill-prepared ill-proportioned ill-shaped ill-smelling ill-starred ill-suited ill-tempered ill-treat/D ill-treatment ill/YP illegal illegitimate/S illicit/P illicitness/S illimitable/P Illinois illiquid illiterate/P illness/S illogical illume/GD illuminable illuminance/S illuminant illuminate/DSGk illuminated/U illuminati Illuminati illumination/M illumine/DSNVGn illuminism illuminist/S illusion's illusion/ES illusionary illusionist/MS illusive/PY illusory/P illustrate/NnGDvSV illustrated/U illustration/M illustrational illustrator/MS illustrious/YP illustriousness/S ilmenite Ilona/M iMac image-maker/S image/SMyDG Imagen/M imager/S imagery/SM imagesetter/S imaginable/U imaginableness imaginably/U imaginal imaginary/PS imagination/M imaginative/UY imaginativeness's imaginativeness/U imagine/lnSVuNJDvG imagined/U imaginer/M imago/MS imam/MS IMAP imbecile/MWS imbecility/SM imbeddedness imbibe/RSDG imbibition imbricate/SGD imbrication/SM imbroglio/MS imbruing imbue/SGD IMF/M IMHO imitable/I imitate/DVGvNunS imitation/M imitative/P imitativeness/S imitator/SM immaculate/YP immaculateness/S immanence/ZS immanency/SM immanent/Y Immanuel immaterial immaterialism immaterialist/M immature/P immeasurable/P immediacy/SM immediateness/S immemorial immense/YPT immensity/SM immerse/SNbDGX immerser immersion/M immersive imminence/SM imminent/PY immodest immolate/DGnSN immolation/M immoral immoralism immoralist immortal/Q8 immovability/MS immoveable immune/q-Q8 immunity/SM immunoassay/MS immunoblotting immunocompetence immunocompetent immunocompromised immunodeficiency/S immunodeficient immunofluorescence immunofluorescent immunogenetic/S immunogenetical immunoglobulin/S immunohistochemistry immunolabeling immunolabelling immunology/3w1WMS immunoperoxidase immunoreactive immunosorbent immunosuppressant/S immunosuppressed immunosuppression immunosuppressive/S immunotherapy immunotoxic immure/GDS immutable/P IMO Imola/M imp/DSGM impact/VDG impactful impaction/SM impactor/SM impair/LG impaired/U impairer/M impala/M impale/LG impaler/M impart/GN impartation/M impassable/P impasse/MulXbN impassibility/SM impassible/Y impassion/DG impassioned/U impassive/P impassivity/M impasto/MS impatiens/M impatient impeach/LR7 impeachable/U impeached/U impeccability/SM impeccable/Y impecunious/PY impecuniousness/S imped/d impedance/MS impede/S impeded/U impeder/M impedimenta impel/NRSGnD impend/GSD impenetrable/PY imperative/PYS imperator/O imperatrices imperatrix imperceptibility/MS imperceptive imperfect/gVP imperial/3SY imperialism/SM imperialist/W1 imperil/LGD imperious/YP imperiousness/S imperishable/PY imperium impermanence impermanent impermeable/Y impermissible impersonal impersonalisation impersonalise/SGD impersonality impersonalize/SGDN impersonate/SGDNn impersonation/M impersonator/MS impertinence/M imperturbability/MS imperturbable/Y impervious/PY impetigo/MS impetuosity/SM impetuous/PY impetuousity impetuousness/S impetus/SM Imphal imping/G impinge/LS impinged impish/PY impishness/S implacability/MS implacable/YP implant/N7n implanter implausibility/M implement's implement/ADGSN implementability implementable/U implementation/SM implemented/U implementer/MS implicant/MS implicate/SDG implicit/YP implicitness/S implode/SNDGX implore/SkDG implosion/M imply/VuGNvnh impolitic/P imponderability imponderable/SPY import/ARGSD importable importance/SM important/Y importation/SM importunate/PSY importune/GDRS importunity/MS imposable impose/ASDG imposing/Y imposition impossible/P impost/G impostor/SM impotence/MSZ impoundments impoverish/GLSD impoverisher/M impracticable/P imprecate/GNDSn imprecation/M impregnability/MS impregnable/PY impregnate/DBSGnN impregnation/M impresario/MS impress/XVLbNvu impressed/U impresser impressibility/SM impression/MB3 impressionability/SM impressionable/P impressionism/MS impressionist/W impressive/U impressiveness/MS imprest/SM imprimatur/MS imprint/M imprison/L improbable/P impromptu/S improvable improve/qQ9Ls8 improved/U improver/M improvisation/oM improvisational improvisatory impudence/MS impudent/Y impugn/RBGSLD impulse/Vuv impulsion/M impulsive/P impulsiveness/S impulsivity impunity/SM impure/P imputable imputation/M impute/GDNnS in-between in-car in-depth in-flight in-house in-joke/S in-law/S in-line in-phase in-service in-store in-tray/S in/ASF inaccurate inactive inadaptive inadmissible inadvertence/SM inadvertent/Y inalienability/SM inalienable/Y inalterableness inamorata/SM inane/TY inaneness inanimate inanimation inanity/MS inappeasable inapplicable inappropriacy inappropriate/P inapt/P inarticulate inasmuch inaugural/S inaugurate/SDGNn inauguration/M inauspiciousness inauthentic inboard inborn inbound inbox/S inbreathe/DG inbred inbreed/SGJ inbreeding/M inbuilt Inc. Inca/S incalculable/PY incandesce/SGD incandescence/SM incandescent/SY incant/NnG incantation/M incantatory incapacitate/SNDG incapacitation/M incarcerate/DNnSG incarceration/M incarnadine/DSG incarnate/DGANSn incarnation/AM incendiary/S incense/GMDS incentive/ESM incentivise/D incentivize/D incept/DVSGv inception/MS inceptor/M incessant/Y incest/SM incestuous/PY incestuousness/S inch/SMGD inchoate/GDS Inchon inchworm/MS incidence/MFS incident's incident/Fo incidental/F incidentals incidently incidents incinerate/SnNDG incineration/M incinerator/SM incipience/MSZ incipiency/M incipient/Y incipit/S incircle incise/XVGvDNSu incision/M incisive/P incisiveness/S incisor/MS incite/LRX inclination/EM incline/EDNSnG incliner/M inclining/M include/SGXNvVDu inclusion/M inclusive/P inclusiveness/S incognito/S incoherency/M income/M incommensurability incommensurables incommensurably incommode/GD incommunicado incomparable incompetent/SM incompletion incomputable inconceivability/SM inconceivable/P incondensable incongruence incongruousness/S inconsequentiality/S inconsequentialness inconsiderable/P inconsiderate/N inconsolable/PY incontestability/MS incontestable/Y incontinent incontrovertible/Y inconvenience/DG inconvertible incorporable incorporate/DANGS incorporated/EU incorrect/7 incorrigibility/SM incorrigible/PSY incorruptible/SY increasable increase/Jk increaser/M incredible/P incredulous/c increment/NMSDGo incremental incrementalism incrementalist/S incriminate/SDNnyG incrimination/M incrustation/MS incubate/DNSGVn incubation/M incubator/SM incubatory incubi incubus/M incudes inculcate/SDGnN inculcation/M inculpate/DGS incumbency/MS incumbent/S incunabula incunabulum incur/GS7lD incurable/S incurious incurs/XN incursion/M incurvate/D incurvation/S incus Ind. indebted/P indebtedness/S indecenter indeed indefatigable/PY indefeasible/Y indefinable/PS indefinite/SP indehiscence indehiscent indelible/Y indemnification/M indemnifier/S indemnify/NDnSG indemnity/MS indent/Nn indentation/M indented/U indenter/M indention/SM indenture/DG Independent's independent/S indescribable/YPS indestructible/YP indeterminable/Y indeterminacy/SM indeterminism indeterministic index-linked index/RD7GnM India/M Indian/SM Indiana/M Indianapolis Indic indican indicant/SM indicate/NVnSGvD indication/M indicative/S indicator/MS indices/M indict/LSD7G indicter/M indie/S indigence/SM indigenous/YP indigent/YS indigestibility indigestibly indigestion indignant/Y indignation/SM indigo/SM Indira indirect/GP indiscipline indiscrete indiscriminate/PY indispensability/MS indispensable/PSY indisputable/P indissoluble/YP indistinct/P indistinguishable/P indite/SGD indium/M individual/sY38Q-9MqS individualise/k individualism/MS individualist/1W individuality/MS individualize/k individuate/GnDSN individuation/M indivisible/SPY Indo-Aryan Indo-China Indo-Chinese Indo-European Indo-Germanic Indo-Iranian Indo-Malayan Indo-Malaysian Indo-Pacific Indochina indochinite indoctrinate/NnGSD indoctrination/M indoctrinator/SM indolence/SM indolent/Y indomitable/PY Indonesia/M Indonesian/S indoor indubitable/YP induce/nRuDLGVSNbv inductance/SM inductee/MS induction/M inductive/P inductivism inductivist/SM inductor/MS indulge/cGDS indulgence/cMS indulgent/c indulgently indulger/M industrial/8Q3-qS industrialised/U industrialism/SM industrialist industrious/PY industriousness/S industry/oMS indwell/G Indy/S inebriate/NnGDS inebriation/M inedible ineducable ineffability/MS ineffable/PY inelastic/Y ineluctable/Y inept/PY ineptitude/MS ineptness/S inequitable inequivalent inerrant inert/PY inertia/oMS inertial inertness/S inescapable/Y inessential inestimable/Y inevitability/MS inevitable/YP inexact/P inexhaustibility inexhaustible/YP inexorability/M inexorable/YP inexpedience/M inexpedient inexpense inexplicable/PY inexplicit inexplicitness inexpressibility/M inexpressible/SP inextricable/Y infallible infamous infamy/SM infancy/M infant/SM infanticide/SM infantile infantilisation infantilise/SGD infantilism infantility/S infantilize/SGDN infantry/mMS infarct/SM infarction/SM infatuate/DSGnN infatuation/M infauna infaunal infeasible infect/EDGAS infected/U infecter infection/EMSA infectious/YP infectiousness/S infective infectivity infelicitous infer/DS7G inference/GSM inferencer inferential/Y inferior/MYS inferiority/SM infernal/Y inferno/MS infertile infest/nSDGNR infestation/M infidel/MS infighting/M infill/GM infiltrate/V infiltrator/MS infinite/VZ infinitesimal/YS infinitival infinitive/MS infinitude/SM infinitum infinity/MS infirm infirmarer infirmary/SM infirmity/SM infix/MDG inflame/XN inflammation/M inflammatory inflatable/SM inflate/DSGNn inflated/c inflater/M inflation/EMyS inflect/GxSVD inflection/SM inflexed inflexion/SM inflict/DGS inflicter/M infliction/MS infliximab inflow/GM influence/RDGMS influenced/U influential/Y influenza/MS influx info/S infographic/S infolded infomania infomaniac/S infomediary/S infonaut/S inform/aNGDS informal informatics information/E informational/Y informative/UY informativeness/S informatory informed/U informer/M infotainment/MS infotech infowar infra infra-red/M infraclass/S infract/SGD infraction infractor/S infraorder/S infrared infrasonic infrastructural infrastructure/MS infrequent infringe/L infringer/MS infundibula infundibulum infuriate/SGDkN infuriation/M infuse/Rb infusible/P ingenious/YP ingeniousness/S ingenuity/MS ingenuous/YP ingenuously/E ingenuousness/S Ingersoll ingest/DGbVS ingestion/SM Ingham inglenook/SM Inglis ingoing ingot/SM ingrain/h Ingram ingrate/M ingratiate/nGDSkN ingratiation/M ingredient/MS ingress/SNM ingression/M Ingrid/M inguinal ingénue/S inhabit/7d inhabitability inhabitable/U inhabitance inhabited/U inhalant/S inhalation/M inhalational inhalator inhalator's inhale/NnR inhere/DSG inherent/Y inherit/EdS inheritable/P inheritance/EMS inheritor/S inheritress/SM inheritrix/MS inhibit/SVdyXN inhibited/U inhibiter's inhibiting/U inhibition/M inhibitor/MS inhold/JG inhomogeneous inhospitable/P inhospitality inhuman inhumane inimical/Y inimitable/YP iniquitous/PY iniquity/SM initial/GQs-89qDSY initialise/ASKDG initialised/U initialism/S initialize/ASnDGN initialized/U initialler initialness initiand/S initiate/NDGSnVy initiated/U initiation/M initiative/SM initiator/SM inject/SGDV injectable/S injection/MS injector/SM injunctive injure/RDGSZ injured/U injurious/PY ink/GR2ZMSD inkberry/S inkblot/MS inkhorn inkiness/S inkjet inkling/SM inkstand/SM inkwell/SM inky/TP inlaid inland inlay/GS inlet/MS inlier/MS inline/SGD inly/G inmate/SM inmost inn/MJS innards innate/PY innateness/S innatism inner-city inner/S innermost innersole/S innerspring innervate/SGDnN innervation/M inning inningses innkeeper/MS innocence/SM innocent/TYS innocuous/PY innocuousness/S innominate innovate/NVnGuDSyv innovation/OM innovator/SM Innsbruck innuendo/DGMS innuendoes innumerability/M innumerable/PY innumerate/B innutrition innutritious inoculate/VGNDSn inoculated/A inoculates/A inoculating/A inoculation's inoculation/A inoperative inopportune/P inordinate/YP inorganic/Y inotropic inpatient/MS input/SGM inquest inquire/kRDGZ inquiry/SM inquisition/SoM inquisitional inquisitive/PY inquisitiveness/S inquisitor/oMS inquisitorial inroad/SM inrush/GSM ins ins. insalubrious insane insatiability/MS insatiable/PY inscribe/RNX inscription/M inscrutability/SM inscrutable/YP inscrutableness/S insectarium/S insectary/S insecticidal insecticide/MS insectile insectivore/MS insectivorous insectoid/S insecure inseminate/NnDSG insemination/M insensate/YP insentience/S inseparability/MS inseparable/PS insert/DGAS insertable inserter/MS insertion/SMA inset/G inshore inside-out inside/R insidious/PY insidiousness/S insight/6j insightfulness insigne's insignia/MS insincere insinuate/DGknNSV insinuation/M insinuator/SM insipid/Y insipidity/SM insist/DSGk insistence/MS insistent/Y insofar insole insolence/SM insolent/Y insolubility/S insoluble/PSY insolvent/Y insomnia/SM insomniac/S insomuch insouciance/SM insouciant/Y inspect/AGSD inspectingly inspection/SM inspectional inspective inspector/SM inspectorate/MS inspectors' inspiration/M inspire/xNnGk inspired/U inspirer/M inspiring/U inst/g Instagram/M install/ADGS installable installant installation/SMA installer/MS instalment/MS instance/GD instant/SYM instantaneous/PY Instantbird instanter instantiate/SGDNn instantiated/U instantiation/M instantness instar/S instate/ALSDG instead instep instigate/SVnDNG instigation/M instigator/MS instil/SRNnGD instillation/M instilment instinct/vVMS instinctual institute/MDxRGSV instituted/A institutes/M instituting/A institution's/A institution/SM institutional/Q8-q institutionalism/M institutionalist/M instruct/VvuGxDS instructed/U instruction/SM instructive/P instructor/SM instrument/GNoSDnM instrumental/3S instrumentalise/SGD instrumentalism instrumentalist instrumentality/SM instrumentalize/SGD instrumentation/M insubstantiality insufferable/Y insufficiency/S insufflator/S insula insulae insular/Y insularity/MS insulate/DSnNG insulated/U insulation/M insulator/MS insulin/MS insult/DGkS insulter/M insuperable/Y insupportable/P insurable/U insurance/FMSA insure/DRSG insured/U insurgence/ZSM insurgency/SM insurgent/SM insurmountable/Y insurrection/3MS insurrectionary insurrectionist inswing/GR intact/P intaglio/SMGD intake/M intangible/M intarsia integer/MSNn integrability/M integrable integral/SMY integrand/SM integrate/EADSGN integration/AME integrationist/S integrations/E integrative integrator/MS integrity/MS integument/SM integumental integumentary Intel/M intellect/SM intellectual/Q8YPS intellectualism/SM intellectualist/S intellectualistic intellectuality/M intelligence/MS intelligencer's intelligent/UY intelligentsia/MS intelligibility's/U intelligibility/SM intelligible/UY intelligibleness/M intelligibly/U Intelsat intemperance/S intemperate/P intemperateness/S intend/uhViv intendant/MS intended/U intendedness/M intense/P intenseness/S intensification/M intensify/RNnDSG intension/Oo intensity/MS intensive/PS intensiveness/S intent/PY intention/DSoM intentional/UY intentionalism intentionality/M intentness/S inter-agency inter-allied inter-class inter-modal inter-personal inter-urban inter/ELDG interact/SVDGvu interactant interaction/SM interactional interactionism interactionist interactivity interarticular interatomic interaxial interbank interbed/D interbred interbreed/GS intercalary intercalate/DGVSN intercalation/M intercase intercaste intercede/GSD interceder/MS intercellular intercensal intercept/GSD interception/MS interceptive interceptor/SM intercession/MS intercessor/SM intercessory interchange/SlGBD interchangeability/M interchangeable/P interchanger/M InterCity intercity interclass intercohort intercollegiate intercolonial intercolumnar intercolumniation intercom/MS intercommunicate/DGnNS intercommunication/M intercommunion intercommunity interconnect/GDiS interconnected/P interconnection/SM interconnectivity intercontinental intercontinentally interconversion/M intercool/DR intercorrelate/D intercorrelation/S intercostal/YS intercourse/MS intercrop/SGD intercross/SG intercultural interculturalism intercut/SG interdenominational/Y interdental interdepartmental/Y interdependence/SMZ interdependency/MS interdependent/Y interdict/DGMVS interdiction/SM interdigital interdimensional interdisciplinary interest/EDhSMG interested/UY interesting/UY interestingness/M interethnic interface/GSMD interfacer interfacing/M interfaith interfere/kRSGD interference/MS interferometer/WSM interferometry/M interferon/SM interfertile interfile/SDG interfix/SGD intergalactic intergeneration/oM intergenerational interglacial intergovernmental intergrew intergroup intergrow intergrown intergrowth/S interim/S interindex interindustry interior/YMS interject/xGSD interjection/SM interlace/DGS interlanguage interlard/DSG interlayer/S interlayering interleaf interleave/CGDS interleaver/SM interleukin/S interlibrary interline/SDGJ interlinear/S interlingua's interlingual interlining/M interlink/DSG interlinkage interlobular interlock/GSD interlocker/M interlocutor/MS interlocutory interlope/SDRG interlude/MS intermarriage/MS intermarry/SGD intermedia intermediacy/S intermediary/MS intermediate/YNMPGDS intermediation/M intermediator/S intermedium intermembrane intermeshed intermetallic intermetrics intermezzi intermezzo/SM interminable/PY intermingle/DSG intermission/SM intermit/SGD intermittence/S intermittency intermittent/Y intermix/GSD intermixable intermixer intermixture intermodal intermodulate/SD intermodulation/M intermodule/Nn intermolecular/Y intermuscular intern/GLDxo internal/s9SQ8q- internalness internarial internasal internation international/3Q8-qS internationalism/MS internationalist internationality/M internecine internee/SM internegative/S internet Internet/M internetwork interneural interneuron/S interneuronal interneurone/S internist's internode/S internship/S internuclear interoceptor/S interocular interoffice interop interoperate/BDNSG interpenetrates interpenetration interpersonal/Y interphase interplanetary interplant/SGD interplay/MGDS Interpol/M interpolar interpolatable interpolate/DNnSVG interpolation/M interpose/SNDXG interposer/M interposition/M interpositive/S interpret/daNAnS interpretability interpretable interpretation/AMa interpretative/Y interpreted/U interpreter/aMS interpretive/Y interpretor/S interprocess interprocessor interquartile interracial interregional/Y interregnum/MS interrelate/SnGihND interrelated/P interrelation/M interrelationship/SM interreligious interrogate/SGNyvDVn interrogation/M interrogative/S interrogator/MS interrogatory/S interrupt/DGSbRV interrupted/U interruptibility interruption/MS inters intersect/GSD intersection/SM intersectional intersectionalism intersectionality intersegmental/Y intersession/SM intersex/S intersexual intersexualism intersexuality intersexually interspace/SD interspecies interspecific/Y intersperse/DSNXG interspersion/M interspinal interspinous interstadial interstage interstate/S interstellar interstice/SM interstitial/SY intersubjective/Y intersubjectivity intersurvey intertask intertextual intertextuality intertextually intertidal intertrack intertwine/DSG interurban/S interval/SM intervene/SDG intervener/M intervenor/M intervention/OSM interventionism/MS interventionist/S intervertebral interview's/K interview/ADGS interviewee/MS interviewer/MS intervocalic intervocalically interwar interweave/SG Interweb interwind interwork/SGD interwound interwove interwoven intestacy/MS intestate/S intestinal intestine/SoM intifada intimacy/MS intimal intimate/DYPGNSn intimater/M intimation/M intimidate/NDSkGyn intimidation/M intl intolerable/P intonate intonation/M intone/xnN intoxicant/SM intoxicate/GDhnNS intoxication/M intra intracellular/Y intracity intraclass intracohort intracompany intracranial/Y intractability/SM intractableness intradepartmental intradermal/Y intrados intrafamily intragenerational/Y intraindividual intraindustry intraline intrametropolitan intramolecular/Y intramural/Y intramuscular/Y intranasal intranet/S intransigence/MS intransigent/SY intransitive/S intransitiveness/S intranuclear intraocular intraoffice intraoperative intrapartum intraperitoneal intrapetiolar intraprocess intrapulmonary intraregional/Y intrasectoral intrasexual intraspecific intrastate intrathecal/Y intratissue intrauterine intravaginal intravascular/Y intravenous/SY intrepid/PY intrepidity/MS intricacy/MS intricate/PY intrigant intrigue/RSkDG intrinsic/YS intro/S introduce/DSAnNG introducer/SM introduction/MA introductory introgression introit/SM intron/S intronic introrse introspect introspection/SM introspective/PY introversion/SM introvert/GSDM intrude/RuNXSDGVv intrusion/M intrusive/P intrusiveness/S intubate/SNDG intubation/M intuit/vSVXu7N intuited intuitionalism intuitionism intuitionist/SM intuitive/P intuitiveness/S Inuit inulin inunction inundate/nSNG inundation/M inure/GDS invade/RXVuDGSN invaginate/D invagination/S invalid/MdS invalidism/MS invaluable/P Invar/M invariant/MY invasion/M invected invective/YPMS inveigh/GSD inveigher/M inveigle/RSGD inveiglement invent/uVyv invented/A invention/AMS inventive/P inventiveness/S inventor/SM inventory/MDSG inventress/MS invents/A Inverclyde/M Inverness/M inverse/Y invert/RGSDb invest/bBALE invested/A investee/MS investigable investigate/AGDSN investigation's/A investigation/MS investigative investigator/SM investigatory investiture/SM investment/f investor/SM invests/A inveteracy/SM inveterate/Y inviability inviable invidious/YP invidiousness/S invigilate/DG invigilator/MS invigorate/AGDNSn invigorating/Y invigoration/MA invincibility/MS invincible/PY inviolability/MS inviolable/Y inviolate/PYB inviscid invisible/PS invitation/oM invitational invite/GSkNnD invited/U invitee/S inviter/M inviting/U invokable invoke/RnDGNS involuntariness/S involuntary/P involute/S involution/SM involve/LGhSD involved/U involver/M invulnerability/M invulnerable/P inward/YP iodate iodide/MS iodine/M iodise/GDS iodize/GDS Iolanthe/M ion's/U ion/s9MWqQ8-S Iona Ionian ionise/CRSGD ionize/BCRSGD ionosphere/SMW ions/U IOPS iOS/M iota/SM IOU Iowa IP/S IPA iPad/S ipecac/SM Iphigenia/M iPhone/S iPod/S ippon/S IPR IPS ipso Ipswich/M IQ/S Iqaluit Iqbal IR Ira Iran/M Irani Iranian/SM Iraq/M Iraqi/MS irascibility/SM irascible/Y irate/TY irateness/S IRC IRCop/S ire/6SDMG Ireland/M Irene irenic/S irides's iridescence/MS iridescent/Y iridium/M iridologist/S iridology iris/MS Irish/m5 Irishwomen/M iritis irk/DSG irksome/PY irksomeness/S Irkutsk Irma iron/wMSd1W ironclad/S ironer/S ironical/P ironing/M ironmaster/S ironmonger/ZSM ironmongery/M ironness ironside/SM ironstone/SM ironware/SM ironwood/MS ironwork/MS ironworker/M ironworking irony/MS Iroquoian Iroquois irradiance irrational/S irreconcilability/MS irreconcilable/PYS irrecoverable/YP irrecusable irredeemability irredeemable/YS irredentism/M irredentist/M irrefutability irrefutable/Y irregardless irregular irrelevance/S irreligion irreligionist irreligious irreligiously irreligiousness irremediable/PY irremissible irremovability irremovably irreparable/YP irreplaceableness irreplaceably irrepressible/Y irreproachability irreproachable/PY irreproducible irresistibility/M irresistible/P irresolute/P irresoluteness/S irresponsible/S irresponsive irresponsiveness irretrievable/Y irreverential irrevocable/YP irrigable irrigate/GDNnS irrigation/M irrigator/S irritability/SM irritable/PY irritant/S irritate/BnSkNhVDG irritation/M irrupt/DGVS irruption/MS IRS Irvin/M Irvine Irving Irwin/M is Isaac/M Isaacson Isabel/M Isabella/M isabgul Isadora/M Isaiah/M ISBN/S Iscariot ischaemia ischaemic ischia ischial ischium isentropic isethionate isethionic Ishiguro/M Ishmael Ishtar/M isinglass/SM ISIS/M Isis/M isiZulu Isl. isl. Islam/M Islamabad/M Islamdom Islamic Islamism/M Islamist/S Islamistic Islamite Islamitic Islamitish Islamofascism Islamofascist Islamophobe Islamophobia Islamophobic island/RSM Islay/M isle/SM islet/MS Islington/M ism/SMC isn't ISO/MS isobar/SWM isobutyl isochromatic isochronal/Y isochronous/Y isocline/M isocyanate/M isodine isoelectronic isoflavone/S isolate/SnNDG isolated/K isolation/3M isolationism/SM isolationist/W isolator/SM Isolde/M isomer/MS isomerase/S isomeric isomerism/SM isometric/YS isometrics/M isometry isomorph/WM1 isomorphism/MS isoperimetrical isopleth/SM isopod/S isoprene isoprenoid isopropyl isosceles isospin isostatic isotherm/MSo isothermal isothiocyanate/S isotonic isotope/SMW isotopically isotopy isotropy/1MW isotype ISP/S ispaghul ispaghula ispell/M Israel/M Israeli/SM Israelite/SM ISS Issaquah/M ISSN issuably issuance/SM issuant issue/RG7DMS issued/A issueless issues/A issuing/A Istanbul/M isthmian isthmus/MS it'd it'll it/M4SU Italian/SM Italianate italic/Q8q-S Italy/M Itanagar Itanium/M itch/GM2ZzDS itchiness/S itchy/TP item/qsQ98-SM itemised/U iterate/nAGDNSV iteration/M iterative/Y iterator/SM Ithaca Ithacan itinerant/SY itinerary/SM Ito/M its itself ITT ITU iTunes ITV IU IUD/S iv/M Ivan/M Ivanchuk/M Ivanhoe Ives IVF Ivorian/S ivory/SM ivy/DMS ix ixia/S Ixion/M Iyengar/M J j j'adoube jab/GMDS Jaban/M Jabba/M jabber/SdrJ jabiru/S jabot/SM Jabotinsky/M jacamar/S jacana/S jacaranda/MS Jacen/M Jacinto/M jack-in-the-box jack-o'-lantern/S jack/MDRSJG jackal/SM jackanapes jackass/SGDM jackboot/MSD jackdaw/MS Jackendoff/M jacket/dSM jacketed/U jackfruit jackhammer's jackhammered jackhammering Jackie jackknife/DGMS jackknives Jacklyn jackpot/MS jackrabbit/SM Jackson/MS Jacksonville jackstay Jacky Jacob/S Jacobean Jacobi/M Jacobian Jacobin Jacobite Jacobsen Jacobson/M Jacoby Jacopo/M jacquard/MS Jacqueline Jacques jacuzzi jade/iDMhS jaded/P jadedness/S jadeite/MS Jaeger/M jag/ZDhGiS jagged/P jaggedness/S Jagger jaggery jaggy/T jaguar/MS jaguarundi/S jail/RMDGS jailbird/SM jailbreak/RSM Jaime/M Jain/S Jaina/M Jainism Jaipur Jakarta/M Jake/S Jakob jalapeño/S jalopy/SM jalousie/SM jam's jam/UDG Jamaica/M Jamaican/S jamb/GMDS jambalaya/SM jamboree/SM James/M Jameson/M Jamestown/M Jamie/M Jamil/M jamless jammer/S jams Jan Jana Janacek Jane/M Janeiro Janesville Janet/M Janeway/M jangle/DRSGY Janice Janis janissary/SM janitor/SM janitorial Janos Jansen January/SM Janvier/M Jap/S Japan/M japan/SGD Japanese/M jape/GSMD jar/MG6JSD Jardine jardinière/MS Jared/M jarful/S jargon/M jarring/Y Jarvis jasmine/SM Jason/M jasper/MS Jastrow/M jato/MS Jaume/M jaundice/SMGD jaunt/Mz2GZS jauntiness/S jaunty/PT Java/M Javanese JavaScript javelin/MS Javi/M jaw/pMDGS jawbone/SDM jawbreaker/SM jawline jay/MS Jayakumar/M Jayasuriya jaybird/MS Jaycee/S Jaynes/M jaywalk/GDSRJ Jazeera jazz/S2GMDZ jazzmen jazzy/PT jaçana/S jct jealous/YPZ jealousy/SM Jean jean's Jean-Luc/M Jeana Jeanette/M Jeanie Jeanne Jeannie jeans Jedi/SM jeep/S Jeep/SM jeer/MDJSGk jeerer/M Jeeves jeez jeeze Jeff/M Jefferies/M Jefferson/M Jeffersonian Jeffersontown Jeffords/M Jeffrey/S jeggings jehad's Jehoshaphat Jehovah/M jejuna jejune/PY jejunum/M Jekyll jell/DYGS jello's jelly/DGMS jellybean's jellyfish/MS jellying/M jellylike jellyroll/S jemmy/M Jen/M Jena/M Jenkins/M Jenkyn/M Jenner jennet/SM Jennie Jennifer Jennings jenny/SM Jens/M Jensen/M Jenson jeopardy/MQ8S jeremiad/SM Jeremiah Jeremy/M Jericho/M jerk/zGZSD2 jerker/M jerkin/MS jerkiness/S jerky/TP jeroboam Jerome jerrican/S jerry-builder/S jerry-building jerry-built jerry/M jerrycan/S Jersey/M jersey/MS Jerusalem/M Jervis Jespersen/M jess/M Jesse/M Jessica Jessie Jessop/SM jest/kMDRGS Jesuit/S Jesuitical/Y Jesus jet-black jet-lag/D jet-propelled jet-setted jet-setter/SM jet-setting jet/MDGS Jethro jetliner/SM jetsam/MS jetting/M jettison/dS jetty/MS Jew/MSy jewel/RGSMD jeweller/Z jewellery/M Jewess/SM Jewish Jewishness Jezebel/S jg/M Jiangxi jib-boom/S jib/DMGS jibe/S jiff/ZS jiffy/MS jig/DRSGM jigger/dZ jiggery-pokery jigging/M jiggle/DSYG jiggly/T jigsaw/MS jihad/MS Jillie/M jilt/DGS jilter/M Jim/ZM Jimenez jimmied jimmy's jimmying jingle/YGDS jingler/M jingly/T jingo/M jingoism/SM jingoist/WSM jink/DSG jinn/MS jinni's jinrikisha's jinx/SGMD JIT/SGD jitsu jitter/SZ jitterbug/RGSDM jittery/T jiu jiu-jitsu jiujitsu's jive/MDGS jnr. Jo'burg Jo/M Joachim/M Joan Joanna Joanne/M Joaquin job/RpGSDM jobber/Z jobbery/M jobbing/M jobholder/SM jobless/P joblessness/S jobseeker/MS Jobst/M jock/MS jockey/SDGM jockstrap/MS jocose/PY jocoseness/S jocosity/SM jocular/Y jocularity/MS jocund/Y jocundity/MS jodhpurs Jodie Joe/M Joel/M joey/M jog/RJDSG joggle/DGS joggler/M Johan Johann Johanna/M Johannes Johannesburg/M Johansen john's John/S Johnnie/M johnny-come-lately johnny/SM Johnson/M Johnston/M Johnstone Johnstown join/FRSDG joined/A joiner/Z joinery/SM joins/A joint's joint-stock joint/FYE jointed/EPY jointer/M jointing/E joints/E jointures joist/SMD joke/ZDRMSGk jokesmith/S jokester jokey joky/YT Jolene/M Jolla/M jollification/SM jolliness/S jollity/SM jolly/SPTYDG jolt/DSRG Jon/MZ Jonah/M Jonas Jonathan Jones/SM jong/M jongg/M jonquil/SM Joplin Jordan/M Jordanian/S Jorge Jorgensen Jorgenson Jose Josef Joseph/M Josephine Josephson Josephus Josh Joshua/M Josiah Josie/M joss/M jostle/SGD Josuttis José/M jot/RJSDG jotting/M joule/SM jounce/SGD journal/9Q83sSM journaled journalese/MS journaling journalism/SM journalist/W journey/RmSMDJG joust/MRGSD Jovanovich Jovanović/M Jove jovial/Y joviality/SM Jowell/M jowl/YSM jowly/T joy/pMDG6jS Joyce joyed/c joyful/PT joyfulness/S joyless/PY joylessness/S joyous/YP joyousness/S joypad joyridden joyride/RGMS joyrode joystick/S João/M JPEG/S jpeg/S jpg JPG JPY Jr JSON ju-ju/M ju-jutsu ju/y Juan Juanita jubbly jubilant/Y jubilate/GDNnS jubilation/M jubilee/SM Judaeo-Christian Judah Judaic Judaism/M Judas Judd/M judder/dS Jude/M Judea judge's judge/DKLaGS judgement-seat judgement/o judgemental judger/M judgeship/SM judicature/SM judicial/KY judiciary/MS judicious/IYP judiciousness/IS Judith judo/MS judoka/S Judson/M Judy/M jug/6GDSM jugful/SM juggernaut/SM juggle/RySDG jugglery/SM jugular/S juice/RZMDGS juiciness/S juicy/YPT jujitsu/MS jujube/MS jujutsu's jukebox/MS Jul julep/SM Jules Julia/M Julian/M Juliana Julie/M Julien/M julienne/S Juliet/M Julio Julius July/MS Julys jumble/GDS jumbo/SM jump-off jump-start/G jump/zR2ZSDG jumpiness/S jumpsuit/S jumpy/TP Jun Junagarh junco/MS junction/FSMIE juncture/FMS June/M Juneau juneberry/S Jung/M Jungfrau Jungian jungle/SM junglefowl junior/MS juniority/M juniper/SM junk/MDRZGS junket/SdM junkie/M junky/TS Juno Junoesque Junr junta/MS Jupiter/M Jurassic jurat/S Juri/M juridical/Y juries/I jurisconsult/S jurisdiction/oMS jurisdictional jurisprudence/MS jurisprudent jurisprudential/Y jurist/W juror/MS jury's/I jury/35DmMSG Jussi/M jussive just/TPY juster/M justice/IMS justiciable justifiability/M justifiable/U justifiably/U justification/M justificatory justified/U justify/RlBDNSGn Justin Justine Justinian/M Justinus/M justly/U justness/U justnesses Justus/M jut/SGD jute/MS Jutland/M Juvenal juvenescence juvenescent juvenile/SM juvenilia juvenility juxtapose/SDXGN juxtaposition/M JVM/S Jörg/M K K-factor k/k ka Kabbala Kabbalah Kabbalism Kabbalist/S Kabbalistic kabob's kaboom kabuki/MS Kabul/M Kaczorowski/M kaddish/S Kadlec/M Kafka/M Kafkaesque kaftan Kagoshima Kahn/M kaiser/SM Kalahari Kalamazoo Kalashnikov kale/MS kaleidoscope/SWM1 Kalgoorlie/M Kali kalian/S Kallang/M Kalpage/M Kamasutra Kamchatka/M Kamen/M kamikaze/SM Kamino/M Kampala/M Kampf Kampuchea/M kana Kandahar Kandy Kane/M kangaroo/SM kanji Kannada Kano Kanoa/M Kansai Kansas/M Kant/M Kantian Kantianism kaolin/WQ8M kaolinite kaon/S kapellmeister/M Kaplan/M kapok/M Kaposi/M kappa/M kaput/M Kara/M Karachi/M karaka Karakoram karakul/M karaoke karat's karate-chop karate/M karateka/S Karen Kari/M Karl Karloff/M karma/SM karmic Karn/M Karnak/M Karp/M Karsten/M kart/MSG Kartikaya Kasai Kashmir Kasparian Kasparov/M Kaspersky/M Kasprowicz Kassebaum/M Kassel/M Kassner/M Kastrup/M katakana katana/S Katarn/M Kate/M Kath/M Katharine/M Katherine Kathleen Kathmandu/M Kathryn/M Kathy Katie/M Katmai Katrina/M katsura/S Kattegat katydid/MS Katz Kauai Kauffmann/M Kaufman/M Kaunda Kawasaki Kay kayak/MS Kayla/M Kaylee/M kayo/MSDG Kazakh Kazakhstan/M kazoo/SM Kazue/M kB kb kbit kbps kbyte/S kc/M kcal/M KDE/M Keane/M Kearney Kearns/M Kearwood Keating Keaton/M Keats/M kebab/SM Keble/M Keck/M kedgeree/S Keegan keel/DGMS keelboat/S Keele/M keeler keelhaul/GDS keen/TGDPY Keenan keener/M keening/M keenness/S keep-fit keep/JSGR keeping/M keepsake/MS keg/SGMD Kegan/M Keighley Keillor/M Keith Kelemen/M Kelk/M Keller/M Kelley Kellogg Kelly/M kelp/DGSM kelpers Kelsey/M kelvin/SM Kemp Kempston ken/GSMD Kendal Kendall/M kendo Kendra/M Kenelm/M Kenilworth Kenji/M Kennedy/M kennel/DSGM Kennell/M Kennet Kenneth Kenney Kenny keno's Kenobi/M Kenosha Kensington Kent/M Kenton/M Kentucky Kenya/M Kenyan/S Kenyatta Kenyon/M Keough/M kepi/MS Kepler/M kept Kerala/M keratin/MS keratinocyte/S keratitis kerb/SM kerbside kerchief/SDM Kerckhoffs/M Kerensa Kermit Kern kerned kernel/SM Kerner/M kerning kerosene/MS Kerr/MZ Kerry/M Kershaw Kessler/M Kesteren/M Kesteven kestrel/SM ketch/MS Ketchum/M ketchup/SM ketone/MS ketonic ketosis/M Kettering kettle/6SM kettlebell kettledrum/MS Kev/M Kevin/M Kewaskum Kewaunee Kewell Kewisch/M Kewpie Kexi/M key/DSGM keyboard/GMDRS keyboardist/S keyclick/MS keyer/S Keyhoe keyholder/S keyhole/SM keyless keylogger/S keylogging Keynes Keynesian keynote/SRGMD keypad/SM keypair/S keypal/S keyphrase/S keypress/S keypunch/GRDS keyring/S keyserver/S keyspace/S keystone/SM keystream/S keystroke/MDS keyword/SM kg KGB Khabarovsk Khachaturian khaki/MS Khalid khan/MS Khartoum/M Khmer Khoisan Khomeini/M Khrushchev Khyber kHz/M Ki-moon/M Kiangsi KiB kibble/DSGM kibbutz/M kibbutzim kibibit/S kibibyte/S kibitzer's kibosh/SM kick-boxer/S kick-boxing kick-off/MS kick-start/SDG kick-turn/S kick/ZRSDG kickback/MS kickball's kickballs kickflip/S kickstand/SM kicky/T kid-glove kid/RDMSGp Kidd Kidderminster kiddie/S kidding/MY kiddish kiddo/SM kiddy's Kidman/M kidnap/DRGJS kidney/MS kidology Kieffer/M Kiel/M Kieran/M Kiev/M kif kif-gloves Kigali/M Kikuyu/M Kilauea Kilbride/M Kildare/M Kildavin Kilimanjaro/M Kilkenny/M kill/SRkJ7GD Killarney/M killdeer/SM killed/c killfile/SGD killifish/S killing/c killjoy/S kills/c Kilmarnock/M Kilmore/M kiln/SM kilo/MS kilobase/S kilobaud/M kilobit/S kilobuck kilobyte/S kilocalorie kilocycle/MS kilogauss/M kilogram/SM kilogramme/S kilohertz/M kilohm/M kilojoule/SM kilolitre/SM kilometre/SMW kiloton/SM kilovolt/SM kilowatt-hour kilowatt/SM kiloword kilt/SMD kilter Kim Kimball/M Kimberley Kimberly/M Kimble/M kimono/SM kin/5SmM kinaesthetic/YS kinase/S Kincaid/M kind-hearted/YP kind-heartedness/S kind/PSTY kinda kindergarten/SM kindergartener/S kindergärtner/SM Kinderhook/M kindest/U kindle/DSAG kindler/M kindliness/S kindling/M kindly/PT kindness/S kindred kine/M kinematic/S kinematics/M kineses kinesics kinesiological kinesiologist/S kinesiology kinesis kinetic/YS kinetics/M kinetoplast/S kinetoscope/S king-size/D king/MDSG Kingan/M kingbird/SM kingdom/SM kingfish/S kingfisher/MS kinglet/M kingly/TP kingpin/MS Kingsbury Kingsford/M kingship/SM Kingsley Kingston/M Kingstown Kingwood kink/2MGDZSz kinked kinkiness/S kinky/TP Kinney/M Kinnock/M Kinross/M Kinsella/M Kinsey kinsfolk Kinshasa/M kinship/MS kiosk/MS Kiowa kip/SDGMR Kipling/M kipper/d Kirby Kircher/M Kirchner/M Kircubbin Kirghiz kiri Kiribati/M kirk/SM Kirkland Kirkpatrick Kirkwall/M Kirkwood Kirov/M kirsch/S Kirsten/M Kisangani kismet/MS kiss/DGRSJ7 kit/GMZrDS Kitakyushu/M kitbag/M kitchen/SM Kitchener kitchener's kitchenette/MS kitchenware/SM kite-flying kite/MS kiteboard/SGD kitenge kitesurfer/S kitesurfing kith/MS kitsch/ZSM kitten/MdS kittenish/YP kittiwake/SM Kitts/M kitty/MS Kiwanis kiwi/SM kiwifruit/S KKK/M kl Klan Klandasan Klansman Klaus/M Klawe/M klaxon/M Kleenex Klein/M kleptocracy/S kleptocrat/S kleptocratic kleptomania/MS kleptomaniac/SM kleptoparasite/S kleptoparasitic kleptoparasitism Klerksdorp/M Kline/M Klingon/S Klondike Klopfer/M kludge/RGSDM kludgey klutz's Klux Kluxer/S klystron/SM km kn knack/SRM knacker/Z knackered knackish Knapp/M knapsack/MS knapweed/S Knauth/M knave/MyS knavery/SM knavish/Y knead/RDGS knee-deep knee-high/S knee-jerk knee-length knee/GdMS kneecap/SGMD kneehole kneel/DRGS knees-up knell/GMSD knelt Knesset knew knick knick-knack/SM knick-knackery knick-knackish knickerbocker/S knickers knife-edge knife/SGMD knifefish/S knifepoint knight-errantry knight/GMDYS knighthood/SM knightliness/S knightly/P knish/SM knit/RGSDJ knitbone knitting/M knitwear/M knives/M knob/ZMS knobble/S knobbly knobby/T Knobloch/M knock-down/S knock-kneed knock-on knock-out knock-up knock/RDJSG knockabout/M Knockhill/M knocking-shop knockout knockwurst's knoll/DSGM Knossos/M knot/ZMS2GD knothole/MS knotting/M knotty/TP know-how know-it-all know/GJk7S knower/M knowing/T knowingly/U knowingness knowledgable knowledge/BSlM knowledgeable/P Knowles known/US Knox Knoxville knuckle/SDMG knucklebone/S knuckleduster/S knucklehead/SD Knudsen Knudson knurl/DS Knuth/M Knutsen Knutson KO KO'd KO'ing KO's koala/MS Kobayashi Kobe Koch Kodachrome/M Kodak/M Kodaly Kodiak Koelmeyer Koenig Koenigsberg Koertzen Kofi Koga/M Kohl Kohler kohlrabi/M kohlrabies Kokoda/M kola/SM Kolonia/M Kong Konrad/M Koocher/M kook's kookaburra/SM kookiness/S kooky/YT kopeck/MS kopeks Koran/M Koranic Korea/M Korean/S Koror/M Kosciusko kosher Kosovo/M Kossa/M Kostova/M Kourou/M Kovacs Kowalski/M Kowanyama/M Kowloon kowtow/GDS kph kraal/MS Kraemer kraft/M Krakatoa kraken/S Krakow Kramer/M Krause Krebs Kreisky/M Kremlin/M Kremlinologist Kremlinology Kresge/M Krieger/M kriegspiel/M krill/MS Kris Krishna Krista/M Kristin/M Kristina Kristine Kristy/M Krohn/M krona/M krone/M Kronecker/M kroner kronor Kronos/M kronur Kropotkin Krueger Kruger Krugman Kruno Krupp Kruse/M krypton/M Krzanich/M KS kt. Ku Kuala/M Kublai Kubrick/M Kubuntu/M kudos/M kudzu/SM Kuenning/M Kuhn/M Kuiper/M kulaks Kumar kumquat/SM kung Kuomintang Kurd/SM Kurdi/M Kurdish Kurdistan/M Kurmann/M Kurosawa/M Kurt/M kurtosis/M Kurtz/M Kurtzman/M Kuru/M Kurzweil/M Kuster/M Kuwait/M Kuwaiti/S kV kW KwaNdebele kwanza/S KwaZulu KwaZulu-Natal kWh kyanite kyanitic kyle/SM Kyoto/M Kyrgyzstan/M kyu kyudo Kyushu/M l/3 l10n La'youn/M la/M Lab lab/oMS Labatt/M label's label/aGDSA labella labelled/U labeller/MS labelling/S labellum labia/M labial/S labile labiodental labium/M laboratory/SM laborious/YP laboriousness/S labour-intensive labour-saving labour/JShRikGDM laboured/MP Laboureur/M labouring/M labradoodle/S Labrador labradorite labroid Labrusca laburnum/MS labyrinth/SM labyrinthine lac/DGSM Lacan/M Lacanian/S Lacanianism lace's lace-ups lace/USGD lacer/MV lacerate/NGDnS laceration/M lacewing/MS Lacey/M Lachman/M lachrymal/S lachrymose lacing/M lack/MS lackadaisical/Y lackadaisicalness Lackawanna lackey/MDGS lacklustre Lacock laconic/Y lacquer/SrdM lacquerware lacquerwork lacrimal lacrosse/MS lacrymal lactam/S lactate/SNMnDxG lactation/M lacteal/S lactic lactone/S lactose/SM lacuna/SM lacunae lacustrine lacy/T lad/MRDJSG Ladbrokes ladder/d laddie/MS laddish/P lade/ZG Laden's laden/Uc lading/M ladle/GSMD lady-killer lady/MS ladybird/SM ladybug/SM ladyfinger's ladylike/U ladylove/MS Ladyship/MS laetriles laevorotatory laevulose Lafayette lag/SrDJG lagena lagenae laggard/PYMS lagging/M lagniappe's lagoon/SM lagoonal Lagos/M Lagrange/M Lagrangian/M Laguerre Laguna Lahore/M laid/Aacf lain/fc lair/MGDS laird/SM laissez laissez-faire laity/MS lake/SM Lakehurst Lakeland Lakenheath/M lakeside Lakewood Lakoff/M Lakota/S Lakshadweep Lakshmi Lalita/M Lalo lam/GSD lama/SM Lamaism Lamar/M lamasery/SM lamb/MGDS lambada/S Lambarde/M lambaste/GSD lambda/MS Lambdin/M lambency/MS lambent/Y lamber Lambert Lambeth lambkin/SM Lamborghini/M lambskin/MS lambswool lame/YDPT lamebrain/MS lamed/M lamella lamellae lamellar lamellate lamellibranch Lamellibranchia lamellibranchs lamelliform lamellipodia lamellipodial lamellipodium lamellose lameness/S lament/SnDlG7N lamentable/P lamentation/M lamented/U lamers lamina/Mn laminae laminar laminate/DGS lamination/M lamish lamium/S lammergeier lammergeyer Lamont lamp-post/S lamp/GDSM lampblack/SM lampbrush lamper Lampeter lamplight/RSM lampoon/SDGM lampooner/SMZ lampoonist/S lamppost/SM lamprey/SM lampshade/MS lampstand lamé LAN Lana/M Lanai Lanarkshire/M Lancashire/M Lancaster/M lance/DRGMS lancelet/S Lancelot/M lancet/MS Lanchester/M land-use land/mJDRGSMp landau/M landaus lander/eMS landfall/SM landfill/SD landforms landhold/RGJ landing/M Landis landlady/SM landlines landlocked landlord/SM landlordism landlubber/MS landmark/SDGM landmass/MS landmine/S Landon/M landowner/SM landownership/M landowning/M landplane/S landrace/S landrail Landsburg/M landscape/GRMSD landside landslide/SM landslip/S landward/S Landwehr lane/SM Lang/M Lange Langer Langford Langland/M Langley Langlois/M Langmack/M langouste/S langoustine/S language/SM LanguageTool languid/PY languidness/S languish/SkDG languisher/M languor/SM languorous/Y lank/T2PYZ Lanka/M Lankan/S lankiness/S lankness/S lanky/TP lanolin/SM Lansbury/M Lansing lantern/MS lanthanide/M lanthanum/M lanyard/SM Laois/M Laos/M Laotian/S lap/DScGM laparoscope laparoscopic laparoscopically laparoscopy/S laparotomy/S lapboard/MS lapdog/S lapel/MS Laphroaig lapidary/SM lapin/MS lapis Laplace Lapland/RM Lapp lappet/MS laps/SGD lapse's lapse/FDAGS lapser/AM laptop/MS lapwing/SM Lara Laramie larboard/SM larcenist/S larcenous larceny/SM larch/MS lard/FMS larded larder/SM larding lardy/T Laredo Large large-scale large/TPY largehearted largemouth largeness/S largess/SM largesse largish largo/S lariat/DSGM Larine lark/MGDS larker/M Larkin/M larkspur/SM Larousse Larry/M Lars Larsen Larson larva/M larvae larval Larwood/M laryngeal/SY larynges laryngitides laryngitis/M larynx/M Las lasagne/M Lascelles/M lascivious/YP lasciviousness/S lase/SRG laserdisc/S lash-up lash/SDMJG lashed/U lasher/M lashing/M lass/MS Lasseter/M lassie/SM lassitude/MS lasso/MSDG lassoer/M last-ditch last-minute last/YDGSkJ lastage lasted/e lasting/P Lastingham/M lasts/e Laszlo/M latch/GMDS latched/U latches/U latching/M latchkey/SM late/PTY latecomer/MS latency/SM lateness/S latent/Y later/A lateral/FSY Lateran/M laterigrade laterite/W latest/S LaTeX/M latex/SM lath/SDRyGM Latham/M lathe/SM lather/d latherer/M Lathia/M lathing/M Lathrop latices/M Latin/M Latinate Latinism/S Latinist Latino/S latish latitude/MS latitudinal/Y latitudinarian/S latitudinary Latium/M latrine/SM Latrobe/M latte/S latter-day latter/YM lattice/GSDM latticework/SM latticing/M Lattimer Latvia/M Latvian laud/SlDG7 laudanum/MS laudatory lauder/M Lauderdale lauds/M Laue/M laugh/7RSlGkDJ laughable/P laughing/M laughingstock/SM laughter/SM Launce Launceston launch/GADS launcher/SM launching/S launchpad/S launder/rdS laundered/U launderette/MS laundress/SM laundrette/S laundromat/S laundry/5SmM Laura/M Laurasia Laurasian laureate/S laureateship/MS laurel/SMDG Lauren Laurence Laurent/M Laurie/M laurustinus Lausanne/M lava/SM lavage/SM Laval lavatera lavatorial lavatory/SM lave/DSG lavender/dSM LaVey Lavin/M lavish/DPTSGY lavishness/S law-abiding law/eSM lawbreaker/SM lawbreaking/SM lawful/UY lawfulness/MS lawgiver/SM lawgiving/M lawless/PY lawlessness/S Lawley/M lawmaker/SM lawmaking/M lawn/MS lawnmower/S Lawrence Lawrenceville lawrencium/M Lawrie/M Lawson lawsuit/SM Lawton lawyer/YMdS lax/vuTYSPV laxative/SMP laxes/A laxity/MS laxness/S lay-by lay-bys lay-off/SM lay/CRGS layabout/MS layer/dC layering/M layette/SM laying/ca layman/M laymen/M layout/SM layover/MS laypeople layperson/S lays/faAec layshaft/S Layton/M layup/MS laywoman/M laywomen Lazar Lazarist/S Lazarus laze/GZDS laziness/S Lazio/M lazuli/M lazy/GDTPY lazybones/M lb LBJ lbs lbw LCD/M LDAP le/Gz3 lea/SM leach/SDG lead-free lead/GSRD leaded/U leaden/PY Leadenhall leader's/a leader/p leadership/MS leading/a leads/a leadwork/S leaf-like leaf/pSD2GMZ leafage/SM leafbird/S leafhopper/MS leaflet/MdS leafstalk/MS leafy/TP league/FMDGS leaguer/SM Leah leak/DZS2GM leakage/SM leaker/MS Leakey leakiness/S leaky/TP lean-burn lean/JYGDTPS Leander/M leaner/M leaning/M leanness/S leant leap/DGS leaper/M leapfrog/MSGD leapt Lear/Z learn/UGSAD learned/PY learner/SM learning/SM learnt leas/GRSD lease/ARGMSD leaseback/MS leasehold/RMS leash's leash/GSUD leasing/M least/S leastwise leather/SMZd Leatherdale leatherette/S leathern leatherneck/SM leave-taking leave/GSJDR leaven/dSM leavened/U leavening/M Leavenworth leaves/M leaving/M Lebanese Lebanon/M lebensraum Lebesgue Leblanc lecher/SMZ lecherous/YP lecherousness/S lechery/SM Lechner/M lecithin/SM lecithotrophic lectern/MS lectin/S lectionary/S lector/S lecture/RGDSM lectureship/SM LED's led/a Leda ledge/RMS LEDs Lee Lee-Enfield Lee-Metford lee/SyM leech/GSM Leedham/M Leeds leek/MS leer/DGkS2 leeriness/S leery/TP Leeuwenhoek/M leeward/S leeway/SM left-click left-footed left-hand/DiRh left-wing/R left/ZS3T leftish leftism/MS leftmost leftover/MS leftward/S lefty/S3M leg-bye leg-cutter leg-spinner/MS leg/omDSbM2pNGJZn legacy/SM legal/Q8q-S legalese/MS legalism/MS legalist/S legalistic/Y legality/ISM legally/I legals/I legate's/C legate/CDASnGN legatee/MS legation/AMC legato/SM legend/MS legendary/YS Legendre/M legerdemain/MS legginess/S legging/M leggy/TP leghorn/MS legibility/MIS legible/IY legibly/I legion/SMy legionary/S legionnaire/SM legislate/vVSGnDN legislation/M legislative/S legislator/MS legislature/MS legit legitimacy/ISM legitimate/YGQND legitimated/I legitimately/I legitimating/I legitimisation legitimise/SGD legitimiser legitimization/M legitimize/NDnG Lego/M legroom/SM legstraps legume/SM leguminous legwork/MS Lehigh Lehman/M lei/SM Leia/M Leibniz Leica/M Leicester/M Leicestershire Leiden Leif Leigh Leighton Leila Leipzig/M leisure/MSYD leisureliness/S leisurely/P leisurewear Leith/M leitmotif/MS leitmotiv/SM Leitrim/M Leland/M Lemke lemma/MS lemmatisation lemmatise/SGD lemmatize/SGDN lemme/JG lemming/M lemnisci lemniscus lemon/MS lemonade/SM lemongrass lemonwood lemony lemur/SM Len/M Lena/M Lenah/M lend/SRG length/zSZ2M lengthen/Sd lengthener/M lengthiness/S lengthways lengthwise lengthy/TP lenience/ZS leniency/SM lenient/Y Lenin/M Leningrad Leninism Leninist lenitive/S Lennon/M Lennox/M Lenny Leno Lenore/M lens/SDGM lenser/S lent/A Lenten lenticular lentiform lentil/SM lento/S Leo Leominster Leon Leona Leonard/M Leonardo/M Leone/M Leonid/M leonine Leonov/M leopard/SM leopardess/MS leopardskin Leopold/M Leopoldville leotard/SM leper/SM Lepidoptera lepidoptera lepidopteran/S lepidopterist/S lepidopterous leprechaun/SM lepromatous leprosarium/S leprosy/SM leprous lepta leptin leptocephali leptocephalus leptomeningeal leptomeninges lepton/SM leptospirosis leptotene Lermond/M Leroy Les lesbian/MS lesbianism/MS lesbigay/S lesbo/S Lesbos lesion/GDMS Lesley Leslie/M Lesotho/M less/U lessee/SM lessen/dS lesser lesson/dMS lessor/MS lest Lester let's/e let-down/SM let-out let/URMGS Letchworth/M lethal/Y lethality/M lethargy/1SMW Lethe/M Letitia/M lets/e letter/drmJ letterbox/S lettered/U letterhead/MS lettering/M letterpress/MS letterset letting/S lettuce/MS letup/SM leucine leucocyte/SW leucoderma leucoma leucotomy/S leukaemia/M leukocyte/MS Lev Levada/M Levant LeVar/M levator/S levee/S level-headed/Y level-headedness/S level/SDTPRGY levelness/S Leven/M lever/dMS leverage/DMGS Leverhulme/M Levi/SM leviathan/SM Levin/M Levine Levinson levitate/DGNSn levitation/M Leviticus levity/SM levodopa levy/SDRG Lew/M lewd/TPY lewdness/S Lewellys Lewes Lewis/M lewis/M Lewisham Lewrie/M lexeme/MS lexical/Y lexicographer/SM lexicography/1WwMS lexicological/Y lexicology lexicon/SM lexigram/S Lexington lexis Lexus/M Leyden Leyland/M Leysdown Leyton lg LG/M LGA LGPL Lhasa Li liability/SAM liable liableness/A liaise/DSG liaison/MS Liam/M Liana liana/S liane/S liar/SM Lib-Lab lib/DGSnM Lib/Z libation/M Libby/M libel/DRSMG libellous/Y Liberace liberal/IY liberalise/DGnSR liberalism/MS liberality/SIM liberalization/M liberalize/DGNSRn liberalness/SM liberals liberate/nN liberates liberation/CM liberationists liberator/MCS Liberia/M Liberian/S Liberman/M libero libertarian/SM libertarianism/M libertine/SM liberty/SM libertyless libidinal libidinally libidinous/YP libido/MS libitum LIBOR Libra libra librae librarian/MS librarianship library/SM LibreOffice/M libretti libretto/3MS Libreville/M Librium Libya/M Libyan/S lice/M licence/SM licensable license/SGD licensed/U licensee/SM licenser/M licensor/MS licentiate/SM licentious/PY licentiousness/S lichee/M lichen/SM lichened lichenology lichenous Lichfield Lichtenberg/M Lichtenstein licit/IY lick/JDSG licker/M lickerish licking/M licorice lid/MpGDS Liddell/M lido/SM lie-down lie-in/S lie/FGcSf Lieberman/M Liebeskind/M Liebfraumilch Liebmann/M Liechtenstein/RM lied/M lieder lief/A liege/S lien/MS lier's/F lies/A lieu/M lieut lieutenancy/SM lieutenant/SM lieux life-and-death life-giving life-preserver life-raft/SM life-size/D life-support life-threatening life/RpM lifebelt/MS lifeblood/SM lifeboat/MS lifeboatmen lifebuoy/S lifeforms lifeguard/SGDM lifeless/PY lifelessness/S lifelike/P lifeline/SM lifelong lifesaver/SM lifesaving lifespan/S lifestyle/S lifetaking lifetime/MS lifework/MS lifeworld/S Lifford LIFO lift-off/MS lift/RDSGM ligament/MS ligand/MS ligate/NnDSG ligation/M ligature/MDGS light-fingered light-headed light-headedness light-hearted/PY light-heartedness/S light-pen/MS light/JTDRSPMGY lightbulb/SM lighted/CU lighten/drS lightening/M lighthouse/SM lighting/M lightness/S lightning/DMS lightproof lights/CA lightsaber/S lightsabre/S LightScribe lightship/SM lightweight/S lightwork/R ligneous lignin lignite/SM lignum Liguria Ligurian/S like-minded like/DGE7S likeability/SM likeable/UP likeableness/S likelihood/UMS likeliness likely/TU liken/dS likeness/MS liker/M likest likewise liking/MS Lila/M lilac/MS Lilburne/M Lilienfeld/M Lilienthal/M Lilith/M Lillee/M Lillian/M Lillie Lilliput Lilliputian/S lilly Lilongwe/M lilt/SGDMk liltingness lily-livered lily-white lily/SDM Lima/M Limavady/M limb/SDMWp limber/dUS limbo/DSMG Limburger lime/GMDZS limeade/MS limekiln/M limelight/GMS limepit Limerick/M limerick/SM limescale limestone/MS limewash/SGD limit/rndpMSgl limitary limitation/MC limitative limited/UC limitedly/U limitedness/M limiter/CMS limitless/PY limitlessness/S limitrophe limitrophous limits/C limn/DSG limnological limnologist/S limnology limo/S limonite/W limousine/SM limp/STGDPY limper/M limpet/MS limpid/YP limpidity/SM limpidness/S limpness/S Limpopo limy/T Lin/M linage/SM linchpin/SM Lincoln/M Lincolnshire/M Lind/M Linda/M lindane Lindbeck/M Lindberg/M Lindbergh/M linden/MS Lindisfarne/M Lindley/M Lindquist/M Lindsay/M Lindsey/M Lindstrom/M line's/e line-up/S line/SmJRGMD lineage/MS lineal/Y lineality lineament/MS linear/tYQ linearisation linearities linearity/FM linebacker/MS lined/fUAe linefeed lineman linemen linen/SM lines/eAf lineside/S ling/f linger/drkS lingerie/SM lingo/M lingoes lingua/Mo lingual/S linguine linguini's linguist/MWS1 linguistic/S linguistical linguistician/S linguistics/M liniment/SM lining's lining/feA link-up/S link/7RSMJDG linkage/SM linkbait linked/U LinkedIn/M linkman linkmen links/U Linn/M Linnaeus/M linnet/MS lino/M linoleate linolenate linolenic linoleum/SM linoleumed Linotype/M linseed/MS lint/ZSMG lintel/SM linter's Linton linty/T Linus Linux/M liny/T lion/QSM-s Lionel lioness/MS lionfish/S lionhead lionheart/S lionhearted lionization/M lionize/D lionizer/M lip's/f lip-read/GSJ lip-reader lip-service lip-sync lip-synch lip/pSDZGM lipase/M lipid/MS liplike lipoic lipopolysaccharide/S lipoprotein/S liposculpture liposome/S liposuction/S Lippincott/M lippy/T Lipschitz/M Lipscomb/M lipslide/S lipstick/MS Lipton/M liq liquefaction/MS liquefy/DRSG liqueur/MS liquid/9n8YPQ-SMsq liquidate/DGS liquidation/M liquidator/MS liquidity/SM liquor/MS liquorice/SM liquorish lira/M lire Lisa/M Lisbon/M Lisburn/M lisinopril lisle/MS Lismore/M lisp/RMSGD Lissajous lissom/P lissome/P list/DGJp listed/U listen/rdS listenability listenable listenership Lister/SM listeria listing/M listless/PY listlessness/S Liszt lit/R litany/MS litchi/S literacy/SMI literal-minded literal/YSP literalise literalism/M literalist/S literalistic literality literalize literalness/S literariness/S literary/P literate/4NS literately/I literateness literates/IK literati literation/M literature/MS lithe/YPT litheness/S lithesome lithic lithium/M lithograph/RMZW1SDG lithography/MS lithology/SMw lithosphere/WSM lithostratigraphic lithostratigraphy lithotripsy lithotripter/S lithotriptic lithotriptor/S Lithuania/M Lithuanian litigant/MS litigate/SNnDG litigation/M litigator/SM litigious/PY litigiousness/S litmus/SM litotes/M litre/SM litter/d litterbug/MS litterer/S littermate/S little-endian little-minded/P little/TP littleneck/M littleness/S Littleton Litton littoral/S littérateur/S liturgics's liturgy/S3M1w live/yRGTDPJY7S liveability/SM liveable/YP lived-in lived/Ae livelihood/SM liveliness/S livelong/S lively/TP liven/dS liver/CdSZ liveries/C liverish Livermore Liverpool/M Liverpudlian/SM liverwort/MS liverwurst's livery/DmMS lives/M livestock/MS livestream/SGD livid/PY living/eA Livingston Livingstone Livonia lixiviation Liz/MZ lizard/MS lizardfish/S Lizzie Ljubljana/M ll/C llama/MS Llanelli/M llano/MS LLB LLC/S LLD Llewellyn Lloyd/M lo lo-fi lo-res loach/S load/RSDGMJ7 loaded/AKcU loading/M loads/AUc loadstar's loadstone's loaf/MRDGS loam/ZSM loamy/T loan/RMS7GD loanee/S loaning/M loansharkings loanword/S loath/JGDPR loathe/S loathing/M loathsome/PY loathsomeness/S loaves/M lob/MRDGSZ Lobachevsky lobar lobby/3DMGS lobe/DSM lobotomist lobotomy/QSM lobster/dSM lobular/Y lobularity lobule/MS local/qYQs8S9- locale/SM localhost/S localisable localism/S localist/S locality/SM localizable localization/M locatable/A locate/ASGFENnD locater/M location/EMAF locational/Y locative locator/SM loch/M lochia lochial lochs loci/M lock-up/MS lock/RSDGM7 Locke locked/UA Lockerbie/M locket/SM Lockhart/M Lockheed/M lockjaw/SM locknut/M lockout/SM locks/UA locksmith/SMG locksmithing/M locksteps Lockwood/M loco/GSM locomobile locomobility locomote/SGD locomotion/MS locomotive/YMS locomotiveness locomotivity locomotor locomotory locoweed/SM locum/S locus/M locust/SM locution/SM lode/MS lodestar/SM lodestone/SM lodge/LRSDGJM lodged/E lodgepole lodges/E lodging's lodging/E Loeb/M loft/SDz2GMZ lofter/M loftiness/S lofty/TP log/JGMWRw1DS Logan loganberry/MS logarithm/W1SM logbook/MS loge/MS logfile/S loggerhead/MS loggia/MS logging/M logia logic/IMSY logical/P logicality/MIS logician/MS logicically logicism login/S logion/M logistic/MYS logistical logistician/S logjam/SM logo/SM logoff/S logogram/S logon/S logotype/SM logout/S logrolling/SM Lohengrin loin/SM loincloth/MS Loire Lois loiter/dSr Loki/M LOL Lola lolcat/S Lolita/S loll/DGYS loller/M lollipop/SM lolly/MS Lomb/M Lombard/Z Lombardy/M Lomé/M London/rM Londonderry/M lone/PRY loneliness/S lonely/TP lonesome/PSY lonesomeness/S long-ago long-awaited long-distance long-drawn long-drawn-out long-faced long-lasting long-legged long-life long-lived long-lost long-playing long-range long-running long-sighted/Y long-sightedness long-standing long-stay long-suffering/Y long-tailed long-term long-termism long-time long-waisted long-winded long-windedly long-windedness long/GPSDTkJ longan/S longboard longboat/MS longbow/SM Longbridge longdog longeing longer-term longevity/MS Longfellow Longford/M longhair/SM longhand/SM longhorn/SM longing/M longish longitude/MS longitudinal/Y longline longlist/S Longmire/M longship/S longshore longstop Longstreet/M longsword longueur/SM longways longwise Longyearbyen/M Lonsdale/M loo/M loofah/SM look/eSc lookahead lookalike/S lookaside looked/Uc looker-on looker/SM lookers-on looking-glass/S looking/c lookism lookist lookout/SM lookup/MS loom/SDGM looming/M Loomis loon/ZSM Looney/M loony/TS loop/DMZSG loopback/S looper/MS loophole/SMGD loopy/T loose-leaf loose/PYGSDT loosed/U loosen/dSU loosener/S looseness/S looses/U loosestrife loosing's loosing/U loot/RSDGM lop/dDRGS lope/S loper/M Lopez lophophore lopsided/PY lopsidedness/S loquacious/PY loquaciousness/S loquacity/MS lord/DcSMG lording/M lordless lordliness/S lordly/TP Lordship/MS lordship/S lore/SM Loren/M Lorentz Lorentzian Lorenz/M Lorenzo/M Loretta lorgnette/MS Lori/M lorikeet/S loris/M lorn Lorraine lorry/MS lorryload/S Los losable lose/RSG loss-leader/S loss/SpMZ lossy/T lost lot/MS Lothario/S Lothian/M loti lotion/MS lottery/SM lotto/SM lotus/SM Lou/M louche/P loud-mouthed loud/YTP louden/d loudhailer/S loudmouth/MS loudness/S Loudoun/M loudspeaker/SM loudspeaking Loughborough/M Louie/M Louis/M Louisa/M Louisbourg/M Louise/M Louisiana/M Louisianan Louisville/M lounge/DRSG loupe/MS lour/SDG Lourdes louse's louse/CDSG lousewort/M lousiness/S lousy/TPY lout/MS Louth/M loutish/YP louvre/MSD lovable/P lovableness/S love-child love/pMk7RSYlDG lovebird/MS loved/U Lovejoy Lovelace Loveland loveless/PY lovelily loveliness/S Lovell lovelock/S lovelorn/P lovely/TSP lovemaking/M lovesick lovestruck Lovett/M loving-kindness loving/U lovingness/M low-born low-cal low-carb Low-Churchism low-class low-cost low-cut low-down/S low-emission low-fat low-fi low-grade low-income low-key low-level low-lying low-noise low-pitched low-profile low-res low-spirited low/DGSTYP lowbrow/SM Lowe/My Lowell lower-case lower-class lower-level lower/Sd lowercase/SGD lowermost lowish lowland/MRS lowlife/MS lowlight/MS lowliness/S lowly/PT Lowman/M lowness/S lox Loy loyal/3Y loyalism/SM loyalist loyally/E loyalty/ESM Loyola lozenge/DSM LP/S LPG ls/I LSD Lt Lt. Ltd LTR LTS Lu Luanda/M luau's lubber/MSY Lubbock lube/SGMD Lubow/M lubricant/MS lubricate/DSNGnV lubrication/M lubricator/SM lubricious/Y lubricity/MS Lubumbashi Lucan Lucas/M Lucasfilm/M Luce lucent/4Y Lucerne Lucia/M Lucian/M lucid/YP lucidity/MS lucidness/S Lucien Lucifer/M Lucille luck/zMZpS2DG luckiness/SM lucky/TUY lucrative/P lucrativeness/S lucre/vMVuS Lucretia Lucretius lucubrate/GnSND lucubration/M Lucy/M Luddism Luddite/S Ludditism luderick Ludhiana ludic ludicrous/PY ludicrousness/S Ludlow/M Ludmilla ludo/M Ludovic Ludwig/M luff/MSDG Lufthansa/M Luftwaffe/M lug/DRGS luge/CM luger luggage/MS lughole/S lugsail/MS lugubrious/PY lugubriousness/S lugworm/S Luis Luke/M lukewarm/PY lukewarmness/S lull/GSD lullaby/DSGM lulu/MS lumbago/MS lumbar lumber/rdSM lumbering/M lumberjack/MS Lumberton/M lumen/MS luminaire/S luminance/M luminary/MS luminescence/MS luminescent luminosity/SM luminous/YP Lumière/M lummox's lump/GDZ2SM lumpectomy/S lumpen lumper/M lumpfish/S lumpiness/S lumpish/YP lumpsucker/S Lumpur/M lumpy/PT Luna/M lunacy/SM lunar/S lunate/WY lunatic/S lunation/M lunch-time lunch/SDMG luncheon/MS luncheonette/MS luncher/M lunchpack lunchroom's lunchtime/MS Lund/M Lundberg/M Lundquist/M lune/NM lunette lung/DMGS6 lunge/SM lunger/M lungfish/MS lungful/S lungworm/S lungwort/S lunisolar Lupe/M lupin/S lupine/SM lupus/MS lurch/GSD lurcher/MS lure/GDS lurer/M lurex lurgy/S lurid/PY luridness/S lurk/RGDS Lusaka/M luscious/YP lusciousness/S lush/TPY lushness/S Lusitania lust/GZSDjz62M lustful/P lustiness/S lustral lustrate/DN lustre/pSMGD lustring/M lustrous/YP lusty/TP lutanist/SM lute/SGMD lutein lutenist/SM lutetium/M Luther/M Lutheran/MS Lutheranism luting/M Luton/M Lutz lux luxate/DGN luxe's luxe/C Luxembourg/RM Luxembourgian Luxembourgish Luxenbourg/M luxes Luxor/M luxuriance/SM luxuriant/Y luxuriate/NSGDn luxuriation/M luxurious/YP luxuriousness/S luxury/SM Luzius Luzon/M lx lyceum/MS lychee/SM Lycia/M Lycian/S lycophyte/S lycopod/S lycopodium/M Lycra lycée Lydgate/M Lydia Lydian/S Lydiat/M lye/M lying/e lyingly Lyle/M Lyman/M Lyme lymph/SM lymphadenopathy lymphangitis lymphatic/S lymphocyte/SM lymphocytic lymphoid lymphoma/MS Lyn lynch/GRDSJ Lynch/M Lynchburg lynching/M lynchpin/S Lynde/M Lyndon Lynette/M Lynn/M Lynne/M lynx/SM Lyon/MS Lyotard/M Lyra lyre/MSwW1 lyrebird/SM lyric/3S lyrical/P lyricism/SM lyricist lyrist Lysenko/M lysine/M Lysol lysosomal lysosome/S lysozyme lytic lytically Lyttleton László/M Lévi/M m M-DISC/M M.Sc. mA MA ma'am ma/FMS Maastricht/M Maathuis Mabel/M mac/SM macabre/Y macadam/QMS macadamia/S Macalister/M Macanese Macao macaque/MS macaroni/M macaronic macaronies macaroon/MS MacArthur/M Macau Macaulay/M Macaulayan Macaulayesque macaw/MS Macbeth Macclesfield MacColl/M MacDiarmid/M MacDonald/M MacDraw/M mace-bearer/S mace/SMGD Macedon Macedonia/M Macedonian macer/M macerate/DGSnN maceration/M MacGregor/M MacGyver/M Mach machete/SM Machiavelli Machiavellian machinability machinable machinate/GSD machination/M machine-gun/DGS machine-readable machine/DM3SGNyn machinelike machinery/SM machismo/SM Machmeter macho/S Machulis Maciej/M macintosh/SM MacIntyre mack/M Mackenzie MacKenzie/M mackerel/SM Mackie mackintosh/SM Maclean/M Macleay/M MacMillan/M Macmillan/M Macon MacOS MacPherson/M macramé/S macro/SM macrobiotic/S macrobiotics/M macrocephalic macrocephalous macrocephaly macrocopy/S macrocosm/SM macrocycle macrocyclic macrodiagonal macrodome macrodynamic macroeconomic/S macroeconomics/M macroevolution macroevolutionary macrofossil macrofungus macrogamete macrogametocyte macrolanguage/S macrolide/S macrolinguistics macromolecular macromolecule/SM macromutation macron/SM macronuclear macronuclei macronucleus macrophage/MS macrophagous macrophallic macrophotograph macrophotography macroscopic/Y macrosimulation macrosocio-economic macrospore macrosystem/S MacSween/M macula maculae macular maculate/DN macumba Macy/M mad/RTYPGD Madagascan/MS Madagascar/M madam/SM madame/M madcap/S madden/dkS Maddock/M Maddox Maddy/M made-up made/AU Madeira Madeleine/M Madeline/M Madelyn/M mademoiselle/SM madhouse/MS Madhya Madion/M Madison/M Madjid madman/M madmen/M madness/S Madonna/M madras Madrid/M madrigal/SM Madsen/M madwoman/M madwomen Mae/M maelstrom/MS maestri maestro/SM Mafeking/M Mafia/M mafia/S mafic Mafiosi Mafioso/M MAG mag/S magazine/MGDS Magdalen/M Magdalena Magdalene Magdalenian mage/S Magellan magenta/MS Maggie/M maggot/MS maggoty/T Magherafelt/M magi magic/MYGD magical magician/SM Magill magisterial/Y magisterium magistracy/SM magistrate/SM magistrateship magistrature/S magma/WMS magnanimity/SM magnanimosity magnanimous/Y magnanimousness magnate/MS magnesia/SM magnesian magnesite/M magnesium/M magnet/WqQ8-SMt+1 magnetic/S magnetics/M magnetise/CBnSDG magnetism/SM magnetite/MS magnetize/CBNnSDG magneto/SM magnetodynamics magnetohydrodynamical magnetohydrodynamics/M magnetometer/MS magnetopause magnetosphere/M magnetron/M magnification/SM magnificence/SM magnificent/Y magnifico magnificoes magnified/U magnify/CSGRND magniloquence/SM magniloquent magnitude/SM magnolia/SM magnum/MS Magnus/M Magnuson/M Magog/M magpie/SM Maguire magus Magyar mah mah-jong/M mah-jongg/M Maha/M maharaja/SM maharajah/MS maharanee's maharani/SM maharishi/MS mahatma/MS Mahavidyalaya Mahayana Mahayanist Mahdia/M Mahler/M mahogany/SM Mahoney/M mahout/SM maid/MS maiden/YSM maidenhair/MS Maidenhead/M maidenhead/SM maidenhood/MS maidenliness maidservant/MS Maidstone/M Maier Maik/M mail-order mail/RS7GDMJ mailbag/SM mailboat/S mailbox/MS maillot/SM mailshot/S Mailänder maim/RGSD maimedness's main/SA mainboard/S mainbrace/M maincrop Maine mainframe/SM mainland/RMS mainline/RSGD mainly mainmast/MS mains/M mainsail/MS mainsheet mainspring/MS mainstay/MS mainstream/SMDR maintain/RBSDG maintainable/U maintained/U maintenance/MS maintop/SM maiolica's maisonette/SM Maisy/M Maitra/M maize Maj. majesty/WSM1 majeure majolica/MS major/MS Majorca/M majordomo/S majorette/MS majoritarian/S majoritarianism majority/SM majorly Majuro/M makable make-believe make-up/SM make/GASU makefile/S makeover/S maker/SM makeshift making/MS Malabo/M malachite/SM maladapt/VD maladjust/LDV maladministration maladroit/YP maladroitness/S malady/MS Malagasy/M malagueta/S malaguetta/S malaise/MS Malamud malamute/MS Malaprop malapropism/MS malar malaria/SM malarial malarious malarkey/SM malate malathion/S Malawi/M Malawian/S Malay Malaya Malayalam Malayan/MS Malaysia/M Malaysian/S Malbec Malcolm/M malcontent/MS malcontented malcontentedly maldevelopment maldistributed maldistribution Maldives/M Male male/PSM malediction/SM malefaction/SM malefactor/SM malefic maleficence/SM maleficent maleness/S malevolence/S malevolencies malevolent/Y malfeasance/MS malfeasant malformation/MS malformed malfunction/GSD Mali/M Malibu/M malic malice/SM malicious/PY maliciousness/S malign/YRSDG malignancy/SM malignant/Y malignity/SM malinger/drS Malkin/M mall/SM mallard/SM Mallarmé/M malleability/MS malleable/P mallee/S malleefowl mallei malleiform mallein mallemaroking malleoincudal malleoli malleolus mallet/MS malleus Mallory mallow/SM Malmesbury malnourished malnourishment/SM malnutrition/SM malocclusion/MS malodorous malonate/S Malone Malory/M maloti malperformance malposed malpractice/MS malt/DGMZS Malta/M Maltese Malthaner Malthusian malting/M Malton/M maltose/MS maltreat/LDSG malty/T Malvern malversation malvertisement/S malvertising malware mama/SM mamba/SM mambo/MGSD mamma's mammal-like mammal/SM mammalia Mammalia mammalian/MS mammalogy/3 mammaplasty/S mammary/S mammogram/S mammographic mammography/S Mammon/M mammoplasty/S mammoth/SM mammy/M Mamoutzu/M man-at-arms man-hour/S man-made man-o'-war man-of-war man-sized man-year/S man/61YRGDMjW manacle/SDMG Managau/M manage/LaDGS manageability/S manageable/U manageableness managed/U manager/oSM manageress/SM managerial managerialism managerialist managership/M Managua manakin/S Manama/M mananas Manasseh manatee/SM Manchester/M Manchu Manchuria/M Manchurian/S manciple/M Mancunian/MS mandala/SM Mandalay mandamus/SdM mandarin/SM mandate/SMGyD Mandel/M Mandela/M Mandelbrot/M Mandelson/M Mandeville/M mandible/SM mandibular mandibulated mandolin/MS mandrake/SM mandrel/SM mandrill/MS Mandy/M mane/MSZ Manet Manfred manfulness manga manganese/M mange/MZRS2 mangetout/S manginess/S mangle/GDS mangler/M mango/MS mangoes mangold mangold-wurzel/S mangosteen/S mangrove/MS Mangum/M mangy/T manhandle/DGS Manhattan/M manhole/SM manhood/SM manhunt/SM Mani mania/SM maniac/SM maniacal/Y manic/S manicure/3DSMG manifest/DYSGNn manifestation/M manifestness manifesto/SM Manificat manifold/PSYM manifolder/M manikin/MS Manila/M manilla/S manille manioc/SM manipulatable manipulate/BSGnyDNVu manipulative/M manipulator/SM Manitoba Manitoban Manitowoc mankind/M Manley/M manlike manliness/S manly/PT Mann/M manna/MS manned/fU mannequin/SM manner/Y mannered/U mannerism/SM mannerist/M mannerliness/U mannerly/P Mannheim mannikin's manning mannish/PY mannishness/S mannose manoeuvrability/SM manoeuvre/SBMGDJ manoeuvred/e manoeuvrer/S manoeuvres/e manoeuvring/e manometer/SM manor/SM manorial manpower/MS manqué/M mansard/MS manse/XNMS manservant/M Mansfield mansion/M manslaughter/MS Manson/M Mansour/M manspreading manta/MS mantel/SM mantelpiece/SM mantelshelf mantic manticore/S mantid/S mantilla/MS mantis/MS mantissa/MS Mantke mantle's mantle/ESDG mantling/M Manton mantra/SM mantrap/SM manual/MSY Manuel/M manufacture/RBSGJD Manulife/M manumission/M manumit/XNSGD manure/RMGDS manuscript/MS Manville Manx manzanita/S manège/SGD Mao MAOI Maoism Maori map/GRSMDJ maple/SM mapmaker/S mappable mapped/U mapping/M maps/A Mapuche/S Maputo/M maquette/S maquila/S maquiladora/S mar/DGZ Mara mara/S marabou/SM marabout's maraca/MS Maracaibo maraschino/MS Marathi marathon/MrS maraud/SRDG marble/DSMGJ marbler/M marbling/M Marc/MZ Marcan marcasine marcasite marcassin marcato Marceau/M Marcel marcel/SGD marceline Marcellian Marcello/M Marcellus march/DRSG Marchington/M marchioness/MS Marcia/M Marcie/M Marcin/M Marcinkiewicz/M Marco/MS Marconi Marcum/M Marcus Marden/M Mardi mare/SM Margaret/M margarine/SM margarita/SM margarodid Margate margate/S margay/S Marge/y Margery/M margin/oMdS marginal/Q8q-S marginalia marginality Margo/M Margolin/M Margot/M Marguerite maria/M mariachi's Marian/M Mariana/S Marianas/M Marianne/M Marie/M Mariel/M Marietta marigold/SM Marigot/M marijuana/SM Marilyn/M marimba/MS Marin Marina marina/nMS marinade/DMGS marinara/SM marinate/SGD marination/M marine/RSN Marino/M Mario Mariological Mariologist/S Mariology Marion marionette/MS Marisol/M Marissa/M marital/KY maritime maritimer Marius marjoram/MS Marjorie Marjory/M mark's/A mark-up/MS mark/RmDJhGSM7 markdown/MS marked/AU markedness market/g7rSMdJ Marketa/M marketability/MS marketable/U marketeer/S marketing/M marketplace/MS Markey/M Markham/M marking/M markka/M Markov/M Markovitz/M marks/A marksmanship/S markup marl/SGDM Marland/M Marlboro/M Marlborough/M Marlene/M Marley/M marlin/SM Marline/M marlinespike/SM Marlow/M Marlowe/M Marmaduke/M marmalade/SM Marmite marmoreal marmoset/SM marmot/SM maroon/SDG marooner marque/MS marquee/SM Marquess/M marquess/MS marquetry/MS Marquette marquis/MS marquise/M marquisette/MS Marrakesh marriage's/A marriage/MBS marriageability/SM marriages/A married/S Marriott marrow/MS marrowbone/MS marry/DGSA Mars Marsden Marseillaise Marseilles marsh/MZS2 Marsha marshal/JRSGDM Marshall/M marshalship Marshfield/M marshland/MS marshmallow/MS marshy/PT Marston/M marsupial/MS mart/MGSD Marta Martel martellato Martello/S martempered martempering marten/MS martensite/W Martha martial/Y Martian/S martin/SM Martina/M Martineau/M martinet/MS Martinez martingale/MS Martini/SM martinique Martinique/M Martinson Martinsville/M Martorell/M Marty martyr/MGDS martyrdom/MS martyrological martyrologist martyrology/S marvel/GDS Marvell marvellous/Y Marvin/M Marx/3M Marxian Marxism Marxist Mary/M Maryland/M Marylanders Marylebone/M Marysville/M marzipan/SM mas/rGWD Masai Masayuki/M masc Mascagni mascara/DGSM mascot/MS masculine/YP masculinism masculinist/S masculinity/MS masculist/S Maseru/M mash-up/S mash/RJSGDM Mashona Mashonaland masjid/S mask/JRDMSG masked/U masks/U masochism/SM masochist/SWM1 mason/SdyWM Masonite masonry/SM Masood/M masque/RSM masquerade/MRSDG mass-market mass-produced mass-producing mass/pSVvu Massa Massachusetts massacre/MGDS massacrer massage/DMSG massager/M Massart/M Massenet masseter masseur/SM masseuse/SM Massey/M massif/SM Massimo/M massive/P massiveness/S mast/DRSMG mastectomy/SM master-class/SM master-stroke/MS master-work/S master/AdScp MasterCard masterdom masterful/PY masterhood mastering/S masterliness masterly mastermind/GDS masterpiece/MS mastership/M mastery/MS masthead/GSDM mastic/NSnM masticate/DGS mastication/M mastiff/SM mastodon/SM mastoid/S mastoiditis masturbate/GSnDNy masturbation/M masturbator Masuoka/M mat/dRMDJGS Mata-Utu/M Matabele/S Matabeleland matador/SM Matangi/M match's/A match/eGDaS matchable/U matchbook's matchbox/SM matched/AU matcher/MS matches/A matching/c matchings matchless/Y matchlock/MS matchmake/RJG matchmaking/M matchplay matchstick/SM matchwood/SM mate/MzJS Mateo/M mater/Mo material/qs39S-MPQ8 materialism/MS materialist/W1 materiality/IM materialization/M materially/I materialness/I materiel maternal/Y maternity/SM Mathematica mathematical/Y mathematician/MS mathematics/M Matheny/M Mather Mathews Mathias Mathieu Mathis maths Matilda/M matinee/S mating/M matins/M matinée/S Matisse/M Matlab Matlock matriarch/MZ matriarchal matriarchs matriarchy/MS matrices matricidal matricide/SM matriculate/NSGDn matriculation/M matrifocal matrilateral matriline matrilineage matrilineal matrilineally matrilocal matrilocality matrimonial matrimony/oMS matrix/M matron/MSY Matroska/M Matsumoto/M matsuri Matsushita Matsuyama matt/M matte/MS Mattel matter-of-fact/Y matter/d Matterhorn Matthau Matthew/S Matthias Matthieu/M Mattie matting/M mattock/SM mattress/MS Mattson/M maturate/SGD maturation/M mature/YDTVSxnPGN maturely/KI matureness/K maturer/M maturities/I maturity/KMI matzo/MS matzoth matériel/SM Maud Maude maudlin/Y Maugham/M Maui maul/DRSG maunder/Sd Maura/M Maureen Maurice Mauricio Maurine/M Mauritania/M Mauritanian/S Mauritian/S Mauritius/M Mauser mausoleum/SM mauve/MS Maven/M maverick/MS Mavis maw/DSGM mawkish/PY mawkishness/S max Max/M maxi/S maxilla/yM maxillae maxillary/S maxim/qQs89Mo-S maxima/M maximal/S maximalism maximalist/S maximality Maximilian maximization/M maximum/YMS Maxine maxing Maxthon/M Maxtor/M maxwell Maxwell/M Maxwellian May's may/EG Maya Mayan/S maybe/S mayday/S Mayer/M Mayfair/M mayflower/SM mayfly/MS mayhap mayhem/MS Mayhew mayn't Maynard/M Mayne/M Mayo/M mayonnaise/MS mayor/SM mayoral mayoralty/MS mayoress/SM mayorship/M Mayotte/M maypole/MS mayst Mazda maze/SZMGD mazer mazurka/SM mazy/T Mazza/M maître mañana/M Mb MB MBA/MS Mbabane/M Mbit Mbps MC Mc MC'd MC'ing MC's McAdams McAfee McAllister/M McAlpine/M McAvan McBride/M McCabe/M McCaffrey/M McCain/M McCall/M McCallum/M McCann/M McCarthy/M McCartney McCarty/M McCauley/M McCay/M McClain/M McClellan/M McClintock/M McCloy/M McClure/M McCluskey/M McConnell/M McCormack/M McCormick/M McCoy/M McCracken/M McCrea/M McCullagh/M McCullers/M McCullough/M McDaniel/M McDermott/M McDevitt/M McDiarmid/M McDonald/M McDonnell/M McDougall/M McDowell/M McEnroe/M McFadden/M McFarland/M McGarry/M McGavin/M McGee/M McGill/M McGinlay/M McGinn/M McGlynn/M McGovern/M McGowan/M McGrath/M McGraw/M McGregor/M McGuire/M McHale/M MCI McIntosh/M McIntyre/M McKay/M McKee/M McKenna/M McKenzie/M McKesson/M McKinlay/M McKinley/M McKinney/M McKinnon/M McKinsey/M McKnight/M McLane/M McLaren/M McLaughlin/M McLean/M McLeish/M McLeod/M McMahon/M McManus/M McMillan/M McMurtry/M McNab/M McNally/M McNaughton/M McNeil/M McNish McNiven/M McPherson/M McQuarrie/M McRae/M MD mdse MDT me/3s mead/MS Meade meadow/SM meadowland meadowlark/SM meadowsweet/M Meaghan/M meagre/Y meagreness meal/ZSM2 mealiness/S mealtime/MS mealworm mealy-mouthed mealy/TPS mean/CSG meander/SJd meaner meanest meanie/SM meaning/M6jpS meaningful/P meaningfulness/S meaningless/PY meaninglessness/S meanly meanness/S meant/U meantime meanwhile meany Meara measles measly/T measurable/IU measurably/I measure/LSpMhlGD measured/UA measurement/A measurer/M measures/A measuring/A meat/ZS2pM meataxe meatball/SM Meath/M meathead/S meatiness/S meatloaf meatloaves meatpacking/S meaty/TP mebibit/S mebibyte/S Mecca/M mechanic/SMY mechanical/S mechanise/BnRSDG mechanised/U mechanism/MS mechanist/MW1 mechanize/nBDNG mechanized/U mechanizer/M mechanochemically mechanoreceptive mechanoreceptor/S Mecoptera mecopteran/S mecopterous Med MEd medal/MSD medallion/MS medallist/S meddle/RSDG meddlesome Mede/S Medfield Medford/M media/oMn mediaeval/3MYS mediaevalism mediaevalist medial/S medialize/SGD median/YSM mediastina mediastinal mediastinoscopy mediastinum mediate/IPY mediated mediates mediating mediation/M mediator/SM MediaWiki medic/NYVnMS Medicaid medical/S medicament/SM Medicare medicate/SGD medication/M Medici medicinal/S medicine/MoS medico-legal medico/SM medieval medievalist/S Medina/M mediocre mediocrity/SM meditate/VSGDvuNn meditated/K meditates/K meditating/K meditation/KMS meditative/P Mediterranean medium-sized medium/SM mediumism mediumistic mediumship medley/MS medroxyprogesterone medspeak medulla/SMy Medusa/M medusa/S medusae medusoid/S Medway/M meed/SM meek/YPT meekness/S Meeks/M meerkat/S meerschaum/MS meet/GJSY meeter/M meeting/M meetinghouse/S meetup Meg/M mega megabit/SM megabuck/S megabyte/S Megachiroptera megachiropteran/S megacity/S megacycle/MS megadeath/MS megaflop/S megahertz/M megajoule/S megalith/SWM megalitre/S megalomania/MS megalomaniac/SM megalomaniacal megalomanic megalopolis/SM megalopolitan/S megalosaurus/S megamouth/M Megan/M megaparsec megaphone/WMDSG megaphonist megaphyll/S megaphyllous megaphylly megapixel/S megaplume megapode/S megapolis megaripple megasclere megascopic megascopically megasea megaseller megaspore/S megastar/S megastardom megastore/S megastructure/S megaton/SM megavolt/M megawatt/SM megaword/S megohm/MS meh Mehring/M Meier/M meioses meiosis/M meiotic Meister Meistersinger Mekong Mel melamine/MS melancholia/SM melancholiac melancholic/S melancholy/MSW Melanesia Melanesian melange Melanie melanin/MS melanisation melanite melanization melanogen melanogenesis melanoma/SM melatonin Melba/M Melbourn Melbourne/M Melcher/M meld/SDG Meldrew melee/S Melin/M Melinda meliorate/nDGNVS melioration/M melisma/S melismata melismatic melismatics Melissa melliferous mellifluous/PY mellifluousness/S mellitus Mellon mellophone mellow/GYTPSD mellowness/S Melly/M melodic/S melodicism melodious/U melodiously melodiousness/S melodrama/WSM1 melodramatic/S melody/SWM1 melon/SM melpomenish melt/DkSG meltable meltdown/S melted/A melter/SM Melton melts/A meltwater/S Melville/M Melvin Melvyn member's member/ASE membered memberless membership/SM membrane/MSD membranous meme/S memento/SM mementoes memetic memo/SyM memoir/SM memoires memorabilia memorability/MS memorable/PY memoranda memorandum/SM memorial/QS memorially/I memoriam memorization/M memory/s9Q8oq-SM memoryless Memphis men-at-arms men-o'-war men-of-war men/M menace/kSGD menagerie/SM menarche/MS Mencken/M mend/GFSD mendacious/PY mendacity/MS Mendel/M mendelevium/M Mendelssohn/M mender/FM menders Mendes mendicancy/MS mendicant/S mending/SM Mendip Mendoza Meneghetti/M Menelaus/M menfolk/M Mengele/M menhaden/M menial/YS Menindee meningeal meninges meningioma/S meningiomata meningitic meningitides meningitis/M meningococcal meningococci meningococcus meningoencephalitis meninx menisci meniscus/M Menlo Mennonite/S Menominee menopausal menopause/SM menorah/SM menorrhoea Mensa menservants/M menstrual/K menstruate/SGnND menstruation/M mensurable/F mensurableness mensuration/SM menswear/M mental/Y3 mentalism mentalist mentalistic mentality/MS menthol/MS mentholated mention/7SRDG mentionable/U mentioned/fU mentor/MSd mentorship menu-driven menu/MS Menuhin/M meow/DSG MEP/SM meperidine mephedrone Mephisto/M Mephistophelean Mephistopheles Mephistophelian mercantile mercantilism mercantilist/S Mercator Mercedarian/S Mercedes Mercedes-Benz/M mercenarily mercenary/PMS mercer/QMS mercery/S merchandise/RSDGJM merchant/BSM merchantman/M merchantmen/M Mercier merciful/P mercifully/U merciless/PY mercilessness/S Merck/M mercurial/S mercurialness Mercurochrome mercury/oMW mercy/S6jpM mere/TYS Meredith meretricious/PY meretriciousness/S merganser/MS merge/RGSD mericarp meridian/SM meridional meringue/MS merino/MS meristem/S meristematic merit/CdMS merited/U meritocracy/SM meritocratic meritocrats meritorious/U meritoriously meritoriousness/MS Merkle-Damgård Merle merlin/M mermaid/SM meromorphic Merriam/M Merrick Merrill Merrimac Merrimack merriness/S Merris Merritt/M merry-go-round/S merry/TLY merrymaker/SM merrymaking/SM Mersey Merseyside/M Merthyr Merton Merv/M Mery/M mes/2DZzG mesa/MS mescal/SM mescaline/SM mesdames/M mesdemoiselles/M mesencephalic mesencephalon mesentery/SW mesh's mesh/UD meshes meshing meshwork mesial/Y mesmeric/Y mesmerise/RGSD mesmerism/MS mesmerize/RGSD mesmerizer/M mesmerizing Meso-America mesocyclone/S mesoderm/O mesogastria mesogastrium Mesolithic mesomorph/SM mesomorphic meson/MS mesopelagic mesophyll Mesopotamia/M Mesopotamian/S mesosphere/MS mesothelia mesothelioma/S mesothelium mesotherapy mesothoracic mesothorax mesozoic mesquite/MS mess/SM message/SMDG messenger/dMS Messenia/M Messiaen messiah/S messianic messieurs's Messina/M messiness/S messmate/SM Messrs messy/TP mestizo/SM met/dr meta Meta-Wiki metabolic/Y metabolisable metabolise/DSG metaboliser/S metabolism/SM metabolite/SM metabolizable metabolize/SGD metabolizer/S metacarpal/S metacarpi metacarpus/M metacentre/SW metacircular metacircularity metacone metadata metafile metageneses metagenesis metagenetic metal/WSMGJD metalanguage/MS metalhead/S metalinguistic metallic/S Metallica/M metalliferous metallise/SnGD metallize/NnDSG metallographically metallography/MW metalloid/SM metallurgist/S metallurgy/1MSwW metalsmith/MS metalwork/RGJMS metalworking/M metamaterial/S metamathematical metamathematician/S metamathematics metamorphic metamorphism/SM metamorphose/DGS metamorphosis/M metaphase metaphor/SWw1M metaphorist metaphosphate's metaphysic/SMY metaphysical metaphysician/S metaplasia metaplastic metasomatic metasomatise/D metasomatism metasomatize/D metastability/M metastable metastases metastasis/dMSQ metastatic metasyntactic metatarsal/S metatarsi metatarsus/M Metatheria metatherian/S metatheses metathesis/M metathesized metathesizes metathesizing metathoracic metathorax metatracheal metatropy metatype metavariable metavariscite metaverse metavolcanic metazoan/S mete/S metempsychoses metempsychosis/M meteor/WS1M meteorite/SMW meteoritic/S meteoritics/M meteoroid/MS meteorologically meteorologist/S meteorology/wMS meter/d meterless metethereal metetherial Metford metformin meth methadone/SM methamphetamine methanal methane/M methanogenesis methanoic methanol/M methicillin methinks methionine/M method/1SMw methodic methodical/P methodicalness/S Methodism Methodist/MS methodologists methodology/Sw1M methotrexate methought methoxy methoxyl Methuen/M Methuselah methyl/SM methylate/SGDn methylene/M methylergonovine Methyr/M meticulous/PY meticulousness/S metier metonym/S metonymic metonymical metonymically metonymous metonymy/SM metope/S metoprolol metre/S1Ww metric/MNSn metricate/DSG metrics/M metro/MS metrological metrology/3 metronidazole metronome/SM metronomic metropolis/SM metropolitan/S metropolitanization metrosexual/S metrotome Metrotown/M metrum mettle/DSM mettlesome Metzler/M mew/GSD mewl/DSG mews/MS Mexican/S Mexico/M Meyer/S Meyerbeer mezzanine/MS mezzo-soprano mezzo/S mezzotint/SGDR mfg mfr/S mg MGM mgr MHz mi's mi/C Miami miasma/MS miasmal miasmatic miasmatically miasmic miasmically MiB mic/S mica/MS Micah mice/M micelles Michael/SM Michaelangelo Michaelmas Michaelson Michel/M Michelangelo Michele/M Michelin Michelle/M Michelson Michigan/M Mick/M Mickelson mickey/SM Micmac/S miconazole micra's micrite micritic micro-environment/S micro/S microaerophile/S microaerophilic microamp microampere microanalyses microanalysis/M microanalytic microangiopathic microarchitecture/S microarray/S microbe/MS microbial microbially microbian microbicidal microbicide/M microbiologic microbiologically microbiology/w3SM microbore microbrewery/S microcapillary microcapsule/S microcephalous microcephaly/W microchannel/S microchemistry/M microchip/SGD microcircuit/SM microcircuitry microclimate/SW microclimatically microcode/GDS microcoleoptera microcolony microcomputer/MS microcomputing microcontinent/S microcontinental microcontroller/S microcopy/S microcosm/WSM microcosmal microcosmically microcosmography microcosmopolitan microcrack/SGD microcredit microcrystal microcrystalline microcyte/WS microdeletion/S microdensitometer microdot/SM microeconomic/S microeconomics/M microelectrode/S microelectromechanical microelectronic/S microelectronically microelectronics/M microenterprise microevolution microevolutionary microfarad microfauna microfibre/S microfibril/S microfiche/M microfilament/S microfilm/GDMS microfilmer microflora microform/S microformat/S microfossil/S microfungi microfungus microgenerate microgeneration microglia microglial microgram/S microgramme/S microgranite micrograph/SZ micrographic micrographics micrography/M microgravity microgroove/MS microhabitat/S microhydrodynamics microhylid/S microinject/DG microinjection microinstruction/MS microjoule microlaminated microlevel microlight/S microloan/S micromanage/LDSG micrometeorite/SWM micrometer/SM micrometre/S microminiature microminiaturisation microminiaturization micromodel micromodeling micromodelling micromodule micromolar micromole/S micromorph/S micromorphological micromorphology micromotor micromutation micron/MS Micronesia/M Micronesian/S micronuclei micronucleus micronutrient/S microorganism/SM micropayment/S microphagic microphagous microphone/SMG microphotograph/SWZ microphyll/S microphysical microphysics micropig/S micropipette/S micropower microprint/G microprobe/S microprocessing microprocessor/MS microprogram/MSGD micropropagation micropterous micropyle microreader/S microRNA micros/M microsatellite/S microscooter/S microscope/SMWw1Z microscopist/S microscopy/MS microSD microsecond/SM microseism/SW microsimulation/S microsite/S Microsoft/M microsomal microspectrophotometer/S microsphere/S microspore/S microstore microstructure/SO microsurgeon/S microsurgery/MS microsurgical microsystem/S microtask/S microtechnological microtechnology microtome microtonal microtonality microtonally microtone/S microtubule/S microvascular microvolt/MS microwavable microwave/G7DSM microword/S mid-afternoon mid-age mid-aged mid-air/SM Mid-America Mid-American mid-angle Mid-Atlantic mid-band/M mid-body mid-breast mid-brow mid-calf mid-career mid-century mid-channel mid-chest mid-circle mid-coast mid-continent mid-continental mid-course mid-cycle mid-deck mid-deep mid-distance mid-earth mid-engined mid-European mid-evening mid-feather mid-fi mid-flight mid-kidney mid-layer mid-level mid-management mid-market mid-morning mid-ocean mid-oceanic mid-off mid-on mid-year mid/Z Midas midbrain midday/SM midden/SM middle-age/D middle-class middle-of-the-road middle-sized middle/mDSGkJ middlebrow/SM Middlebury Middlehurst middler Middlesbrough/M Middlesex Middleton Middletown middleware middleweight/MS middlingish middlingness middy/SM midear midface midfacial midfield/MS midfielder/S Midgard/M midge/SM midget/SM midheaven midi/S midland midlander Midlands midlife midline midlives Midlothian/M midmost/S midnight/SM midpoint/MS midrange midrib/MS midriff/SM midscale midsection/M midship/mS midspan midst/MS midstream/M midsummer/SM midterm/MS midway midweek/YSM Midwest Midwestern Midwesterner/S midwicket midwife/My midwifery/MS midwinter/MYS midwives midyear/SM Mielczarek mien/SM miff/DSG MIG/S might've might/S2Zz mightiness/S mightn't mightn't've mighty/TP Mignon migraine/MS migrant/ISM migrate/INS4DnG migration/MI migrative migrator/S migratory/S Miguel mikado/SM mike/DMGS Mikhail milady/MS Milan Milanese milch/M mild-mannered mild/TPY milden mildew/ZGDSM mildness/S Mildred mile/SM mileage/MS mileometer milepost/SM miler/M milestone/MS milfoil/S Milford/M milieu/SM militancy/SM militant/YPS militarisation militarise/CSDG militarism/SM militarist/W militarization/M militarized/C military/SM-Q3Y militate/SGD militia/mSM milk/RD2ZSMG milkfish/S milkiness/S milkmaid/SM milkman/M milkmen/M milkshake/S milksop/SM milkweed/MS milky/TP mill/SRD7MG Millard Mille/M millenarian/S millenarianism/M millenarianist/S millenary/S millennia millennial/S millennialism millennium/SM millepede's millet/SM Millett/M Millette/M Millgarth milliamp milliampere/S milliard/SM millibar/S millidegree/S Millie/M milligram/S millijoule/S millilitre/S millimetre/S milliner/ZSM millinery/SM milling/M million/MHS millionaire/SM millionth/M millipede/SM millisecond/SM millivolt/MS millivoltmeter/SM milliwatt/S millpond/SM millrace/MS millstone/SM millstream/SM Millwall Millward millwright/SM Milne Milnthorpe Milo milometer milord/M Milquetoast/S milreis Milroy milt/RSM Milton/WM Milwaukee MIMD mime/DSMG mimeo mimeograph/MDSG mimer/M mimesis/M mimetic/Y Mimi mimic/RDGSy mimicry/SM mimosa/MS Min min. min/S Mina Minardi minaret/SM minatory mince/RDGkSJ mincemeat/SM Minchin/M mind-expanding mind-numbing/Y mind-reader mind/phSiR6DjMG Mindanao/M mindbogglingly minded/A minder/AS mindful/U mindfulness/SM mindless/YP mindlessness/S minds/A mindset/S mine-detector mine/RDSJG mined/f minefield/SM mineral/Qq8-SM mineralisation/CS mineralization/CS minerally mineralness mineralocorticoid/S mineralogy/Mw3S Minerva mines/f mineshaft/S minestrone/MS minesweeper/SM minesweeping mineworker/S Ming mingle/FGDS Minho/M mini/S miniature/GQ3S8M-qD minibore minibreak/S minibus/SM minicab/SM minicam/MS minicar/S minicell minichain minichromosome minicircle minicomputer/SM minidisc/S minidress's minify/SGDN minim/s9Q8S-qMo minima/M minimal/S3 minimalism/S minimalist/W minimality minimax/M minimization/M minimum/SM mining/M minion/SM miniscule miniSD miniseries miniskirt/MS minister/NdnSMo ministerial ministrant/S ministration/M ministry/SM minivan/S miniver/M mink/MS minke Minneapolis minnesinger/MS Minnesota/M Minnie minnow/MS Minoan minocycline minor/SM minority/SM Minos Minot/M Minotaur/M minoxidil Minsk/MZ Minsky/M minster/MS minstrel/SM minstrels/Z minstrelsy/SM mint/DGSMRZ mintage/MS minty/T minuend/MS minuet/MS minus/S minuscule/SM minute/PMGTDSY minuteness/S minutia/M minutiae minx/MS Miocene MIPS Miquelon/M Mira Mirabeau miracle/MS miraculous/YP mirage/DSMG Miranda mIRC mire/DMGSZ Miriam Mirowsky Mirrlees mirror/dMS mirth/6SpMj mirthful/P mirthfulness/S mirthless/PY MIRV miry/T mis-citation mis-selection mis-sell/SG mis-sold misaccount/SGD misadaptation misaddress misadjust/SGD misadventure misallocate/SDGN misandrist/S misandry misanthrope/M1ZS misanthropical misanthropism misanthropist/S Misanthropos misanthropy/MS misappliance misapply/nN misappreciate/SGDN misapprehend misapprehensive misbehaver/M misbelief/S misbeliever/S misbrand misbuild/SG misbuilt misc/b miscalculate miscall miscarry miscast/G miscategorise/SGD miscegenation/SM miscellanea miscellaneous/Y miscellaneousness miscellany/SM mischance mischief-makers mischief-making mischievous/PY mischievousness/S miscibility/S miscible/CI misclassified miscommunicate miscommunications misconfiguration misconfigure/D misconstruction/S misconstrue miscount miscreant/SM miscreate/SGD miscreative miscutting misdate/SGD misdeal misdecision misdeclaration/S misdeed misdemeanant/SM misdemeanour/SM misdescribe/SDN misdescriptive misdial/SGD misdirect misdirector misdistribution misdoubt/SD misenter/Sd miser/ZY7l miserable/P miserableness/S miserliness/S miserly/P misery/MS misestimate/D misestimation/S misexplain/SGD misexplanation/S misfeasance/SM misfeature misfield misfit misfold/SGD misgiving/SM misguide/hi misguided/P mishandle/G mishap/M Mishkin/M mishmash/MS misidentify/N mislay mislead/k misleader misline mislineation mislippen mislive/SGD mislocalize/SGDN mislocate/SGD mislocation mislodge/SGD mismade mismake/SG mismanageable mismanager mismannered mismanners mismannert mismark/SGD mismarketing mismarriage/S mismarry/SGD mismatchment mismate/SGD mismean/SG mismeant mismeasure/SGD mismeasurement/S mismetre/SGD misnomer/SM misogamy/M3S misogynist/W misogynous misogyny/3SM misperceiving misperception/S misplace/L misprediction misprice/SGD misprint/M misprision/SM misprize/SGD misprizer misproportion misqualify/SGD misread misreport misrepresenter/M miss/EVDGS missal/MSE missaw missee/SG misseen misses/K misshapen/YP misshapenness/S missile/SMy missilery/MS mission's/A4 mission/FRSM missionary/MS missions/4 Mississauga Mississippi Mississippian/S missive's missive/4 missives Missoula Missouri Missourian misspeak misspecification misspell misspoke misstep missus/SM Missy mist/RZ2zDG mistakable/U mistake/M mistaken/Y mistaker misted/C mister/CMS mistime/G mistiness/S mistle mistletoe/SM mistral/SM mistranslate mistreat/L mistruster/M mists/C misty/T mistype/J misunderstand/R misuse/M MIT/M Mitch/M Mitchell/M Mitchum/M mite/MS mitigate/DNnyGS mitigated/U mitigation/M mitochondria mitochondrial mitogen/SW mitoses mitosis/M mitotic mitral mitre/DGMS mitsuba Mitsubishi mitt/SM mitten/SM Mitterrand mix-up mix/GKDSA mixable mixed/U mixer/SM mixture/MS mizzen/SM mizzenmast/MS MK3D mk3d mka MKA mks MKS mkv MKV ml Mlle MLSO mm MMB Mme MMORPG/S MMS/SGD MMU/M MMX Mn mnemonic/YMS mnemonics/M Mo moan/RDGMS moat/DMGS mob's mob/CSDG mobber mobcap/SM Mobil mobile's mobile/IQ-+9stq8 mobiles mobilise/CnGADS mobility/SMI mobilize/ADSCNnG mobster/MS Mobutu Moby/M moccasin/MS mocha/SM Mochizuki/M mock-up/S mock/RGSkD7 mocker/Z mockers/M mockery/SM mockingbird/SM mod/RoSGD modal/S modality/SM mode/FMS model/RSMJDG models/A modem/MS moderate/YIPN moderated/U moderateness/S moderates moderating moderation/MI moderations moderator/MS moderatorship/S modern/SQ8YTPs9q- modernised/U modernism/SM modernist/WS modernity/MS modernization/M modernness/S modest/TZY Modestas/M modestly/I Modesto modesty/MIS modi modi operadi modi vivendi modicum/MS modifiability/M modifiable/P modification/M modificatory modified/U modify/NnRSBGD modish/YP modishness/S modular/Q-Y8q modularity/MS modulate/CGANDS modulated/U modulation/MCS modulator/CAMS module/NSnM moduli modulo modulus/M modus modus operandi modus vivendi Moe/M Moen/M Moffat/M Moffett/M Moffitt/M Mogadishu/M moggie/MS Moglen/M mogul/MS mohair/SM Mohamed/M Mohammed/M Mohammedan Mohammedanism Mohan/M Mohawk/M Mohr/M moiety/SM moil/GSD Moine Moines Moira/M moire/SM moist/PYT moisten/rdS moistness/S moisture/sQMS Mojave molal molar's molar/SK molarity/SM molasses/M Moldavia Moldavian moldavite Moldova/M Moldovan/S mole/MS molecular/Y molecularity/SM molecule/MS molehill/MS moleskin/SM molest/SnNRGD molestation/M molested/U Molesworth/M Molex Moliere Molina Moline moll/MYS Mollie mollification/M mollify/GnDSN mollusc/MS Mollusca molluscan molly/MS mollycoddle/SGD mollycoddler/M Molokai Molotov molten molybdenite/M molybdenum/M mom's Mombasa moment/YSM momenta/y momentariness/S momentary/PY momentous/PY momentousness/S momentum/MS momma/S mommy's Mon Mona/M Monaco/M monad/SMW Monaghan/M monamine/S monarch/3wWMZ monarchism/SM monarchist/W monarchs monarchy/SM3 Monash monastery/MS monastic/YS monasticism/MS monaural/Y monazite Mondale Monday/SM Mondello/M Mondeo Mondrian/M Monegasque Monet monetarism/S monetary/3Y monetise/CnADSG monetize/nCGNADS money-changer/S money/pMDS moneybags moneyer's moneylender/MS moneymaker/MS moneymaking/M Monfort monger/SM mongol/S Mongol/WS Mongolia/M Mongolian/S mongolism/SM mongoloid/S mongoose/MS Mongrain/M mongrel/MS Monica monies/M moniker/SM monism/MS monition/KMS monitor/MSd monitored/U monitory/S monk/SM monkery monkey/DSMG monkeyshine/S monkfish/S monkish monkshood/SM Monmouth/M Monmouthshire/M mono/SM3 monoalphabetic/Y monoamine/S monobactam/S monobasic monobrow/D monochord/S monochrome/MSW monocle/DMS monoclinic monoclonal/S monocoque monocot/S monocotyledon/MS monocotyledonous monocracy/S monocrat/W monocrystalline monocular/SY monoculture monocyclic monocyte/S monodist/S monody/MWS monoecious monoecy monofactorial monofil/S monofilament/S monogamous/Y monogamousness monogamy/3SM monogenean/S monogenic monogenically monoglot monogram/DGSM monogrammatic monograph/SMDG monographic monolater monolatrist monolatrous monolatry monolayer/S monolingual/SY monolingualism monoliteral monolith/S1MW monologic monological monologise/SGD monologist/S monologize/SGD monologue/MDGS monomania/MS monomaniac/SM monomaniacal monomer/MS monomeric monomethyl monomial/MS monomolecular monomorphic monomorphism monomorphous Monongahela/M mononuclear mononucleoses mononucleosis/M monophonic Monophoto monophthong/S monophthongal monophyletic monophyly monoplane/SM monopodia monopodial monopodially monopodium monopole/Q8Zs3-S monopolist/W monopolization/M monopoly/SM monorail/SM monorchid/S monorchidism monosaccharide/S monosomy/W monospermal monospermous monostable monosyllable/WSM monotheism/MS monotheist/WS monotherapy monotone/WMS1Z monotonicity monotonous/PY monotonousness/S monotony/SM monotreme/S monotype monotypic monovalent monoxide/MS monozygotic Monroe Monrovia/M Monsanto Monseigneur/S Monsieur/M Monsignor Monsignori monsoon/SM monsoonal monster/MSd monstera monstrance's/A monstrance/SM monstrosity/MS monstrous/YP montage/SMDG Montague Montaigne/M Montana/M Montclair Monte/Z Montenegrin Montenegro/M Monterey Monterrey Montessori Monteverdi/M Montevideo/M Montezuma Montfort/M Montgomerie/M Montgomery month/MSY monthly/S Monticello Montmartre/M Montoya/M Montpelier Montrachet/M Montreal/M Montresor/M Montrose Montserrat/M monument/oMS monumental monumentality/M Monza moo/SGD mooch/RGDS mood/2MZSz moodiness/S Moodle/M Moody/M moody/TP Moog moon/DSpMG moonbeam/MS Mooney moonlight/MGRSD moonlighting/M moonlit moonrise moonscape/MS moonset moonshine/MS moonshiner's moonshot/MS moonstone/MS moonstruck moonwalk/DGS moor/DSMGJ Moore/M Moorhead/M mooring/M Moorish moorland/SM moose/M moot/GSD mooter mop/dSGrMD mope/SZ moped/MS mopey mopish moppet/SM moppy mopy/PYT moquette Mora Moradian/M Moraes/M moraine/MS moral/-Qs83SM morale/MS3 moralise/CGSDR moralist/W1 morality/SMI moralize/CNnSDG morally/I Moran/M Morant/M morass/MS moratorium/SM Moratuwa Moravia Moravian Moray/M moray/SM morbid/Y morbidity/MS morbidness/S mordancy/SM mordant/GDYS Mordecai Morden/M Mordred more/oS Morecambe Moreen Morehouse morel/MS Moreland moreover Moresby/M Moreton/M Morgan/M Morgellons Morgen morgue/MS Moriarty moribund/Y moribundity/M morion's Morland/M Morlet/M Morley/M Mormon/SM Mormonism/M morn/GMSJ morning/M Mornington/M Moro/M Moroccan/S Morocco/M moron/WM1S Moroni/M morose/YP moroseness/S Morpeth morph/SDJG morpheme/SM morphemic/S Morpheus/M morphia/S morphine/SM morphism/MS morphogenesis morphogenetic morphogenic morpholine morphology/3WMwS1 morphometrically morphometrics morphometry/W morphophonemic/S morphophonemics/M morris Morris's Morrison/M Morrisons Morristown/M morrow/MS Morse/M morsel/SM Mort/M mortadella mortal/IYS mortality/IMS mortar/dMS mortarboard/SM mortem/SM Morten/M mortgage/DSMG mortgagee/SM7 mortgagor/MS mortice/MS mortification/M mortifier/M mortify/GhnSND Mortimer/M mortise/DGSM Morton/M mortuary/SM Morville/M mos/GZD mosaic/MS mosaicked mosaicking mosasaur/S moschatel Moscianese Moscow/M Moseley/M Moselle/M Moser/M Moses mosey/DGS Moshe/M Moslem/M Mosley/M Mosotho mosque/MS mosquito/M mosquitoes moss-grown moss/MS Mossberg/M mossy/T most/Y MOT/M mote/SMV motel/MS motes/C motet/SM moth-eaten moth/RSM mothball/DMGS mother-in-law mother-of-pearl mother/dpY motherboard/MS mothercraft motherer/S motherhood/MS mothering/M motherland/MS motherliness/S motherly/P mothers-in-law Motherwell motif/SM motile/S motility/SM motion's/FC motion/GpDMS motional motioner/M motionless/Y motionlessness/S motions/CF motivate/SGD motivated/CU motivating/C motivation/M motivator/S motive/DnSNxMVpG motley motlier motliest motocross/MS motor/QSdqm38-M motorbike/DSMG motorboat/MS motorcade/MGSD motorcar/SM motorcycle/3GSM motorhome/S motoring/M motorised/U motorist motormouth/D Motorola/M motorphobia motorsailer/S motorway/MS Motown/M mots Mott/M mottle/SGD mottledness mottler/M motto/MS mottoed mottoes mottoless mouchard mouchette moue/DMGS mould/2MZJDRGS mouldboard/MS moulded/A moulder/d mouldiness/S moulding/M moulds/A mouldy/TP moult/RSGD Moulton/M mound/MDGS mount's mount/EDCAGS mountable/U mountain/SM mountaineer/JMGSD mountaineering/M mountainous/PY mountainside/MS mountaintop/MS Mountbatten/M mountebank/SM mounted mounter/SM Mountie mounties mounting/MS Mountmellick/M mourn/6jJDRGS Mourne/M mournful/T mournfulness/S mourning/M mouse/DRGMSZ mouseover/S mousepad/S mousetrap/DMSG mousey mousiness/S mousing/M mousse/SM Moussorgsky/M moustache/MDS moustachio/DSM mousy/PT mouth-to-mouth mouth/M6ZDGS2 mouthable mouthbrooder/S mouther mouthfeel/S mouthful/SM mouthiness/S mouthorgan mouthpart/S mouthpiece/SM mouthwash/MS mouthwatering mouthy/PT mouton's MOV movability/I movable/SIPY movably/I move/ARSDG moveability moveable/PSY moved/U movement/SM moving/U movingly mow/RSDG Mowgli/M mowing/M mown Mox moxibustion Moyer/M Moyes Moyle/M Moyra/M Moyross Mozambican/S Mozambique/M Mozart/M Mozes/M Mozilla/M Mozillian/SM mozzarella/MS mp MP/SM MP3/S MPEG mpg mph MPhil MPLA MPV Mr/M MRI mRNA Mrs Ms ms MS-DOS mSATA MSC MSc MSDN MSI/M MSM/M MSN MSP/SM MST Mt mtDNA MTS MTV mu much-needed much/P mucilage/SM mucilaginous mucinous muck/DGMZS mucker/M muckrake/DRSMG mucky/T mucocutaneous mucoid mucoidal mucoidy mucosa/M mucosae mucosal mucositis mucous mucus/SM mud/SM2Zz mudbank muddiness/S muddle/RSGD muddlehead's muddleheaded muddleheadedness muddy/GTSDP mudflap/S mudflat/S mudguard/MS mudlarks mudroom/S mudslide/S mudsling/RGJ mudslinging/M mudstone/S Mueller/M Muenster muesli/M muezzin/MS muff/DGMS muffin/MS muffle/DGRS MUFON/M mufti/SM mug/2JMRGZSD Mugabe/M mugginess/S muggle/S muggy/T mugshot/S mugwort/S Muhammad/M Muhammadan/SM Muhammadanism Muhammed Muir/M Muire/M Muirhead/M mujahedin mujahideen mujahidin mukluk's mulatto/MS mulattoes mulberry/SM mulch/DGMS mulct/SDG Mulder/M mule/MGDS muleskinner/S muleteer/SM Mulford/M Mulgrew/M Mulholland/M mulish/PY mulishness/S mull/SDG mullah/MS mullein/MS Mullen/M Muller/M mullet/SM Mulligan/SM mulligatawny/SM Mullingar/M Mullins mullion/GMSD mulloway multi multi-access multi-agency multi-coupler multi-ethnic multi-modal multi-national multi-purpose multi-site multi-stage multi-storey multi-track multi-user multi-way multiagent/S multiaxial multibillion Multibus/M multibuy/S multicast multicell/D multicellular multicellularity multicentral multicentre multicentric multichannel/M multicollinearity/M multicollision multicolour/SMD multicolumn multicomponent multicomputer/MS multicore Multics/M multicultural multiculturalism/S multiculturalist multiculturally multidimensional/Y multidimensionality multidirectional multidisciplinary multidrug multifaceted multifactorial multifaith multifamily multifarious/PY multifariousness/S multifigure multifold multiform multifunction/oD multifunctional multifunctionality multigrain multigym multiheaded multilateral/Y multilateralism multilateralist/S multilayer multilayered/P multilevel/D multiline multilineal multilineality multilingual/S multilingualism/S multilingually multilinguist multiliteral multimedia multimegaton/M multimeric multimeter/MS multimillion multimillionaire/MS multimodal multinational/SY multinomial/M multipanel multiparity multiparous multipartite multiparty multipath multiperforate/D multiperiod multipersonal multiphase multiphased multiphonic/S multiplatform multiplatinum multiplay multiplayer multiple-choice multiple/SMY multiplet/S multiplex's multiplex/CGDRS multiplexor/SM multiplicand/MS multiplicate multiplication/M multiplicative/S multiplicity/MS multiply/RvSNVD7nG multipoint multipolar multipolarity multipole multiprocess/G multiprocessor/SM multiprogram/JDG multiprogramming/M multiracial multirange multiscreen multisensory multisession multispectral multispeed multistage multisyllabic multisystem multitalented multitask/SGDR multithread/DG multitouch multitrack/D multituberculate/S multitude/MS multitudinous/PY multivalent multivalued multivalve multivariate multiverse/S multiversity/M multivitamin/S multiwindow/D multiwire multiyear mum/RDZSMG Mumbai/M mumble/RSDGJ mumbo mumbo-jumbo Mumford/M mummer/Z mummery/SM mummification/M mummify/SNDGn mummy/MS mumps/M munch/DMRGS Muncie/M mundane/Y mundaneness Mundy/M munge/RGSJD Munich/M municipal/SY municipality/SM Munier/M munificence/MS munificent/Y muniment/S munition/DSG Munoz/M Munro/M Munroe/M Munson/M Munster/M muon/SM muonium muonless muppet/SM Muppet/SM Mura/M mural/3MS Murali muralist Murchison/M murder/rdSM murderess/S murderous/YP Murdoch/M Murdock/M Murial/M Muriel/M Murielle/M Murillo/M murine murk/TZzSM2 murkiness/S murky/T Murmansk/M murmur/dMSr murmuring/S murmurous Murphy/M murrain/SM Murray/M Murrayfield/M murrelet/S Murrow/M Murry/M mus/dSw1k muscadine/S muscari muscarinic Muscat/M muscat/SM muscatel/SM muscle-bound muscle/MGSD muscleman musclemen muscly/T muscovite Muscovite/MS Muscovy/M muscular/Y muscularis muscularity/SM musculature/SM musculoskeletal musculus Muse's muse/J muser/M musette/MS museum/MS mush/Z2SM mushed musher's mushiness/S mushroom/DGMS mushy/TP music/MS musical/S musicale's musicality/SM musically/U musician/MSY musicianship/MS musicology/M3wS musk-rose musk/ZM2 muskeg/MS Muskegon/M muskellunge/SM musket-ball musket/SMy musketeer/SM musketry/SM muskrat/SM musky/TP Muslim/SM muslin/MS musquash muss/SGD mussel/SM Mussolini/M Mussorgsky/M mussy must've must-have must/zZS2 Mustafa/M mustang/MS mustard/SM mustardy muster/Sd mustiness/S mustn't musty/TP mutability/IMS mutable/FI4 mutableness/M mutably/I mutagen/MS mutagenesis mutagenic mutagenicity mutant/MS mutate/FDSG mutation/FM4 mutational/Y mutator/FS mute/Fn4NDSG muted/Y mutely muteness/S muter/F mutest Muthesius mutilate/GnSND mutilation/M mutilator/MS mutineer/MS mutinous/Y mutiny/DSGM Mutsuhito/M mutt/SM mutter/rJSd mutton/MS muttonchops mutual/YS mutualism/S mutualist/SW1 mutuality/S muumuu/SM Muzak muzzle's muzzle-loaded muzzle-loader/S muzzle-loading muzzle/DGUS muzzler/M muzzy/TYP MW mW my myalgia myalgic Myanmar/M mycelia mycelial mycelium Mycenae/M Mycenaean mycology/3SM mycoplasma/S mycoplasmata mycotoxin/S myelencephalic myelencephalon myelin myelinated myelination myelitides myelitis/M myeloblast myelocyte myelomonocytic myelosuppression Myers Mylar Myles/M mylohyoid myna/SM mynah/MS myocardial myocarditis myocardium/M myoclonic myoclonus myogenic myoglobin myomere/S myometrial myometrium myomorph/W Myomorpha myonecrosis myonecrotic myoneural myopathic myopathy/S myopia/SM myopic/YS myosin Myra/M myriad/S myriapod/S Myriapoda myrmidon/S Myrna/M Myron/M myrrh/MS myrtle/SM myself Mysia/M Mysian/S mysid/S Myspace/M MySpell MySQL/M mysterious/PY mysteriousness/S mystery/SM mystic/YMS mystical mysticete/S Mysticeti mysticism/SM mystification/M mystifier/M mystify/CSnDGN mystifying/Y mystique/SM myth/MW1wS mythographer/SM mythography/M mythoi mythologic mythologisation mythologise/CSGD mythologization mythologize/SGD mythology/SQM31w mythos myxoedema myxoma/S myxomata myxomatosis myxomatous mélange mémoire ménage métier/S mêlée/MS Möbius Münchhausen/M N'Djamena/M N'Djemena n.d. n/NnxVvu Na/M NAACP nab/GSD Naber Nabisco/M nabob/MS nacelle/MS nacho/S NaCl/M nacre/MS nacreous Nada/M Nadella/M Nadelmann/M Nadia/M Nadine/M nadir/MS nadolol naff naffer naffness nag/RDSGM Nagasaki/M nagging/Y Nagoya/M Nagy/M nagyagite nah Nahum/M naiad/SM naifs nail-biting nail/DMGS nailbrush's nailer/M Nairobi/M naive/YT naiveness naivete/Z naivety/SM naiveté/SM Nakamura/M Nakano/M Nakayama/M naked/PY nakedness/S Naku'alofa/M naloxone naltrexone namby namby-pamby NAmE name's name-calling name-drop/DGSR name/aDASG nameable/U named/M nameless/Y namelessness namely nameplate/SM namer/MS namesake/SM namespace/SGD Namibia/M Namibian/S NaN nan/MZ Nana/M Nanak/M nance Nance/ZM Nancy/M nancy/S NAND Nandi/M nandina Nanette/M Nannette/M nanny/MDSG nannygai/S nano nanobacteria nanobacterium nanobiotechnology nanobot/S nanocomposite/S nanoengineer/SG nanofibre/S nanogram nanomaterial/S nanomedicine nanometre/SM nanomolar nanoparticle/S nanorobot/S nanorod/S nanoscale nanoscience nanoscopic nanosecond/SM nanostructure/SD nanotech nanotechnological nanotechnologist/S nanotechnology nanotube/S nanowire/S Nantes/M Nantucket/M Nantwich Naoki/M Naomi/M nap/pRSZGMD napalm/SMDG nape/MS naphtha/SM naphthalene/SM naphthene/S naphthenic Napier/M napkin/MS Naples/M napoleon/S Napoleon/WSM Napoleonically Napoleonism Napoleonist nappy/MS naproxen Napster/M Nara/M Narayan/M Narbonne/M narcissi narcissism/MS narcissist/SWM narcissus/MS narcolepsy narcoleptic/S narcoses narcosis/M narcotic/MS narcotise/DSG Naresh/M naringin nark/SMZ narky/T Narnia/M Narotam/M Narragansett/M narrate/GDnNSVv narration/M narrational narrative/SM narrativity narratological narratology/3 narrator/MS narrow-minded narrow-mindedness narrow/DGPSTY narrowband narrowcast/DGR narrowness/S narwhal/SM nary NAS NASA/M nasal/-YqQ8S nasality/SM NASCAR nascence's/A nascences/A nascent/A Nasdaq/M NASDAQ/M Nash/M Nashua/M Nashville/M Nasir/M nasogastric nasopharyngeal nasopharynx Nasrin/M Nassau/M Nasser/M nastiness/S nasturtium/MS nasty/PYTS NATA natal/K Natalie/M natalist natality/M Natasha/M natch Natchez Nathalie/M Nathan/M Nathaniel/M Nathel nation/M national/8-S9Qsq3 nationalise/CnAGSD nationaliser/CMS nationalism/SM nationalist/1W nationality/MS nationalization/M nationalize/CSGnNDR nationally/4 nationhood/SM nationwide native/PS nativity/SM natl NATO/MS natter/dS Natterer/M nattiness/S natty/PYT natural/qS38Q- naturalism/SM naturalist/W naturally/U naturalness/U naturalnesses nature/ohMDS natured/C natures/C naturism naturist/S naturopath/S naturopathic naturopathically naturopathy NatWest naught/z2MZ naughtiness/S naughty/PTS Nauru/M nausea/MS nauseate/GDSk nauseous/P nauseousness/S nautical/Y nautilus/MS Navaho/M navaid/S Navajo/S naval/Y Navarino/M Navarro/M nave/ZMS navel-gazing navel/SM navigability/SM navigable/P navigate/BNxDGSn navigation/M navigator/MS navvy/MS navy/MS nay/SM naysayer/S Nazarene/MS Nazareth/M Nazi/SM Nazism naïve/Y naïveness naïvety/S naïveté/S Nb NBA/M NBC NBS NCAA NCC NCO Nd NDE/S Ndebele/S Ndjamena/M Ne ne'er ne'er-do-wells Neal/M Neale Neanderthal/S neap Neapolitan/SM neaptide near-sighted/PY near-sightedness/S near/YDTGPS nearby nearness/S nearshore/SGD nearside/M neat/TPY neaten/dS Neath/M neatness/S Nebraska/M Nebraskan/MS Nebuchadnezzar/M nebula/MS nebulae nebular nebulosity nebulous/PY nebulousness/S necessaries necessary/UY necessitate/DNnSG necessitation/M necessitous necessity/MS neck/MJSGD neckband/M necker neckerchief/MS necking/M necklace/DSMG necklet/S neckline/SM necktie's neckwear necrobiosis necrobiotic necrology/MS necromancer/MS necromancy/MS necromantic necrophile necrophilia/M necrophiliac/S necrophilic necrophilism necrophilist necrophobia necropolis/MS necropost/SGD necropsy/MS necrose/D necroses necrosis/M necrotic nectar/MS nectarine/SM nectarivorous nectarous nectary/SM Ned/M ned/S neddy/S nee need/ZDSpj26G needed/U needer/M needfulness Needham/M neediness/S needle-stick needle/D5GRSM needlecord needlecraft/M needledick needlefish/S needleful/S needlelace needleless needleloom needlenose needlepoint/SGDM needless/Y needlessness/S needlework/MS needleworker needn't needy/TP Neely/M neep/S nefarious/PY nefariousness/S neg/uNnvV negate/GSD negation/M negative/GDPS negativeness/S negativism/MS negativity/SM negator/MS Negev/M neglect/6jSDG neglecter/M neglectful/P neglectfulness/S negligee/MS negligence/MS negligent/Y negligibility/M negligible/Y negligée/SM negotiability/MS negotiable/A negotiant/M negotiate/DAnNSG negotiation/MA negotiator/MS Negritude/M Negro/M Negroes Negroid/S Nehemiah/M Nehru/M neigh/SGDM neighbour/DYSGM neighbourhood/MS neighbourliness/S neighbourly/P Neil/M Neill/M neither Nell/MY Nelle/M Nellie/M Nelly/M Nelsen/M nelson/SM nematic nematocyst/S Nematoda nematode/SM nematomorph/S Nematomorpha Nembutal/M Nemechek/M nemeses nemesis Nemesis/M neo-Catholic neo-Catholicism neo-Confucian neo-Confucianism neo-Darwinian neo-Darwinism neo-Darwinist neo-fascist/S neo-Georgian neo-Gothic neo-impressionism neo-impressionist/S neo-Latin neo-liberal/S neo-liberalism neo-Marxism neo-Marxist/S neo-Nazi/S neo-Nazism neoclassic/M neoclassical neoclassicism/MS neoclassicist/S neocolonial neocolonialism/SM neocolonialist/S neoconservatism neoconservative/S neocortex/M neocortical neocortices neodymium/M neolithic Neolithic's neologise/SGD neologism/MS neologist/S neologize/SGD neomycin/M neon/MS neonatal neonate/oSM neonatologist neonatology neonicotinoid/S neonomian/S neonomianism neontological neontology NeoOffice/M neopagan/S neopaganism neophobia neophobic neophyte/SM neoplasia neoplasm/SM neoplastic neoplasticism Neoplatonic Neoplatonism Neoplatonist/S neopositivism neopositivist neoprene/SM Neoproterozoic Neoptolemus/M neorealism neorealist/S neoteric/S Neotropical neotropics neovascular Nepal/M Nepalese Nepali/SM nepenthe/SM nephew/SM nephridia nephridial nephridium nephrite/MWS nephritides nephritis/M nephroid nephrological nephrologist/S nephrology nephromixium nephron/S nephropathic nephropathy nephropexy nephrotoxic nephrotoxicity nephrotoxin/S nepotism/SM nepotist/S Neptune/M neptunium/MS nerd/SZM nerdiness nerdish nerdishness nerdy/T nerine/S Nero/M nerve's nerve-racking nerve-wracking nerve/UGSD nerveless/YP nervelessness/S nerviness/S nerving/M nervous/PY nervousness/S nervure/S nervy/TP Ness/M nest/DS7MG nester/MS nestle/DSG nestler/M nestling/MS Nestor/M net/SMDG netball/M netbook/MS NetBSD/M Netflix/M nether Nethercote/M Netherfield Netherhampton Netherlander/SM Netherlands/M nethermost netherworld/S netiquette netizen/S Netscape/M netsplit/SGD nett/SJ netter netting/M nettle/MSGD Netto/M network/GJDMS Neuburg Neumann/M Neupogen neural/Y neuralgia/SM neuralgic neurasthenia/MS neurasthenic/S neuritic/S neuritides neuritis/M neuroactive neuroanatomical neuroanatomist/S neuroanatomy neurobehavioural neurobics neurobiochemistry neurobiological neurobiologist/S neurobiology/M neuroborreliosis neurochemical neurochemist neurochemistry neurocomputer/S neurocrystalline neurodegeneration neurodegenerative neuroeconomics neuroendocrine neuroendocrinology neurofeedback neurofibril/S neurofibrillary neurogenesis neurogenetic/S neurogeneticist neurogenic neurohormonal neurohormone/S neurohypophyses neurohypophysis neuroimaging neuroleptic/S neurolinguistic/S neurology/W13MSw neuroma/S neuromata neuromimesis neuromimetic neuromodulation neuromodulator/S neuromodulatory neuromotor neuromuscular neuron/SM neuronal neurone/S neuropath/WS neuropathological neuropathologist/S neuropathology/M neuropathy/S neuropeptide/S neurophysiological neurophysiologist/S neurophysiology/M neuropsychiatric neuropsychological neuropsychology/3 neuropteran/S neuropteroid neuropterous neuroradiological/Y neuroradiologist neuroradiology neuroregulator neuroregulatory neuroretinitis neuroscience/S neuroscientific neuroscientist/S neurosecretion neurosecretory neurosensory neuroses neurosis/M neurosurgeon/SM neurosurgery/MS neurosurgical neurotechnology/S neurotic/SY neuroticism neurotoxic neurotoxicity neurotoxicology neurotoxin/S neurotransmission neurotransmitter/S neurotrophic neurotypical neurovascular neuter/dS neuterer/S neutral/Q8-SsY neutralisation neutralise/M neutralism/MS neutralist/S neutrality/SM neutralization/M neutralness neutrino/MS neutron/MS neutropenia neutropenic neutrophil/S neutrophilic Neuwirth/M Neva/M Nevada/M Nevadan/S never never-changing never-dying never-ending never-failing nevermore nevertheless Neville/M Nevis/M nevus's New Age New Ageism New Ager/S new-found new-laid new-look new-style new/AS Newark/M newbie/S newborn/S Newbould/M Newbridge Newbury/M Newburyport/M Newcastle-under-Lyme Newcastle/M newcomer/MS newel/SM Newell/M newer newest newfangled newfound Newfoundland/RM newish Newlands/M newline/SM newly newly-wed/MS Newman/M Newmarket/M newness/SM Newnham Newport/M Newry/M news-gathering news-sheet news-stand/MS news/Zm5p newsagent/SM newsboy/SM newscast/RSM newscasting's newsdealer's newsfeed/S newsflash/S newsgirl/S newsgroup/MS newsletter/SM newspaper/mdS5M newspeak newsprint/SM newsreader/MS newsreel/SM newsroom/S Newsweek/YM Newsweekly/M newswire/S newsworthiness/S newsworthy/TP newsy/TS newt/SM newton/MS Newtonian Newtownabbey/M next next-door nexus/MS NFC NFL NFS ng NGO/S Nguyen/M NHL NHS Ni/M niacin/MS Niagara/M Niall/M Niamey/M nib/SGMD nibble/RGDS Nibelung/S Nibelungen Nibelungenlied Nibiru/M NICAP/M Nicaragua/M Nicaraguan/S Niccolo/M Nice's nice/TPY Nicene niceness/S nicety/MS niche/GMSD Nichelle/M Nichol/SM Nicholai/M Nicholas/M Nichole/M Nicholls/M Nicholson/M nichrome nick/GDSM nickel/SGMD Nickelodeon/M nicknack's nickname/MGDS nicknamer/M NickServ Nicky/M Nico/M Nicodemus/M Nicol/M Nicola/MS Nicolaus/M Nicole/M Nicomedes/M Nicosia/M nicotinamide nicotine/SM nicotinic niece/SM Nielsen/M Nielson/M Nietzsche/M Nietzschean Nietzscheanism Nietzscheism Nieves/M nifedipine nifty/TSY Nigel/M Niger/M Nigeria/M Nigerian/S niggard/YMS niggardly/P nigger/SM! niggle/RGkJDS nigh night-blindness night-life/M night-long night-owl night-soil night-time/SM night-watchman night/MpS nightbird/S nightcap/SM nightclothes nightclub/RMGSD nightdress/MS nighters/c nightfall/SM nightgown/MS nighthawk/MS nightie/SM nightingale/SM nightjar/S nightlife nightly/S nightmare/MS nightmarish/Y nightshade/SM nightshirt/MS nightside nightspot/SM nightstand's nightstick/S nightwear/M nighty's Nighy/M nigrify/SGD nigrite nigromancer nigromancy nigrosin nigrosine nigrostriatal nigrous NIH Nihang/S Nihilianism nihilism/MS nihilist/MSW nihility Nike/M Nikita/M Nikki/M Nikolai/M Nikon/M nil/MGY Nile/SM nilpotent Nils Nilsson/M nimbi nimble/TPY nimbleness/S nimbostratus nimbus/M nimbused NIMBY Nimitz/M Nimoy/M Nimrod/MS Nina/M nincompoop/SM nine/SMH ninepence/M ninepin/S ninepins/M nineteen/HSM ninety-eight/H ninety-first/S ninety-five/H ninety-four/H ninety-nine/H ninety-one ninety-onefold ninety-second/S ninety-seven/H ninety-six/H ninety-three/H ninety-two ninety-twofold ninety/HMS Nineveh/M Ninian/M ninja/S ninjutsu ninny/MS Nintendo/M niobium/M nip/RGD2SZ nippiness/S nipping/Y nipple/SM nipplewort Nippon/M Nipponese nippy/T nirvana/SM Nissan/M nit/SM Nita/M Niterói nitid nitinol nitpick/ZRGDJS nitrate/SMDG nitration/M nitrazepam nitre/MNSnW nitride/SM nitrification/SM nitrify/SGD nitrite/MS nitro nitrobacterium nitrobenzene nitrocellulose/SM nitrochalk nitrofurantoin nitrogen/M nitrogenous nitroglycerin/M nitroglycerine nitrotoluene nitrous nitrox nitty-gritty nitwit/MS Niue/M Niuo nivosity nix Nixon/M Nixonian Nixonisation Nixonism Nixonite Nixonization Nixonomics nixtamal Nizari/S nizatidine Nkrumah/M NLRB nm NNTP no-ball/SD no-claims no-go no-nonsense no-show/S no-win no/Q NOAA Noah/M Noam/M nob/MY nobble/GD nobbler/S Nobel/M nobelium/M nobility/SM Noble's noble/mPT5S nobleness/S noblesse/M nobody/SM nock/SGD nocturnal/S nocturne/SoM nod/oDMGZS nodal noddle/DMSG noddy/M node/SM nodular nodule/MS Noel/SM Noelle/M noes noggin/SM Nohl/M nohow noir/S noire/S noirish noise/pMZ noiseless/YP noiselessness/S noisette/S noisiness/S noisome/P noisy/PTY Nok Nokia/M Nola/M Nolan/M Noland/M Noll/M Nolte/M nomad/WMS Nome/M nomenclator nomenclatural nomenclature/MS Nomi/M nominal/SY nominate/CGASnDN nomination/MCA nominative/SY nominator/CMS nominee/SM non non-Aboriginal non-abrasive non-absorbent non-academic/S non-acceptance/S non-achiever/S non-acid/S non-active non-adaptive non-addictive non-adhesive non-adjacent non-adjustable non-administrative non-African non-aggression/S non-agricultural non-alcoholic/S non-aligned non-alignment/S non-allergic non-American non-appearance/S non-assignable non-athletic non-attendance/SM non-automotive non-availability/SM non-basic non-believer/MS non-belligerency non-belligerent/S non-biodegradable non-biological non-black non-blocking non-breakable non-British non-burnable non-business non-caloric non-cancerous non-capital non-carbohydrate non-Catholic non-chargeable non-chemical non-Chinese non-Christian non-clerical/S non-clinical non-coding non-collectable non-com/MS non-combatant/MS non-combative non-combustible/S non-commercial/S non-commissioned non-committal/Y non-communicable non-communist non-compete non-competing non-competitive non-compliance/MS non-complying/S non-comprehending non-conducting non-conductive non-conductor/SM non-conform non-conformable non-conformance non-conformant non-conformer non-confrontational non-consecutive non-conservative non-constructive non-contagious non-content non-contiguous non-continuous non-contributing non-contributory non-controversial non-convertible non-cooperation/S non-corroding/S non-corrosive non-credit non-criminal/S non-critical non-crystalline non-cumulative non-custodial non-cyclic non-dairy non-decreasing non-deductible non-deferential non-delivery/S non-democratic non-denominational/Y non-departmental non-depreciating non-destructive/Y non-detachable non-determinacy non-determinate/Y non-determinism non-deterministic/Y non-disciplinary non-disclosure/S non-discrimination/S non-discriminatory non-disjunction non-dramatic non-drinker/SM non-driver non-drying non-durable non-Dutch non-economic non-educational/Y non-effective/S non-elastic non-electric/S non-electrical non-emergency non-empty non-enforceable non-English non-equivalence non-equivalent/S non-essential/S non-event/MS non-exchangeable non-exclusive non-executive non-exempt non-existence/SM non-existent non-explosive/S non-extensible non-factive non-factual non-fading non-fat non-fatal non-fattening non-ferrous non-finite non-flammable non-flowering non-fluctuating non-fluent non-flying non-food non-formal non-freezing non-French non-functional/Y non-functioning non-gendered non-genetic non-genetically non-German/W non-governmental non-granular non-hazardous non-hereditary non-hostile non-human/S non-identical non-inclusive non-independent non-industrial non-infectious non-inflammatory non-inflationary non-inflected non-intellectual/S non-interacting non-interchangeable non-interference non-intervention/S non-interventionist non-intoxicating non-intuitive non-invasive non-ionic non-ionising non-irritating non-Italian non-Japanese non-judgemental non-judicial non-legal non-lethal non-linear/Y non-linearity/SM non-linguistic non-literary non-living non-local non-logical non-magical non-magnetic non-malignant non-medical non-member/MS non-metal/SWM non-metropolitan non-migratory non-militant/S non-military non-moral non-narcotic/S non-native/S non-natural non-negative non-negotiable non-nuclear non-numerical/S non-objective non-obligatory non-observance/S non-observant non-occupational/Y non-official non-operational/Y non-operative non-Oriental non-orthogonal non-orthogonality non-parallel/S non-parametric non-participant/SM non-participating non-partisan/S non-party non-paying non-payment/SM non-peak non-performance/SM non-performing non-perishable/S non-person/S non-perturbing non-physical/Y non-poisonous non-political non-polluting non-porous non-pregnant non-prejudicial non-prescription non-procedural/Y non-productive non-professional/SY non-profit-making non-profit/S7 non-programmable non-programmer non-proliferation/S non-public non-punishable non-racial non-radioactive non-random non-reactive non-reciprocal/S non-reciprocating non-recognition/S non-recoverable non-recurring non-redeemable non-reducing non-refillable non-refundable non-relative non-religious non-renewable non-representational/Y non-resident/SM non-residential non-residual non-resistance/S non-resistant/S non-respondent/S non-response non-restrictive non-returnable/S non-rhythmic non-rigid non-Roman non-rural non-salaried non-scheduled non-scientific non-scientist/S non-scoring non-seasonal non-sectarian non-secular non-segregated non-selective non-sexist non-sexual non-singing non-singular non-skid non-slip non-smoker/SM non-smoking non-social non-Spanish non-speaking non-specialist/SM non-specializing non-specific non-spiritual/S non-staining non-standard non-starter/S non-stick non-stop non-strategic non-striking non-structural non-successive non-supervisory non-support/SG non-surgical non-sustaining non-Swedish non-swimmer non-sympathiser/M non-tarnishable non-taxable/S non-technical/Y non-tenured non-terminal/S non-terminating non-termination non-theatrical non-thinking/S non-threatening non-toxic non-traditional/Y non-transferable non-transparency non-transparent non-trivial non-tropical non-trunk non-typical non-U non-uniform non-union/S non-urban non-use non-user/SM non-validity non-variable non-venomous non-verbal/Y non-veteran/SM non-viable non-vintage non-violence/S non-violent/Y non-virulent non-vocal non-vocational/Y non-volatile non-volunteer/S non-voter/SM non-voting non-Western non-white/SM non-word/S non-working non-yielding non-zero Nona/M nonactivated nonage/SM nonagenarian/MS nonagon nonary nonaspirin nonbreeding noncallable nonce/SM nonchalance/MS nonchalant/Y nonchalantness nonconformably nonconforming nonconformist/SM nonconformitant nonconformity/SM noncultivated nondescript/YS nondevelopment none/S nonentity/MS nonequilibrium nones/M nonesuch nonetheless nonfree nongenary nongovernment nongovernmental nonhomologous Nonie/M noninfringement nonintrusive nonissue nonogenarian nonpareil/MS nonplus/GDS nonradiative nonrefoulement nonrival nonsense/1SMw nonsensical/P nonsensicality nonsteroidal nonsuch nonsuit nonsymmetric nonsymmetrical nonsyndromic nontarget Nonya noob/S noodle/SGDM nook/SM noon/SM noonday/SM nooning's noontide/SM noontime/SM noose/MSDG nope nor Nora/M NORAD/M noradrenalin noradrenaline/M noradrenergic noradrenergically Norah/M Noraid NORAID norbergite Norbert/M norbornadiene norbornane Norden/M Nordholts Nordic/S Nordstrom/M Noreen/M norepinephrine Norfolk/M Norina/M Norland/M norm/VDGMoSvu Norma/M normal/8Qs+-tqS normalcy/SM normalise/CGASD normality/SM normalize/CGSD normalized/A normalizer/S normalizes/A normalizing/A Norman/MS Normandy/M normative/P normotensive Norplant Norris Norristown/M Norse/m Nortel/M north-east/M north-Easterly north-easterly north-eastern north-eastward/S north-Eastward/S north-north-east north-south north-west/M north-Westerly north-westerly north-western north-Westward/S north-westward/S north/MSG Northam/M Northampton/M Northamptonshire/M northbound Northcliffe/M northeaster/MS northeasterner norther's northerly/S northern/RS northernmost Northfield/M northing/M Northland/M northly Northman northmen northness Northridge/M Northrop/M Northumb. Northumberland/M Northumbria/M Northumbrian/S Northumbrianism northward/S Northwest/M northwester/MS Norton/M Norwalk/M Norway/M Norwegian/S Norwich/M nose-cone/S nose/ZDGSM nosebag/MS noseband nosebleed/MS nosedive/DSG nosegay/MS nosepiece nosey nosh/SDMG noshery/S nosiness/S nosing/M nosocomial nostalgia/SM nostalgic/YS Nostradamus nostril/SM nostrum/SM nosy/TYP not/7NxdgnlS nota notability/SM notable/C notableness/M notables notal notarial notary/SM notate/xDSVG notation's/F notation/MCo notational/C notative/F notch/DGSM notchy/T note's note/FDCGSNn notebook/MS notecard/S notecase notedly notehead noteholder/S notepad/S notepaper/SM notes inégales noteworthiness/S noteworthy/P nothing-buttery nothing/PSM nothingness/S nothosaur/S notice/DMSGl noticeable/U noticeboard/S noticed/U notification/M notify/SRG7NDn notion's notion/CS notochord/S notoriety/S notorious/PY Notre Notting Nottingham/M Nottinghamshire/M notum notwithstanding Nouakchott/M nougat/SM nought/S Nouméa/M noun/MS nounal Nounéa nourish/DGLS nourished/fU nourisher/M nourishment/f nous/M nouveau nouveaux nouvelle Nov Nova nova/SM novae Novak/M novel/Y-MQ3S novelette/SM novelist/W novella/SM novelty/SM November/SM novena/MS novice/SM novitiate/MS Novo/M Novocain Novocaine now nowadays noway nowhere nowt noxious/YP Noyes/M nozzle/SM Np NPD NRA nroff/M NS ns NSA/M NSF NT NTFS nth NTSC nu/M nuance/SMD nub/ZMS nubbin's nubby/T Nubian/M nubile nubility nuchal nuclear nuclear-free nuclear-powered nuclease/M nucleate/NnGDS nucleation/M nuclei/M nucleoli nucleolus/M nucleon/SM nucleonic/S nucleophile/S nucleophilic nucleoplasm nucleoprotein/S nucleoside/S nucleosomal nucleosome/S nucleotide/SM nucleus/MW nuclide/M nude/Y3STP nuder/C nudes/C nudge/GSD nudger/M nudibranch nudibranchiate nudibranchs nudism/SM nudity/SM Nuffield/M nugatory Nugent/M nugget/MS nuisance/MS nuke/SGMD Nuku'alofa null/S nullable nullification/M nullifidian nullify/DRSnNG nullity/MS numb/RkTYDPGS numbat/S number/pdJ numbered/AeU numberer/M numbering/e numberplate/M numbers/Ae numbness/S numbskull/M numerable/IC numeracy/SI numeral/MS numerate/IS numeration/MS numerator/SM numeric/SY numerical/S numerologist/S numerology/wSM numerous/PY numinous/S numismatic/S numismatics/M numismatist/MS numskull/SM nun/MyS Nunavut nunchaku/S nuncio/SM Nuneaton Nunez/M Nunn/M nunnery/SM nuptial/S Nuremberg/M nurse/RMJSDG nursemaid/SM nurser/Z nursery/mSM nursling/M nurture/MRDSG nut/2GDMZNS nutate/GSD nutation/M nutcase/S nutcracker/SM nuthatch/MS nuthouse nutmeg/MSDG nutraceutical/S nutria/MS nutrient/SM nutriment/MS nutrition/oM3S nutritional nutritionist nutritious/PY nutritiousness/S nutritive/Y nutshell/MS Nuttall/M nuttiness/S nutty/TP Nuuk/M nuzzle/RSDG NVH nvidia/M NVMe/M NVRAM/S NW NY Nyanja/S Nyanza/M Nyasa/M NYC nyctaginaceous Nye/M Nyerere/M nylon/SM nymph/SMO nymphean nymphet/SM nympholepsy/M nymphomania/SM nymphomaniac/S Nyquist/M NYSE Nyssa/M NZ né née négligé Németh/M O O'Brien/M O'Callahan/M O'Casey o'Clock o'clock O'Connell/M O'Connor/M O'Dell/M O'Donnell/M O'Dwyer/M o'er O'Farrell/M O'Hara O'Hare/M O'Higgins O'Keeffe O'Leary/M O'Neil O'Neill O'Reilly O'Shea/M O'Sullivan/M oaf/MS oafish/Y oafishness/S Oahu/M Oak/M oak/SM oaked oaken Oakland/M Oakley/M Oakmont/M oakum/SM oakwood OAP oar/DSM oarlock/SM oars/m5 OAS oases oasis/M oat/SM oatcake/SM oaten Oates/M oath/SM oatmeal/MS ob. Obadiah/M Obama/M Obamacare obbligati obbligato/S obduracy/S obdurate/YS obdurateness/S OBE/S obedience/EMS obedient/EY obeisance/SM obeisant/Y obelisk/MS Oberea Oberlin/M Oberon/M Oberth/M obese obesity/SM obey/ESDG obeyer/EM obfuscate/DNnyGS obfuscater obfuscation/M Obi-Wan/M Obi/M obit/MS obituary/SM object-libido object/DSGvuVM objectify/DSnNG objection/lSM7 objectionable/U objectionableness/M objective/PS objectiveness/S objectivism objectivist/S objectivistic objectivity/SM objector/SM objurgate/GSDnN objurgation/M oblate/YSnN oblateness oblation/M obligate/SNxyGnD obligation/M obligatory/Y oblige/EGDS obligee/SM obliger/M obliging/YP obligor/S oblique/YDSG obliqueness/S obliquity/MS obliterate/DNvnSVG obliteration/M oblivion/MS oblivious/PY obliviousness/S oblong/PS oblongata obloquies obloquy/M obnoxious/YP obnoxiousness/S oboe/SM oboist/S obs. obscene/TY obscenity/SM obscurantism/SM obscurantist/SM obscure/NSDTGYP obscurity/MS obsequies obsequious/Y obsequiousness/S observability/M observable/S observance/MS observant/YU observation/M observatory/MS observe/BxkNRlnSDG observed/U obsess/NxXVSuDGv obsession/M obsessive/S obsessiveness/S obsidian/SM obsolescence/S obsolescent/Y obsolete/GPDSY obstacle/SM obstetric/S obstetrical obstetrician/MS obstetrics/M obstinacy/SM obstinate/PY obstreperous/PY obstreperousness/S obstruct/GSvDuV obstructed/U obstructer's obstruction/3SM obstructionism/SM obstructionist obstructive/PS obstructiveness/S obstructor/S obstruent/S obtain/SGD7 obtainable/U obtainer obtention obtrude/VvuGNSDX obtruder/M obtrusive/UY obtrusiveness/SM obturator/S obtuse/TY obtuseness/S obverse/SY obviate/DnNSG obvious/PY obviousness/S ocarina/MS Occam/M occasion/SMJoDG occasional Occident/M occidental/SY occipital/Y occipitotemporal occiput Occitan Occitanian/S occlude/SVXNDG occlusion/M occlusive/S occult/PNDGSY occulter/M occultism/SM occultist/S occupancy/MS occupant/MS occupation/MKA occupational/Y occupied/U occupier/SM occupy/ADSKnG occur/ASGD occurrence/SM occurrent ocean-going ocean/MWS Oceania/M oceanic/4 oceanographer/SM oceanography/WMS Oceanside/M ocellar ocelli ocelliform ocellus ocelot/SM Ochoa/M ochre/MS ochreish ochreous ochroid ochrous ochry Oconomowoc/M OCR/SDG Oct octadecane octagon/oMS octagonal octahedra octahedral octahedron/SM octakishexahedron octal/S octamer octamerous octane/SM octant/M octarchy/S octastyle octavalent octave/MS octavo/SM octennial octet/MS octile octillion's October/SM Octobrist/S octocoral octocorallian octocoralline octodactylous octode octodecimo/S octodentate octodesexcentenary octogenarian/MS octonary octopod/S octopus/MS octoroon/M ocular/S oculist/SM OD odalisque/SM odd/TLPSY oddball/SM Oddie/M oddity/SM oddness/S odds-on ode/MS Odell/M Oder/M Odessa/M Odette/M ODF Odian/M odiferous Odin/M odious/PY odiousness/S Odis/M odium/MS Odom/M odometer/SM odontocete/S Odontoceti odoriferous odorous/Y odorousness odour/SpM ODs odt Odyssean Odysseus/M Odyssey's odyssey/S OE OED oedema/SM oedematous Oedipal/Y Oedipus/M OEM/MS OEMS oenology/SM oenophile/S Oersted/M oesophageal oesophagi oesophagus/MS oestradiol oestriol oestrogen/SM oestrogenic oestrone oestrous oestrus/SM oeuvre/SM of Ofcom Ofelia/M ofens off'nce off'ns off-air off-break off-centre off-drive/S off-frequency off-key off-licence/MS off-line off-message off-patent off-peak off-piste off-pitch off-plan off-putting off-road/G off-screen off-season off-site off-street off-the-cuff off-the-peg off-the-shelf off-the-wall off-white off/RGMJ offal/SM Offaly/M offance offbeat/SM offcuts Offenbach/M offence/S offend/DRVuGSv offens offense offensive's offensive/IYP offensiveness/SI offensives offer/rJd offertory/MS offhand/iDh offhandedness/S office/SRoM officeholder/SM officemate/S officer/d officership/S official's official/UY officialdom/MS officialese officialism/MS officialness officials officiant/SM officiate/NnSDG officiation/M officiator/SM officio officious/PY officiousness/S offing/M offins offish offline offload/DGS offprint/GMSD offset/SGM offshoot/MS offshore/SD offshoring offside/S offspring/M offstage offt'ns Ofsted/M oft oft-times Oftel OFTEL often oftener oftenest oftenness oftens Ofwat oga Ogden/M Ogg ogg ogive/M ogle/DRSG Oglethorpe/M ogre/MS ogreish ogress/S ogrish Oguibe/M Ogunquit/M oh Ohio/M Ohioan/S ohm/WSM ohmmeter/SM oho/S ohs OHSA/M oil-shale oil/m2RZGMSD oilbird/S oilcan/S oilcloth/SM oilfield/MS oiliness/S oilseed/SM oilskin/MS oilstone oily/TP oink/DGS ointment/SM OJ Ojibwa/SM OK/GDM Okamoto/M okapi/SM okay/DMG Okayama/M Okeechobee/M okey-doke okey-dokey Okhotsk/M Okinawa/M Oklahoma/M Oklahoman/MS okra/MS Okrand/M OKs Oktoberfest olanzapine Olav/M old-age old-fashioned old-gold old-style old-time/R old-world old/T Oldbury olden Oldenburg/M Oldfield/M Oldham oldie/MS oldish oldly Oldman/M oldness/S Oldowan Oldsmobile/M oldspeak Oldspeaker oldster/SM OLE oleaginous oleander/MS oleate OLED/S olefin/M Oleg/M Olen/M oleomargarine/SM oles olfactory Olga/M oligarch/ZMWw oligarchs oligarchy/SM oligo/S oligomer/S oligonucleotide/S oligopolistic oligopoly/SM oligotrophy/W Olin/M olive/MS Oliver/M Olivetti/M Olivia/M Olivier/M olivine Ollie/M Olmsted/M Olsen/M Olson/M Olympia/M Olympiad/SM Olympian/S Olympic/S Olympus/WM olé OM Omagh/M Omaha/M Oman/M Omar/M ombudsman/M ombudsmen omega/MS omelet/SM omelette/MS omen/SMd omeprazole omicron/SM ominous/PY ominousness/S omission/M omit/NXSDG ommatidia ommatidium omni/M omnibus/MS omnicompetence omnicompetent omnidirectional omnipotence/SM omnipotent/YS omnipresence/SM omnipresent/Y omniscience/MS omniscient/SY omnisexual omnisexuality omnivore/SM omnivorous/YP omnivorousness/S on-board on-frequency on-line on-off on-screen on-site on-street on/Y onanism/M onboard once once-over oncer/M oncogene/S oncolitic oncologic oncologist/S oncology/SM oncoming/S one-dimensional one-dimensionality one-directional one-downmanship one-downness one-downsmanship one-eared one-eyed one-half one-horse one-liner one-man one-off one-piece one-quarter one-sided/Y one-sidedness one-step one-third one-time one-to-one one-track one-upmanship one-way one/PMS OneDrive onefold Onega/M Oneida/SM oneirology oneness/S oner/M onerous/PY onerousness/S oneself onesie/S onewhile onflow/G onglaze ongoing/SP onion/MS onionskin/MS online onlooker/SM onlooking only-begotten Onno/M Ono/M onomatopoeia/MS onomatopoeic Onondaga/SM onrush/GMS ons onset/SM onshore onside onslaught/SM onstage Ontarian/S Ontario/M onto ontogeny/MS ontology/1wMS onus/SM onward/S onychophoran/S onyx/SM oocyte/S OODA oodles ooh/DSG oolitic OOo/M oops/S ooze/DZSG oozy/T op/FS opacify/RDGS opacity/SM opal/SM opalescence/S opalescent/Y opalise/SGD opalish opalite opalize/SGD opanci opanka/S opaque/PTSY opaqued opaqueness/S opcode/SM OPEC open-air open-and-shut open-deartedness open-ended open-eyed open-faced open-handed/P open-handedness/S open-heart/D open-minded/Y open-mindedness open-mouthed open-plan open-source open-top open/rdSJY OpenBSD opencast OpenCL OpenDocument opened/AU OpenGL opening/M openness/S OpenOffice/M OpenPGP/M opens/A OpenSolaris OpenSSL/M openwork/SM opera/nSvuMV operability operable/I operadi operand/SM operandi operant/SY operate/DSGFN operatic/YS operation's/F operation/Mo operational operative/FPS operativeness/I operator/FMS opercula opercular operculate operculum operetta/MS Ophelia/M ophiolite ophiolitic Ophiuroidea ophthalmia ophthalmic/S ophthalmology/3MWS opiate/MGDS opine/GSD opinion/MS opinionated/PY opioid/S opisthognathous opisthograph/W opisthorchiasis opisthosoma opisthosomal opisthotic opium/SM Oporto opossum/SM opp Oppenheimer/M opponent/SM opportune/IY opportunism/SM opportunist/SMW1 opportunity/MS opposable oppose/SNxXGD opposed/U opposer/M opposite/YPS opposition/M oppress/VNuSvDGX oppression/M oppressive/P oppressiveness/S oppressor/SM opprobrious/Y opprobrium/SM Oprah/M ops opt-out/S opt/1xwGWSD optic/S optician/MS optics/M optima/o optimal optimality optimise/M optimised/U optimism/cMS optimist/SW1M optimistic/c optimization/M optimized/U optimum/qs8Q-9SM option/GDSM optional/S optionality/M optoacoustic optoelectronic optometry/SMW opulence/MS opulent/Y opus/SM or/NMn oracle/MS oracular oral/S Oran/M orang orang-outang/S orang-utan/MS orange/yMS orangeade/SM orangery/SM orangewood orangey orangish orangutan/S orangutang/S Oranjestad/M orate/SGD oration/M orator/Sw1M oratorio/SM oratory/SM orb/SMGD orbicular Orbison/M orbit/dMS orbital/YSM orbiter/S orc/S orca/S Orcadian/S orcein orchard/MS orchardist/S orchestra/SnoM orchestral orchestrate/DSG orchestration/M orchestrator/M orchid/SM orchidectomy/S orchiectomy/S Orci/M orcish ordain/LSGD ordained/KU ordainer/M ordaining/K ordainment/K ordains/K ordeal/SM order/YESdM ordered/AU orderer ordering/S orderless orderliness/ES orderly/S orders/A ordinal/S ordinance/SM ordinands ordinariness/S ordinary/TSY ordinate's ordinate/FNS ordination's/F ordination/SM ordinator/SF ordnance/SM Ordovician ordure/SM ore/MySo orebody/S oregano/SM Oregon/M Oregonian/S Oren/M Oreo Orestes organ/W3q-Q81s9t+SM Organa/M organdie/MS organelle/SM organic/S organicalness organicism organicist organicistic organicity organification organify/SGD organigram/S organisation/oM organisational organise/EnADGS organiser/ASM organism/OMWS organist organization/oM organizational/S organize/AnSEGDN organizer/AM organochlorine/S organogram/S organometallic organophosphate/S organza/MS orgasm/DGMSW orgasmically orgastic orgastically orgiastic orgiastically orgone orgonite orgulous orgy/MS Oric oriel/MS orient's orient/ENSADnG orientable oriental/SY orientalise/SGD Orientalism Orientalist/S Orientalistic orientalize/SGD orientate/SDAEG orientation/EMA orienteer/SDG orienter orifice/MS orig origami/MS origin/NMnSoVv original/U originalism originality/MS originals originate/SDG origination/M originator/MS Orin/M Orinoco/M oriole/SM Orion/M orison/MS Oriya/M Orkney/M Orkut/M Orland/M Orlando/M Orleans ormolu/SM ornament/nMDGNSo ornamental/S ornamentalism ornamentalist/S ornamentation/M ornate/YP ornateness/S orneriness's ornithoid ornithology/3wSM ornithomorphic ornithophilous orogen/S orogenesis orogenic orogeny/S orographic/M orography/WM oropharyngeal oropharynges oropharynx oropharynxes orotund orotundity/MS orphan/SMd orphanage/MS orphanhood/M orphanism Orpheus/M Orphic Orpington Orr/M Orrin/M orris/SM ors Orsay/M Orson/M Ortega/M orthodontia orthodontic/S orthodontist/SM orthodox/ZUY orthodoxes orthodoxy/SM orthoepist orthoepy/W orthogenesis orthogenesist orthogenetic orthogenetically orthogonal/Q8q-Y orthogonality/M orthogonalization/M orthography/w1SMW orthomolecular orthonormal orthopaedic/S orthopaedist/S orthophosphate's orthopod orthoprax orthopraxis orthopraxy orthopsychiatric orthopsychiatrist/S orthopsychiatry orthorhombic orthostatic orthotic/S orthotist/S Ortiz/M Ortolà Orton/M Oruro/M Orville/M Orwell/M Orwellian OS/M Osage/SM Osaka/M Osama/M Osbert Osborn/M Osborne/M Oscar/MS Osceola/M oscillate/NynSDG oscillation/M oscillator/SM oscilloscope/SM oscular osculate/nNDGS osculation/M OSes OSGi Osgood/M OSHA Oshii/M Oshkosh/M Osiander/M osier/MS Osirian Osiris/M Oslo/M osmium/M osmolarity osmoregulation osmoregulator osmoregulatory osmoses osmosis/M osmotic osmotically osprey/SM OSS osseous/Y Ossete/S Ossetia Ossetian/S Ossetic Ossett/M ossicle/S ossicular ossiculectomy ossiculum ossification/M ossify/SNGnD Osteichthyes ostensible/Y ostentation/SM ostentatious/YP osteoarthritic osteoarthritides osteoarthritis/M osteoblast/SW osteoclast/SW osteodentine osteoderm/S osteodermal osteodontokeratic osteodystrophic osteodystrophy osteology/M osteomyelitis osteopath/WZSM osteopathy/MS osteoporoses osteoporosis/M osteosarcoma/S osteosarcomata osteospermum/S osteotome/S osteotomy/S ostinati ostinato/S ostler Ostlere/M ostracise/DSMG ostracism/MS ostracod/S ostracode/S Ostrander/M ostrich/MS Ostrogoth/S Ostrogothic Oswald/M Oswestry OT Otago/M OTB OTC Othello/M other/SPM otherwise otherworldliness otherworldly otic otiose Otis/M otitis Otley/M OTOH otoscope otoscopic otoscopically OTP OTT Ottawa/M otter/MS Otto/M ottocento Ottoman/SM Otway/M Ouagadougou/M oubliette/SM ouch/S ought oughtn't Ouija ounce/SM our/S ourself ourselves oust/RGDS out-group/S out-half out-of-court out-of-date out-of-phase out-of-pocket out-take/S out-tray out/MDSGJ outage outang/S outargue outbacker outbalance outbid/G outboard outboast outbound outbred outbreed/G outbreeder outburst/M outcast/G outclass outcome/M outcompete/SGD outcraft outcricket outcrop/J outcross/SGD outcry/M outcrying outdate/SGD outdistance outdo/G outdoor outdrank outdraw/G outdrink/SG outdrive/SG outdriven outdrove outdrunk outer/S outermost outerwear/M outfall outfight/G outfit/G outflew outflow/M outflown outfly/SG outfox/G outgo/J outgoingness outgrip outgross/SGD outgrow outguess outgun/SGD outhouse outing/M outland/S outlandish/PY outlandishness/S outlast/G outlaw/DyG outlawry/M outlay/M outlet outlier/S outline outlive/S outlook/M outmanoeuvre outmigration outmoded outmuscle/SGD outnumber outpace/S outperformance outpoint/DG outpost outpouring/SM outproduce output/MG outrageous/PY outrank/G outridden outride/SG outrider/S outright outrightly outrode outré outsail/SGD outshoot outshot outside/R outsiderness outsize/D outsole/S outsource/J outspeed outspoken/PY outspokenness/S outstanding/Y outstare/SGD outward/PY outwent outwit/G outwith outworker/S outworld/R ouzo/MS ova/yoMn oval/MSP ovality ovarian ovary/MS ovate/S ovation/M oven-ready oven/SM ovenbird/SM ovenproof over-anxiety over-anxious/Y over-bright over-curiosity over-curious over-delicacy over-delicate over-large over-long over-many over-much over-nice over-niceness over-nicety over-particular over-ridden over-ride/GS over-sentimental over-simplistic over-talkative/P over-the-counter over-the-top over/MSY overabundance/SM overabundant overabundantly overachieve/L overactive overactivity overage overambitious overanalyse/SGD overanalysis overarching overarm overattentive overawe overbake/SGD overbalance overballast/SGD overbank/SGD overbear/k overbearing/P overbed overbid/G overbite/M overboard overbold/YP overbook/G overboot/S overbore overbred overbreed/S overbridge/S overbuild/G overburden/k overbuy overcapacity overcapitalise overcareful overcast overcaution overcautious/YP overcerebral overcheck/S overclass overclock/DGS overclocker/SM overcloud overcome overcommit/S overcompensatingly overcompensatory overconscientious overcorrection overcredulous overcritical Overdale overdecorate overdetermined overdo/G overdraw/G overdress/G overdrive/M overdue overeager overeaters overedit overeducate overemotional overemphasize overemployment overenthusiasm overenthusiastic overenthusiastically overerupt/D overeruption overest overesteem/SGD overexcitable overexcite overexcitement overexercise overexploit/SGD overexpress/SGD overexpression overextend/N overfall overfeed/G overfill/G overfish/G overflight overflow overfond overfur overgenerous overglaze overgraze overground overgrow overhair overhand overhang overhard overharvest/SGD overhasty overhaul/J overhead overhearer overheat overhit/SG overhype/D overinsurance overinsured overkeen overkill/M overland/SGDR overlarge overlay/R overleaf overleap/SD overleapt overleveraged overlier overload/G overlock/D overlocker/S overlong overlooker/S overlordship overman/SDG overmedicate overmedication overmighty overmuch overnight/DSGR overnutrition overorganise overorganize overpack/SD overpaint/SGD overparent/G overparted overpass/M overpay overpopulous overpower/k overprecise overprescribe/SGDN overpressure overprocess overpromote overreacher overridable override/G overrideable overrider overripe overripened overripeness overrisen overruff/SGD overruler overrunner oversail/SGD oversale oversalt/SGD oversample/S oversaturate oversaturated oversaw overscan oversee overseership overself oversensible oversensitive oversensitiveness oversensitivity overset/SG overshadow overshare/SGDR overshoe overshot oversimple oversimplification/M oversize oversleep overspill/M oversteer/SGD overstimulation overstorey/S overstress/SGD overstretch overstrict oversubtle overt/Y overtake overtax overtedious overthink/SG overthought overthrow overthrust/G overtime overtness Overton/M overtone overture/SM overtype/G overutilisation overutilization overvaluation overvalue overview/DG overwater/d overwear overweening/Y overwhelm/k overwhelmingness overwind/G overworld overwound overwrite/G Ovid/M oviduct/SM oviform oviparity oviparous oviposit/Sd ovoid/S ovotestes ovotestis ovoviviparity ovoviviparous ovular ovulate/GySD ovule/NSMn ovum/SM ow/GD owe/S Owen/M owl/MS owlet/MS owlish/YP own-brand own/GESD owned/U owner-occupier owner/SM ownerless ownership/MS ox/M oxalacetate oxalate/M oxalic oxalis oxaloacetate oxaloacetic oxbow/MS Oxbridge oxcart's oxen/M Oxfam Oxford/MS Oxfordian/S Oxfordshire oxidant/SM oxidase/S oxidation/M oxidative/Y oxide/Q-nSMs oxidisation oxidise/J oxidised/U oxidization/M oxidized oxidizer/M oxidizing oximeter/S oximetry oxisol/S oxlip/S Oxnard Oxonian Oxordshire/M oxpecker/S OXT oxt oxtail/MS oxyacetylene/SM oxyanion/S oxycodone/M oxygen/NnM oxygenate/DMGS oxygenation/M oxyhydroxides oxymoron/M oxysulphide oxytocic oxytocin oyster/MSd oystercatcher/S oz Ozark/MS ozone-friendly ozone/M Ozzie/MS p.a. p.m. P.O. p/AYFI pa/Mo Paarl Pablo/M Pabst/M pabulum/SM PAC pace/DRMSG paced/e pacemaker/SM paceman pacesetter/SM pacesetting pacey Pacheco/M pachyderm/MS pachytene Pacific's pacific/4 pacification/M pacifism/SM pacifist/W pacify/nD3RWN1SG pacing/e Pacino/M pack's pack/GADSU packable package/JRGDMS packaged/AU packages/A packaging/M Packard/M packer/SM packet/dSM packhorse/M packing/MS packinghouse/S Packington/M packsaddle/SM Packwood/M pact/IMS pacts/F pad/SZJGMD padauk padded/U Paddie/M padding/M Paddington/M paddle/DRSMG paddlefish/S paddock/SGDM paddy/MS Padgett/M Padilla/M padlock/GDMS Padmé/M padouk Padraig/M padre/SM Padrewski/M Padstow paean/MS paediatric/S paediatrician/SM paediatrics/M paedophile/S paedophilia/M paella/MS paeony/M pagan/SM Paganini/M paganism/SM page/SM6RDG pageable pageant/SM pageantry/MS pageboy/SM paged/U paginate/DSGNn pagoda/SM Pahaji paid-up paid/KfUcA Paige/M pail/S6M pailful/MS pain/DMpSjG6 Paine/M painful/TP painfulness/S painkiller/SM painkilling painless/Y painlessness/S painstaking/Y paint/DRSGMJ paintball/GSR paintbox/M paintbrush/MS painted/AU painter/Y painterliness painting/M paints/A paintwork pair/ADMSG paired/UI pairing/S pairs/I pairwise paisley Paisley/MS Paki/S Pakistan/M Pakistani/S pal/MS palace/SM paladin/SM Palaearctic palaeoanthropologist palaeoanthropology/w palaeobotanist palaeobotany/w Palaeocene palaeoclimatologist palaeoclimatology/w palaeocortex palaeocortical palaeocrystic palaeocurrent/S palaeodemography/W palaeodesert palaeoecologically palaeoecologist palaeoecology/w palaeoeconomy/W palaeoentomological palaeoentomologist palaeoentomology palaeoenvironment palaeoenvironmental palaeoequator Palaeogene palaeographer/SM palaeography/MSw1W Palaeolithic palaeomagnetic palaeomagnetism palaeontologist/S palaeontology/wMS palaeopallium palaeopathological palaeopathologist/S palaeopathology Palaeozoic palanquin/SM palatability/M palatable/P palatal/QS palate/SgoM palatial/Y palatinate/SM palatine/S palatoquadrate Palau/M palaver/dSM palazzi palazzo/S pale/DTSYG palea paleae paled/I paleface/SM paleness/S Paleocene paleocrystic Paleozoic paler/I Palermo/M pales/I Palestine/M Palestinian/S Palestrina/M palette/MS palfrey/SM palimpsest/SM palindrome/MS palindromic paling/M palisade/MGDS palish pall-bearers pall/MS palladia Palladian Palladianism Palladio/M palladium/M pallbearer/MS pallet/MQ8-Sq palliate/NVGvDnS palliation/M palliative/S pallid/PY pallidness/S pallidotomy pallidum pallor/MS palm/DMG3SZ Palma/M palmate Palmdale/M palmer/M Palmerston/M Palmerstonian Palmerstonianism Palmerstonism palmery palmette/S palmetto/MS Palmgren/M palmist/y palmistry/SM palmitate Palmolive/M palmtop/S palmy/3T Palmyra/M Palo/M Palomar/M palomino/SM palp/S palpability palpable/YI palpably/I palpal palpate/SGDnN Palpatine/M palpation/M palpebral palpi palpitate/DSNGn palpitation/M palpus pals/Z palsy/DMSG paltriness/S paltry/TP paludal Pam/M pamby Pamela/M pampas/M pamper/dS pamperer/M pamphlet/SM pamphleteer/DGSM pan-European pan/WGSDM panacea/MS panache/MS Panama/M panama/S Panamanian/S Panasonic/M panax pancake/SDMG pancetta panchromatic Pancras pancreas/SM pancreatic pancreatitis panda/SM pandan pandanus pandemic/S pandemonium/MS pander/Sd panderer/S Pandora/M pane/MDS panegyric/MS panel's panel/IGSD panelling/SM panellise/SnDG panellist/MS panellize/SNDnG pang/SM Pangaea pangolin/SM panhandle/SGDR panic-stricken panic/GMSZD panicky/T panicle/SD panier's Paniker/M Panis panjandrum/M panko panky pannier/MS panoply/DSM panorama/MS panoramic panpipes pans/Z pansexual/S pansexuality panspermia panstick pansy/MS pant/SDG Pantaloon/M pantaloons pantechnicon pantheism/MS pantheist/SW pantheistical pantheistically panthenol pantheologist/S pantheology pantheon/SM pantheonic panther/SM pantheress pantherine pantherish pantherishly panties pantihose pantiled pantiles pantiliner pantograph/SM pantomime/3SMDG pantomimic pantoum/S pantry/MS pantryman pantrymen pants/f Panza/M panzer Paola/M Paoli/M Paolo/M pap/oM3r papa/MS papacy/MS papal paparazzi paparazzo papaw/MS papaya/SM Papeete/M paper-clip/SM paper/2pdrZ paperback/MS paperbark/S paperboard paperboy/SM paperchase papered/A papergirl/SM paperhanger/SM paperhanging/SM paperknife paperknives papermaker papermaking papers/A paperweight/SM paperwork/MS papery/P papilla/yM papillae papillated papillomavirus papist papoose/MS pappardelle pappi pappose pappus Pappus/M pappy/S paprika/MS Papua/M papulae papular papule/S papulose papulous Papus/M papyri papyrus/M par/dDGS7Z para/SM paraben parabiosis parabiotic parabiotically parable/SM parabola/MWS paraboloid/SM paraboloidal/M Paracelsus/M paracetamol/M parachute/3DSMG parachuter/M paracondyloid paracone paraconformable paraconformity paraconid paracrine parade/RMGDS paradigm/MS paradigmatic paradisal paradise/MwS paradox/Mw1WS paradoxical/P paradrop/SGD paraesthesia/S paraesthesiae paraffin/SM paraffinic parageneses paragenesis paragenetic paraglide/SGD paraglider/S paragon/MS paragraph/DMSG paragrapher/M Paraguay/M Paraguayan/S parainfluenza parakeet/MS paralanguage paralegals paralexia paralexic paralinguistic parallax/SM parallel/S paralleled/U parallelepiped/MS paralleling parallelisation parallelise/SGD parallelism/MS parallelize/SGDN parallelly parallelogram/MS parallelogramic parallelogramish parallelogrammatic parallelogrammatical parallelogrammic parallelometer parallelwise paralog paralogism/S paralogous paralogy Paralympian/S Paralympic/S paralyse/RShGWDk paralysis/M paralytic/YS paramagnet/MW paramagnetism Paramaribo/M Paramecia Paramecium/M paramedic/MS paramedical/S parameter/W1pMS parametrise/DBnGS parametrize/SGBnDN paramilitary/S paramoecia paramoecium/M paramount Paramount/M paramour/MS paranoia/SM paranoiac/S paranoiacally paranoic paranoically paranoid paranormal/YS parapet/SM paraphernalia paraphilia/S paraphiliac/S paraphrasable paraphrase/SGMD paraphraser/M paraphrastic paraphyletic paraplegia/SM paraplegic/SM parapod parapodia/O parapodium parapolar parapolitical parapophysis paraprofessional/SM parapsychic parapsychological/Y parapsychologist/S parapsychology/SM paraquat/S parasail/G parascend/GR parasite/MwWS1 parasitic/S parasitisation parasitise/SGD parasitism/SM parasitize/SGDN parasitoid/S parasitologist/M parasitology/M parasitoses parasitosis parasol/MS parasympathetic/S paratactic/Y parataxis parathion/SM parathyroid/S paratracheal paratroop/RS paratype paratyphoid/S parboil/GSD PARC/M parcel/SMGD parcelling/M parch/SGLD parcour pardon/rgl7dS pardonable/U pardonableness/M pardonably/U pardoned/U pare/JS pared/KF paregoric/SM pareidolia Parello/M parenchyma/O parenchymatous parent/DJSoGM parentage/MS parental parenteral parentheses parenthesis/M parenthesise/D parenthesize/D parenthetic/Y parenthetical parenthood/SM parer/F parers pares/FK pareses paresis/M parfait/SM parfleche/S pargasite pariah/SM parietal/S parimutuel/S paring/M Paris/M parish/MS parishioner/MS Parisian/S parity/EMS park/DGMSZ parka/MS Parkel/M Parker/M Parkin/M parking/M Parkinson/M parkinsonism parkland/SM parkour parkway/SM parky/T parlance/SM parley/MGDS parliament/MS parliamentarian/MS parliamentarianism parliamentary/U parlour/MS parlourmaid parlous Parma/M Parmenides/M parmesan/S parmigiana Parnell/M paroccipital parochial/Y parochialism/MS parochiality parody/G3DMS parole/DSMG parolee/MS parotid/S parovarian parovarium paroxetine paroxysm/MS paroxysmal paroxysmally paroxysmist parquet/dyMS parquetry/MS parr parrakeet's parricidal parricide/MS parrot/dSM parrotbill/S parrotfish/S parrotlike parry/GDS pars/RDGJS parse parsec/SM parsed/U parsimonious/Y parsimony/MS parsley/SM parsnip/SM parson/MS parsonage/MS part's/f part-song part-time part-timer/S part/fICS partake/RSG partaken parted/CI parter/S parterre/SM parthenogeneses parthenogenesis/M parthenogenetic parthenogenetically Parthenon/M partial/IY partiality/MIS partials participant/SM participate/ySNVDGn participation/M participator/S participial/Y participle/SM particle/SM particleboard/S particoloured particular/Q8SY particularism particularistic particularity/SM particulate/S partier/S parting/MS partisan/MS partisanship/SM partite partition/MGDS partitioned/A partitioner/M partitions/A partitive/S partizan's partly partner/dMS partnership/SM partook partridge/SM partridgeberry/S partschinite parturifacient parturition/MS partway party/DMSG parvenu/MS parvovirus/S pas/GRDJ Pasadena/M pascal/MS paschal/S pasha/MS pass/7SuVNXvlk passable/I passage/DMSG passageway/SM passant passband passbook/MS passcode passed/Fc passenger-mile passenger/MS passer-by passerine/S passers-by passes/IcFf passibility passible passim passing/Fc passion/FM passionate/FEY passionflower/SM passionless passivated passive/IY passiveness/SI passives passivity/IS passkey/SM passmark passover passphrase/S passport/SM password/SMD passé/M passée past's/A past/DMS2GZy pasta/SM paste-up paste/SM pasteboard-like pasteboard/SM pastegrain pastel/SM paster pastern/MS Pasteur/M pasteurise/RnSDG pasteurised/U pasteurize/nRNSDG pasteurized/U pastiche/MSD pastille/MS pastime/MS pastiness/S pastis pastor/dMS pastoral/YS pastoralism pastoralist/S pastorate/SM pastrami/MS pastry/SM pasts/A pasturage/SM pasture/GDSM pastureland/S pasturer/M pasty/TSP pat-down pat/DSMZG PATA Patagonia Patagonian/S patball patch's patch/DESG patchable patcher/EM patchiness/S patchouli patchwork/RSM patchworked patchworking patchworky patchy/TY pate/SM Patel patella/M patellae patellar patellate paten/M patency patent/YSMD7G patentee/SM patentor/MS pater/M paterfamilias/MS paternal/Y paternalism/SM paternalist/W paternity/MS paternoster/SM Paterson/M path-loss path/pSM Pathan/S pathetic/Y pathfinder/MS pathlessness pathname/MS pathogen/WSM pathogenesis/M pathognomonic pathology/SM3w1 pathophysiologic pathophysiological pathophysiologically pathophysiologist pathophysiology pathos/SM pathway/SM pathworking patience/ISM patient/eMS patienter patientest patiently/I patina/SM patio/MS patisserie Patna patois/M patriarch/ZM patriarchal patriarchate/MS patriarchically patriarchs patriarchy/SM Patrice Patricia/M patrician/MS patricide/SM Patrick/M patrifocal patrilateral patriline patrilineage patrilineal patrimonial patrimony/MS patriot's/F patriot/1WSM patriotic/U patriotism/SM patriots/F patristic/S patrol/MDGS patrology patron/98Q-YMqsS patronage/SM patronal patroness/S patronise/k patronize/k patronizing/M patronymic/YS patroon/MS Patrícia Pattaya/M patten/MS patter/dS patterer/M pattern/SGDpM Patterson/M Patton patty/MS patulin patulous patulousness paucity/SM Paul/M Paula/M Paulette/M paunch/S2GMZD paunchy/TP pauper/QdMS pauperism/MS pause/GSD Pavarotti/M pave/ASDG paved/U Pavel/M pavement/MS paver/MS pavilion/GDMS paving/SM paw/DSGM pawl/MS pawn/SGDM pawnbroker/SM pawnbrokerage pawnbrokeress pawnbrokering pawnbrokery pawnbroking/S Pawnee pawner/M pawnless pawnor pawnshop/MS pawpaw/M paxes Paxil Paxton/M pay-as-you-earn pay-bed pay-claim pay-off/MS pay-packet/SM pay/A7LSG payable/S payback/S payday PAYE payee/MS payer/SM paying/Kfc payload/MS paymaster/MS payment/fMSc Payne/M payout/S PayPal/M payphone/S payroll/SM pays/fcK payslip/S paywall/SD Pb PBX pc PC/M PCB PCI PCIe pcm PCMCIA PCs pd PDA/S Pde pdf PDF/S PDP PDQ PDSA PDT PE pea-green pea/MS peaberry/S Peabody/M peace/Ml6j peaceable/P peaceful/T peacefulness/S peacekeeper/S peacekeeping peacemaker/SM peacemaking/M peacemonger/d peacetime/SM peach's peach/IDSG peachy/T peacock/SM peafowl/MS peahen/MS peak/DM2SiGZ peaky/P peal's peal/SAGD Peale/M peanut/SM pear/MYS pearl/GDSM pearler/M pearlite pearly/TS Pearson/M peartrees peasant/MS peasanthood peasantry/MS peashooter/SM peat/ZSM peatland/S peats/A peaty/T pebble/DYMGS pebbling/M pebbly/T pebibit/S pebibyte/S pecan/MS peccadillo/M peccadilloes peccary/MS peck/DRMGS peckish Pecksniffian pecorino/S pectic pectin/MS pectoral/S peculate/GDSNn peculator/S peculiar/SY peculiarity/SM pecuniary pedagogic/S pedagogics/M pedagogue/SM pedagogy/1SMWw pedal/RGMSD pedant/WSM1 pedantry/SM peddle/SDG pederast/ZSM pederasty/SM pedestal/DGMS pedestrian/Q-8qMS pedicab/SM pedicel/S pedicellate pedicle/S pedicular pedicure/GS3DM pedigree/MS pediment/ISM pedimented pedlar/SM pedology pedometer/MS Pedrick/M Pedro peduncle/MS pee/RGS peek/SDG peekaboo/SM peel/DGSJ peeled/U peeler/MS peeling/M peen/SGDM peep-hole/SM peep-show/MS peep/DSRGZ peer's/F peer/pDG peerage/SM peered/F peeress/SM peering/F peerless/PY peers/F peeve/MSGD Peever peevers/M peevish/PY peevishness/S peewee/S peg/GSDM pegasid Pegasus pegboard/SM pegboarding pegbox pegger Peggy/M peggy/S pegmatite/S Peigan/S peignoir/MS pejorative/Y Pekar/M peke/SM Peking/M pekoe/MS Pelagian/S Pelagianism pelagic Pelagius pelargonium/S Pele pelecypod/S pelf/M pelican/SM pell pell-mell pellagra/SM pellet/dMS pellicle pellicular pellucid pelmet/S Pelops peloton/S pelt/DGS pelter/M pelvic/S pelvis/MS pelycosaur/S Pelé/M Pembroke/M Pembrokeshire/M pemmican/SM pen-and-ink pen-name/S pen/oGDMS penal/Q8- penalisation penalization/M penalty/SM penance/DSGM Penang/M penannular penates Penberthy pence/M penceless penchant/SM pencil/MGDJS penciller/S pendant/CMS pendent/C pending Pendle Pendlebury/M penduline pendulosity pendulous pendulousness pendulum/SM penectomy Penelope penetrability/IMS penetrable/I penetrant/S penetrate/vNnBSDVkuG penetration/M penetrative/P penetrator/SM penfriend/S penguin/SM Penh/M penicillin/SM penile peninsula/SM peninsular penis/MS penistone penitence/SIM penitent/ISY penitential/YS penknife/M penknives penlight/MS penman/M penmanship/MS penmen/M Penn/M pennant/MS penne Pennell/M Penney/M Pennine/S pennon/SM Pennsylvania Pennsylvanian/S penny-farthing penny-pinching penny/pMS pennyroyal pennyweight/SM pennyworth/M penological penology/S3M penoscrotal penpalship penpoint Penrith pens/XuNvV pension/7GMRD pensiveness/S pent-up pent/A pentachlorophenol pentachord pentachromic pentacle/MS pentacrinite pentacrinoid pentactin pentactinal pentactine pentacyclic pentad pentadactyl pentadactylic pentadactylism pentadactylous pentadactyly pentadecane pentadelphous pentadic pentadodecahedron pentagon/oSM pentagonal/S pentagram/SM pentamerous pentameter/MS pentasyllabic pentathlete/S pentathlon/SM pentatonic Pentax/M pentazocine Pentecost Pentecostal/S Pentecostalism penthouse/SM pentium pentlandite pentobarbitone pentose penult penultimate/SY penumbra/SM penumbrae penurious/YP penuriousness/S penury/SM Penzance/M peon/SZM peonage/SM peony/MS people/DMGS peopled/U PEP/SM pep/ZD2SGRM peperoni pepper/Zd peppercorn/MS pepperer/M peppergrass/M peppermint/SM pepperminty pepperoni/S peppiness/S peppy/PT Pepsi/S pepsin/SM pepsinogen/S peptic/S peptide/MS per/y peradventure/S perambulate/DGnSN perambulation/M perambulator/SM percale/SM perceivable/I perceivably perceive/aSD perceived/U perceiver/SM perceiving percent/M percentage/SM percentile/MS percept/vbVMoxSu perceptibility/I perceptible/YI perceptibly/I perception/MS perceptive/P perceptiveness/S perceptual perch/DGMS percha perchance Percheron/M perchlorate/M perchlorination percipience/SM percipient/S Percival/M percolate/NnDSG percolation/M percolator/MS percuss/DNvuSGXV percussion's/A percussion/3M percussionist percussions/A percussive/P percutaneous/Y Percy/M perdition/MS perdurable peregrinate/DSG peregrination/M peregrine/nSN peremptoriness peremptory/Y perennate/SGDN perennial/YS perestroika/S perfect/bDYTuPSGVv perfecter/M perfectibility/MS perfection/ISM perfectionism/SM perfectionist/SM perfective/P perfectly/I perfectness/SI perfidious/PY perfidy/SM perforate/SNDGn perforation/M perforce perform/eDGS performable performance/MS performant performative/S performativity performed/Uf performer/MS perfume/SRDMG perfumer/Z perfumery/MS perfunctory/PY perfused perfusion/M pergola/SM perhaps perianth periastron pericardia pericardial pericarditis pericardium/M Pericles periderm peridermal peridia peridium peridot/S perigee/MS periglacial perihelia perihelion/M peril/MSDG perilous/PY perils/I perilune perimenopausal perimenopause perimeter/SM perinatal perineum/M perinuclear period/Mw1WS periodical/SM periodicity/MS periodogram periodograph periodology periodontal/Y periodontics/M periodontist/S perioperative periotic peripatetic/S peripheral/SY periphery/SM periphrases periphrasis/M periphrastic periscope/SM perish/7RGDkS perishable's perishable/IS peristalses peristalsis/M peristaltic peristyle/MS peritoneal peritoneum/MS peritonitis/MS perivascular periwig/SM periwinkle/MS perjure/DRSGZ perjury/MS perk/DzGSZ2 perkiness/S perky/T Perl perlite perm/GSDM permaculture permadeath permafrost/MS permalink/S permalloy/M permanence's/I permanence/MZS permanences/I permanency/SM permanent/PY permanently/I permanganate permeability/SIM permeable/IP permeance/S permeate/BDNnGS Permian permissibility/M permissible/PY permission/M permissive/YP permissiveness/S permit/GXDMNS permittee/S permittivity permutation/M permutational permute/DGNSn pernicious/YP perniciousness/S peroneal peroration/SM peroxidase/M peroxide/SDMG perpendicular/SY perpendicularity/MS perpetrate/SGDNn perpetration/M perpetrator/SM perpetual/SY perpetuate/GnSDN perpetuation/M perpetuity/SM perphenazine perplex/SGDh perplexity/MS perquisite/MS Perren/M Perry/M Perryville/M persecute/yDSG persecution/SM persecutor/MS Persephone Persepolis/M Perseus perseverance/MS perseverate/SGDN persevere/kGDS Persia/M Persian/MS persiflage/MS persimmon/SM persist/DSG persistence/SM persistent/Y persister person-to-person person/7oSM persona/MS personable/P personae personage/MS personal/Qq8- personalise/CnSGD personality's/I personality/SM personalize/CSNGn personally/I personalty/MS personhood personification/M personifier/M personify/SnDGN personnel/MS perspective/YSM perspex perspicacious/YP perspicacity/S perspicuity/MS perspicuous/YP perspiration/M perspire/DGnNS persuadable persuade/DVXRNSvuG persuasion/M persuasive/P persuasiveness/S pert/PTY pertain/DSG Perth Perthshire/M pertinacious/PY pertinacity/SM pertinence/IS pertinent/YI pertness/S perturb/GSnD perturbation/M perturbed/U pertussis/M Peru/M peruke/SM perusal/MS peruse/DRGS Peruvian/S pervade/uDGNVSv pervasion/M pervasive/P pervasiveness/S perverse/PXVYN perverseness/S perversion/M perversity/SM pervert/DhSiG perverter/M Pescatore/M Pescetti/M peseta/SM peskiness/S pesky/TY peso/MS pessary/S pessimal/Y pessimism/MS pessimist/MSW1 pest/SM pester/dS pesticidal pesticide/SM pestiferous pestilence/SM pestilent/Y pestilential/Y pestle/DSMG pesto/S pet/SRGMD petabit petabyte/S petaflop petal/MSD petard/MS petasus petcock Pete petechia petechiae petechial peter/dS Peter/M Peterborough/M Peterhead/M Peterhouse peterman petermen Petersburg Petersen/M Petersfield/M petersham Peterson/M pethidine/M petiole/SM Petit petite/PS petition/FSAM petitioned petitioner/SM petitioning Petrarch/M Petrarchan Petrarchanism Petrarchism petrel/SM Petri petrifaction/SM petrify/GSND Petro/M petrochemical/SM petrodollar/SM petrogenesis petrogeny petroglyph/MS petrographic petrographical petrol/MS petroleum/M petrology/MS3w Petronas petrosal/S Petrov/M petticoat/SDM pettifog/RGDS pettifoggery pettiness/S Pettingill/M pettish/YP petty/TSY petulance/SM petulant/Y petunia/SM Peugeot/M pew/MS pewee/SM pewit/SM pewter/MS pewterer/S peyote/MS PFC pfennig/MS PFS PG pg. PGA/M PGP/M Ph.D. pH/MS phaeton/MS phage/M phagocyte/WMS phagocytise/SGD phagocytize/SGD phagocytose/D phagocytosis phalanger/SM phalanges phalanx/SM phalarope/S phalli phallocentric phallocentricity phallocentrism phallus/WMS phantasm/SM phantasmagoria/MS phantasmagorial phantasmagorian phantasmagoric phantasmagorical phantasmagorically phantasmagorist phantasmagory phantasmal phantasy's phantom/SM pharaoh/SM Pharisaic Pharisaical Pharisaism Pharisee/S pharma/S pharmaceutical/SY pharmaceutics pharmacodynamic/S pharmacokinetic/SY pharmacologic pharmacology/3M1Sw pharmacopoeia/SM pharmacotherapy pharmacy/3SM pharyngeal/S pharynges pharyngitides pharyngitis/M pharynx/M phase/SRGDM phaseout/S phasic phasor/S phat PhD/S pheasant/MS phellogen Phelps phenacetin/SM phenformin phenocryst/S phenol/SWM phenological phenology phenolphthalein/M phenomena/Mo phenomenal phenomenalism phenomenalist phenomenalistic phenomenology/S1Mw phenomenon/SM phenosafranin phenosafranine phenothiazine/S phenotype/MSW phenotypical/Y phenotyping phenoxide phenoxy phenoxymethylpenicillin phenyl/M phenylacetic phenylalanine/M phenylephrine phenylmethyl phenytoin pheromone/MS phew/S phi/MS phial/SM Phil/M Philadelphia/M philadelphus philander/drS philanthropist/SM philanthropy/1MSW philately/3SWM philharmonic/S Philip/MS Philipose/M Philipp/M Philippi/M philippic/MS Philippine Philippines/M philistine/S philistinism/S Phillips/M phillipsite philodendron/MS philology/M13wS philopatric philopatry philosopher/MS philosophy/w1sWQ8S9M philtre/SM philtrum Phipps/M phisher/S phishing phlebitides phlebitis/M phlebotomise/SDG phlebotomist/S phlebotomize/SDG phlebotomy/S phlegm/SM phlegmatic/Y phloem/SM phlogiston phlox/M Phnom pho phobia/MS phobic/S Phobos phoebe/MS Phoenicia Phoenician/S phoenix/MS Pholidota phone-in/S phone/ZSWG1DM phonecard/S phonematic phoneme/MS1 phonemic/S phonemics/M phonetic/SY phonetician/SM phoneticist phonetics/M phoney phonic/S phonics/M phoniness/S phonogram/S phonograph/WSM phonology/13wSM phonon/M phonotactic/S phony/TSP phooey/S phosphatase/M phosphate/MS phosphatidylethanolamine phosphide/M phosphine/M phosphodiesterase phosphoenolpyruvate phospholipase phospholipid/S phosphor/SWM phosphoresce phosphorescence/MS phosphorescent/Y phosphorous phosphorus/M phosphorylate/SGDN photo-oxidation photo-oxidative photo/MS photoabsorbing photoabsorption photoacoustic photoact photoaction photoactivatable photoactivate/SGD photoactivation photoactive photoactivity photoaffinity photoaged photoageing photoaging photoallergy/W photoassimilate photoassimilation photoautotroph photoautotrophic photoautotrophy photobleaching photoblog/S photoblogger/S photoblogging photobomb/SGDR photocall/S photocard photocell/SM photochemical/Y photochemistry/M photochromic photochromism photocoagulation photocoagulator photocollage photocompose/SGD photocomposer photocomposition photocopy/DRGSM photocurrent photocycle photodamage photodegradable photodegradation photodegrade photodetector/S photodiode/S photodissociation photodynamic photoelectric/Y photoelectricity photoelectromagnetic photoelectron/SW photoelectronics photoemission photoemissive photoemitter photoengraved photoengraver/SM photoengraving/MS photoessay/S photofinishing/MS photofit/S photoflash photogenic/Y photogram/S photograph/R1GZDWSM photographed/A photographs/A photography/SM photogravure/S photojournalism/MS photojournalist/MS photolitho photolithographic photolithographically photolithography photolysis/M photolytic photomagnetoelectric photomask/S photometer/1WSM photometry/M photomicrograph/ZM photomicrography/M photomontage/S photomosaic photomultiplier/MS photon/SM photonegative photonic photonics photophobia photophobic photophony photophysical photophysics photopia photopic photopolarimetric photopolarimetry photopolymer/S photoproduct/S photoprotection photoprotein photoreactive photorealism photorealist photorealistic photoreceptor/S photoresist/S photosensitisation photosensitise/SGD photosensitive photosensitivity photosensitization photosensitize/SGD Photoshop/SGD photosphere/M photostatic photostimulation/S photosyntheses photosynthesis/SQdM photosynthetic/Y photosystem/S phototactic phototaxes phototaxis phototherapy phototoxicity phototransistor phototroph/W phototropic phototropism phototypesetter phototypesetting/M photovoltage photovoltaic photoxidative php PHP/M phrasal phrase's phrase/GDSA phrasebook phrasemaking phraseology/SM phrasing/MS phrenic phrenology/1w3MS phyla/M phylactery/SM phyllotactic phyllotaxis phyllotaxy phylogenetic phylogenetically phylogeny/SM phylotypic phylum/M phys/w1 physic/S3DGM physical/S physicalism physicalist physicalistic physicality/M physicalness physician/SM physicist physico-chemical physiochemical physiognomy/SM physiography/MS physiology/WM1Sw3 physiotherapist/SM physiotherapy/SM physique/MS physostigmine physostome physostomous phytalbumin phytane phytate phytochemical/S phytochrome phytogenetic phytogeography phytolith/S phytoplankton/M phytosociology phytotoxic phytotoxicity pi/DR Piaget/M pianism/M pianissimo/S pianist/W piano/3MS pianoforte/MS pianola piastre/MS piazza/SM PiB pibroch/M pibrochs pic/S pica/SM picador/MS Picard/M picaresque picaro/S Picasso/M Picassoesque Piccadilly piccalilli/MS piccolo/MS piciform pick-me-up/S pick-up/MS pick/DRSGZJ pickaxe/SM picked/U pickelhaube Picken/M pickerel/MS pickerelweed Pickering picket/rdMS pickiness pickle/DSMG pickoff/S pickpocket/SM pickpocketing pickpocketry pickproof picksome picktooth pickup/S picky/T picnic/ZMRGSD pico picofarad/SM picojoule picornavirus/S picoseconds picot/SM picric pictogram pictograph/SMW pictography pictorial/YPS picturable picture-writing picture/DMSG picturesque/PY picturesqueness/S piddle/GYDS pidgin/SM pie/MS piebald/S piece/MDSG piecemeal piecer/M piecewise piecework/MRS piecrust piedmont Piedmontese Piegan/S pieing pierce/RDSJkG Pierre/M Pierron/M Pietilä/M Pietro piety/IMS piezoelectric piezoelectricity/M piffle/DSMG pig-headed pig-sticker pig/LGZDMS pigeon-breast/D pigeon-fancier/MS pigeon-hole/SMDG pigeon-toed pigeon/SyM pigeonry/S piggery/M piggish/YP piggishness/S piggledy piggy/TMS piggyback/GDS pigheaded/Y pigheadedness/S piglet/SM pigman pigmen pigment/DNnG pigmentation/M pignut/S pigpen/S pigskin/SM pigsty/MS pigswill/M pigtail/SMD Pikachu/M pike/SRMDG pikeman pikemen pikestaff/MS pilaf/SM pilaster/dMS Pilate Pilates pilau's pilchard/MS pile's pile/GFSD pilers/F pileup/SM pilfer/drS pilferage/MS pilgrim/dMS pilgrimage/MSDG pilgrimise pilgrimize piling/MS pill/SM pillage/DGRS pillar-box pillar/MS pillared pillbox/MS pillion/MS pillory/DSMG pillow/GDMS pillowcase/SM pillowslip/S pillwort pilot/SdM pilotage pilothouse/SM piloting/M pilotless Pilton/M Pima/M pimento/SM pimiento/MS Pimms pimozide pimp/YSDMG pimpernel/MS pimple/DSM pimplike pimply/MT pin-up/MS pin-wheel/SM pin/MGdDJS pinafore/MS Pinard/M pinball/SM pinboard/S pince pince-nez pincer/S pincered pinch/DSG pincher/M pincushion/MS pine's pine/AGSD pineal pineapple/SM pinewood/S piney pinfeather/SM Pinfold/M ping-pong ping/SGDR pingable pinhead/SDiM pinhole/MS pinion/DMGS pink/PZDTMYGS Pinkerton/M pinkeye/SM pinkie pinkish pinkishness pinkness/S pinky/S pinna pinnace/SM pinnacle/DSMG pinnae pinnate pinned/f pinning/fS Pinochet/M pinout/S pinpoint/GDS pinprick/SDGM pins/fU pinstripe/DSM pint/MS pintail/SM Pinter/M Pinterest/M Pinto/M pintuck/S piny/T Pinyin Pio/M pion/MS pioneer/SDGM Piotr/M Piotrowski/M pious/PYI piousness/IS pip/drDkMGS pipe/MS pipeclay/SGD pipefish/S pipeline/DMS piperazine piperic piperidine piperin piperine piperitious piperonal pipette/SMDG pipework piping/M pipit/SM pippin/SM pipsqueak/MS piquancy/SM piquant/PY pique/SMDG piquet piracy/MS piragua Piran/M piranha/SM pirate/1MGDSw piratic piri-piri Pirie/M piriform pirk/S pirogue/S piroplasmosis pirouette/SGMD Pisa/M piscatorial Piscean/S Pisces piscicultural pisciculture pisciculturist pish/SGD pisiform pismire/SM pisonia/S piss/DSG pisser pissy pistachio/SM piste/SM pistil/MS pistillate pistol/SDGM pistole/M pistoleers piston/MS pit-a-pat pit/MGSD Pitcairn pitch-and-toss pitch-black pitch-dark pitch/RGDS pitchblende/SM Pitchford/M pitchfork/SMDG pitching/M pitchstone/M piteous/PY piteousness/S pitfall/SM pith/z2ZDMGS pithead/S pithiness/S pithy/TP pitiable/P pitiful/PT pitiless/PY pitilessness/S pitman/M piton/MS pitpan/S Pitressin Pitt/M pitta/S pittance/MS Pittermann Pittman/M Pittsburgh pituitary/MS pity/SGMRjpklD76 Pius/M pivot/dSMo pivotal pivoting/M pix pixel/SM pixelate/SGDN pixelisation pixelized Pixelvision pixie/SM pixilated pixillated pixmap/MS pixsome pizazz/S pizza/MS pizzeria/SM pizzicati pizzicato piñata/S piñon/S Pk PKCS PKI pl. placard/GSMD placate/yDVSGnN placater place's place/EDRSLG placeable/A placebo/SM placed/aUA placeholder/S placekick/SGD placeless/Y placeman placemen placement/eMS placenta/MS placentae placental/S places/aA placid/YP placidity/MS placing/aA placings placket/SM placoid Placozoa placozoan plagal plage/S plagiarise/DRGS plagiarism/SM plagiarist/SM plagiaristic plagiarize/DRGS plagioclase plague/GDMS plaguer/M plaice/M plaid/DMS plain-clothes plain-spoken plain/mPGDTSY plainchant plained/F plainer/F plaining/F plainness/S plains/F plainsong/SM plaint's/F plaint/uSvMV plaintext/S plaintiff/MS plaintive/P plaints/F plait/DMSG plaiter plaiting/M plan/DdMSrRG planar planarity planchette/S Planck/M planctological planctologist planctology plane/SM planeload planerite planeshear planesman planesmen planet/MS planetarium/MS planetary planetesimal/MS planetoid/MS plangency/S plangent plank/GMDSJ planking/M plankless plankshear planksheer plankter planktic planktivore planktivorous planktological planktologist planktology plankton/MS planktonic planktotrophic planned/KU planning/A planoconcave planoconvex plansheer plant's plant/BIGSDA4 plantain/MS plantar plantation/IMS planter's/I planter/SM planting/S plantlet/S plantlike planula planulae plaque/MS plash/DMGSZ plasm/M plasma/SM plasmid/S plasmodesma plasmodesmata plasmodia plasmodial plasmodium Plass/M plaster/rMdS plasterboard/SM plastering/M plasterwork/M plastic/YQ8s9MS plasticine plasticity/SM plasticuffs plastid/S plastique plat/rdR plate/6SMJ plateau/GMDS plateful/S platelayer/S platelet/SM platen/MS platform/MS platformate platformer/S Platforming platforming platformist platformless platformy plating/M platinum/QM platitude/MS platitudinous/Y Plato/M platonic Platonism/M Platonist/S platoon/GMDS Platyhelminthes platypus/MS platysma/S platysmata plaudit/MS plausibility/IS plausible/IY plausibleness plausibly/I play's play-act/JGDS play-acting/M play-off/S play/eGADESacf playability playable/EU playback/SM playbill/MS playboater playboating playbox playboy/MS playboyish playboyishness playboyism playbus played/U player/SEM Playfair/M playfellow/S playfield playful/PY playfulness/S playgirl/SM playgoer/SM playground/SM playgroup/S playhouse/SM playing/S playlist/SG playmaker/S playmaking playmate/SM playpen/SM playroom/SM playscheme/S playschool/S PlayStation/S playsuit plaything/SM playtime/MS playwright/MS playwriting/M plaza/SM PLC plc plea/MS plead/SDRGJk pleading/M pleas/SkDGJ pleasant/TYP pleasantly/U pleasantness/S pleasantry/SM please/EGDS pleaser/M pleasing/P Pleasington pleasurable/P pleasure's/E pleasure/GDSlM pleasures/E pleat/GDMS pleater/M pleb/ZS plebeian/S plebiscitary plebiscite/SM plectra plectrum/MS pledge/GDMS pledgee pledger/M Pleiades pleiotropy Pleistocene plenary/S plenipotentiary/S plenish/D plenitude/SM plenteous/YP plentiful/P plenty/M6j plenum/M pleomorphic pleomorphism pleonasm/MS pleonastic/Y plesiosaur/S plessor plethora/MS pleura/M pleurae pleural pleurisy/MS plexiform pleximeter pleximetry plexor plexus/MS pliability/SM pliable/P pliancy/MS pliant/FY pliantness/M plication/FMIA plied/AIF pliers/F plies/FAI plight/DGMS plighter plimsolls plink/SGDZ plinth/MS Pliocene pliosaur/S PLO plod/DRGSJV plodding/Y Plohman ploidy plonk/SGDZR plonkingly plop/GDMS plosive/I plot/SRMGDJ Plotinus/M plotter-printer plottery plottingly plotty plotwise plough/mRGSMD ploughed/U ploughland ploughshare/SM plover/MS ploy's ploy/CS PLP/M pluck/ZGSz2D plucker/M pluckiness/S plucky/TP plug's plug-compatible plug-in plug/UDSG plugboard/S pluggable plugger/S plughole plum/MSZ plumage/SDM plumb/MDJSRG plumbago/M plumbed/U plumbing/M plumbous plume-like plume/DpSM plumeria/S plumery plummet/Sd plummy/T plumose plump/SGDTYZ plumpen plumper/M plumpish plumpitude plumpness/S plumula plumule/S plunder/dS plunderer/S plunge/RSDG plunk/RGDS pluperfect/S plural/s8Q-S9qY pluralism/SM pluralist/SW plurality/MS pluralization/M pluripotent plus/S plush/TZPMS2Y plushness/S plushy/T Pluto/M plutocracy/MS plutocrat/SMW plutocratically pluton/S Plutonian plutonic Plutonic plutonium/M pluvial/S ply/BDSNG plying/F Plymouth/M plywood/SM pm PM/M PMC PMS pneumatic/SY pneumatics/M pneumococcal pneumococci pneumococcus pneumoencephalography/W pneumogastric pneumonectomy/S pneumonia/MS pneumonic pneumonitis pneumonoultramicroscopicsilicovolcanoconiosis pneumothorax PNG/S PNP PO po-faced po/QY poach/RDSG Pocahontas/M pochard/S pochette pock/SDM pocket/d6MS pocketbook/SM pocketer/S pocketful/MS pocketing/M pocketknife/M pocketknives pockmark/DSMG pocus pod/SDMG podcast/SBRG podgy/TP podiatry/3SM podium/SM poem/SM poesy/MS poet/1WSywM poetaster/MS poetess/SM poetic/S poeticalness poetics/M poetry/SM pogo pogrom/SM poignancy/SM poignant/Y poikilothermic poinciana/SM poinsettia/SM point-blank point-duty point-of-sale point-to-point point/RhSpGiMDZ pointe pointed/P pointillism/SM pointillist/MS pointing/M pointless/YP pointlessness/S points/e pointsman pointsmen pointy/T poise/M poison/dMrS poisoning/SM poisonous/Y poisonousness poisonwood poke-shakings poke/yRDSGZ pokeberry Pokemon/M poker-face/D pokeweed poky/T Poké Pokédex Pokéfan/S Pokémaniac/S Pokémon/M PokéStop/S Poland/M polar/Q-8qSs polarimeter/SM polarimetry polariscope/M polarise/CRnSGD polarity/SM polarize/CnNSGD polarograph/Z polarographic polarography/M Polaroid/S polaron polarward polder/S polderland polderman pole-axed pole-axes pole-vaulter pole-vaulting pole/MDS polecat/SM polemic/YS polemical polemicist/S polemics/M polenta poler/M poleward/S police/m5DSGZM policier policy/SM policyholder/MS policymaker/S policymaking polio/SM poliomyelitides poliomyelitis/M poliovirus/S polish/RDJGS polished/U politburo/S polite/IPYW politeness/IS politer politesse/MS politest politic/Q8-GDSq politician/MS politicise/CGSD politicize/CGSD politicking/MS politicly/I politico/SM politics/M polity/SMw1 polka/DGSM poll/DMGS pollack/MS Pollard/M pollen/SM poller Polley/M pollinate/DNGSn pollination/M pollinator/MS Pollock/M pollster/MS pollutant/MS pollute/RSDG polluted/U pollution/SM Polly/M Pollyanna/S Pollyannaish Pollyannaism polo-neck polo/MS Polokwane polonaise/SM polonium/M Polonnaruwa poltergeist/SM poltroon/SM poltroonery poluphloisboian poluphloisboisteros poluphloisboisterous polyacrylamide polyalphabetic polyamidation polyamide/S polyamine polyamorist polyamorous polyamory polyandrous polyandry/SM polyatomic Polybius/M polybutene/SM polycarbonate polychaete/S polychemicals polychrome/W polyclinic/MS polyclonal polycrystalline polycyclic polycystic polyelectrolyte/S polyester/MS polyether/S polyethism polyethylene/SM polygamous/Y polygamy/3SM polyglot/S polyglottal polyglottic polyglottism polyglycol/W polygon/oMS polygonal polygraph/DSMG polygynous polygyny polyhedra polyhedral polyhedron/SM polyhydroxy polyisobutylene polyisocyanates polyisoprene polymath/SM polymer/Q8-qMS polymerase/S polymeric polymorphic polymorphism/S polymorphonuclear polymorphous polymyalgia polymyositis polymyxin/S Polynesia/M polyneuropathy polynomial/MSY polynuclear polynucleotide/S polyol polyolefin polyp/MS polypeptide/S polyphase polyphasic Polyphemus polyphenol/S polyphenolic polyphenylene polyphiloprogenitive polyphloisboian polyphloisboisterous polyphobia polyphon polyphonal polyphone polyphonian polyphonous polyphony/SMW3 polyphosphate/S polyphyletic polyploid/S polyploidy polypody/S polypoid polypropylene/SM polysaccharide/S polysemic polysemous polysemy polysilicon polysiloxane polystyrene/MS polysyllable/WSM polytechnic/MS polytene polytheism/MS polytheist/WSM polythene/M polytonal/Y polytonality polytopes polyunsaturated polyunsaturates polyurethane/SM polyvinyl/M pom-pom pomade/SGMD pomander/MS pomegranate/MS pomelo/S Pomeranian/S pommel/SGDM pomodoro pomp/SM pompadour/SMD pompano/MS Pompeian Pompeii/M Pompeiian pompom/MS pomposity/SM pompous/Y pompousness/S ponce/M poncho/SM pond/DMGS ponder/4S ponderal pondered ponderer/SM pondering ponderous/YP ponderousness/S pondweed pone/SZM pong/D pongee/MS poniard/SM Ponnamperuma/M pons/M pontage Pontchartrain/M Pontefract/M pontiff/SM pontifical/YS pontificate/NnDGS Ponting/M pontoon/MDSG pony/SM ponytail/SM pooch/SM poodle/MS poof/SM pooh-pooh/D pooh/SDG pool/GSDM Poole/M poolside poop/SDGM poor-spirited poor/TYP poorhouse/MS poorness/S Poornima/M Pootle pootle pootling POP pop-cult pop-up pop/ZRGSDM POP3 popcorn/SM pope/SM Popemobile popery popgun/SM popinjay/MS popish/Y poplar/MS poplin/SM popliteal poppet/MS poppy/MS poppycock/SM poppyseed/S poppywort popsock/S popster/SM populace/SM popular/qQ8Ys9- popularism popularities popularity/MU popularization/M populate/cCnNDGS populated/UfA populates/A populating/A population/CMc populism/S populist/SM populous/PY populousness/S porcelain/MS porch/SM porcine porcupine/SM pore/GDS Porifera pork/RSZM porkling porky/TS porn/S pornification pornify porno/S pornocracy pornographer/SM pornography/MS1W pornstar/S porosity/SM porous/YP porousness/S porphyria porphyrin/S porphyritic porphyry/SM porpoise/DMGS porridge/SM porringer/MS Porsche/MS port's/A Port-au-Prince/M Port-of-Spain/M port/lDMYSBRG portability/S portable/S portage's portage/A portaged portages portaging Portakabin/S portal/MS portamento/M portcullis/MSd ported/A4EFCI portend/GSD portent/SM portentous/PY porter/CM4SAI porterage/M portered porterhouse/M portering portfolio/MS porthole/SM portico/MS porticoes porting/FE4 portion/SDGM portière/SM Portland/M Portlaoighise Portlaoise portliness/S portly/PT Portman/M portmanteau/SM Porto portobello/S portrait/3SM portraitist portraiture/SM portray/BSDG portrayal/SM portrayer/MS ports/ACFEI4 Portsmouth/M Portugal/M Portuguese/M POS pose/FNCRxDGSEX posed/4AI poser/IMS poses/IA4 poseur/MS posey posh/T posing/AI4 posit/vuSVd posited/FC positing/F position's/EI4FCK position/CGADKS positionable positional/KY positionality positioned/a positioner/S positions/4I positive/TS positiveness/S positivism/M positivist/S positivity positron/SM posits/C posse/bSM posses/GhDi possess/EGKDSNAX possession/MKEA possessive/PMYS possessiveness/S possessor/SM possessory possibility/IMS possible/SIY possibly/I possum/SM post's/IeF post-classical post-coital/Y post-date/GDS post-entry/S post-feminism post-feminist post-free post-haste post-horn/MS post-impressionism post-impressionist/W post-industrial post-millennial post-millennialism post-millennialist post-natal post-nuptial post-operative/Y post-orbit post-partum post-production post-structural post-structuralism post-structuralist post-tension post-town/MS post-traumatic post-war post/JDMRGS postabdomen postabdominal postable postabortal postabortion postacetabular postage/SM postal postbag/M postbox/MS postcard/SM postcode/SMD postcolonial postcolonialism postcolonialist postcondition/S postdoc/S postdoctoral posted/AFI poster/ISM posterior/SY posteriori posterity/MS postfix/DSG postglacial postgraduate/MS posthospital posthumous/PY posthypnotic postiche postilion/MS postilioned postillation postillion postinfection postinfectious postinflammatory posting/M postlanding postless postlude/MS postman/M postmarital postmark/MSGD postmaster/MS postmen/M postmenopausal postmistress/MS postmodern postmodernism postmodernist/S postmodernity postmodify/RNSGD postmortem/SM postmultiply/SGDN postnarial postnasal postnatal/Y postnuptial postoperative/Y postorbital/S postpaid postponable postpone/LGDS postponer postpositions postpositive/Y postprandial postreform posts/FIAe PostScript postscript/SM postsynapsis postsynaptic postsynaptically posttransfusion posttreatment postulate/NSnDG postulation/M postulatory postural posture/IMS postured posturer/MS posturing/S postvocalic postwar postwoman postwomen posy/SMT pot's/C pot-belly/DSM pot-boiler/M pot-hunter pot-pourri/SM pot-shot/S pot/RG6SZ7DgM potability/SM potable/PS potage/M potash/SM potassium/M potato/M potatoes potencies/I potency/MS potent/YIS potentate/SM potential/YS potentiality/SM potentiate/SDG potentilla potentiodynamic potentiometer/MS potentiometrically potentiometry/W potentiostat potentiostatic potentiostatically potentite potentness potestal potestas potestative potful/SM pothead/SM pother/dSM potherb/MS pothole/SMGD potholing/M pothook/SM potion/SM potlatch/MS potoroo/S pots/C potsherd/SM Pott/M pottage/SM potter/dZ potterer pottery/SM Potts/M potty/TS pouch/MDSG pouffe/S Poulenc/M poulterer/SM poultice/DSMG poultry/MS pounce/DSG Pouncey/M pound/FGISD poundage/MS pounder/FM pounders Poundstone/M pour/7GSD pourer's pouring/e pourri/SM poussin/S pout/RSDG poverty-stricken poverty/SM POW/S powder/dMSZ powderer powderpuff Powell/M power-hungry power-sharing power/6jdpSM powerboat/SM powered/cf powerful/P powerhouse/SM powering/c powerless/PY powerlessness/S powerlifter powerlifting PowerPC PowerPoint powers/c powwow/SGDM Powys pox/SM pp ppm PPP ppr PPS Pr practicabilities practicability/I practicable/IY practicableness practicably/I practical/IPY practicality/ISM practicals practice/S7M practician practise/SGD practised/U practiser/M practitioner/MS praeoperculum Praesidium/M praetor/MS praetorian/S pragmatic/YS pragmatical pragmatics/M pragmatism/SM pragmatist/SM prague's Prague/M Praia/M prairie/SM praise's praise/EDSG praiser/S praiseworthiness/S praiseworthy/P praising/Y praline/SM pram/SM pranayama prance/RGSDk prank/SM prankster/MS praseodymium/M prasinophyte prat/S prate/SRkDG prattle/DRSGk prawn/DMGSR praxes praxis/M pray/RGDS prayer/j6 prayerbook prayerful/P PRC pre-abdomen pre-adolescent pre-Christian pre-date/DSG pre-decimal pre-defined pre-echo pre-echoes pre-eclampsia pre-eclamptic pre-elect pre-election pre-embryo/S pre-eminence/MS pre-eminent/Y pre-emphasis pre-employment/SM pre-empt/DVSvG pre-emption/SM pre-emptor/M pre-exist/DGS pre-existant pre-existence/SM pre-ignition pre-implementation pre-industrial pre-made pre-order/S pre-package/GSD pre-paid pre-plan/D pre-preference pre-prepare/D pre-print pre-privatisation pre-process/G pre-processor pre-programmed pre-pubescent pre-record/SDG pre-reflective pre-release pre-Roman pre-scientific pre-sell pre-service pre-set/S pre-shrink pre-shrunk pre-tax pre-teen/S pre-tension/S pre-visualize pre-vocational pre-war pre-wash pre/Q8s preach/RJL preachiness preadapt/D preadaptation/S preadaptive preadolescent preagricultural preamble/M preambular preamp preamplifier/MS preamplify/SGD prearrange/L preassign prebendary/M prebiotic prebuild/SG prebuilt Precambrian precancel precancerous precapitalist precarious/PY precariousness/S precast/SG precedence/MS precedent/MDS precedented/U precept/VvMS preceptor/MS precess/GDS precharge/D precinct/MS preciosity/MS precious/SY preciousness/S precipice/MS precipitable precipitant/S precipitate/YnSDPGN precipitation/M precipitous/YP precise/NPIXY preciseness/IS preciser precisest precision/IM preclude/DSXNG precocious/YP precociousness/S precocity/MS precode precognitive precoital/Y precolonial preconcert/D precondition/G preconfigure preconscious/P precontest precontracted preconvulsive precopulatory precordial precordium precursor precut precycling predate/SGD predation/MCS predator/SM predatory predawn predecessor/SM predecessors' predecline predestine/SG predetermine/NnD predevelopment predicability predicable/S predicament/MS predicate/VnNSDG predicateless predication/M predicational predicatival predicator predict/DSvBGlV predictabilities predictability/UM predictable/U predictably/U predicted/U predictionism predictor/SM predigestion predilection/SM prednisone predominate/Y preen/DSG preener/M pref prefab/DSMG prefatory prefect/MS prefecture/SM prefer/DSl7G preferable/P preference/MS preferential/Y prefetch/SGD prefigurations prefigurative prefigure/N prefigurement prefix/M preflight/G preform prefrontal/S preglacial pregnability pregnable pregnancy/MS pregnant/Y pregrowth preguide preheat prehensile prehension prehistorian/S prehuman/S preimage/S preinterview prejudice/SDMG prejudiced/U prejudicialness prelacy/SM prelate/MS prelatic prelatical preliminary/YS preliterate preload/G prelude/GMDS preluder/M prelusive prem/S premarket premaster/Sd prematch prematerial prematuration premature premaxilla premaxillary premed/wS premedication premeditate/h premeditated/U premier/MS premiere/SGD premiership/SM premise/DSGM premiss/M premium/SM première/SDGM premodify/SGDNR premonish/G premonitory premyelocyte prenasal prenatal/Y prenominal/Y Prensky/M prenuptial preoperative preoperatively preoperculum preordain prep/SM prepack preparation/M preparative/SM prepare/VviGnyhN prepared/P preparedness/S preparer/S prepay/LB prepend/SGD prepender/S preplan/SGD prepolymer/S preponderance/MS preponderant/Y preponderate/GYSDN prepose/SGD prepossessing/U preposterous/PY preprepared preprint/M preprocess/SGD preprocessor preprogram/Sd preprogramme/SGD preprohormone preproinsulin preprostatic prepubescent/S prequel/S preradiation prereform prerenal prerequire/SGD prerequisite/M prerequisition preretina prerogative/MS presage/GD presager/M presbyopia/MS presbyter/MZS presbyteral presbyterate presbyterial Presbyterian/MS presbytership presbytery/SM preschool preschooler/S prescience prescient/Y Prescott/M prescribable prescribe/vXVN prescribers prescription/M prescriptivism prescriptivist preseason/S preselection/S preselective preselector presence/SM present-day present/NnLYRS7xlDG presentable/P presentably/A presentation/MAo presentational/A presented/A presentee/S presentimental presentism presentist presentness presentor presents/A preservable preservation/M preservational preservationism preservationist/S preservative/SM preserve/nNV preserved/U preset/S preshared preside/DG presidency/MS President/MS president/MS Presidential presidential/Y presider/M presignature/S Presley/M presort press-gang/D press-stud/S press-up/S press/FIGSADC presser's/I presser/MS pressing/YS pressman/M pressmen/M pressroom pressure-cook/G pressure-cooker pressure/M8q-9GQsDS pressurised/U prestidigitate/Nn prestidigitation/M prestidigitator/M prestidigitatorial prestige/SM prestigious/Y prestigiousness presto/S Preston/M prestressed prestressing Prestwick/M presumable presume/vDSGVkXNl presumer/M presumption/M presumptuousness/S presymptomatic pretence/MS pretending/U pretentious/YU pretentiousness/U pretentiousnesses preterite/M preterm preternatural/Y Pretoria/M prettify/SDG prettiness/S pretty/DTSYPG pretzel/SM prevail/GkSD prevalent/Y prevaricate/DGNSn prevaricator/MS prevent/lu7vV preventable/U preventative/S preventer/M prevention/MS preventive/SP preview/G previous/Y prevision/D previsualise previsualize previtamin prey/DMGS Priam/M priapic priapulid/S Priapulida price's price/SADcG priced/U priceless pricer/MS pricey pricier priciest pricing/f prick/YRDGS pricking/M prickle/MDS2G prickliness/S prickly/T pride/DGj6SM priest/MDSGY priestess/MS priesthood/MS Priestley/M priestliness/S priestly/TP prig/SM priggish/MY priggishness/S prim/rdTY primacy/SM primaeval primal primary/YMS primate/MS primatial prime/PS Primera/M primeval/Y primitive/PSY primitiveness/S primitivism/M primitivist/S primness primogenital primogenitary primogenitive primogenitor/SM primogeniture/MS primordia primordial/YS primordium primp/GSD primrose/MS primula/S prince/YSM princedom/SM princeliness/S princely/PT princess/MS Princeton principal/SY principality/SM Principe/M principle/SMD principled/U Pringle/M Pringles print/IDAGSaKc printability printable/U printably printed/U printer-plotter printer/AMIS printerdom printergram printery/S printhead/S printing/IM printings printmaker/SM printmaking/M printout/S printworks prion/S prior/YZ prioress/SM priori priority/Q8q-s9SM priory/MS Priscilla/M Priscoan prise's/A prise/FSAGD prism/SM prismatic prismatically prison's prison/ISd prisoner/SM prissiness/S prissy/TPY pristine/Y prithee/S privacy/SM private/nYTQ8SN-qPVv privateer/MGS privation/MC privet/MS privilege/SDMG privileged/Uf privy/YM Prix prize/M prizefight/RJSMG prizefighting/M prizewinner/S prizewinning pro-American pro-angiosperm pro-attitude pro-cathedral pro-celeb pro-celebrity pro-choice pro-democracy pro-drop pro-ethnic pro-European pro-hunt/G pro-inflammatory pro-knock pro-legate pro-life/R pro-nuke pro-oxidant pro-Republican pro/SM proaction proactive/Y proactivity probabilist/W1 probability/MIS probable/I probables probably/I probate/SANM probation's/A probation/RoyM probational probationary/S probative probe/BnDGlS prober/M probiotic/S probity/SM problem/MSwW1 problematic/U proboscis/SM procaine/SM procaryote procedural/S procedure/MSo proceed/DJGS proceeder/M proceeding/M process/7XNMSGxD processed/UA processes/A procession/M processional/S processor/MS processors/K prochlorperazine proclaim/DRS7G proclamation/MS proclivity/MS Proclus/M procoagulant/S proconsul/MS proconsular procrastinate/SNGDn procrastination/M procrastinator/MS procreate/VGyxDNSn procreation/M procreativity proctor/dMS proctorial procurable/U procuracy/S procurator/SM procure/LDSG procurer/MS prod/GDS prodigal/SY prodigality/S prodigious/YP prodigy/SM prodromal produce/cNDSGAn produced/e producer/AMS produces/e producible producing/e product/QVMsvSu production's/Af production/Kf productions/f productive/UY productiveness/SM productivity/SM proenkephalin proenzyme/S Prof. prof/MS profane/DPSGYNn profaneness/S profaner profanity/SM profess/DNxXhSG profession/M professional/Q8S professionalisation professionalism/MS professionalization professionally/U professor/oSM professorial professorship/SM proffer/dS proficiency/SM proficient/Y profile/RGDSM profit-taking profit/Mpgdl7S profitable/P profitably/U profiteer/DGSM profiterole/MS profligacy/S profligate/SY proforma/S profound/PYT profoundness/S profundity/SM profuse/YPNX profuseness/S profusion/M progenitor/SM progeny/SM progesterone/SM progestin/S progestogen/S proglacial prognathous prognoses prognosis/M prognostic/nNVS prognosticate/DGS prognostication/M prognosticator/S prograde/SGDn program/BRGSJDM programmable/S programmatically programme/WSM programmed/C programming/C programs/A progress/GMuSDNXVv progression/M progressive/PS progressiveness/S progressivism progressivist/S prohibit/dvuSVyNX prohibiter/M prohibition/3M prohibitionism prohibitionist prohibitive/P prohibitorily prohormone proing proinsulin project/SDVvMG projectable projectile/SM projection/3SM projectionist projector/SM prokaryote prokaryotic Prokofiev/M Proksa/M prolactin prolapse/GSDM prolate prolegomena prolepses prolepsis proleptic proletarian/Q8-qS proletariat/SM proliferate/GnDSNV proliferation/M proliferous prolific/Y prolificacy prolificness proline prolix/Y Prolixin prolixity/SM prolixness prolly prologise prologize prologue/SMGD prologuise prologuize prolong/nSDNG prolongation/M prolongedly prolonger/M prolusion prom/QMSs promenade/RMSGD promethazine Promethean Prometheus promethium/M prominence/MS prominent/Y promiscuity/MS promiscuous/PY promise/FRkDGS promising/UY promissory promo/SVu promontory/SM promote/SRxBGD promotion/MS promovent prompt/PYRJTSGD prompted/U promptitude/MS promptness/S promulgate/GSNnD promulgation/M promulgator/SM promyelocyte pronate/SGDN pronator/S prone/PY proneness/S proneural prong/DMGS pronghorn/MS pronominal pronoun/SM pronounce/aGDS pronounceable/U pronounced/U pronouncedly pronouncement/SM pronouncer/M pronto pronunciation/aSM proof-read/GS proof-reader/S proof/EASM proofed proofer proofing/M proofread/SGR prootic prop/MSGD propaganda/MS propagandise/DSG propagandist/SWM propagate/NnVGDS propagation/M propagator/SM propagule/S propane/SM propel/RSNDnG propellant/MS propellent propensity/SM proper/IPY property/DSM propertyless prophase prophecy/SM prophesy/RDSG prophet/1WSwM prophetess/S prophylactic/S prophylaxes prophylaxis/M propinquity/SM propionate/M propitiate/NynSDG propitious/U propitiously propitiousness/M proponent/MS proportion/EDSGMo proportional/S proportionality/M proportionate/EYS proportioner/M proportionment/M proposal/SM propose/DRGSNxX proposition/GDM propound/SDG propranolol proprietary/S proprietor/SM proprietorial proprietorship/SM proprietress/MS propriety/SMI proprioception proprioceptive proprioceptively proprioceptor/S propshaft propulsion/M propulsive propyl propylene/M prorate/DNSG prorogation/MS prorogue/DGS pros/S prosaic/Y proscenium/SM prosciutto/M proscribe/DSXVGN proscriber/M proscription/M prose/DZM prosecutable prosecute/GDS prosecution/MS prosecutor/SM proselyte/M8GsQ9DS proselytisation proselytism/SM proselytization prosencephalic prosencephalon proser/M prosobranch Prosobranchia prosobranchiate prosobranchs prosocial prosodic/S prosody/WSM prosoma prosome prosopagnosia prospect/DSuVvMG prospective/PS prospector/SM prospectus/MS prosper/dS prosperity/SM prosperous/YP Prosser/M prostaglandin/S prostate/SM prostatectomy/S prostatitis prostheses prosthesis/M prosthetic/SY prosthetics/M prostitute/MGDS prostitution/MS prostrate/NnDSG prostration/M prosy/T protactinium/M protagonist/MS protea/SM protean/S proteas/S protease/M proteasome/S protect/cVGSD protected/U protectedly protection/cM protectionism/SM protectionist/SM protections protective/SY protectiveness/S protector/MS protectoral protectorate/MS protectorial protectorless protectorship protectory protectress protectrix proteic proteiform protein/MS proteinaceous proteinase/S proteinic proteinous proteoglycan/S proteolysis/M proteolytic proteome/S proteomic/S Proterozoic protest/RSMNnkDG protestant/S protestantism protestation/M protestor/S Proteus prothonotary/S prothonotaryship prothoracic prothorax prothyl protist/S Protista protistan/S protistology Proto-Indo-European protocol/SM protocone protoctist/S Protoctista protofeminist protofibril protofilament protoform protogalactic protogalaxy/S protogastric protogeneous protogenetic protogynous protogyny protolanguage/S proton/MS protonate/DN protonosphere protonotary/S protoplanet protoplasm/SWM protoplast/S protostar/S prototype/WGSM1Dw Protozoa protozoa/W protozoal protozoan/SM protozoon/M protract/DSG protraction/MS protractor/SM protrude/XSVuvDGN protrusile protrusion/M protuberance/S protuberant protyle protégé/MS protégée/S proud/YT provability/MS provable/Y prove/EBSGD proved/AI proven/U provenance/SM Provence/M provender/SM provene Provençal proverb/oMS proverbial proves/AI providable provide/NDRXSxG providence/SIM provident/IY providential/Y province/oMS provincial/S provincialism/MS proving/IA provision/GMD provisional/S provisioner/M proviso/MS provocation/M provocative/PS provocativeness/S provoke/VuSNRGknvD provoked/U provost/SM prow/SM prowess/MS prowl/RSDG Prowse/M proximal/Y proximate/YP proximity/MS proxy/MSGD Prozac/M proöxidant prude/MyS prudence/ISM prudent/IY prudential/YS prudery/M prudish/PY prudishness/S prune/DGRSM prunetin prunish prunitrin prurience/SM prurient/Y pruritus/W Prussia Prussian/S prussic pry/TkDRGS Prynne/M précis/dSM PS psalm/M3S psalmist psalter/Z psaltery/SM psephite psephitic psephocracy psephocrat psephologist/MS psephology/w1 psephomancy pseud/S pseudo pseudo-intellectual pseudo-science/WS pseudocode/SD pseudocopulation pseudocyst/S pseudoephedrine pseudogamy pseudomorph/SGDW pseudomorphism pseudomorphous pseudonym/MS pseudonymity pseudonymous pseudonymously pseudopod/S pseudopodia pseudopodium pseudorandom/Y pseudoscience/S pseudoscientific pseudoscientist/S pseudotetragonal pseudotetramerous pseudotillite pseudoword/S pshaw/S psi psilocybin psilomelane psilophyte psilothrum Psion/M psionic/S psionically psittacoses psittacosis/M psoralen/S psoriases psoriasiform psoriasis/M psoriatic Pspell psst/S PST psych/1GSWDw psyche/M psychedelia psychedelic/YS psychiatry/W3MS psychic/SM psychicism psychicist psychist psycho-aesthetic/S psycho-educational psycho/SM psychoacoustic/S psychoacoustics/M psychoactive psychoanalyse/WDSG psychoanalysis/M psychoanalyst/S psychoanalytical psychoanalytically psychobabble psychobiology/M psychocultural psychodiagnostic/S psychodrama/SM psychodynamic/S psychodynamically psychogenic psychogeriatric/S psychogeriatrician/M psychokinesis/M psychokinetic psycholinguist/S psycholinguistic/S psycholinguistics/M psychology/MS31w psychomedicine psychometric/S psychometrician psychometrics/M psychometry/WM3 psychomotor psychoneuroses psychoneurosis/M psychopath/ZSMW psychopathic/S psychopathology/M psychopathy/SM psychopharmacological psychopharmacologist/S psychopharmacology psychophysical/Y psychophysics/M psychophysiological psychophysiology/3M psychos/S psychosexual/Y psychosis/M psychosocial/Y psychosomatic/SY psychosomatics/M psychosurgery psychosurgical psychotherapeutic/S psychotherapist/MS psychotherapy/SM psychotic/SY psychotomimetic psychotronics psychotropic/S psychrophile/S psychrophilic psychs psyllium pt PTA ptarmigan/SM pteridophyte/S pterodactyl/MS pterosaur/S pteroylglutamic pterygoid PTO ptomaine/MS ptyalin Pu pub/MWSDG pubertal puberty/MS pubes pubescence/KS pubescent/K pubis/M public's/A public-spirited public/N3MQ8n publican/ASM publication/KMA publicised/U publicist publicity/SM publicized/U publicly publish/R7SJDG publishable/U published/A publishes/A publishing/M Puccini/M puce/KMS puck/SM pucker/dS puckery Puckett/M puckish/Y puckishness/S pudding/SM puddle/SGJYDM puddler/M puddling/M pudenda pudendum/M Pudge/M pudginess/S pudgy/TP Pudsey pueblo/SM puerile/Y puerility/MS puerperal Puerto puff/RSZD2MG puffball/MS puffbird/S puffer/Z puffery/M puffin/MS puffiness/S puffy/T pug/SMGD Puget/M pugilism/MS pugilist/WS pugnacious/YP pugnaciousness/S pugnacity/SM puissant/Y puke/GDS pukka pulchritude/SM pulchritudinous/M pule/GDS Pulitzer pull-back/S pull-down pull-in pull-out/S pull/RDGS pullet/SM pulley/SM pullover/SM pulmonaria/S pulmonary pulmonate/S pulp/DMS2GZ pulper pulpiness/S pulpit/SM pulpwood/SM pulpy/T pulsar/SM pulsate/SNnDG pulsatilla pulsation/M pulsatory pulse's/I pulse/ADSIG pulser pulverisation pulverise/RSDG pulverization/M pulverize/NDGn pulverizer/M pulvinar puma/SM pumice/DSMG pummel/DGS pummelo/S pump/GDMS pumper pumpernickel/SM pumping/M pumpkin/MS pumpkinseed/S pun/SGDM punch/RGSD7JZ punchbag/S punchball punchbowl/M puncheon/SM punchline/S punchy/T puncta punctilio/SM punctilious/PY punctiliousness/S punctual/YP punctualities punctuality/UM punctuate/DSGxnN punctuation/M punctum puncture/DSMG pundit/MS punditry/S pungency/SM pungent/Y puniness/S punish/DGL7S punished/U punisher/M punitive/PY Punjabi punk/T2SMZ punkier punnet punster/SM punt/RGDMS puny/PT pup/SMNZDG pupa/M pupae pupal pupate/DSG pupil/SM pupillage/M puppet/ySM puppeteer/SM puppetry/SM puppy/MS puppyish Purbeck purblind Purcell/M purchasable purchase/SARGD purdah/SM pure-bred/S pure/P3TY PureBasic purely/I pureness/S purer/I purest/I purgation/M purgative/SM purgatorial purgatory/MS purge/DRSGNV purificatory purify/SnRNDG Purim purine/SM purism/SM purist/W puritan/wS1M puritanism/S purity/ISM purl/GSDM purlieu/M purlieus purloin/SDG purloiner/M purple/TSMGD purplish purport/RGDSh purpose-built purpose/6MvpVDjuSGY purposefulness/S purposeless/PY purposive/P purpura/W purr/GDSk purse/GRDMS purslane pursuance/MS pursuant pursue/DRSG pursuit/MS purulence/SM purulent purvey/DGS purveyance/MS purveyor/MS purview/MS Purvis/M purée/DMS puréeing pus/ZM Pusan push-button/S push-pull push-up/S push/SR72GzDZ pushback pushbike/SM pushcart/MS pushchair/SM pushful/YP pushiness/S pushover/MS pushpit pushrod/S pushy/TP pusillanimity/SM pusillanimous/Y puss/S pussy-cat/S pussy-whip/D pussy/MS pussycat/S pussyfoot/GDS pussyfooter/S pustular pustulate/GN pustule/SM put-down put-up put-you-up put/DRGZS putamen/S putamina putative/Y Putin/M Putney/M putrefaction/SM putrefactive putrefy/GSD putrescence/MS putrescent putrid/PY putridity/M puts/e putsch/S putt/MS putted/e puttee/MS putter/d putterer/S putty/MSDG puttying/M puzzle/LRSkJDG PVC pvt PW PX pyaemia pyaemic pyelonephritic pyelonephritis Pygmalion/M Pygmalionism pygmy/MS pyjama/MSD pyknic pylon/SM pylori pylorus/MW Pyongyang/M pyorrhoea/M pyramid/SMo pyramidal pyran pyrane pyranose pyrargyrite pyre/MS pyrene Pyrenean Pyrenees pyrethroid/S Pyrex pyrexia pyridine/M pyridoxal pyridoxamine pyridoxine pyridoxol pyriform pyrimidine/SM pyrite/MS pyroclast/S pyroclastic/S pyrocoll pyrogenic pyrogenicity pyrolyse/SWD pyrolysis/M pyromania/SM pyromaniac/MS pyrometer/SM pyrometry/M pyrope pyrosis pyrotechnic/S pyrotechnics/M pyrotechnist pyrotechny/Ww pyroxene/MS Pyrrha/M pyrrhic pyrrhotite pyruvate pyruvic Pythagoras Pythagorean Python/M python/MWS pyuria pyx/SM pyxides pyxidia pyxidium pyxis pâté/S pères/F q q.t. QA Qa'ida/M Qabalah Qaeda/M Qatar/M Qatari/S QC QCD qi Qing QKD QoS QPR qr qt qua quack/DGS quackery/SM quackish quad/SM quadplex quadragenarian quadrangle/MS quadrangular/M quadrant/SM quadraphonic/S quadrate/S quadrati quadratic/MYS quadrature/SM quadratus quadrennial/YS quadrennium/MS quadric/S quadriceps/SM quadrilateral/S quadrille/SM quadrillion/HMS quadripartite/Y quadriplegia/SM quadriplegic/SM quadrivia quadrivium/M quadrophonic quadruped/SM quadrupedal quadrupedally quadruple/SYDG quadruplet/SM quadruplicate/DSG quadruply/Nn quadrupole quaff/DSG quaffable quaffer/SM quag/SGZ quagmire/SM quail/DGMS quaint/TPY quaintness/S quake/SGZD Quaker/S Quakerish Quakerism quaky/T Qualcomm/M qualification/EM qualified/Uc qualifiedly qualifier/SM qualify/NEnDGS qualitative/Y quality/SM qualm/SM qualmish quandary/MS quango/S quanta/M quantifiable/U quantified/U quantify/7NRDGnS quantile/S quantitate/D quantitation/S quantitative/PY quantity/MS quantum/qQs8M-9 quarantine/DSMG quark/SM Quarles/M quarrel/RGSDMJ quarrelsome/PY quarrelsomeness/S quarrier/M quarry/mSMGD quart/WMRS quarter-final/SM quarter-hour quarter-light quarter-plate quarter/dY quarterback/SM quarterdeck/SM quarterer/M quartering/M quarterly/S quartermaster/SM quarterstaff/SM quartet/SM quartic/S quartile/MS quarto/SM quartz/SM quartzite/M quasar/SM quash/SGD quasi quasi-synchronous quasilinear quasiparticle/S quaternary/S quaternion/MS quatrain/SM quaver/dkSZ quay/SM Quayle quayside/M qubit/S Queally/M queasiness/S queasy/PYT Quebec/RM Quebecer/S Quebecois quebracho/S Quechua/S Quechuan queen/GYSDM queendom queenless queenlike queenly/T queenship Queensland/M Queenstown/M queer/YDGTS queerness/S quell/SGD queller/M quench/DR7SGp quenchable/U quenched/U quenelle/S quercetin querier quern/M querulous/Y querulousness/S query/GMSD quesadilla/S quest's/FI quest/ADSRGM quester/FMS question/RDJS7kMGl questionable/U questionableness/M questionably/U questioned/AU questioning/UY questionnaire/MS questions/A quests/FI quetzal/S queue's queue-jump/G queue/GCSD queueing queuer/SM Qui-Gon/M quibble/RSDG quiche/MS quick-fire quick-witted quick/TPY quicken/dS quickener/S quickie/SM quicklime/SM quickness/S quicksand/MS quickset quicksilver/dMS quickstep/SMGD QuickTime quid/SM quiesce/D quiescence/SM quiescent/Y quiescentness quiet/PTYDGS quieted/E quieten/Sd quieter's quieter/E quieting/E quietism quietist/SW quietly/E quietness/S quiets/E quietude/ESMI quietus/MS quiff quill/DMGS quilt/RDMGS quilting/M quinary quince/SM quincentenary/M Quincy/M quinine/SM Quinn/M Quinnell/M quinoa quinone/S quinquagenarian quinquennial/Y quinsy/SM quint/WMS quintessence/MS quintessential/Y quintet/SM quintillion/HS Quinton quintuple/DGS quintuplet/SM quip/SMGD quipper quipster/SM quire's quire/SAI quirk/ZM2S quirkiness/S quirky/TP quirt/DSMG quisling/SM quit/RSGD quite/A Quito/M quittance/SM quiver/dZkS quixotic/Y quiz/DRZGM quizzes quizzy/w1 quo quod quoin/DSMG quoit/GDSM quoll/S quondam quorate/I quorum/SM quota/MSn quotability/S quotable quotation/aM quotative/S quotativeness quote/DaSNGn quoted/U quoter/M quoth quotidian/S quotient/MS Qur'an Qur'anic Quran Quranic QWERTY r.p.m. r/sd Ra Raab/M RAAF Rabat/M rabbet/SMd rabbi/SM rabbinate/MS rabbinic/Y rabbinical rabbit/SdM rabble-rouser rabble-rousing rabble/SM rabid/PY rabies Rabin/M Raby/M RAC raccoon/MS race/RDSGJZoM racecard/S racecourse/SM racegoer/S racehorse/SM raceme/MS racemose racetrack/MS raceway/SM Rachael/M Rachmaninov/M racial/3 racialism/M racialist racism/S rack-and-pinion rack/SDGM racket/MdZS racketeer/JGMS Rackham/M raconteur/SM racoon/M racquet/SM racy/T3PY rad/w1 radar/MS Radford/M Radha/M radial/SY radialised radialized radian/MS radiance/MS radiant/Y radiate/SnIVDGN radiately radiation/MI radiator/SM radical/SQM radicalism/MS radices radicle/S radicular radii/M radio-controlled radio-opaque radio-telegraph/SZ radio-telegraphy/M radio-telephone/MS radio/DmSGM radioactive/Y radioactivity/M radiobiological/Y radiobiologist/S radiobiology radiocarbon/MS radiochemical radiochemically radiochemist/S radiochemistry/M radiocolloid radiocolloidal radiocommunications radioconductor radiodating radiodense radiodensity radiodermatitis radiodiagnosis radiodiagnostic/S radioecological radioecology radioenzymatic radiogenic/Y radiogoniometer radiogram/SM radiograph/SD radiographer/MS radiographically radiography/SWM radioimmunoassay radioiodine radioisotope/MS radioisotopic radiolabelled radioland radiolaria radiolarian/S radiology/W13Mw radiometer/MSW radiometry/M radionics radionuclide/M radiopacity radiopaque radiophonic/S radiophonicist radiophony radiophosphorus radiophosphorylated radiophoto radiophotograph radiophotography radiophotoluminescence radiophysical radiophysics radioprotectant radioprotection radioprotective radioprotector radiopure radiopurity radioreceptor radioresistant radioscanning radioscopy/WM radiosensitive/P radiosensitivity radiosensitization radiosensitize radiosensitizer radiosensitizing radiosity radiosondage radiosonde/MS radiostereometric radiosterilization radiosterilized radiostrontium radiosurgery radiosurgical radiotelegraphically radiotelemetry radioteletype radiotelex radiotherapeutic radiotherapeutically radiotherapist/MS radiotherapy/SM radiothermal radiothorium radiotoxic radiotoxicity radiotracer radish/SM radium/M radius/M radix/M radon/M radula radulae radular Rae/M Raelian/S Raes RAF raff raffia/M raffish/PY raffle/DSMG Raffo/M raft/RSDMG raftered rag/diGkMSDh raga/MS ragamuffin/SM ragbag/SM rage/eSMGD ragga ragged/P raggedy raglan/SM Ragnar/M Ragnarök ragout/SM rags-to-riches ragtag/M ragtime/M Ragusa ragweed ragworm ragwort/M Rahman/M Rahul/M raid/RGSDM Raikkonen rail's rail/CDSGJ railage railbed railbus/S railcar/S railcard/S railer/M railhead/MS railing/M raillery railless railman railmen railroad/SGD Railtrack/M railway/mSM railwayana raiment/MS rain-cloud/SM rain-maker/MS rain-making rain-shadow/SM rain/DMGSpZ rainbow/MS raincoat/SM raindrop/SM rainfall/SM rainforest/MS rainproof rainstorm/MS rainswept rainwater/M rainy/T Raipur raise/RGDS raisin/MS raison raison d'être Raith/M Raj/M rajah/MS Rajasthan rake/SGMD raker/M rakish/PY Raleigh/M Ralf rally/DSG rallycross Ralph/M ram/DSGM RAM/S Ramadan Ramalingam/M Ramayana ramble/kJDRSG rambly Rambo/M rambutan/S ramdisk/S Rameau ramekin/MS rami ramie/MS ramification/M ramify/nSDGN Ramirez/M ramjet/SM rammelly Ramona/M ramp/DMSG rampage/DSG rampancy rampant/Y rampart/SM Ramprakash ramrod/MS Ramsay/M Ramsbury/M Ramsden/M Ramses/M ramshackle ramus ran/Aec ranch/DRSGM Ranchi rancid/P rancidity/MS rancorous/Y rancour/M rand/2ZM Randi/M randkluft Randle/M Randolph/M random/qQ-8YP randomicity randomiser randy/T ranee/MS rang/RGDZ rangability range's range-amplitude range-taker range/SCGD rangeability rangefinder/S rangeful rangeland/S rangeless Rangoon/M rangy/T rank/PRYTJDGSM ranked/Ue ranking/M rankish rankism rankle/DSG rankless ranks/e rans ransack/GSD ransacker/M ransom/MdS ransomer ransomite ransomless ransomware rant/RGJSDk ranunculi ranunculus/S rap/d3RDGS rapacious/YP rapacity/M rape/SM3 rapeseed/M Raphael/M Raphaelite/SM rapid-fire rapid/YS rapidity/M rapidness rapier/MS rapine/MS Rappaport/M rappel/GDS rapping/M rapport/MS rapporteur/SM rapprochement/MS rapscallion/SM rapt/Y raptness raptor/S raptorial raptorially rapture/SM rapturous/PY Raquel/M rare/YGTP rarebit/MS rarefaction/MS rarefy/DGS rarity/MS rascal/YMS rascasse/S rash/SYTR rashness Rasmussen/M rasp/SGkZDM raspberry/MS rasper/M raspy/T Rastafarian/S Rastafarianism raster/MS rasterisation rasterise/SGDR rasterize/SGDRN rat-catcher rat/DdMRGSZ ratatouille ratbag/S ratchet/dSM rate's rate-cap/G rate/cDGS rateable ratepayer/SM rather ratify/SRNnDG rating/MS ratio/SM ratiocinate/DVGSNn ratiocination/M ration/MGD rational/s8-39Qq rationale/3MS rationalism/SM rationalist/W rationalities rationality/IM rationally/I ratline/MS Ratner/M rattail rattan/SM rattle/RGYJDS rattlesnake/MS rattletrap/MS rattly/T rattrap/SM ratty/T raucous/PY raunchiness raunchy/TY ravage/DRSG rave/RDSGJ ravel/UGDS raven/dSM ravenous/Y ravenousness Ravensbruck/M Ravenscroft/M Ravicher/M ravine/SMD ravioli/SM ravish/DRGLSk raw-boned raw/YTP rawhide/SM Rawiri Rawles/M ray/DMSG Rayleigh/M Raymond/M Raymondville/M rayon/M Raytheon/M raze/DSG razor-sharp razor/MS razorback/MS razorbills razorblades razorfish/S Razzie/M razzmatazz Rb Rd/M RDS re-adapt/SDG re-allocated re-deployed re-election re-eligibility re-emergence re-emission re-emphasize re-employ/7 re-employment re-enable/SGD re-enablement re-enact/SDG re-enactment/S re-enactor/S re-enforce/L re-engagement re-enlister re-enumerate/N re-equip/G re-establish re-evaluate re-experience re-export/7 re-form/N re-fund re-radiated re-release/DGS re-route/GSD re-routeing re-site/SDG re-soluble re-sort/G re/nxhoYJNi Rea/M reabsorb/G reabsorption reaccept/D reacceptance reach/eGcDS reachability reachable/U react/cSDG reactance reactant/SM reaction/cMS reactional reactionarily reactionariness reactionarism reactionary/MS reactionaryism reactionism reactivate/S reactive/NnU reactiveness reactivity read-only read/2JlRzGB readability/SM readapt/SGDN readd/SGD readdress/G reader/aM readerly readership/MS reading's reading/aS readjust/LG readme README readopt/G readout/MS reads/aA readvance ready-made ready/TSDPG reaffirm/GNn reafforest/N Reagan/M Reaganite/S reaggregate Reagle/M real-life real-time real/Tts3+9q-Q8Y realisable/U realise/l realised/U realism/SM realist/W1 realistic/UY reality/USM realize/l realized/U realm/SM realness realpolitik/M realtor's ream/RGDMS reanalyse/SGD reanalysis reap/RGS reapply/nNG reappoint/LG rear-view rear/DRMGS rearguard/MS rearm/GL rearmost rearrange/L rearrest/G rearward/S reascend/NG reason/rlp7dSM reasonability reasonable/U reasonableness/U reasonably/U reasoned/U reasoning's reasoning/U reassemble/Y reassert/G reassess/LG reassign/LG reassume/SGD reassumption reassuringly/U reattach/GL reattain/G reattempt/G reauthorise/n reauthorize/Nn reawaken/d Reba/M rebalance rebar rebase/SGD rebate/M Rebecca/M rebel/MSGD rebellion/MS rebellious/Y rebelliousness Reber/M rebid/G rebind/G rebirth/SGDR Rebney/M rebook/G rebottle/rSGD rebrand/SGD rebreathe/D rebreather/S rebroadcast/M rebuff/G rebuffer/Sd rebuild/GB rebuilder/S rebuke/DkSG rebuker rebuttal/SM recalcitrance/M recalcitrant recalculate recall/G7 recant/GNn recapture recast/G receipt/GMDS receivable/S receive/DRGS received/U receivership/SM recency/M recension/M recent/Y recentness recentre receptacle/SM reception/MS3 receptionism receptionist receptive/U receptively receptiveness receptivity receptor/SM recertify/N recess/GMNuSXDVv recession/y recessional/S recessive/PS rechartering recherché rechipping recidivism/SM recidivist/SM recipe/MS recipiency recipient/SM reciprocal/YS reciprocate/NnDGS reciprocation/M reciprocity/SM recirculate recital/3SM recitalist recitative/SM recite/R reckless/Y recklessness reckon/dS reckoner/SM reclaim/7 reclaimable/I reclamation/MS reclassify/DNGn recline/SDRG recluse/MSVN reclusion/M recognisable/U recognisably/U recognisance/S recognise/RBGDlS recognised/U recognize/RBGDlS recoil/p recollect/G recolour/GD recombinant/S recombinational recombinationally recombinationless recombinogenic recomforting recommand/SGD recommencer recommission/G recommit/LGNXD recommittal recompact/SGD recompare/SGD recompensable recompensate/SGD recompensation recompense/SDG recompilable recompile/Nn recompose/D recomposition recompress/SDGN recompute reconcilable/UI reconcile/7SGD reconciled/U reconcilement reconciler/MS recondite/PY recondition/G reconfigure/B reconnaissance/MS reconnect/GD reconnection reconnoitre/SDG reconsideration/M reconsign/G reconstructable reconstructed/U reconstructional reconstructionary reconstructive reconstructiveness reconstructor reconsult recontamination recontinuance recontinue reconvalescence reconvalescent reconvention reconverge reconversion reconvert/G reconvertible reconveyance reconvict/SGD reconviction reconvoke recopper recopy/G record-breaking record/RJ37 recordable/U recorded/AU recordist records/A recount/G recoup/DG recoupable recouperation recouple/SGD recoupment recourse recover/gdZ7 recoverable/UI recovery/S recreancy recreant/SY recreate/x recriminate/VSyGDnN recrimination/M recrudesce/DSG recrudescence/M recrudescent recruit/rdMLS recrystallize/Nn rectal/Y rectangle/MS rectangular/Y recti rectification/M rectify/GN7nDRS rectilinear/Y rectitude/M recto/SyM rector/SMF rectorate rectorial rectorship rectory/SM rectum/MS rectus recumbent/Y recuperate/SnNVGD recuperation/M recur/DGS recurrence/MS recurrent recurs/NXvV recurse/SGD recursion/M recursiveness recursivity/S recurving recusance/Z recusant/M recyclable/S recycle/7R red-blooded red-bloodedness red-eye red-faced red-handed red-head/MSD red-hot red-letter red-light red/PTSZ redact/GDS redaction/SM redactor/MS Redbeard/M redbreast/SM redbrick redbud/M redcap/SM Redcar/M Redcliffe/M redcoat/SM redcurrant/SM redden/dS Reddington/M reddish Reddit Redditch Redditor/S redeclare/N redecorate redeem/7R redeemable/UI redeemed/U redefinable redelivery/M redemption/SM redemptive redeploy/LG redeposition redesign/G redesignate/SGDN redetermine/ND redevelop/L Redfern/M redfish/S Redford/M Redgrave/M redhead/S Redhill redial/DG redimension/SGD redirect/G redirection redistributable redistributor/S redivide redlining Redmond/M redo/G redolence/M redolent Redondo/M redouble redoubt/l redound/GDS redox redraft/G redraw/G redress/G redrill/SGD redshank/S redskin/SM redstart/S reduce/SbDGRnNV reduced/U reducibility/MI reducible/YI reducibly/I reductant/S reductase reduction/M3 reductionism/M reductionist/W redundancy/MS redundant/Y reduplicative redwater redwing/S redwood/MS Reebok/M Reece/M reed/ZGDMS2 reeding/M Reedville/M reedy/PT reef/DMRSG reek/SDG reel/SRGDM reenergise/SGD reenergize/SGD Rees Reese/M reeve/SGM ref/M refactor/Sd refashion/G refection/M refectory/MS refer/RSDG7 referee/GdMS reference's reference/CDSG referenced/U referencing/U referenda referendum/SM referent/MS referential/Y referentiality referral/SM refigure/SGD refill/G7 refilm/SGD refine/LR refined/cU refire/SGD refit/GD reflate/N reflation/y reflect/GuvSVD reflectance/M reflection/SM reflectional reflectioning reflectionist reflectionless reflective/P reflectivity/M reflectogram/S reflectogramme reflectograph reflectographic reflectography reflectometer reflectometry reflector/MS reflex/Y reflexibility reflexible reflexional reflexive/I reflexively reflexiveness/M reflexives reflexivity/M reflexologist/S reflexology refloat/SGD refluence refluent refold/G reforest/nGN reform/BRnNVy3G reformat/DG reformatory/MS reformed/U reformism/M reformist refoulement refract/DyvGVS refractile refraction refractometer/WMS refractometry refractor/S refractoriness refrain/DGS reframe/SD refreeze refresh/DLGS7k refries refrigerant/SM refrigerate/NDSG refrigerated/U refrigeration/M refrigerator/MS refrigeratory refrozen refuel/DRG refuge/SM refugee/SM Refugio/M refulgence/M refulgent/Y refund/7 refurbishment/S refurnish/G refusal/SM refuse refusenik/S refuser/M refutability refutable/I refutation/M refutative refute/NDnRSG reg/o regal regale/DG regalement regalia/M regalism regalist/S Regan/M regard/ESGD regardant regardless regather/d regatta/SM regauge/SGD regelate/DN regency/MS regenerate/U reggae/SM Reggie/M regicide/SM regime/SM regimen/SM regiment/DMGnSN regimental/S regimentation/M Regina/M Reginald/M Regio/M region/oSM regional regionalise/Dn regionalism/MS regionalize/DN Regis/M register's register/KdNSn registered/U registrable registrant/S registrar/SM registrarship registration/MK registry/SM regnant regrade regress/XGVDvSuN regression/M regressive/P regret/GDj6S regretful/P regrettable/Y regrind/G reground regroup/G regrow/G regular/q8Q-YS regularity/IMS regularly/I regulars/I regulate/CNGSDny regulated/U regulation/M regulative regulator/MS regurgitate/DGSnN regurgitation/M rehab rehabilitate/DNVGSn rehabilitation/M rehang/G rehears/DG rehearsal/SM rehearsed/Uf rehearser/M reheat/G Rehnquist/M rehouse rehydratable rehydrate/N Reich/M Reid/M Reigate reign/SDGM reignition reiki Reiko/M Reilly/M reimagine/D reimbursable reimburse/GLDS reimportation reimposition rein/GDM reindeer/M reinduce/SGD reinflatable reinflate/SDGN reinforce/LDSG reinforced/U reinforcer/MS Reinhardt/M Reinhold/M reinitialise/n reinoculate reinstalment reinstitute/S reinstitution reinvent/G reinvest/G Reisinger/M reissue Reith/M reject/DRGSV rejectable rejectamenta rejection/SM rejectionist/S rejector/S rejoice/SJDGk rejoicer rejoin/G rejuvenant rejuvenate/SnNDG rejuvenator/S rejuvenatory rejuvenesce rejuvenise rejuvenize reknit relatability relatable relate/FnNvSVDG related/P relater/SM relation/MF relational/Y relationship/MS relative/SF relativeness/M relativism/M relativist/M1WS relativity/SM relax/GiDnkh relaxant/MS relaxation/M relaxed/P relay/GDM relearnt releasable released/U releasee/S releasor/S relent/pSDG relenting/U relentless/Y relentlessness relevance/MIZ relevancy/IMS relevant/IY reliability/UM reliable/U reliably/U reliance/M reliant/Y relic/MS relicense/SGD relict/MC relicts relief/MS relieve/SGDhR relieved/U relight/G religion/3SM religionist religiosity/M religious/PY reline relink/DG relinquish/GDLS reliquary/SM reliquiae relish/SDG relist/DG relit relive/S relleno/S reload/7G relock/G reluctance/SM reluctant/Y rely/BlWGD rem remain/GD remainder/dMS remand/SDG remanence remanent remap/GD remark/Gl7 remarkable/U remarkableness remarriage rematch Rembrandt/M remeasure remediable/I remedial remediate/N remedy/7SGMoD remelt/G remember/ad remembered/U rememberer/M remembrance/MS remind/G remineralisation remineralise/SGD remineralization remineralize/SGD Remington/M reminisce/DGS reminiscence/SM reminiscent/Y remiss/PV remit/GXNSD remitless remitment remittable remittal remittance/SM remittee remittent remitter/S remitting/U remnant/MS remobilise/B remobilize/B remodel/GD remonstrance remonstrant remonstrate/nDVNvSG remonstration/M remorse/pMj6 remorsefulness remorseless/YP remortgage/SGD remote/TY remoteness remould/G removable/I removal/SM remunerate/DSNnvVG remunerated/U remuneration/M remuster remustering remutation Remy/M remyelination remythologization remythologize/SGD Rena/M Renaissance's renaissance/S renal Renaldo/M renascence Renata/M Renate/M Renato/M Renault/SM rend/GS render/rdJS rendezvous/SDGM rendition/MS Rene/M Renee/M renegade/MS renege/RSDG renegue renew/D7G renewal/SM Renfrewshire/M Renick/M Renner/M rennet/M Rennie/M rennin/M Reno/M Renoir/M renounce/GDS renouncement renouncer/M renovate/DSNGn renovation/M renovator/MS renown/DM Rensselaer/M rent-free rent/DMRSG rental/MS renumber/d renunciant renunciation/SM renunciative renunciatory René reopen/d reorder/d reorg/S reorganizational reorganizationist reovirus rep/MS repackage/G repaint/G repair's/E repair/Rm7 repairability repairable/U repairs/E repaper/d reparation/SM reparse/SGD repartee/SM repartition/G repast repatriate/GnDNS repeat/BRDGh repeatability/M repeatable/U repeated/U repel/DNGSn repellent/SY repent/SDG repentance/MS repentant/UY repenter repercussion repertoire/SM repertory/SM repetitious/Y repetitiousness repetitive/Y repetitiveness rephotograph/G replace/L replaceable/I replay/M replenish/SDG replenisher replenishment/S replete/NP repletion/M replica/MS replicable replicate/DGS replicator/S replot/SGD reply-paid reply/NRnGV repo/S repoint/SGD repolarization repolish/SGD repopulate/N report/h7G reported/faU reporting/af reports/a repose/N6MX repository/SM repost/G reprehend/XGSND reprehensibility/M reprehensible/Y reprehension/M represent/anNGSD representable representation's/a representation/f representative's representative/U representatively representativeness representatives represented/fUc repress/NuvXV repression/M repressive/P reprieve/SDG reprimand/DSGM reprint/JM reprisal/SM reproach/kDS6G7j reproachable/I reproacher/M reproachful/P reprobate/GD reprocess/G7 reproduce/ubvV reproducibility's reproducibility/I reproducible/U reproducibly reprogram/GRD reprogrammable reprogramme reprographer/S reprographic reprography reproof/G reprove/k reprover reptile/MS Reptilia reptilian/S reptoid/S republic/nNS Republican republicanism/SM republish/G repudiate/NnSDG repudiation/M repudiator/S repugnance/M repugnant/Y repulse/Vuv repulsion/M repulsive/P repurpose/SGD reputability/M reputable/E reputably/E reputation/M repute/lhSBnND reputes/E repêchage requestion/G requiem/MS require/LGD requisite/SK requisition/GMDS requisitioner/M requital/SM requite/DS requited/U reread/7G rerecord/G reredos resaid resale/7 resample/SGD resanctification resanctify/SGD resat resave/SGD resay/SG reschedule rescind/GDS rescission/MS Rescorla/M rescue/RSGD reseal/7 research/M7G researched/U resect/DB resection/G resectional resectionist reseed/G reselect/7 reselection resemblant resemble/DSG resent/6LjDGS resentful/P resequence reserpine reservation/M reserve/nNih3 reserved/UY reservedness/M reservoir/MS reset/G resettle/L reshow/G reside/DG residence/MZS residency/SM resident/MS residential/Y residua/oy residual/S residue/SM residuum/M resign/inhN resignal/GD resignation/M resignationism resignationist resignee resignful resignment resile/SGD resilience/MZ resiliency/S resilient/Y resin/d resinlike resinous resiny resist/bSvDVG resistance/MS resistant resistible/YI resistibly/I resisting/U resistivity/M resistor/MS resit/G resite/SGD resituate/SGD resizer reskill/SGD reskin/SGD reslash/SGD reslush/SGD resmelt/SGD resmethrin resmile resmooth/SGD Resnick/M resolute/IY resoluteness resolution/IMS resolvability/M resolvable/IU resolve/B resolved/U resolvent resonance/SM resonant/Y resonate/DSG resonation resonator/SM resorb/SGD resorption/M resorptive resound/kG resource/6jp resourceful/P resourcelessness resow/G respecify/G respect/ED6GSMj respectability/MS respectable/Y respecter/S respectfulness respective/IY respell/G Respighi/M respiration/M respirator/SM respire/nNyG respirometer/S resplendence/M resplendency resplendent/Y respond/FGDS respondent/FSM responder/MS responsa response/bvVSuM responsibility/ISM responsible/PIY responsibly/I responsive/UY responsiveness/U responsivity responsor responsorial responsorially responsory/S responsum resprang respring/SG resprung ressentiment rest/6VjpvGuDMS restart/G restartless restaurant/MS restaurateur/SM restenosis restfulness restitution/SM restive/P restless/PY Reston/M restoration/M restorative/S restore/gRnVNv restrain/Gh restrained/UY restraint/MS restrict/SDvhuVG restrictable restricted/UY restriction/MS restroom/SM result/MDGS resultant/YS resume/GSNDX resumption/M resurface resurgence/SM resurgent resurrect/DSG resurrectable resurrection/SM resuscitate/nSVGDN resuscitation/M resuscitator/SM resuspend/SGDN resynchronise/n ret/SGD retable/S retablo/S retail/R retain/RSDG retake retaliate/SVynGDN retaliation/M retard/nRDGS retardant/SM retardation/M retarget/dSGD retask/SGD retch/SGD reteach/G retell/G retention/SM retentive/Y retentiveness rethink/G reticence reticent/Y reticle/MS reticular reticulary reticulate/SYGD reticulation/M reticule/NSMn reticuloendothelial reticulum/M retie retina/SM retinal retinitis retinol retinue/MS retinyl retinylidene retip/SGD retiral retire/kL retiree/S retirer/S retiré retort/DG retortion/SM retouch/R retract/DG retractile retranslate/SGD retranslation/S retread/D retreat/G retrench/L retribution/MS retributive retrievability retrievable/I retrieval/MS retrieve/RSGD retro retroact/SGD retroaction retroactive/Y retrocession retroelement/S retrofire/SM retrofit/GSD retroflex/DN retroflexion/M retrogradations retrograde/SDG retrogress/XDGSVNv retrogression/M retrorocket/MS retrospect/MvV retrospection/SM retrospective/S retrotransposon/S retrovirus/S retsina/MS retube retumble retumescence return/7 returned/U returnee/SM retweet/SGD Reuben/M reunion reupload/SGD Reuter/M Reuters rev/QsSDG revaccinate/SGDN revalorisation revalorization Revd. reveal/RSD7Gk revealing/U reveille/SM revel/nRJSDGyN revelation/SM revelatory revelry/SM revenant/S revenge/D6jSMG revenger/M Revenna reverb/S reverberant reverberantly reverberate/NDGSn reverberation/M reverberative reverberator reverberatory revere/SDG reverence/ISM reverenced reverencing reverend/SM reverent/YI reverential/Y reverie/MS reverify/NG reversal/MS reverse-charge reverse/GbY reverser/M reversibility's reversibility/I reversible/YI reversibly/I revert/DSGb reverter/M revet/LDG review/G reviewable reviewal revile/GRSLD Revill/M revisable revise/NX revision/3y revisionism/MS revisionist revisitation revitalise/Rn revival/3MS revivalism/MS revivalist revive/GSD reviver/M revivification/M revivify/n Revlon/M revocable/I revoke/DNGnRS revolt/DGk revolution/Q8My3S revolutionary/SM revolutionist revolvable revolve/RDJGS revue/SM revulsion/M reward/k rewarded/U rewarding/U rewarm/G rewed/GD rewind/7 rewire rework/7 rewound rewrap/SGD rewritable Rex/M Rey/M Reyes Reykjavik/M Reyna/M Reynaldo/M Reynold/SM Reztsov Rf RFC RFID RFU/M RGB Rh rhabdom/S rhabdome/S Rhadamanthus rhapsody/QSMwW rhea/MS Rhee/M Rheims/M Rheinholdt/M rheme/S rhenium/M rheology/w3M rheostat/MS rhesus rhetor/S rhetoric/MY rhetorical rhetorician/MS Rhett/M rheum/W1MZ rheumatic/SZ rheumatica rheumatism/SM rheumatoid rheumatological rheumatology/3 rheumy-eyed rheumy/T Rhine/M Rhineland/M Rhinelander/M rhinestone/MS rhinitis/M rhino/SM rhinoceros/SM rhinoplasty/SW rhinovirus/S rhizome/SM rhizosphere rho/M Rhoda/M Rhode/SM Rhodesia/M Rhodesian/S rhodium/M rhododendron/MS rhodophyte/S rhodopsin rhombencephalon rhombohedral rhomboid/MS rhomboidal rhombus/SWM Rhonda/M Rhondda/M Rhone Rhoten rhotic rhoticity rhubarb/SM Rhum/M rhyme/SRGDM rhymester/SM rhyolite Rhys/M rhythm/1MwSW rhythmite rial/MS rib/GDMS ribald/y ribaldry/SM ribbing/M ribbon/SM ribboned ribcage riboflavin/M ribonucleic ribosomal ribosome/M Rica/M Rican/SM Ricardo/M rice-paper rice/SM rich/PTSY Richard/MS Richardo/M Richardson/M Richelieu/M richen/d Richey/M Richfield/M Richie/M Richland/M Richmond/M Richmondshire Richter/M rick/GDMS Rickard/M rickets rickety/T Rickey/M Rickie/M rickshaw/MS Ricky/M Rico/M ricochet/dGDS ricotta/SM rid/rS7G riddance/M ridden/c riddle/DSMG ride/GCRS rideable Rideau/M rider's/ce rider/p riders/e rides/c ridge-pole/SM ridge-tile/SM ridge/DGSMZ Ridgefield/M Ridgewood/M Ridgway/M ridgy/T ridicule/SDMG ridiculer/M ridiculous/YP riding/M Ridley/M Riefenstahl/M Riegl/M Riemann/M Riesling/SM rife/T riff-raff/M riff/MS riffage riffle/DSG rifle-fire rifle/mGSMD riflescope/S rifling/M rift/DMGS rig/JDMRGS Riga/M rigatoni/M Rigby/M Rigel/M rigger/eSM rigging/M Riggs/M right-angled right-click right-hand/iD right-hander/S right-minded right-on right-thinking right-wing right-winger/S right/RP7DjG36SY righten righteous/UY righteousness's righteousness/U rightfulness rightish rightism/SM rightist rightmost righto rightward/S righty-ho rigid/Y rigidify/S rigidity/S rigmarole Rigoletto/M rigorous/Y rigorousness rigour/SM Riker/M rile/DSG Riley/M rill/SM rim/GpSDM Rimbaud/M rime/SM rimfire Rimington/M Rimkus/M Rinaldo/M rind/SDM Rinehart/M ring-fence/GD ring-pull ring/DRMG ringback ringbark/SGD ringbolt ringbone ringleader/SM ringlet/SM Ringling/M ringmaster/MS Ringo/M ringside/MRS ringtone/S ringworm/SM rink/MS rinse/GDS rinser Rio/SM Riordan/M riot/DRMGSJ riotous/PY rip-off/S rip-roaring/Y rip/DRGS riparian/S ripcord/SM ripe/YP ripen/dS riper Ripley/M Ripon/M riposte/DMSG ripping/Y ripple/GMYDS ripplet ripply/T ripsaw/SM ripstop RISC rise/bGJS risen risibility/M risk-neutral risk/GSZz2DM riskless risky/TP risotto/SM risperidone risqué rissole/SM Rita/M Ritalin Ritchie/M rite/SM Ritter/M ritual/QS8YM ritualism/M ritualistic/Y Ritz/M ritzy/T Riva/MS rival/SMyGD rivalled/U rivalry/SM rive/RGDS rived/C riven Rivera/M riverbank/MS riverbed/S riverboat/S riverine Rivermont/M riverside/SM Riverview/M rives/C Rivest-Shamir-Adleman Rivest/M rivet/drSMk Riviera/M riving/C Rivington rivulet/SM Riyadh/M riyal/SM Rizzio/M RJ45 RMI Rn/M RNA RNase roach/SM road-based road-hog/S road-test road/MSp roadbed/SM roadblock/SM roadhouse/SM roadie/S roadkill/S roadmap/SGD roadrunner/SM roadshow/S roadside/S roadster/MS roadway/SM roadwork/SM roadworthy roam/GDRS roan/S Roanoke/M roar/RkSDGJ Roarke/M roast/RGDSJ Rob's rob/GDRS Robb/MZ Robben robber/Z robbery/SM Robbie/M Robbins Robby/M robe/MDS Roberson/M Robert/SM Roberta/M Roberto/M Robertson/M robes/E Robespierre/M Robichaud/M Robillard/M robin/MS Robinette/M Robinson/M Robles/M robot/WQMS robotic/S robotically robotisation Robson/M robust/YPT Roby/M Robyn/M Rocco/M Rochdale Roche/M Rochelle/M Rochester/M Rochford/M rock-bottom rock-climber/S rock-climbing rock/RZ2DGSM rockabilly/M Rockaway/M Rockefeller/M rocker/Z rocket/dySM rocketeer/S rocketry/SM rockfall/S rockfish/S Rockford/M Rockhampton/M Rockies rocking-horse/SM Rockingham Rockland/M rockslide/S rocksteady Rockville/M Rockwell/M rockwork rocky/T rococo/M Rocque/M Roczek/M rod/SM Roddenberry/M rode/cF Rodeffer rodent/MS rodeo/MS Roderick/M Rodger/MS Rodinia Rodney/M Rodolfo/M Rodrigo/M Rodrigues/M Rodriguez/M Rodriquez/M Rodwell/M roe/MS roebuck/SM roentgen/MS Rogation rogation Rogelio/M roger Roger's Rogers Roget/M rogue/ySM roguery/MS roguish/YP Rohmer ROI roil/SGD roister/drS Rojas/M Roland/M role-play/GD role/MZS Rolf/M Rolfe/M roll-back/SM roll-call roll-off roll-on roll-out/S roll-over/S roll/GUSD Rolland/M rollback roller-coast roller-coaster roller-skate/GSDM roller/MS rollerball Rollerblade/S rollerblade/SGDR rollerman rollick/SGkD Rollin/MS rolling-pin/SM rolling-stock Rollo/M Rolodex Rolph/M roly-poly ROM/S Roma/M Roman/SM3 romance/RSDMG Romanesque Romania/M Romanian/MS Romanic romanise/nSDG romanize/SGnND Romano/M Romanov/M Romansh/M romantic/8Q3MYS romanticism/MS romanticist Romany/M3 Romberg/M rombowline romcom/S Rome/M Romeo/MS Romero/M Romina/M Rommel/M Romney/M romp/RGSD Romsey/M Romulus/M Ron/MZ Rona/M Ronald/M Ronan Ronda/M rondel/S rondo/SM Ronnie/M Ronny/M Rontgen rood/MS roof-garden roof/RpDGSM roofing/M roofline/S rooftop/S rooibos rooinek/S rook/MS rookery/MS rookie/SM room-mate/MS room/Z6M2S roomful/SM roomy/PT Rooney/M Roosevelt/M roost/SMRDG roosterfish root-mean-square root/RipDMGS rootkit/S rootlessness rootlet/MS rootstock/MS rootsy/T rootworm/S rooty rope/GRD7SM ropemaker ropemanship ropesight ropework ropey Roquefort/M Rorke/M rorqual/S Rorschach/M Rory/M Rosa/M rosacea Rosales/M Rosalie/M Rosalind/M Rosalyn/M Rosamond/M Rosanna/M rosaria Rosario/M rosarium/S rosary/SM Roscoe/M Roscommon/M rose-coloured rose-red rose-tinted rose/SZyM Roseanne/M roseate Roseau/M rosebay Rosebery/M rosebud/SM rosebush/MS rosefinch/S Roseland/M Rosella/M Roselle/M Rosemarie/M rosemary/M Rosemonde/M Rosemont Rosen/M Rosenallis Rosenbaum/M Rosenberg/M Rosencrantz/M Rosenthal/M Rosetta/M rosette/SMD rosewater rosewood/MS Roshi/S Rosicrucian/M Rosie/M rosin/dSM Rosina/M Roslyn/M Ross Rossendale/M Rossetti/M Rossi/M Rossini/M Rosslyn/M roster/MSd Rostov/M rostra rostral/Y rostro-caudal rostrocaudally rostroid rostrum/SM rosulate Roswell/M rosy/PYT Rosyth/M rosé rot-gut/M rot/NnDSG rota/yvSVM Rotarian/SM rotary/S rotatable rotatably rotate/SxGDy rotation/M rotator/MS Rotavator/SM rotavirus/S rote/M Roth/M Rotherham/M Rothermere/M Rothschild/M Rothstein/M rotifer/S rotisserie/SM rotogravure/SM rotor/SM rotten/Y rottener rottenest rottenness rotter/MS Rotterdam/M Rottweiler/S rotund/Y rotunda/SM rotundity/S rouble/SM rouge/SGDM rouget/S rough-and-ready rough-hewn rough/GSDPTY roughage/SM roughcast roughen/dS roughish roughneck/SM roughshod roulade/S roulette/M round-arm round-shouldered round-the-clock round-up round/TRYPDSiG roundabout/SM rounded/P roundel/S roundelay/SM Roundhead/MS roundhouse/SM roundish roundworm/MS Rourke/M Rousay/M rouse/SDG rouser/M Rousseau/M roust/GDS roustabout/MS rout/RGDJ route's route/aDSA routeing/A routine/PQSYM routing/M routinism routinist/S Routledge/M roué/MS rove/RGDS Roveri row/DRMSG Rowan/M rowan/S rowdy/PTSY rowdyism/SM Rowe/M rowel/MGDS Rowell/M Rowena/M rowing-boat/MS Rowland/M Rowley/M rowlock/S Rowntree/M Roxanne/M Roxie/M Roy/M royal/3SY royalism royalist royalty/SM Royce/M RP RPG/S RPI rpm RPO RRP Rs. RSA/M RSC RSI RSM RSPCA RSS RSV RSVP rt rt. Rt. rte RTF RTFM RTL RU Ru/M Ruaridh rub-a-dub rub/SRGD rubati rubato/SM rubber-stamp/DG rubber/QZ rubberneck/DRGSM rubbery/T rubbing/M rubbish/SGDZM rubble/M rubbled rubbler rubby-dubby rubdown/SM Rube/M rubedinous rubefacient rubella rubelliform Ruben/MS rubescent Rubicon/M rubicund rubidium/M rubifacient Rubik/M Rubin/M Rubinstein/M rubout rubric/MS ruby/SM ruche/SDG ruck/M rucksack/SM ruckus ruction/SM Rudd/M rudder/pMS Ruddock/M ruddy/PT rude/TYP rudiment/SM rudimental rudimentary Rudman/M Rudolf/M Rudolph/M Rudy/M Rudyard/M rue/Gj6SD Rueda/M ruefulness ruff/SGDM ruffian/SM ruffle/DGS ruffled/U rufous Rufus/M rug/hSMDi Rugby's rugby/M Ruggiero/M Ruggles/M Ruhr/M Rui/M ruin/dMNSn ruination/M ruinous/Y Ruiz/M rule's rule/cSaGD rulebook/S ruled/U rulemaking ruler/SM ruling/SM rum/ZMS Rumania's Rumanian/M rumba/DMSG rumble/SGDJ rumbowline rumbustious rumen/MS Rumford/M ruminant/SM ruminate/DGvNSnV rummage/GDS rummager/M rummer rummy/TM rumour/DGSM rumourmonger/MS rump/MYS rumple/SGD rumply/T rumpus/SM Rumsfeld/M rumule run-down/M run-in/S run-of-the-mill run-off/MS run-out/S run-through run-up/S run/eGScA runabout/MS Runamia runaround runaway/S Runcorn/M Rundle/M rundown rune/MSW rung/SM runlet/MS runnable runnel/SM runner-up runner/SM runners-up runny/T Runnymede/M runt/MZS runtime runty/T runway/SM Runyon/M rupee/MS Rupert/M rupiah/SM Ruppelt/M rupture/GMDS rural/Y rurality ruse/SM rush-hour rush/RDZGS Rushdie Rushmore/M rushy/T rusk/MS Ruskin/M Russ Russell/M russet/MS Russia/M Russian/SM Russo/M rust/SWZG1D2M Rustbelt/M rustic/S rusticate/SGD rustication/M rusticity/S rustle/SGRD rustproof/GD rustre/MS rusty/NPTn rut/SGMZD rutabaga/SM Rutgers Ruth/M Ruthann/M Ruthenian/S ruthenium/M Rutherford/M rutherfordium/M Ruthie/M ruthless/PY rutile Rutland/M Rutledge/M Rutter/M Ruttloff rutty/T Ruud/M Rux/M RV Rwanda/M Rwandan/S Rwandese Ryan/M Ryanair/M Ryder/M rye/MS Ryedale ryegrass Ryukyu/M régime/MS Régis/M résumé/S Réunion/M rôle/MS S-VHS s/ko7 SA Sa Saab/M Saar/M Saavedra/M sabadilla Sabbath/MS sabbatical/S Sabin/M Sabina/M Sabine/M sable/MS sabot sabotage/SDG saboteur/SM sabra/S sabre-toothed sabre/SMD sabretooth Sabrina/M sac-like sac/DGS saccharide/S saccharin saccharine saccular sacculated sacculation saccule/S sacculus sacerdotal sachem/S sachet/SM Sachs/M sack/M6JS sackcloth/M sacker Sackett/M sackful/S sacking/M sacra/L sacral sacramental Sacramento/M sacred/Y sacredness sacrifice/GDSoM sacrificial sacrilege/MS sacrilegious/Y sacristan/SM sacristy/SM Sacrobosco/M sacroiliac/S sacrosanct sacrum/M sad/T3PY Sadat/M Saddam/M sadden/dS saddle's saddle/GUDS saddleback/SD saddlebag/MS saddler/MS saddlery/S Sadducean Sadducee/SM Sadhasivam/M Sadie/M sadism/SM sadist/1W sadness/S sadomasochism/SM sadomasochist/WMS Sadovsky/M SAE safari/SM safe/YU safeguard/GSDM safekeeping safeness safer safes safest safety/SM safflower/SM saffron/M sag/GDSZ saga/SM sagacious/Y sagaciousness sagacity Sagan/M sage/KMS sagebrush/MS sagely sageness saggy/T Saginaw/M sagittal/Y Sagittarius/M sago/SM saguaro/MS sahara Sahara/M Saharan/M sahib/SM said/U Saigon/M sail/MDSJG sailboard/SG sailboarder/S sailborder's sailborders sailcloth/M sailfish/MS sailing-boat/SM sailing-master/SM sailing-ship/SM sailing-vessel sailor/MSY sailplane/S Saint-Denis/M Saint-Tropez/M saint/YDSM sainthood/SM saintlike saintliness saintly/T Sakai/M sake/S saker/M Sakhalin/M saki's Sal/M salaam/M salacious/Y salaciousness salacity/M salad/SM salamander/SM salami/MS salary/DMS salaryman salarymen Salas/M Salazar/M sale's/A sale/BMm5S saleability/M saleable/U Salem/M Salerno/M saleroom/MS salesclerk salesgirl/SM saleslady/S salesmanship salespeople/M salesperson/SM Salford/M salicylic salience/ZM salient/Y Salina/MS saline Salinger/M salinity/SM Salisbury/M saliva/My salivate/NDSG Salk/M Salla/M Salle/M Sallie/M sallow/T sallowness sally/DMSG Sallyanne/M salmon/MS salmonella/M salmonellae Salo Salome/M Salomon/M salon/MS saloon/SM salsa/MS salsify/M salt's salt-and-pepper salt-cat salt-cellar/SM salt-marsh/M salt-mashes salt-pan/MS salt-spoon/MS salt/CSDG salted/U salter/SM saltimbocca saltiness saltings saltish saltless Saltley saltly saltness saltpetre saltwater saltwort salty/T salubrious/Y salubriousness salubrity/M saluki/S salutary salutation/M salutatory salute/SnGND saluter/M Salvador/M Salvadoran/S Salvadorean/SM Salvadorian/SM salvage/GMDS salvageable salvager/M Salvarsan salvation/M salvationism salvationist Salvationist/S Salvatore/M salve/RMSNnG salvific salvo/M salvoes Salzburg/M Sam/ZM Samael/M Samantha/M Samara/M samara/S Samaria/M Samaritan/SM samarium/M Samarra/M samba/SMGD same sameness samizdat Sammamish/M Sammie/M Sammy/M Samoa/M Samoan/S samovar/MS Samoyed/M sampan/MS sample/DRSGMJ sampled/c sampling/c Sampras Sampson/M Samson/M Samsonite/M Samsung/M Samuel/SM Samuelson/M samurai/M San/M Sana'a/M Sananda sanatorium/SM Sanborn/M Sanchez/M sanctification/M sanctifier/M sanctify/nGDNS sanctimonious/Y sanctimoniousness sanctimony/SM sanction/GDSM sanctioned/U sanctity/SM sanctuary/MS sanctum/SM sand/ZMDG2S sandal/GMDS sandalwood/M sandbag/SMDG sandbagger/S sandbank/MS sandbar/S Sandberg/M sandblast/GDSR sandbox/MSGD Sandburg/M sandcastle/S Sander's sander/S sanderling/S Sanderson/M sandfly/S Sandhill/M sandhill/S Sandhurst/M Sandi/M Sandinista/S sandman/M sandmen/M Sandoval/M sandpaper/MdS sandpiper/SM sandpit/SM Sandra/M sandstone/SM sandstorm/SM Sandusky/M Sandwell/M sandwich/MSDG sandy/T sane/YT sanely/I saneness Sanford/M sang sang-froid Sanger/M sangfroid Sangiovese sangria/MS sanguinary sanguine/Y sanguineness sanguineous/F Sanhedrin/M sanitary/UI sanitation sanitisation sanitise/RGDS sanitize/RGDSN sanity/ISM sank Sankara/M Sankhya/M sans sanserif Sanskrit/MW Sanskritise/M Sanskritist/S Sansovino/M Santa/M Santana/M Santander/M Santell/M Santiago/M Santo/SM santolina/S sap/DMRZG2pS saphenous sapience/M sapiens sapient sapling/MS sapodilla/S sapphic/S sapphire/MS sapphism sappily Sapporo/M sappy/T saprogenic saprophyte/MSW sapwood/M Sara/M Saracen/SM Sarah/M Sarajevo/M Saran/M Sarasota/M Saratoga/M Saravanan/M Sarawak/M sarcasm/MS sarcastic/Y sarcoid/S sarcoidosis sarcoma/MS sarcophagi sarcophagus/M sardine/MS Sardinia/M Sardinian/SM sardonic/Y Sargasso/M sargassum Sargent/M Sargon/M sari/MS Sarmatia Sarmatian sarong/SM Sarpedon sarsaparilla/MS sartorial/Y sartorius Sartre/M Sarum/M SAS SASE sash/MDS Sasha/M Saskatchewan/M Saskatoon/M sassafras Sassoon/M sassy/TYP sat/d SATA/M Satan/SM31 satanic/Y satanise/SD Satanism/M Satanist satanize/SD satay Satch/M satchel/SM sate/S sateen/M satellite/SM satiable/I satiate/GnDSN satiation/M satiety/MS satin/SM satinwood/SM satiny satire/WQ8wM1S3 satisfaction/SEM satisfactoriness satisfactory/YU satisfied/EU satisfies/E satisfy/BDkRSG satisfying/UE Sato satori/M Satoshi/M satrap/MS satrapy/S Satsuma satsuma/S saturate/CnSGND saturated/U Saturday/SM Saturn/M saturnalia Saturnalia's saturnalian Saturnian saturnine/Y Satya/M satyr/SMW satyriasis/M Sauber/M sauce/SGMZ2 saucepan/SM saucer/S saucy/TY Saudi/SM sauerkraut/SM Saughton Saukville/M Saul/M sauna/MS Saunders Saunderson/M Saundra/M saunter/dS saunterer saurian/S sauropod/SM sausage/SM Sauternes sauté/SGD savable savage/DPSYGy savagery/SM Savannah's savannah/M savant/SM save/SGRJD saved/U saveloy/M Saville/M Savimbi/M saviour/SM savoir savour/ZD2SGM savouries savoury's savoury/U savoy/SM Savoyard/M savvy/DGST saw-horse saw-pit saw/DGMS sawbones/M sawdust/M sawfish/S sawfly/MS sawlike sawlog/S sawmill/SM sawn sawn-off sawtooth sawyer/MS sax/SM saxhorn/S saxifrage/SM Saxon/MS Saxony/M saxophone/MS3 Saxton/M say-so say/RGJS saying/M Sayre/M Sb/M SBA Sc/M scab/2GMZSD scabbard/MS scabby/T scabies/M scablands scabrous/Y scabrousness scad/M SCADA/M scaffold/JGSM scaffolding/M Scala/M scalability scalable scalar/MS scald/GSD scalder scale/pDAGSM scaleable scaled/U scalene scaler/SM scaliness scallion/MS scallop/dSM scalloper/M scallywag/SM scalp/RSMDG scalpel/MS scaly/T scam/MDGS scammer/S scamp scamper/Sd scampi/M scan/ADSG scandal/SMQ8 scandalmonger/MS scandalous/Y scandalousness Scandinavia/M Scandinavian/S scandium/M Scannell/M scanner/SM scans/NX scansion/M scant/2zZY scantness scanty/T scape/M scapegoat/SGDM scapegrace/MS scaphocephaly scaphoid scapula/M scapulae scapular/S scar/dDSGM scarab/SM Scaramouch/M Scarborough/M scarce/YT scarceness scarcity/SM scare/S2Z scarecrow/MS scaremonger/SM scaremongering scarer/M scareware scarf/DM Scargill scarification/M scarifier scarify/NGDS scarlatina/M Scarlatti/M scarlet/M Scarlett/M scarp/DGSM SCART Scart scarves scary/TY scat/DGS scathe/GkD scathed/U scatology/wM scatter/rSkJd scatterbrain/MDS scattergun scattering/M scattershot scatty/TYP scavenge/RDGS SCCS scenario/MS scenarist/MS scene/1MSWy scenery/SM scenographic scenography Scenopegia scent/CMDGS scented/U scentless sceptic/YMS sceptical scepticism/MS sceptre/SD sch. Schaefer/M Schaeffer/M Schafer/M Schaff/M schedule/RDMGS scheduled/UA schedules/A scheduling/A Scheherazade/M schema/S1M schemata schematic/S schematisation schematise/SGD schematize/SGDN scheme/SDRWGM Schenectady/M Schenk/M scherzi scherzo/SM Schick/M Schild/M Schiller/M schilling/SM Schinas/M schism/MS schismatic schist/SM schizo-affective schizo/S schizocarp schizoid/S schizophrenia/M schizophrenic/SY Schlemiel/M schlep/GDS Schlitz/M Schloss/M Schmidt/M Schmitt/M schmooze schnapps schnauzer/MS Schneider/M Schneier/M schnitzel/SM Schnorr/M Schoenberg/M Schofield/M Schoharie scholar/SYM scholarliness scholarship/MS scholastic/SY scholasticism school-age school-day/S school-inspector school-leaver/MS school-leaving school-time school/GMDJS schoolbook/MS schoolboy/SM schoolchild/M schoolchildren schooldays schooled/U schoolfellow/S schoolfriend/S schoolgirl/SM schoolgirlish schoolhouse/SM schooling/M schoolkid/S schoolmarm schoolmaster/SMYd schoolmate/S schoolmistress/SM schoolroom/MS schools/K schoolteacher/SM schoolteaching schoolwork schooner/SM Schopenhauer/M Schottky/M Schratt schrod Schroeder/M Schroedinger/M Schrödinger/M Schubert/M Schulman/M Schultz/M Schulz/M Schumacher/M Schumann/M schuss/M Schuster/M Schutte/M Schuyler/M Schuylkill/M schwa/MS Schwab/M Schwartz/M Schwartzkopf/M Schwarzenegger/M Schweitzer/M Schweppes/M sci-fi sciatic sciatica/M science's/FK science/M3SW sciences/FK scientific/UY scientism scientistic Scientologist/S Scientology/M scilla/S Scilly/M scimitar/SM scintigram/S scintilla/nM scintillate/SDG scintillatingly scintillation/M scion/SM Scipio/M scission/S scissor/S scissoring sclerite/S scleroderma scleroses sclerosis/M sclerotherapy sclerotic sclerotisation sclerotised sclerotization sclerotized scoff/RGDS scold/DRJSG scoliosis scombroid/S sconce/MS scone/SM Scooby/M scoop/MGS6RD scoopful/S scoot/RSDG scope/SMGD scopolamine scorbutic scorch/RSkGD score's score/eDfGS scoreboard/MS scorecard/SM scorekeeper/SM scorekeeping scoreless scoreline/S scorer/SM Scoresby/M scorn/jDRMG6S scornfulness Scorpio/MS scorpion/MS scorpionfish/S scorzonera scot scot-free Scot/M5Sm scotch/SMDG Scotia/M Scotland/M scotopic scotoscope Scott/M Scottie/SM Scottish Scottsdale/M Scotty/M scoundrel/YSM scour/SDRG scourge/SDMG scourger/M scout/MGDS scouter/M scouting/M scoutmaster/SM scowl/GSD SCOWL/M scowler/M Scrabble's scrabble/SGD scrag-end scrag/GMZSD scraggly/T scraggy/T scram/GDS scramble/UGCSD scrambler/UMC scramblers/C scramjet/S Scranton/M scrap/rDRGdZS scrapbook/MS scrape/SJ scrapheap/SM scrapie scrappy/T scrapyard/SM scratch/D2zJZRSG scratched/U scratchy/T scrawl/SDGY scrawly/T scrawniness scrawny/T scream/kRGSD scree/M screech/SZDMG screecher/M screechy/T screed/SM screen/GJSMDB6 screened/U screener/S screenfuls screening/M screenname/S screenplay/MS screenshot/S screenwriter/SM screw/MZS2GD screwball/SR screwdriver/MS screwed/U screwer/M screws/U screwy/T Scriabin/M scribble/RSGDJ scribe's scribe/IDSGCK scriber/IMKC Scribner/M scrim/SM scrimmage/MGSD scrimmager/M scrimp/GSD scrimshaw/GSMD scrip/M Scripps/M script/SKMFA scriptable scripted/FU scripting/F scriptoria scriptorium/S scriptural scripture/oSM scriptwriter/MS scriptwriting/M scrivener/MS scrofula/M scrofulous scroll/G7MSD scrollback scrollbar/SM scroller/S scrollwork Scrooge/SM scrota scrotal scrotum/M scrounge/SDGR scrub/RGDZS scrubbier scrubfowl scrubland/S scruff/2ZSMz scruffy/T Scruggs/M scrum-half scrum/MS scrummage/DMGS scrumptious/Y scrumpy scrunch/GSD scrunchie/S scrunchy/T scruple/DMSG scrupulosity/SM scrupulous/YU scrupulousness/M scrutineer/S scrutinised/U scrutiny/SsQ98Mq- Scrutton/M SCSI scuba/SM scud/SDG Scudamore/M Scudder/M scuff/DGS scuffle/DGS scull/DRMSG sculler/Z scullery/SM Sculley/M scullion/SM sculpt/DSG sculptor/SM sculptress/MS sculptural sculpture/GDoSM sculpturesque scum/ZDMG scumbag/S scummy/T Scunthorpe/M scupper/MS scuppered scurf/ZM scurfy/T scurrility/MS scurrilous/YP scurry/DGSJ scurvy/SY scuta scutch/SGDR scute/S scutella scutellar scutellum scuttle/MGDS scuttlebutt/MS Scutum scutum scuzzy/TP Scylla/M scyphistoma/S scyphistomae scyphistomal Scyphozoa scyphozoan scythe/GSMD Scythia Scythian/S SD SDI SDK/SM SDRAM Se Sea sea's sea-chest sea-girt sea-green sea/cS seabed seabird/S seaboard/M seaborne Seabrook/M seafarer/SM seafaring/S seafood/M seafront/SM Seagate/M Seager/M seagoing Seagram/M seagrass/S seagull/S seahawk/S seahorse/S seal's seal/DUAGS sealant/SM sealer/MS sealless sealskin seam/MDGSZp seaman/YM seamanship/M seamen/M seamer/MS seamfree seamier seamless/Y seamlessness SeaMonkey/M seamount/S seamstress/MS Seamus/M Sean/M seance/S seaplane/SM seaport/MS seaquake/M sear/GSDk search/BRDJkSG searchable/U searched/A searcher/AMS searches/A searchlight/SM Sears's seascape/SM seashell/SM seashore/SM seasick/P seaside/M season/dlS7Mo seasonable/U seasonableness/U seasonably/U seasonal/UY seasonality seasoned/U seasoning/M seat's seat/UGDSA seatbelt/S seater/M SEATO Seattle/M seawall/S seaward/S seawater/S seaway/MS seaweed/SM seaworthiness seaworthy/U Seb/M sebaceous Sebastian/M seborrhoea/W sec. sec/S SECAM secant/MS secateurs secede/SGD seceder secession/M3S secessionist seclude/GNXSVD seclusion/M second-best second-class second-degree second-hand second-rate second/RGLSYD secondariness secondary/Y secondee/S secrecy/SM secret/dVSYvu secretarial secretariat/SM secretary/MS secretaryship/SM secrete/SNn secretion/M secretor/S secretory sect's/I sect/ISE sectarian/S sectarianism/MS sectary/SM section's/E section/GMDSo sectional/Q8S sectionalism/SM sectioned/A sections/EA sector/EMS sectoral sectored sectorial secular/Q3-8qY secularism/MS secularist secularity/M SecurDisc secure/PLBSYDG secured/U securely/I securer security/SMI sedan/SM sedate/YVGnSND sedateness sedation/M sedative/S sedentary Seder/MS sedge/SMZ Sedgefield/M Sedgemoor/M Sedgwick/M sedgy/T sediment/SnNM sedimentary sedimentation/M sedition/SM seditious/Y seditiousness seduce/RDNVvuGSn seduction/M seductive/P seductress/MS sedulous/Y sedum/S see-saw/DSMG see-through see/S98dG seed-bed/SM seed-cord seed-potato seed-vessel seed/MD2GSRZp seedbed/MS seedeater/SM seeded/UA seedling/SM seeds/A seedy/TP Seeger/M seeing/Uc seek/GRS Seeley/M seem/YSkGD seemliness/U seemly/TP seen/Uc seep/GSD seepage/SM seer/cSM seersucker/SM sees/c seethe/SDG segment/GonNMSD segmental segmentation/M segmented/U Segovia/M segregable segregate/CNDSGn segregated/U segregation's/C segregation/3M segregationist segregative segue/DSG Segundo/M Seidel/M seigeury/S seigneur/MS seigneurial seignior/SZM seigniorage seigniorial seigniory/S Seiko/M seine/MG Seinfeld/M seisin seismal seismic/Y seismical seismogram seismograph/RSMWZ seismography/M seismology/M3w1 seismometer/S seizable seizure/SM Selassie/M Selby/M seldom select/KSGCDA selectable selection/SoM selectional selective/Y selectiveness selectivity/M selector/MS Selena/M selenate/S Selene/M selenide/S selenite/M selenium/M selenographer/MS selenography/M selenology/3 Seleucid/M self-abasement self-absorbed self-absorption self-abuse self-addressed self-adhesive self-analysis self-appointed self-approval self-assembly self-assertion self-assertive self-assurance self-assured self-aware self-awareness self-catering self-censorship self-centred self-cleaning self-closing self-command self-confessed self-confidence self-confident/Y self-congratulation self-congratulatory self-conscious/YP self-consistency self-consistent self-contained self-contradiction self-contradictory self-control self-correcting self-critical self-criticism self-deceit self-deception self-defeating self-defence self-delusion self-denial self-denying self-deprecating self-destruct/DVGS self-destruction self-determination self-determined self-discipline self-doubt self-effacing self-employed self-esteem self-evidence self-evident/Y self-examination self-explanatory self-expression self-feeding self-financing self-fulfilling self-fulfilment self-glorification self-governing self-government self-hate self-hatred self-help self-image self-immolation self-importance self-important self-imposed self-improvement self-induced self-indulgence self-indulgent self-inflicted self-interest/D self-involved self-justification self-justifying self-knowledge self-loading self-locking self-love self-made self-motivated self-opinionated self-parody self-perpetuating self-pity self-pollination self-portrait/S self-possessed self-possession self-preservation self-proclaimed self-propagating self-propelled self-protection self-raising self-recording self-referential self-regard self-regulating self-regulation self-regulatory self-reliance self-reliant self-respect/G self-restrained self-restraint self-revelation self-righteous/Y self-righteousness self-sacrifice/G self-satisfaction self-satisfied self-seeker/S self-seeking self-selecting self-service self-serving self-styled self-sufficiency self-sufficient self-support/G self-surrender self-sustained self-sustaining self-tapping self-taught self-torture self-willed self-winding self-worth self/pGD selfhood selfie/S selfish/UY selfishness/U selfism selfist/S selfless/Y selflessness selfmate selfness Selfridge/M selfsame selfsameness selfy Seljuk/M Selkirk/M sell-by sell-off sell-out sell/ASceGf Sellafield seller/AMS Selma/M seltzer/S selvage/SM selvedge/MS selves Selwyn/M semantic/3SY semanticist semaphore/DSMG semblance/AMES semeiology/3 semeiotic/S semeiotician semelparous semen/M semester/SM semi-annual/Y semi-automatic semi-classical semi-conscious semi-conservative semi-detached semi-documentary/S semi-double semi-duplex semi-final/S semi-finalist/S semi-flexible semi-fluid semi-independent semi-infinite semi-invalid semi-lethal semi-liquid/S semi-literacy semi-literate semi-modal semi-monthly semi-official/Y semi-opera/S semi-permanent/Y semi-permeable semi-precious semi-professional/SY semi-retired semi-retirement semi-rigid semi-skilled semi-skimmed semi-solid semi-tone/MS semi-trailer semi-weekly semi-yearly semi/MS semiaquatic semiarid semibold semibreve/S semicircle/SM semicircular semicolon/MS semiconducting semiconductor/SM semideaf semidemisemiquaver semierect semifeudal semifinal/3MS semifinalist semiformal semilethal semilunar semimajor semimetal/SW seminal/Y seminar/MS seminarian/MS seminary/SM seminatural seminiferous Seminole/SM semiochemical/S semiological semiology/3 semiosis semiotic/S semiotician semioval semipermeable semiprecious semiprime/S semiprivate semiquaver/S semiquinone/S semiraw semirural semisweet Semite/WSM Semitic/SM Semitism/M semitone/MS semitransparent semitropical semivocal semivowel semiweak semiweekly semolina/M sempiternal/Y sempiternity semplice sempre sempstress/MS Semtex Sen. senary senate/SM senator/MS senatorial send-off/S send/ASG Sendai/M sender/SM Seneca/M Senegal/M Senegalese senescence/M senescent senile senility/SM senior/SM seniority/SM senna/M Sennacherib/M Sennett/M sennit sensate/x sensation/M sensational/Q83 sensationalism/MS sensationalist/W sense/DGnSpMb sensei/S senseless/Y senselessness sensibility/IMS sensible/IY sensibleness sensibly/I sensilla sensillum sensitise/GRnDS sensitised/C sensitises/C sensitising/C sensitive/IY sensitiveness sensitivity/IMS sensitize/GRNnDS sensitized/C sensitizes/C sensitizing/C sensor/SM sensorimotor sensorineural sensory/Y sensual/FY sensualist/MS sensuality/MS sensuous/Y sensuousness sent/FEKUA sentence/MGDS sentential sententious/Y sentience/IM sentient/I sentiently sentiment/SKM sentimental/Q3-8qYs9 sentimentalism/MS sentimentalist sentimentality/SM sentinel/DGSM sentry/SM SEO Seoul/M Sep sepal/SM separability/I separable/IY separableness separably/I separate/B3nSGDVYN separateness separation/M separatism/MS separator/MS Sephardic sepia/SM Sepoy's sepoy/S Seppo/M sepses sepsis sept/NWM septa/M septal septaria septarian septarium septate September/SM septenary septennial/Y septet/SM septicaemia septicaemic septically septicity septics septillion/HS septuagenarian/SM Septuagint/MS septum/M sepulchral sepulchre/SoM sepulture seq. seqq. sequacious/Y sequacity sequel/MS sequela sequelae sequence's/F sequence/RSMGD sequenced/A sequences/FA sequencing/A sequent/F sequential/FY sequentiality/F sequester/dSnN sequestrate/BSDG sequestration/M sequestrator sequin/MSD sequitur/S sequoia/SM Sequoya/M sera's Serafin/M seraglio/SM serape/S seraph/W1SM seraphim/M Serb/MS Serbia/M Serbian/S Serbo-Croat Serbo-Croatian sere Serena/M serenade/DMGS serenader/M serendipitous/Y serendipity/MS serene/TY Serengeti/M Serenity/M serenity/S serf/SM serfdom/SM serge/M sergeant/MS serger/S Sergio/M Seri/M serial/qQ-8SY serialism serialist/S sericite series/M serif/SDM serigraph/MS serine serious/Y seriousness Serlio/M sermon/Q8SM serogroup serology/w1M seronegative seronegativity seropositive seropositivity seroprevalence serotonergic serotonin serotype/S serotypic serous Serpens serpent/SM serpentine serpiginous Serrano/M serrate/NnD serration/M serratus serried serum/MS servant/SM serve/AGCSKDF server/CKSM servery/S service/mB5DMSG serviceability/M serviceable/U serviceableness serviceably serviced/U services/E serviette/SM servile/Y servility/MS serving's serving/CS servitor/SM servitude/SM servo/S servomechanism/MS servomotor/MS sesame/SM Sesotho sesquicentennial/S sessile session/MS sestina/S set-aside set-up/S set/eMS seta setaceous setae setal setback/S Seth/M SETI setiferous setigerous Seton/M sets/AI Setswana sett/7RJMDSG settable/A settee/MS setting/K settle/RLGSD settled/UA settles/UA settling/UA setup Seuss/M Sevastopol/M seven/HMS Sevenoaks seventeen/H seventhly seventy-eight/H seventy-first/S seventy-five/H seventy-four/H seventy-nine/H seventy-one seventy-onefold seventy-second/S seventy-seven/H seventy-six/H seventy-three/H seventy-two seventy-twofold seventy/HS sever/dES severable several severalty/M severance/MS severe/oTY severity/SM Severn/M Seville/M sew/SAGD sewage/M Seward/M sewer/SM sewerage/SM sewn sex-linked sex-starved sex/RSzG3p2ZD sexagenarian/SM sexagesimal/SY sexathon/S sexcentenary/S sexed/fc sexennia sexennial sexennium/S sexercise sexfoil sexism/SM sexologic sexological sexology/3M sexpartite sexpot/SM sext/GR sextant/SM sextet/SM sextillion/M sextodecimo/S sexton/MS sextuple/DG sextuplet/SM sexual/Y sexualise/ND sexuality/MS sexualize/ND sexuate/D sexuparous sexvirate sexy/T3 Seychelles/M Seychellois Seyfarth/M Seyfert/M Seymour/M señor/M Señora/M señora/SM señores señorita/SM sf sforzandi sforzando/S Sgt. sh SHA shabbiness shabby/TY shack/MGDS shackle's shackle/USDG shackler/M Shackleton/M shade/MDpJSZG2 shaded/U shading/M shadow-boxing shadow/DGp2ZMS shadowed/c shadower/M shadowgraph/S shadowing/c shadowland/S shadows/c shady/YT Shafer/M Shaffer/M Shafran/M shaft/DGSM Shaftesbury/M shag/ZDSG2M shaggy/T shah/MS shake-out shake-up shake/2Z7SRG shakeable/YU shakeably/U shaken/U Shakespeare/M Shakespearean/S Shakespearian shaking/M shakuhachi/S shaky/YT shale/M shaley shall shallot/SM shallow/YSDT shallowness shalom Shalom's Shalott/M shaly/T sham/SGMdD shaman/MS shamanic shamanise/D shamanism shamanist/S shamanistic shamanize/D shamble/DSG shambolic/Y shame/6MjpS shamefaced/Y shamefulness shameless/Y shamelessness Shamir/M shammer shammy's shampoo/GMDS shamrock/SM Shamus/M shan't Shanahan/M Shandong shandy/MS Shane/M Shanghai's shanghai/DSMG shank/SDM Shannon/M Shantanu/M shantung/M shanty/MS Shaolin shape's shape/ADaSG shapeless/PY shapeliness shapely/T shaper/MS shapewear Shapinsay/M Shapiro/M Sharam/M Sharath/M shard/MS share-out share/7SRGDM shared/U shareholder/MS shareholding/S shareware Shari/M Sharif shark/SM sharkskin/M Sharma/M Sharman/M Sharon/M sharp/YTS Sharpe/M sharpen/AdS sharpened/U sharpener/S sharpish sharpness sharpshooter/MS sharpshooting Shasta/M shat Shatner/M shatter-proof shatter/kSd Shaun/M Shauna/M shave/DGSRJ shaven/U Shavian Shaw/M Shawano/M shawl/MDS shawm/SM Shawn/M Shawnee/MS Shay/M shchi she'd she'll she-ass she-cat she-devil she-dog she-dragon she-friend she-goat she-god she-male/S she/DM Shea/M sheaf/M Sheahan/M shear/RDGS shearwater/S sheath/MGDJS sheathe/UDG sheathing/M sheave/DSG Sheba/M shebang shebeen/S Sheboygan/M shed/SGM Shedd/M shedload/S Sheehan/M sheen/ZSM sheeny/T sheep-dip sheep/M sheepdog/SM sheepfold/M sheepish/PY sheeplike sheepshank/SM sheepshead sheepskin/MS sheepwalk/MS sheer/GYTDS sheerness sheet/DSMG sheeting/M sheetlike Sheffield/RM sheik/SM sheikdom/SM sheikh/SM Sheila/M Sheilah/M shekel/MS Shelagh/M Shelby/M Sheldon/M Sheldonian Sheldrick/M shelf-life shelf-mark shelf-room shelf/6M shelfful/S shelflike Shelford/M Shelia/M shell/SDGM shellac/DSG shelled/U Shelley/M shellfire/M shellfish/M Shellie/M Shelly/M Sheltand/M shelter/drSM sheltered/U Shelton/M shelve/DSG shelver/M shelving/M Shem/M Shenandoah/M shenanigan/SM Shepard/M shepherd/GMSD shepherdess/SM Sheppard/M Shepperton/M Shepstone/M Sheran/M Sheraton/M sherbet/SM sherd's sherds Sheree/M Sheri/M Sheridan/M sheriff/SM Sherlock/M Sherman/M Shermer/M Sherpa/SM Sherri/M Sherrie/M sherry/MS Sherwin/M Sherwood/M Sheryl/M Shetland/S Shevardnadze/M shewbread shewn shh Shi'ite shiatsu shibboleth/MS shield/SDMG shielded/U shieldless shift/RzZ2SDGp shiftless/Y shiftlessness/S shifty/TP Shiite/SM Shikoku/M shillelagh/MS shilling/SM Shillong shilly-shally/SGDR shilly-shallyer Shiloh/M shim/DZGMS shimmer/dSZ shimmy/MDSG shin-bone/SM shin-guard shin-pad/SM shin/rSdDGkM shindig/SM shine/SeG shingle/DMSG shininess Shinto/SM Shintoism/S Shintoist/MS shiny/T ship's ship-breaker/MS ship-broker/SM ship-fever ship-rigged ship/D4ALGS shipboard/M shipborne shipbroker shipbuilder/MS shipbuilding Shipley/M shipload/SM shipmate/MS shipmen/M shipowner/MS shippable shipper/SM shipping/M shipshape shipwreck/GMDS shipwright/SM shipyard/MS Shiraz/M shire/SM shirk/GSRD Shirley/M shirr/GDS shirt-front/S shirt-tail/S shirt/DpSMG shirting/M shirtsleeve/MSD shit-faced/! shit/pDZGS! shitbag/! shitehawk/S! shitface/! shithead/! shithole/! shithouse/! shitload/S! shitstorm/! shitter/S! shitty/T! shitwork/! shiur shiurim shiva Shiva/M shivah Shivaism Shivaite Shivaji shiver/dkZS shiverer/MS Shleifer/M shoal/SMGD shock/GRSDk Shockley/M shockproof shod/zZ2 shoddy/TP shoe's/c shoe/pGSM shoebill/S shoebox/S shoehorn/SDGM shoelace/MS shoemaker/SM shoemaking shoes/c shoestring/SM shoetree/SM shogun/SM shogunate/SM Shoji/M Shona/S shone/e shoo/SDG shook shoot-out/SM shoot/fGSc shootable shooter/SM shooting-box/SM shooting-brake shooting-break shooting-coat/S shooting-jacket/SM shooting-range shooting-stick/SM shooting/S shop-boy/MS shop-floor shop-girl/SM shop-soiled shop-window/SM shop-worn shop/GRDSM shopaholic/S shopfitter/S shopfitting shopfront/S shophouse/S shopkeeper/SM shopkeeping shoplift/DRSG shoplifting/M shopman shopmen shopping/M shopworker/S shore/GDMS shorebird/S Shoreham shorelark/S shoreline/SM shoreside shoreward shoreweed Shorewood/M shorn/U short-change/GSD short-circuit short-circuiting short-handed short-list/DG short-lived short-range short-sighted/Y short-sightedness short-staffed short-tempered short-term short-termism short-winded short/YZSTDGP shortage/MS shortbread/SM shortcake/MS shortcoming/SM shortcrust shortcut/S shorten/dJS shortening/M shortfall/MS shorthair/S shorthand/M shorthold shorthorn/MS shortish shortlist/SD shortlistee/S shortstop/MS shorty/M Shoshone/SM Shostakovich/M Shostakovitch/M shot-put shot/MS Shotaro/M shotgun/MS shotted should've should/R shoulder-high shoulder-length shoulder/d shouldn't shouldn't've shout's shout/eDGS shouter/SM shove/DSG shovel/MDR6GS shovelboard shovelful/SM shovelhead shovelware show-off/S show-piece/MS show-place/MS show/MGJmR2zSDZ showband/S showbiz/Z showcase/GDSM showdown/SM shower-bath/S shower/Zd showerproof/DG showgirl/MS showing/M showjump/SGDR showmanship/M shown showroom/SM showstopper/S showstopping showy/TP shrank/K shrapnel/M shred/DRSMG Shreveport/M shrew/MS shrewd/TYP shrewish/YP Shrewsbury/M Shreya/M shriek/DRSMG shrift/MS shrike/SM shrill/GSTPDY shrimp/SMG shrimper/S shrine/MS shrink-wrap/SGD shrink/KSG shrinkable shrinkage/SM shrinker/M shrinking/Y shrive/GS shrivel/GSD shriven Shropshire/M shroud/DMSG Shrove Shrovetide/M shrub/ZMS shrubbery/MS shrubby/T shrubland/S shrug/SDG shrunk/K shrunken shtick/S shudder/dSZ shuffle-board shuffle/ASGD shuffler/SM shun/DGS shunt/DSG shunter/SM shuriken/S shush/DSG shut-down/SM shut-eye shut-off/M shut-out shut/RGS shutdown/S shutter/dp shuttle/MGSD shuttlecock/MS shy/DTSG shyer shyest Shylock/MS shyly shyness/M shyster/S Si/M Siam/M Siamese/M Sib/M Sibelius/M Siberia/M Siberian/S sibia/S sibilance/MZ sibilancy/M sibilant/YS Sibley/M sibling/MS Sibyl/M Sibylline sic/TDG siccative Sicilian/S Siciliana/M Sicily/M sick-benefit/SM sick-leave sick-list sick-pay sick/PY sickbay/M sickbed/S sicken/dkS sickie/MS sickish sickle-bill sickle-cell sickle-feather sickle/2SGM sickly/T sickness/S sickroom/MS Sid/M siddha/S side's/f side-arms side-band/SM side-bet side-by-side side-car/MS side-chapel side-door side-drum/SM side-on side-saddle side-slip side-splitting side-street/SM side-table/S side-trip side/ISAKef sidebar/MS sideboard/SM sideburn/S sidecar/S sided/Y sidedness sidekick/MS sidelight/MS sideline/DMS sidelong sidereal sideshow/SM sidesman sidesmen sidestep/GDS sidestroke/SDMG sideswipe/DMGS sidetrack/SGD sidewall sideward/S sideways sidewinder/SM sidewise siding/SM Sidious/M sidle/DSG Sidney/M SIDS siege/SM Siegel/M Siegfried/M Siemens/M Siena/M sienna/M Sierra/M sierra/SM siesta/SM sieve/SGDM sifaka/S Siffredi/M sift/ASGD sifter/SM sifting/S SIGGRAPH/M sigh/DSG sight-line sight-read/RG sight/cMSI sighted/U sightedly sightedness sighter/M sighting/S sightless/Y sightlessness sightliness/U sightly/TP sightsee/GR sightworthy sigil/S sigma/M sigmoid Sigmund/M sign's/C sign-off/S sign-up sign/FRSCAGD signage signal-to-noise signal/-MqRQ8GDmSY signatory/SM signature/MS signboard/MS signed/fU signet-ring/SM signet/MS signifiant significance/ISM significant/IY signification/M signifieds signifier signifiers signifié signify/nNDSG signing/S signor/MF signora/M signori signoria signorial signorina/SM Signorini/M signpost/DGMS signwriter/S signwriting Sigrid/M Sihanouk/M Sikh/SM Sikhism/SM Sikkema Sikking/M silage/SM silane/S Silas/M Silbury silence/SRMGD silent/Y Silesia/M silhouette/GDSM silica/M silicate/MS siliceous siliciclastic silicide/S silicify/SGDN silicon/M silicone/SM silicoses silicosis/M silk-screen/SM silk/SzZ2M silken silkscreen silkworm/SM silky/TP sill/2YSM sillage silly/TPS silo/SM siloxane/S silt/NMDGSZ siltation/M siltstone/M silty/T Silurian Silva/M silver/dMZS2 silverfish/SM Silverlight Silverman/M silversmith/SMG Silverstein/M Silverstone Silverton/M silverware/MS silverweed silvery/T Silvester/M Silvia/M silviculture/3O SIM/S simazine SIMD Simeon/M simethicone simian/S similar/EY similarity/ESM simile/MS similitude/ME Simla simmer/Sd Simmons/M Simms/M simon simon-pure Simon/M Simone/M simoniacal simony/MS simoom simpatico simper/dS simple-minded/YP simple/TY simpleness simpleton/SM simplex/S simplicity/MS simplified/U simplifier/SM simplify/ncGDNS simplistic/Y Simpson/M Simpsons/M Simson/M SIMULA/M simulacrum/M simulate/EnNSGD simulation/EM simulative simulator/MES simulcast/S simultaneity/MS simultaneous/Y simultaneousness sin's/A sin/pRSj6GDM Sinai/M Sinatra/M Sinbad/M since sincere/TY sincerely/I sincereness sincerity/MSI Sinclair/M Sindbad/M Sindhi/M sine/MS sinecure/MS sinecurist/M sinew/MZS sinfonia/M sinful/P sinfulness/S sing-along sing-song sing/RS7GDk Singapore/M Singaporean/S singe/S singeing singer-songwriter single-decker/S single-handed/Y single-line single-minded single-seater single/PGDS singlet/SM singleton/MS singsong/DMS singular/qS-Y singularity/MS sinister/Y sinisterness sinistral/Y sink/RG7S sinkable/U sinkhole/SM sinless/Y sinlessness sinnet Sino-Japanese sins/A sinter/Md sinuosity sinuous/YP sinus/SM sinusitis/M sinusoid/oMS sinusoidal Siobhan/M Siouan Sioux/M sip/RSDG siphon/dMS siphonophore/S Sipuncula sipunculan/S sipunculid/S Sipunculus sir/dMS sire's sire/CDGS siren/SM Sirius/M sirloin/SM sirocco/MS Sirtis/M sis/Z sisal/SM siskin Sisko/M sissified sissy/MS sister-in-law sister/MAS sisterhood/SM sisterly/P sisters-in-law Sistine Sisyphean Sisyphus/M sit-in/S sit/RGSJ sitar/M3S sitarist sitcom/SM site/DSM sitemap/S Sith/M Sitka/M sits/A sitting/M situate/SGnDN situation/M situational situationally situationist Siva/M Sivaism Sivaite Sivaji Sivonen six-fold six-pack/S six-shooter/S six/HSM sixer sixpence/SM sixpenny sixteen/HM sixth-former/S sixth/Y sixty-eight/H sixty-first/S sixty-five/H sixty-four/H sixty-nine/H sixty-one sixty-onefold sixty-second/S sixty-seven/H sixty-six/H sixty-three/H sixty-two sixty-twofold sixty/HMS size/AD7GS sized/fc sizzle/DSG sizzler/M skarn skate/GRSMD skateboard/RGMSD skating-rink skean/S skedaddle/SGD skeet/M skein/MS skeletal/Y skeleton/MS skelter skerries Skerry/M sketch/SzRMDGZ2 sketchbook/SM sketchpad sketchy/PT skeuomorph/S skeuomorphic skeuomorphism skew-eyed skew/DPRGS skewbald skewer/d ski'd ski-jump/RGD ski-lift/SM ski-plane ski-run ski/GMS skid/DGS skiff/MS skijorer/S skijoring skilfish/S skilful/Y skilfulness skill/DSM skilled/U skillet/MS skim/RDSGM skimmia/S skimp/zG2ZSD skimpy/PT skin-dive/RG skin-tight skin/MpZ2DGS skincare skinflint/MS skinfold/S skinful skinhead/MS Skinner/SM skinny/PT skint skintight skip/RSDG skipjack/S skippable skipper/d Skippy/M skirmish/DSRGM skirret/S skirt's/f skirt/GDMS skirts/ef skit/SM skitter/dSZ skittish/YP skittle/MS skivvy/DMSG skiwear skol Skopje/M skua/S skulduggery/M skulk/RGSD skull/SM skullcap/MS skunk/SM sky-blue sky-high sky-writer/SM sky-writing/SM sky/S7RGDZM skybridge skydive/SRDG skydiving/M Skye/M skyjack/RJSGD Skylab/M Skylake/M skylark/GDSM skyless skylight/MS skyline/MS Skype/M skyrocket/SdM skysail/S skyscape/S skyscraper/MS Skywalker/M skyward/S skywatch/R skyway/M slab/MSGD slack/DGTRPYS slacken/dS Slade/M slag/SMDG slain slake/SGD slalom/MS slam/RGSD slander/dSM slanderer/S slanderous/Y slang/MGZ slangy/T slant/GDS slantwise slap-happy slap-up slap/MGSD slapdash slapper slapstick/M slash/SDGR slat/MDdGS slate/MSZ Slater/M slather/Sd slattern/YSM slaughter/SdrM slaughterhouse/SM slaughterman Slav/SM slave-bangle slave-born slave-drive slave-driven slave-driver/S slave-drove slave-trade/R slave/SRMyDG slaveholder/S slaveholding/S slaver/d slavery/SM Slavic/M slavish/YP Slavonic/M Slavophile slay/RSG sleaze/ZS sleazy/PTY sled/G sledge/SGDM sledgehammer/SM sleek/TGYD sleekness sleep/R2MZGSzp sleeping/c sleepless/YP sleepover/S sleeps/c sleepwalk/RDGSJ sleepwear/M sleepy/PT sleepyhead/SM sleet/GZDSM sleety/T sleeve/SMGDp sleeving/M sleigh/SRMDG sleight/SM slender/8QPY slenderer slenderest slept/c sleuth/GMDS slew/GDS slice/RMDSG slick/YDPGST slid/r slide/SG Slieve slight/kSDTYG slightish slightness Sligo/M slim/DRSGYT slime/2MSZ slimline slimness slimy/T sling/MGS slinger slingshot/SM slink/GZS slinky/T slip-ons slip/MSDRG slipcase/SM slipknot/SM slippage/SM slipper/2Z slippered slippery/T slipshod slipstream/MGDS slipway/MS slit/MRSDG slither/dSZ sliver/dSM Sloan/M Sloane/M slob/SM slobber/ZdS Slocum/M sloe/SM slog/SDG slogan/SM sloganeer/SG slogger/S sloop/SM slop/Gz2SDZd slope/S sloppy/TP slosh/DGS sloshy/T slot/DGSM sloth/S6Mj slothful/P slouch/DSGZ slouchy/T Slough/M slough/SMGD Slovak/S Slovakia/M Slovakian/S sloven/YSM Slovene/S Slovenia/M Slovenian/S slovenly/TP slow/TSPDGY slowcoach/MS slowdown/MS slowish SLR slubberingly sludge/ZM sludgy/T slue/DSG slug/RSGDM sluggard/SM sluggish/PY sluice/DMSG slum/SGZMD slumber/MdS slumberer/M slumberous slumdog/S slummy/T slump/GDS slung/U slunk slur/GDSZM slurp/DGS slurry/SM slush/S2DGMZ slushy/PT slut/SM sluttish/P slutty sly slyer slyest slyly slyness/M Sm smack/GSMDR small-minded small-mindedness small-scale small-time small-town small/ST smallholder/S smallholding/SM smallish smallness smallpox/M Smallwood/M smarmy/T smart/eDSG smarten/Sd smarter smartest smartly smartness smartphone/S smartwatch/S smarty smarty-pants smash-and-grab smash-up/S smash/RkSGD Smathers/M smattering/SM smear/SGDZ smearer/M Smedberg/M smegma/W smell/Y2GS7D smeller/M smelly/PT smelt/RDGS Smetana/M Smethwick smidgen/MS smidgeon smilax/MS smile/GDMkS smiler smiley/MS smilies smiling/UY smily/T smirch/DSG smirk/SMDG Smirnoff/M smite/SG smiter/M smith/ZSMy Smithee/M smithereens Smithers/M smithery/S Smithfield/M Smithson/M Smithsonian/M Smithtown/M Smithville/M smithy/SM smitten smock/DGSM smocking/M smog/MZ smoggy/T smokable smoke-dried smoke-room smoke-stone smoke/SR2GZDpM7 smokelessly smokescreen/S smokestack/SM smokey smoking-jacket smoking-room smoky/TY smolt/S smooch/rGSD smoochy/T Smoot/M smooth-talk smooth-tongued smooth/GYRSTPD7 smoothie/MS smoothish smorgasbord/SM smote smother/Sd smoulder/Skd SMP SMS/SGD SMSA/SM SMTP smudge/SpDGZ smudgy/TYP smug/PTY smuggle/RSGJD smut/2GDZSM smutty/PT Smyrna/M Sn snack/DSGM snaffle/GDSM snafu/MS snag/GMDS snail/SM snake/GZDMS snakebite/SM snakefish/S snakelike snakeroot/M snakeskin snaky/T snap/ZSR2GDz snapdragon/MS Snape snapline/S snappable snapping/Y snappish/YP snappy/TP snaps/U snapshot/MS snare/GDMS snarer/M snarkily snarl/SDGkY snarler/M snarly/T snatch/GDRS snatchy snazzy/TY Snead/M sneak/zDk2ZSG sneaky/TP Sneed/M sneer/DSkGM sneerer/M sneeze/SGD sneezer Snell/M Snetterton/M snick/RM snicker/d snide/PTY Snider's sniff/SRGD sniffle/SGD sniffler/M snifter/SM snigger/dS snip/DrGZS snipe/SGM snippet/MS snippy/T snitch/GDS snivel/RSDGJ snob/SMZ snobbery/SM snobbish/Y snobbishness snobby/T Snodgrass/M snog/SGDR snood/SM snook/RM snooker/d snoop/ZSRDG snoopy/T snoot/SzM2Z snooty/TP snooze/SGD Snopek/M snore/GDRS snorkel/RMSDG snort/GRDS snot/zS2ZM snotty/TP snout/MDS snow-capped snow-white snow/ZmD2MGS snowball/GDSM snowberry/S snowblade/SrG snowblink snowblower/S snowboard/GRDS snowbound snowcap/S snowcat/S Snowden/M snowdrift/SM snowdrop/MS snowfall/MS snowfield/SM snowflake/MS snowkiter/S snowkiting snowline snowmobile/RSMGD snowpack/S snowplough/DSMG snowscape/S snowshoe/SGDM snowshoer/MS snowstorm/SM snowy/T SNP/M SNR Snr. snub-nosed snub/DGS snubber/S snuff/RYGSD snuffbox/MS snuffle/GSD snuffler/M snug/YPT snuggle/GSD Snyder/M so-and-so/M so-called so/M soak/DGJS soaker/M Soames/M soap/SGZMD2 soapbox/SM soapstone/M soapsuds soapy/TY soar/DGkS soaraway soarer/M Soay/M sob/SDG sobbing/Y sober/YdkPS soberer soberest sobriety/ISM sobriquet/MS Soc. soccer/M sociability's sociability/U sociable/EU sociably/U social/Q8s39Sq-Y socialism/MS socialist/W socialite/ZSM sociality/M societal society/oSM socio socio-economic/YS socio-political sociobiological sociobiologically sociobiologist/S sociobiology/M sociocultural/Y sociodrama sociodramatic sociodramatist sociodynamic/S socioecological socioecologist/S socioecology/W sociogenic sociogeny sociogram sociography/W sociogroup sociolatry sociolect/S sociolectal sociolegal sociolinguistic/S sociolinguistics/M sociolinguists sociology/13MwS sociometry/MW sociopath/SWZ sock/DMSG socket/dMS Socorro/M Socrates/M Socratic/S sod/GSDM soda/SM sodden/YP sodium/M Sodom/M sodomite/SM sodomy/Q8SM SOE soever sofa/SM Sofia/M soft-boiled soft-core soft-headed soft-headedness soft-hearted soft-heartedness soft-paste soft-pedal/GD soft-sell soft-spoken soft/cP softback/S softball/SM softcover soften/drS softer softest softie/M softly softly-softly softness/S Softpedia softphone softshell/S software/M softwood/MS softy/MS sogginess soggy/TY Soham/M Soho/M soi soi-disant soigné soil/GMDS soiled/U soiree soirée/MS sojourn/RMDGS soke/S Sokolowski/M sol Sol's sol-fa solace/GDMS solanaceous solanum/S Solapur/M solar solaria Solaris solarium/M sold/AfecU solder/SA soldered solderer/S soldering soldier/DYSGZM soldiership soldiery/SM sole's/I sole/FADGS solecism/SM solecist/W solely solemn/-qQ8TY solemness solemnity/MS solenoid/SM solenoidal soles/I soleus solicit/dnS solicited/U solicitor/MS solicitous/Y solicitousness solicitude/MS solid-state solid/YS solidarity/SM solider solidest solidi solidification/M solidify/DNnGS solidity/S solidness solidus/M Solihull/M soliloquies soliloquise/SDG soliloquy/M solipsism/M solipsist/S Solis/M solitaire/SM solitariness solitary/SY solitude/SM Sollas/M solo/GDMS soloist/SM Solomon/MW solstice/SM solubilisation solubilise/SGD solubility/MI solubilization solubilize/SGD soluble/EI solute's solute/AE solutes/E solution/ASME solvable/IU solvating solve/EDRASG solved/U solvency/ISM solvent/SIM Solzhenitsyn/M soma/M Somali/SM somalia Somalia/M Somalian/S somatically somatosensory somatotype/SG somatropin sombre/Y sombreness sombrero/SM some/W somebody'll somebody/SM someday somehow someone'll someone/M somersault/GSMD Somersby/M Somerset/M Somerville/M something/M sometime/S somewhat somewhen somewhere somite/S Somme/M sommelier/SM somnambulism/M somnambulist/SM somniferous somnolence/M somnolent/Y Somoza/M son-in-law son/MW1SZ sonar/M sonata/SM sonatina/SM Sondheim/M Sondra/M song/MS songbird/MS songbook/S songcraft songsmith songster/SM songstress/MS songwriter/SM songwriting Sonia/M sonics Sonja/M sonnet/MS sonny/MS sonobuoy/S sonogram/S sonograph/WZ sonographer Sonoma/M Sonora/M sonorant/S sonority/S sonorous/YP sons-in-law Sony/M Sonya/M soon/T soonish soot/MZ sooth/RkMDG soothe/S soothsayer/SM soothsaying sooty/T sop/DMGZS Sophia/M Sophie/M sophism/SM sophist/S1yMWw sophistic/Nn sophisticate/GShD sophisticated/U sophistication/M sophistry/SM Sophoclean Sophocles/M sophomoric soporific/SMY soppy/T soprano/SM Sopwith/M sorbet/MS sorbitol Sorbonne/M sorcerer/MS sorceress/S sorcery/SM sordid/PY sore/TSY soreness Sorensen/M Sorenson/M sorghum/MS sorrel/SM sorrow/DGM6jS sorrower/M sorrowful/P sorry/TPY sort/FSMAGD sortable sorted/UK sorter/SM sortie/SMD sortieing sorting/K sorts/K SOS/S Sosa/M sot/MS Sotho/S sottish sou'wester sou/MS soubrette/S soubriquet/M souchong soufflé/SM sough/DGS sought-after sought/U soul-destroying soul-searching soul/pS6Mj soulful/P soulless/Y soulmate/S sound/GJSTMDRYp soundalike/S soundbar/S soundboard/MS soundbox soundcheck/S soundclash sounded/A Soundex soundhole/S sounding/M soundless/Y soundly/U soundness/U soundproof/DGS soundproofing/M sounds/A soundscape/S soundtrack/MS soup/SMZ soupy/T soupçon/MS sour/DPTSGY source's/A source/SeDGA sourcebook/S SourceForge/M sourish sourpuss/MS sous/DGS Sousa/M sousaphone/MS souse souterrain/S south-east/M south-easterly south-Easterly south-eastern south-eastward/S south-Eastward/S south-south-east south-south-west south-west/M south-westerlies south-Westerly/S south-western south/M Southall Southampton/M southbound southeaster/SM Southend-on-Sea Southend/M souther/YM southerly/S southern/R southernmost Southey/M Southfield/M southpaw/SM Southport southward/SY Southwark Southwell/M southwester/MS souvenir/MS sovereign/YSM sovereignty/SM soviet/SM sow/RGDS sowed/A Soweto/M sown/A sows/A soy soya soybean/S Soyuz/M spa/MS space-saving space-time space/DmRM5SGJ spacecraft/MS spacefarer/S spacefaring spaceplane/S spaceport/S spaceship/SM spacesuit/SM spacewalk/SRGD spacey spacial spacier spaciest spacing/M spacious/PY Spackle spade/SGMD6 spadefish/S spadefoot/S spadeful/MS spadework/M spadiceous spadices spadille spadix/M spaghetti/M Spain/M spake Spalding/M spam/SRDG spambot/S spammie span/GDRMS spandex spandrels spangle/GMDS spangly/T Spaniard/SM spaniel/MS Spanish/M spank/JSDG spanker/M spanking/M spanned/U spar/dMkDGS SPARC/M SPARCstation/M spare/PYS sparer's spareribs sparers sparest sparing/U spark/DYGZSM sparkle/GRkDS sparky/T sparling/SM sparrow/SM sparrowhawk/S spars/T sparse/Y sparseness sparsity Sparta/M Spartacus/M Spartan/S spas/W spasm/MS spasmodic/Y spastic/S spastically spasticity spat/MSGD spate/SM spathe/MS spathiphyllum spatial/Y spatiality/M spatio spatio-temporal/Y spatter/dS spatterdash/S spatterware spatula/SM spavin/SM spavined spawn/MGSD spawner/M spay/DSG SPCA speak/GRS7J speakable/U speakership/M speaking-tube speaking/Ua speaks/a spear/MGSD spearfish/SG speargun/S spearhead/GSMD Spearman/M spearmint/SM spec/S specced speccing special/Q-8q3S specialise/cnGDS specialised/U specialism/MS specialist/W speciality/S specialness speciate/DGN specie/MoS specific/S specification/M specificity/S specificness specified/UaAf specifies/A specify/SBl1nRDWNG specimen/SM speciose specious/PY speck/SGDM speckle/DGSM speckless spectacle/DSM spectacular/YS spectate/SGD spectator/MS spectatorial spectatorship spectinomycin Spector/M spectra/oM spectral spectre/MS spectrogram/SM spectrograph/Z1M spectrography/M spectrometer/SMW spectrometry/M spectrophotometer/MWS spectrophotometry/M spectroscope/M1ZSW spectroscopy/M spectrum/M specular speculate/NDnSvVG speculation/M speculator/SM speculum sped speech-maker/S speech-making speech-writer/S speech/pSM speechification speechify/RSGD speechless/PY speed-up/MS speed/DRJZSG2Mz speedball/S speedboat/MS speedboater speedo/S speedometer/MS Speedos speedway/SM speedwell/MS speedwriter/S speedwriting speedy/TP speleologist/S speleology/Mw spell/RG7JDS spellbind/SRG spellbound spellcheck/GDSR spelled/aA spelling/MaS spells/aA spellworking spelt/a spelter Spence/M Spencer/M spend/eScaG spendable spender/SM spending/f spendings spendthrift/SM Spenser/M Spenserian spent/Ufcea sperm/MS spermatic spermatid/SO spermatocyte/S spermatogenesis spermatogonia spermatogonium spermatophore/S spermatophyte/M spermatozoa spermatozoid/S spermatozoon/M spermicidal spermicide/M Sperrin Sperry/M sperrylite spessartine spew/DRSG SPF sphagna sphagnum/M sphalerite sphenoid sphenoidal sphere/M1WwS spheroid/oMS spheroidal spherule/MS sphincter/MS sphingolipid/S sphinx/SM spic spicate spice/DGSZM spicebush/M spick spicule/SM spicy/TYP spider/MZS spidering spiderish spiderlike spiderman spidermen spiderweb/SDG spiderwort/M Spiegel/M spiel/DSGM Spielberg/M spiffy/T spigot/SM spike/DGSMZ spikelet/S spiky/TP spilite/SW spill/cGDS spillage/SM spiller spillikin spillover/SM spillway/SM spilt spin-drier/S spin-off/S spin/RGSo spinach/SM spinal/S spindle/SMGYD spindly/T spindrift spine-chilling spine/pMS2Z spinel/S spineless/YP Spiner/M spinet/SM spinnaker/SM spinneret/SM spinney/S spinose spinous Spinrad/M spinster/MS spinsterhood/M spinsterish spiny/T spiracle/SM spiraea/MS spiral/SDGY spire's/I spire/IDFSA spirit/IdSM spirited/Y spiritedness spiritism spiritist spiritistic spiritless/YP spiritual/3YS spiritualism/MS spiritualist/W spiritualistically spirituality/SM spiritualness spirituous Spiro/M spirochaete/SM spirometer spirometric spirometry spironolactone spiry spit/RGS spite/AMS spiteful/PY spitfire/MS spiting spittle/MY spittlebug/S spittoon/SM Spitz/M spiv/S spivvish spivvy/T splake splanchnopleure splash/GDSzZ splashback/S splashboard/S splashdown/SM splashy/T splat/DMGS splatter/dS splatterpunk/S splay/SDG splayfeet splayfoot/DM spleen/SM spleenwort/S splendid/PY splendiferous/Y splendiferousness splendour/SM splenectomy/S splenetic splenic splenomegaly splice/GDRSJ spliff/S spline/MDS splint/RDSGM splinter/dZ split-level split-second split/SRGM splodge/MS splotch/MGDSZ splotchy/T splurge/MDSG splutter/dS splutterer/M spn Spock/M spoil/CSRDG spoilage/MS spoiled/U spoilsport/MS spoilt/U Spokane/M spoke/Dm5S spoken/Uea spokeshave/SM spokespeople spokesperson/S spoliation/SCM spondylolysis sponge-like sponge/GZDRS2M spongeable spongiform spongy/T sponsor/dMS sponsorship/S spontaneity/SM spontaneous/YP spoof/SDGMR spoofable spoofery spook/MGZSD2 spooky/TP spool/MRSDG spoon-fed spoon-feed/SG spoon/D6GSM spoonbill/MS Spooner/M spoonerism/SM spoonful/MS spoor/SM sporadic/Y sporangia sporangial sporangium spore/MS sporophyte/S sporophytic sporran/SM sport/kVmGvM5ZDS2u sporter sportif sporting/U sportive/P sportscast/RSGM sportsman/Y sportsmanlike/U sportsmanship/M sportspeople sportsperson/S sportster/S sportswear/M sportswomanship sportswriter/S sporty/TP spot's/C spot-weld/DG spot/2GDRSZzMp spotless/PY spotlight/SMGD spotlit spots/C spotted/U spotty/TP spouse/SM spout/DGS spouter/M Sprachgefühl sprag sprain/GDS sprang sprat/SM sprawl/GSD spray's spray/ADGS sprayable sprayer/MS sprayings spread-eagled spread/CGcSe spreadable spreader/SM spreadsheet/SG spree/MGS sprig/MSDG sprightly/TP spring-clean/D spring-loaded spring/RZSz2G springboard/SM springbok/MS Springfield/M springiness/S springless springlet/S springlike Springsteen/M springtail/S springtime/M springy/TP sprinkle/RJSDG sprinkling/M sprint/RDSMG sprite/SM sprocket/dSM sprog/SGD sprout/DGS spruce/YMDPSG sprucer sprue/M sprung/U spry spryer spryest spryly spryness SPSS spud/SDGM spume/SMZ spumy/T spun spunk/MZ spunky/T spur/SMDG spurge/SM spurious/YP spurn/DSG spurner spurt/DGS sputa Sputnik/MS sputter/dS sputterer sputum/M spy/GDMS Spyckerelle spyglass/SM spyhole spymaster/S spyware sq sq. SQL sqrt squab/SM squabble/DRSG squad/MS squadron/MS squalene squalid/YP squall/MYSDG squally/T squalor/S squamous squander/dS squanderer square/PMTDSYG squarer/M squarish squash/ZGDS2 squashy/TP squat/YTRSPDG squaw/MS squawfish/S squawk/RMDSG squawroot/S squeak/RZSGMD2z squeaky/T squeal/DRSGM squeamish/YP squee/Sd squeegee/MSd squeezable squeeze/SRDG squelch/ZDSG squelcher/M squelchy/T squib/DGMS Squibb/M squid/MGDS squidgy/T squiggle/SYMGD squiggly/T squill/S squillion/S squillionaire/S squinancywort squint/SDG squinter/M squire/YGMDS squirearch/Zw squiredom squireen squirehood squirelet squireling squireship squirl squirm/ZSDG squirmy/T squirrel/YMGSD squirt/SGD squirter/M squish/2DGZS squishy/T Sr SRA/M SRAM/S sRGB Sri SRO SS SSA/SM SSC SSD/SM SSE SSH ssh/SGD SSL SSRI SSS SST SSW St st. stab/RYDJSG stabilise/CnRGDS stability/MSI stabilize/CNRnGDS stable-boy/SM stable-girl/MS stable-lad/SM stable-mate stable/FMS stabled stableful/S stableman/M stablemen/M stableness stabler stablest stabling stablish stably staccato/S Stacie/M stack/7GSDM stacked/U stacker/SM Stackhouse/M Stacy/M stadia stadium/SM staff's staff/ADGS staffage staffed/cUf Stafford/M Staffordshire/M staffroom stag/dSM stage-manage/RD stage-management stage-struck stage/SZBM2 stagecoach/MS stagecraft/M stagehand/SM stager/M stagflation/SM stagger/Skrd staghound/S stagnancy/MS stagnant/Y stagnate/nNDSG stagnation/M stagy/T Stahl/M staid/PY stain/SpDG stained-glass stained/U stainer/M Staines stair/MS staircase/MS stairhead stairlift/S stairway/MS stairwell/MS staithe/S stake/MDSG stakeholder/S stakeout/MS stalactite/MS Stalag/M stalagmite/MS stale/PTYDG stalemate/SGMD Staley/M Stalin/M Stalingrad/M Stalinism Stalinist/S stalk/RDMGS stalking-horse stall's stall/SGID stallage Staller/M stallholder/S stallion/SM Stallman/M Stallmann/M Stallo/M Stallone/M stalwart/YS stalwartness stamen/MS Stamford/M stamina/M staminate stammer/rdSk stamp/RJDGS stamped/d stampede/MS stampeder/M Stan/M Stancanelli stance/ISM stanchion/SM Stancliffe/M stand's stand-alone stand-in/S stand-off/S stand-offish stand-up stand/SfGJ standard-bearer/SM standard/Ms9qQ-8S standardised/U standby standbys standee/MS stander/S standing/fM Standish/M standoffish/Y standoffishness standout/S standpipe/SM standpoint/SM standstill/SM Stanfield/M Stanford/M Stanhope Staniforth/M Stanislavsky/M stank Stanleigh/M Stanley/M Stanmore/M stannic stannous Stansted/M Stanton/M Stanwood/M stanza/DSM stanzaic stapedial stapes staphylococcal staphylococci staphylococcus staple/SGDRM stapled/U Stapleton/M star-spangled star-studded star/MrdZpSDG starboard/MSG Starbucks starburst/S starch/SzMGD2Z starchitect/S starchitecture starchly starchwoman starchwort starchy/TP stardom/MS stardust/M stare/S starfish/MS Starfleet/M Stargate/M stargate/S stargaze/RSGD stargrass stark/TYP Starkey/M Starks/M starlet/SM starlight/M starling/SM starlit Starr/M starry/T starshine starship/S starstruck start-up/MS start/RSDG started/A startle/GkDS starts/A starvation/M starve/GNSnD starveling/M stash/GSD stasis/M statant state's state-of-the-art state/aSALGfIcD statecraft stated/U stateful statehood/MS Statehouse's statehouse/S stateless/P stately/TP statemented statementing Staten/M stater/Ma stateroom/SM states/5m statesman/Y statesmanlike statesmanship/M statewide static/YS statical station-wagon/MS station/eMS stationariness stationary stationed stationer/ZSM stationery/MS stationing stationmaster/MS statism statist/S statistic/SYM statistical statistician/SM stator/SM statoscope stats statuary/SM statue/MSD statuesque/Y statuesqueness statuette/SM stature/MS status quo status/MWS statute/SyM statutory/Y Stauffer/M staunch/DTSGY staunchness stave/GDSM stay-at-home stay/ecDSG staycation/S stayer/SM staysail/S STD/S stead/z2MZ steadfast/PY Steadicam steadied steadier/U steadies steadiest/U steadiness/M steady-going steady/UY steadying steak/SM steakhouse/MS steal/SG stealer/M stealing/M stealth/M2zZ stealthy/TP steam/zR2DGMZS steamboat/MS steampunk steamroller/dSM steamship/MS steamy/TP stearate/S stearic Stearns Steckling/M steed/SM steel-clad steel/DMGZ2S Steele/M steelhead steelwork/RSM steely/PT steelyard/SM Steen/M steep/TSGDY steepen/dS steeple/DSM steeplechase/GSM steeplechaser/S steeplejack/MS steepness steer/GSD7 steerage/SM steerer/M steers/m steeves Stefan/M Stefanie/M Stefano/M Steffen/M Steffi/M steganographer/S steganography/W stegosaurus/S Stehmann stein/MS Steinbeck/M Steinberg/M Steiner/M Steinmetz/M Steinway/M Stella/M stellar stellated Stellenbosch/M stem/pGMDS stemmed/U stench/SM stencil/DSMGJ Stengel/M stenographer/MS stenos stenosed stenoses stenosing stenosis stenothermal stenotic stenotype/MS stenotypist/S Stensen/M stent/S Stenton/M stentorian step's/aI step-parent/SM step/cDGS stepbrother/MS stepchild/M stepchildren stepdad/S stepdaughter/MS stepfamily/S stepfather/SM Stepford Stephan/M Stephanie/M Stephen/MS Stephens/M Stephenson/M stepladder/SM stepmother/SM stepmum/S Stepney/M steppe/SRM steppingstone/S steps/aI stepsister/SM stepson/MS stepwise steradians stereo/SM stereocamera/S stereochemical/Y stereochemistry stereognosis stereognostic stereogram/S stereography/MW stereological/Y stereometry stereophonic stereophonically stereophony stereoregular stereoscope/ZWM1S stereoscopy/M stereotactic stereotactically stereotaxic stereotype/ZMDGSWw1 sterilant/S sterile/YQ8q-s9 sterilise/ADSG sterilised/U sterility/SM sterling/PMY Stern-Volmer stern/SYT sternal Sterne/M sternness sternum/SM sternway steroid/MS steroidal sterol/S stertorous/PY stet/MGSD stethoscope/SM Stetson/MS Steuben/M Steve/M stevedore/SM Steven/MS Stevenage Stevenson/M stevia/M stew/DMGS steward/GMDS stewardess/MS stewardship/SM Stewart/M sthenic STI/S stibine stick/RZS2GzM stickleback/MS stickler/SM stickup/SM sticky/PT stiff-necked stiff/YPTS stiffen/rSd stifle/SGDk stifler/M Stigand/M stigma/Q8Wq-SM stigmata stigmatised/U stigmatist stigmatization/CS Stihler/M stile/MS stiletto/SM still/SDPTG stillbirth/SM stillborn/S Stillwell/M stilt/MhiSD Stilton/M stimulant/SM stimulate/cGSD stimulated/U stimulation/MS stimulative stimulator/M stimulatory stimuli/M stimulus/M Stine/M sting/RZSGkz2 stingray/MS stingy/PT stink/GZSRk stinkpot/M stinky/T stint/GDMS stinter/M stinting/U stipend/MS stipendiary stipple/GDSJ stippler/M stipular stipulate/GNnDS stipulation/M stipule/S stir-fry/D stir/GSJDR Stirling/M stirred/U stirring/Y stirrup/SM stitch's stitch/ADGJS stitcher/MZ stitching/M stoat/MS stochastic/Y stock's stock-in-trade stock/GcDAS stockade/MS stockbreeder/SM stockbroker/SM stockbroking Stockdale stocked/f stocker/MS Stockhausen/M stockholder/MS Stockholm/M stockinet/MS stockinette/S stocking/MSD stockman stockmanship stockmen stockpile/DSG stockpiler/M Stockport stockpot/SM stockroom/SM stocktake/R stocktaking/M Stockton-on-Tees/M Stockton/M Stockwell/M stocky/YTP3 stockyard/MS Stoddard/M stodge/2MZ stodgy/TY stoic/SYM stoical stoichiometrically stoichiometry/MW stoicism/MS Stoke-on-Trent/M Stoke/M stoke/SRGD Stokes's STOL stole/MS stolen stolid/Y stolidity stolidness stolon/MS stolonate stoloniferous stoma stomach-pump stomach-tube stomach/R6pDMG stomachache stomachful/S stomachic/S stomachs stomal stomata stomatal stomatitis stomatopod stomp/DSG stomper/S stompy/T stone-baked stone-cold stone/pSMZDG stonechat/S stonecutter/MS stonefish/S stoneground Stonehenge/M Stonehouse/M stonemason/SM stoner/MS stonewall/DSG stonewaller/S stoneware/M stonewashed stonework/M stonewort/M stony/YPT stood/f stooge/SM stool-pigeon stool/MS stoop/DGS stop-go stop/MRSDG stopcock/SM stopgap/MS stopoff stopover/SM stoppable/U stoppage/SM stopped/U stoppered stopping/U stopwatch/MS storable storage/MS store's store/SAGD storehouse/MS storekeeper/SM storer/A storeroom/MS storey/S stork's-bill stork/SM storm-bird/SM storm-cock/MS storm-door/SM storm-finch/SM storm-lantern/SM storm-sail/SM storm-signal/MS storm/R2GpzDZSM stormbound stormproof stormy/T Stornoway/M story/MSD storyboard/SGMD storybook/SM storyline/S storyteller/MS storytelling/M Stouffer/M stoup/SM Stourbridge Stout's stout-hearted/Y stout-heartedness stout/TYSP stove-pipe/SM stove/SM Stover/M stow/DGS stowable stowage/M stowaway/SM Stowe/M Strabane/M Strachan Straczynski/M straddle/RSDG Stradivarius/M strafe/SGD straggle/RYDSG straggly/T straight-edge/SM straight-eight straight-faced straight/STPY straighten/rSd straightforward/PY straightish strain/FSAD strained/cU strainer/AMS straining/c strait-jacket/dSM strait-laced strait/SMY straiten/dS Straith/M straitjacket/dMS straitness strake/S strand/GSD strange/PTYR strangle/DGRS stranglehold/MS strangulate/GnSND strangulation/M strap's strap/DUSG strapless Strasbourg/M strata/M stratagem/MS strategic/S strategy/W3MSw1 Stratford-upon-Avon Stratford/M Strathclyde/M strati stratification/M stratify/NGnDS stratigraphy/MwW stratosphere/SWM1 stratum/M stratus/M Strauss/M Stravinsky/M straw-colour/D straw-worm/S straw/MZS strawberry/SM strawboard Strawson/M stray/GDSM strayer/M streak/RSDZGM streaky/T stream/GSRMD streamable streambed streamed/U streamflow/S streamlet/S streamline/GDS streamliner Street street/MS streetscape/S streetwalker/MS streetwalking streetwise Streisand/M strength/SM strengthen/AdS strengthener/SM strenuous/YP streptococcal streptococci streptococcus/M streptomycin/M STRESS stress/DpMSG stressed/U stressful/Y stressfulness stressor/S stretch/eGDS stretchability/M stretchable stretched/c stretcher/dMS stretchiness stretchy/T strew/GDS strewer strewn stria/nM striae striate/SGD striation/M stricken Strickland/M strict/TY stricter/F strictness stricture/MS stridden stride/MSG stridency/S strident/Y strider/M stridor Strieber/M strife/M strike-breaking strike/RGSk strikebound strikebreak/RG strikebreaking/M strikeout/S strim/RGD string's string/AGS stringboard stringed stringency/S stringent/Y stringer/MS Stringfield/M stringpiece stringy/TP stringybark strip's strip-searched strip-searching strip/eDGS stripe/SMDZG striper/M stripey stripier stripiest stripling/M stripper/MS striptease/RSM strive/DSGJ striven striver/MS strobe/SM strobili strobilus stroboscope/MSW strode stroganoff Stroh/M stroke/SGDM stroll/SRGD Strolz/M Strom/M stroma stromal stromata stromatic stromatolite/S stromatoporoid/S Stromberg/M stromule/S strong-minded strong/mTY strongbox/MS stronghold/MS strongish strongroom/SM strontium/M strop/SMDG strophanthin strophe/WSM stroppily stroppiness stroppy/T Stroud strove struck structural/3Y structuralism/M structuralist structure's structure/ASGD structured/U structureless strudel/MS struggle/SGD struggler/M strum/DGS strummer/S strumpet/MS strung/cUA strut/DSG strutter/M strychnine/M Stuart/MS stub/MZDGS stubble/YSM Stubblefield/M stubbly/T stubborn/TYP Stubbs/M stubby/T stucco/MDG stuccoes stuck/U stud/DSMG studbook/SM student/SM studentship/MS studenty studied/U studiedly studiedness/M studier/SM studio/SM studious/YP study/MASfDG stuff/cDG stuffer stuffing/M stuffs stuffy/YTP Stukeley/M stultify/nSGND stum/SGD stumble/GSDRk stump/ZSDGM stumper/M stumpily stumpiness stumpy/T stun/GSD stung stunk stunner/MS stunning/Y stunsail/S stunt/iSDGM stuntman/M stuntmen/M stuntwoman stuntwomen stupefaction/MS stupefy/SkGD stupendous/YP stupid/Y stupider stupidest stupidity/MS stupor/MS sturdy/TYP sturgeon/MS Sturm/M stutter/dS stutterer/S Stuttgart/M sty/SM Stygian style's style/ASGD styler/SM styli stylise/nSDG stylish/Y stylishness stylist/WM1S stylistic/S stylize/nSNDG stylus/SM stymie/SD stymieing styptic/S styrene/M Styrofoam Styx/M Su Suarez/M suasion/SEM suave/TYP suavity/M Sub sub-aqua sub-basement/MS sub-branch/MS sub-clause/S sub-edit/d sub-group/S sub-head/J sub-idea sub-lieutenant/SM Sub-Lt. sub-machine-gun sub-Saharan sub-sequence/SM sub-standard sub-zero sub/SGDM subacid subacute subadult/S subagency/S subagent/S subalpine subaltern/MS subantarctic subaquatic subaqueous subarachnoid subarctic Subaru/M subatomic subcategory/SM subcell subcellular subchapter/S subclass/MS subclause/S subclavian subclinical subcommand/S subcommittee/SM subcomponent/SM subconjunctival subconscious/YP subconsciousness/S subcontinent/SM subcontinental subcontract/SGDM subcontractor/SM subcortical subcostal subcritical subcultural subculture/SM subcutaneous/Y subdevelopment subdirectory/S subdiscipline/S subdivide/XSDGN subdivision/M subdomain/SM subdominant subduable subduct/SGD subduction subdue/SDG subduer subedit/Sd subeditor/SM subeditorial subeditorship subenfeudation suberin suberose suberous suberyl subesophageal subevergreen subface subfactor subfamily/MS subfauna subfertile subfertility subfeudatary subfeudation subfeudatory subfield/S subfolder/S subframe/SM subfusc subgenera/W subgenre/S subgenus subgroup/SM subhead/MGSJ subheading/M subhuman subimpose subincandescent subincision subindex/S subindustry/S subinfeud subinfeudation subinfeudatory subinterval/SM subject/vGSDuMV subjectable subjectdom subjecthood subjectible subjectification subjection/SM subjective/P subjectivism subjectivist/S subjectivity/SM subjectship subjoin/GDS subjugal subjugate/DnGSN subjugation/M subjunctive/S subjunctively subkey/S subkingdom/S sublanguage/S sublate/SDGN sublateral sublayer/S sublease/DMGS sublet/SG sublibrary/S sublicense/DS sublicensee/S sublimate/DSG sublimation/M sublime/YTDnSG subliminal/Y sublimity/SM sublingual/Y sublist/S sublittoral sublunary subluxate subluxation submandibular submarginal submarine/RSM submerge/GDS submergence/SM submerse/SbXGDN submersible/S submersion/M submetacentric submicroscopic submission/MA submissive/PY submit/ANSGDX submittal submitter/S submodify/RSDGN submucosa submucosae submucosal submultiple/S submunition/S subnanosecond subnational subnatural subnet/MS subnetwork subnormal subnormality subnotebook/S subnuclear suboperation/S suboptimal/Y suboptimum suboption/S suborbital suborder/MS subordinary/S subordinate/ISNYDGn subordination/MI subordinative subordinator suborganisation/S suborganization/S suborn/NGDS subornation/M suboval subovoid subparagraph/S subparallel subphylum subplot/SM subpoena/DGSM subpopulation subprocess/S subprogram/S subproject/S subpubic subquery/S subrectangular subreddit/S subregion/SoM subregional subrogation/M subroutine/SM subsale subscapular subscribe/AGcSDU subscriber/SM subscript/DGS subscription/MS subsection/SM subsensible subsequence/M subsequent/Y subservience/M subservient/Y subset/MS subside/qQ-8DZGs9S subsidence/M subsidiarity subsidiary/MS subsidised/U subsidy/SM subsist/GSD subsistence/M subsistent subsocial subsoil/MSG subsonic subsonically subspace/SM subspecialist/S subspecies/M subspecific substage substance/SM substandard substantial/YI substantiate/NSDGn substantiated/U substantiation/FMS substantival substantivally substantive/SMY substation/SM substituent/S substitute/SVBvDG substitution/SyM substitutional substrata substrate/MS substratum/M substring/S substructure/MS substyle subsumable subsume/GSD subsumption subsurface subsystem/MS subtask/SM subtenancy/SM subtenant/SM subtend/SDG subterfuge/SM subterminal subterranean/YS subterraneous/Y subtest subtext/SM subtidally subtitle/MSGD subtle/PTY subtlety/SM subtly/U subtopic/SM subtotal/MS subtotalled subtotalling subtract/RvVGDS subtraction/SM subtrahend/SM subtree/S subtropical subtropics subtype/SM subunit/MS suburb/SM suburban/Q8q- suburbanite/MS suburbia/M subvention/MS subversion/SM subversive/PSY subvert/SDG subverter/M subway/MS subwindow/S subwoofer subzero succeed/DSG succeedable succeeder/M succeedingly success/XVMN6jvuS successful/P successfully/U successfulness/U succession/M successive/P successor/SM succinate succinct/PY succinic succour/SGMDp succubi succubus/M succulence/M succulent/SY succumb/GSD such such-and-such suchlike suck/GRSD sucker/d suckle/JSGD suckler/S suckling/M sucralose sucrose/M suction/DMGS Sudan/M Sudanese/M sudaria sudarium sudden/YP Sudetenland sudoku sudoriferous sudorific/S Sudra/S suds/Z sudsy/T Sue's sue/R7SGD suede/M suet/MZ Suetonius/M Suez/M suffer/drJS sufferance/M suffering/M suffice/SGD sufficiency/IM sufficient/IY suffix/nSGDM suffixal suffixion suffocate/SGkDnN Suffolk/MS suffragan/S suffrage/3SM suffragette/MS suffuse/DNXSG suffusion/M Sufi/M Sufism/M sugar-coated sugar-daddy/SM sugar-pea/S sugar/dMpS sugarbird/S sugarplum/SM sugary suggest/RGuVvSDb suggestibility/M suggestion/SM suggestive/P Sugimori/M suicidal suicidality suicide/SoM suit/MldSg7 suitability/U suitable/U suitableness suitably/U suitcase/SM suite/MS suited/U suitor/MS Sukarno/M sukiyaki/MS Sukkoth's Suleiman/M sulfacetamide sulfamethoxazole sulfate/S sulfonamide/S sulk/GZz2SD sulky/T Sulla/M sullen/YP sullener sullied/U Sullivan/M sully/SDG sulphadiazine sulphamethoxazole sulphate/GDSM sulphide/MS sulphite/S sulphonamide/MS sulphonate/SGDN sulphur/MdSW sulphurous sultan/SM sultana/MS sultanate/MS sultry/TPY Sulu/M sum/8NSRMXDG sumac/SM Sumatra/M Sumatran/S Sumbawa Sumer Sumerian/MS summarisation summarization summary/Ss9Q8MYP summat summation/FMS summational summative summer/dZ Summerdale/M summerhouse/MS summertime/M summing-up summit/SpM summiteer/S summon/rdS summons/SGDM Sumner/M sumo/SM sump/SM sumptuary sumptuous/YPK sumpweed Sumter/M sun-baked sun-dried sun/DZpMSG2 sunbath/GRDS sunbathe sunbeam/MS sunbed/S sunbelt/M sunbird/S sunbittern/S sunblind/S sunblock/S sunbonnet/MS sunbow/S sunburn/MSD sunburnt sunburst/SM sundae/SM Sundanese/M Sunday/MS Sundberg sunder/dS Sunderland/M sundew/S sundial/SM sundown/MR sundress/S sundrops sundry/S sunfish/MS sunflower/SM sung/U sunglasses sunk sunken sunlamp/S sunlight/M sunlit Sunni/MS Sunnite/MS sunny/TP Sunnyvale/M sunrise/SM sunroof/S sunscreen/S sunseeker/S sunset/SM sunshade/SM sunshine/ZM sunspot/SM sunstroke/M suntan/DMSG suntrap/S sup/GRSD super-dooper super/5m superabundance/M superabundant superalloy superannuate/GSNDn superannuation/M superb/PY superbeing superbike/S superbug/S supercalifragilistic supercalifragilisticexpialidocious supercargo/M supercargoes supercell/S supercentenarian/S supercentre supercharge/GSRD superchip superchurch superciliary supercilious/YP superclass/M supercluster/S supercoil/SDG supercollider/S supercomputer/MS supercomputing superconduct/V superconducting superconductivity/SM superconductor/MS superconscious/PY supercontinent/S supercooled supercooling supercritical superego/MS supererogation/M supererogatory superface superfamily/S superfan superfast superfatted superfecundation superfemale superfetation superficial/Y superficiality/S superficialness superfine superfluid/S superfluidity superfluity/MS superfluorescent superfluous/Y superfluousness superflux superfood/S superforce superfortress superfruit superfuse/DG superfusion supergalactic supergalaxy/S supergene/S supergiant/S superglue/dS superglueing supergovernment supergravity supergroup/S superheat/D superheavy superheavyweight superhelical superhelices superhelix superhero/M superheroes superheterodyne superhighway/SM superhuman/Y superimpose/XSGDN superimposition/M superintend/DSG superintendence/Z superintendency/M superintendent/SM superior/SMY superiority/SM superjet superlative/PSY superlunary supermale supermarket/MS supermodel/S supernal supernatant supernatural/PY supernaturalism/M supernaturalist/S supernature supernormal supernormality supernova/SM supernovae supernumerary/S superorder superordinate/S superovulation superoxide superphosphate superphylum superplastic superplasticity superpose/DGNS superposition/M superpower/SM superreal supersale supersalt supersaturate/GDNS supersaturation/M supersaurus superscribe/XDNSG superscript/GSD superscription/M supersede/GSD supersell/R supersensitive superset/SM supersexual supersize/SDG supersonic/YS superspace superspecies superspeed superstar/SM superstate/S superstition/SM superstitious/Y superstitiousness superstore/S superstring/S superstructural superstructure/SM supersymmetry/W supertanker/MS supertax supertwist superuser/MS supervene/SDG supervention supervillain/S supervise/DNGXS supervised/U supervisee/S supervision/M supervisor/MS supervisory supervoltage/S supinate/SGDN supine/PY suppertime supplant/GSD supplanter/M supple/LYPT supplely supplement/GDNn supplemental supplementary/S suppliant/S supplicant/SM supplicate/GDSNn supplication/M supplier/SM supply's/c supply/ASDGc support/vRDkSBGV supportability/M supportable/IU supported/U supposable suppose/DXKSGN supposed/Y supposition/M suppositious/YP suppository/SM suppress/NXVGDSb suppressant/S suppressed/U suppression/M suppressor/S suppurate/NDSnG suppuration/M supra suprabasal supralunar supramolecular supramundane supranational/Y supranationalism/M supranationality supranuclear supraoccipital supraorbital suprarational suprarenal suprasegmental/S supratemporal supravitally supremacism supremacy/3MS suprematism suprematist/S supreme/YP supremo/MS Supt. Surabaya/M Surat/M surcease/SM surcharge/GDSM surcingle/MS surd/M sure-fire sure-footed/Y sure-footedness sure/TPY surer/I surety/SM surf/RDMSG surface-active surface-to-air surface-to-surface surface/RSGMD surfaced/UA surfaces/A surfacing/A surfactant/SM surfboard/MGS surfeit/MGSD surfing/M surge's surge/ASDG surgeon/SM surgery/SM surgical/Y suricate/S Surinam/M Suriname/M Surinamese surjection/S surjective surly/PTY Surman/M surmise/DGS surmount/G7DS surmountable/I surname/SDM surpass/GkSD surpassed/U surplice/MS surplus/MS surprise/kSMDG surprised/U surprising/UY surreal surrealism/MS surrealist/W1S surreality surrender/Sd surreptitious/Y surreptitiousness Surrey/M surrogacy surrogate/MS surround/DSJG surrounding/M surtax/SM Surtees/M surtitles surtout surveillance/MS survey/AGSD surveyor/SM survivability/M survival/SM survivalist/S survive/BGDS survivor/SM survivorship Surya Suryavarman/M Susan/M Susana/M Susanna/M Susannah/M Susanne/M susceptibility/MSI susceptible/I Susette/M sushi/M Susie/M suspect/GSDM suspecting/U suspend/SNDRXGvV suspended/U suspense/M6 suspension/M suspensory suspicion/SM suspicious/PY suspiration suspire Susquehanna/M suss/GSD Sussex/M sustain/lGBLDS sustainable/U sustainer/M sustenance/M Sutcliffe/M Sutherland/M sutler/MS Sutter/M Sutton/M Suttons suture/DGMS SUV Suva/M Suzann/M Suzanne/M suzerain/SM suzerainty/SM Suzette/M Suzie/M Suzuki/M Suzy/M Svalbard/M Svarga Svedberg svelte/Y Svelto/M Sven/M Svetlana/M SVG SVGA svn SVN SW swab/SMDG Swabia Swabian swaddle/DGS swag/DMGS swage/SGD swagger/dS swaggerer/S swaggeringly Swahili/MS swain/MS SWAK Swale swallow-tailed swallow/DGS swallower/M swallowtail/MS swam swami/SM Swammerdam/M swamp/DGZS2M swampland/SM swampy/T swan/GMSD swank/GDT2ZSz swanky/TP swanlike Swansea/M Swanson/M swansong/S swap/RSGD swappable sward/MDS Swarga swarm/MDSG swarmer/S swart Swarthmore/M swarthy/PT Swartz/M swash/DSG swashbuckler/SM swashbuckling swastika/SM swat/SRGD swatch/MS swath/MDGS swathe/S sway/SDG swayback/DS Swazi/MS Swaziland/M swear/RSG swearword/MS sweat/RZSGMD2z sweatband/MS sweatpants sweatshirt/S sweatshop/SM sweatsuit/S sweaty/PT swede/SM Sweden/M Swedenborg/M Swedish Sweeney/M sweep/kRSGJ sweepstake/MS sweet-talking sweet-tempered sweet/STY sweetbread/SM sweetbrier/SM sweetcorn sweeten/drS sweetened/U sweetening/M sweetheart/SM sweetie/SM sweetish sweetlip/S sweetmeat/MS sweetness sweetshop/SM swell/JDGS swelling/M swelter/Sdk Swenson/M swept sweptback swerve/DGS swerving/U Swift/M swift/TYS swiftie swiftness swifty/S swig/MSDG swigger/S swill/SDG swim/SRG swimming/Y swimsuit/MS swimwear Swinburne/M swindle/DRGS Swindon/M swine/M swineherd/SM swing/RkZSG swingarm swingboat/S swingeing/Y swingier swingle/SGD swingletree/SM swinish/Y swinishness Swinton/M swipe/DGSM swirl/DGYS swirly/T swish/SZDG swishier Swiss switch-blade/SM switch-over/M switch/BDMRGS switchback/MS switchboard/MS switched-on switchgear Swithin/M Switzer/M Switzerland/M swivel/DGSM swizz/S swizzle-stick/SM swizzle/MGD swizzler swollen swoon/DSG swoop/DGS swoosh/DSG sword/SmM swordfish/SM swordplay/M swordsmanship/M swordtail/M swore sworn SWOT swot/S swum swung sybarite/MWS Sybil/M Sybille/M sycamore/SM sycophancy/S sycophant/MSW1 Sydney/M Sykes/M syllabary syllabi syllabification/M syllabify/GNSnD syllable/WSM syllabub/M syllabus/SM syllogism/SM syllogistic sylph-like sylph/MS sylphlike sylvan Sylvan's Sylvania/M sylvatic Sylvester/M Sylvia/M Sylvie/M Symantec/M symbiont/M symbioses symbiosis/M symbiotic/Y symbol/13WQ8-qSwM symbolism/SM symbolist symbology Symington/M symlink/SGD symmetrical/U symmetry/Q8SWM1w Symonds/M sympathetic/UY sympathomimetic sympathy/SQ9s8WM sympatric sympatrically sympatry symphonists symphony/SWM symplast/W sympodia sympodial sympodium symposia symposium/SM symptom/MpWS1 symptomatology/M synaereses synaeresis synaesthesia synaesthete/S synaesthetic synagogal synagogue/MS synapomorphy/S synapse/WSM synapsid/S synapsis synaptogenesis sync/SDG synch synchromesh synchronic synchronically synchronicity synchronise/CSAGD synchronised/U synchroniser/CSM synchronism/M synchronize/AnDGNS synchronized/CU synchronizer/CSM synchronizes/C synchronizing/C synchronous/Y synchrony/89sqQ- synchrotron/M synclinal syncline/MS syncopal syncopate/GDS syncopation/M syncopator/SM syncope/nMN syncytia syncytial syncytium syndactyl/Y syndic/nNMS syndical syndicalism syndicalist/S syndicate/SMDG syndrome/SM syndromic synergetic synergic synergise synergism/SM synergist/S1 synergistic synergize synergy/SM synfuel/S syngamous syngamy syngenesis syngenetic synod/MWwS synodal synoecious synonym/SZWM synonymity synonymous/Y synonymousness synonymy/SM synopses synopsis/M Synoptic/S synoptic/S synoptical synoptically synostoses synostosis synovial syntactic/Y syntactical syntagm/S syntagmas syntagmata syntagmatic/S syntagmatically syntax/SM synth/S synthase/S syntheses synthesis/rQ9S8dM synthesise/ADGS synthesize/ADGS synthetic/SY synthy syntype/S syphilis/M syphilitic/S syphon/d Syracuse/M Syria/M Syriac/M Syrian/MS syringe/SMGD Syriza/M syrup/SM syrupy sysadmin/S syscall/S sysop/S system/W1SM systematic/S systematise/nRSGD systematist/S systematize/NRSGnD systemic/Y systole/WSM syzygy/S Szandor Szechuan/M São séance/MS T T'ang T's T-junction/S T-shirt/S t/7k Ta ta/o tab/GMZSD Tabasco/M Tabb/M tabbouleh/S tabby/MS Taber/M tabernacle/MS Tabitha/M tabla/MS table-top table/MSGD tableau/M tableaux tablecloth/SM tableland/SM tablemate tablespoon/6SM tablespoonful/MS tablet/SM tabletop/MS tableware/M tablier tabloid/SM taboo/DGMS tabor/SM Tabriz/M tabular/Y tabulate/SNGnD tabulation/M tabulator/SM tac/D2ZG tachistoscope/W1 tachograph/S tachometer/SM tachycardia/SM tachyon/S tachyphylaxis tachypnea tachypnoea tacit/PY taciturn/Y taciturnity/M Tacitus/M tack/SM tackle/DRMGS tacky/T taco/MS Tacoma/M tact's/F tact/jWM6p1w tactful/U tactfulness tactic/MS tactician/SM tacticity tactile/Y tactility tactless/Y tactlessness tactual/Y tad Tadcaster/M Tadeusz/M tadpole/SM Taff/MZ taffeta/MS taffrail/MS Taffy/MS Taft/M tag/GMDS Tagalog/M tagetes tagged/U tagger/S tagliatelle tagma tagmata Tahiti/M Tahitian/S Tahoe/M taiga/SM tail-end tail-ender/S tail/AMCDSG tailback/MS tailboard tailcoat/S taildragger/S tailgate/G tailgater/M tailing/SM tailless tailor-made tailor/dSM tailpiece/S tailpipe/MS tailplane/S tailspin/GSM tailspun tailwater/S tailwheel tailwind/SM taint/SGD tainted/U taipan/S Taipei/M Taiping Tait/M Taiwan/M Taiwanese Tajikistan/M Tajiri/M take-home take-off/SM take-up take/RfGSJ takeaway/S Takei/M taken/caAf takeover/MS taker's/a taker/cS takes/IacA taking/Aac Talbert/M Talbot/M talc/M talcum tale/MS talebearer/MS talent/pMDS talented/U Taliban/M Taliesin/M talisman/WSM talk/RDvSuZVG talkathon/S talkback talkboard/S talkie talky/S tall/T Talladega/M Tallahassee/M tallboy/MS Talley/M Talleyrand/M Tallinn/M Tallis/M tallish tallness tallow/ZM Tallulah/M Tally's tally-ho's tally-hos tally/DSG Talmud/W3M Talmudist talon/MS taloned talonid/S talus/SM Tam/MZ tamale/MS Tamar/M Tamara/M tamarack/MS tamarin/S tamarind/SM tamarisk/S tambourine/MS tame/RTGDYS7 tameability tameable/U tamed/U tameness Tameside/M Tami/M Tamil/SM Tammany/M Tammie/M Tammy/M tamp/DGS Tampa/M Tampax/M tamper/rdS Tampere tampon/dMS Tamworth tan/SMJDRyG tanager/SM Tanaka/M tanbark/SM tandem/MS tandoori/S Tandy/M tang/MZbS Tanganyika/M tangelo/MS tangency/M tangent/MS tangential/Y tangerine/MS tangibility/SIM tangible/IYS tangibly/I Tangier's Tangiers tangle's tangle/DSUG tango/SGMD tangy/T Tania/M tank/GMR6DS tankage tankard/SM tankbuster tankette tankful/SM tankini/S tankodrome tanned/U Tannenbaum/M tannery/SM Tannhäuser/M tannin/SM tanning/M tans/Z tansy/MS tantalise/k tantalize/k tantalum/sQ-98qM Tantalus/M tantamount tantra/S tantrum/SM Tanya/M Tanzania/M Tanzanian/S Tao/M Taoiseach/M Taoism/MS Taoist/SWM tap-dance/G tap/drRDMGS tapas tape-record/G tape/Sp7M tapelike taper/d tapestry/SMD tapetal tapetum/S tapeworm/MS tapioca/SM tapir/SM tapless tappable tapped/U tappet/SM taproom/MS taproot/S tapster/S tar/DMZGS Tara/M taramasalata Taranaki/M tarantella/SM Tarantino/M tarantula/SM Tarawa/M tarball/S tardigrade/S tardiness tardive tardy/TY tare/SM target/dSMGD targetless tariff/MGDS tarmac/DGS tarmacadam tarn/MS tarnish/G7DS tarnished/U taro/SM tarot/SM tarpaulin/SM tarpon/SM tarragon/MS tarry/DTSG Tarrytown/M tarsal tarsi tarsus/M tart/SMYPTGD tartan/MS tartanry tartar/SMW tartare Tartarean Tartarus/M Tartuffe/M tarty/TYP tarweed/S Taryn/M Tarzan/M Tash/M Tashkent/M task/SDMG taskbar taskforce taskmaster/MS taskmistress/MS Tasman Tasmania/M Tasmanian/S Tass/M tassel/GMDS taste/EM6jS tasted tasteful/EP tasteless/PY taster/SM tasting/S tasty/TPY tat/rSGDZ tatami/SM Tatar/SM Tatarstan Tate/M Tatiana/M Tatoeba/M tatter/S tattered Tattersall/M tattier tattle/DRSG tattoo/RGSMD tattooist/SM Tatum/M tau/M taught/AU taunt/kRGDS Taunton taupe/M Taurus/M taut/TY tauten/dS tautness tautologous tautology/MS1w tavern/SM taverna/S Tavistock/M tawdry/PTY tawny/TM tax-deductible tax-free tax/SklnMJG7D taxa taxable/S taxation/M taxed/Uc taxer/S taxi/DSGM taxicab/MS taxidermal taxidermic taxidermically taxidermy/3SM taxies Taxil/M taximeter/SM taxing/c taxiway/MS taxon taxonomy/13wWSM taxpayer/MS taxpaying Tay Taylor/M Tayside/M Tb TBA Tbilisi/M Tbit TBW Tc Tchaikovsky/M TCO TCP TDD Te tea-leaf tea-leaves tea/SM teabag/S teacake/SM teach-in teach/RGSJ7 teachable/U teacherly teaches/A teaching/M teacloth teacup/6SM teacupful/SM Teagarden/M teahouse/S teak/MS teal/SM team/MDGS teammate/S teamster/SM teamwork/M teapot/SM tear-duct/S tear-gas/GD tear-jerker tear-off tear-stained tear/6pMGSj tearaway teardrop/SM tearfulness tearjerker/S tearless/Y tearlessness tearoom/MS teas/RSDkG tease teasel/MS teashop/MS teaspoon/6MS teaspoonful/MS teat/MS teatime/SM teazel teazle tebibit/S tebibyte/S tech techie/S technetium/M technetronic technical/YS technicality/SM technician/SM technique/SM techno technobabble technocentric technocomplex technocracy/SM technocrat/WS technocratically technofear technofreak technographer technography technologism technology/3wSM1 technomania technomaniac technomic technopark technophile/S technophilia technophilic technophobe/S technophobia technophobic technopolis technopolitan technopreneur/S technopreneurial technoscience technoscientist technospeak technosphere technostress technostructure/S technotronic techs techy tectonic/YS Tecumseh/M Ted/M teddy/MS tedious/YP tedium/M tee-heed tee/SGdM teem/DGS teen/SZM teenage/RD teens/Z teensy-weensy teensy/T teeny-bopper/MS teeny-weeny teeny/T teenybop teenybopper/S teepee/MS Tees/M Teesside/M teeter/dS teeth/DGM teethe teetotal/R teetotalism/MS TEFL Teflon/M tegmenta tegmentum Tegucigalpa/M Teheran's Tehran/M Teignbridge Teilhard/M TEirtza/M tektite/MS Tektronix/M Tel. telco/S Tele-Computer telecast/RSG Telecom telecom/S telecommunicate/nN telecommunication/M telecommute/SRG telecomputer/S telecomputing teleconference/GMDS telecourse/S Teledyne/M telefacsimile telefax telefilm/S Telefonica Telefunken/M telegenic telegram/SGDM telegraph/WZD1GSM3R telegraphese telegraphy/3M telekinesis/M telekinetic Telemann/M telemark/G telemarketer/S telemarketing telemedicine telemeter/WSM telemetry/MS teleology/wM teleoperate/GD teleoperation teleoperator teleost/S telepath/SGD telepathic telepathize/SGD telepathy/Q3S1M telephone/G3ZMSDW telephony/M telephoto/S telephotography teleplay/S teleport/GSD teleportation teleporter/S telepresence teleprinter/SM teleprocessing Teleprompter TelePrompTers telerecording/S telesales telescope/MGS1DW telescreen teletext telethon/MS Teletype/MS televangelism/S televangelist/S televiewer/S televiewing televise/DSXNG television/M televisionary/S televisual/Y telework/G teleworker/S telex/SDGM Telford/M tell-tale/SM tell/RYkGS tells/A telltale/S Telluride/M telluride/S tellurium/M telly/MS telnet/SGDB telnetable telogen telomerase telomere/SW telophase telson/S Telstar/M Telugu/M temazepam temerarious/P temerity/SM temp/GMRSTD Tempe/M temper/dESM tempera/MLS temperament/o temperamental temperance/MI temperate/IY temperateness temperature/MS tempest/SM tempestuous/Y tempestuousness tempi Templar/S template's template/FS templated templating temple/MS Templeton/M tempo/SM temporal/Y temporarily temporariness temporary/FS temporise/DSkRG temporize/DSkRG tempt/SRnGDkN temptation/M temptress/SM tempts/F tempura/SM ten-year ten/lSHg7M tenability/SM tenable/U tenace/S tenacious/Y tenaciousness tenacity/S tenancy/SM tenant/MGSD tenantry tench/M tend/FRKSIGD tended/EU tendency/SM tendentious/PY tender-hearted/YP tender/PdQ8Ys9 tenderer tenderest tenderfoot/MS tenderloin/SM tending/E tendinitis tendon/SM tendril/MS tends/E Tenebrae tenebrous tenement/SM tenet/SM TENEX/M Tenison/M Tenneco/M tenner Tennessee/M tennis/M Tennyson/M tenon/SM tenor/SM tenpin/SM tens/xNTSDXG tense/YIT tenseness tensile tension/KMS tensioned tensioner/S tensioning tensionless tensive tensor/SM tent/DFMGS tentacle/DSM tentacular tentaculate tentative/Y tentativeness tenter/M tenterhook/MS tenth/Y tents/I tenuous/Y tenuousness tenure/MSD tepee/MS tephrite/W tepid/Y tepidaria tepidarium tepidity/S tepidness tequila/MS terabit terabyte/S teraflop/S terapixel/S terascale teratogen/SW teratogenicity teratological teratologist/S teratology/M terbium/M tercel/M tercentenary/S tercentennial/S terebratulid/S Terence/M Teresa/M Teri/M teriyaki term-time term/GDSM termagant/SM terminable/I terminal/SYM terminate/CNSn terminated terminating termination/MC terminator/SM termini terminology/SMw1 terminus/M termism termite/SM tern/SM ternary/S terns/I terotechnological terotechnologist/S terotechnology terpene/S Terpsichore/M Terpsichorean Terra/M terrace/GSMD terracotta terraform/SGD terraformer/S terrain/SM Terrance/M terrapin/MS terrarium/SM terrazzo/M Terre/M Terrell/M Terrence/M terrestrial/YSM Terri/M terrible/Y terribleness Terrie/M terrify/1SWGDk terrigenous Terrill/M terrine/MS territorial territoriality/M territory/MSo terror-stricken terror/qs9Q83-SM terrorism/M terrorist/W terroristically Terry/M terry/SRM terse/TY terseness tertian tertiary/S Tertullian/M Terylene TESL Tesla/M TESOL Tessa/M tessellate/NDGSn tessellation/M tessera tesserae tesseral tessitura test's/F test-drive/G test-tube test/KFDCGSA testability/M testable testament/MS testamentary testate/I testator/SM testatrix tested/U testee/S tester/FSCM testes testicle/MS testicular testiculate testify/RDSG testimonial/MS testimony/MS testiness testis/M testosterone/SM testy/TY tetanic/Y tetanus/M tetchy/TY tether/dMS tethered Tethys tetra/SM tetrachloride/M tetrachord/SM tetracyclic tetracycline/MS tetrafluoride tetrafluoroethylene tetragon/oMS tetragonal tetrahedra/o tetrahedral tetrahedrite tetrahedron/SM tetrahydrocannabinol tetramer/S tetramerous tetrameter/MS tetraplegia tetraplegic/M tetraploid/S tetraploidy tetrapod/S tetrarch tetrastich tetrastyle tetrasyllable/W tetrathlon tetravalent tetrode Tettenhall Teuton/MW Tewkesbury Tex TeX's Texaco/M Texan/S Texas/M text/pRGDKSFM textbook/MS textbox/S textile/SM Textron/M textspeak textual/FY textualism textualist/S textural texture/SMoDG textured/U tgz Th Thackeray/M Thad/M Thaddeus/M Thai/S Thailand/M thalami thalamus/M thalidomide/SM thalli thallium/M thallophyte/MS thallus Thames Thameslink than thane/SM thank/D6jGpS thankfulness thankless/Y thanklessness thanksgiving/MS Thant/M Tharp/M that'd that'll that've that/M thatch/MRDSG Thatcher/M Thatcherite thatching/M thaumasite thaumaturge/ZW3 thaumaturgical thaw/DGS Thayer/M Thayne/M THC the/JG Theadora/M theanthropic theatre/S1Mw theatregoer/MS theatregoing theatrical/S theatricality/MS theatrics Thebes theca thecae thecate thee theft/MS their/S theism/MS theist/MWS Thelema Thelemic Thelemically Thelemite/S Thelma/M them/W1 thematic/S theme/MSDG Themistocles/M themself themselves then thenar thence thenceforth thenceforward Theo/M theobromine theocentric theocracy/SM theocratic theodicean theodicy/S theodolite/SM Theodora/M Theodore/M Theodoric/M Theodosia/M Theodosius/M theologian/MS theology/Sw1M Theophilus/M theophoric theophorous Theophrastus/M theophylline theorem/SM theoretic/Y theoretical theoretician/SM theory/Qs-89q3MS theosophy/w3WSM therapeutic/YS therapeutical therapeutist/S therapist/SM therapsid/S therapy/SM Theravada/M there'd there'll there're there've there/M thereabout/S thereafter thereat thereby therefore therefrom therein theremin/S thereof thereon Theresa/M Therese/M thereto theretofore thereunder thereunto thereupon therewith therm/oSM thermal/S thermic thermionic/S thermionics/M thermistor/SM thermite thermochemical thermocouple/SM thermodynamic/SY thermoelastic thermoelectric thermoformed thermoforming thermogram/S thermograph thermographic thermography thermoluminescence/M thermometer/SMW thermometry/M thermonuclear thermophile/S thermophilic thermopile/MS thermoplastic/S thermoregulate/SGDN thermoregulatory Thermos/MS thermoset/S thermosetting thermostable thermostat/1MSW Theron/M theropod/S thesauri thesaurus/SM these/S Theseus thesis/M Thespian/S Thessalian/S Thessalonian Thessaly/M theta/MS theurgic theurgical theurgist/S theurgy they they'd they'll they're they've thiamin thiamine/M thiazide/S thick-skinned thick/TPY thicken/Sdr thickening/M thicket/MS thickhead/S thickheaded/P thickish thicknesser/S thicknesses thicko/S thickset thief/M Thiensville/M Thierry thieve/GyDS thievery/SM thievish thievishness thigh-bone/MS thigh/MS thimble/6MS thimbleberry/S thimbleful/MS Thimphu/M thin/TDRGPYS thine thing/M thingamabob/MS thingamajig/SM thingummy/S thingummybob/S thingy/S think-tank think/RJ7GS thinkable/U thinking/U thinks/A thinnish Thinsulate thiol/S third-class third-hand third-party third-rate third/Y thirst/2SMzGDZ thirsty/T thirteen/HM thirty-eight/H thirty-first/S thirty-five/H thirty-four/H thirty-nine/H thirty-one thirty-onefold thirty-second/S thirty-seven/H thirty-six/H thirty-three/H thirty-two thirty-twofold thirty/HMS this this'd this'll thistle/MS thistledown/M thither thole/M Thom/M Thomas/M Thomism/M Thomist/S Thomistic Thompson/M Thomson/M thong/MSD Thor/M thoracic thorax/MS Thoreau/M thorium/M thorn/DpM2ZS Thorn/M Thorndike/M thornlike thornproof Thornton/M thorny/T thorough/YP thoroughbred/S thoroughfare/MS thoroughgoing thoroughwort Thorpe/M Thorson/M those thou though thought's thought-provoking thought/A thoughtful/Y thoughtfulness thoughtless/YP thoughts thousand/HSM Thrace/M Thracian/M thrall/SM thrash/RJSDG thrashing/M Thrasymachus/M thread's thread/AGDS threadbare threadlike threat/SM threaten/dSk three-colour three-cornered three-dimensional/Y three-fold three-handed three-legged three-line three-phase three-piece three-ply three-point three-pronged three-quarter/S three-way three-wheeler three/HMS threepence/M threepenny threescore threesome/SM threnody/SM threonine thresh/SDRG threshold/MS threw/c thrice thrice-married thrift/2pSMzZ thrifty/T thrill/DRMkSG thrip/S thrive/DSkG throat/2DMZzS throaty/TP throb/SGD throbber/S throe/SM thrombi thrombocytopenia thrombocytopenic thromboembolic thromboembolism/S thrombolysis thrombolytic thrombose/SD thrombosis/M thrombotic thrombus/M throne's throne/CSD throng/SGMD throttle/DMGS through through-traffic throughout throughput/SM throw-in throw/RSG throwaway/MS throwback/MS throwdown throwing/c thrown/c throws/c thrum/GDS thrush/SM thrust/GRS Thu thud/DSMG thug-like thug/SM thuggery/M thuggish thuggishness Thule/M thulium/M thumb/DGMS thumbnail/SM thumbprint/S thumbscrew/MS thump/MGSD thumper thunder/SZkMd thunderbird/SM Thunderbird/SM thunderbolt/MS thunderbox thunderbug/S thunderclap/MS thundercloud/SM thunderflash/S thunderfly/S thunderhead/S thunderless thunderous/Y thunderousness thunderstorm/MS thunderstruck thunk Thur/S Thurman/M Thurrock/M Thursday/SM Thurston/M thus thusly thwack/GDS thwart/SDG thwarter/M thy thyasirid thyme/MS thymidine thymine/M thymol thymus/SM thyristor/SM thyroid/S thyroidal thyrotrophic thyrotropic thyrotropin thyroxine/M thyself THz Ti Tiago/M tiara/SM TiB Tiber/M Tiberius/M Tibet/M Tibetan/S tibia/MSO tibiae Tiburon/M tic-tac tic/SGRD tick-tack tick-tock/GSDM tick/MS ticker-tape ticket-day ticket-of-leave ticket/SMdZ tickety-boo tickle/DSGR ticklish/P tickover Ticonderoga/M tidal tiddly/T tiddlywinks tide/ZD2SoJG tideline/S tidemark/S tidewater/SM tideway/M tidier/U tidily/U tidiness/U tidy/GYSDT tie-break tie-in tie/RSMDG tieback/SM tiebreaker/SM tied/UA Tienanmen tier/D Tierney/M ties/AU tiff/MS TIFF/S Tiffany/M tiger/MS tigerish tight-arsed tight-fisted tight-fitting tight-knit tight-lipped tight/SYPT tighten/dS tightened/c tightly-knit tightrope/MS tigress/MS Tigris/M Tijuana/M Tikal/M tike's tiki/S tilapia tilde/SM tile/RDSMG till/DRSG7 tillage/SM Tillard/M tilled/E tiller/EMS tillite/S Tillman/M Tilly/M tilt/DGS tilters tilth/M Tim/ZSM Timaeus timber/SdM Timberlake timberline/S timbre/MS timbrel/SM Timbuktu/M time's/c time-and-motion time-consuming time-honoured time-lapse time-out/S time-server/SM time-serving/S time-share/DGS time-spans time-wasting time-work time-worn time/pYRDSJMG timebase timed/a timekeeper/SM timekeeping/M timeless/Y timelessness timeline/S timeliness/U timely/TP timeout/S timepass timepiece/SM times/ca timescale/S timeshare/SD timeslot/MS timesome timespan timestamp/SGD timetable/SDGM Timex/M timid/Y timidity/SM timidness timing/M Timmy/M timocracy/S Timor/M Timorese timorous/Y timorousness Timothy/M timpani timpanist/S Timur/M tin-glaze tin-opener tin-pan tin-plate/M tin-tack tin/DGZSMz2 Tina/M tincture/DSMG tinder/M tinderbox/SM tine/MSZ tinfoil/M Ting's ting/D tinge/S tingeing Tingey/M tingle/GDS tingly/T tinker/dMS tinkerbird/S tinkerer/S tinkle/DSGY tinnitus/M tinny/TP tinplate/D tinpot tinsel/MGSDY Tinseltown/M tinsmith/SM tint/MSDG tintinnabulation/SM tinware/M tiny/PT Tioga/M tip-offs tip-top tip/RSGMD Tipp-Ex Tippecanoe/M Tipperary/M tippet/SM Tippex tipple/DSRG tips/zZ2 tipster/SM tipsy/TP tiptoe/DGS Tipton tiptop Tir-na-nog tirade/SM tiramisu Tirana/M Tirane tire/cAGDS tired/Y tiredness Tiree/M tireless/Y tirelessness tiresome/Y tiresomeness tiring/U Tirol/M Tirolean/S tissue/MS tit-for-tat tit/RMS titan/MSW Titania/M Titanic's titanically titanite titanium/M titbit/SM tithe/SMDG Titian/M titillate/SnDGkN titillation/M titivate/nSNDG titivation/M title's title-deed/MS title-page title/SGAD titled/U titleholder/MS titmice titmouse/M Tito/M titrate/SGD titration/M titre/MSN titter/d tittle-tattle tittle/MS titular/Y Titus/M tizz/Z tizzy/MS TKO Tkáč TLC TLS Tm TNT to-do/S to/IU toad/MZS toadstool/SM toady/SDGM toadyism/M toast/DGRZMS toasting-fork toastmaster/SM toastmistress/S toasty/T tobacco/MS tobacconist/MS Tobago/M Tobias/M Tobin/M toboggan/S3rMd tobogganist tobramycin Tobruk/M Toby/M tobyman tobymen toccata/M tock/GMDS tocopherol/S tocsin/MS today/M Todd/M toddle/DGSR toddy/MS Todmorden/M toe/DMGS toecap/MS TOEFL toehold/SM toenail/MS toff/SD toffee/SM tofu/S tog/MGSD toga/DSM together togetherness toggle/DGMS Togo/M Togolese toil-worn toil/RSMDG toilet/ySdM toiletry/MS toilette/SM toilsome/Y toilsomeness toing toity token/SQM8 tokenisation tokeniser/S tokenism/SM Toki/M Tokugawa/M Tokyo/M Tokyoite/MS told/AU Toledo/M tolerability/MI tolerable/YI tolerably/I tolerance/ISM tolerant/IY tolerate/NDGBSn toleration/M Tolkien/M Tolkienesque toll-bridge/MS toll-gate/SM toll-house/M toll-road/MS toll/DGS tollbooth/MS Tolle/M Tolman/M Tolstoy/M toluene/M tom-tom tom/MS tomahawk/MDGS Tomas Tomaselli/M tomato/M tomatoes tomb/SM tomblike tombola/M tomboy/SM tomboyish tombstone/SM tomcat/SM tome/SM Tomer/M tomfool tomfoolery/MS Tomkins/M Tomlin/M Tomlinson/M Tommie/M Tommy/MS tomography/MW Tomoko/M tomorrow/MS Tompkins/M tomtit/SM Tomé/M ton/droMWS tonal tonality/SM Tonbridge tone's/cf tone-deaf tone/IRDGS toneless/Y tonelessness tones/fc tong/S Tonga/M Tongan/SM tongue-in-cheek tongue-tied tongue-twister/S tongue/GSMD tonguing/M Toni/M Tonia/M tonic/MS tonight/M tonkatsu tonnage/SM tonne/MS tonner tonometer tonsil/SM tonsillar tonsillectomy/SM tonsillitis/M tonsorial tonsure/SMGD Tony/M Tonya/M too took/afcA tool's tool/AGDS toolbar/SM toolbox/MS toolchain/S toolkit toolmaker/SM toolmaking/M tooltip/S toon/S toot/GRDS tooth/zMpDZ toothache/MS toothbrush/SM toothbrushing toothcarp toothpaste/MS toothpick/SM toothsome toothy/T tootle/DSG toots/Z tootsie/M tootsy/SM top-down top-heavy top-level top-line top-notch top-up top/MWwGpR1JDS topaz/MS topcoat/MS topdressing/S Topeka/M toper/M topflight topgallant/M topiary/S topic/MS topicality/MS topknot/MS toplessness topman topmast/SM topmen topminnow/S topmost topographer/MS topography/S1WMw topology/w13SM toponymics toponymy topophilia topping/M topple/GDS tops/Z topsail/MS topside/SM topsoil/M topspin/MS topsy-turvy toque/MS tor/M Torah/MS Torbay torch-bearer/SM torch/SMDG torchlight tore toreador/SM Torfaen/M torment/GDkS tormentor/SM torn tornadic tornado/MS tornadoes Torness toroid/oSM toroidal Toronto/M torpedo/DMG torpedoes torpid/Y torpidity/S torpor/MS Torquay torque/DSGM torquey torquier torquiest torr Torrance/M torrent/SM torrential Torres Torricelli/M torrid/Y torridness Torrington/M torsion's/I torsion/MSo torsional torso/SM tort's tort/FSEA torte/MS tortelli tortellini/M tortilla/MS tortious/Y tortoise/MS tortoiseshell/SM tortuous/Y tortuousness torture/RDGS torturous torus/SM Torvalds/M Tory/SM tos Tosca/M Toscanini/M tosh Toshiba/M toss-up/SM toss/GRSD tostada/S tostado/S tosylate/S tot/DSoMG total/s9MDGS totalitarian/S totalitarianism/SM totality/SM Totalizator/M Tote's tote/GS totem/MS totemic totemism totemist/S totemistic Toto/M Tottenham/M totter/Sdk totting-up toucan/MS touch-and-go touch-judge/S touch-sensitive touch-tone touch-typists touch/AGDS touchable/U touchdown/MS touched/U toucher/S touching/Y touchless touchline/MS touchpad touchpaper touchpoint/S touchscreen/S touchstone/SM touchwood touchy-feely touchy/TPY touché tough-minded tough/GYPTSD toughen/dS Toulon/M Toulouse/M toupee/MS tour/CSGMFD tourer/SM tourism/MS tourist/ZMSGD touristic touristically tourmaline/SM tournament/MS tourney/DGSM tourniquet/MS tourtière tousle/DSG tout/DSG tow-bar/MS tow-coloured tow-head/SMD tow-line/SM tow-path/MS tow-rope/SM tow/DRGS toward/S towel/SMDG tower/dk Towler/M town/SmM5 townee townie/SM townland/S Townley/M townscape Townsend/M townsfolk township/MS townspeople/M tows/f Towsley/M toxaemia/M toxaemic toxic/S toxicant/S toxicity/SM toxicology/3Mw toxigenicity toxin/MS toxophilite/S toxoplasma toxoplasmosis toy/MDSG toymaker/SM Toynbee/M Toyoda/M Toyota/M toyshop trabecula trabeculae trabecular trabeculate trace's trace/ANDGnS traceability traceable/U traced/U traceless/Y tracer/ZSM tracery/SM traceur/SM Tracey/M trachea/M tracheae tracheal tracheotomy/MS trachoma trachomatous Traci/M Tracie/M tracing/MS track-laying track/GMRSDp trackback/S trackball/S trackbed tracked/U trackie/S trackpad tracksuit/MS trackway/S tract's/F tract/E7ASF tractability/I tractable/IY tractably/I traction/FCESMA tractive tractor/FSMCA tracts/C Tracy/M trad trade-in/S trade-off/S trade/Mm5GRSD trademark/GSDM tradescantia tradespeople tradition/SMo traditional/3 traditionalism/MS traditionalist/W traditionally/U traduce/GRDS traducement Trafalgar/M traffic-calmed traffic-calming traffic/pDRMGS trafficking/S Trafford tragedian/SM tragedienne/SM tragedy/SM tragi tragic/Y tragical tragicomedy/MS tragicomic tragus trail/MGRSD trailblazer/MS trailblazing trailer/d trails/F train-bearer/S train-spotter/M train-spotting train/MADGS trainable/U trained/U trainee/SM traineeship/S trainer/MS training/MS trainload trainman/M trainmen/M trainspotter/S trainspotting traipse/SGD trait/SM traitor/MS traitorous/Y trajectory/SM tram/SM tramcar/S tramlines trammel/SDG trammelled/U tramontana tramp/RDGS trampette trample/DSG trampoline/SM trampolinist tramway/SM trance/MS tranche/MS Tranmere tranny/S! tranquil/Y tranquillity/S tranquilly/Q8q-s9 trans transact/x transalpine transaminate/SGDN transatlantic transborder/S transceiver/SM transcend/SDG transcendence/MS transcendent/oY transcendental/3 transcendentalism/SM transcendentalist transclude/SGD transcode transcompile/SGD transcontinental transcribe/RGNSDX transcript/MS transcription/M transcriptional transcriptionally transcriptome/S transcurrent transduce/SGDN transducer/MS transect/SG transept/SM transexual/SM transfect/SGD transfectant transfection transfer/DR7SGMg transferability/M transferee/SM transference/SM transferor/SM transferral/SM transferware transfinite transfixion transform/R7 transformational transformationally transformative transformed/U transgender/d transgenderism transgenderist/S transgene/S transgenic transgress/NSDVGX transgression/M transgressor/S transhistorical transhumanism transhumanist transience/ZSM transiency/S transient/SY Transifex transistor/Q8MS transit/dxXuvNVy transition/DMG transitive/IPY transitivity/M translatability/M translatable/U translate/DgNGnS translated/aU translates/a translating/a translation/aSM translational translator/MS transliterate/GnD translocate/GDS translocation/S translucence/ZM translucency/SM translunar transman transmarine transmembrane transmen transmigrant/S transmissible transmission/AM transmissivity/S transmit/AXGNSD transmittable transmittal/MS transmittance/MS transmitter/MS transmogrification/M transmogrify/nSDNG transmural transmutability transmutative transmuter/S transnational/S transnationalism transom/SM transonic transparency/SM transparent/Y transpeople transperson transpersonal transphobe/S transphobia transphobic transpile/SGDR transpiration/M transpire/DnNSG transplant/7Nn transponder/M transport/MBnN transportable/U transportation/M transposable transpose/N transposed/U transposon/S transputer/MS transracial transsexual/SM transsexualism/MS transsexuality transubstantiation/SM transuranic Transvaal/M transversal/M transverse/Yo transvestism/SM transvestite/SM transvestitism transwoman transwomen Transylvania/M Transylvanian trap/JSRDMG trapdoor/S trapeze/SM trapezia trapezii trapezium/SM trapezius trapezoid/SM trapezoidal trappable/U Trappist/SM trapshooting/M trash/SGD2MZ trashy/TP trauma/Q8SW1M traumata traumatisation traumatism traumatization travail/SDGM travel/DRGJS travelled/U travelogue/MS Travers traversable traversal/SM traverse/DSG travertine/M travesty/MDSG Travis/M Travolta/M trawl/SRGD tray/SM Traynor/M treacherous/PY treachery/MS treacle/MY tread/ASG treadle/DSGM treadmill/MS treason/S7M treasonous treasure-trove/SM treasure/DRSZMG treasury/SM treat/LM7ZDSG treatable/U treated/KUAa treating/a treatise/MS treatment/KSM treats/aA treaty/MS treble/SDG Treblinka/M tree/MpGS treelike treeline treetop/MS trefoil/SM trek/SRDGM Trekkie/SM trellis/MdS trelliswork trematode/SM Tremayne/M tremble/SGYkD trembler/M trembly/T tremendous/Y tremendousness tremolo/MS tremor/SMd tremulous/YP trench's trench/AGDS trenchancy/SM trenchant/Y trencher/mSM trend/DzZ2MSG trendsetter/S trendsetting trendy/T Trent/M Trenton/M trepanned trepidation/MS Trescothick trespass/RDSG tress/aMS tresses/E trestle/MS Tretikov/M Trevino/M Trevor/M trews tri-axle/S tri-band triable triac/S triacetate triad/WSM triage/SDMG trial's/Aa trial/KaA trialled trialling trials/Aa triangle/SM triangular/Y triangulate/NnSGD triangulation/M Triassic triathlete/S triathlon/S triatomic triaxial triazine tribal/Y tribalism/M tribe/SmM5 tribrach tribrachic tribrachs tribulation/SM tribunal/SM tribune/SM tributary/SM tribute's tribute/FSE trice tricentennial triceps/M triceratops/M trichiasis trichina/M trichinae trichinoses trichinosis/M trichloroethane trichloroethylene trichological trichologist/S trichology trichome/S trichomoniasis trichopteran/S trichotillomania trichotomous trichotomy/S trichromatic Tricia/M trick/RSGD2MzZ trickery/SM trickish trickle/DSG trickster/MS tricky/TP triclinic tricolour/SDM tricot tricuspid tricycle/GSM tricyclic/S tricyclist/S trident/SM tridimensional tried/U triennial/YS trier/MS Trieste/M triffid/S trifle/GRMSD trifocals trifoliate trig/DRGS trigeminal trigger-happy trigger/SdA triggerfish/S triglyceride/MS triglyph/S triglyphic trigonocephaly trigonometry/WwM trigram/S trigraph/S trihedral trike/M trilateral trilby/MS trilinear trilingual trill/SMGD trillion/HS trillium/SM trilobite/SM trilogy/SM trim/DTGJSRY trimaran/SM Trimble/M trimer/S trimeric trimerous trimester/SM trimeter/S trimethoprim trimetric trimetrical trimmed/U trimming/M trimness trimodal trimonthly Trina/M trinary trine/S Trinidad/M Trinidadian/S trinitrotoluene/M trinity/SM trinket/SM trinomial/S trio/SM triode/SM triolet/S trioxide/M trip/SDRGMY tripartite tripe/M triphthong/S triphthongal triplane/S triple/SGD triplet/SM triplex/SD triplicate/S triplication/M triploblastic triploid/S triploidy triply/N tripod/SM tripodal Tripoli/M tripos/SM Tripp/M tripping/Y triptan/S triptych/M triptychs tripwire/SM triquetral trireme/SM trisect/SGD trisection/S trisector/S Trish/M Trisha/M trishaw/S trisodium trisomy/S Tristan/M tristate trisyllabic trisyllable/S trite/YF triteness tritium/M tritocerebra tritocerebrum Triton/M triton/SM tritone/S triturate/SDGN triturator/S triumph/SDGM triumphal/Y triumphalism triumphalist/S triumphant/Y triumvir/MS triumvirate/MS triune trivalent trivet/SM trivia/o trivial/Q8q- triviality/MS tRNA trochaic/S trochanteral trochanteric trochee/MS trochlear trochophore trod/A trodden/UA Trogir/M troglodyte/SM troika/SM Troilus/M Trojan/MS trojan/SM troll/DGMS trolled/F trolley/SM trolleybus/S trollop/SM Trollope/M trombone/3MS trompe Trondheim/M troop/RDMGS troopship/MS trope/WMSw1 trophically trophoblast/SW trophy/MS tropic/SM tropism/MS troposphere/MW troppy/TYP trot/GRSD troth/S Trotsky/M Trotskyism Trotskyist/S Trotskyite/S troubadour/SM trouble/DGSM troubled/U troublemaker/MS troublemaking troubleshoot/GRS troublesome/PY trough/MS trounce/GDS troupe/SRM trouser/S trousered trousseau/M trousseaux trout/M Troutman/M trove/SM Trowbridge/M trowel/MS troy Troy's truancy/SM truant/GDMS truce/SM truck/DRGMS Truckee/M truckle/GSD truckload/SM truculence/M truculent/Y Trude/MZ Trudeau/M trudge/SDG Trudi/M Trudy/M true-blue true-born true/DTG truelove/MS trueness truffle/MS truism/MS Trujillo/M truly Truman/M Trumann/M Trumbull/M Trumland trump/SDGM trumped-up trumpery/SM trumpet-call trumpet/rdSM truncate/GDSnN truncation/M truncheon/MS trundle/SDG trunk/SGM trunkfish/S Truro/M Truscott/M truss/GSD trust's trust/E6SaDGj trustable trusted/U trustee/SM trusteeship/SM trustful/P trustfulness/E trustiness trusting/Y trustworthiness/U trustworthy/P trusty/TMS truth/MUSj6 truthfulness/U truthiness TRW try-out/MS try/ADGS trying/Y trypanosome/S trypanosomiasis trypsin/M trypsinogen tryptophan tryst/GDMS tsar/S tsarevich tsarina's tsarist tsetse tsukemono/S tsunami/SM Tsushima/M Tswana/M TTL tu tu-whit tu-whoo Tuareg/M tub/drSMZ tuba/SM tubby/T tube/MpS tubercle/SM tubercular tuberculin/M tuberculoid tuberculoses tuberculosis/M tuberculous tuberose/MS tuberous tubing/M tubular tubule/SM TUC Tuck's tuck/DRSG Tuckerman/M Tucson/M Tudor/SM Tue/S Tuesday/SM tuff tuffaceous tuft/DSGZM tug/GSD tugboat/MS tuition/SMI Tulane/M tularaemia tularaemic tulip/MS tulle/MS Tullow/M Tully/M Tulsa/M tum/Z tumble-drier tumble-dry/SD tumble/RSGD tumbledown tumbler/6 tumblerful/S Tumblr/M tumbrel/MS tumbrils tumescence tumescent tumid/Y tumidity/SM tummy/MS tumorous tumour/MS Tums/M tumult/SM tumultuous/PY tumulus/M tun/W7rdSZ tuna/MS tunable/C Tunbridge tundish tundra/SM tune's tune/ACSGD tuneage tuneful/PY tuneless/YP tunesmith/S tungstate tungsten/M tunic/SM tunica tunicae tunicate/SD tuning/SM Tunis/M Tunisia/M Tunisian/S tunnel/JSRGDM tunny/MS tupelo/M tuple/S tuppence/M Tupperware turban/SM turbaned turbid turbidite/S turbiditic turbidity/MS turbinate turbine/SM turbo turboboost turbocharge/DG turbocharger/SM turbofan/MS turbojet/SM turboprop/SM turbot/SM turbulence/MS turbulent/Y turd/SM tureen/SM turf/MGZDS turfy/T turgid/Y turgidity/SM Turin/M Turing/M Turingery Turk/WM Turkey/M turkey/MS Turkic/M Turkington/M Turkish Turkle/M Turkmen/S Turkmenistan/M Turks/M Turku/M Turkwel/M turlough Turmenistan turmeric/MS turmoil/M turn-buckle/SM turn-down turn-off/SM turn-up/S turn/AScGD turnable turnabout/MS turnaround/MS turnbuckle/S Turnbull/M turncoat/SM turned/U turner's turner/AS turning/SM turnip/SM turnkey/M turnout/MS turnover/MS turnpike/SM turnround turnstile/SM turnstone/MS turntable/MS turpentine/M Turpin/M turpitude/MS turquoise/MS turret/MS turreted turtle-dove/SM turtle-neck/DSM turtle/MS turvy Tuscaloosa/M Tuscan Tuscany/M tush tusk/DRGMS Tuskegee/M tussle/SDG tussock/MSZ tut-tuts tut/SGD Tutankhamen/M Tutankhamun tutelage/MS tutelary/S tutor/dSM tutored/U tutorial/MS tutorship/S Tutsi tutti/S Tuttle/M tutu/MS Tuvalu/M TV/M TVA TVs TWA/M twaddle/M twain twang/DGZSM twangy/T tweak/DSRG twee/T Tweed/M tweed/MS2Z Tweedledee/M Tweedledum/M Tweedy/M tweedy/T tweeness tweeps tweet/SRGD tweetable tweetup/S tweeze/SDGR twelve/H twenty-eight/H twenty-first/S twenty-five/H twenty-four/H twenty-nine/H twenty-one twenty-onefold twenty-second/S twenty-seven/H twenty-six/H twenty-three/H twenty-twenty twenty-two twenty-twofold twenty/SH twerk/SGD twerp/MS twice twice-married Twichell/M Twickenham twiddle/YGDS twiddler/M twiddly/T twig/SMZDG twiggy/T twilight/SM twilit twill/DSG twin-tub/S twin/DSdGM twine/SM twinflower/S twinge/DMGS Twinkie twinkle/YGDS twinset/S twirl/DRGS twirly/T twist/RZGSD twisted/U twistor twists/U twit/DGSM twitch/SGDZ twitcher/S twitchy/T twitter/dS twitterer/S twittery twittish two-dimensional/Y two-edged two-faced two-handed two-sided two-step two-stroke/MS two-thirds two-timer two-tone two-way two-wheeler/MS two/SM Twofish twofold twopence/SM twopenn'orth twopenny twosome/SM Twp TWX Ty Tybee/M tycoon/SM Tydfil/M tying/UA tyke/SM Tylenol/M Tyler/M Tylor/M tympan tympani tympanic tympanist/MS tympanum/SM Tynan Tyndall/M Tyne/M Tynecastle/M Tynemouth Tyneside/M type's type/aASGD typecast/G typed/U typeface/MS typescript/MS typeset/RSG typewriter/MS typewriting typewritten typhoid/M typhoon/SM typhus/M typical/Y typicality/M typify/DGS typo/3MS typographer/MS typography/SWMw1 typology/wSM13 tyrannosaur/MS tyrannosaurus/S tyrannous tyranny/8SQ1Mw tyrant/SM tyre/SM Tyree/M tyro/SM Tyrol's Tyrolean/S Tyrone/M tyrosinase tyrosine/M Tyschtschenko/M Tyson/M tzar/SM tzarina/MS tzatziki tzigane Tzu/M tête tête-bêche tête-à-tête Tórshavn/M U U.K. U.N. U.S. UAR UART UAV/S UAW UB40/S ubiquitarian/S ubiquitarianism ubiquitin ubiquitinate/SGDN ubiquitism ubiquitist ubiquitous/Y ubiquitousness ubiquity/S ubuntu/M Ubuntu/M UCL/M UCLA/M Udall/M udder/SM UDF UDG/S Udmurt Udod UDP UEFA UEFI UFO/SM ufological ufologist/S ufology/M Uganda/M Ugandan/S ugh/F uglify/SGDN uglily ugliness ugly-looking ugly/T uh UHF Uhura/M UI UK/M ukase/SM Ukraine/M Ukrainian/S ukulele/SM UL Ulan/M ulcer/VMS ulcerate/SGNDn ulceration/M ulcerous Ullmann/M ulna/M ulnae ulnar Ulrich/M Ulrika/M Ulrike/M ulster/MS ulterior ultimate/Y ultimatum/MS ultimo ultisol/S ultra-fine ultra-high ultra-thin ultra/S ultrabasic ultrabook/S ultracentrifugal ultracentrifugation ultracentrifuge/MD ultracold ultracompetent ultraconservatism ultraconservative/S ultracritical ultradian ultrafast ultrafastidious ultrafiltration ultralight/S ultramafic ultramarine/SM ultramicroscope ultramicroscopic ultramodern ultramontane ultraportable ultrarapid ultrasafe ultrasaurus ultrasonic/SY ultrasonography/W ultrasound/SM ultrastructural ultrastructure ultraviolet Ultrix/M ululate/NnSGD ululation/M Ulysses um Umbanda umbel/SM umbellifer/S umbelliferous umber/SM Umberto/M umbilical/Y umbilici umbilicus/M umbo/S umbonal umbonate umbones umbra/MS umbrae umbrage/SM umbrageous umbrella/MS umbrellabird/S UMIST umlaut/GDSM umpire/DMGS umpteen umpteenth un-English UN/M unabated/Y unabating unable Unabomber unacademic unacceptability unacceptable unaccountability unaccountable unaccustomed/Y unactionable unaddressed unadjacent unadvisedly unaesthetic unaffected unaggressive unaired unalarmed Unalaska/M unalike unalive unallied unallowable unalterable/Y unambiguity unambitiousness unambivalent/Y unamended unamiable unamplified unamusable unanalysable unanchored Unani unanimated unanimity/SM unanimous/Y unapologetic/Y unapparent unappeasable unappreciative unappropriated unaspirated unassertive unassuming/Y unattainable unattractiveness unaugmented unauthentic unavailable unavailing/Y unaware unbacked unbalance unban/DG unbearableness unbeautiful/Y unbecomingness unbefitting/YP unbeholden unbeknown unbeknownst unbelief unbelieving/Y unbind/G unblinking/Y unbound/Di unbranched unbreakable unbrokenness unbruised unbrushed unbuckle/G unbudgeable unbuild/SG unbuilt unburden/d uncached uncalled-for uncanonical/Y uncapping uncatchable uncatered unceasing/Y uncertainness unchallengeable unchanging/Y unchaste uncheck/SGD unchristian uncial/S uncirculated uncivil unclad unclarity unclassified uncle/MS unclean uncleanness unclear uncleared unclearly unclearness uncloak/G unclog/DG uncoded uncoloured uncombined uncomely uncomfortable uncommon uncommunicated uncommunicative uncompanionable uncompetitive/PY uncomplicatedly uncomplicatedness uncompounded uncomprehending/Y uncompress/G unconcentrated unconditional unconditionality unconducive unconference/S unconfessed unconfident unconfidently unconfirmed unconformably unconfused unconjugal unconjugated unconnected unconscionable/Y unconsciousness unconstitutional unconstitutionality unconstructive uncontainable uncontended uncontrollability unconventional uncool uncopiable uncord/SGD uncork/G uncosted uncountability uncouple/G uncouth/Y uncouthness uncover/d uncreative unction's/I unction/M unctuous/Y unctuousness uncultivable uncured uncurl/G uncurtained uncustomary uncut undatable undated/I undaunted/Y undead undebatable undebated undecidability undecidable undecided/SY undeciphered undedicated undefeatable undelete/DG undeliverable undeniable/Y undented undependable under under-investment under-read under-report under-represent under-secretary/SM underact/SGD underactive underage underappreciate/DN underarm underbid/G underbody/S underboss underbred underbridge/S underclass/S undercoat/G undercount undercover undercurrent/M undercut/G underdog underdress/SGD underemphasis underfeed/G underfloor underflow/M underfoot underframe underfur undergarment undergird/SGD undergone undergrad/MS undergraduate underground underhand/i underinvest/SGD underlay underlease underlet/SG underline underling/MS underlip undermine/GR underneath/S underpainting underpass/M underpay underperform/SG underperformance underpin underpinning/M underplant/SD underpopulation underprepared underrate/GSD undersea undersecretary/S undersense underserved underset/SG undersheriff undershot undershrub/S undersigned/M undersize underskirt undersow/SGD undersown underspecification underspend understaffing understand/aJSG understandability understandable/Y understander understanding/aM understandingly understater/S understeer/SGD understood/a understory/S understrength understructure understudy/M undersupply/S undersurface undertaking/M undertone undertow/M undervalue underwater underway underwear/M underweight underwing/S underwire/SD Underwood/M underwork/D undescended undesignated undesigned undesignedly undesirable undetermined undine/S undiscriminating undisputedly undissociated undistracted undiversified undo/G undoable undogmatic undoubted/Y undrained undramatic undraw/SG undrawn undress/G undrew undrunk undue undulant undulate/SnNDG unduplicated unearth/YSG unease/2 uneatable unemotional unending/YP unendowed unenergetic unengaged unenjoyable unenlightenment unenviable unequal/D UNESCO unessential unevangelical uneven unevenness uneventful/P unexacting unexaggerated unexceptionable/Y unexcitability unexcitable unextended unfailing unfair unfairness unfaithfulness unfamiliar unfamiliarity unfashionable unfatherly unfathomable/Y unfavourable unfavoured unfeasibility unfeasible/Z unfeeling unfelt unfeminine unfermented unfertilised unfertilized unfiled unfit/DG unfitness unfix/G7D unflappability unflappable/Y unflinching/Y unfold/G unfollow/DG unforgeable unforgivable unforgiving unforgivingness unforked unfought unfree unfreedom unfreeze unfriend/SDG unfriendliness unfrozen unfruitful unfulfillable unfulfilling unfunny unfussy/Y ungainliness ungainly ungainsayable ungallant ungeared ungenerous ungenerousness ungentle ungodliness ungodly ungraceful ungraciousness ungrammatical ungrateful unguarded unguent/S ungulate/S unhand/GZ unhandled unhandsome unhang unhappen unhappiness unharmonious unhatched unhealthiness unheard-of unhearing unhedged unheedful unheedingly unhelpful unheretical unheroic/Y unhistorical unhitch/G unholy/RTP unhook/G unhorse unhung unhurt uni uniaxial/Y unibody/S unicameral unicast UNICEF/M unicellular unicity Unicode/M unicorn/SM unicuspid unicycle/DMG3S unideal unidimensional unidirectional/Y unidirectionality uniface unifiable unification/MA unifier/MS uniform/SMYD uniformitarianism uniformity/MS unify/AGNSnD unilateral/Y unilateralism/M unilateralist/S Unilever/M unilingual unilingualism unilingually unimodal unimolecular unimpeachable/Y unimplementability unimportance unimportant unimposing unimposingly uninflected uninhibited/Y uninstal/S uninstall/SGDR uninstallation/S unintellectual unintelligibility uninterestingness uninterrupted/Y uninterruptedness uninterruptible unintuitive uninvested union's/EA union/qQ3 Uniondale unionism/MS unionist unions/EA unipolar unipolarity unipotent uniprocessor unique/Y uniqueness unironed unironic/Y uniserial unisex unisexual/Z unisexuality UNISON unison/S unissued Unisys/M unit/d UNITA Unitarian/SM Unitarianism/M unitarily unitarism unitarist/S unitarity unitary unite/AGEDS unitive unity/MES univalent/S univalve/SM univariate universal/8QS universalism/M universalist/S universalistic universality/SM universe/oMS university/MS Unix/M unjaded unjointed unjust unkempt unkept unkeyed unkillable unkind/Y unkindness unking/SGD unkink/SGD unknit/SGD unknot/SGD unknowability unknowable unknowing/P unknowledgable unknowledgeable unlaid unlap unlatch/G unlawfulness unlay/G unlearnedly unliberated unlike unlikeness unlink/G unlit unload/G unlobed unlock/G unlogical unlooked-for unloose unlovable unlovely unluckiness unmanageable/Y unmanliness unmanly unmannered/Y unmannerly unmarried unmask/G unmatch/SGD unmatchably unmated unmeaning unmediated unmedicated unmeet unmeetable unmeetly unmeetness unmellow unmellowed unmelodic unmelodiously unmelodramatic unmeltable unmelted unmelting unmember/Sd unmemorable/Y unmemoried unmentionable/S unmerciful/P unmet unmetalled unmetered unmethodical/Y unmetrical unmilitary unmindfully unmindfulness unmissable unmissed unmistakable/Y unmistakeable/Y unmistaken unmitigatedly unmodifiable unmoral unmorality unmothered unmotherly unmould unmouldy unmount/SGD unmourned unmouthable unmovable unmovableness unmovably unmoveable unmoveably unmovedly unmuffle/D unmunch/DMRGS unmurmuring/Y unmusical/P unmusicality unmutilated unnail/D unnamable unnamed unnatural unnavigability unnavigable unneighbourliness unneighbourly unnerve/k unnoticeably UNO unoaked unobjective unobliging unobscured unobservable unobserving unobstructive unobtrusiveness unobvious unoffending unoiled unopinionated unordinary unorganized unoriginality unoriginally unornamented unpacker/S unpair/SDG unpalatable unpardonableness unparented unpartizan unpassable unpatched unpatented unpatriotically unpatrolled unpatterned unpeg/SGD unpeople/GS unperfumed unperson/S unpersuadable unpersuaded unpersuasive unperturbed/Y unphilosophic/Y unphilosophical unphysical unphysiologic/Y unphysiological unpick/GS unpicturesque unpigmented unpin/GD unpleasant unpleasantness unplumbable unpoetic unpoetical unpoetically unpointed unpolitic unpolitical unpopular unported unposed unpossessed unpower unpowered unpowerful unpracticable unpractical unpracticality unpracticalness unprecedentedly unprefixed unpremeditatedly unprepared unpreparedness unprescribed unpresentable unpressed unpresuming unprintably unprioritised unprioritized unproblematical unproblematically unprocessable unprofessional unprofitable unprotesting unprotestingly unprotrusive unproud unprovability unprovable unprovableness unproved unprovided unprovidential unprovisioned unprovocative unpublish/SGD unpunctual unquiet/YP unquote/B unrated unratified unreachableness unreachably unread/2B unreadably unready unreal unrealism unreasoning/Y unrefuted unregeneracy unregenerated unregenerately unregeneration unrelated unrelatedness unrelenting/Y unremarked unremitted/Y unremitting/Y unrented unrequested unreservedness unrest unresting unrestingly unrestorable unrestored unretouched unrevealed unreversed unreviewed unrevised unrevoked unripe unromantic/Y unroof/SGD unruliness unruly/T unsalaried unsanctified unsatisfactoriness unsatisfyingly unsaturation unsay/SG unscalable unscaleable unscarred unscrew/G unscriptural unscrupulousness unsearched unseaworthiness unsectarian unsecure unseduced unseeing/Y unseemly unselect/SGD unselfconscious/Y unselfconsciousness unsellable unsensational/Y unsentimental/Y unseparated unserious unserviceability unset unsettle/kiL unsewn unsex/DS unsexy/T3 unshakable/Y unshaped unshapely unsharp/P unshifted unship/SGD unshockability unshockable unshod unshrinkability unshrinkable unshrinking unshrinkingly unshrunk unsightly unsized unskilful/YP unsmart unsnap/GD unsocial unsolder unsound unsourced unspeakable/Y unspecific unspectacular unsprayed unstable/TPY unstamped unsteadiness unstick/SG unstimulating unstinting/Y unstoppable/Y unstring/SG unstudiedly unstuffed unstuffy unstylish unsubdued unsubjugated unsubmerged unsubstantial unsubtle unsuccessful unsupportive unsure unsurveyed unsusceptibility unsusceptible unsuspected/Y unsuspecting/Y unsuspicious/YP unsustainably unswathe/SGD unswayed unswerving/Y unswollen unsystematic untagging untaken untalkative untampered untargeted untasted untaxable untestable untether/Sd unthinkability unthinkable/Y unthinking/YP unthorough unthought unthoughtful unthread/DG unthreatened unthreatening unthrifty/YP unthrone/SD untick/SGD untidy/T untie unties/F until untimed untimely untiring/Y untormented untouchability untouchable/MS untouristed untoward/YP untraditional untransferable untranslatability untraversable untrendy untrue untruly untrusting untrustworthy untrusty untuck/D untwist/G untypical/Y untyred unutterable/Y unvaccinated unvalidated unvaryingness unvented unversioned unviability unviable unviolated unvitiated unwaged unwaisted Unwalla unwalled unwarned unwarrantable/Y unwatchable unwatchful unwatered unweaned unweary unwedded/P unweighted unwell unwellness unwept unwhipped unwieldiness unwieldy unwillingness unwinking/Y unwinnable unwired unwisdom unwise unwiseness unwomanly unwonted unwontedness unworkability unworkableness unworkably unworkmanlike unworldly unworthy unwound unwrap/DG unyielding/Y up-tempo up-to-date up-to-the-minute up/MFS Upanishads upbeat/MS upbraid/DSG upbringing/MS UPC upcase/SD upcast/S upcoast upcoming upcountry upcurve/D upcycle/SDG updatable update/DGS updater/M Updike/M updraught/SM upend/SGD upfront upgradable upgrade/DSG7 upheaval/SM upheld uphill uphold/RGS upholster/ASd upholsterer/SM upholstery/SM UPI upkeep/MS upland/SM uplift/SDG uplifter/S upliftment uplink/GDS upload/SDG upmarket upon/F upped upper-case/DSG upper-class/S upper/S uppercase/SGD uppercut/S uppermost upping uppish uppity upraise/SDG uprate/GD upright/YS uprightness uprise uprisen uprising/SM upriver uproar/SM uproarious/PY uproot/SGD uprooter/S uprose ups upsample/SDG upscale/DSG upset/SG upshot upside-down upside/MS upsilon/MS upsize/G upspeak/SG upspoke upspoken upstage/SDG upstairs upstanding upstandingness upstart/MS upstream/M upstroke/MS upsurge/S upswept upswing/MS uptake/SMA uptalk upthrust/SGD uptight uptime Upton/M uptown upturn/SGD upvote/SGD upward/SY upwelling/S upwind Ur/M uracil/MS uraemia/M uraemic Ural/S uraninite uranium/M Uranus/M urban/qQ8- Urbana/M urbane/Y urbanism/M urbanist/S urbanite/SZM urbanity/MS urchin/MS Urdu/M urea/M ureaplasma/S ureter/MS ureteral ureteric urethane/MS urethra/MS urethrae urethral urethritis/M urge/JDGS urgency/SM urgent/Y Uri/M Uriah Uriarte/M uric urinal/SM urinalyses urinalysis/M urinary urinate/DSG urination/M urine/nMNS URL/S urn/SM Urochordata urochordate/S urodynamic/S urogenital urogram/S urography urologist/S urology/wM uroscopy urostyle Urquhart/M Ursa ursine Ursula/M urticaria Uruguay/M Uruguayan/S US/M us/rS7dgl USA usable/UA USAF usage/SM USART USB USC/M USCG USD USDA use/cEDSAa useable used/fU useful/Y usefulness useless/Y uselessness Usenet/M user-definable user-friendliness user-friendly/PT user-generated user-hostile user/aM username/S USG/M usher/dSM usherette/SM USIA using/facA USMC USN USO USP USPS USS USSR usual/UY usualness/U usurer/SM usurious/Y usuriousness usurp/DRNSnG usurpation/M usury/MS UT Utah/M Utahan/SM utan/S UTC Ute/M utensil/SM uteri uterine utero uterus/M UTF-16 UTF-32 UTF-8 Utica/M utile/-8qQ utilisation/f utilise/RBfSGD utilitarian/S utilitarianism/MS utility/MS utilize/RBfnDSNG utmost utopia/M utopian/S utopianism/M Utrecht/M utricle/S utricular utter/YdS utterance/SM uttered/U uttermost Uttlesford uucp/M UUID/S UV UVA uveitis uvula/SM uvular/S UX uxoricidal uxoricide uxorilocal uxorious uxoriously uxoriousness Uzbek/M Uzbekistan/M Uzi/M v V V-mail V-NAND V-neck vacancy/SM vacant/Y vacate/NDSGn vacation/M vaccinate/GDS vaccination/M vaccine/NnMS vaccinia vaccinial vacillate/SDkGNn vacillation/M vacillator/MS vacua/M vacuity/MS vacuolated vacuole/SM vacuous/Y vacuousness vacuum/MS Vader/M Vaduz/M vagabond/GMSD vagabondage/MS vagarious vagary/MS vagi vagina/SMo vaginal vaginismus vaginoplasty vaginosis vagrancy/MS vagrant/YSM vague/TY vagueness vagus Vaida/M Vail/M vain/TY vainglorious/Y vaingloriousness vainglory/SM vainness Val/M valance/MS Valdez/M vale/MS valediction/SM valedictory/SM valence/MKS Valencia/M Valencian/S valency/SM Valentin/M valentine/SM Valentino/M Valenzuela/M Valeria/M Valerian/M valerian/S Valerie/M valet/SMd valetudinarian/MS valetudinarianism/M Valhalla/M valiant/Y valid/InY validate/IDASGN validation/IMA validator/SM validity/SMI valine valise/SM Valium Valk/M Valkyrie/SM vallate Valle/M vallecula valleculae Vallejo/M Valletta/M valley/SM Valli/M valonia/S valorisation valorise/SGD valorize/SGDN valorous/YP valour/M Valparaiso/M valproic Valter/M valuable/YS valuably/I valuation's/C valuation/f valuator/MS value's value-added value-for-money value/CnASNGD valued/Ufc valueless valuer/SM values/fc valuing/fc valve/SDMp valvular vamp's vamp/AGSD vampire/MS vampirism van/SM vanadate vanadinite vanadium/M Vanautu/M Vance/M vancomycin Vancouver/M vandal/Q8MS vandalism/MS vandalistic vandalistically Vanden/M Vanderbilt/M Vandyke/M vane/MS Vanessa/M vanguard/MS vanilla/SM vanish/GJSkD vanity/MS vanquish/RGDS vanquished/U vantage/SM Vanuatu vapid/Y vapidity/SM vaporise/RnSGD vaporize/nRSGND vaporous vapour/MS vapourish vapourware var. Varga/M Vargas/M variability/SIM variable's variable/IS variableness variably/I Varian/M variance's variance/IS variant/IS variate/MnxNS variation/M varicella varices varicoloured varicose varied/U variegate/SnDGN variegation/M varietal variety/SM variola variolar variolous various/Y Variscan variscite varistor/M varix varlet/SM varnish/SDMG varnished/U varnisher/S varsity/SM varve/SD vary/BSDlGkh varying/UY vascular vascularisation vascularise/SGD vascularize/SGDN vasculature vasculitides vasculitis vase/SM vasectomy/MS Vaseline/M vaselined Vasili/SM Vasily/M vasoconstriction vasoconstrictive vasoconstrictor/S vasodilatation vasodilation vasodilator/S vasodilatory vasomotor vasopressin vasopressor/S vasovagal Vasquez/M vassal/SM vassalage/MS Vassar/M Vassilaros vast/PTY Vastag/M vastness/S vat/GMDS Vatican/M vaudeville/SM vaudevillian/SM Vaughan/M Vaughn/M vault/RSGMD vaunt/DGS Vauxhall/M Vax/M VAXes VCR/S VD VDT VDU veal's veal/A vector/FM vectored vectorial vectoring vectorise/nDGS vectorize/DNGnS vectors Veda/MS Vedanta/M vedette/S Vedic veer/DGS veg Vega/SM vegan/MS veganism Vegemite vegetable/MS vegetal vegetarian/SM vegetarianism/SM vegetate/GVnDNS vegetation/M vegetational vegetatively vegetativeness veggie/SM vehemence/M vehement/Y vehicle/SM vehicular veil's veil/DUSG vein/GMSD vela velar/S Velcro/M veld/SM veldt/M Velez/M veliger/S vellum/MS Velma/M velocipede/MS velocity/SM velodrome/S velogenic velopharyngeal Veloso/M velour/MS velouté velum/M Velveeta/M velvet/SZM velveted velveteen/SM Velásquez/M Venables venal/Y venality/SM venation/SM vend/SbDG vendetta/MS vendor/SM veneer/GnDSNM venerate/GBDS veneration/M venereal venesection Venetian/MS Venezuela/M Venezuelan/S vengeance/SM vengeful/Y vengefulness/A venial/Y veniality/S Venice/M venison/M Venkova Venn/M venographic venographically venography venom/MS venomous/Y venomousness venous/Y vent's/F vent/IGFSK ventail vented/KI venter/S ventifact/S ventilate/SNDGnV ventilated/U ventilation/M ventilator/SM ventral/Y ventricle/SM ventricular ventriloquies ventriloquism/MS ventriloquist/MS ventriloquy ventromedial/Y Ventura/M venture/SRDG venturesome/Y venturesomeness venturi venturous/P venue/SMA venular venule/S venulous Venus/S Venusian/S Vera/M veracious/Y veracities/I veracity's/I veracity/SM veranda/SM verandah/MS verapamil veratrine veratrum/S verb/SM verbal/Sqs89QY- verbatim verbena/MS verbiage/SM verbose/Y verboseness verbosity/MS verboten Verdana verdant/Y Verde/M Verdi/M verdict/MS verdigris/M verdure/DSM Vere/M verge's verge/GFSD verger/SM veridical verifiability/M verifiable/U verifiably verified/AU verifies/A verify/BnRDGNS Verilog/M Verisign/M verisimilitude/MS veritable/Y verity/SM Verizon/M Verlinde/M Vermeer/M vermicelli/SM vermicide/S vermicomposter vermicomposting vermicular vermiculate/D vermiculite/SM vermiculture vermiform vermifuge vermilion/SM vermin/M verminous Vermont/M vermouth/MS Vern/M Verna/M vernacular/YS vernacularise/SGD vernacularism vernacularity vernacularize/SGD vernal/Y Verne/M Vernen/M vernier/MS Vernon/M Verona/M veronica/SM Veronique/M verruca/MS verrucae versa Versailles/M versatile/Y versatility/SM verse's verse/ANDXFS versed/U verses/4I verset/S versicle/S versicoloured versification/M versify/GNRSnD version/ODGMIFAS verso/MS versus vert/S vertebra/M vertebrae vertebral vertebrata Vertebrata vertebrate/SIM vertex/MS vertical/YS verticality vertices vertiginous vertigo/M verve/MS vervet/S very/Y vesical vesicle/MS vesicular vesiculate/NGS vesper/S vessel/SM vest/ySDGLoM Vesta/M vestal/S vested/I vestiary/S vestibular vestibule/MS vestige/MoS vestigial vesting/I vestiture/S vestry/mSM vests/I vesture/DSG Vesuvius/M vet/SGMD vetch/SM vetchling/S veteran/MS veterinarian/SM veterinary/S veto/DGM vetoes Vettori/M Vevo/M vex/F vexation/SM vexatious/Y vexatiousness vexed/Y vexes vexing VF VFW VG VGA VHDL VHF VHS VI via viability/MS viable/Y viaduct/MS Viagra/M vial/S6M vialful/S viand/MS vibe/S vibrancy/SM vibrant/Y vibraphone/S3M vibrate/DGnyNS vibration/M vibrational vibrato/SM vibrator/SM viburnum/SM Vic/MZ vicar/SM vicarage/SM vicariance vicarious/Y vicariousness vice anglais Vice's vice-chancellor/SM vice-Chancellor/SM vice-chancellorship/S vice-Chancellorship/S vice-like vice-president/SM vice-President/SM vice-presidential vice-Presidential vice/CSM vicegerency/S vicegerent/SM Vicente/M viceregal viceroy/MS Vichy/M vichyssoise/MS vicinity/MS vicious/Y viciousness/S vicissitude/MS Vick/M Vickers/M Vickery Vicki/M Vickie/M Vicksburg/M Vicky/M victim/s9Q8-MqpS victimhood victor/MS Victoria/M Victorian/SM Victoriana Victorianism victorious/Y victory/SM victual/RSGD vicuña/S Vida/M Vidal/M videlicet video/DMGS videocassette videocast/S videoconference/GS videodisc/MS videogram/S videographer/S videographics videography videophone/SM videotape/SDMG vie/7SDG Vieira/M Vienna/M Viennese/M Vientiane/M Viet Vietcong/M Vietminh/M Vietnam/M Vietnamese/M view's/cKA view/JpDRGS7M viewed/KA viewer/AKSM viewership/M viewfinder/MS viewgraph/SM viewing/M viewpoint/SM viewport/S views/KAc viewscreen vigesimal vigil/SM vigilance/SM vigilant/Y vigilante/SM vigilantism/SM vignette/MGDS vigorous/Y vigorousness vigour/M vii viii Viking/SM Vikram/M Vila/M vile/PYT viler/A vilification/M vilify/DNSnG villa/SM village/RSM villagey villain/MSZ Villainage villainous/Y villainy/SM villanelle/S Villanovan/M Villegas/M villein/SM villeinage/M Villeneuve/M villi Villiers villus/M Vilnius/M vim/M vimana/S vinaigrette/SM Vinay/M Vince/M Vincennes Vincent/M Vincentian/S Vincenzo Vinci/M vincibility vincible vincular vinculum vindaloo/S vindicate/SDNGn vindication/M vindicator/SM vindictive/YP vine/SM vinegar/MS vinegary Vineland vineyard/MS vino/M vinous Vinson/M vintage/SM vintner/MS vinyl/MS viol/MS73 viola/nMS violable/I violate/I violated violates violating violator/SM violence/MS violent/Y violet/SM Violette/M violin/3MS violinist violist viologen/S violoncellist/S violoncello/SM VIP/S viper/SM viperfish/S viperous viraemia viraemic virago/MS viral/Y virality viremia viremic vireo/MS Virgil/M virgin/MoS virginal/S Virginia/M Virginian/S virginity/MS Virgo/SM virgule/MS virile virility/SM virion/S virologist/S virology/M virtual virtualisation/S virtualise/Sd virtualism virtue/SoM virtuosi virtuosic virtuosity/SM virtuoso/SM virtuous/Y virtuousness virulence/S virulent/Y virus/MS vis-à-vis vis/bNX visa/MS visage/SM viscera/o visceral viscid/Y viscometer/SM viscose/SM viscosity/MS viscount/MS viscountcy/MS viscountess/MS viscous/YP viscus Vishnu/M visibility/ISM visible/IY visibly/I Visigoth/S Visigothic vision's/K vision/yGM visionary/S visioning/K visions/K visit/AdS visitant/SM visitation/SM visited/U visitor/SM visor/SM visored vista/SM visual/8sY-9QSq visuomotor visuospatial vita/oM vitae vital/Q8S-q vitalise/CGASD vitalism vitality/SM vitalize/ANnDG vitalized/C vitalizes/C vitalizing/C vitamin/MS vitellogenin Viterbi/M vitiate/SNnGD vitiation/M viticulture/M viticulturist/S vitiligo vitreous/Y vitrification/M vitrify/NGSnD vitrine/S vitriol/MW vitriolically vitro vituperate/DnNSVvG vituperation/M viva/S vivace vivacious/Y vivaciousness vivacity/SM Vivaldi/M vivaria vivarium/M vivendi Vivian/M vivid/YP vivify/ASGND viviparity viviparous viviparously vivisect/xGDS vivisection/MS3 vivisectionist vixen/MS viz. vizier/MS VJ Vladimir/M Vladivostok/M VLC/M Vlei VLF VLSI VM/S VMS/M VOA vocable/AI vocables vocabulary/SM vocal/98-Q3sqSY vocalese vocalic vocalised/U vocalism/M vocalist vocation's/IFA vocation/oMS vocational vocative/YS vociferate/GSNDn vociferation/M vociferous/Y vociferousness vocoded vocoder Vodafone/M vodka/SM Voetsek Voetstoots Vogel/M Vogts vogue/SM voguish/YP voice's/I voice-activated voice-band voice-over/S voice/CGDIS voiced/U voiceful voiceless/YP voicemail void/GD7S voile/SM voilà VoIP vol-au-vent vol. Volapük volatile/qQ8-S volatility/SM volcanic/Y volcanicity volcanism/M volcano-tectonic volcano/SM volcanoes volcanogenic volcanologic volcanological volcanologist/S volcanology vole/MS Volga/M Volgograd/M volition/oMS volitional volitionality Volker Volkeri Volkswagen/SM volley/SDMGR volleyball/SM volt/AMS Volta/M voltage/SM voltaic Voltaire/M voltammetry volte volte-face voltmeter/SM volubility/S voluble/Y volume/MS volumetric/Y voluminous/Y voluminousness voluntarily/I voluntarism/SM voluntarist voluntaristic voluntary/YS volunteer/MGSD voluptuary/SM voluptuous/Y voluptuousness volupté volute/SFD Volvo/M vomeronasal vomit/Sd vomitus von voodoo/SM voracious/Y voraciousness voracity/SM Vorbis/M vortex/SM vortical vortically vorticella/S vortices Vorticism Vorticist/S vorticity/M vorticose vorticular Voss/M votary/MS vote's vote/CDGeS voter/SM votive/Y Votyak vouch/GSRD vouchsafe/DSG voussoir/S Vouvray/M vow/SDGM vowel/SM voyage/SMRGD voyageur/SM voyeur/MS voyeurism/SM voyeuristic VP VPN/S vPro VR VRAM Vreeland/M Vries vroom/DG vs VS VT VTOL vu Vuelta/M vug/S vuggy vugular Vulcan/M Vulcanian vulcanise/GDnS Vulcanite vulcanize/GDNSn vulcanology vulgar/Q-8Yq vulgarian/SM vulgarism/SM vulgarity/MS vulnerability/SI vulnerable/IY vulnerably/I vulpine vulture/MS vulturine vulturish vulturous vulva/M vulvae vuvuzela/S w W WA wa-wa WAAC/S WAAF Wabash/M WAC Wacker wacky/T Waco/M wad/drMGS waddle/DSG Wade's wade/S Wadsworth/M wafer/SM waffle-iron waffle/GMDS waft/SGD wafters wag/DdrSMG wage-earning wage/MS wager/d waggish/Y waggishness waggle/DSG waggoner/MS waggonette/S Wagner/M Wagnerian wagon-lit wagon/SM wagoner/MS wagonette/S wagonload/S wagons-lits wagtail/MS wah-wah Wahhabi waif/MS waifish waiflike Waikato/M Waikiki/M wail/SGD wailer/M wainscot/DGdS Wainwright waist/MDS waistband/SM waistcoat/SM waistline/SM wait/RDSG Waite/M waitress/MSG waive/GSRD waka Wakayama/M wake/j6MGDS Wakefield/M wakefulness waken/Sd wakeup Walbridge/M Walcott/M Waldemar/M Walden/M Waldo/M Waldorf/M Waldron/M wale/MG Wales Walfield Walford/M Walgreen/M Walgreens/M walk-in walk-on walk-through walk/SRGD walkabout/MS Walken/M walkie-talkie/S walkie/S Walkman/S Walkmen walkout/SM walkover/MS walkway/MS wall-eye/DSM wall-to-wall wall/SDGM wallaby/SM Wallace/M Wallachia/M wallcovering wallcreeper/S Wallen/M Waller/M wallet/SM wallflower/SM Wallis/M Walloon/M wallop/dS wallow/GDS wallpaper/dSM Wallwork/M Wally's Walmart/M Walney/M walnut/MS Walpole/M walrus/MS Walsall/M Walsh/M Walsingham/M Walt/MR Waltham/M Walther/M Walton-on-Thames Walton/M waltz/DSGM waltzer/S Walvis/M Walworth/M Walz/M wampum/M wan/dY wand/SM wander/JSdr wanderlust/MS Wandsworth/M wane/S Waner/M Wang/M wangle/GDS wanker/S Wankie wanky wanna wannabe/S Wannier Wansbeck/M want/DGS wanted/U wanton/Y wantonness WAP wapiti/SM Waqar/M war's/C war/pSDGM Waray-Waray warble/GRDS Warburton warcraft/M ward/MAGSD warden/MS warder/SM wardress/MS wardrobe/SM wardroom/SM Wardrop/M wards/Ie ware/MS2Z Wareham/M warehouse/DmMGS warez warfare/M warfarin warhead/MS warhorse/SM warier wariest wariness/U warlike warlock/SM warlord/SM warm-blooded/P warm-down warm-hearted/Y warm-heartedness warm-up/S warm/TRJDSGY warmblood/S warmed/A warming/M Warminster/M warmish warmness warmonger/MS warmongering/M warms/A warmth/M warn/GSDkJ Warne/M Warner/M warning/M warp/DGMS warpaint warpath/MS warplane/S warrant/S7ZDGM warrantable/U warranted/U warrantee warrantor/M warranty/SM warren/SM Warrick/M Warrington/M warrior/MS wars/C Warsaw/M warship/MS wart/MS Wartburg/M warthog/S wartime/SM Warton/M Warwick/M Warwickshire/M wary/UY was wasabi wash-out/S wash/AGDS washable/S washbasin/SM washboard/MS Washburn/M washday/M washed-out washed/U washer/5SM washerwomen/M washhouse/S washing-up washing/SM Washington/M Washingtonian/S Washingtonologist washland washout/MS washstand/SM washtub/S washy/TP wasn't wasp-waisted wasp/MS waspish/Y waspishness wassail/GMSD Wasserman wast/RDG wastage/SM waste-basket waste-paper/M waste/Sj6 wastefulness wasteland/MS wastrel/SM Watanabe/M watch/GmDRS6j watchability watchable watchdog/SGDM watched/U watchfulness watchlist/SGD watchmaker/MS watchmaking watchstrap/S watchtower/SM watchword/SM water-bed/S water-bird/S water-cooled water-glass water-resistant water-soluble water-table water/mMpZdS2 waterbed/S Waterberg waterbird/S waterboard/SGD waterborne waterbuck/S Waterbury/M watercock/S watercolour/3MS watercourse/MS watercraft watercress/M waterdog/S waterfall/SM Waterford/M waterfowl/M waterfowler/S waterfowling waterfront/MS watergate Watergate/M waterhen/S waterhole/S Waterhouse/M watering-hole waterline/S waterlog/SGD Waterloo/M watermark/MDGS watermelon/SM watermill/S waterproof/SGD watershed/MS waterside/SM waterski/SGDR waterspout/SM waterthrush/S watertight Watertown/M Waterval Waterville waterway/MS waterweed waterwheel/S waterworks watery/T Watford/M Watkins Watling/M Watoga/M Watson/M watt/SM wattage/MS Watteau/M Watten/M wattle/SM wattlebird/S Watusi/M Waugh/M Waukesha/M Waupaca/M Waupun/M Wausau/M WAV wav wave/DSZG2 waveband/MS waveform/MS waveguide/S Waveland/M wavelength/MS wavelet/MS wavelike Wavell/M waver/dkS wavering/UY Waverley/M wavy/T wax/GMZDS waxbill/S waxen waxwing/SM waxwork/MS waxy/T way/SM waybill/SM wayfarer/SM wayfaring waylaid Wayland/M waylay/GS waymark/SGDR Wayne/M Waynesboro/M waypoint/S wayside/MS wayward/Y waywardness WC we'd we'll we're we've we/GzJ Weagle/M weak-minded weak/YT weaken/dS weakish weakliness weakling/SM weakness/S weal/M Weald/M wealth/MZ wealthy/T wean/SDG weaners weanling/MS weapon/pdyMS weaponeer/G weaponisation weaponise/SGD weaponization weaponize/SGD weaponry/SM Wear Wear-Tees wear/eSG wearability wearable/US wearer/SM weariness wearing/Y wearisome/Y weary/DkTSGY weasel/SDGM weather-bound weather-worn weather/mdSM weatherboard/GS weathercock/SM weatherdeck/S Weatherford/M weathergirl weatherly/P weatherperson/S weatherproof/DGS weatherstrip/SGD weatherstruck weathertight weathervane/SM weave/AGS weaved weaver/SM weaverbird web-footed web-like web/DSGM Webb/M Webber/M webbing/M webcam/S webcast/SGR WebGL webhead webify/SGD webinar/S webisode/S weblog/SR weblogging webmail/M webmaster/S webpage/S WebRTC/M websafe website/MS webspace Webster/M webtoon/S Wechel/M wed's wed/CAU wedded wedding/MS wedge/GSMD wedgies Wedgwood/M wedlock/M Wedmore/M Wednesday/MS Wednesfield Wednsebury weds/A wee weebill/S weed/pDGMSZ weeder/S weedgrown weedicide/S weedkiller/S weedless weedy/T week-long week/SMY weekday/SM weekend/MS weekender/MS weekly/S weenie weensy weeny/T weep/SZG weeper/SM weepie weepy/TYP weevil/SM weft/SM Weibull/M Weidman/M weigh-in weigh/eSADG weighbridge/S weighed/U weight's weight/cDSG weightiness weighting/SM weightless/Y weightlessness weightlifter/S weightlifting/M weighty/YT Weimar/M Wein/M Weinberg/M Weiner/M Weinstein/M weir/SM weird/TY weirdness weirdo/SM Weiss/M Weissman/M Weissmuller/M Welch/M welcome/kRPYUG welcomed welcomes weld/BGSRD weldmesh Weldon/M welfare/MS welfarism welfarist well-adjusted well-balanced well-behaved well-being well-beloved well-born well-bred well-built well-chosen well-connected well-defined well-deserved well-designed well-developed well-disciplined well-disposed well-dressed well-earned well-educated well-endowed well-equipped well-established well-fed well-formed well-founded well-head/SM well-informed well-intentioned well-kept well-known well-loved well-made well-mannered well-marked well-matched well-meaning well-meant well-nigh well-off well-ordered well-organised well-paid well-placed well-prepared well-preserved well-read well-received well-rounded well-spoken well-structured well-supported well-thought-of well-thought-out well-timed well-to-do well-trained well-tried well-used well-wisher/S well-worn well/DGS Weller/M Wellesley/M Wellingborough/M Wellington/M Wellman wellness wellspring/SM Wellsville/M welsh Welshman/M Welshmen/M Welshwoman/M Welshwomen welt/RSDGM welter/d welterweight/SM Welther Welwitschia/M Welwyn/M Wembley/M Wen/M wench/MS wend/DGS Wendell/M Wendy/M Wenger/M Wengert/M Wenona/M Wensleydale/M went/f Wentworth/M wept were weren't werewolf/M werewolves Werner/M Werther/M Wesley/M Wesleyan Wessex Wesson/M west/M West/M westbound Westbrook/M Westbury/M Westchester/M Westerhill Westerly/S westerly/S Westerman/M Western western/qQSR Westernism/M westernmost Westfield/M Westhampton/M Westinghouse/M Westmeath/M Westminster/M Westmorland/M Weston/M Westphalia/M Westphalian Westport/M Westrum/M westward/S Westward/S Westwood/M wet-nurse/S wet/TSDYG wetland/S wetness wetsuit/S wetware Wexford/M Wexler/M Weymouth/M WFF whack/SDG whale/RMGS whaleboat/SM whalebone/SM Whalen/M Whaley/M wham/SDGM wharf/MS Wharton/M wharves what'd what're what's-her-name what's-his-name what's-its-name what/M whatever Whatley/M whatnot/SM whatsername whatshername whatshisname whatsisname whatsit/S whatsoever wheat/M wheatear/S wheaten wheatgerm wheatgrass wheatish Wheatland wheatmeal Wheaton/M Wheatstone/M whee wheedle/DSG wheel-clamp/GD wheel/GRDSM wheelbarrow/MS wheelbase/MS wheelchair/SM wheelhouse/SM wheelie/SM wheelwright/MS wheeze/DSGZ wheezy/T Whelan/M whelk/SM whelm/fDcGS whelp/SDMG when whence whencesoever whenever whensoever where'd where're where/M whereabouts whereas whereat whereby wherefore/S wherein whereof whereon wheresoever whereto whereupon wherever wherewith wherewithal/M whet/SDG whether whetstone/MS whew whey/M Whibley/M which which've whichever Whieldon/M whiff/DGSM Whig/SM Whiggery Whiggish while/DGS whilom whilst whim/SM whimper/dS whims/1Zw whimsicality/MS whimsicalness whimsy/S whinchat/S whine/SRGDMZk whinge/SGD whingeing whinny/DSG whinstone whiny/T whip/MJGSD whipcord/SM whiplash/MS Whippany whipper whipper-snapper/SM whippet/MS whipping/M Whipple/M whipsaw/SMGD whir/DGS whirl/GDS whirligig/SM whirlpool/MS whirlwind/MS whirlybird/SM whirr whisk/GRDZS whisker/Z whiskered whiskey/MS whisky/S whisper/kdrJS whist/M whistle-blower/S whistle-blowing whistle-stop whistle/DRSG whit Whitaker/M Whitbread Whitby/M Whitcomb/M white-collar white-hot white-out/S white/PSTGMY whitebait/M whitebeam/S whiteboard/S Whitechapel/M whited Whitefield/M whitefish/SM whitefly/S whitefront/S Whitehall/M Whitehaven/M whitehead/S Whitehorse/M Whitehouse/M Whitelaw/M whitelist/SGD Whitemoor whiten/dSr whitewash/DGMS whitewasher whitey/SM Whitfield/M whither whitish Whitley/M Whitlock/M Whitlow/M Whitman/M Whitmer/M Whitney/M Whitsun/M Whitsuntide Whittaker/M Whittall/M Whittier/M Whittington/M Whittle/M whittle/RDGSJ Whitwell/M Whitworth whiz/GD whizzes who'd who'll who're who've who/M whoa whoever/M WHOIS whole/S wholefood/S wholegrain wholehearted/Y wholeheartedness wholemeal wholeness wholesale/RMDG wholesome/UY wholesomeness/U wholistic/Y wholly whom whomever whomsoever whoo whoop/DGS whoopee/S whooper/MS whoopsie/S whoosh/GMDS whop/RG whore/SDGM! whoredom/! whorehouse/MS! whoremaster/S! whorish whorishly whorishness whorl/SMD whose whoso whosoever why whys WI Wi-Fi Wicca Wiccan/S Wichita wick/RiSDhM wicked/P wickeder wickedest Wickepin/M wickerwork/M wicket-gate wicket-keeper/SM wicket-keeping wicket/SM wicketkeeper/S wicketkeeping wickiup Wickliffe/M Wicklow/M wide-angle wide-area wide-eyed wide-ranging wide/TY wideawake wideband widen/rdS wideness widescreen/S widespread widgeon/M widget/SM Widnes widow/RMSDG widowhood/S width/SM widthways Wieland/M wield/SRDG Wiens Wiesbaden/M wife/MpY wifedom wifeliness wifely/T wig/MGSD Wigan/M Wiggins wiggle/RGYDS wiggly/T Wight/M wigwag/GSD wigwam/SM Wii/S wiki/SM Wikibooks Wikidata Wikileaks/M Wikimedia/M Wikinews Wikipedia/SM Wikipedian/S wikiquette Wikiquote Wikisource Wikispecies Wikiversity Wikivoyage Wiktionary/SM Wil/M Wilberforce/M Wilbur/M Wilcox/M wild/TYPSG wildcard/S wildcat/MS Wilde/M wildebeest/SM Wilder/M wilder/P wilderness/S wildfire/MS wildfowl/M wilding/M wildlife/M wildwood wile/DSMG Wiley/M Wilfred/M wilful/YP Wilhelm/M Wilhelmina/M Wilkerson/M Wilkes Wilkie/M Wilkins Wilkinson/M will/GkSYD Willa/M Willamette/M Willard/M Willcocks Willcox/M Willem Willemstad Willenstad/M willet/S William/M Williams/M Williamsburg/M Williamson/M Williard Willie/M willing/UY willingness/M Willis Willmott/M Willoughby/M willow/SMZ willowherb willowy/T willpower/MS Willy willy-nilly willy/S Wilma Wilmette Wilmington Wilmott/M Wilmslow Wilshire/M Wilson/M wilt/DGS Wilton Wiltshire/M wily/PYT Wimbledon/M wimp/MSZ wimple/MDSG wimpy/T win/RGdSJ wince/SDG Winceyette winceyette winch/DSGM wincher/M Winchester/S Winckelmann wind's wind-up/SM wind/UGSA windage windbag/SM windblown windbreak/SM windburn/SM windburnt windcheater/SM winded windedness winder/MS Windermere/M windfall/MS windflower/SM Windhoek/M winding-sheet winding/SM windjammer/MS windlass/SDMG windless windmill/MS window-shop window/pGSDM windowpane/SM windowsill/SM windpipe/SM windproof windrow/SM windscreen/MS windslab/S windsock/SM Windsor/M windsurf/SGDR windswept Windu/M windward windy/PYT wine/ZMS wineglass/SM winegrower/SM winemaker/SM winemaking winery/S Winesap/S wineskin/SM Winfield Winfrey/M wing-like wing/pmRGDM wingbeat/S Wingfield/M wingspan/MS wingspread/SM wingsuit Winifred/M wink/RDSG winkle/DSG winkler/S winnable Winnebago/M Winnetka Winnie/M winning/Y Winnipeg winnow/DGRS wino/MS Winooski WinRAR Winslow winsome/Y winsomeness Winsor/M Winsten/M Winston/M winter's winter/cdS winterer/M wintergreen/SM wintertime/M Winthrop Winton/M wintriness wintry/T WinZip wipe/SRGD7 wire-haired wire-tapper wire-tapping wire/2ZmDpSMJG wired/A wireframe/S wireless/MSY wireline wirer/M wires/A wiretap/SDG wiretapper/S wiring's wiring/A Wirral wiry/T Wisconsin/M Wisden wisdom/MS wise/TYS wiseacre/MS wisecrack/SGMD wisecracker/S wisely/U Wiseman Wisenheimer wish/RSjGD6Z wishbone/MS wishing-well wishy-washy Wiska/M wisp/MZS wispy/T wisteria/SM wistful/Y wistfulness wit/zSM2pGZD witch-hunt/S witch/MyDSG witchcraft/MS witchdoctor/S witchery/SM witchlike with withal Withalm withdraw/SG withdrawal/MS withdrawer/M withdrawn withdrawnness withdrew wither/kS withered withering Witherington witherite Witherspoon withheld withhold/SRJG within without withstand/SG withstood witless/Y witlessness witness/DGSM wits/e Witt/M Witte/M witted/e Wittenberg witter/Sd Wittgenstein/M witticism/SM witting/YU Witts/M witty/PT Witwatersrand Wivenhoe/M wives wizard/ySYM wizardry/SM wizen wizened WMA WNO WNP WO woad/M wobble/SY2DG wobbler's wobbly/T Wobegon Woburn/M Wodehouse wodge/S woe/jSM6 woebegone woefulness wog/S woggle/S wok/MS woke woken Woking Wokingham Wolcott Wolds wolf-whistles wolf/MDGS wolfberry/S Wolfe/M Wolff/M Wolffian Wolfgang wolfhound/SM wolfish/Y wolfishness Wolfowitz/M wolfram/MS wolframite Wolfson Wollaston/M Wollongong Wollstonecraft/M Wolverhampton/M wolverine/MS Wolverton wolves woman/MsQY womanhood/SM womanish womanizer womankind/M womanlike womanly/TP womb/MS wombat/MS women/M womenfolk/M won won't wonder/jLSdkM wonderer/M wonderful/P wonderland/SM wondrous/Y wondrousness Wong/M wonky/T wont/hDG wontedly/U woo/DRGS wood/mDS2M Woodard Woodberry woodbine/SM woodblock/S Woodbridge/M Woodbury woodcarver/S woodcarving/SM woodchip/S woodchuck/SM woodcock/SM woodcut/SRGJM woodcutting/M wooden/Y woodener woodenness woodenware woodland/SM woodlander woodlark/S Woodlawn Woodley/M woodlice woodlouse/M woodman woodmen woodpecker/MS woodpile/SM Woodrow woodruff/M woodshed/MS woodsmoke Woodstock/M woodswallow/S woodturner/S woodturning Woodward/S woodwind/S woodwork/RMG woodworking/M woodworm/MS Woody's woody/T Woodyatt/M woof/DRGMS wool-gathering wool/SMY Woolcock/M woollen/S woolliness woolly/TS Woolworth Woonsocket woosh/SGD Wooster Wootton/M woozy/TYP wop/SM Worcester Worcestershire/M word's word-blindness word-perfect word-processing word/ADJGS wordage wordbook/SM wording/MA wordless/YP wordlist/S WordNet/M WordPad wordplay/MS WordPress/M wordsmith/S Wordsworth/M Wordsworthiana wordy/TPY wore/e Worf/M work's/e work-shy work-to-rule work/ADeScG workability/M workable/U workableness workably workaday workaholic/S workaholism workaround/MS workbench/SM workboat/S workbook/MS workday/MS worker/SM workfare/S workflow/S workforce/S workful workfulness workhead workhorse/MS workhouse/SM working-class working/MS Workington workless/P workload/SM workman/M workmanlike workmanship/MS workmaster workmate/S workmen/M workout/MS workpeople workperson workpiece/S workplace/SM workprint workroom/SM worksheet/S workshop/MSGD worksite/S Worksop/M workspace/S workstation/MS worktable/MS worktop/S workup/S workwear workwise workwoman world-class world-famous world-weary world/fMS WorldCom worldliness/U worldly-wise worldly/TP worldwide worm-casts worm-eaten worm-wheel worm/GSDZM wormer/M wormhole/SM wormwood/MS wormy/T worn-out worn/eU worried/U worrisome/Y worry/RDkSGh worse worsen/dS worship/jRSG6D worshipfulness worst-case worst/D worsted/MS worth/pZz2 worthily/U worthiness/U Worthing/M Worthington/M worthless/PY worthwhile worthy/TPS would would've would-be wouldn't wouldn't've wouldst wound/MDJSG wounded/U wove/A woven/UA wow/GSD woylie/S wpm wrack/M WRAF wraith/MS wraithlike wrangle/GRDS wrap's wrap/cU wraparound/S wrapped wrapper/MS wrapping/SM wraps/U wrasse/MS wrath/jM6 wrathfulness Wraxall/M wreak/DSG wreaker wreath/SDMG wreathe/S wreck/GSDR wreckage/MS Wrekin/M wren/SM wrench/DGkSM wrest/GSD wrester/M wrestle/DRGS wrestling/M wretch/MiDhS wretched/rP wretchedest Wrexham/M wriggle/YRDSG wriggly/T Wright/M wrights Wrigley wring/RGS wrinkle/GDSMY wrinkled/U wristband/MS wristwatch/SM writ/MS write-down/S write-off/S write-up/S write/fRGAS writeable writes/c writhe/SDG writing's writing/AS written/fUcaA WRNS wrong-foot/D wrong-headed/Y wrong-headedness wrong/j6GYSD wrongdoer/MS wrongdoing/MS wrongfulness wrongness Wronski/M wrote/fAc wroth wrought-iron wrought/Ic wrung wry/3 wryer wryest wryly wryness wt WTF WTO Wu/M Wulfsige wunderkind/S wunderkinder wurtzite wurzel/S WV WWI WWII WWW WY Wyatt/M Wycombe Wykeham Wylie/M Wyman Wynn/M Wyoming Wyss/M x X x-axis X-rated X-ray/S x64 x86 Xanax xanthene xanthine/S Xavier Xbox/S XChat/M Xcode/M Xenarthra xenarthran/S Xenia Xenix/M xenobiotic/S xenocryst/SW xenogamous xenogamy xenograft/S xenolith/SW xenologist xenology xenon/M Xenophanes/M xenophobe/MWS xenophobia/M xenotime Xeon xerography/MW xerophyte/MS xerophytic Xerox/SDGM Xerxes Xhosa XHTML xi Xi Xi'an/M xii xiii Xindi/M xiv xix XIX XL xlsx Xmas XML XMP XOR XP XPI xpi Xubuntu/M XUL XULRunner/M xv xvi/M XXL xylem/SM xylene xylitol xylometazoline xylophone/SM xylophonist/S xylose y'all y-axis y/K Y2K ya yacht/5mMSDG yachters yachtie/SM yack/GDS yahoo/SM Yahveh/M Yahweh yak/MS Yakima Yakov/M Yakutsk Yale Yalta yam/SM Yamaha/M Yamazaki/M yammer/Sd yammerer/S Yamoussoukro/M yang Yangtze yank/SGD Yankee/S Yankeeism Yankton/M Yaounde/M Yaoundé/M yap/SGD Yarborough yard/SM yardage/MS yardarm/MS yardstick/SM Yarmouth/M Yarmuk yarmulke/SM yarn/DMGS yarrow/SM Yashmak Yasmin Yates yaw/DSG yawl/SM yawn/kGRDS yawp/DR yay YB yd ye yea/S Yeager yeah year-end year-on-year year-round year/YMS yearbook/SM yearling/SM yearlong yearn/DJGkS yearning/M yeast/SM2Z yeasty/T Yeats Yee/M yell/SGD yellow-bellied yellow/GDSMZ yellowfin yellowhammer/MS yellowish Yellowknife/M yellowlegs yellowness Yellowstone/M yellowthroat/S yelp/DGS Yemen/M Yemeni yen/DSGM yeoman/YM yeomanry yeomen/M Yeovil Yeoville/M yep Yerevan/M yes yes-man yesterday/SM yesteryear/SM yet yeti/SM yew/SM YiB Yichun Yid Yiddish Yiddishism Yiddishist/S yield/DSG yielder/S yielding/U yikes yin yippee Yishuv Yizkor/S ylang-ylang YMCA yo yo-yo/SGD yo-yoes yob/S yobbism yobbo/S yobibit/S yobibyte/S Yoda/M yodel/RDGS yoga/M yoghurt/M yogi/SM yogic yogurt/S Yohanna/M yoke's yoke/UDGS yokel/SM Yokohama yolk/SM yon yonder Yongbyon/M Yonkers yonks Yoong yore York/M york/SGD Yorker/S Yorkshire/M Yorkshireman Yorktown Yoruba Yosemite Yost/M yottabit yottabyte/S you you'd you'll you're you've you-know-what you-know-who young/T Youngberry youngish youngster/SM Youngstown Younis Younker your/S yourself yourselves Yousuf youth/jSM6 youthfulness YouTube yowl/GSD Yoyodyne Ypres Ypsilanti yr ytterbium/M yttrium/M yuan Yuan Yuanzhang Yuba Yucatan yucca/MS yuck yucky/T Yuga yuga/S Yugoslav/S Yugoslavia/M Yugoslavian yuk Yukon Yule Yuletide/M yum-yum yum/Z yummy/T yup yuppie/SM Yuri Yushchenko/M Yutaka/M Yvan/M Yves Yvette YWCA z/M Z80 zabaglione Zachary Zack/M Zadie Zadie' zag/SGD Zagreb/M Zaibatsu Zaire/M Zairean/S Zairian/S Zambezi Zambia/M Zambian/S Zamia zander zaniness zany/T Zanzibar zap/DRGS zappy/T ZAPU Zara/M Zarathustra/M Zarathustrian/S Zawadski Zawahiri zazen Zazzo/M ZB Zb Zbarsky zeal/M Zealand/M Zealander/S zealot/MS zealotry zealous/cP zealously zeaxanthin zebibit/S zebibyte/S zebra/MS zebu/SM zed/MS Zedong/M Zeebrugge Zeeland Zeeman Zefram zein Zeiss/M zeitgeber/S Zeitgeist zeitgeist/Z zelkova Zellick/M Zelter/M zemstvo/S Zen zenana/S Zenist/S zenith/MS Zeno/M Zenobia/M zeolite/SW Zephaniah/M zephyr/MS Zeppelin/MS Zermatt/M zero-rated zero-sum zero/GSDM zeroes zeroisation zeroise/SGD zeroization zeroize/SGD zeroth zest/6Mj zestfulness zesty/T zeta/S Zetland zettabit zettabyte/S zeugma/M Zeus/M Zeuxis Zhang/M Zhangjiakou Zhu ZiB zidovudine Ziegfeld/SM Ziegler/M ziggurat/SM zigzag/SGD Zika/M zilch zillion/S Zilog/M Zimbabwe/M Zimbabwean/S Zimmerman/M Zimmermann/M zinc/MD zine/S Zinfandel/SM zing/GDM zinnia/SM Zion/3M Zionism Zionist zip's zip/UGDS zipless zippy/T zipx zircon/M zirconium/M zither/MS zloty/MS zlotys zodiac/MS zodiacal Zoe/M zoeal Zoloft Zoltan/M Zoltán/M zombie/SM zonal/Y zonation/S zone's zone/ASDG zonked zoo/SM zoocentrism zoogeographer/S zoogeographic zoogeographical zoogeographically zoogeography zooid/S zooidal zookeeper/SM zoology/3SMw1 zoom/DGS zoomorphic zoomorphism zoophobia zoophyte/SM zooplankton zoospore/S zooxanthella zooxanthellae zooxanthellate Zoroaster Zoroastrian/S Zoroastrianism zoster Zs Zubrin/M zucchetto/S Zuckerberg/M zugzwang Zukerman Zulu/MS Zululand Zurich/M Zuza/M Zwick/M zwieback/MS ZX zygomatic zygote/SWM zygotene zymurgy/S Zyrian zythum Áron/M Ågar Århus Éliphas/M à éclair/SM éclat/M élan/M émigré/S ================================================ FILE: dictionaries/fr_FR/fr_FR.aff ================================================ # AFFIXES DU DICTIONNAIRE FRANÇAIS «Moderne» v3.8 # par Olivier R. -- licences LGPL, GPL, MPL # Généré le 01.08.2010 22:54:24 # Pour améliorer le dictionnaire, allez sur http://www.dicollecte.org/ SET UTF-8 WORDCHARS -’ TRY aàâäbcçdeéèêëfghiîïjklmnoôöpqrstuùûüvwxyzæœAÀÂÄBCÇDEÉÈÊËFGHIÎÏJKLMNOÔÖPQRSTUÙÛÜVWXYZÆŒáíÿñåóşăã MAP 12 MAP aàâä MAP eéèêë MAP iîïy MAP oôö MAP uùûü MAP cç MAP AÀÂÄ MAP EÉÈÊË MAP IÎÏY MAP OÔÖ MAP UÙÛÜ MAP CÇ REP 67 REP f ph REP ph f REP c qu REP qu c REP k qu REP qu k REP x ct REP ct x REP bb b REP b bb REP cc c REP c cc REP ff f REP f ff REP ll l REP l ll REP mm m REP m mm REP nn n REP n nn REP pp p REP p pp REP rr r REP r rr REP ss s REP s ss REP ss c REP c ss REP ss ç REP ç ss REP tt t REP t tt REP œ oe REP oe œ REP æ ae REP ae æ REP ai é REP é ai REP ai è REP è ai REP ai ê REP ê ai REP ei é REP é ei REP ei è REP è ei REP ei ê REP ê ei REP o au REP au o REP o eau REP eau o REP ett èt REP èt ett REP ell èl REP èl ell REP ème e REP ogue ogiste REP ogiste ogue REP disez dites REP fesez faites REP faisez faites REP puit puits REP sanctionnable punissable REP questionnable discutable REP décrédibilis discrédit REP antitartre détartrant KEY azertyuiop|qsdfghjklmù|wxcvbn|aéz|yèu|iço|oàp|aqz|zse|edr|rft|tgy|yhu|uji|iko|olpm|qws|sxd|dcf|fvg|gbh|hnj ICONV 32 ICONV à à ICONV â â ICONV ä ä ICONV é é ICONV è è ICONV ê ê ICONV ë ë ICONV î î ICONV ï ï ICONV ô ô ICONV ö ö ICONV ù ù ICONV û û ICONV ü ü ICONV ÿ ÿ ICONV ç ç ICONV À À ICONV   ICONV Ä Ä ICONV É É ICONV È È ICONV Ê Ê ICONV Ë Ë ICONV Î Î ICONV Ï Ï ICONV Ô Ô ICONV Ö Ö ICONV Ù Ù ICONV Û Û ICONV Ü Ü ICONV Ÿ Ÿ ICONV Ç Ç OCONV 1 OCONV ' ’ FLAG long NEEDAFFIX () FORBIDDENWORD {} CIRCUMFIX ** KEEPCASE || NOSUGGEST -- BREAK 1 BREAK - COMPOUNDMIN 2 COMPOUNDFLAG == PFX L' Y 17 PFX L' 0 l' [aàâeèéêiîoôuyhœæAÀÂEÈÉÊIÎOÔUYHŒÆ] PFX L' a l'A a PFX L' à l'À à PFX L' â l' â PFX L' e l'E e PFX L' é l'É é PFX L' è l'È è PFX L' ê l'Ê ê PFX L' i l'I i PFX L' î l'Î î PFX L' o l'O o PFX L' ô l'Ô ô PFX L' u l'U u PFX L' y l'Y y PFX L' h l'H h PFX L' œ l'Œ œ PFX L' æ l'Æ æ PFX D' Y 17 PFX D' 0 d' [aàâeèéêiîoôuyhœæAÀÂEÈÉÊIÎOÔUYHŒÆ] PFX D' a d'A a PFX D' à d'À à PFX D' â d' â PFX D' e d'E e PFX D' é d'É é PFX D' è d'È è PFX D' ê d'Ê ê PFX D' i d'I i PFX D' î d'Î î PFX D' o d'O o PFX D' ô d'Ô ô PFX D' u d'U u PFX D' y d'Y y PFX D' h d'H h PFX D' œ d'Œ œ PFX D' æ d'Æ æ PFX Q' Y 4 PFX Q' 0 qu' [aàâeèéêiîoôuyhœæAÀÂEÈÉÊIÎOÔUYHŒÆ] PFX Q' 0 quoiqu' [aàâeèéêiîoôuyhœæAÀÂEÈÉÊIÎOÔUYHŒÆ] PFX Q' 0 puisqu' [aàâeèéêiîoôuyhœæAÀÂEÈÉÊIÎOÔUYHŒÆ] PFX Q' 0 lorsqu' [aàâeèéêiîoôuyhœæAÀÂEÈÉÊIÎOÔUYHŒÆ] PFX Qj Y 1 PFX Qj 0 jusqu' [aàâeèéêiîoôuyhœæ] PFX Si Y 1 PFX Si 0 s' . SFX S. Y 1 SFX S. 0 s [^sxz] SFX X. Y 3 SFX X. 0 x [aeoœ]u SFX X. l ux al SFX X. il ux ail SFX A. Y 8 SFX A. an en an SFX A. f ves f SFX A. h hes h SFX A. s ses s SFX A. x xes x SFX A. y ies y SFX A. zz zzes zz SFX A. z zzes [^z]z SFX I. Y 5 SFX I. a e a SFX I. e i e SFX I. o i o SFX I. um a um SFX I. us i us SFX F. Y 72 SFX F. 0 0 . SFX F. 0 s [eë] SFX F. e 0 [éiï]e SFX F. e s [éiï]e SFX F. rice eur [dt]rice SFX F. rice eurs [dt]rice SFX F. de d de SFX F. de ds de SFX F. ffe f ffe SFX F. ffe fs ffe SFX F. ofe of ofe SFX F. ofe ofs ofe SFX F. anche anc anche SFX F. anche ancs anche SFX F. èche ec èche SFX F. èche ecs èche SFX F. aiche ais aiche SFX F. aîche ais aîche SFX F. khe kh khe SFX F. khe khs khe SFX F. he h [ut]he SFX F. he hs [ut]he SFX F. ke k ke SFX F. ke ks ke SFX F. le l [aiouû]le SFX F. le ls [aiouû]le SFX F. lle l [eiu]lle SFX F. lle ls [eiu]lle SFX F. ne n [aiou]ne SFX F. ne ns [aiou]ne SFX F. nne n [aeo]nne SFX F. nne ns [aeo]nne SFX F. igne in igne SFX F. igne ins igne SFX F. re r [aiuûy]re SFX F. re rs [aiuûy]re SFX F. ère er ère SFX F. ère ers ère SFX F. se s [^us]se SFX F. esse e [^eo].esse SFX F. esse es [^eo].esse SFX F. eresse eur eresse SFX F. eresse eurs eresse SFX F. oresse eur oresse SFX F. oresse eurs oresse SFX F. sse s [^e]sse SFX F. use us [^eo]use SFX F. euse eur euse SFX F. euse eurs euse SFX F. te t [^èt]te SFX F. te ts [^èt]te SFX F. tte t tte SFX F. tte ts tte SFX F. ète et ète SFX F. ète ets ète SFX F. ue u [^gq]ue SFX F. ue us [^gq]ue SFX F. gue g gue SFX F. gue gs gue SFX F. cque c cque SFX F. cque cs cque SFX F. que c [^c]que SFX F. que cs [^c]que SFX F. ève ef ève SFX F. ève efs ève SFX F. ve f [iïu]ve SFX F. ve fs [iïu]ve SFX F. uë u uë SFX F. uë us uë SFX F. üe u üe SFX F. üe us üe SFX F. ze z ze SFX W. N 8 SFX W. 0 0 . SFX W. e es e SFX W. ce x ce SFX W. use ux [eo]use SFX W. ausse aux ausse SFX W. ousse oux ousse SFX W. ale al ale SFX W. ale aux ale SFX S* Y 2 SFX S* 0 0/D'L'Q' [^sxz] SFX S* 0 s/D'Q' [^sxz] SFX X* Y 4 SFX X* 0 0/D'L'Q' . SFX X* 0 x/D'Q' [aeoœ]u SFX X* l ux/D'Q' al SFX X* il ux/D'Q' ail SFX A* Y 16 SFX A* an an/D'L'Q' an SFX A* an en/D'Q' an SFX A* f f/D'L'Q' f SFX A* f ves/D'Q' f SFX A* h h/D'L'Q' h SFX A* h hes/D'Q' h SFX A* s s/D'L'Q' s SFX A* s ses/D'Q' s SFX A* x h/D'L'Q' x SFX A* x hes/D'Q' x SFX A* y y/D'L'Q' y SFX A* y ies/D'Q' y SFX A* zz zz/D'L'Q' zz SFX A* zz zzes/D'Q' zz SFX A* z z/D'L'Q' [^z]z SFX A* z zzes/D'Q' [^z]z SFX I* Y 10 SFX I* a a/D'L'Q' a SFX I* a e/D'Q' a SFX I* e e/D'L'Q' e SFX I* e i/D'Q' e SFX I* o o/D'L'Q' o SFX I* o i/D'Q' o SFX I* um um/D'L'Q' um SFX I* um a/D'Q' um SFX I* us us/D'L'Q' us SFX I* us i/D'Q' us SFX F* Y 63 SFX F* 0 0/D'L'Q' . SFX F* 0 s/D'Q' [eë] SFX F* e 0/D'L'Q' [éiï]e SFX F* e s/D'Q' [éiï]e SFX F* rice eur/D'L'Q' [dt]rice SFX F* rice eurs/D'Q' [dt]rice SFX F* de d/D'L'Q' de SFX F* de ds/D'Q' de SFX F* ffe f/D'L'Q' ffe SFX F* ffe fs/D'Q' ffe SFX F* ofe of/D'L'Q' ofe SFX F* ofe ofs/D'Q' ofe SFX F* he h/D'L'Q' [ut]he SFX F* he hs/D'Q' [ut]he SFX F* èke ek/D'L'Q' èke SFX F* èke eks/D'Q' èke SFX F* le l/D'L'Q' [aiouû]le SFX F* le ls/D'Q' [aiouû]le SFX F* lle l/D'L'Q' [eiu]lle SFX F* lle ls/D'Q' [eiu]lle SFX F* ne n/D'L'Q' [aiou]ne SFX F* ne ns/D'Q' [aiou]ne SFX F* nne n/D'L'Q' [aeo]nne SFX F* nne ns/D'Q' [aeo]nne SFX F* gne n/D'L'Q' igne SFX F* gne ns/D'Q' igne SFX F* re r/D'L'Q' [aiuûy]re SFX F* re rs/D'Q' [aiuûy]re SFX F* ère er/D'L'Q' ère SFX F* ère ers/D'Q' ère SFX F* se s/D'L'Q' [^us]se SFX F* esse e/D'L'Q' [^eo].esse SFX F* esse es/D'Q' [^eo].esse SFX F* eresse eur/D'L'Q' eresse SFX F* eresse eurs/D'Q' eresse SFX F* oresse eur/D'L'Q' oresse SFX F* oresse eurs/D'Q' oresse SFX F* sse s/D'L'Q' [^e]sse SFX F* use us/D'L'Q' [^eo]use SFX F* euse eur/D'L'Q' euse SFX F* euse eurs/D'Q' euse SFX F* te t/D'L'Q' [^èt]te SFX F* te ts/D'Q' [^èt]te SFX F* tte t/D'L'Q' tte SFX F* tte ts/D'Q' tte SFX F* ète et/D'L'Q' ète SFX F* ète ets/D'Q' ète SFX F* ue u/D'L'Q' [^gq]ue SFX F* ue us/D'Q' [^gq]ue SFX F* gue g/D'L'Q' gue SFX F* gue gs/D'Q' gue SFX F* cque c/D'L'Q' cque SFX F* cque cs/D'Q' cque SFX F* que c/D'L'Q' [^c]que SFX F* que cs/D'Q' [^c]que SFX F* ève ef/D'L'Q' ève SFX F* ève efs/D'Q' ève SFX F* ve f/D'L'Q' [iïu]ve SFX F* ve fs/D'Q' [iïu]ve SFX F* uë u/D'L'Q' uë SFX F* uë us/D'Q' uë SFX F* üe u/D'L'Q' üe SFX F* üe us/D'Q' üe SFX W* Y 7 SFX W* 0 0/D'L'Q' . SFX W* e es/D'Q' e SFX W* ce x/D'L'Q' ce SFX W* use ux/D'L'Q' [eo]use SFX W* ousse oux/D'L'Q' ousse SFX W* ale al/D'L'Q' ale SFX W* ale aux/D'Q' ale PFX Um Y 29 PFX Um 0 0/S. . PFX Um 0 l' [aàâeèéêiîoôuyœæ] PFX Um 0 d'/S. [aàâeèéêiîoôuyœæ] PFX Um 0 yotta/S. . PFX Um 0 zetta/S. . PFX Um 0 exa/S. . PFX Um 0 l'exa . PFX Um 0 d'exa/S. . PFX Um 0 peta/S. . PFX Um 0 téra/S. . PFX Um 0 giga/S. . PFX Um 0 méga/S. . PFX Um 0 kilo/S. . PFX Um 0 hecto/S. . PFX Um 0 l'hecto . PFX Um 0 d'hecto/S. . PFX Um 0 déca/S. . PFX Um 0 déci/S. . PFX Um 0 centi/S. . PFX Um 0 milli/S. . PFX Um 0 micro/S. . PFX Um 0 nano/S. . PFX Um 0 pico/S. . PFX Um 0 femto/S. . PFX Um 0 atto/S. . PFX Um 0 l'atto . PFX Um 0 d'atto/S. . PFX Um 0 zepto/S. . PFX Um 0 yocto/S. . PFX U. Y 20 PFX U. 0 Y . PFX U. 0 Z . PFX U. 0 E . PFX U. 0 P . PFX U. 0 T . PFX U. 0 G . PFX U. 0 M . PFX U. 0 k . PFX U. 0 h . PFX U. 0 da . PFX U. 0 d . PFX U. 0 c . PFX U. 0 m . PFX U. 0 µ . PFX U. 0 n . PFX U. 0 p . PFX U. 0 f . PFX U. 0 a . PFX U. 0 z . PFX U. 0 y . PFX n' Y 1 PFX n' 0 n' [aàâeèéêiîoôuyhœæ] PFX q' Y 1 PFX q' 0 qu' [aàâeèéêiîoôuyhœæ] PFX q= Y 1 PFX q= 0 qu'/** [aàâeèéêiîoôuyhœæ] PFX d' Y 1 PFX d' 0 d' [aàâeèéêiîoôuyhœæ] PFX j' Y 1 PFX j' 0 j' [aàâeèéêiîoôuyhœæ] PFX j= Y 1 PFX j= 0 j'/** [aàâeèéêiîoôuyhœæ] PFX c' Y 1 PFX c' 0 c' [aàâeèéêiîoôuyhœæ] PFX c= Y 1 PFX c= 0 c'/** [aàâeèéêiîoôuyhœæ] PFX l' Y 1 PFX l' 0 l' [aàâeèéêiîoôuyhœæ] PFX m' Y 1 PFX m' 0 m' [aàâeèéêiîoôuyhœæ] PFX t' Y 1 PFX t' 0 t' [aàâeèéêiîoôuyhœæ] PFX s' Y 1 PFX s' 0 s' [aàâeèéêiîoôuyhœæ] SFX zA Y 34 SFX zA voir voir/n'q'd'l'm't' avoir SFX zA voir yant/n'q'l'm't' avoir SFX zA voir i/n'q'j'l't' avoir SFX zA voir s/n'q'l'm't' avoir SFX zA voir 0/n'q'l'm't' avoir SFX zA voir vons/n'q'l't' avoir SFX zA voir vez/n'q'l'm' avoir SFX zA voir vais/n'q'j'l'm't' avoir SFX zA voir vais/n'q'l'm't' avoir SFX zA voir vait/n'q'l'm't' avoir SFX zA voir vions/n'q'l't' avoir SFX zA voir viez/n'q'l'm' avoir SFX zA voir vaient/n'q'l'm't' avoir SFX zA voir urai/n'q'j'l'm't' avoir SFX zA voir uras/n'q'l'm't' avoir SFX zA voir ura/n'q'l'm't' avoir SFX zA voir urons/n'q'l't' avoir SFX zA voir urez/n'q'l'm' avoir SFX zA voir uront/n'q'l'm't' avoir SFX zA voir urais/n'q'j'l'm't' avoir SFX zA voir urais/n'q'l'm't' avoir SFX zA voir urait/n'q'l'm't' avoir SFX zA voir urions/n'q'l't' avoir SFX zA voir uriez/n'q'l'm' avoir SFX zA voir uraient/n'q'l'm't' avoir SFX zA voir ie/n'j'l'm't' avoir SFX zA voir ies/n'l'm't' avoir SFX zA voir it/n'l'm't' avoir SFX zA voir yons/n'l't' avoir SFX zA voir yez/n'l'm' avoir SFX zA voir ient/n'l'm't' avoir SFX zA voir ie/n' avoir SFX zA voir yons/n' avoir SFX zA voir yez/n' avoir SFX zB Y 17 SFX zB us u eus SFX zB us us eus SFX zB us ue eus SFX zB us ues eus SFX zB us us/n'q'j'l'm't' eus SFX zB us ussé eus SFX zB us us/n'q'l'm't' eus SFX zB us ut/n'q'c'l'm't' eus SFX zB us ûmes/n'q'l't' eus SFX zB us ûtes/n'q'l'm' eus SFX zB us urent/n'q'l'm't' eus SFX zB us usse/n'q'j'l'm't' eus SFX zB us usses/n'q'l'm't' eus SFX zB us ût/n'q'c'l'm't' eus SFX zB us ussions/n'q'l't' eus SFX zB us ussiez/n'q'l'm' eus SFX zB us ussent/n'q'l'm't' eus SFX zC Y 1 SFX zC nt nt/n'q'l'm't' ont SFX zE Y 2 SFX zE tre tre/n'q'd'l'm't's' être SFX zE tre tes/n'q'l'm' être SFX zF Y 24 SFX zF uis uis suis SFX zF uis ommes suis SFX zF uis ont suis SFX zF uis erai suis SFX zF uis eras suis SFX zF uis era suis SFX zF uis erons suis SFX zF uis erez suis SFX zF uis eront suis SFX zF uis erais suis SFX zF uis erais suis SFX zF uis erait suis SFX zF uis erions suis SFX zF uis eriez suis SFX zF uis eraient suis SFX zF uis ois suis SFX zF uis ois suis SFX zF uis oit suis SFX zF uis oyons suis SFX zF uis oyez suis SFX zF uis oient suis SFX zF uis ois suis SFX zF uis oyons suis SFX zF uis oyez suis SFX zG Y 8 SFX zG tais tant/n'q'l'm't's' étais SFX zG tais té étais SFX zG tais tais/n'q'j'l'm't' étais SFX zG tais tais/n'q'l'm't' étais SFX zG tais tait/n'q'c'l'm't's' étais SFX zG tais tions/n'q'l't' étais SFX zG tais tiez/n'q'l'm' étais SFX zG tais taient/n'q'c'l'm't's' étais SFX zH N 13 SFX zH us us fus SFX zH us ussé fus SFX zH us us fus SFX zH us ut fus SFX zH us ûmes fus SFX zH us ûtes fus SFX zH us urent fus SFX zH us usse fus SFX zH us usses fus SFX zH us ût fus SFX zH us ussions fus SFX zH us ussiez fus SFX zH us ussent fus SFX zI Y 2 SFX zI s s/n'q'l'm't' es SFX zI s st/n'q'c'l'm't's' es SFX a0 N 119 SFX a0 er er er SFX a0 er ant [^cg]er SFX a0 cer çant cer SFX a0 ger geant ger SFX a0 er é er SFX a0 er e [^y]er SFX a0 yer ye [^ou]yer SFX a0 yer ie [aou]yer SFX a0 er es [^y]er SFX a0 yer yes [^ou]yer SFX a0 yer ies [aou]yer SFX a0 er e [^y]er SFX a0 yer ye [^ou]yer SFX a0 yer ie [aou]yer SFX a0 er ons [^cg]er SFX a0 cer çons cer SFX a0 ger geons ger SFX a0 er ez er SFX a0 r nt [^y]er SFX a0 yer yent [^ou]yer SFX a0 yer ient [aou]yer SFX a0 er ais [^cg]er SFX a0 cer çais cer SFX a0 ger geais ger SFX a0 er ais [^cg]er SFX a0 cer çais cer SFX a0 ger geais ger SFX a0 er ait [^cg]er SFX a0 cer çait cer SFX a0 ger geait ger SFX a0 er ions er SFX a0 er iez er SFX a0 er aient [^cg]er SFX a0 cer çaient cer SFX a0 ger geaient ger SFX a0 er ai [^cg]er SFX a0 cer çai cer SFX a0 ger geai ger SFX a0 er as [^cg]er SFX a0 cer ças cer SFX a0 ger geas ger SFX a0 er a [^cg]er SFX a0 cer ça cer SFX a0 ger gea ger SFX a0 er âmes [^cg]er SFX a0 cer çâmes cer SFX a0 ger geâmes ger SFX a0 er âtes [^cg]er SFX a0 cer çâtes cer SFX a0 ger geâtes ger SFX a0 er èrent er SFX a0 er erai [^y]er SFX a0 yer yerai [^ou]yer SFX a0 yer ierai [aou]yer SFX a0 er eras [^y]er SFX a0 yer yeras [^ou]yer SFX a0 yer ieras [aou]yer SFX a0 er era [^y]er SFX a0 yer yera [^ou]yer SFX a0 yer iera [aou]yer SFX a0 er erons [^y]er SFX a0 yer yerons [^ou]yer SFX a0 yer ierons [aou]yer SFX a0 er erez [^y]er SFX a0 yer yerez [^ou]yer SFX a0 yer ierez [aou]yer SFX a0 er eront [^y]er SFX a0 yer yeront [^ou]yer SFX a0 yer ieront [aou]yer SFX a0 er erais [^y]er SFX a0 yer yerais [^ou]yer SFX a0 yer ierais [aou]yer SFX a0 er erais [^y]er SFX a0 yer yerais [^ou]yer SFX a0 yer ierais [aou]yer SFX a0 er erait [^y]er SFX a0 yer yerait [^ou]yer SFX a0 yer ierait [aou]yer SFX a0 er erions [^y]er SFX a0 yer yerions [^ou]yer SFX a0 yer ierions [aou]yer SFX a0 er eriez [^y]er SFX a0 yer yeriez [^ou]yer SFX a0 yer ieriez [aou]yer SFX a0 er eraient [^y]er SFX a0 yer yeraient [^ou]yer SFX a0 yer ieraient [aou]yer SFX a0 er e [^y]er SFX a0 yer ye [^ou]yer SFX a0 yer ie [aou]yer SFX a0 er es [^y]er SFX a0 yer yes [^ou]yer SFX a0 yer ies [aou]yer SFX a0 er e [^y]er SFX a0 yer ye [^ou]yer SFX a0 yer ie [aou]yer SFX a0 er ions er SFX a0 er iez er SFX a0 er ent [^y]er SFX a0 yer yent [^ou]yer SFX a0 yer ient [aou]yer SFX a0 er asse [^cg]er SFX a0 cer çasse cer SFX a0 ger geasse ger SFX a0 er asses [^cg]er SFX a0 cer çasses cer SFX a0 ger geasses ger SFX a0 er ât [^cg]er SFX a0 cer çât cer SFX a0 ger geât ger SFX a0 er assions [^cg]er SFX a0 cer çassions cer SFX a0 ger geassions ger SFX a0 er assiez [^cg]er SFX a0 cer çassiez cer SFX a0 ger geassiez ger SFX a0 er assent [^cg]er SFX a0 cer çassent cer SFX a0 ger geassent ger SFX a1 Y 119 SFX a1 er er/n'q'd' er SFX a1 er ant/n'q' [^cg]er SFX a1 cer çant/n'q' cer SFX a1 ger geant/n'q' ger SFX a1 er é/q' er SFX a1 er e/n'j' [^y]er SFX a1 yer ye/n'j' [^ou]yer SFX a1 yer ie/n'j' [aou]yer SFX a1 er es/n' [^y]er SFX a1 yer yes/n' [^ou]yer SFX a1 yer ies/n' [aou]yer SFX a1 er e/n'q' [^y]er SFX a1 yer ye/n'q' [^ou]yer SFX a1 yer ie/n'q' [aou]yer SFX a1 er ons/n' [^cg]er SFX a1 cer çons/n' cer SFX a1 ger geons/n' ger SFX a1 er ez/n' er SFX a1 er ent/n'q' [^y]er SFX a1 yer yent/n'q' [^ou]yer SFX a1 yer ient/n'q' [aou]yer SFX a1 er ais/n'j' [^cg]er SFX a1 cer çais/n'j' cer SFX a1 ger geais/n'j' ger SFX a1 er ais/n' [^cg]er SFX a1 cer çais/n' cer SFX a1 ger geais/n' ger SFX a1 er ait/n'q' [^cg]er SFX a1 cer çait/n'q' cer SFX a1 ger geait/n'q' ger SFX a1 er ions/n' er SFX a1 er iez/n' er SFX a1 er aient/n'q' [^cg]er SFX a1 cer çaient/n'q' cer SFX a1 ger geaient/n'q' ger SFX a1 er ai/n'j' [^cg]er SFX a1 cer çai/n'j' cer SFX a1 ger geai/n'j' ger SFX a1 er as/n' [^cg]er SFX a1 cer ças/n' cer SFX a1 ger geas/n' ger SFX a1 er a/n'q' [^cg]er SFX a1 cer ça/n'q' cer SFX a1 ger gea/n'q' ger SFX a1 er âmes/n' [^cg]er SFX a1 cer çâmes/n' cer SFX a1 ger geâmes/n' ger SFX a1 er âtes/n' [^cg]er SFX a1 cer çâtes/n' cer SFX a1 ger geâtes/n' ger SFX a1 er èrent/n'q' er SFX a1 er erai/n'j' [^y]er SFX a1 yer yerai/n'j' [^ou]yer SFX a1 yer ierai/n'j' [aou]yer SFX a1 er eras/n' [^y]er SFX a1 yer yeras/n' [^ou]yer SFX a1 yer ieras/n' [aou]yer SFX a1 er era/n'q' [^y]er SFX a1 yer yera/n'q' [^ou]yer SFX a1 yer iera/n'q' [aou]yer SFX a1 er erons/n' [^y]er SFX a1 yer yerons/n' [^ou]yer SFX a1 yer ierons/n' [aou]yer SFX a1 er erez/n' [^y]er SFX a1 yer yerez/n' [^ou]yer SFX a1 yer ierez/n' [aou]yer SFX a1 er eront/n'q' [^y]er SFX a1 yer yeront/n'q' [^ou]yer SFX a1 yer ieront/n'q' [aou]yer SFX a1 er erais/n'j' [^y]er SFX a1 yer yerais/n'j' [^ou]yer SFX a1 yer ierais/n'j' [aou]yer SFX a1 er erais/n' [^y]er SFX a1 yer yerais/n' [^ou]yer SFX a1 yer ierais/n' [aou]yer SFX a1 er erait/n'q' [^y]er SFX a1 yer yerait/n'q' [^ou]yer SFX a1 yer ierait/n'q' [aou]yer SFX a1 er erions/n' [^y]er SFX a1 yer yerions/n' [^ou]yer SFX a1 yer ierions/n' [aou]yer SFX a1 er eriez/n' [^y]er SFX a1 yer yeriez/n' [^ou]yer SFX a1 yer ieriez/n' [aou]yer SFX a1 er eraient/n'q' [^y]er SFX a1 yer yeraient/n'q' [^ou]yer SFX a1 yer ieraient/n'q' [aou]yer SFX a1 er e/n'j' [^y]er SFX a1 yer ye/n'j' [^ou]yer SFX a1 yer ie/n'j' [aou]yer SFX a1 er es/n' [^y]er SFX a1 yer yes/n' [^ou]yer SFX a1 yer ies/n' [aou]yer SFX a1 er e/n'q' [^y]er SFX a1 yer ye/n'q' [^ou]yer SFX a1 yer ie/n'q' [aou]yer SFX a1 er ions/n' er SFX a1 er iez/n' er SFX a1 er ent/n'q' [^y]er SFX a1 yer yent/n'q' [^ou]yer SFX a1 yer ient/n'q' [aou]yer SFX a1 er asse/n'j' [^cg]er SFX a1 cer çasse/n'j' cer SFX a1 ger geasse/n'j' ger SFX a1 er asses/n' [^cg]er SFX a1 cer çasses/n' cer SFX a1 ger geasses/n' ger SFX a1 er ât/n'q' [^cg]er SFX a1 cer çât/n'q' cer SFX a1 ger geât/n'q' ger SFX a1 er assions/n' [^cg]er SFX a1 cer çassions/n' cer SFX a1 ger geassions/n' ger SFX a1 er assiez/n' [^cg]er SFX a1 cer çassiez/n' cer SFX a1 ger geassiez/n' ger SFX a1 er assent/n'q' [^cg]er SFX a1 cer çassent/n'q' cer SFX a1 ger geassent/n'q' ger SFX a2 Y 119 SFX a2 er er/n'q'd'l'm't's' er SFX a2 er ant/n'q'l'm't's' [^cg]er SFX a2 cer çant/n'q'l'm't's' cer SFX a2 ger geant/n'q'l'm't's' ger SFX a2 er é/q' er SFX a2 er e/n'q'j'l't' [^y]er SFX a2 yer ye/n'q'j'l't' [^ou]yer SFX a2 yer ie/n'q'j'l't' [aou]yer SFX a2 er es/n'q'l'm' [^y]er SFX a2 yer yes/n'q'l'm' [^ou]yer SFX a2 yer ies/n'q'l'm' [aou]yer SFX a2 er e/n'q'l'm't's' [^y]er SFX a2 er e/n'q'l'm't's' [^ou]yer SFX a2 yer ie/n'q'l'm't's' [aou]yer SFX a2 er ons/n'q'l't' [^cg]er SFX a2 cer çons/n'q'l't' cer SFX a2 ger geons/n'q'l't' ger SFX a2 er ez/n'q'l'm' er SFX a2 er ent/n'q'l'm't's' [^y]er SFX a2 yer yent/n'q'l'm't's' [^ou]yer SFX a2 yer ient/n'q'l'm't's' [aou]yer SFX a2 er ais/n'q'j'l't' [^cg]er SFX a2 cer çais/n'q'j'l't' cer SFX a2 ger geais/n'q'j'l't' ger SFX a2 er ais/n'q'l'm' [^cg]er SFX a2 cer çais/n'q'l'm' cer SFX a2 ger geais/n'q'l'm' ger SFX a2 er ait/n'q'l'm't's' [^cg]er SFX a2 cer çait/n'q'l'm't's' cer SFX a2 ger geait/n'q'l'm't's' ger SFX a2 er ions/n'q'l't' er SFX a2 er iez/n'q'l'm' er SFX a2 er aient/n'q'l'm't's' [^cg]er SFX a2 cer çaient/n'q'l'm't's' cer SFX a2 ger geaient/n'q'l'm't's' ger SFX a2 er ai/n'q'j'l't' [^cg]er SFX a2 cer çai/n'q'j'l't' cer SFX a2 ger geai/n'q'j'l't' ger SFX a2 er as/n'q'l'm' [^cg]er SFX a2 cer ças/n'q'l'm' cer SFX a2 ger geas/n'q'l'm' ger SFX a2 er a/n'q'l'm't's' [^cg]er SFX a2 cer ça/n'q'l'm't's' cer SFX a2 ger gea/n'q'l'm't's' ger SFX a2 er âmes/n'q'l't' [^cg]er SFX a2 cer çâmes/n'q'l't' cer SFX a2 ger geâmes/n'q'l't' ger SFX a2 er âtes/n'q'l'm' [^cg]er SFX a2 cer çâtes/n'q'l'm' cer SFX a2 ger geâtes/n'q'l'm' ger SFX a2 er èrent/n'q'l'm't's' er SFX a2 er erai/n'q'j'l't' [^y]er SFX a2 yer yerai/n'q'j'l't' [^ou]yer SFX a2 yer ierai/n'q'j'l't' [aou]yer SFX a2 er eras/n'q'l'm' [^y]er SFX a2 yer yeras/n'q'l'm' [^ou]yer SFX a2 yer ieras/n'q'l'm' [aou]yer SFX a2 er era/n'q'l'm't's' [^y]er SFX a2 yer yera/n'q'l'm't's' [^ou]yer SFX a2 yer iera/n'q'l'm't's' [aou]yer SFX a2 er erons/n'q'l't' [^y]er SFX a2 yer yerons/n'q'l't' [^ou]yer SFX a2 yer ierons/n'q'l't' [aou]yer SFX a2 er erez/n'q'l'm' [^y]er SFX a2 yer yerez/n'q'l'm' [^ou]yer SFX a2 yer ierez/n'q'l'm' [aou]yer SFX a2 er eront/n'q'l'm't's' [^y]er SFX a2 yer yeront/n'q'l'm't's' [^ou]yer SFX a2 yer ieront/n'q'l'm't's' [aou]yer SFX a2 er erais/n'q'j'l't' [^y]er SFX a2 yer yerais/n'q'j'l't' [^ou]yer SFX a2 yer ierais/n'q'j'l't' [aou]yer SFX a2 er erais/n'q'l'm' [^y]er SFX a2 yer yerais/n'q'l'm' [^ou]yer SFX a2 yer ierais/n'q'l'm' [aou]yer SFX a2 er erait/n'q'l'm't's' [^y]er SFX a2 yer yerait/n'q'l'm't's' [^ou]yer SFX a2 yer ierait/n'q'l'm't's' [aou]yer SFX a2 er erions/n'q'l't' [^y]er SFX a2 yer yerions/n'q'l't' [^ou]yer SFX a2 yer ierions/n'q'l't' [aou]yer SFX a2 er eriez/n'q'l'm' [^y]er SFX a2 yer yeriez/n'q'l'm' [^ou]yer SFX a2 yer ieriez/n'q'l'm' [aou]yer SFX a2 er eraient/n'q'l'm't's' [^y]er SFX a2 yer yeraient/n'q'l'm't's' [^ou]yer SFX a2 yer ieraient/n'q'l'm't's' [aou]yer SFX a2 er e/n'j'l't' [^y]er SFX a2 yer ye/n'j'l't' [^ou]yer SFX a2 yer ie/n'j'l't' [aou]yer SFX a2 er es/n'l'm' [^y]er SFX a2 yer yes/n'l'm' [^ou]yer SFX a2 yer ies/n'l'm' [aou]yer SFX a2 er e/n'l'm't's' [^y]er SFX a2 yer ye/n'l'm't's' [^ou]yer SFX a2 yer ie/n'l'm't's' [aou]yer SFX a2 er ions/n'l't' er SFX a2 er iez/n'l'm' er SFX a2 er ent/n'l'm't's' [^y]er SFX a2 yer yent/n'l'm't's' [^ou]yer SFX a2 yer ient/n'l'm't's' [aou]yer SFX a2 er asse/n'q'j'l't' [^cg]er SFX a2 cer çasse/n'q'j'l't' cer SFX a2 ger geasse/n'q'j'l't' ger SFX a2 er asses/n'q'l'm' [^cg]er SFX a2 cer çasses/n'q'l'm' cer SFX a2 ger geasses/n'q'l'm' ger SFX a2 er ât/n'q'l'm't's' [^cg]er SFX a2 cer çât/n'q'l'm't's' cer SFX a2 ger geât/n'q'l'm't's' ger SFX a2 er assions/n'q'l't' [^cg]er SFX a2 cer çassions/n'q'l't' cer SFX a2 ger geassions/n'q'l't' ger SFX a2 er assiez/n'q'l'm' [^cg]er SFX a2 cer çassiez/n'q'l'm' cer SFX a2 ger geassiez/n'q'l'm' ger SFX a2 er assent/n'q'l'm't's' [^cg]er SFX a2 cer çassent/n'q'l'm't's' cer SFX a2 ger geassent/n'q'l'm't's' ger SFX a3 Y 119 SFX a3 er er/m't's' er SFX a3 er ant/m't's' [^cg]er SFX a3 cer çant/m't's' cer SFX a3 ger geant/m't's' ger SFX a3 er é er SFX a3 er e/m' [^y]er SFX a3 yer ye/m' [^ou]yer SFX a3 yer ie/m' [aou]yer SFX a3 er es/t' [^y]er SFX a3 yer yes/t' [^ou]yer SFX a3 yer ies/t' [aou]yer SFX a3 er e/s' [^y]er SFX a3 yer ye/s' [^ou]yer SFX a3 yer ie/s' [aou]yer SFX a3 er ons [^cg]er SFX a3 cer çons cer SFX a3 ger geons ger SFX a3 r z er SFX a3 er ent/s' [^y]er SFX a3 yer yent/s' [^ou]yer SFX a3 yer ient/s' [aou]yer SFX a3 er ais/m' [^cg]er SFX a3 cer çais/m' cer SFX a3 ger geais/m' ger SFX a3 er ais/t' [^cg]er SFX a3 cer çais/t' cer SFX a3 ger geais/t' ger SFX a3 er ait/s' [^cg]er SFX a3 cer çait/s' cer SFX a3 ger geait/s' ger SFX a3 er ions er SFX a3 er iez er SFX a3 er aient/s' [^cg]er SFX a3 cer çaient/s' cer SFX a3 ger geaient/s' ger SFX a3 er ai/m' [^cg]er SFX a3 cer çai/m' cer SFX a3 ger geai/m' ger SFX a3 er as/t' [^cg]er SFX a3 cer ças/t' cer SFX a3 ger geas/t' ger SFX a3 er a/s' [^cg]er SFX a3 cer ça/s' cer SFX a3 ger gea/s' ger SFX a3 er âmes [^cg]er SFX a3 cer çâmes cer SFX a3 ger geâmes ger SFX a3 er âtes [^cg]er SFX a3 cer çâtes/s' cer SFX a3 ger geâtes/s' ger SFX a3 er èrent/s' er SFX a3 er erai/m' [^y]er SFX a3 yer yerai/m' [^ou]yer SFX a3 yer ierai/m' [aou]yer SFX a3 er eras/t' [^y]er SFX a3 yer yeras/t' [^ou]yer SFX a3 yer ieras/t' [aou]yer SFX a3 er era/s' [^y]er SFX a3 yer yera/s' [^ou]yer SFX a3 yer iera/s' [aou]yer SFX a3 er erons [^y]er SFX a3 yer yerons [^ou]yer SFX a3 yer ierons [aou]yer SFX a3 er erez [^y]er SFX a3 yer yerez [^ou]yer SFX a3 yer ierez [aou]yer SFX a3 er eront/s' [^y]er SFX a3 yer yeront/s' [^ou]yer SFX a3 yer ieront/s' [aou]yer SFX a3 er erais/m' [^y]er SFX a3 yer yerais/m' [^ou]yer SFX a3 yer ierais/m' [aou]yer SFX a3 er erais/t' [^y]er SFX a3 yer yerais/t' [^ou]yer SFX a3 yer ierais/t' [aou]yer SFX a3 er erait/s' [^y]er SFX a3 yer yerait/s' [^ou]yer SFX a3 yer ierait/s' [aou]yer SFX a3 er erions [^y]er SFX a3 yer yerions [^ou]yer SFX a3 yer ierions [aou]yer SFX a3 er eriez [^y]er SFX a3 yer yeriez [^ou]yer SFX a3 yer ieriez [aou]yer SFX a3 er eraient/s' [^y]er SFX a3 yer yeraient/s' [^ou]yer SFX a3 yer ieraient/s' [aou]yer SFX a3 er e/m' [^y]er SFX a3 yer ye/m' [^ou]yer SFX a3 yer ie/m' [aou]yer SFX a3 er es/t' [^y]er SFX a3 yer yes/t' [^ou]yer SFX a3 yer ies/t' [aou]yer SFX a3 er e/s' [^y]er SFX a3 yer ye/s' [^ou]yer SFX a3 yer ie/s' [aou]yer SFX a3 er ions er SFX a3 er iez er SFX a3 er ent/s' [^y]er SFX a3 yer yent/s' [^ou]yer SFX a3 yer ient/s' [aou]yer SFX a3 er asse/m' [^cg]er SFX a3 cer çasse/m' cer SFX a3 ger geasse/m' ger SFX a3 er asses/t' [^cg]er SFX a3 cer çasses/t' cer SFX a3 ger geasses/t' ger SFX a3 er ât/s' [^cg]er SFX a3 cer çât/s' cer SFX a3 ger geât/s' ger SFX a3 er assions [^cg]er SFX a3 cer çassions cer SFX a3 ger geassions ger SFX a3 er assiez [^cg]er SFX a3 cer çassiez cer SFX a3 ger geassiez ger SFX a3 er assent/s' [^cg]er SFX a3 cer çassent/s' cer SFX a3 ger geassent/s' ger SFX a4 Y 119 SFX a4 er er/n'q'd'l'm't's' er SFX a4 er ant/n'q'l'm't's' [^cg]er SFX a4 cer çant/n'q'l'm't's' cer SFX a4 ger geant/n'q'l'm't's' ger SFX a4 er é/q' er SFX a4 er e/n'q'j'l'm't' [^y]er SFX a4 yer ye/n'q'j'l'm't' [^ou]yer SFX a4 yer ie/n'q'j'l'm't' [aou]yer SFX a4 er es/n'q'l'm't' [^y]er SFX a4 yer yes/n'q'l'm't' [^ou]yer SFX a4 yer ies/n'q'l'm't' [aou]yer SFX a4 er e/n'q'l'm't's' [^y]er SFX a4 yer ye/n'q'l'm't's' [^ou]yer SFX a4 yer ie/n'q'l'm't's' [aou]yer SFX a4 er ons/n'q'l't' [^cg]er SFX a4 cer çons/n'q'l't' cer SFX a4 ger geons/n'q'l't' ger SFX a4 er ez/n'q'l'm' er SFX a4 er ent/n'q'l'm't's' [^y]er SFX a4 yer yent/n'q'l'm't's' [^ou]yer SFX a4 yer ient/n'q'l'm't's' [aou]yer SFX a4 er ais/n'q'j'l'm't' [^cg]er SFX a4 cer çais/n'q'j'l'm't' cer SFX a4 ger geais/n'q'j'l'm't' ger SFX a4 er ais/n'q'l'm't' [^cg]er SFX a4 cer çais/n'q'l'm't' cer SFX a4 ger geais/n'q'l'm't' ger SFX a4 er ait/n'q'l'm't's' [^cg]er SFX a4 cer çait/n'q'l'm't's' cer SFX a4 ger geait/n'q'l'm't's' ger SFX a4 er ions/n'q'l't' er SFX a4 er iez/n'q'l'm' er SFX a4 er aient/n'q'l'm't's' [^cg]er SFX a4 cer çaient/n'q'l'm't's' cer SFX a4 ger geaient/n'q'l'm't's' ger SFX a4 er ai/n'q'j'l'm't' [^cg]er SFX a4 cer çai/n'q'j'l'm't' cer SFX a4 ger geai/n'q'j'l'm't' ger SFX a4 er as/n'q'l'm't' [^cg]er SFX a4 cer ças/n'q'l'm't' cer SFX a4 ger geas/n'q'l'm't' ger SFX a4 er a/n'q'l'm't's' [^cg]er SFX a4 cer ça/n'q'l'm't's' cer SFX a4 ger gea/n'q'l'm't's' ger SFX a4 er âmes/n'q'l't' [^cg]er SFX a4 cer çâmes/n'q'l't' cer SFX a4 ger geâmes/n'q'l't' ger SFX a4 er âtes/n'q'l'm' [^cg]er SFX a4 cer çâtes/n'q'l'm' cer SFX a4 ger geâtes/n'q'l'm' ger SFX a4 er èrent/n'q'l'm't's' er SFX a4 er erai/n'q'j'l'm't' [^y]er SFX a4 yer yerai/n'q'j'l'm't' [^ou]yer SFX a4 yer ierai/n'q'j'l'm't' [aou]yer SFX a4 er eras/n'q'l'm't' [^y]er SFX a4 yer yeras/n'q'l'm't' [^ou]yer SFX a4 yer ieras/n'q'l'm't' [aou]yer SFX a4 er era/n'q'l'm't's' [^y]er SFX a4 yer yera/n'q'l'm't's' [^ou]yer SFX a4 yer iera/n'q'l'm't's' [aou]yer SFX a4 er erons/n'q'l't' [^y]er SFX a4 yer yerons/n'q'l't' [^ou]yer SFX a4 yer ierons/n'q'l't' [aou]yer SFX a4 er erez/n'q'l'm' [^y]er SFX a4 yer yerez/n'q'l'm' [^ou]yer SFX a4 yer ierez/n'q'l'm' [aou]yer SFX a4 er eront/n'q'l'm't's' [^y]er SFX a4 yer yeront/n'q'l'm't's' [^ou]yer SFX a4 yer ieront/n'q'l'm't's' [aou]yer SFX a4 er erais/n'q'j'l'm't' [^y]er SFX a4 yer yerais/n'q'j'l'm't' [^ou]yer SFX a4 yer ierais/n'q'j'l'm't' [aou]yer SFX a4 er erais/n'q'l'm't' [^y]er SFX a4 yer yerais/n'q'l'm't' [^ou]yer SFX a4 yer ierais/n'q'l'm't' [aou]yer SFX a4 er erait/n'q'l'm't's' [^y]er SFX a4 yer yerait/n'q'l'm't's' [^ou]yer SFX a4 yer ierait/n'q'l'm't's' [aou]yer SFX a4 er erions/n'q'l't' [^y]er SFX a4 yer yerions/n'q'l't' [^ou]yer SFX a4 yer ierions/n'q'l't' [aou]yer SFX a4 er eriez/n'q'l'm' [^y]er SFX a4 yer yeriez/n'q'l'm' [^ou]yer SFX a4 yer ieriez/n'q'l'm' [aou]yer SFX a4 er eraient/n'q'l'm't's' [^y]er SFX a4 yer yeraient/n'q'l'm't's' [^ou]yer SFX a4 yer ieraient/n'q'l'm't's' [aou]yer SFX a4 er e/n'j'l'm't' [^y]er SFX a4 yer ye/n'j'l'm't' [^ou]yer SFX a4 yer ie/n'j'l'm't' [aou]yer SFX a4 er es/n'l'm't' [^y]er SFX a4 yer yes/n'l'm't' [^ou]yer SFX a4 yer ies/n'l'm't' [aou]yer SFX a4 er e/n'l'm't's' [^y]er SFX a4 yer ye/n'l'm't's' [^ou]yer SFX a4 yer ie/n'l'm't's' [aou]yer SFX a4 er ions/n'l't' er SFX a4 er iez/n'l'm' er SFX a4 er ent/n'l'm't's' [^y]er SFX a4 yer yent/n'l'm't's' [^ou]yer SFX a4 yer ient/n'l'm't's' [aou]yer SFX a4 er asse/n'q'j'l'm't' [^cg]er SFX a4 cer çasse/n'q'j'l'm't' cer SFX a4 ger geasse/n'q'j'l'm't' ger SFX a4 er asses/n'q'l'm't' [^cg]er SFX a4 cer çasses/n'q'l'm't' cer SFX a4 ger geasses/n'q'l'm't' ger SFX a4 er ât/n'q'l'm't's' [^cg]er SFX a4 cer çât/n'q'l'm't's' cer SFX a4 ger geât/n'q'l'm't's' ger SFX a4 er assions/n'q'l't' [^cg]er SFX a4 cer çassions/n'q'l't' cer SFX a4 ger geassions/n'q'l't' ger SFX a4 er assiez/n'q'l'm' [^cg]er SFX a4 cer çassiez/n'q'l'm' cer SFX a4 ger geassiez/n'q'l'm' ger SFX a4 er assent/n'q'l'm't's' [^cg]er SFX a4 cer çassent/n'q'l'm't's' cer SFX a4 ger geassent/n'q'l'm't's' ger SFX a5 Y 119 SFX a5 er er/n'q'd'm't's' er SFX a5 er ant/n'q'm't's' [^cg]er SFX a5 cer çant/n'q'm't's' cer SFX a5 ger geant/n'q'm't's' ger SFX a5 er é/q' er SFX a5 er e/n'j'm't' [^y]er SFX a5 yer ye/n'j'm't' [^ou]yer SFX a5 yer ie/n'j'm't' [aou]yer SFX a5 er es/n'm't' [^y]er SFX a5 yer yes/n'm't' [^ou]yer SFX a5 yer ies/n'm't' [aou]yer SFX a5 er e/n'q'm't's' [^y]er SFX a5 yer ye/n'q'm't's' [^ou]yer SFX a5 yer ie/n'q'm't's' [aou]yer SFX a5 er ons/n't' [^cg]er SFX a5 cer çons/n't' cer SFX a5 ger geons/n't' ger SFX a5 r z/n'm' er SFX a5 er ent/n'q'm't's' [^y]er SFX a5 yer yent/n'q'm't's' [^ou]yer SFX a5 yer ient/n'q'm't's' [aou]yer SFX a5 er ais/n'j'm't' [^cg]er SFX a5 cer çais/n'j'm't' cer SFX a5 ger geais/n'j'm't' ger SFX a5 er ais/n'm't' [^cg]er SFX a5 cer çais/n'm't' cer SFX a5 ger geais/n'm't' ger SFX a5 er ait/n'q'm't's' [^cg]er SFX a5 cer çait/n'q'm't's' cer SFX a5 ger geait/n'q'm't's' ger SFX a5 er ions/n't' er SFX a5 er iez/n'm' er SFX a5 er aient/n'q'm't's' [^cg]er SFX a5 cer çaient/n'q'm't's' cer SFX a5 ger geaient/n'q'm't's' ger SFX a5 er ai/n'j'm't' [^cg]er SFX a5 cer çai/n'j'm't' cer SFX a5 ger geai/n'j'm't' ger SFX a5 er as/n'm't' [^cg]er SFX a5 cer ças/n'm't' cer SFX a5 ger geas/n'm't' ger SFX a5 er a/n'q'm't's' [^cg]er SFX a5 cer ça/n'q'm't's' cer SFX a5 ger gea/n'q'm't's' ger SFX a5 er âmes/n't' [^cg]er SFX a5 cer çâmes/n't' cer SFX a5 ger geâmes/n't' ger SFX a5 er âtes/n'm' [^cg]er SFX a5 cer çâtes/n'm' cer SFX a5 ger geâtes/n'm' ger SFX a5 er èrent/n'q'm't's' er SFX a5 er erai/n'j'm't' [^y]er SFX a5 yer yerai/n'j'm't' [^ou]yer SFX a5 yer ierai/n'j'm't' [aou]yer SFX a5 er eras/n'm't' [^y]er SFX a5 yer yeras/n'm't' [^ou]yer SFX a5 yer ieras/n'm't' [aou]yer SFX a5 er era/n'q'm't's' [^y]er SFX a5 yer yera/n'q'm't's' [^ou]yer SFX a5 yer iera/n'q'm't's' [aou]yer SFX a5 er erons/n't' [^y]er SFX a5 yer yerons/n't' [^ou]yer SFX a5 yer ierons/n't' [aou]yer SFX a5 er erez/n'm' [^y]er SFX a5 yer yerez/n'm' [^ou]yer SFX a5 yer ierez/n'm' [aou]yer SFX a5 er eront/n'q'm't's' [^y]er SFX a5 yer yeront/n'q'm't's' [^ou]yer SFX a5 yer ieront/n'q'm't's' [aou]yer SFX a5 er erais/n'j'm't' [^y]er SFX a5 yer yerais/n'j'm't' [^ou]yer SFX a5 yer ierais/n'j'm't' [aou]yer SFX a5 er erais/n'm't' [^y]er SFX a5 yer yerais/n'm't' [^ou]yer SFX a5 yer ierais/n'm't' [aou]yer SFX a5 er erait/n'q'm't's' [^y]er SFX a5 yer yerait/n'q'm't's' [^ou]yer SFX a5 yer ierait/n'q'm't's' [aou]yer SFX a5 er erions/n't' [^y]er SFX a5 yer yerions/n't' [^ou]yer SFX a5 yer ierions/n't' [aou]yer SFX a5 er eriez/n'm' [^y]er SFX a5 yer yeriez/n'm' [^ou]yer SFX a5 yer ieriez/n'm' [aou]yer SFX a5 er eraient/n'q'm't's' [^y]er SFX a5 yer yeraient/n'q'm't's' [^ou]yer SFX a5 yer ieraient/n'q'm't's' [aou]yer SFX a5 er e/n'j'm't' [^y]er SFX a5 yer ye/n'j'm't' [^ou]yer SFX a5 yer ie/n'j'm't' [aou]yer SFX a5 er es/n'm't' [^y]er SFX a5 yer yes/n'm't' [^ou]yer SFX a5 yer ies/n'm't' [aou]yer SFX a5 er e/n'q'm't's' [^y]er SFX a5 yer ye/n'q'm't's' [^ou]yer SFX a5 yer ie/n'q'm't's' [aou]yer SFX a5 er ions/n't' er SFX a5 er iez/n'm' er SFX a5 er ent/n'q'm't's' [^y]er SFX a5 yer yent/n'q'm't's' [^ou]yer SFX a5 yer ient/n'q'm't's' [aou]yer SFX a5 er asse/n'j'm't' [^cg]er SFX a5 cer çasse/n'j'm't' cer SFX a5 ger geasse/n'j'm't' ger SFX a5 er asses/n'm't' [^cg]er SFX a5 cer çasses/n'm't' cer SFX a5 ger geasses/n'm't' ger SFX a5 er ât/n'q'm't's' [^cg]er SFX a5 cer çât/n'q'm't's' cer SFX a5 ger geât/n'q'm't's' ger SFX a5 er assions/n't' [^cg]er SFX a5 cer çassions/n't' cer SFX a5 ger geassions/n't' ger SFX a5 er assiez/n'm' [^cg]er SFX a5 cer çassiez/n'm' cer SFX a5 ger geassiez/n'm' ger SFX a5 er assent/n'q'm't's' [^cg]er SFX a5 cer çassent/n'q'm't's' cer SFX a5 ger geassent/n'q'm't's' ger SFX a8 Y 77 SFX a8 er er/s' er SFX a8 er ant/s' [^cg]er SFX a8 cer çant/s' cer SFX a8 ger geant/s' ger SFX a8 er é er SFX a8 er e/s' [^y]er SFX a8 yer ye/s' [^ou]yer SFX a8 yer ie/s' [aou]yer SFX a8 er ons [^cg]er SFX a8 cer çons cer SFX a8 ger geons ger SFX a8 er ez er SFX a8 er ent/s' [^y]er SFX a8 yer yent/s' [^ou]yer SFX a8 yer ient/s' [aou]yer SFX a8 er ait/s' [^cg]er SFX a8 cer çait/s' cer SFX a8 ger geait/s' ger SFX a8 er ions er SFX a8 er iez er SFX a8 er aient/s' [^cg]er SFX a8 cer çaient/s' cer SFX a8 ger geaient/s' ger SFX a8 er a/s' [^cg]er SFX a8 cer ça/s' cer SFX a8 ger gea/s' ger SFX a8 er âmes [^cg]er SFX a8 cer çâmes cer SFX a8 ger geâmes ger SFX a8 er âtes [^cg]er SFX a8 cer çâtes/s' cer SFX a8 ger geâtes/s' ger SFX a8 er èrent/s' er SFX a8 er era/s' [^y]er SFX a8 yer yera/s' [^ou]yer SFX a8 yer iera/s' [aou]yer SFX a8 er erons [^y]er SFX a8 yer yerons [^ou]yer SFX a8 yer ierons [aou]yer SFX a8 er erez [^y]er SFX a8 yer yerez [^ou]yer SFX a8 yer ierez [aou]yer SFX a8 er eront/s' [^y]er SFX a8 yer yeront/s' [^ou]yer SFX a8 yer ieront/s' [aou]yer SFX a8 er erait/s' [^y]er SFX a8 yer yerait/s' [^ou]yer SFX a8 yer ierait/s' [aou]yer SFX a8 er erions [^y]er SFX a8 yer yerions [^ou]yer SFX a8 yer ierions [aou]yer SFX a8 er eriez [^y]er SFX a8 yer yeriez [^ou]yer SFX a8 yer ieriez [aou]yer SFX a8 er eraient/s' [^y]er SFX a8 yer yeraient/s' [^ou]yer SFX a8 yer ieraient/s' [aou]yer SFX a8 er e/s' [^y]er SFX a8 yer ye/s' [^ou]yer SFX a8 yer ie/s' [aou]yer SFX a8 er ions er SFX a8 er iez er SFX a8 er ent/s' [^y]er SFX a8 yer yent/s' [^ou]yer SFX a8 yer ient/s' [aou]yer SFX a8 er ât/s' [^cg]er SFX a8 cer çât/s' cer SFX a8 ger geât/s' ger SFX a8 er assions [^cg]er SFX a8 cer çassions cer SFX a8 ger geassions ger SFX a8 er assiez [^cg]er SFX a8 cer çassiez cer SFX a8 ger geassiez ger SFX a8 er assent/s' [^cg]er SFX a8 cer çassent/s' cer SFX a8 ger geassent/s' ger SFX a9 N 13 SFX a9 er er/n'd' er SFX a9 er ant er SFX a9 er é er SFX a9 er e/n' er SFX a9 er ait/n' [^g]er SFX a9 ger geait/n' ger SFX a9 er a/n' [^g]er SFX a9 ger gea/n' ger SFX a9 er era/n' er SFX a9 er erait/n' er SFX a9 er e/n' er SFX a9 er ât/n' [^g]er SFX a9 ger geât/n' ger SFX b0 N 242 SFX b0 er er er SFX b0 er ant [^c]er SFX b0 cer çant cer SFX b0 er é er SFX b0 ecer èce ecer SFX b0 emer ème emer SFX b0 ener ène ener SFX b0 eper èpe eper SFX b0 erer ère erer SFX b0 eser èse eser SFX b0 ever ève ever SFX b0 evrer èvre evrer SFX b0 eter ète eter SFX b0 eler èle eler SFX b0 ecer èces ecer SFX b0 emer èmes emer SFX b0 ener ènes ener SFX b0 eper èpes eper SFX b0 erer ères erer SFX b0 eser èses eser SFX b0 ever èves ever SFX b0 evrer èvres evrer SFX b0 eter ètes eter SFX b0 eler èles eler SFX b0 ecer èce ecer SFX b0 emer ème emer SFX b0 ener ène ener SFX b0 eper èpe eper SFX b0 erer ère erer SFX b0 eser èse eser SFX b0 ever ève ever SFX b0 evrer èvre evrer SFX b0 eter ète eter SFX b0 eler èle eler SFX b0 er ons [^c]er SFX b0 cer çons cer SFX b0 er ez er SFX b0 ecer ècent ecer SFX b0 emer èment emer SFX b0 ener ènent ener SFX b0 eper èpent eper SFX b0 erer èrent erer SFX b0 eser èsent eser SFX b0 ever èvent ever SFX b0 evrer èvrent evrer SFX b0 eter ètent eter SFX b0 eler èlent eler SFX b0 er ais [^c]er SFX b0 cer çais cer SFX b0 er ais [^c]er SFX b0 cer çais cer SFX b0 er ait [^c]er SFX b0 cer çait cer SFX b0 er ions er SFX b0 er iez er SFX b0 er aient [^c]er SFX b0 cer çaient cer SFX b0 er ai [^c]er SFX b0 cer çai cer SFX b0 er as [^c]er SFX b0 cer ças cer SFX b0 er a [^c]er SFX b0 cer ça cer SFX b0 er âmes [^c]er SFX b0 cer çâmes cer SFX b0 er âtes [^c]er SFX b0 cer çâtes cer SFX b0 er èrent er SFX b0 ecer ècerai ecer SFX b0 emer èmerai emer SFX b0 ener ènerai ener SFX b0 eper èperai eper SFX b0 erer èrerai erer SFX b0 eser èserai eser SFX b0 ever èverai ever SFX b0 evrer èvrerai evrer SFX b0 eter èterai eter SFX b0 eler èlerai eler SFX b0 ecer èceras ecer SFX b0 emer èmeras emer SFX b0 ener èneras ener SFX b0 eper èperas eper SFX b0 erer èreras erer SFX b0 eser èseras eser SFX b0 ever èveras ever SFX b0 evrer èvreras evrer SFX b0 eter èteras eter SFX b0 eler èleras eler SFX b0 ecer ècera ecer SFX b0 emer èmera emer SFX b0 ener ènera ener SFX b0 eper èpera eper SFX b0 erer èrera erer SFX b0 eser èsera eser SFX b0 ever èvera ever SFX b0 evrer èvrera evrer SFX b0 eter ètera eter SFX b0 eler èlera eler SFX b0 ecer ècerons ecer SFX b0 emer èmerons emer SFX b0 ener ènerons ener SFX b0 eper èperons eper SFX b0 erer èrerons erer SFX b0 eser èserons eser SFX b0 ever èverons ever SFX b0 evrer èvrerons evrer SFX b0 eter èterons eter SFX b0 eler èlerons eler SFX b0 ecer ècerez ecer SFX b0 emer èmerez emer SFX b0 ener ènerez ener SFX b0 eper èperez eper SFX b0 erer èrerez erer SFX b0 eser èserez eser SFX b0 ever èverez ever SFX b0 evrer èvrerez evrer SFX b0 eter èterez eter SFX b0 eler èlerez eler SFX b0 ecer èceront ecer SFX b0 emer èmeront emer SFX b0 ener èneront ener SFX b0 eper èperont eper SFX b0 erer èreront erer SFX b0 eser èseront eser SFX b0 ever èveront ever SFX b0 evrer èvreront evrer SFX b0 eter èteront eter SFX b0 eler èleront eler SFX b0 ecer ècerais ecer SFX b0 emer èmerais emer SFX b0 ener ènerais ener SFX b0 eper èperais eper SFX b0 erer èrerais erer SFX b0 eser èserais eser SFX b0 ever èverais ever SFX b0 evrer èvrerais evrer SFX b0 eter èterais eter SFX b0 eler èlerais eler SFX b0 ecer ècerais ecer SFX b0 emer èmerais emer SFX b0 ener ènerais ener SFX b0 eper èperais eper SFX b0 erer èrerais erer SFX b0 eser èserais eser SFX b0 ever èverais ever SFX b0 evrer èvrerais evrer SFX b0 eter èterais eter SFX b0 eler èlerais eler SFX b0 ecer ècerait ecer SFX b0 emer èmerait emer SFX b0 ener ènerait ener SFX b0 eper èperait eper SFX b0 erer èrerait erer SFX b0 eser èserait eser SFX b0 ever èverait ever SFX b0 evrer èvrerait evrer SFX b0 eter èterait eter SFX b0 eler èlerait eler SFX b0 ecer ècerions ecer SFX b0 emer èmerions emer SFX b0 ener ènerions ener SFX b0 eper èperions eper SFX b0 erer èrerions erer SFX b0 eser èserions eser SFX b0 ever èverions ever SFX b0 evrer èvrerions evrer SFX b0 eter èterions eter SFX b0 eler èlerions eler SFX b0 ecer èceriez ecer SFX b0 emer èmeriez emer SFX b0 ener èneriez ener SFX b0 eper èperiez eper SFX b0 erer èreriez erer SFX b0 eser èseriez eser SFX b0 ever èveriez ever SFX b0 evrer èvreriez evrer SFX b0 eter èteriez eter SFX b0 eler èleriez eler SFX b0 ecer èceraient ecer SFX b0 emer èmeraient emer SFX b0 ener èneraient ener SFX b0 eper èperaient eper SFX b0 erer èreraient erer SFX b0 eser èseraient eser SFX b0 ever èveraient ever SFX b0 evrer èvreraient evrer SFX b0 eter èteraient eter SFX b0 eler èleraient eler SFX b0 ecer èce ecer SFX b0 emer ème emer SFX b0 ener ène ener SFX b0 eper èpe eper SFX b0 erer ère erer SFX b0 eser èse eser SFX b0 ever ève ever SFX b0 evrer èvre evrer SFX b0 eter ète eter SFX b0 eler èle eler SFX b0 ecer èces ecer SFX b0 emer èmes emer SFX b0 ener ènes ener SFX b0 eper èpes eper SFX b0 erer ères erer SFX b0 eser èses eser SFX b0 ever èves ever SFX b0 evrer èvres evrer SFX b0 eter ètes eter SFX b0 eler èles eler SFX b0 ecer èce ecer SFX b0 emer ème emer SFX b0 ener ène ener SFX b0 eper èpe eper SFX b0 erer ère erer SFX b0 eser èse eser SFX b0 ever ève ever SFX b0 evrer èvre evrer SFX b0 eter ète eter SFX b0 eler èle eler SFX b0 er ions er SFX b0 er iez er SFX b0 ecer ècent ecer SFX b0 emer èment emer SFX b0 ener ènent ener SFX b0 eper èpent eper SFX b0 erer èrent erer SFX b0 eser èsent eser SFX b0 ever èvent ever SFX b0 evrer èvrent evrer SFX b0 eter ètent eter SFX b0 eler èlent eler SFX b0 er asse [^c]er SFX b0 cer çasse cer SFX b0 er asses [^c]er SFX b0 cer çasses cer SFX b0 er ât [^c]er SFX b0 cer çât cer SFX b0 er assions [^c]er SFX b0 cer çassions cer SFX b0 er assiez [^c]er SFX b0 cer çassiez cer SFX b0 er assent [^c]er SFX b0 cer çassent cer SFX b1 Y 242 SFX b1 er er/n'q'd' er SFX b1 er ant/n'q' [^c]er SFX b1 cer çant/n'q' cer SFX b1 er é/q' er SFX b1 ecer èce/n'j' ecer SFX b1 emer ème/n'j' emer SFX b1 ener ène/n'j' ener SFX b1 eper èpe/n'j' eper SFX b1 erer ère/n'j' erer SFX b1 eser èse/n'j' eser SFX b1 ever ève/n'j' ever SFX b1 evrer èvre/n'j' evrer SFX b1 eter ète/n'j' eter SFX b1 eler èle/n'j' eler SFX b1 ecer èces/n' ecer SFX b1 emer èmes/n' emer SFX b1 ener ènes/n' ener SFX b1 eper èpes/n' eper SFX b1 erer ères/n' erer SFX b1 eser èses/n' eser SFX b1 ever èves/n' ever SFX b1 evrer èvres/n' evrer SFX b1 eter ètes/n' eter SFX b1 eler èles/n' eler SFX b1 ecer èce/n'q' ecer SFX b1 emer ème/n'q' emer SFX b1 ener ène/n'q' ener SFX b1 eper èpe/n'q' eper SFX b1 erer ère/n'q' erer SFX b1 eser èse/n'q' eser SFX b1 ever ève/n'q' ever SFX b1 evrer èvre/n'q' evrer SFX b1 eter ète/n'q' eter SFX b1 eler èle/n'q' eler SFX b1 er ons/n' [^c]er SFX b1 cer çons/n' cer SFX b1 er ez/n' er SFX b1 ecer ècent/n'q' ecer SFX b1 emer èment/n'q' emer SFX b1 ener ènent/n'q' ener SFX b1 eper èpent/n'q' eper SFX b1 erer èrent/n'q' erer SFX b1 eser èsent/n'q' eser SFX b1 ever èvent/n'q' ever SFX b1 evrer èvrent/n'q' evrer SFX b1 eter ètent/n'q' eter SFX b1 eler èlent/n'q' eler SFX b1 er ais/n'j' [^c]er SFX b1 cer çais/n'j' cer SFX b1 er ais/n' [^c]er SFX b1 cer çais/n' cer SFX b1 er ait/n'q' [^c]er SFX b1 cer çait/n'q' cer SFX b1 er ions/n' er SFX b1 er iez/n' er SFX b1 er aient/n'q' [^c]er SFX b1 cer çaient/n'q' cer SFX b1 er ai/n'j' [^c]er SFX b1 cer çai/n'j' cer SFX b1 er as/n' [^c]er SFX b1 cer ças/n' cer SFX b1 er a/n'q' [^c]er SFX b1 cer ça/n'q' cer SFX b1 er âmes/n' [^c]er SFX b1 cer çâmes/n' cer SFX b1 er âtes/n' [^c]er SFX b1 cer çâtes/n' cer SFX b1 er èrent/n'q' er SFX b1 ecer ècerai/n'j' ecer SFX b1 emer èmerai/n'j' emer SFX b1 ener ènerai/n'j' ener SFX b1 eper èperai/n'j' eper SFX b1 erer èrerai/n'j' erer SFX b1 eser èserai/n'j' eser SFX b1 ever èverai/n'j' ever SFX b1 evrer èvrerai/n'j' evrer SFX b1 eter èterai/n'j' eter SFX b1 eler èlerai/n'j' eler SFX b1 ecer èceras/n' ecer SFX b1 emer èmeras/n' emer SFX b1 ener èneras/n' ener SFX b1 eper èperas/n' eper SFX b1 erer èreras/n' erer SFX b1 eser èseras/n' eser SFX b1 ever èveras/n' ever SFX b1 evrer èvreras/n' evrer SFX b1 eter èteras/n' eter SFX b1 eler èleras/n' eler SFX b1 ecer ècera/n'q' ecer SFX b1 emer èmera/n'q' emer SFX b1 ener ènera/n'q' ener SFX b1 eper èpera/n'q' eper SFX b1 erer èrera/n'q' erer SFX b1 eser èsera/n'q' eser SFX b1 ever èvera/n'q' ever SFX b1 evrer èvrera/n'q' evrer SFX b1 eter ètera/n'q' eter SFX b1 eler èlera/n'q' eler SFX b1 ecer ècerons/n' ecer SFX b1 emer èmerons/n' emer SFX b1 ener ènerons/n' ener SFX b1 eper èperons/n' eper SFX b1 erer èrerons/n' erer SFX b1 eser èserons/n' eser SFX b1 ever èverons/n' ever SFX b1 evrer èvrerons/n' evrer SFX b1 eter èterons/n' eter SFX b1 eler èlerons/n' eler SFX b1 ecer ècerez/n' ecer SFX b1 emer èmerez/n' emer SFX b1 ener ènerez/n' ener SFX b1 eper èperez/n' eper SFX b1 erer èrerez/n' erer SFX b1 eser èserez/n' eser SFX b1 ever èverez/n' ever SFX b1 evrer èvrerez/n' evrer SFX b1 eter èterez/n' eter SFX b1 eler èlerez/n' eler SFX b1 ecer èceront/n'q' ecer SFX b1 emer èmeront/n'q' emer SFX b1 ener èneront/n'q' ener SFX b1 eper èperont/n'q' eper SFX b1 erer èreront/n'q' erer SFX b1 eser èseront/n'q' eser SFX b1 ever èveront/n'q' ever SFX b1 evrer èvreront/n'q' evrer SFX b1 eter èteront/n'q' eter SFX b1 eler èleront/n'q' eler SFX b1 ecer ècerais/n'j' ecer SFX b1 emer èmerais/n'j' emer SFX b1 ener ènerais/n'j' ener SFX b1 eper èperais/n'j' eper SFX b1 erer èrerais/n'j' erer SFX b1 eser èserais/n'j' eser SFX b1 ever èverais/n'j' ever SFX b1 evrer èvrerais/n'j' evrer SFX b1 eter èterais/n'j' eter SFX b1 eler èlerais/n' eler SFX b1 ecer ècerais/n' ecer SFX b1 emer èmerais/n' emer SFX b1 ener ènerais/n' ener SFX b1 eper èperais/n' eper SFX b1 erer èrerais/n' erer SFX b1 eser èserais/n' eser SFX b1 ever èverais/n' ever SFX b1 evrer èvrerais/n' evrer SFX b1 eter èterais/n' eter SFX b1 eler èlerais/n' eler SFX b1 ecer ècerait/n'q' ecer SFX b1 emer èmerait/n'q' emer SFX b1 ener ènerait/n'q' ener SFX b1 eper èperait/n'q' eper SFX b1 erer èrerait/n'q' erer SFX b1 eser èserait/n'q' eser SFX b1 ever èverait/n'q' ever SFX b1 evrer èvrerait/n'q' evrer SFX b1 eter èterait/n'q' eter SFX b1 eler èlerait/n'q' eler SFX b1 ecer ècerions/n' ecer SFX b1 emer èmerions/n' emer SFX b1 ener ènerions/n' ener SFX b1 eper èperions/n' eper SFX b1 erer èrerions/n' erer SFX b1 eser èserions/n' eser SFX b1 ever èverions/n' ever SFX b1 evrer èvrerions/n' evrer SFX b1 eter èterions/n' eter SFX b1 eler èlerions/n' eler SFX b1 ecer èceriez/n' ecer SFX b1 emer èmeriez/n' emer SFX b1 ener èneriez/n' ener SFX b1 eper èperiez/n' eper SFX b1 erer èreriez/n' erer SFX b1 eser èseriez/n' eser SFX b1 ever èveriez/n' ever SFX b1 evrer èvreriez/n' evrer SFX b1 eter èteriez/n' eter SFX b1 eler èleriez/n' eler SFX b1 ecer èceraient/n'q' ecer SFX b1 emer èmeraient/n'q' emer SFX b1 ener èneraient/n'q' ener SFX b1 eper èperaient/n'q' eper SFX b1 erer èreraient/n'q' erer SFX b1 eser èseraient/n'q' eser SFX b1 ever èveraient/n'q' ever SFX b1 evrer èvreraient/n'q' evrer SFX b1 eter èteraient/n'q' eter SFX b1 eler èleraient/n'q' eler SFX b1 ecer èce/n'j' ecer SFX b1 emer ème/n'j' emer SFX b1 ener ène/n'j' ener SFX b1 eper èpe/n'j' eper SFX b1 erer ère/n'j' erer SFX b1 eser èse/n'j' eser SFX b1 ever ève/n'j' ever SFX b1 evrer èvre/n'j' evrer SFX b1 eter ète/n'j' eter SFX b1 eler èle/n'j' eler SFX b1 ecer èces/n' ecer SFX b1 emer èmes/n' emer SFX b1 ener ènes/n' ener SFX b1 eper èpes/n' eper SFX b1 erer ères/n' erer SFX b1 eser èses/n' eser SFX b1 ever èves/n' ever SFX b1 evrer èvres/n' evrer SFX b1 eter ètes/n' eter SFX b1 eler èles/n' eler SFX b1 ecer èce/n'q' ecer SFX b1 emer ème/n'q' emer SFX b1 ener ène/n'q' ener SFX b1 eper èpe/n'q' eper SFX b1 erer ère/n'q' erer SFX b1 eser èse/n'q' eser SFX b1 ever ève/n'q' ever SFX b1 evrer èvre/n'q' evrer SFX b1 eter ète/n'q' eter SFX b1 eler èle/n'q' eler SFX b1 er ions/n' er SFX b1 er iez/n' er SFX b1 ecer ècent/n'q' ecer SFX b1 emer èment/n'q' emer SFX b1 ener ènent/n'q' ener SFX b1 eper èpent/n'q' eper SFX b1 erer èrent/n'q' erer SFX b1 eser èsent/n'q' eser SFX b1 ever èvent/n'q' ever SFX b1 evrer èvrent/n'q' evrer SFX b1 eter ètent/n'q' eter SFX b1 eler èlent/n'q' eler SFX b1 er asse/n'j' [^c]er SFX b1 cer çasse/n'j' cer SFX b1 er asses/n' [^c]er SFX b1 cer çasses/n' cer SFX b1 er ât/n'q' [^c]er SFX b1 cer çât/n'q' cer SFX b1 er assions/n' [^c]er SFX b1 cer çassions/n' cer SFX b1 er assiez/n' [^c]er SFX b1 cer çassiez/n' cer SFX b1 er assent/n'q' [^c]er SFX b1 cer çassent/n'q' cer SFX b2 Y 242 SFX b2 er er/n'q'd'l'm't's' er SFX b2 er ant/n'q'l'm't's' [^c]er SFX b2 cer çant/n'q'l'm't's' cer SFX b2 er é/q' er SFX b2 ecer èce/n'q'j'l't' ecer SFX b2 emer ème/n'q'j'l't' emer SFX b2 ener ène/n'q'j'l't' ener SFX b2 eper èpe/n'q'j'l't' eper SFX b2 erer ère/n'q'j'l't' erer SFX b2 eser èse/n'q'j'l't' eser SFX b2 ever ève/n'q'j'l't' ever SFX b2 evrer èvre/n'q'j'l't' evrer SFX b2 eter ète/n'q'j'l't' eter SFX b2 eler èle/n'q'j'l't' eler SFX b2 ecer èces/n'q'l'm' ecer SFX b2 emer èmes/n'q'l'm' emer SFX b2 ener ènes/n'q'l'm' ener SFX b2 eper èpes/n'q'l'm' eper SFX b2 erer ères/n'q'l'm' erer SFX b2 eser èses/n'q'l'm' eser SFX b2 ever èves/n'q'l'm' ever SFX b2 evrer èvres/n'q'l'm' evrer SFX b2 eter ètes/n'q'l'm' eter SFX b2 eler èles/n'q'l'm' eler SFX b2 ecer èce/n'q'l'm't's' ecer SFX b2 emer ème/n'q'l'm't's' emer SFX b2 ener ène/n'q'l'm't's' ener SFX b2 eper èpe/n'q'l'm't's' eper SFX b2 erer ère/n'q'l'm't's' erer SFX b2 eser èse/n'q'l'm't's' eser SFX b2 ever ève/n'q'l'm't's' ever SFX b2 evrer èvre/n'q'l'm't's' evrer SFX b2 eter ète/n'q'l'm't's' eter SFX b2 eler èle/n'q'l'm't's' eler SFX b2 er ons/n'q'l't' [^c]er SFX b2 cer çons/n'q'l't' cer SFX b2 er ez/n'q'l'm' er SFX b2 ecer ècent/n'q'l'm't's' ecer SFX b2 emer èment/n'q'l'm't's' emer SFX b2 ener ènent/n'q'l'm't's' ener SFX b2 eper èpent/n'q'l'm't's' eper SFX b2 erer èrent/n'q'l'm't's' erer SFX b2 eser èsent/n'q'l'm't's' eser SFX b2 ever èvent/n'q'l'm't's' ever SFX b2 evrer èvrent/n'q'l'm't's' evrer SFX b2 eter ètent/n'q'l'm't's' eter SFX b2 eler èlent/n'q'l'm't's' eler SFX b2 er ais/n'q'j'l't' [^c]er SFX b2 cer çais/n'q'j'l't' cer SFX b2 er ais/n'q'l'm' [^c]er SFX b2 cer çais/n'q'l'm' cer SFX b2 er ait/n'q'l'm't's' [^c]er SFX b2 cer çait/n'q'l'm't's' cer SFX b2 er ions/n'q'l't' er SFX b2 er iez/n'q'l'm' er SFX b2 er aient/n'q'l'm't's' [^c]er SFX b2 cer çaient/n'q'l'm't's' cer SFX b2 er ai/n'q'j'l't' [^c]er SFX b2 cer çai/n'q'j'l't' cer SFX b2 er as/n'q'l'm' [^c]er SFX b2 cer ças/n'q'l'm' cer SFX b2 er a/n'q'l'm't's' [^c]er SFX b2 cer ça/n'q'l'm't's' cer SFX b2 er âmes/n'q'l't' [^c]er SFX b2 cer çâmes/n'q'l't' cer SFX b2 er âtes/n'q'l'm' [^c]er SFX b2 cer çâtes/n'q'l'm' cer SFX b2 er èrent/n'q'l'm't's' er SFX b2 ecer ècerai/n'q'j'l't' ecer SFX b2 emer èmerai/n'q'j'l't' emer SFX b2 ener ènerai/n'q'j'l't' ener SFX b2 eper èperai/n'q'j'l't' eper SFX b2 erer èrerai/n'q'j'l't' erer SFX b2 eser èserai/n'q'j'l't' eser SFX b2 ever èverai/n'q'j'l't' ever SFX b2 evrer èvrerai/n'q'j'l't' evrer SFX b2 eter èterai/n'q'j'l't' eter SFX b2 eler èlerai/n'q'j'l't' eler SFX b2 ecer èceras/n'q'l'm' ecer SFX b2 emer èmeras/n'q'l'm' emer SFX b2 ener èneras/n'q'l'm' ener SFX b2 eper èperas/n'q'l'm' eper SFX b2 erer èreras/n'q'l'm' erer SFX b2 eser èseras/n'q'l'm' eser SFX b2 ever èveras/n'q'l'm' ever SFX b2 evrer èvreras/n'q'l'm' evrer SFX b2 eter èteras/n'q'l'm' eter SFX b2 eler èleras/n'q'l'm' eler SFX b2 ecer ècera/n'q'l'm't's' ecer SFX b2 emer èmera/n'q'l'm't's' emer SFX b2 ener ènera/n'q'l'm't's' ener SFX b2 eper èpera/n'q'l'm't's' eper SFX b2 erer èrera/n'q'l'm't's' erer SFX b2 eser èsera/n'q'l'm't's' eser SFX b2 ever èvera/n'q'l'm't's' ever SFX b2 evrer èvrera/n'q'l'm't's' evrer SFX b2 eter ètera/n'q'l'm't's' eter SFX b2 eler èlera/n'q'l'm't's' eler SFX b2 ecer ècerons/n'q'l't' ecer SFX b2 emer èmerons/n'q'l't' emer SFX b2 ener ènerons/n'q'l't' ener SFX b2 eper èperons/n'q'l't' eper SFX b2 erer èrerons/n'q'l't' erer SFX b2 eser èserons/n'q'l't' eser SFX b2 ever èverons/n'q'l't' ever SFX b2 evrer èvrerons/n'q'l't' evrer SFX b2 eter èterons/n'q'l't' eter SFX b2 eler èlerons/n'q'l't' eler SFX b2 ecer ècerez/n'q'l'm' ecer SFX b2 emer èmerez/n'q'l'm' emer SFX b2 ener ènerez/n'q'l'm' ener SFX b2 eper èperez/n'q'l'm' eper SFX b2 erer èrerez/n'q'l'm' erer SFX b2 eser èserez/n'q'l'm' eser SFX b2 ever èverez/n'q'l'm' ever SFX b2 evrer èvrerez/n'q'l'm' evrer SFX b2 eter èterez/n'q'l'm' eter SFX b2 eler èlerez/n'q'l'm' eler SFX b2 ecer èceront/n'q'l'm't's' ecer SFX b2 emer èmeront/n'q'l'm't's' emer SFX b2 ener èneront/n'q'l'm't's' ener SFX b2 eper èperont/n'q'l'm't's' eper SFX b2 erer èreront/n'q'l'm't's' erer SFX b2 eser èseront/n'q'l'm't's' eser SFX b2 ever èveront/n'q'l'm't's' ever SFX b2 evrer èvreront/n'q'l'm't's' evrer SFX b2 eter èteront/n'q'l'm't's' eter SFX b2 eler èleront/n'q'l'm't's' eler SFX b2 ecer ècerais/n'q'j'l't' ecer SFX b2 emer èmerais/n'q'j'l't' emer SFX b2 ener ènerais/n'q'j'l't' ener SFX b2 eper èperais/n'q'j'l't' eper SFX b2 erer èrerais/n'q'j'l't' erer SFX b2 eser èserais/n'q'j'l't' eser SFX b2 ever èverais/n'q'j'l't' ever SFX b2 evrer èvrerais/n'q'j'l't' evrer SFX b2 eter èterais/n'q'j'l't' eter SFX b2 eler èlerais/n'q'j'l't' eler SFX b2 ecer ècerais/n'q'l'm' ecer SFX b2 emer èmerais/n'q'l'm' emer SFX b2 ener ènerais/n'q'l'm' ener SFX b2 eper èperais/n'q'l'm' eper SFX b2 erer èrerais/n'q'l'm' erer SFX b2 eser èserais/n'q'l'm' eser SFX b2 ever èverais/n'q'l'm' ever SFX b2 evrer èvrerais/n'q'l'm' evrer SFX b2 eter èterais/n'q'l'm' eter SFX b2 eler èlerais/n'q'l'm' eler SFX b2 ecer ècerait/n'q'l'm't's' ecer SFX b2 emer èmerait/n'q'l'm't's' emer SFX b2 ener ènerait/n'q'l'm't's' ener SFX b2 eper èperait/n'q'l'm't's' eper SFX b2 erer èrerait/n'q'l'm't's' erer SFX b2 eser èserait/n'q'l'm't's' eser SFX b2 ever èverait/n'q'l'm't's' ever SFX b2 evrer èvrerait/n'q'l'm't's' evrer SFX b2 eter èterait/n'q'l'm't's' eter SFX b2 eler èlerait/n'q'l'm't's' eler SFX b2 ecer ècerions/n'q'l't' ecer SFX b2 emer èmerions/n'q'l't' emer SFX b2 ener ènerions/n'q'l't' ener SFX b2 eper èperions/n'q'l't' eper SFX b2 erer èrerions/n'q'l't' erer SFX b2 eser èserions/n'q'l't' eser SFX b2 ever èverions/n'q'l't' ever SFX b2 evrer èvrerions/n'q'l't' evrer SFX b2 eter èterions/n'q'l't' eter SFX b2 eler èlerions/n'q'l't' eler SFX b2 ecer èceriez/n'q'l'm' ecer SFX b2 emer èmeriez/n'q'l'm' emer SFX b2 ener èneriez/n'q'l'm' ener SFX b2 eper èperiez/n'q'l'm' eper SFX b2 erer èreriez/n'q'l'm' erer SFX b2 eser èseriez/n'q'l'm' eser SFX b2 ever èveriez/n'q'l'm' ever SFX b2 evrer èvreriez/n'q'l'm' evrer SFX b2 eter èteriez/n'q'l'm' eter SFX b2 eler èleriez/n'q'l'm' eler SFX b2 ecer èceraient/n'q'l'm't's' ecer SFX b2 emer èmeraient/n'q'l'm't's' emer SFX b2 ener èneraient/n'q'l'm't's' ener SFX b2 eper èperaient/n'q'l'm't's' eper SFX b2 erer èreraient/n'q'l'm't's' erer SFX b2 eser èseraient/n'q'l'm't's' eser SFX b2 ever èveraient/n'q'l'm't's' ever SFX b2 evrer èvreraient/n'q'l'm't's' evrer SFX b2 eter èteraient/n'q'l'm't's' eter SFX b2 eler èleraient/n'q'l'm't's' eler SFX b2 ecer èce/n'j'l't' ecer SFX b2 emer ème/n'j'l't' emer SFX b2 ener ène/n'j'l't' ener SFX b2 eper èpe/n'j'l't' eper SFX b2 erer ère/n'j'l't' erer SFX b2 eser èse/n'j'l't' eser SFX b2 ever ève/n'j'l't' ever SFX b2 evrer èvre/n'j'l't' evrer SFX b2 eter ète/n'j'l't' eter SFX b2 eler èle/n'j'l't' eler SFX b2 ecer èces/n'l'm' ecer SFX b2 emer èmes/n'l'm' emer SFX b2 ener ènes/n'l'm' ener SFX b2 eper èpes/n'l'm' eper SFX b2 erer ères/n'l'm' erer SFX b2 eser èses/n'l'm' eser SFX b2 ever èves/n'l'm' ever SFX b2 evrer èvres/n'l'm' evrer SFX b2 eter ètes/n'l'm' eter SFX b2 eler èles/n'l'm' eler SFX b2 ecer èce/n'l'm't's' ecer SFX b2 emer ème/n'l'm't's' emer SFX b2 ener ène/n'l'm't's' ener SFX b2 eper èpe/n'l'm't's' eper SFX b2 erer ère/n'l'm't's' erer SFX b2 eser èse/n'l'm't's' eser SFX b2 ever ève/n'l'm't's' ever SFX b2 evrer èvre/n'l'm't's' evrer SFX b2 eter ète/n'l'm't's' eter SFX b2 eler èle/n'l'm't's' eler SFX b2 er ions/n'l't' er SFX b2 er iez/n'l'm' er SFX b2 ecer ècent/n'l'm't's' ecer SFX b2 emer èment/n'l'm't's' emer SFX b2 ener ènent/n'l'm't's' ener SFX b2 eper èpent/n'l'm't's' eper SFX b2 erer èrent/n'l'm't's' erer SFX b2 eser èsent/n'l'm't's' eser SFX b2 ever èvent/n'l'm't's' ever SFX b2 evrer èvrent/n'l'm't's' evrer SFX b2 eter ètent/n'l'm't's' eter SFX b2 eler èlent/n'l'm't's' eler SFX b2 er asse/n'q'j'l't' [^c]er SFX b2 cer çasse/n'q'j'l't' cer SFX b2 er asses/n'q'l'm' [^c]er SFX b2 cer çasses/n'q'l'm' cer SFX b2 er ât/n'q'l'm't's' [^c]er SFX b2 cer çât/n'q'l'm't's' cer SFX b2 er assions/n'q'l't' [^c]er SFX b2 cer çassions/n'q'l't' cer SFX b2 er assiez/n'q'l'm' [^c]er SFX b2 cer çassiez/n'q'l'm' cer SFX b2 er assent/n'q'l'm't's' [^c]er SFX b2 cer çassent/n'q'l'm't's' cer SFX b3 Y 242 SFX b3 er er/m't's' er SFX b3 er ant/m't's' [^c]er SFX b3 cer çant/m't's' cer SFX b3 er é er SFX b3 ecer èce/m' ecer SFX b3 emer ème/m' emer SFX b3 ener ène/m' ener SFX b3 eper èpe/m' eper SFX b3 erer ère/m' erer SFX b3 eser èse/m' eser SFX b3 ever ève/m' ever SFX b3 evrer èvre/m' evrer SFX b3 eter ète/m' eter SFX b3 eler èle/m' eler SFX b3 ecer èces/t' ecer SFX b3 emer èmes/t' emer SFX b3 ener ènes/t' ener SFX b3 eper èpes/t' eper SFX b3 erer ères/t' erer SFX b3 eser èses/t' eser SFX b3 ever èves/t' ever SFX b3 evrer èvres/t' evrer SFX b3 eter ètes/t' eter SFX b3 eler èles/t' eler SFX b3 ecer èce/s' ecer SFX b3 emer ème/s' emer SFX b3 ener ène/s' ener SFX b3 eper èpe/s' eper SFX b3 erer ère/s' erer SFX b3 eser èse/s' eser SFX b3 ever ève/s' ever SFX b3 evrer èvre/s' evrer SFX b3 eter ète/s' eter SFX b3 eler èle/s' eler SFX b3 er ons [^c]er SFX b3 cer çons cer SFX b3 er ez er SFX b3 ecer ècent/s' ecer SFX b3 emer èment/s' emer SFX b3 ener ènent/s' ener SFX b3 eper èpent/s' eper SFX b3 erer èrent/s' erer SFX b3 eser èsent/s' eser SFX b3 ever èvent/s' ever SFX b3 evrer èvrent/s' evrer SFX b3 eter ètent/s' eter SFX b3 eler èlent/s' eler SFX b3 er ais/m' [^c]er SFX b3 cer çais/m' cer SFX b3 er ais/t' [^c]er SFX b3 cer çais/t' cer SFX b3 er ait/s' [^c]er SFX b3 cer çait/s' cer SFX b3 er ions er SFX b3 er iez er SFX b3 er aient/s' [^c]er SFX b3 cer çaient/s' cer SFX b3 er ai/m' [^c]er SFX b3 cer çai/m' cer SFX b3 er as/t' [^c]er SFX b3 cer ças/t' cer SFX b3 er a/s' [^c]er SFX b3 cer ça/s' cer SFX b3 er âmes [^c]er SFX b3 cer çâmes cer SFX b3 er âtes [^c]er SFX b3 cer çâtes cer SFX b3 er èrent/s' er SFX b3 ecer ècerai/m' ecer SFX b3 emer èmerai/m' emer SFX b3 ener ènerai/m' ener SFX b3 eper èperai/m' eper SFX b3 erer èrerai/m' erer SFX b3 eser èserai/m' eser SFX b3 ever èverai/m' ever SFX b3 evrer èvrerai/m' evrer SFX b3 eter èterai/m' eter SFX b3 eler èlerai/m' eler SFX b3 ecer èceras/t' ecer SFX b3 emer èmeras/t' emer SFX b3 ener èneras/t' ener SFX b3 eper èperas/t' eper SFX b3 erer èreras/t' erer SFX b3 eser èseras/t' eser SFX b3 ever èveras/t' ever SFX b3 evrer èvreras/t' evrer SFX b3 eter èteras/t' eter SFX b3 eler èleras/t' eler SFX b3 ecer ècera/s' ecer SFX b3 emer èmera/s' emer SFX b3 ener ènera/s' ener SFX b3 eper èpera/s' eper SFX b3 erer èrera/s' erer SFX b3 eser èsera/s' eser SFX b3 ever èvera/s' ever SFX b3 evrer èvrera/s' evrer SFX b3 eter ètera/s' eter SFX b3 eler èlera/s' eler SFX b3 ecer ècerons ecer SFX b3 emer èmerons emer SFX b3 ener ènerons ener SFX b3 eper èperons eper SFX b3 erer èrerons erer SFX b3 eser èserons eser SFX b3 ever èverons ever SFX b3 evrer èvrerons evrer SFX b3 eter èterons eter SFX b3 eler èlerons eler SFX b3 ecer ècerez ecer SFX b3 emer èmerez emer SFX b3 ener ènerez ener SFX b3 eper èperez eper SFX b3 erer èrerez erer SFX b3 eser èserez eser SFX b3 ever èverez ever SFX b3 evrer èvrerez evrer SFX b3 eter èterez eter SFX b3 eler èlerez eler SFX b3 ecer èceront/s' ecer SFX b3 emer èmeront/s' emer SFX b3 ener èneront/s' ener SFX b3 eper èperont/s' eper SFX b3 erer èreront/s' erer SFX b3 eser èseront/s' eser SFX b3 ever èveront/s' ever SFX b3 evrer èvreront/s' evrer SFX b3 eter èteront/s' eter SFX b3 eler èleront/s' eler SFX b3 ecer ècerais/m' ecer SFX b3 emer èmerais/m' emer SFX b3 ener ènerais/m' ener SFX b3 eper èperais/m' eper SFX b3 erer èrerais/m' erer SFX b3 eser èserais/m' eser SFX b3 ever èverais/m' ever SFX b3 evrer èvrerais/m' evrer SFX b3 eter èterais/m' eter SFX b3 eler èlerais/m' eler SFX b3 ecer ècerais/t' ecer SFX b3 emer èmerais/t' emer SFX b3 ener ènerais/t' ener SFX b3 eper èperais/t' eper SFX b3 erer èrerais/t' erer SFX b3 eser èserais/t' eser SFX b3 ever èverais/t' ever SFX b3 evrer èvrerais/t' evrer SFX b3 eter èterais/t' eter SFX b3 eler èlerais/t' eler SFX b3 ecer ècerait/s' ecer SFX b3 emer èmerait/s' emer SFX b3 ener ènerait/s' ener SFX b3 eper èperait/s' eper SFX b3 erer èrerait/s' erer SFX b3 eser èserait/s' eser SFX b3 ever èverait/s' ever SFX b3 evrer èvrerait/s' evrer SFX b3 eter èterait/s' eter SFX b3 eler èlerait/s' eler SFX b3 ecer ècerions ecer SFX b3 emer èmerions emer SFX b3 ener ènerions ener SFX b3 eper èperions eper SFX b3 erer èrerions erer SFX b3 eser èserions eser SFX b3 ever èverions ever SFX b3 evrer èvrerions evrer SFX b3 eter èterions eter SFX b3 eler èlerions eler SFX b3 ecer èceriez ecer SFX b3 emer èmeriez emer SFX b3 ener èneriez ener SFX b3 eper èperiez eper SFX b3 erer èreriez erer SFX b3 eser èseriez eser SFX b3 ever èveriez ever SFX b3 evrer èvreriez evrer SFX b3 eter èteriez eter SFX b3 eler èleriez eler SFX b3 ecer èceraient/s' ecer SFX b3 emer èmeraient/s' emer SFX b3 ener èneraient/s' ener SFX b3 eper èperaient/s' eper SFX b3 erer èreraient/s' erer SFX b3 eser èseraient/s' eser SFX b3 ever èveraient/s' ever SFX b3 evrer èvreraient/s' evrer SFX b3 eter èteraient/s' eter SFX b3 eler èleraient/s' eler SFX b3 ecer èce/m' ecer SFX b3 emer ème/m' emer SFX b3 ener ène/m' ener SFX b3 eper èpe/m' eper SFX b3 erer ère/m' erer SFX b3 eser èse/m' eser SFX b3 ever ève/m' ever SFX b3 evrer èvre/m' evrer SFX b3 eter ète/m' eter SFX b3 eler èle/m' eler SFX b3 ecer èces/t' ecer SFX b3 emer èmes/t' emer SFX b3 ener ènes/t' ener SFX b3 eper èpes/t' eper SFX b3 erer ères/t' erer SFX b3 eser èses/t' eser SFX b3 ever èves/t' ever SFX b3 evrer èvres/t' evrer SFX b3 eter ètes/t' eter SFX b3 eler èles/t' eler SFX b3 ecer èce/s' ecer SFX b3 emer ème/s' emer SFX b3 ener ène/s' ener SFX b3 eper èpe/s' eper SFX b3 erer ère/s' erer SFX b3 eser èse/s' eser SFX b3 ever ève/s' ever SFX b3 evrer èvre/s' evrer SFX b3 eter ète/s' eter SFX b3 eler èle/s' eler SFX b3 er ions er SFX b3 er iez er SFX b3 ecer ècent/s' ecer SFX b3 emer èment/s' emer SFX b3 ener ènent/s' ener SFX b3 eper èpent/s' eper SFX b3 erer èrent/s' erer SFX b3 eser èsent/s' eser SFX b3 ever èvent/s' ever SFX b3 evrer èvrent/s' evrer SFX b3 eter ètent/s' eter SFX b3 eler èlent/s' eler SFX b3 er asse/m' [^c]er SFX b3 cer çasse/m' cer SFX b3 er asses/t' [^c]er SFX b3 cer çasses/t' cer SFX b3 er ât/s' [^c]er SFX b3 cer çât/s' cer SFX b3 er assions [^c]er SFX b3 cer çassions cer SFX b3 er assiez [^c]er SFX b3 cer çassiez cer SFX b3 er assent/s' [^c]er SFX b3 cer çassent/s' cer SFX b4 Y 242 SFX b4 er er/n'q'd'l'm't's' er SFX b4 er ant/n'q'l'm't's' [^c]er SFX b4 cer çant/n'q'l'm't's' cer SFX b4 er é/q' er SFX b4 ecer èce/n'q'j'l'm't' ecer SFX b4 emer ème/n'q'j'l'm't' emer SFX b4 ener ène/n'q'j'l'm't' ener SFX b4 eper èpe/n'q'j'l'm't' eper SFX b4 erer ère/n'q'j'l'm't' erer SFX b4 eser èse/n'q'j'l'm't' eser SFX b4 ever ève/n'q'j'l'm't' ever SFX b4 evrer èvre/n'q'j'l'm't' evrer SFX b4 eter ète/n'q'j'l'm't' eter SFX b4 eler èle/n'q'j'l'm't' eler SFX b4 ecer èces/n'q'l'm't' ecer SFX b4 emer èmes/n'q'l'm't' emer SFX b4 ener ènes/n'q'l'm't' ener SFX b4 eper èpes/n'q'l'm't' eper SFX b4 erer ères/n'q'l'm't' erer SFX b4 eser èses/n'q'l'm't' eser SFX b4 ever èves/n'q'l'm't' ever SFX b4 evrer èvres/n'q'l'm't' evrer SFX b4 eter ètes/n'q'l'm't' eter SFX b4 eler èles/n'q'l'm't' eler SFX b4 ecer èce/n'q'l'm't's' ecer SFX b4 emer ème/n'q'l'm't's' emer SFX b4 ener ène/n'q'l'm't's' ener SFX b4 eper èpe/n'q'l'm't's' eper SFX b4 erer ère/n'q'l'm't's' erer SFX b4 eser èse/n'q'l'm't's' eser SFX b4 ever ève/n'q'l'm't's' ever SFX b4 evrer èvre/n'q'l'm't's' evrer SFX b4 eter ète/n'q'l'm't's' eter SFX b4 eler èle/n'q'l'm't's' eler SFX b4 er ons/n'q'l't' [^c]er SFX b4 cer çons/n'q'l't' cer SFX b4 er ez/n'q'l'm' er SFX b4 ecer ècent/n'q'l'm't's' ecer SFX b4 emer èment/n'q'l'm't's' emer SFX b4 ener ènent/n'q'l'm't's' ener SFX b4 eper èpent/n'q'l'm't's' eper SFX b4 erer èrent/n'q'l'm't's' erer SFX b4 eser èsent/n'q'l'm't's' eser SFX b4 ever èvent/n'q'l'm't's' ever SFX b4 evrer èvrent/n'q'l'm't's' evrer SFX b4 eter ètent/n'q'l'm't's' eter SFX b4 eler èlent/n'q'l'm't's' eler SFX b4 er ais/n'q'j'l'm't' [^c]er SFX b4 cer çais/n'q'j'l'm't' cer SFX b4 er ais/n'q'l'm't' [^c]er SFX b4 cer çais/n'q'l'm't' cer SFX b4 er ait/n'q'l'm't's' [^c]er SFX b4 cer çait/n'q'l'm't's' cer SFX b4 er ions/n'q'l't' er SFX b4 er iez/n'q'l'm' er SFX b4 er aient/n'q'l'm't's' [^c]er SFX b4 cer çaient/n'q'l'm't's' cer SFX b4 er ai/n'q'j'l'm't' [^c]er SFX b4 cer çai/n'q'j'l'm't' cer SFX b4 er as/n'q'l'm't' [^c]er SFX b4 cer ças/n'q'l'm't' cer SFX b4 er a/n'q'l'm't's' [^c]er SFX b4 cer ça/n'q'l'm't's' cer SFX b4 er âmes/n'q'l't' [^c]er SFX b4 cer çâmes/n'q'l't' cer SFX b4 er âtes/n'q'l'm' [^c]er SFX b4 cer çâtes/n'q'l'm' cer SFX b4 er èrent/n'q'l'm't's' er SFX b4 ecer ècerai/n'q'j'l'm't' ecer SFX b4 emer èmerai/n'q'j'l'm't' emer SFX b4 ener ènerai/n'q'j'l'm't' ener SFX b4 eper èperai/n'q'j'l'm't' eper SFX b4 erer èrerai/n'q'j'l'm't' erer SFX b4 eser èserai/n'q'j'l'm't' eser SFX b4 ever èverai/n'q'j'l'm't' ever SFX b4 evrer èvrerai/n'q'j'l'm't' evrer SFX b4 eter èterai/n'q'j'l'm't' eter SFX b4 eler èlerai/n'q'j'l'm't' eler SFX b4 ecer èceras/n'q'l'm't' ecer SFX b4 emer èmeras/n'q'l'm't' emer SFX b4 ener èneras/n'q'l'm't' ener SFX b4 eper èperas/n'q'l'm't' eper SFX b4 erer èreras/n'q'l'm't' erer SFX b4 eser èseras/n'q'l'm't' eser SFX b4 ever èveras/n'q'l'm't' ever SFX b4 evrer èvreras/n'q'l'm't' evrer SFX b4 eter èteras/n'q'l'm't' eter SFX b4 eler èleras/n'q'l'm't' eler SFX b4 ecer ècera/n'q'l'm't's' ecer SFX b4 emer èmera/n'q'l'm't's' emer SFX b4 ener ènera/n'q'l'm't's' ener SFX b4 eper èpera/n'q'l'm't's' eper SFX b4 erer èrera/n'q'l'm't's' erer SFX b4 eser èsera/n'q'l'm't's' eser SFX b4 ever èvera/n'q'l'm't's' ever SFX b4 evrer èvrera/n'q'l'm't's' evrer SFX b4 eter ètera/n'q'l'm't's' eter SFX b4 eler èlera/n'q'l'm't's' eler SFX b4 ecer ècerons/n'q'l't' ecer SFX b4 emer èmerons/n'q'l't' emer SFX b4 ener ènerons/n'q'l't' ener SFX b4 eper èperons/n'q'l't' eper SFX b4 erer èrerons/n'q'l't' erer SFX b4 eser èserons/n'q'l't' eser SFX b4 ever èverons/n'q'l't' ever SFX b4 evrer èvrerons/n'q'l't' evrer SFX b4 eter èterons/n'q'l't' eter SFX b4 eler èlerons/n'q'l't' eler SFX b4 ecer ècerez/n'q'l'm' ecer SFX b4 emer èmerez/n'q'l'm' emer SFX b4 ener ènerez/n'q'l'm' ener SFX b4 eper èperez/n'q'l'm' eper SFX b4 erer èrerez/n'q'l'm' erer SFX b4 eser èserez/n'q'l'm' eser SFX b4 ever èverez/n'q'l'm' ever SFX b4 evrer èvrerez/n'q'l'm' evrer SFX b4 eter èterez/n'q'l'm' eter SFX b4 eler èlerez/n'q'l'm' eler SFX b4 ecer èceront/n'q'l'm't's' ecer SFX b4 emer èmeront/n'q'l'm't's' emer SFX b4 ener èneront/n'q'l'm't's' ener SFX b4 eper èperont/n'q'l'm't's' eper SFX b4 erer èreront/n'q'l'm't's' erer SFX b4 eser èseront/n'q'l'm't's' eser SFX b4 ever èveront/n'q'l'm't's' ever SFX b4 evrer èvreront/n'q'l'm't's' evrer SFX b4 eter èteront/n'q'l'm't's' eter SFX b4 eler èleront/n'q'l'm't's' eler SFX b4 ecer ècerais/n'q'j'l'm't' ecer SFX b4 emer èmerais/n'q'j'l'm't' emer SFX b4 ener ènerais/n'q'j'l'm't' ener SFX b4 eper èperais/n'q'j'l'm't' eper SFX b4 erer èrerais/n'q'j'l'm't' erer SFX b4 eser èserais/n'q'j'l'm't' eser SFX b4 ever èverais/n'q'j'l'm't' ever SFX b4 evrer èvrerais/n'q'j'l'm't' evrer SFX b4 eter èterais/n'q'j'l'm't' eter SFX b4 eler èlerais/n'q'j'l'm't' eler SFX b4 ecer ècerais/n'q'l'm't' ecer SFX b4 emer èmerais/n'q'l'm't' emer SFX b4 ener ènerais/n'q'l'm't' ener SFX b4 eper èperais/n'q'l'm't' eper SFX b4 erer èrerais/n'q'l'm't' erer SFX b4 eser èserais/n'q'l'm't' eser SFX b4 ever èverais/n'q'l'm't' ever SFX b4 evrer èvrerais/n'q'l'm't' evrer SFX b4 eter èterais/n'q'l'm't' eter SFX b4 eler èlerais/n'q'l'm't' eler SFX b4 ecer ècerait/n'q'l'm't's' ecer SFX b4 emer èmerait/n'q'l'm't's' emer SFX b4 ener ènerait/n'q'l'm't's' ener SFX b4 eper èperait/n'q'l'm't's' eper SFX b4 erer èrerait/n'q'l'm't's' erer SFX b4 eser èserait/n'q'l'm't's' eser SFX b4 ever èverait/n'q'l'm't's' ever SFX b4 evrer èvrerait/n'q'l'm't's' evrer SFX b4 eter èterait/n'q'l'm't's' eter SFX b4 eler èlerait/n'q'l'm't's' eler SFX b4 ecer ècerions/n'q'l't' ecer SFX b4 emer èmerions/n'q'l't' emer SFX b4 ener ènerions/n'q'l't' ener SFX b4 eper èperions/n'q'l't' eper SFX b4 erer èrerions/n'q'l't' erer SFX b4 eser èserions/n'q'l't' eser SFX b4 ever èverions/n'q'l't' ever SFX b4 evrer èvrerions/n'q'l't' evrer SFX b4 eter èterions/n'q'l't' eter SFX b4 eler èlerions/n'q'l't' eler SFX b4 ecer èceriez/n'q'l'm' ecer SFX b4 emer èmeriez/n'q'l'm' emer SFX b4 ener èneriez/n'q'l'm' ener SFX b4 eper èperiez/n'q'l'm' eper SFX b4 erer èreriez/n'q'l'm' erer SFX b4 eser èseriez/n'q'l'm' eser SFX b4 ever èveriez/n'q'l'm' ever SFX b4 evrer èvreriez/n'q'l'm' evrer SFX b4 eter èteriez/n'q'l'm' eter SFX b4 eler èleriez/n'q'l'm' eler SFX b4 ecer èceraient/n'q'l'm't's' ecer SFX b4 emer èmeraient/n'q'l'm't's' emer SFX b4 ener èneraient/n'q'l'm't's' ener SFX b4 eper èperaient/n'q'l'm't's' eper SFX b4 erer èreraient/n'q'l'm't's' erer SFX b4 eser èseraient/n'q'l'm't's' eser SFX b4 ever èveraient/n'q'l'm't's' ever SFX b4 evrer èvreraient/n'q'l'm't's' evrer SFX b4 eter èteraient/n'q'l'm't's' eter SFX b4 eler èleraient/n'q'l'm't's' eler SFX b4 ecer èce/n'j'l'm't' ecer SFX b4 emer ème/n'j'l'm't' emer SFX b4 ener ène/n'j'l'm't' ener SFX b4 eper èpe/n'j'l'm't' eper SFX b4 erer ère/n'j'l'm't' erer SFX b4 eser èse/n'j'l'm't' eser SFX b4 ever ève/n'j'l'm't' ever SFX b4 evrer èvre/n'j'l'm't' evrer SFX b4 eter ète/n'j'l'm't' eter SFX b4 eler èle/n'j'l'm't' eler SFX b4 ecer èces/n'l'm't' ecer SFX b4 emer èmes/n'l'm't' emer SFX b4 ener ènes/n'l'm't' ener SFX b4 eper èpes/n'l'm't' eper SFX b4 erer ères/n'l'm't' erer SFX b4 eser èses/n'l'm't' eser SFX b4 ever èves/n'l'm't' ever SFX b4 evrer èvres/n'l'm't' evrer SFX b4 eter ètes/n'l'm't' eter SFX b4 eler èles/n'l'm't' eler SFX b4 ecer èce/n'l'm't's' ecer SFX b4 emer ème/n'l'm't's' emer SFX b4 ener ène/n'l'm't's' ener SFX b4 eper èpe/n'l'm't's' eper SFX b4 erer ère/n'l'm't's' erer SFX b4 eser èse/n'l'm't's' eser SFX b4 ever ève/n'l'm't's' ever SFX b4 evrer èvre/n'l'm't's' evrer SFX b4 eter ète/n'l'm't's' eter SFX b4 eler èle/n'l'm't's' eler SFX b4 er ions/n'l't' er SFX b4 er iez/n'l'm' er SFX b4 ecer ècent/n'l'm't's' ecer SFX b4 emer èment/n'l'm't's' emer SFX b4 ener ènent/n'l'm't's' ener SFX b4 eper èpent/n'l'm't's' eper SFX b4 erer èrent/n'l'm't's' erer SFX b4 eser èsent/n'l'm't's' eser SFX b4 ever èvent/n'l'm't's' ever SFX b4 evrer èvrent/n'l'm't's' evrer SFX b4 eter ètent/n'l'm't's' eter SFX b4 eler èlent/n'l'm't's' eler SFX b4 er asse/n'q'j'l'm't' [^c]er SFX b4 cer çasse/n'q'j'l'm't' cer SFX b4 er asses/n'q'l'm't' [^c]er SFX b4 cer çasses/n'q'l'm't' cer SFX b4 er ât/n'q'l'm't's' [^c]er SFX b4 cer çât/n'q'l'm't's' cer SFX b4 er assions/n'q'l't' [^c]er SFX b4 cer çassions/n'q'l't' cer SFX b4 er assiez/n'q'l'm' [^c]er SFX b4 cer çassiez/n'q'l'm' cer SFX b4 er assent/n'q'l'm't's' [^c]er SFX b4 cer çassent/n'q'l'm't's' cer SFX b5 Y 242 SFX b5 er er/n'q'd'm't's' er SFX b5 er ant/n'q'm't's' [^c]er SFX b5 cer çant/n'q'm't's' cer SFX b5 er é/q' er SFX b5 ecer èce/n'j'm't' ecer SFX b5 emer ème/n'j'm't' emer SFX b5 ener ène/n'j'm't' ener SFX b5 eper èpe/n'j'm't' eper SFX b5 erer ère/n'j'm't' erer SFX b5 eser èse/n'j'm't' eser SFX b5 ever ève/n'j'm't' ever SFX b5 evrer èvre/n'j'm't' evrer SFX b5 eter ète/n'j'm't' eter SFX b5 eler èle/n'j'm't' eler SFX b5 ecer èces/n'm't' ecer SFX b5 emer èmes/n'm't' emer SFX b5 ener ènes/n'm't' ener SFX b5 eper èpes/n'm't' eper SFX b5 erer ères/n'm't' erer SFX b5 eser èses/n'm't' eser SFX b5 ever èves/n'm't' ever SFX b5 evrer èvres/n'm't' evrer SFX b5 eter ètes/n'm't' eter SFX b5 eler èles/n'm't' eler SFX b5 ecer èce/n'q'm't's' ecer SFX b5 emer ème/n'q'm't's' emer SFX b5 ener ène/n'q'm't's' ener SFX b5 eper èpe/n'q'm't's' eper SFX b5 erer ère/n'q'm't's' erer SFX b5 eser èse/n'q'm't's' eser SFX b5 ever ève/n'q'm't's' ever SFX b5 evrer èvre/n'q'm't's' evrer SFX b5 eter ète/n'q'm't's' eter SFX b5 eler èle/n'q'm't's' eler SFX b5 er ons/n't' [^c]er SFX b5 cer çons/n't' cer SFX b5 er ez/n'm' er SFX b5 ecer ècent/n'q'm't's' ecer SFX b5 emer èment/n'q'm't's' emer SFX b5 ener ènent/n'q'm't's' ener SFX b5 eper èpent/n'q'm't's' eper SFX b5 erer èrent/n'q'm't's' erer SFX b5 eser èsent/n'q'm't's' eser SFX b5 ever èvent/n'q'm't's' ever SFX b5 evrer èvrent/n'q'm't's' evrer SFX b5 eter ètent/n'q'm't's' eter SFX b5 eler èlent/n'q'm't's' eler SFX b5 er ais/n'j'm't' [^c]er SFX b5 cer çais/n'j'm't' cer SFX b5 er ais/n'm't' [^c]er SFX b5 cer çais/n'm't' cer SFX b5 er ait/n'q'm't's' [^c]er SFX b5 cer çait/n'q'm't's' cer SFX b5 er ions/n't' er SFX b5 er iez/n'm' er SFX b5 er aient/n'q'm't's' [^c]er SFX b5 cer çaient/n'q'm't's' cer SFX b5 er ai/n'j'm't' [^c]er SFX b5 cer çai/n'j'm't' cer SFX b5 er as/n'm't' [^c]er SFX b5 cer ças/n'm't' cer SFX b5 er a/n'q'm't's' [^c]er SFX b5 cer ça/n'q'm't's' cer SFX b5 er âmes/n't' [^c]er SFX b5 cer çâmes/n't' cer SFX b5 er âtes/n'm' [^c]er SFX b5 cer çâtes/n'm' cer SFX b5 er èrent/n'q'm't's' er SFX b5 ecer ècerai/n'j'm't' ecer SFX b5 emer èmerai/n'j'm't' emer SFX b5 ener ènerai/n'j'm't' ener SFX b5 eper èperai/n'j'm't' eper SFX b5 erer èrerai/n'j'm't' erer SFX b5 eser èserai/n'j'm't' eser SFX b5 ever èverai/n'j'm't' ever SFX b5 evrer èvrerai/n'j'm't' evrer SFX b5 eter èterai/n'j'm't' eter SFX b5 eler èlerai/n'j'm't' eler SFX b5 ecer èceras/n'm't' ecer SFX b5 emer èmeras/n'm't' emer SFX b5 ener èneras/n'm't' ener SFX b5 eper èperas/n'm't' eper SFX b5 erer èreras/n'm't' erer SFX b5 eser èseras/n'm't' eser SFX b5 ever èveras/n'm't' ever SFX b5 evrer èvreras/n'm't' evrer SFX b5 eter èteras/n'm't' eter SFX b5 eler èleras/n'm't' eler SFX b5 ecer ècera/n'q'm't's' ecer SFX b5 emer èmera/n'q'm't's' emer SFX b5 ener ènera/n'q'm't's' ener SFX b5 eper èpera/n'q'm't's' eper SFX b5 erer èrera/n'q'm't's' erer SFX b5 eser èsera/n'q'm't's' eser SFX b5 ever èvera/n'q'm't's' ever SFX b5 evrer èvrera/n'q'm't's' evrer SFX b5 eter ètera/n'q'm't's' eter SFX b5 eler èlera/n'q'm't's' eler SFX b5 ecer ècerons/n't' ecer SFX b5 emer èmerons/n't' emer SFX b5 ener ènerons/n't' ener SFX b5 eper èperons/n't' eper SFX b5 erer èrerons/n't' erer SFX b5 eser èserons/n't' eser SFX b5 ever èverons/n't' ever SFX b5 evrer èvrerons/n't' evrer SFX b5 eter èterons/n't' eter SFX b5 eler èlerons/n't' eler SFX b5 ecer ècerez/n'm' ecer SFX b5 emer èmerez/n'm' emer SFX b5 ener ènerez/n'm' ener SFX b5 eper èperez/n'm' eper SFX b5 erer èrerez/n'm' erer SFX b5 eser èserez/n'm' eser SFX b5 ever èverez/n'm' ever SFX b5 evrer èvrerez/n'm' evrer SFX b5 eter èterez/n'm' eter SFX b5 eler èlerez/n'm' eler SFX b5 ecer èceront/n'q'm't's' ecer SFX b5 emer èmeront/n'q'm't's' emer SFX b5 ener èneront/n'q'm't's' ener SFX b5 eper èperont/n'q'm't's' eper SFX b5 erer èreront/n'q'm't's' erer SFX b5 eser èseront/n'q'm't's' eser SFX b5 ever èveront/n'q'm't's' ever SFX b5 evrer èvreront/n'q'm't's' evrer SFX b5 eter èteront/n'q'm't's' eter SFX b5 eler èleront/n'q'm't's' eler SFX b5 ecer ècerais/n'j'm't' ecer SFX b5 emer èmerais/n'j'm't' emer SFX b5 ener ènerais/n'j'm't' ener SFX b5 eper èperais/n'j'm't' eper SFX b5 erer èrerais/n'j'm't' erer SFX b5 eser èserais/n'j'm't' eser SFX b5 ever èverais/n'j'm't' ever SFX b5 evrer èvrerais/n'j'm't' evrer SFX b5 eter èterais/n'j'm't' eter SFX b5 eler èlerais/n'j'm't' eler SFX b5 ecer ècerais/n'm't' ecer SFX b5 emer èmerais/n'm't' emer SFX b5 ener ènerais/n'm't' ener SFX b5 eper èperais/n'm't' eper SFX b5 erer èrerais/n'm't' erer SFX b5 eser èserais/n'm't' eser SFX b5 ever èverais/n'm't' ever SFX b5 evrer èvrerais/n'm't' evrer SFX b5 eter èterais/n'm't' eter SFX b5 eler èlerais/n'm't' eler SFX b5 ecer ècerait/n'q'm't's' ecer SFX b5 emer èmerait/n'q'm't's' emer SFX b5 ener ènerait/n'q'm't's' ener SFX b5 eper èperait/n'q'm't's' eper SFX b5 erer èrerait/n'q'm't's' erer SFX b5 eser èserait/n'q'm't's' eser SFX b5 ever èverait/n'q'm't's' ever SFX b5 evrer èvrerait/n'q'm't's' evrer SFX b5 eter èterait/n'q'm't's' eter SFX b5 eler èlerait/n'q'm't's' eler SFX b5 ecer ècerions/n't' ecer SFX b5 emer èmerions/n't' emer SFX b5 ener ènerions/n't' ener SFX b5 eper èperions/n't' eper SFX b5 erer èrerions/n't' erer SFX b5 eser èserions/n't' eser SFX b5 ever èverions/n't' ever SFX b5 evrer èvrerions/n't' evrer SFX b5 eter èterions/n't' eter SFX b5 eler èlerions/n't' eler SFX b5 ecer èceriez/n'm' ecer SFX b5 emer èmeriez/n'm' emer SFX b5 ener èneriez/n'm' ener SFX b5 eper èperiez/n'm' eper SFX b5 erer èreriez/n'm' erer SFX b5 eser èseriez/n'm' eser SFX b5 ever èveriez/n'm' ever SFX b5 evrer èvreriez/n'm' evrer SFX b5 eter èteriez/n'm' eter SFX b5 eler èleriez/n'm' eler SFX b5 ecer èceraient/n'q'm't's' ecer SFX b5 emer èmeraient/n'q'm't's' emer SFX b5 ener èneraient/n'q'm't's' ener SFX b5 eper èperaient/n'q'm't's' eper SFX b5 erer èreraient/n'q'm't's' erer SFX b5 eser èseraient/n'q'm't's' eser SFX b5 ever èveraient/n'q'm't's' ever SFX b5 evrer èvreraient/n'q'm't's' evrer SFX b5 eter èteraient/n'q'm't's' eter SFX b5 eler èleraient/n'q'm't's' eler SFX b5 ecer èce/n'j'm't' ecer SFX b5 emer ème/n'j'm't' emer SFX b5 ener ène/n'j'm't' ener SFX b5 eper èpe/n'j'm't' eper SFX b5 erer ère/n'j'm't' erer SFX b5 eser èse/n'j'm't' eser SFX b5 ever ève/n'j'm't' ever SFX b5 evrer èvre/n'j'm't' evrer SFX b5 eter ète/n'j'm't' eter SFX b5 eler èle/n'j'm't' eler SFX b5 ecer èces/n'm't' ecer SFX b5 emer èmes/n'm't' emer SFX b5 ener ènes/n'm't' ener SFX b5 eper èpes/n'm't' eper SFX b5 erer ères/n'm't' erer SFX b5 eser èses/n'm't' eser SFX b5 ever èves/n'm't' ever SFX b5 evrer èvres/n'm't' evrer SFX b5 eter ètes/n'm't' eter SFX b5 eler èles/n'm't' eler SFX b5 ecer èce/n'q'm't's' ecer SFX b5 emer ème/n'q'm't's' emer SFX b5 ener ène/n'q'm't's' ener SFX b5 eper èpe/n'q'm't's' eper SFX b5 erer ère/n'q'm't's' erer SFX b5 eser èse/n'q'm't's' eser SFX b5 ever ève/n'q'm't's' ever SFX b5 evrer èvre/n'q'm't's' evrer SFX b5 eter ète/n'q'm't's' eter SFX b5 eler èle/n'q'm't's' eler SFX b5 er ions/n't' er SFX b5 er iez/n'm' er SFX b5 ecer ècent/n'q'm't's' ecer SFX b5 emer èment/n'q'm't's' emer SFX b5 ener ènent/n'q'm't's' ener SFX b5 eper èpent/n'q'm't's' eper SFX b5 erer èrent/n'q'm't's' erer SFX b5 eser èsent/n'q'm't's' eser SFX b5 ever èvent/n'q'm't's' ever SFX b5 evrer èvrent/n'q'm't's' evrer SFX b5 eter ètent/n'q'm't's' eter SFX b5 eler èlent/n'q'm't's' eler SFX b5 er asse/n'j'm't' [^c]er SFX b5 cer çasse/n'j'm't' cer SFX b5 er asses/n'm't' [^c]er SFX b5 cer çasses/n'm't' cer SFX b5 er ât/n'q'm't's' [^c]er SFX b5 cer çât/n'q'm't's' cer SFX b5 er assions/n't' [^c]er SFX b5 cer çassions/n't' cer SFX b5 er assiez/n'm' [^c]er SFX b5 cer çassiez/n'm' cer SFX b5 er assent/n'q'm't's' [^c]er SFX b5 cer çassent/n'q'm't's' cer SFX c0 N 239 SFX c0 er er er SFX c0 er ant [^cg]er SFX c0 écer éçant écer SFX c0 éger égeant éger SFX c0 er é er SFX c0 ébrer èbre ébrer SFX c0 écer èce écer SFX c0 écher èche écher SFX c0 écrer ècre écrer SFX c0 éder ède éder SFX c0 éger ège éger SFX c0 égler ègle égler SFX c0 égner ègne égner SFX c0 égrer ègre égrer SFX c0 éguer ègue éguer SFX c0 éler èle éler SFX c0 émer ème émer SFX c0 éner ène éner SFX c0 éper èpe éper SFX c0 équer èque équer SFX c0 érer ère érer SFX c0 éser èse éser SFX c0 éter ète éter SFX c0 étrer ètre étrer SFX c0 évrer èvre évrer SFX c0 éyer èye éyer SFX c0 ébrer èbres ébrer SFX c0 écer èces écer SFX c0 écher èches écher SFX c0 écrer ècres écrer SFX c0 éder èdes éder SFX c0 éger èges éger SFX c0 égler ègles égler SFX c0 égner ègnes égner SFX c0 égrer ègres égrer SFX c0 éguer ègues éguer SFX c0 éler èles éler SFX c0 émer èmes émer SFX c0 éner ènes éner SFX c0 éper èpes éper SFX c0 équer èques équer SFX c0 érer ères érer SFX c0 éser èses éser SFX c0 éter ètes éter SFX c0 étrer ètres étrer SFX c0 évrer èvres évrer SFX c0 éyer èyes éyer SFX c0 ébrer èbre ébrer SFX c0 écer èce écer SFX c0 écher èche écher SFX c0 écrer ècre écrer SFX c0 éder ède éder SFX c0 éger ège éger SFX c0 égler ègle égler SFX c0 égner ègne égner SFX c0 égrer ègre égrer SFX c0 éguer ègue éguer SFX c0 éler èle éler SFX c0 émer ème émer SFX c0 éner ène éner SFX c0 éper èpe éper SFX c0 équer èque équer SFX c0 érer ère érer SFX c0 éser èse éser SFX c0 éter ète éter SFX c0 étrer ètre étrer SFX c0 évrer èvre évrer SFX c0 éyer èye éyer SFX c0 er ons [^cg]er SFX c0 écer éçons écer SFX c0 éger égeons éger SFX c0 er ez er SFX c0 ébrer èbrent ébrer SFX c0 écer ècent écer SFX c0 écher èchent écher SFX c0 écrer ècrent écrer SFX c0 éder èdent éder SFX c0 éger ègent éger SFX c0 égler èglent égler SFX c0 égner ègnent égner SFX c0 égrer ègrent égrer SFX c0 éguer èguent éguer SFX c0 éler èlent éler SFX c0 émer èment émer SFX c0 éner ènent éner SFX c0 éper èpent éper SFX c0 équer èquent équer SFX c0 érer èrent érer SFX c0 éser èsent éser SFX c0 éter ètent éter SFX c0 étrer ètrent étrer SFX c0 évrer èvrent évrer SFX c0 éyer èyent éyer SFX c0 er ais [^cg]er SFX c0 écer éçais écer SFX c0 éger égeais éger SFX c0 er ais [^cg]er SFX c0 écer éçais écer SFX c0 éger égeais éger SFX c0 er ait [^cg]er SFX c0 écer éçait écer SFX c0 éger égeait éger SFX c0 er ions er SFX c0 er iez er SFX c0 er aient [^cg]er SFX c0 écer éçaient écer SFX c0 éger égeaient éger SFX c0 er ai [^cg]er SFX c0 écer éçai écer SFX c0 éger égeai éger SFX c0 er as [^cg]er SFX c0 écer éças écer SFX c0 éger égeas éger SFX c0 er a [^cg]er SFX c0 écer éça écer SFX c0 éger égea éger SFX c0 er âmes [^cg]er SFX c0 écer éçâmes écer SFX c0 éger égeâmes éger SFX c0 er âtes [^cg]er SFX c0 écer éçâtes écer SFX c0 éger égeâtes éger SFX c0 er èrent er SFX c0 er erai er SFX c0 er eras er SFX c0 er era er SFX c0 er erons er SFX c0 er erez er SFX c0 er eront er SFX c0 er erais er SFX c0 er erais er SFX c0 er erait er SFX c0 er erions er SFX c0 er eriez er SFX c0 er eraient er SFX c0 ébrer èbre ébrer SFX c0 écer èce écer SFX c0 écher èche écher SFX c0 écrer ècre écrer SFX c0 éder ède éder SFX c0 éger ège éger SFX c0 égler ègle égler SFX c0 égner ègne égner SFX c0 égrer ègre égrer SFX c0 éguer ègue éguer SFX c0 éler èle éler SFX c0 émer ème émer SFX c0 éner ène éner SFX c0 éper èpe éper SFX c0 équer èque équer SFX c0 érer ère érer SFX c0 éser èse éser SFX c0 éter ète éter SFX c0 étrer ètre étrer SFX c0 évrer èvre évrer SFX c0 éyer èye éyer SFX c0 ébrer èbres ébrer SFX c0 écer èces écer SFX c0 écher èches écher SFX c0 écrer ècres écrer SFX c0 éder èdes éder SFX c0 éger èges éger SFX c0 égler ègles égler SFX c0 égner ègnes égner SFX c0 égrer ègres égrer SFX c0 éguer ègues éguer SFX c0 éler èles éler SFX c0 émer èmes émer SFX c0 éner ènes éner SFX c0 éper èpes éper SFX c0 équer èques équer SFX c0 érer ères érer SFX c0 éser èses éser SFX c0 éter ètes éter SFX c0 étrer ètres étrer SFX c0 évrer èvres évrer SFX c0 éyer èyes éyer SFX c0 ébrer èbre ébrer SFX c0 écer èce écer SFX c0 écher èche écher SFX c0 écrer ècre écrer SFX c0 éder ède éder SFX c0 éger ège éger SFX c0 égler ègle égler SFX c0 égner ègne égner SFX c0 égrer ègre égrer SFX c0 éguer ègue éguer SFX c0 éler èle éler SFX c0 émer ème émer SFX c0 éner ène éner SFX c0 éper èpe éper SFX c0 équer èque équer SFX c0 érer ère érer SFX c0 éser èse éser SFX c0 éter ète éter SFX c0 étrer ètre étrer SFX c0 évrer èvre évrer SFX c0 éyer èye éyer SFX c0 er ions er SFX c0 er iez er SFX c0 ébrer èbrent ébrer SFX c0 écer ècent écer SFX c0 écher èchent écher SFX c0 écrer ècrent écrer SFX c0 éder èdent éder SFX c0 éger ègent éger SFX c0 égler èglent égler SFX c0 égner ègnent égner SFX c0 égrer ègrent égrer SFX c0 éguer èguent éguer SFX c0 éler èlent éler SFX c0 émer èment émer SFX c0 éner ènent éner SFX c0 éper èpent éper SFX c0 équer èquent équer SFX c0 érer èrent érer SFX c0 éser èsent éser SFX c0 éter ètent éter SFX c0 étrer ètrent étrer SFX c0 évrer èvrent évrer SFX c0 éyer èyent éyer SFX c0 er asse [^cg]er SFX c0 écer éçasse écer SFX c0 éger égeasse éger SFX c0 er asses [^cg]er SFX c0 écer éçasses écer SFX c0 éger égeasses éger SFX c0 er ât [^cg]er SFX c0 écer éçât écer SFX c0 éger égeât éger SFX c0 er assions [^cg]er SFX c0 écer éçassions écer SFX c0 éger égeassions éger SFX c0 er assiez [^cg]er SFX c0 écer éçassiez écer SFX c0 éger égeassiez éger SFX c0 er assent [^cg]er SFX c0 écer éçassent écer SFX c0 éger égeassent éger SFX c1 Y 239 SFX c1 r r/n'q'd' er SFX c1 er ant/n'q' [^cg]er SFX c1 écer éçant/n'q' écer SFX c1 éger égeant/n'q' éger SFX c1 er é/q' er SFX c1 ébrer èbre/n'j' ébrer SFX c1 écer èce/n'j' écer SFX c1 écher èche/n'j' écher SFX c1 écrer ècre/n'j' écrer SFX c1 éder ède/n'j' éder SFX c1 éger ège/n'j' éger SFX c1 égler ègle/n'j' égler SFX c1 égner ègne/n'j' égner SFX c1 égrer ègre/n'j' égrer SFX c1 éguer ègue/n'j' éguer SFX c1 éler èle/n'j' éler SFX c1 émer ème/n'j' émer SFX c1 éner ène/n'j' éner SFX c1 éper èpe/n'j' éper SFX c1 équer èque/n'j' équer SFX c1 érer ère/n'j' érer SFX c1 éser èse/n'j' éser SFX c1 éter ète/n'j' éter SFX c1 étrer ètre/n'j' étrer SFX c1 évrer èvre/n'j' évrer SFX c1 éyer èye/n'j' éyer SFX c1 ébrer èbres/n' ébrer SFX c1 écer èces/n' écer SFX c1 écher èches/n' écher SFX c1 écrer ècres/n' écrer SFX c1 éder èdes/n' éder SFX c1 éger èges/n' éger SFX c1 égler ègles/n' égler SFX c1 égner ègnes/n' égner SFX c1 égrer ègres/n' égrer SFX c1 éguer ègues/n' éguer SFX c1 éler èles/n' éler SFX c1 émer èmes/n' émer SFX c1 éner ènes/n' éner SFX c1 éper èpes/n' éper SFX c1 équer èques/n' équer SFX c1 érer ères/n' érer SFX c1 éser èses/n' éser SFX c1 éter ètes/n' éter SFX c1 étrer ètres/n' étrer SFX c1 évrer èvres/n' évrer SFX c1 éyer èyes/n' éyer SFX c1 ébrer èbre/n'q' ébrer SFX c1 écer èce/n'q' écer SFX c1 écher èche/n'q' écher SFX c1 écrer ècre/n'q' écrer SFX c1 éder ède/n'q' éder SFX c1 éger ège/n'q' éger SFX c1 égler ègle/n'q' égler SFX c1 égner ègne/n'q' égner SFX c1 égrer ègre/n'q' égrer SFX c1 éguer ègue/n'q' éguer SFX c1 éler èle/n'q' éler SFX c1 émer ème/n'q' émer SFX c1 éner ène/n'q' éner SFX c1 éper èpe/n'q' éper SFX c1 équer èque/n'q' équer SFX c1 érer ère/n'q' érer SFX c1 éser èse/n'q' éser SFX c1 éter ète/n'q' éter SFX c1 étrer ètre/n'q' étrer SFX c1 évrer èvre/n'q' évrer SFX c1 éyer èye/n'q' éyer SFX c1 er ons/n' [^cg]er SFX c1 écer éçons/n' écer SFX c1 éger égeons/n' éger SFX c1 er ez/n' er SFX c1 ébrer èbrent/n'q' ébrer SFX c1 écer ècent/n'q' écer SFX c1 écher èchent/n'q' écher SFX c1 écrer ècrent/n'q' écrer SFX c1 éder èdent/n'q' éder SFX c1 éger ègent/n'q' éger SFX c1 égler èglent/n'q' égler SFX c1 égner ègnent/n'q' égner SFX c1 égrer ègrent/n'q' égrer SFX c1 éguer èguent/n'q' éguer SFX c1 éler èlent/n'q' éler SFX c1 émer èment/n'q' émer SFX c1 éner ènent/n'q' éner SFX c1 éper èpent/n'q' éper SFX c1 équer èquent/n'q' équer SFX c1 érer èrent/n'q' érer SFX c1 éser èsent/n'q' éser SFX c1 éter ètent/n'q' éter SFX c1 étrer ètrent/n'q' étrer SFX c1 évrer èvrent/n'q' évrer SFX c1 éyer èyent/n'q' éyer SFX c1 er ais/n'j' [^cg]er SFX c1 écer éçais/n'j' écer SFX c1 éger égeais/n'j' éger SFX c1 er ais/n' [^cg]er SFX c1 écer éçais/n' écer SFX c1 éger égeais/n' éger SFX c1 er ait/n'q' [^cg]er SFX c1 écer éçait/n'q' écer SFX c1 éger égeait/n'q' éger SFX c1 er ions/n' er SFX c1 er iez/n' er SFX c1 er aient/n'q' [^cg]er SFX c1 écer éçaient/n'q' écer SFX c1 éger égeaient/n'q' éger SFX c1 er ai/n'j' [^cg]er SFX c1 écer éçai/n'j' écer SFX c1 éger égeai/n'j' éger SFX c1 er as/n' [^cg]er SFX c1 écer éças/n' écer SFX c1 éger égeas/n' éger SFX c1 er a/n'q' [^cg]er SFX c1 écer éça/n'q' écer SFX c1 éger égea/n'q' éger SFX c1 er âmes/n' [^cg]er SFX c1 écer éçâmes/n' écer SFX c1 éger égeâmes/n' éger SFX c1 er âtes/n' [^cg]er SFX c1 écer éçâtes/n' écer SFX c1 éger égeâtes/n' éger SFX c1 er èrent/n'q' er SFX c1 er erai/n'j' er SFX c1 er eras/n' er SFX c1 er era/n'q' er SFX c1 er erons/n' er SFX c1 er erez/n' er SFX c1 er eront/n'q' er SFX c1 er erais/n'j' er SFX c1 er erais/n' er SFX c1 er erait/n'q' er SFX c1 er erions/n' er SFX c1 er eriez/n' er SFX c1 er eraient/n'q' er SFX c1 ébrer èbre/n'j' ébrer SFX c1 écer èce/n'j' écer SFX c1 écher èche/n'j' écher SFX c1 écrer ècre/n'j' écrer SFX c1 éder ède/n'j' éder SFX c1 éger ège/n'j' éger SFX c1 égler ègle/n'j' égler SFX c1 égner ègne/n'j' égner SFX c1 égrer ègre/n'j' égrer SFX c1 éguer ègue/n'j' éguer SFX c1 éler èle/n'j' éler SFX c1 émer ème/n'j' émer SFX c1 éner ène/n'j' éner SFX c1 éper èpe/n'j' éper SFX c1 équer èque/n'j' équer SFX c1 érer ère/n'j' érer SFX c1 éser èse/n'j' éser SFX c1 éter ète/n'j' éter SFX c1 étrer ètre/n'j' étrer SFX c1 évrer èvre/n'j' évrer SFX c1 éyer èye/n'j' éyer SFX c1 ébrer èbres/n' ébrer SFX c1 écer èces/n' écer SFX c1 écher èches/n' écher SFX c1 écrer ècres/n' écrer SFX c1 éder èdes/n' éder SFX c1 éger èges/n' éger SFX c1 égler ègles/n' égler SFX c1 égner ègnes/n' égner SFX c1 égrer ègres/n' égrer SFX c1 éguer ègues/n' éguer SFX c1 éler èles/n' éler SFX c1 émer èmes/n' émer SFX c1 éner ènes/n' éner SFX c1 éper èpes/n' éper SFX c1 équer èques/n' équer SFX c1 érer ères/n' érer SFX c1 éser èses/n' éser SFX c1 éter ètes/n' éter SFX c1 étrer ètres/n' étrer SFX c1 évrer èvres/n' évrer SFX c1 éyer èyes/n' éyer SFX c1 ébrer èbre/n'q' ébrer SFX c1 écer èce/n'q' écer SFX c1 écher èche/n'q' écher SFX c1 écrer ècre/n'q' écrer SFX c1 éder ède/n'q' éder SFX c1 éger ège/n'q' éger SFX c1 égler ègle/n'q' égler SFX c1 égner ègne/n'q' égner SFX c1 égrer ègre/n'q' égrer SFX c1 éguer ègue/n'q' éguer SFX c1 éler èle/n'q' éler SFX c1 émer ème/n'q' émer SFX c1 éner ène/n'q' éner SFX c1 éper èpe/n'q' éper SFX c1 équer èque/n'q' équer SFX c1 érer ère/n'q' érer SFX c1 éser èse/n'q' éser SFX c1 éter ète/n'q' éter SFX c1 étrer ètre/n'q' étrer SFX c1 évrer èvre/n'q' évrer SFX c1 éyer èye/n'q' éyer SFX c1 er ions/n' er SFX c1 er iez/n' er SFX c1 ébrer èbrent/n'q' ébrer SFX c1 écer ècent/n'q' écer SFX c1 écher èchent/n'q' écher SFX c1 écrer ècrent/n'q' écrer SFX c1 éder èdent/n'q' éder SFX c1 éger ègent/n'q' éger SFX c1 égler èglent/n'q' égler SFX c1 égner ègnent/n'q' égner SFX c1 égrer ègrent/n'q' égrer SFX c1 éguer èguent/n'q' éguer SFX c1 éler èlent/n'q' éler SFX c1 émer èment/n'q' émer SFX c1 éner ènent/n'q' éner SFX c1 éper èpent/n'q' éper SFX c1 équer èquent/n'q' équer SFX c1 érer èrent/n'q' érer SFX c1 éser èsent/n'q' éser SFX c1 éter ètent/n'q' éter SFX c1 étrer ètrent/n'q' étrer SFX c1 évrer èvrent/n'q' évrer SFX c1 éyer èyent/n'q' éyer SFX c1 er asse/n'j' [^cg]er SFX c1 écer éçasse/n'j' écer SFX c1 éger égeasse/n'j' éger SFX c1 er asses/n' [^cg]er SFX c1 écer éçasses/n' écer SFX c1 éger égeasses/n' éger SFX c1 er ât/n'q' [^cg]er SFX c1 écer éçât/n'q' écer SFX c1 éger égeât/n'q' éger SFX c1 er assions/n' [^cg]er SFX c1 écer éçassions/n' écer SFX c1 éger égeassions/n' éger SFX c1 er assiez/n' [^cg]er SFX c1 écer éçassiez/n' écer SFX c1 éger égeassiez/n' éger SFX c1 er assent/n'q' [^cg]er SFX c1 écer éçassent/n'q' écer SFX c1 éger égeassent/n'q' éger SFX c2 Y 239 SFX c2 er er/n'q'd'l'm't's' er SFX c2 er ant/n'q'l'm't's' [^cg]er SFX c2 écer éçant/n'q'l'm't's' écer SFX c2 éger égeant/n'q'l'm't's' éger SFX c2 er é/q' er SFX c2 ébrer èbre/n'q'j'l't' ébrer SFX c2 écer èce/n'q'j'l't' écer SFX c2 écher èche/n'q'j'l't' écher SFX c2 écrer ècre/n'q'j'l't' écrer SFX c2 éder ède/n'q'j'l't' éder SFX c2 éger ège/n'q'j'l't' éger SFX c2 égler ègle/n'q'j'l't' égler SFX c2 égner ègne/n'q'j'l't' égner SFX c2 égrer ègre/n'q'j'l't' égrer SFX c2 éguer ègue/n'q'j'l't' éguer SFX c2 éler èle/n'q'j'l't' éler SFX c2 émer ème/n'q'j'l't' émer SFX c2 éner ène/n'q'j'l't' éner SFX c2 éper èpe/n'q'j'l't' éper SFX c2 équer èque/n'q'j'l't' équer SFX c2 érer ère/n'q'j'l't' érer SFX c2 éser èse/n'q'j'l't' éser SFX c2 éter ète/n'q'j'l't' éter SFX c2 étrer ètre/n'q'j'l't' étrer SFX c2 évrer èvre/n'q'j'l't' évrer SFX c2 éyer èye/n'q'j'l't' éyer SFX c2 ébrer èbres/n'q'l'm' ébrer SFX c2 écer èces/n'q'l'm' écer SFX c2 écher èches/n'q'l'm' écher SFX c2 écrer ècres/n'q'l'm' écrer SFX c2 éder èdes/n'q'l'm' éder SFX c2 éger èges/n'q'l'm' éger SFX c2 égler ègles/n'q'l'm' égler SFX c2 égner ègnes/n'q'l'm' égner SFX c2 égrer ègres/n'q'l'm' égrer SFX c2 éguer ègues/n'q'l'm' éguer SFX c2 éler èles/n'q'l'm' éler SFX c2 émer èmes/n'q'l'm' émer SFX c2 éner ènes/n'q'l'm' éner SFX c2 éper èpes/n'q'l'm' éper SFX c2 équer èques/n'q'l'm' équer SFX c2 érer ères/n'q'l'm' érer SFX c2 éser èses/n'q'l'm' éser SFX c2 éter ètes/n'q'l'm' éter SFX c2 étrer ètres/n'q'l'm' étrer SFX c2 évrer èvres/n'q'l'm' évrer SFX c2 éyer èyes/n'q'l'm' éyer SFX c2 ébrer èbre/n'q'l'm't's' ébrer SFX c2 écer èce/n'q'l'm't's' écer SFX c2 écher èche/n'q'l'm't's' écher SFX c2 écrer ècre/n'q'l'm't's' écrer SFX c2 éder ède/n'q'l'm't's' éder SFX c2 éger ège/n'q'l'm't's' éger SFX c2 égler ègle/n'q'l'm't's' égler SFX c2 égner ègne/n'q'l'm't's' égner SFX c2 égrer ègre/n'q'l'm't's' égrer SFX c2 éguer ègue/n'q'l'm't's' éguer SFX c2 éler èle/n'q'l'm't's' éler SFX c2 émer ème/n'q'l'm't's' émer SFX c2 éner ène/n'q'l'm't's' éner SFX c2 éper èpe/n'q'l'm't's' éper SFX c2 équer èque/n'q'l'm't's' équer SFX c2 érer ère/n'q'l'm't's' érer SFX c2 éser èse/n'q'l'm't's' éser SFX c2 éter ète/n'q'l'm't's' éter SFX c2 étrer ètre/n'q'l'm't's' étrer SFX c2 évrer èvre/n'q'l'm't's' évrer SFX c2 éyer èye/n'q'l'm't' éyer SFX c2 er ons/n'q'l't' [^cg]er SFX c2 écer éçons/n'q'l't' écer SFX c2 éger égeons/n'q'l't' éger SFX c2 er ez/n'q'l'm' er SFX c2 ébrer èbrent/n'q'l'm't's' ébrer SFX c2 écer ècent/n'q'l'm't's' écer SFX c2 écher èchent/n'q'l'm't's' écher SFX c2 écrer ècrent/n'q'l'm't's' écrer SFX c2 éder èdent/n'q'l'm't's' éder SFX c2 éger ègent/n'q'l'm't's' éger SFX c2 égler èglent/n'q'l'm't's' égler SFX c2 égner ègnent/n'q'l'm't's' égner SFX c2 égrer ègrent/n'q'l'm't's' égrer SFX c2 éguer èguent/n'q'l'm't's' éguer SFX c2 éler èlent/n'q'l'm't's' éler SFX c2 émer èment/n'q'l'm't's' émer SFX c2 éner ènent/n'q'l'm't's' éner SFX c2 éper èpent/n'q'l'm't's' éper SFX c2 équer èquent/n'q'l'm't's' équer SFX c2 érer èrent/n'q'l'm't's' érer SFX c2 éser èsent/n'q'l'm't's' éser SFX c2 éter ètent/n'q'l'm't's' éter SFX c2 étrer ètrent/n'q'l'm't's' étrer SFX c2 évrer èvrent/n'q'l'm't's' évrer SFX c2 éyer èyent/n'q'l'm't's' éyer SFX c2 er ais/n'q'j'l't' [^cg]er SFX c2 écer éçais/n'q'j'l't' écer SFX c2 éger égeais/n'q'j'l't' éger SFX c2 er ais/n'q'l'm' [^cg]er SFX c2 écer éçais/n'q'l'm' écer SFX c2 éger égeais/n'q'l'm' éger SFX c2 er ait/n'q'l'm't's' [^cg]er SFX c2 écer éçait/n'q'l'm't's' écer SFX c2 éger égeait/n'q'l'm't's' éger SFX c2 er ions/n'q'l't' er SFX c2 er iez/n'q'l'm' er SFX c2 er aient/n'q'l'm't's' [^cg]er SFX c2 écer éçaient/n'q'l'm't's' écer SFX c2 éger égeaient/n'q'l'm't's' éger SFX c2 er ai/n'q'j'l't' [^cg]er SFX c2 écer éçai/n'q'j'l't' écer SFX c2 éger égeai/n'q'j'l't' éger SFX c2 er as/n'q'l'm' [^cg]er SFX c2 écer éças/n'q'l'm' écer SFX c2 éger égeas/n'q'l'm' éger SFX c2 er a/n'q'l'm't's' [^cg]er SFX c2 écer éça/n'q'l'm't's' écer SFX c2 éger égea/n'q'l'm't's' éger SFX c2 er âmes/n'q'l't' [^cg]er SFX c2 écer éçâmes/n'q'l't' écer SFX c2 éger égeâmes/n'q'l't' éger SFX c2 er âtes/n'q'l'm' [^cg]er SFX c2 écer éçâtes/n'q'l'm' écer SFX c2 éger égeâtes/n'q'l'm' éger SFX c2 er èrent/n'q'l'm't's' er SFX c2 er erai/n'q'j'l't' er SFX c2 er eras/n'q'l'm' er SFX c2 er era/n'q'l'm't's' er SFX c2 er erons/n'q'l't' er SFX c2 er erez/n'q'l'm' er SFX c2 er eront/n'q'l'm't's' er SFX c2 er erais/n'q'j'l't' er SFX c2 er erais/n'q'l'm' er SFX c2 er erait/n'q'l'm't's' er SFX c2 er erions/n'q'l't' er SFX c2 er eriez/n'q'l'm' er SFX c2 er eraient/n'q'l'm't's' er SFX c2 ébrer èbre/n'j'l't' ébrer SFX c2 écer èce/n'j'l't' écer SFX c2 écher èche/n'j'l't' écher SFX c2 écrer ècre/n'j'l't' écrer SFX c2 éder ède/n'j'l't' éder SFX c2 éger ège/n'j'l't' éger SFX c2 égler ègle/n'j'l't' égler SFX c2 égner ègne/n'j'l't' égner SFX c2 égrer ègre/n'j'l't' égrer SFX c2 éguer ègue/n'j'l't' éguer SFX c2 éler èle/n'j'l't' éler SFX c2 émer ème/n'j'l't' émer SFX c2 éner ène/n'j'l't' éner SFX c2 éper èpe/n'j'l't' éper SFX c2 équer èque/n'j'l't' équer SFX c2 érer ère/n'j'l't' érer SFX c2 éser èse/n'j'l't' éser SFX c2 éter ète/n'j'l't' éter SFX c2 étrer ètre/n'j'l't' étrer SFX c2 évrer èvre/n'j'l't' évrer SFX c2 éyer èye/n'j'l't' éyer SFX c2 ébrer èbres/n'l'm' ébrer SFX c2 écer èces/n'l'm' écer SFX c2 écher èches/n'l'm' écher SFX c2 écrer ècres/n'l'm' écrer SFX c2 éder èdes/n'l'm' éder SFX c2 éger èges/n'l'm' éger SFX c2 égler ègles/n'l'm' égler SFX c2 égner ègnes/n'l'm' égner SFX c2 égrer ègres/n'l'm' égrer SFX c2 éguer ègues/n'l'm' éguer SFX c2 éler èles/n'l'm' éler SFX c2 émer èmes/n'l'm' émer SFX c2 éner ènes/n'l'm' éner SFX c2 éper èpes/n'l'm' éper SFX c2 équer èques/n'l'm' équer SFX c2 érer ères/n'l'm' érer SFX c2 éser èses/n'l'm' éser SFX c2 éter ètes/n'l'm' éter SFX c2 étrer ètres/n'l'm' étrer SFX c2 évrer èvres/n'l'm' évrer SFX c2 éyer èyes/n'l'm' éyer SFX c2 ébrer èbre/n'l'm't's' ébrer SFX c2 écer èce/n'l'm't's' écer SFX c2 écher èche/n'l'm't's' écher SFX c2 écrer ècre/n'l'm't's' écrer SFX c2 éder ède/n'l'm't's' éder SFX c2 éger ège/n'l'm't's' éger SFX c2 égler ègle/n'l'm't's' égler SFX c2 égner ègne/n'l'm't's' égner SFX c2 égrer ègre/n'l'm't's' égrer SFX c2 éguer ègue/n'l'm't's' éguer SFX c2 éler èle/n'l'm't's' éler SFX c2 émer ème/n'l'm't's' émer SFX c2 éner ène/n'l'm't's' éner SFX c2 éper èpe/n'l'm't's' éper SFX c2 équer èque/n'l'm't's' équer SFX c2 érer ère/n'l'm't's' érer SFX c2 éser èse/n'l'm't's' éser SFX c2 éter ète/n'l'm't's' éter SFX c2 étrer ètre/n'l'm't's' étrer SFX c2 évrer èvre/n'l'm't's' évrer SFX c2 éyer èye/n'l'm't's' éyer SFX c2 er ions/n'l't' er SFX c2 er iez/n'l'm' er SFX c2 ébrer èbrent/n'l'm't's' ébrer SFX c2 écer ècent/n'l'm't's' écer SFX c2 écher èchent/n'l'm't's' écher SFX c2 écrer ècrent/n'l'm't's' écrer SFX c2 éder èdent/n'l'm't's' éder SFX c2 éger ègent/n'l'm't's' éger SFX c2 égler èglent/n'l'm't's' égler SFX c2 égner ègnent/n'l'm't's' égner SFX c2 égrer ègrent/n'l'm't's' égrer SFX c2 éguer èguent/n'l'm't's' éguer SFX c2 éler èlent/n'l'm't's' éler SFX c2 émer èment/n'l'm't's' émer SFX c2 éner ènent/n'l'm't's' éner SFX c2 éper èpent/n'l'm't's' éper SFX c2 équer èquent/n'l'm't's' équer SFX c2 érer èrent/n'l'm't's' érer SFX c2 éser èsent/n'l'm't's' éser SFX c2 éter ètent/n'l'm't's' éter SFX c2 étrer ètrent/n'l'm't's' étrer SFX c2 évrer èvrent/n'l'm't's' évrer SFX c2 éyer èyent/n'l'm't's' éyer SFX c2 er asse/n'q'j'l't' [^cg]er SFX c2 écer éçasse/n'q'j'l't' écer SFX c2 éger égeasse/n'q'j'l't' éger SFX c2 er asses/n'q'l'm' [^cg]er SFX c2 écer éçasses/n'q'l'm' écer SFX c2 éger égeasses/n'q'l'm' éger SFX c2 er ât/n'q'l'm't's' [^cg]er SFX c2 écer éçât/n'q'l'm't's' écer SFX c2 éger égeât/n'q'l'm't's' éger SFX c2 er assions/n'q'l't' [^cg]er SFX c2 écer éçassions/n'q'l't' écer SFX c2 éger égeassions/n'q'l't' éger SFX c2 er assiez/n'q'l'm' [^cg]er SFX c2 écer éçassiez/n'q'l'm' écer SFX c2 éger égeassiez/n'q'l'm' éger SFX c2 er assent/n'q'l'm't's' [^cg]er SFX c2 écer éçassent/n'q'l'm't's' écer SFX c2 éger égeassent/n'q'l'm't's' éger SFX c3 Y 239 SFX c3 er er/m't's' er SFX c3 er ant/m't's' [^cg]er SFX c3 écer éçant/m't's' écer SFX c3 éger égeant/m't's' éger SFX c3 er é er SFX c3 ébrer èbre/m' ébrer SFX c3 écer èce/m' écer SFX c3 écher èche/m' écher SFX c3 écrer ècre/m' écrer SFX c3 éder ède/m' éder SFX c3 éger ège/m' éger SFX c3 égler ègle/m' égler SFX c3 égner ègne/m' égner SFX c3 égrer ègre/m' égrer SFX c3 éguer ègue/m' éguer SFX c3 éler èle/m' éler SFX c3 émer ème/m' émer SFX c3 éner ène/m' éner SFX c3 éper èpe/m' éper SFX c3 équer èque/m' équer SFX c3 érer ère/m' érer SFX c3 éser èse/m' éser SFX c3 éter ète/m' éter SFX c3 étrer ètre/m' étrer SFX c3 évrer èvre/m' évrer SFX c3 éyer èye/m' éyer SFX c3 ébrer èbres/t' ébrer SFX c3 écer èces/t' écer SFX c3 écher èches/t' écher SFX c3 écrer ècres/t' écrer SFX c3 éder èdes/t' éder SFX c3 éger èges/t' éger SFX c3 égler ègles/t' égler SFX c3 égner ègnes/t' égner SFX c3 égrer ègres/t' égrer SFX c3 éguer ègues/t' éguer SFX c3 éler èles/t' éler SFX c3 émer èmes/t' émer SFX c3 éner ènes/t' éner SFX c3 éper èpes/t' éper SFX c3 équer èques/t' équer SFX c3 érer ères/t' érer SFX c3 éser èses/t' éser SFX c3 éter ètes/t' éter SFX c3 étrer ètres/t' étrer SFX c3 évrer èvres/t' évrer SFX c3 éyer èyes/t' éyer SFX c3 ébrer èbre/s' ébrer SFX c3 écer èce/s' écer SFX c3 écher èche/s' écher SFX c3 écrer ècre/s' écrer SFX c3 éder ède/s' éder SFX c3 éger ège/s' éger SFX c3 égler ègle/s' égler SFX c3 égner ègne/s' égner SFX c3 égrer ègre/s' égrer SFX c3 éguer ègue/s' éguer SFX c3 éler èle/s' éler SFX c3 émer ème/s' émer SFX c3 éner ène/s' éner SFX c3 éper èpe/s' éper SFX c3 équer èque/s' équer SFX c3 érer ère/s' érer SFX c3 éser èse/s' éser SFX c3 éter ète/s' éter SFX c3 étrer ètre/s' étrer SFX c3 évrer èvre/s' évrer SFX c3 éyer èye/s' éyer SFX c3 er ons [^cg]er SFX c3 écer éçons écer SFX c3 éger égeons éger SFX c3 er ez er SFX c3 ébrer èbrent/s' ébrer SFX c3 écer ècent/s' écer SFX c3 écher èchent/s' écher SFX c3 écrer ècrent/s' écrer SFX c3 éder èdent/s' éder SFX c3 éger ègent/s' éger SFX c3 égler èglent/s' égler SFX c3 égner ègnent/s' égner SFX c3 égrer ègrent/s' égrer SFX c3 éguer èguent/s' éguer SFX c3 éler èlent/s' éler SFX c3 émer èment/s' émer SFX c3 éner ènent/s' éner SFX c3 éper èpent/s' éper SFX c3 équer èquent/s' équer SFX c3 érer èrent/s' érer SFX c3 éser èsent/s' éser SFX c3 éter ètent/s' éter SFX c3 étrer ètrent/s' étrer SFX c3 évrer èvrent/s' évrer SFX c3 éyer èyent/s' éyer SFX c3 er ais/m' [^cg]er SFX c3 écer éçais/m' écer SFX c3 éger égeais/m' éger SFX c3 er ais/t' [^cg]er SFX c3 écer éçais/t' écer SFX c3 éger égeais/t' éger SFX c3 er ait/s' [^cg]er SFX c3 écer éçait/s' écer SFX c3 éger égeait/s' éger SFX c3 er ions er SFX c3 er iez er SFX c3 er aient/s' [^cg]er SFX c3 écer éçaient/s' écer SFX c3 éger égeaient/s' éger SFX c3 er ai/m' [^cg]er SFX c3 écer éçai/m' écer SFX c3 éger égeai/m' éger SFX c3 er as/t' [^cg]er SFX c3 écer éças/t' écer SFX c3 éger égeas/t' éger SFX c3 er a/s' [^cg]er SFX c3 écer éça/s' écer SFX c3 éger égea/s' éger SFX c3 er âmes [^cg]er SFX c3 écer éçâmes écer SFX c3 éger égeâmes éger SFX c3 er âtes [^cg]er SFX c3 écer éçâtes écer SFX c3 éger égeâtes éger SFX c3 er èrent/s' er SFX c3 er erai/m' er SFX c3 er eras/t' er SFX c3 er era/s' er SFX c3 er erons er SFX c3 er erez er SFX c3 er eront/s' er SFX c3 er erais/m' er SFX c3 er erais/t' er SFX c3 er erait/s' er SFX c3 er erions er SFX c3 er eriez er SFX c3 er eraient/s' er SFX c3 ébrer èbre/m' ébrer SFX c3 écer èce/m' écer SFX c3 écher èche/m' écher SFX c3 écrer ècre/m' écrer SFX c3 éder ède/m' éder SFX c3 éger ège/m' éger SFX c3 égler ègle/m' égler SFX c3 égner ègne/m' égner SFX c3 égrer ègre/m' égrer SFX c3 éguer ègue/m' éguer SFX c3 éler èle/m' éler SFX c3 émer ème/m' émer SFX c3 éner ène/m' éner SFX c3 éper èpe/m' éper SFX c3 équer èque/m' équer SFX c3 érer ère/m' érer SFX c3 éser èse/m' éser SFX c3 éter ète/m' éter SFX c3 étrer ètre/m' étrer SFX c3 évrer èvre/m' évrer SFX c3 éyer èye/m' éyer SFX c3 ébrer èbres/t' ébrer SFX c3 écer èces/t' écer SFX c3 écher èches/t' écher SFX c3 écrer ècres/t' écrer SFX c3 éder èdes/t' éder SFX c3 éger èges/t' éger SFX c3 égler ègles/t' égler SFX c3 égner ègnes/t' égner SFX c3 égrer ègres/t' égrer SFX c3 éguer ègues/t' éguer SFX c3 éler èles/t' éler SFX c3 émer èmes/t' émer SFX c3 éner ènes/t' éner SFX c3 éper èpes/t' éper SFX c3 équer èques/t' équer SFX c3 érer ères/t' érer SFX c3 éser èses/t' éser SFX c3 éter ètes/t' éter SFX c3 étrer ètres/t' étrer SFX c3 évrer èvres/t' évrer SFX c3 éyer èyes/t' éyer SFX c3 ébrer èbre/s' ébrer SFX c3 écer èce/s' écer SFX c3 écher èche/s' écher SFX c3 écrer ècre/s' écrer SFX c3 éder ède/s' éder SFX c3 éger ège/s' éger SFX c3 égler ègle/s' égler SFX c3 égner ègne/s' égner SFX c3 égrer ègre/s' égrer SFX c3 éguer ègue/s' éguer SFX c3 éler èle/s' éler SFX c3 émer ème/s' émer SFX c3 éner ène/s' éner SFX c3 éper èpe/s' éper SFX c3 équer èque/s' équer SFX c3 érer ère/s' érer SFX c3 éser èse/s' éser SFX c3 éter ète/s' éter SFX c3 étrer ètre/s' étrer SFX c3 évrer èvre/s' évrer SFX c3 éyer èye/s' éyer SFX c3 er ions er SFX c3 er iez er SFX c3 ébrer èbrent/s' ébrer SFX c3 écer ècent/s' écer SFX c3 écher èchent/s' écher SFX c3 écrer ècrent/s' écrer SFX c3 éder èdent/s' éder SFX c3 éger ègent/s' éger SFX c3 égler èglent/s' égler SFX c3 égner ègnent/s' égner SFX c3 égrer ègrent/s' égrer SFX c3 éguer èguent/s' éguer SFX c3 éler èlent/s' éler SFX c3 émer èment/s' émer SFX c3 éner ènent/s' éner SFX c3 éper èpent/s' éper SFX c3 équer èquent/s' équer SFX c3 érer èrent/s' érer SFX c3 éser èsent/s' éser SFX c3 éter ètent/s' éter SFX c3 étrer ètrent/s' étrer SFX c3 évrer èvrent/s' évrer SFX c3 éyer èyent/s' éyer SFX c3 er asse/m' [^cg]er SFX c3 écer éçasse/m' écer SFX c3 éger égeasse/m' éger SFX c3 er asses/t' [^cg]er SFX c3 écer éçasses/t' écer SFX c3 éger égeasses/t' éger SFX c3 er ât/s' [^cg]er SFX c3 écer éçât/s' écer SFX c3 éger égeât/s' éger SFX c3 er assions [^cg]er SFX c3 écer éçassions écer SFX c3 éger égeassions éger SFX c3 er assiez [^cg]er SFX c3 écer éçassiez écer SFX c3 éger égeassiez éger SFX c3 er assent/s' [^cg]er SFX c3 écer éçassent/s' écer SFX c3 éger égeassent/s' éger SFX c4 Y 239 SFX c4 er er/n'q'd'l'm't's' er SFX c4 er ant/n'q'l'm't's' [^cg]er SFX c4 écer éçant/n'q'l'm't's' écer SFX c4 éger égeant/n'q'l'm't's' éger SFX c4 er é/q' er SFX c4 ébrer èbre/n'q'j'l'm't' ébrer SFX c4 écer èce/n'q'j'l'm't' écer SFX c4 écher èche/n'q'j'l'm't' écher SFX c4 écrer ècre/n'q'j'l'm't' écrer SFX c4 éder ède/n'q'j'l'm't' éder SFX c4 éger ège/n'q'j'l'm't' éger SFX c4 égler ègle/n'q'j'l'm't' égler SFX c4 égner ègne/n'q'j'l'm't' égner SFX c4 égrer ègre/n'q'j'l'm't' égrer SFX c4 éguer ègue/n'q'j'l'm't' éguer SFX c4 éler èle/n'q'j'l'm't' éler SFX c4 émer ème/n'q'j'l'm't' émer SFX c4 éner ène/n'q'j'l'm't' éner SFX c4 éper èpe/n'q'j'l'm't' éper SFX c4 équer èque/n'q'j'l'm't' équer SFX c4 érer ère/n'q'j'l'm't' érer SFX c4 éser èse/n'q'j'l'm't' éser SFX c4 éter ète/n'q'j'l'm't' éter SFX c4 étrer ètre/n'q'j'l'm't' étrer SFX c4 évrer èvre/n'q'j'l'm't' évrer SFX c4 éyer èye/n'q'j'l'm't' éyer SFX c4 ébrer èbres/n'q'l'm't' ébrer SFX c4 écer èces/n'q'l'm't' écer SFX c4 écher èches/n'q'l'm't' écher SFX c4 écrer ècres/n'q'l'm't' écrer SFX c4 éder èdes/n'q'l'm't' éder SFX c4 éger èges/n'q'l'm't' éger SFX c4 égler ègles/n'q'l'm't' égler SFX c4 égner ègnes/n'q'l'm't' égner SFX c4 égrer ègres/n'q'l'm't' égrer SFX c4 éguer ègues/n'q'l'm't' éguer SFX c4 éler èles/n'q'l'm't' éler SFX c4 émer èmes/n'q'l'm't' émer SFX c4 éner ènes/n'q'l'm't' éner SFX c4 éper èpes/n'q'l'm't' éper SFX c4 équer èques/n'q'l'm't' équer SFX c4 érer ères/n'q'l'm't' érer SFX c4 éser èses/n'q'l'm't' éser SFX c4 éter ètes/n'q'l'm't' éter SFX c4 étrer ètres/n'q'l'm't' étrer SFX c4 évrer èvres/n'q'l'm't' évrer SFX c4 éyer èyes/n'q'l'm't' éyer SFX c4 ébrer èbre/n'q'l'm't's' ébrer SFX c4 écer èce/n'q'l'm't's' écer SFX c4 écher èche/n'q'l'm't's' écher SFX c4 écrer ècre/n'q'l'm't's' écrer SFX c4 éder ède/n'q'l'm't's' éder SFX c4 éger ège/n'q'l'm't's' éger SFX c4 égler ègle/n'q'l'm't's' égler SFX c4 égner ègne/n'q'l'm't's' égner SFX c4 égrer ègre/n'q'l'm't's' égrer SFX c4 éguer ègue/n'q'l'm't's' éguer SFX c4 éler èle/n'q'l'm't's' éler SFX c4 émer ème/n'q'l'm't's' émer SFX c4 éner ène/n'q'l'm't's' éner SFX c4 éper èpe/n'q'l'm't's' éper SFX c4 équer èque/n'q'l'm't's' équer SFX c4 érer ère/n'q'l'm't's' érer SFX c4 éser èse/n'q'l'm't's' éser SFX c4 éter ète/n'q'l'm't's' éter SFX c4 étrer ètre/n'q'l'm't's' étrer SFX c4 évrer èvre/n'q'l'm't's' évrer SFX c4 éyer èye/n'q'l'm't's' éyer SFX c4 er ons/n'q'l't' [^cg]er SFX c4 écer éçons/n'q'l't' écer SFX c4 éger égeons/n'q'l't' éger SFX c4 er ez/n'q'l'm' er SFX c4 ébrer èbrent/n'q'l'm't's' ébrer SFX c4 écer ècent/n'q'l'm't's' écer SFX c4 écher èchent/n'q'l'm't's' écher SFX c4 écrer ècrent/n'q'l'm't's' écrer SFX c4 éder èdent/n'q'l'm't's' éder SFX c4 éger ègent/n'q'l'm't's' éger SFX c4 égler èglent/n'q'l'm't's' égler SFX c4 égner ègnent/n'q'l'm't's' égner SFX c4 égrer ègrent/n'q'l'm't's' égrer SFX c4 éguer èguent/n'q'l'm't's' éguer SFX c4 éler èlent/n'q'l'm't's' éler SFX c4 émer èment/n'q'l'm't's' émer SFX c4 éner ènent/n'q'l'm't's' éner SFX c4 éper èpent/n'q'l'm't's' éper SFX c4 équer èquent/n'q'l'm't's' équer SFX c4 érer èrent/n'q'l'm't's' érer SFX c4 éser èsent/n'q'l'm't's' éser SFX c4 éter ètent/n'q'l'm't's' éter SFX c4 étrer ètrent/n'q'l'm't's' étrer SFX c4 évrer èvrent/n'q'l'm't's' évrer SFX c4 éyer èyent/n'q'l'm't's' éyer SFX c4 er ais/n'q'j'l'm't' [^cg]er SFX c4 écer éçais/n'q'j'l'm't' écer SFX c4 éger égeais/n'q'j'l'm't' éger SFX c4 er ais/n'q'l'm't' [^cg]er SFX c4 écer éçais/n'q'l'm't' écer SFX c4 éger égeais/n'q'l'm't' éger SFX c4 er ait/n'q'l'm't's' [^cg]er SFX c4 écer éçait/n'q'l'm't's' écer SFX c4 éger égeait/n'q'l'm't's' éger SFX c4 er ions/n'q'l't' er SFX c4 er iez/n'q'l'm' er SFX c4 er aient/n'q'l'm't's' [^cg]er SFX c4 écer éçaient/n'q'l'm't's' écer SFX c4 éger égeaient/n'q'l'm't's' éger SFX c4 er ai/n'q'j'l'm't' [^cg]er SFX c4 écer éçai/n'q'j'l'm't' écer SFX c4 éger égeai/n'q'j'l'm't' éger SFX c4 er as/n'q'l'm't' [^cg]er SFX c4 écer éças/n'q'l'm't' écer SFX c4 éger égeas/n'q'l'm't' éger SFX c4 er a/n'q'l'm't's' [^cg]er SFX c4 écer éça/n'q'l'm't's' écer SFX c4 éger égea/n'q'l'm't's' éger SFX c4 er âmes/n'q'l't' [^cg]er SFX c4 écer éçâmes/n'q'l't' écer SFX c4 éger égeâmes/n'q'l't' éger SFX c4 er âtes/n'q'l'm' [^cg]er SFX c4 écer éçâtes/n'q'l'm' écer SFX c4 éger égeâtes/n'q'l'm' éger SFX c4 er èrent/n'q'l'm't's' er SFX c4 er erai/n'q'j'l'm't' er SFX c4 er eras/n'q'l'm't' er SFX c4 er era/n'q'l'm't's' er SFX c4 er erons/n'q'l't' er SFX c4 er erez/n'q'l'm' er SFX c4 er eront/n'q'l'm't's' er SFX c4 er erais/n'q'j'l'm't' er SFX c4 er erais/n'q'l'm't' er SFX c4 er erait/n'q'l'm't's' er SFX c4 er erions/n'q'l't' er SFX c4 er eriez/n'q'l'm' er SFX c4 er eraient/n'q'l'm't's' er SFX c4 ébrer èbre/n'j'l'm't' ébrer SFX c4 écer èce/n'j'l'm't' écer SFX c4 écher èche/n'j'l'm't' écher SFX c4 écrer ècre/n'j'l'm't' écrer SFX c4 éder ède/n'j'l'm't' éder SFX c4 éger ège/n'j'l'm't' éger SFX c4 égler ègle/n'j'l'm't' égler SFX c4 égner ègne/n'j'l'm't' égner SFX c4 égrer ègre/n'j'l'm't' égrer SFX c4 éguer ègue/n'j'l'm't' éguer SFX c4 éler èle/n'j'l'm't' éler SFX c4 émer ème/n'j'l'm't' émer SFX c4 éner ène/n'j'l'm't' éner SFX c4 éper èpe/n'j'l'm't' éper SFX c4 équer èque/n'j'l'm't' équer SFX c4 érer ère/n'j'l'm't' érer SFX c4 éser èse/n'j'l'm't' éser SFX c4 éter ète/n'j'l'm't' éter SFX c4 étrer ètre/n'j'l'm't' étrer SFX c4 évrer èvre/n'j'l'm't' évrer SFX c4 éyer èye/n'j'l'm't' éyer SFX c4 ébrer èbres/n'l'm't' ébrer SFX c4 écer èces/n'l'm't' écer SFX c4 écher èches/n'l'm't' écher SFX c4 écrer ècres/n'l'm't' écrer SFX c4 éder èdes/n'l'm't' éder SFX c4 éger èges/n'l'm't' éger SFX c4 égler ègles/n'l'm't' égler SFX c4 égner ègnes/n'l'm't' égner SFX c4 égrer ègres/n'l'm't' égrer SFX c4 éguer ègues/n'l'm't' éguer SFX c4 éler èles/n'l'm't' éler SFX c4 émer èmes/n'l'm't' émer SFX c4 éner ènes/n'l'm't' éner SFX c4 éper èpes/n'l'm't' éper SFX c4 équer èques/n'l'm't' équer SFX c4 érer ères/n'l'm't' érer SFX c4 éser èses/n'l'm't' éser SFX c4 éter ètes/n'l'm't' éter SFX c4 étrer ètres/n'l'm't' étrer SFX c4 évrer èvres/n'l'm't' évrer SFX c4 éyer èyes/n'l'm't' éyer SFX c4 ébrer èbre/n'l'm't's' ébrer SFX c4 écer èce/n'l'm't's' écer SFX c4 écher èche/n'l'm't's' écher SFX c4 écrer ècre/n'l'm't's' écrer SFX c4 éder ède/n'l'm't's' éder SFX c4 éger ège/n'l'm't's' éger SFX c4 égler ègle/n'l'm't's' égler SFX c4 égner ègne/n'l'm't's' égner SFX c4 égrer ègre/n'l'm't's' égrer SFX c4 éguer ègue/n'l'm't's' éguer SFX c4 éler èle/n'l'm't's' éler SFX c4 émer ème/n'l'm't's' émer SFX c4 éner ène/n'l'm't's' éner SFX c4 éper èpe/n'l'm't's' éper SFX c4 équer èque/n'l'm't's' équer SFX c4 érer ère/n'l'm't's' érer SFX c4 éser èse/n'l'm't's' éser SFX c4 éter ète/n'l'm't's' éter SFX c4 étrer ètre/n'l'm't's' étrer SFX c4 évrer èvre/n'l'm't's' évrer SFX c4 éyer èye/n'l'm't's' éyer SFX c4 er ions/n'l't' er SFX c4 er iez/n'l'm' er SFX c4 ébrer èbrent/n'l'm't's' ébrer SFX c4 écer ècent/n'l'm't's' écer SFX c4 écher èchent/n'l'm't's' écher SFX c4 écrer ècrent/n'l'm't's' écrer SFX c4 éder èdent/n'l'm't's' éder SFX c4 éger ègent/n'l'm't's' éger SFX c4 égler èglent/n'l'm't's' égler SFX c4 égner ègnent/n'l'm't's' égner SFX c4 égrer ègrent/n'l'm't's' égrer SFX c4 éguer èguent/n'l'm't's' éguer SFX c4 éler èlent/n'l'm't's' éler SFX c4 émer èment/n'l'm't's' émer SFX c4 éner ènent/n'l'm't's' éner SFX c4 éper èpent/n'l'm't's' éper SFX c4 équer èquent/n'l'm't's' équer SFX c4 érer èrent/n'l'm't's' érer SFX c4 éser èsent/n'l'm't's' éser SFX c4 éter ètent/n'l'm't's' éter SFX c4 étrer ètrent/n'l'm't's' étrer SFX c4 évrer èvrent/n'l'm't's' évrer SFX c4 éyer èyent/n'l'm't's' éyer SFX c4 er asse/n'q'j'l'm't' [^cg]er SFX c4 écer éçasse/n'q'j'l'm't' écer SFX c4 éger égeasse/n'q'j'l'm't' éger SFX c4 er asses/n'q'l'm't' [^cg]er SFX c4 écer éçasses/n'q'l'm't' écer SFX c4 éger égeasses/n'q'l'm't' éger SFX c4 er ât/n'q'l'm't's' [^cg]er SFX c4 écer éçât/n'q'l'm't's' écer SFX c4 éger égeât/n'q'l'm't's' éger SFX c4 er assions/n'q'l't' [^cg]er SFX c4 écer éçassions/n'q'l't' écer SFX c4 éger égeassions/n'q'l't' éger SFX c4 er assiez/n'q'l'm' [^cg]er SFX c4 écer éçassiez/n'q'l'm' écer SFX c4 éger égeassiez/n'q'l'm' éger SFX c4 er assent/n'q'l'm't's' [^cg]er SFX c4 écer éçassent/n'q'l'm't's' écer SFX c4 éger égeassent/n'q'l'm't's' éger SFX c5 Y 239 SFX c5 er er/m'q'd'm't's' er SFX c5 er ant/m'q'm't's' [^cg]er SFX c5 écer éçant/m'q'm't's' écer SFX c5 éger égeant/m'q'l't's' éger SFX c5 er é/q' er SFX c5 ébrer èbre/n'j'm't' ébrer SFX c5 écer èce/n'j'm't' écer SFX c5 écher èche/n'j'm't' écher SFX c5 écrer ècre/n'j'm't' écrer SFX c5 éder ède/n'j'm't' éder SFX c5 éger ège/n'j'm't' éger SFX c5 égler ègle/n'j'm't' égler SFX c5 égner ègne/n'j'm't' égner SFX c5 égrer ègre/n'j'm't' égrer SFX c5 éguer ègue/n'j'm't' éguer SFX c5 éler èle/n'j'm't' éler SFX c5 émer ème/n'j'm't' émer SFX c5 éner ène/n'j'm't' éner SFX c5 éper èpe/n'j'm't' éper SFX c5 équer èque/n'j'm't' équer SFX c5 érer ère/n'j'm't' érer SFX c5 éser èse/n'j'm't' éser SFX c5 éter ète/n'j'm't' éter SFX c5 étrer ètre/n'j'm't' étrer SFX c5 évrer èvre/n'j'm't' évrer SFX c5 éyer èye/n'j'm't' éyer SFX c5 ébrer èbres/n'm't' ébrer SFX c5 écer èces/n'm't' écer SFX c5 écher èches/n'm't' écher SFX c5 écrer ècres/n'm't' écrer SFX c5 éder èdes/n'm't' éder SFX c5 éger èges/n'm't' éger SFX c5 égler ègles/n'm't' égler SFX c5 égner ègnes/n'm't' égner SFX c5 égrer ègres/n'm't' égrer SFX c5 éguer ègues/n'm't' éguer SFX c5 éler èles/n'm't' éler SFX c5 émer èmes/n'm't' émer SFX c5 éner ènes/n'm't' éner SFX c5 éper èpes/n'm't' éper SFX c5 équer èques/n'm't' équer SFX c5 érer ères/n'm't' érer SFX c5 éser èses/n'm't' éser SFX c5 éter ètes/n'm't' éter SFX c5 étrer ètres/n'm't' étrer SFX c5 évrer èvres/n'm't' évrer SFX c5 éyer èyes/n'm't' éyer SFX c5 ébrer èbre/n'q'm't's' ébrer SFX c5 écer èce/n'q'm't's' écer SFX c5 écher èche/n'q'm't's' écher SFX c5 écrer ècre/n'q'm't's' écrer SFX c5 éder ède/n'q'm't's' éder SFX c5 éger ège/n'q'm't's' éger SFX c5 égler ègle/n'q'm't's' égler SFX c5 égner ègne/n'q'm't's' égner SFX c5 égrer ègre/n'q'm't's' égrer SFX c5 éguer ègue/n'q'm't's' éguer SFX c5 éler èle/n'q'm't's' éler SFX c5 émer ème/n'q'm't's' émer SFX c5 éner ène/n'q'm't's' éner SFX c5 éper èpe/n'q'm't's' éper SFX c5 équer èque/n'q'm't's' équer SFX c5 érer ère/n'q'm't's' érer SFX c5 éser èse/n'q'm't's' éser SFX c5 éter ète/n'q'm't's' éter SFX c5 étrer ètre/n'q'm't's' étrer SFX c5 évrer èvre/n'q'm't's' évrer SFX c5 éyer èye/n'q'm't's' éyer SFX c5 er ons/n't' [^cg]er SFX c5 écer éçons/n't' écer SFX c5 éger égeons/n't' éger SFX c5 er ez/n'm' er SFX c5 ébrer èbrent/n'q'm't's' ébrer SFX c5 écer ècent/n'q'm't's' écer SFX c5 écher èchent/n'q'm't's' écher SFX c5 écrer ècrent/n'q'm't's' écrer SFX c5 éder èdent/n'q'm't's' éder SFX c5 éger ègent/n'q'm't's' éger SFX c5 égler èglent/n'q'm't's' égler SFX c5 égner ègnent/n'q'm't's' égner SFX c5 égrer ègrent/n'q'm't's' égrer SFX c5 éguer èguent/n'q'm't's' éguer SFX c5 éler èlent/n'q'm't's' éler SFX c5 émer èment/n'q'm't's' émer SFX c5 éner ènent/n'q'm't's' éner SFX c5 éper èpent/n'q'm't's' éper SFX c5 équer èquent/n'q'm't's' équer SFX c5 érer èrent/n'q'm't's' érer SFX c5 éser èsent/n'q'm't's' éser SFX c5 éter ètent/n'q'm't's' éter SFX c5 étrer ètrent/n'q'm't's' étrer SFX c5 évrer èvrent/n'q'm't's' évrer SFX c5 éyer èyent/n'q'm't's' éyer SFX c5 er ais/n'j'm't' [^cg]er SFX c5 écer éçais/n'j'm't' écer SFX c5 éger égeais/n'j'm't' éger SFX c5 er ais/n'm't' [^cg]er SFX c5 écer éçais/n'm't' écer SFX c5 éger égeais/n'm't' éger SFX c5 er ait/n'q'm't's' [^cg]er SFX c5 écer éçait/n'q'm't's' écer SFX c5 éger égeait/n'q'm't's' éger SFX c5 er ions/n't' er SFX c5 er iez/n'm' er SFX c5 er aient/n'q'm't's' [^cg]er SFX c5 écer éçaient/n'q'm't's' écer SFX c5 éger égeaient/n'q'm't's' éger SFX c5 er ai/n'j'm't' [^cg]er SFX c5 écer éçai/n'j'm't' écer SFX c5 éger égeai/n'j'm't' éger SFX c5 er as/n'm't' [^cg]er SFX c5 écer éças/n'm't' écer SFX c5 éger égeas/n'm't' éger SFX c5 er a/n'q'm't's' [^cg]er SFX c5 écer éça/n'q'm't's' écer SFX c5 éger égea/n'q'm't's' éger SFX c5 er âmes/n't' [^cg]er SFX c5 écer éçâmes/n't' écer SFX c5 éger égeâmes/n't' éger SFX c5 er âtes/n'm' [^cg]er SFX c5 écer éçâtes/n'm' écer SFX c5 éger égeâtes/n'm' éger SFX c5 er èrent/n'q'm't's' er SFX c5 er erai/n'j'm't' er SFX c5 er eras/n'm't' er SFX c5 er era/n'q'm't's' er SFX c5 er erons/n't' er SFX c5 er erez/n'm' er SFX c5 er eront/n'q'm't's' er SFX c5 er erais/n'j'm't' er SFX c5 er erais/n'm't' er SFX c5 er erait/n'q'm't's' er SFX c5 er erions/n't' er SFX c5 er eriez/n'm' er SFX c5 er eraient/n'q'm't's' er SFX c5 ébrer èbre/n'j'm't' ébrer SFX c5 écer èce/n'j'm't' écer SFX c5 écher èche/n'j'm't' écher SFX c5 écrer ècre/n'j'm't' écrer SFX c5 éder ède/n'j'm't' éder SFX c5 éger ège/n'j'm't' éger SFX c5 égler ègle/n'j'm't' égler SFX c5 égner ègne/n'j'm't' égner SFX c5 égrer ègre/n'j'm't' égrer SFX c5 éguer ègue/n'j'm't' éguer SFX c5 éler èle/n'j'm't' éler SFX c5 émer ème/n'j'm't' émer SFX c5 éner ène/n'j'm't' éner SFX c5 éper èpe/n'j'm't' éper SFX c5 équer èque/n'j'm't' équer SFX c5 érer ère/n'j'm't' érer SFX c5 éser èse/n'j'm't' éser SFX c5 éter ète/n'j'm't' éter SFX c5 étrer ètre/n'j'm't' étrer SFX c5 évrer èvre/n'j'm't' évrer SFX c5 éyer èye/n'j'm't' éyer SFX c5 ébrer èbres/n'm't' ébrer SFX c5 écer èces/n'm't' écer SFX c5 écher èches/n'm't' écher SFX c5 écrer ècres/n'm't' écrer SFX c5 éder èdes/n'm't' éder SFX c5 éger èges/n'm't' éger SFX c5 égler ègles/n'm't' égler SFX c5 égner ègnes/n'm't' égner SFX c5 égrer ègres/n'm't' égrer SFX c5 éguer ègues/n'm't' éguer SFX c5 éler èles/n'm't' éler SFX c5 émer èmes/n'm't' émer SFX c5 éner ènes/n'm't' éner SFX c5 éper èpes/n'm't' éper SFX c5 équer èques/n'm't' équer SFX c5 érer ères/n'm't' érer SFX c5 éser èses/n'm't' éser SFX c5 éter ètes/n'm't' éter SFX c5 étrer ètres/n'm't' étrer SFX c5 évrer èvres/n'm't' évrer SFX c5 éyer èyes/n'm't' éyer SFX c5 ébrer èbre/n'q'm't's' ébrer SFX c5 écer èce/n'q'm't's' écer SFX c5 écher èche/n'q'm't's' écher SFX c5 écrer ècre/n'q'm't's' écrer SFX c5 éder ède/n'q'm't's' éder SFX c5 éger ège/n'q'm't's' éger SFX c5 égler ègle/n'q'm't's' égler SFX c5 égner ègne/n'q'm't's' égner SFX c5 égrer ègre/n'q'm't's' égrer SFX c5 éguer ègue/n'q'm't's' éguer SFX c5 éler èle/n'q'm't's' éler SFX c5 émer ème/n'q'm't's' émer SFX c5 éner ène/n'q'm't's' éner SFX c5 éper èpe/n'q'm't's' éper SFX c5 équer èque/n'q'm't's' équer SFX c5 érer ère/n'q'm't's' érer SFX c5 éser èse/n'q'm't's' éser SFX c5 éter ète/n'q'm't's' éter SFX c5 étrer ètre/n'q'm't's' étrer SFX c5 évrer èvre/n'q'm't's' évrer SFX c5 éyer èye/n'q'm't's' éyer SFX c5 er ions/n't' er SFX c5 er iez/n'm' er SFX c5 ébrer èbrent/n'q'm't's' ébrer SFX c5 écer ècent/n'q'm't's' écer SFX c5 écher èchent/n'q'm't's' écher SFX c5 écrer ècrent/n'q'm't's' écrer SFX c5 éder èdent/n'q'm't's' éder SFX c5 éger ègent/n'q'm't's' éger SFX c5 égler èglent/n'q'm't's' égler SFX c5 égner ègnent/n'q'm't's' égner SFX c5 égrer ègrent/n'q'm't's' égrer SFX c5 éguer èguent/n'q'm't's' éguer SFX c5 éler èlent/n'q'm't's' éler SFX c5 émer èment/n'q'm't's' émer SFX c5 éner ènent/n'q'm't's' éner SFX c5 éper èpent/n'q'm't's' éper SFX c5 équer èquent/n'q'm't's' équer SFX c5 érer èrent/n'q'm't's' érer SFX c5 éser èsent/n'q'm't's' éser SFX c5 éter ètent/n'q'm't's' éter SFX c5 étrer ètrent/n'q'm't's' étrer SFX c5 évrer èvrent/n'q'm't's' évrer SFX c5 éyer èyent/n'q'm't's' éyer SFX c5 er asse/n'j'm't' [^cg]er SFX c5 écer éçasse/n'j'm't' écer SFX c5 éger égeasse/n'j'm't' éger SFX c5 er asses/n'm't' [^cg]er SFX c5 écer éçasses/n'm't' écer SFX c5 éger égeasses/n'm't' éger SFX c5 er ât/n'q'm't's' [^cg]er SFX c5 écer éçât/n'q'm't's' écer SFX c5 éger égeât/n'q'm't's' éger SFX c5 er assions/n't' [^cg]er SFX c5 écer éçassions/n't' écer SFX c5 éger égeassions/n't' éger SFX c5 er assiez/n'm' [^cg]er SFX c5 écer éçassiez/n'm' écer SFX c5 éger égeassiez/n'm' éger SFX c5 er assent/n'q'm't's' [^cg]er SFX c5 écer éçassent/n'q'm't's' écer SFX c5 éger égeassent/n'q'm't's' éger SFX d0 N 105 SFX d0 er er er SFX d0 er ant er SFX d0 er é er SFX d0 eter ette jeter SFX d0 eter ette [^j]eter SFX d0 eler elle ppeler SFX d0 eler elle [^p].eler SFX d0 eter ettes jeter SFX d0 eter ettes [^j]eter SFX d0 eler elles ppeler SFX d0 eler elles [^p].eler SFX d0 eter ette jeter SFX d0 eter ette [^j]eter SFX d0 eler elle ppeler SFX d0 eler elle [^p].eler SFX d0 er ons er SFX d0 er ez er SFX d0 eter ettent jeter SFX d0 eter ettent [^j]eter SFX d0 eler ellent ppeler SFX d0 eler ellent [^p].eler SFX d0 er ais er SFX d0 er ais er SFX d0 er ait er SFX d0 er ions er SFX d0 er iez er SFX d0 er aient er SFX d0 er ai er SFX d0 er as er SFX d0 er a er SFX d0 er âmes er SFX d0 er âtes er SFX d0 er èrent er SFX d0 eter etterai jeter SFX d0 eter etterai [^j]eter SFX d0 eler ellerai ppeler SFX d0 eler ellerai [^p].eler SFX d0 eter etteras jeter SFX d0 eter etteras [^j]eter SFX d0 eler elleras ppeler SFX d0 eler elleras [^p].eler SFX d0 eter ettera jeter SFX d0 eter ettera [^j]eter SFX d0 eler ellera ppeler SFX d0 eler ellera [^p].eler SFX d0 eter etterons jeter SFX d0 eter etterons [^j]eter SFX d0 eler ellerons ppeler SFX d0 eler ellerons [^p].eler SFX d0 eter etterez jeter SFX d0 eter etterez [^j]eter SFX d0 eler ellerez ppeler SFX d0 eler ellerez [^p].eler SFX d0 eter etteront jeter SFX d0 eter etteront [^j]eter SFX d0 eler elleront ppeler SFX d0 eler elleront [^p].eler SFX d0 eter etterais jeter SFX d0 eter etterais [^j]eter SFX d0 eler ellerais ppeler SFX d0 eler ellerais [^p].eler SFX d0 eter etterais jeter SFX d0 eter etterais [^j]eter SFX d0 eler ellerais ppeler SFX d0 eler ellerais [^p].eler SFX d0 eter etterait jeter SFX d0 eter etterait [^j]eter SFX d0 eler ellerait ppeler SFX d0 eler ellerait [^p].eler SFX d0 eter etterions jeter SFX d0 eter etterions [^j]eter SFX d0 eler ellerions ppeler SFX d0 eler ellerions [^p].eler SFX d0 eter etteriez jeter SFX d0 eter etteriez [^j]eter SFX d0 eler elleriez ppeler SFX d0 eler elleriez [^p].eler SFX d0 eter etteraient jeter SFX d0 eter etteraient [^j]eter SFX d0 eler elleraient ppeler SFX d0 eler elleraient [^p].eler SFX d0 eter ette jeter SFX d0 eter ette [^j]eter SFX d0 eler elle ppeler SFX d0 eler elle [^p].eler SFX d0 eter ettes jeter SFX d0 eter ettes [^j]eter SFX d0 eler elles ppeler SFX d0 eler elles [^p].eler SFX d0 eter ette jeter SFX d0 eter ette [^j]eter SFX d0 eler elle ppeler SFX d0 eler elle [^p].eler SFX d0 er ions er SFX d0 er iez er SFX d0 eter ettent jeter SFX d0 eter ettent [^j]eter SFX d0 eler ellent ppeler SFX d0 eler ellent [^p].eler SFX d0 er asse er SFX d0 er asses er SFX d0 er ât er SFX d0 er assions er SFX d0 er assiez er SFX d0 er assent er SFX d1 Y 105 SFX d1 er er/n'q'd' er SFX d1 er ant/n'q' er SFX d1 er é/q' er SFX d1 eter ette/n'j' jeter SFX d1 eter ette/n'j' [^j]eter SFX d1 eler elle/n'j' ppeler SFX d1 eler elle/n'j' [^p].eler SFX d1 eter ettes/n' jeter SFX d1 eter ettes/n' [^j]eter SFX d1 eler elles/n' ppeler SFX d1 eler elles/n' [^p].eler SFX d1 eter ette/n'q' jeter SFX d1 eter ette/n'q' [^j]eter SFX d1 eler elle/n'q' ppeler SFX d1 eler elle/n'q' [^p].eler SFX d1 er ons/n' er SFX d1 er ez/n' er SFX d1 eter ettent/n'q' jeter SFX d1 eter ettent/n'q' [^j]eter SFX d1 eler ellent/n'q' ppeler SFX d1 eler ellent/n'q' [^p].eler SFX d1 er ais/n'j' er SFX d1 er ais/n' er SFX d1 er ait/n'q' er SFX d1 er ions/n' er SFX d1 er iez/n' er SFX d1 er aient/n'q' er SFX d1 er ai/n'j' er SFX d1 er as/n' er SFX d1 er a/n'q' er SFX d1 er âmes/n' er SFX d1 er âtes/n' er SFX d1 er èrent/n'q' er SFX d1 eter etterai/n'j' jeter SFX d1 eter etterai/n'j' [^j]eter SFX d1 eler ellerai/n'j' ppeler SFX d1 eler ellerai/n'j' [^p].eler SFX d1 eter etteras/n' jeter SFX d1 eter etteras/n' [^j]eter SFX d1 eler elleras/n' ppeler SFX d1 eler elleras/n' [^p].eler SFX d1 eter ettera/n'q' jeter SFX d1 eter ettera/n'q' [^j]eter SFX d1 eler ellera/n'q' ppeler SFX d1 eler ellera/n'q' [^p].eler SFX d1 eter etterons/n' jeter SFX d1 eter etterons/n' [^j]eter SFX d1 eler ellerons/n' ppeler SFX d1 eler ellerons/n' [^p].eler SFX d1 eter etterez/n' jeter SFX d1 eter etterez/n' [^j]eter SFX d1 eler ellerez/n' ppeler SFX d1 eler ellerez/n' [^p].eler SFX d1 eter etteront/n'q' jeter SFX d1 eter etteront/n'q' [^j]eter SFX d1 eler elleront/n'q' ppeler SFX d1 eler elleront/n'q' [^p].eler SFX d1 eter etterais/n'j' jeter SFX d1 eter etterais/n'j' [^j]eter SFX d1 eler ellerais/n'j' ppeler SFX d1 eler ellerais/n'j' [^p].eler SFX d1 eter etterais/n' jeter SFX d1 eter etterais/n' [^j]eter SFX d1 eler ellerais/n' ppeler SFX d1 eler ellerais/n' [^p].eler SFX d1 eter etterait/n'q' jeter SFX d1 eter etterait/n'q' [^j]eter SFX d1 eler ellerait/n'q' ppeler SFX d1 eler ellerait/n'q' [^p].eler SFX d1 eter etterions/n' jeter SFX d1 eter etterions/n' [^j]eter SFX d1 eler ellerions/n' ppeler SFX d1 eler ellerions/n' [^p].eler SFX d1 eter etteriez/n' jeter SFX d1 eter etteriez/n' [^j]eter SFX d1 eler elleriez/n' ppeler SFX d1 eler elleriez/n' [^p].eler SFX d1 eter etteraient/n'q' jeter SFX d1 eter etteraient/n'q' [^j]eter SFX d1 eler elleraient/n'q' ppeler SFX d1 eler elleraient/n'q' [^p].eler SFX d1 eter ette/n'j' jeter SFX d1 eter ette/n'j' [^j]eter SFX d1 eler elle/n'j' ppeler SFX d1 eler elle/n'j' [^p].eler SFX d1 eter ettes/n' jeter SFX d1 eter ettes/n' [^j]eter SFX d1 eler elles/n' ppeler SFX d1 eler elles/n' [^p].eler SFX d1 eter ette/n'q' jeter SFX d1 eter ette/n'q' [^j]eter SFX d1 eler elle/n'q' ppeler SFX d1 eler elle/n'q' [^p].eler SFX d1 er ions/n' er SFX d1 er iez/n' er SFX d1 eter ettent/n'q' jeter SFX d1 eter ettent/n'q' [^j]eter SFX d1 eler ellent/n'q' ppeler SFX d1 eler ellent/n'q' [^p].eler SFX d1 er asse/n'j' er SFX d1 er asses/n' er SFX d1 er ât/n'q' er SFX d1 er assions/n' er SFX d1 er assiez/n' er SFX d1 er assent/n'q' er SFX d2 Y 105 SFX d2 er er/n'q'd'l'm't's' er SFX d2 er ant/n'q'l'm't's' er SFX d2 er é/q' er SFX d2 eter ette/n'q'j'l't' jeter SFX d2 eter ette/n'q'j'l't' [^j]eter SFX d2 eler elle/n'q'j'l't' ppeler SFX d2 eler elle/n'q'j'l't' [^p].eler SFX d2 eter ettes/n'q'l'm' jeter SFX d2 eter ettes/n'q'l'm' [^j]eter SFX d2 eler elles/n'q'l'm' ppeler SFX d2 eler elles/n'q'l'm' [^p].eler SFX d2 eter ette/n'q'l'm't's' jeter SFX d2 eter ette/n'q'l'm't's' [^j]eter SFX d2 eler elle/n'q'l'm't's' ppeler SFX d2 eler elle/n'q'l'm't's' [^p].eler SFX d2 er ons/n'q'l't' er SFX d2 er ez/n'q'l'm' er SFX d2 eter ettent/n'q'l'm't's' jeter SFX d2 eter ettent/n'q'l'm't's' [^j]eter SFX d2 eler ellent/n'q'l'm't's' ppeler SFX d2 eler ellent/n'q'l'm't's' [^p].eler SFX d2 er ais/n'q'j'l't' er SFX d2 er ais/n'q'l'm' er SFX d2 er ait/n'q'l'm't's' er SFX d2 er ions/n'q'l't' er SFX d2 er iez/n'q'l'm' er SFX d2 er aient/n'q'l'm't's' er SFX d2 er ai/n'q'j'l't' er SFX d2 er as/n'q'l'm' er SFX d2 er a/n'q'l'm't's' er SFX d2 er âmes/n'q'l't' er SFX d2 er âtes/n'q'l'm' er SFX d2 er èrent/n'q'l'm't's' er SFX d2 eter etterai/n'q'j'l't' jeter SFX d2 eter etterai/n'q'j'l't' [^j]eter SFX d2 eler ellerai/n'q'j'l't' ppeler SFX d2 eler ellerai/n'q'j'l't' [^p].eler SFX d2 eter etteras/n'q'l'm' jeter SFX d2 eter etteras/n'q'l'm' [^j]eter SFX d2 eler elleras/n'q'l'm' ppeler SFX d2 eler elleras/n'q'l'm' [^p].eler SFX d2 eter ettera/n'q'l'm't's' jeter SFX d2 eter ettera/n'q'l'm't's' [^j]eter SFX d2 eler ellera/n'q'l'm't's' ppeler SFX d2 eler ellera/n'q'l'm't's' [^p].eler SFX d2 eter etterons/n'q'l't' jeter SFX d2 eter etterons/n'q'l't' [^j]eter SFX d2 eler ellerons/n'q'l't' ppeler SFX d2 eler ellerons/n'q'l't' [^p].eler SFX d2 eter etterez/n'q'l'm' jeter SFX d2 eter etterez/n'q'l'm' [^j]eter SFX d2 eler ellerez/n'q'l'm' ppeler SFX d2 eler ellerez/n'q'l'm' [^p].eler SFX d2 eter etteront/n'q'l'm't's' jeter SFX d2 eter etteront/n'q'l'm't's' [^j]eter SFX d2 eler elleront/n'q'l'm't's' ppeler SFX d2 eler elleront/n'q'l'm't's' [^p].eler SFX d2 eter etterais/n'q'j'l't' jeter SFX d2 eter etterais/n'q'j'l't' [^j]eter SFX d2 eler ellerais/n'q'j'l't' ppeler SFX d2 eler ellerais/n'q'j'l't' [^p].eler SFX d2 eter etterais/n'q'l'm' jeter SFX d2 eter etterais/n'q'l'm' [^j]eter SFX d2 eler ellerais/n'q'l'm' ppeler SFX d2 eler ellerais/n'q'l'm' [^p].eler SFX d2 eter etterait/n'q'l'm't's' jeter SFX d2 eter etterait/n'q'l'm't's' [^j]eter SFX d2 eler ellerait/n'q'l'm't's' ppeler SFX d2 eler ellerait/n'q'l'm't's' [^p].eler SFX d2 eter etterions/n'q'l't' jeter SFX d2 eter etterions/n'q'l't' [^j]eter SFX d2 eler ellerions/n'q'l't' ppeler SFX d2 eler ellerions/n'q'l't' [^p].eler SFX d2 eter etteriez/n'q'l'm' jeter SFX d2 eter etteriez/n'q'l'm' [^j]eter SFX d2 eler elleriez/n'q'l'm' ppeler SFX d2 eler elleriez/n'q'l'm' [^p].eler SFX d2 eter etteraient/n'q'l'm't's' jeter SFX d2 eter etteraient/n'q'l'm't's' [^j]eter SFX d2 eler elleraient/n'q'l'm't's' ppeler SFX d2 eler elleraient/n'q'l'm't's' [^p].eler SFX d2 eter ette/n'j'l't' jeter SFX d2 eter ette/n'j'l't' [^j]eter SFX d2 eler elle/n'j'l't' ppeler SFX d2 eler elle/n'j'l't' [^p].eler SFX d2 eter ettes/n'l'm' jeter SFX d2 eter ettes/n'l'm' [^j]eter SFX d2 eler elles/n'l'm' ppeler SFX d2 eler elles/n'l'm' [^p].eler SFX d2 eter ette/n'l'm't's' jeter SFX d2 eter ette/n'l'm't's' [^j]eter SFX d2 eler elle/n'l'm't's' ppeler SFX d2 eler elle/n'l'm't's' [^p].eler SFX d2 er ions/n'l't' er SFX d2 er iez/n'l'm' er SFX d2 eter ettent/n'l'm't's' jeter SFX d2 eter ettent/n'l'm't's' [^j]eter SFX d2 eler ellent/n'l'm't's' ppeler SFX d2 eler ellent/n'l'm't's' [^p].eler SFX d2 er asse/n'q'j'l't' er SFX d2 er asses/n'q'l'm' er SFX d2 er ât/n'q'l'm't's' er SFX d2 er assions/n'q'l't' er SFX d2 er assiez/n'q'l'm' er SFX d2 er assent/n'q'l'm't's' er SFX d3 Y 105 SFX d3 er er/m't's' er SFX d3 er ant/m't's' er SFX d3 er é er SFX d3 eter ette/m' jeter SFX d3 eter ette/m' [^j]eter SFX d3 eler elle/m' ppeler SFX d3 eler elle/m' [^p].eler SFX d3 eter ettes/t' jeter SFX d3 eter ettes/t' [^j]eter SFX d3 eler elles/t' ppeler SFX d3 eler elles/t' [^p].eler SFX d3 eter ette/s' jeter SFX d3 eter ette/s' [^j]eter SFX d3 eler elle/s' ppeler SFX d3 eler elle/s' [^p].eler SFX d3 er ons er SFX d3 er ez er SFX d3 eter ettent/s' jeter SFX d3 eter ettent/s' [^j]eter SFX d3 eler ellent/s' ppeler SFX d3 eler ellent/s' [^p].eler SFX d3 er ais/m' er SFX d3 er ais/t' er SFX d3 er ait/s' er SFX d3 er ions er SFX d3 er iez er SFX d3 er aient/s' er SFX d3 er ai/m' er SFX d3 er as/t' er SFX d3 er a/s' er SFX d3 er âmes er SFX d3 er âtes er SFX d3 er èrent/s' er SFX d3 eter etterai/m' jeter SFX d3 eter etterai/m' [^j]eter SFX d3 eler ellerai/m' ppeler SFX d3 eler ellerai/m' [^p].eler SFX d3 eter etteras/t' jeter SFX d3 eter etteras/t' [^j]eter SFX d3 eler elleras/t' ppeler SFX d3 eler elleras/t' [^p].eler SFX d3 eter ettera/s' jeter SFX d3 eter ettera/s' [^j]eter SFX d3 eler ellera/s' ppeler SFX d3 eler ellera/s' [^p].eler SFX d3 eter etterons jeter SFX d3 eter etterons [^j]eter SFX d3 eler ellerons ppeler SFX d3 eler ellerons [^p].eler SFX d3 eter etterez jeter SFX d3 eter etterez [^j]eter SFX d3 eler ellerez ppeler SFX d3 eler ellerez [^p].eler SFX d3 eter etteront/s' jeter SFX d3 eter etteront/s' [^j]eter SFX d3 eler elleront/s' ppeler SFX d3 eler elleront/s' [^p].eler SFX d3 eter etterais/m' jeter SFX d3 eter etterais/m' [^j]eter SFX d3 eler ellerais/m' ppeler SFX d3 eler ellerais/m' [^p].eler SFX d3 eter etterais/t' jeter SFX d3 eter etterais/t' [^j]eter SFX d3 eler ellerais/t' ppeler SFX d3 eler ellerais/t' [^p].eler SFX d3 eter etterait/s' jeter SFX d3 eter etterait/s' [^j]eter SFX d3 eler ellerait/s' ppeler SFX d3 eler ellerait/s' [^p].eler SFX d3 eter etterions jeter SFX d3 eter etterions [^j]eter SFX d3 eler ellerions ppeler SFX d3 eler ellerions [^p].eler SFX d3 eter etteriez jeter SFX d3 eter etteriez [^j]eter SFX d3 eler elleriez ppeler SFX d3 eler elleriez [^p].eler SFX d3 eter etteraient/s' jeter SFX d3 eter etteraient/s' [^j]eter SFX d3 eler elleraient/s' ppeler SFX d3 eler elleraient/s' [^p].eler SFX d3 eter ette/m' jeter SFX d3 eter ette/m' [^j]eter SFX d3 eler elle/m' ppeler SFX d3 eler elle/m' [^p].eler SFX d3 eter ettes/t' jeter SFX d3 eter ettes/t' [^j]eter SFX d3 eler elles/t' ppeler SFX d3 eler elles/t' [^p].eler SFX d3 eter ette/s' jeter SFX d3 eter ette/s' [^j]eter SFX d3 eler elle/s' ppeler SFX d3 eler elle/s' [^p].eler SFX d3 er ions er SFX d3 er iez er SFX d3 eter ettent/s' jeter SFX d3 eter ettent/s' [^j]eter SFX d3 eler ellent/s' ppeler SFX d3 eler ellent/s' [^p].eler SFX d3 er asse/m' er SFX d3 er asses/t' er SFX d3 er ât/s' er SFX d3 er assions er SFX d3 er assiez er SFX d3 er assent/s' er SFX d4 Y 105 SFX d4 er er/n'q'd'l'm't's' er SFX d4 er ant/n'q'l'm't's' er SFX d4 er é/q' er SFX d4 eter ette/n'q'j'l'm't' jeter SFX d4 eter ette/n'q'j'l'm't' [^j]eter SFX d4 eler elle/n'q'j'l'm't' ppeler SFX d4 eler elle/n'q'j'l'm't' [^p].eler SFX d4 eter ettes/n'q'l'm't' jeter SFX d4 eter ettes/n'q'l'm't' [^j]eter SFX d4 eler elles/n'q'l'm't' ppeler SFX d4 eler elles/n'q'l'm't' [^p].eler SFX d4 eter ette/n'q'l'm't's' jeter SFX d4 eter ette/n'q'l'm't's' [^j]eter SFX d4 eler elle/n'q'l'm't's' ppeler SFX d4 eler elle/n'q'l'm't's' [^p].eler SFX d4 er ons/n'q'l't' er SFX d4 er ez/n'q'l'm' er SFX d4 eter ettent/n'q'l'm't's' jeter SFX d4 eter ettent/n'q'l'm't's' [^j]eter SFX d4 eler ellent/n'q'l'm't's' ppeler SFX d4 eler ellent/n'q'l'm't's' [^p].eler SFX d4 er ais/n'q'j'l'm't' er SFX d4 er ais/n'q'l'm't' er SFX d4 er ait/n'q'l'm't's' er SFX d4 er ions/n'q'l't' er SFX d4 er iez/n'q'l'm' er SFX d4 er aient/n'q'l'm't's' er SFX d4 er ai/n'q'j'l'm't' er SFX d4 er as/n'q'l'm't' er SFX d4 er a/n'q'l'm't's' er SFX d4 er âmes/n'q'l't' er SFX d4 er âtes/n'q'l'm' er SFX d4 er èrent/n'q'l'm't's' er SFX d4 eter etterai/n'q'j'l'm't' jeter SFX d4 eter etterai/n'q'j'l'm't' [^j]eter SFX d4 eler ellerai/n'q'j'l'm't' ppeler SFX d4 eler ellerai/n'q'j'l'm't' [^p].eler SFX d4 eter etteras/n'q'l'm't' jeter SFX d4 eter etteras/n'q'l'm't' [^j]eter SFX d4 eler elleras/n'q'l'm't' ppeler SFX d4 eler elleras/n'q'l'm't' [^p].eler SFX d4 eter ettera/n'q'l'm't's' jeter SFX d4 eter ettera/n'q'l'm't's' [^j]eter SFX d4 eler ellera/n'q'l'm't's' ppeler SFX d4 eler ellera/n'q'l'm't's' [^p].eler SFX d4 eter etterons/n'q'l't' jeter SFX d4 eter etterons/n'q'l't' [^j]eter SFX d4 eler ellerons/n'q'l't' ppeler SFX d4 eler ellerons/n'q'l't' [^p].eler SFX d4 eter etterez/n'q'l'm' jeter SFX d4 eter etterez/n'q'l'm' [^j]eter SFX d4 eler ellerez/n'q'l'm' ppeler SFX d4 eler ellerez/n'q'l'm' [^p].eler SFX d4 eter etteront/n'q'l'm't's' jeter SFX d4 eter etteront/n'q'l'm't's' [^j]eter SFX d4 eler elleront/n'q'l'm't's' ppeler SFX d4 eler elleront/n'q'l'm't's' [^p].eler SFX d4 eter etterais/n'q'j'l'm't' jeter SFX d4 eter etterais/n'q'j'l'm't' [^j]eter SFX d4 eler ellerais/n'q'j'l'm't' ppeler SFX d4 eler ellerais/n'q'j'l'm't' [^p].eler SFX d4 eter etterais/n'q'l'm't' jeter SFX d4 eter etterais/n'q'l'm't' [^j]eter SFX d4 eler ellerais/n'q'l'm't' ppeler SFX d4 eler ellerais/n'q'l'm't' [^p].eler SFX d4 eter etterait/n'q'l'm't's' jeter SFX d4 eter etterait/n'q'l'm't's' [^j]eter SFX d4 eler ellerait/n'q'l'm't's' ppeler SFX d4 eler ellerait/n'q'l'm't's' [^p].eler SFX d4 eter etterions/n'q'l't' jeter SFX d4 eter etterions/n'q'l't' [^j]eter SFX d4 eler ellerions/n'q'l't' ppeler SFX d4 eler ellerions/n'q'l't' [^p].eler SFX d4 eter etteriez/n'q'l'm' jeter SFX d4 eter etteriez/n'q'l'm' [^j]eter SFX d4 eler elleriez/n'q'l'm' ppeler SFX d4 eler elleriez/n'q'l'm' [^p].eler SFX d4 eter etteraient/n'q'l'm't's' jeter SFX d4 eter etteraient/n'q'l'm't's' [^j]eter SFX d4 eler elleraient/n'q'l'm't's' ppeler SFX d4 eler elleraient/n'q'l'm't's' [^p].eler SFX d4 eter ette/n'j'l'm't' jeter SFX d4 eter ette/n'j'l'm't' [^j]eter SFX d4 eler elle/n'j'l'm't' ppeler SFX d4 eler elle/n'j'l'm't' [^p].eler SFX d4 eter ettes/n'l'm't' jeter SFX d4 eter ettes/n'l'm't' [^j]eter SFX d4 eler elles/n'l'm't' ppeler SFX d4 eler elles/n'l'm't' [^p].eler SFX d4 eter ette/n'l'm't's' jeter SFX d4 eter ette/n'l'm't's' [^j]eter SFX d4 eler elle/n'l'm't's' ppeler SFX d4 eler elle/n'l'm't's' [^p].eler SFX d4 er ions/n'l't' er SFX d4 er iez/n'l'm' er SFX d4 eter ettent/n'l'm't's' jeter SFX d4 eter ettent/n'l'm't's' [^j]eter SFX d4 eler ellent/n'l'm't's' ppeler SFX d4 eler ellent/n'l'm't's' [^p].eler SFX d4 er asse/n'q'j'l'm't' er SFX d4 er asses/n'q'l'm't' er SFX d4 er ât/n'q'l'm't's' er SFX d4 er assions/n'q'l't' er SFX d4 er assiez/n'q'l'm' er SFX d4 er assent/n'q'l'm't's' er SFX d5 Y 105 SFX d5 er er/m'q'd'm't's' er SFX d5 er ant/m'q'd'm't's' er SFX d5 er é/q' er SFX d5 eter ette/n'j'm't' jeter SFX d5 eter ette/n'j'm't' [^j]eter SFX d5 eler elle/n'j'm't' ppeler SFX d5 eler elle/n'j'm't' [^p].eler SFX d5 eter ettes/n'm't' jeter SFX d5 eter ettes/n'm't' [^j]eter SFX d5 eler elles/n'm't' ppeler SFX d5 eler elles/n'm't' [^p].eler SFX d5 eter ette/n'q'm't's' jeter SFX d5 eter ette/n'q'm't's' [^j]eter SFX d5 eler elle/n'q'm't's' ppeler SFX d5 eler elle/n'q'm't's' [^p].eler SFX d5 er ons/n't' er SFX d5 er ez/n'm' er SFX d5 eter ettent/n'q'm't's' jeter SFX d5 eter ettent/n'q'm't's' [^j]eter SFX d5 eler ellent/n'q'm't's' ppeler SFX d5 eler ellent/n'q'm't's' [^p].eler SFX d5 er ais/n'j'm't' er SFX d5 er ais/n'm't' er SFX d5 er ait/n'q'm't's' er SFX d5 er ions/n't' er SFX d5 er iez/n'm' er SFX d5 er aient/n'q'm't's' er SFX d5 er ai/n'j'm't' er SFX d5 er as/n'm't' er SFX d5 er a/n'q'm't's' er SFX d5 er âmes/n't' er SFX d5 er âtes/n'm' er SFX d5 er èrent/n'q'm't's' er SFX d5 eter etterai/n'j'm't' jeter SFX d5 eter etterai/n'j'm't' [^j]eter SFX d5 eler ellerai/n'j'm't' ppeler SFX d5 eler ellerai/n'j'm't' [^p].eler SFX d5 eter etteras/n'm't' jeter SFX d5 eter etteras/n'm't' [^j]eter SFX d5 eler elleras/n'm't' ppeler SFX d5 eler elleras/n'm't' [^p].eler SFX d5 eter ettera/n'q'm't's' jeter SFX d5 eter ettera/n'q'm't's' [^j]eter SFX d5 eler ellera/n'q'm't's' ppeler SFX d5 eler ellera/n'q'm't's' [^p].eler SFX d5 eter etterons/n't' jeter SFX d5 eter etterons/n't' [^j]eter SFX d5 eler ellerons/n't' ppeler SFX d5 eler ellerons/n't' [^p].eler SFX d5 eter etterez/n'm' jeter SFX d5 eter etterez/n'm' [^j]eter SFX d5 eler ellerez/n'm' ppeler SFX d5 eler ellerez/n'm' [^p].eler SFX d5 eter etteront/n'q'm't's' jeter SFX d5 eter etteront/n'q'm't's' [^j]eter SFX d5 eler elleront/n'q'm't's' ppeler SFX d5 eler elleront/n'q'm't's' [^p].eler SFX d5 eter etterais/n'j'm't' jeter SFX d5 eter etterais/n'j'm't' [^j]eter SFX d5 eler ellerais/n'j'm't' ppeler SFX d5 eler ellerais/n'j'm't' [^p].eler SFX d5 eter etterais/n'm't' jeter SFX d5 eter etterais/n'm't' [^j]eter SFX d5 eler ellerais/n'm't' ppeler SFX d5 eler ellerais/n'm't' [^p].eler SFX d5 eter etterait/n'q'm't's' jeter SFX d5 eter etterait/n'q'm't's' [^j]eter SFX d5 eler ellerait/n'q'm't's' ppeler SFX d5 eler ellerait/n'q'm't's' [^p].eler SFX d5 eter etterions/n't' jeter SFX d5 eter etterions/n't' [^j]eter SFX d5 eler ellerions/n't' ppeler SFX d5 eler ellerions/n't' [^p].eler SFX d5 eter etteriez/n'm' jeter SFX d5 eter etteriez/n'm' [^j]eter SFX d5 eler elleriez/n'm' ppeler SFX d5 eler elleriez/n'm' [^p].eler SFX d5 eter etteraient/n'q'm't's' jeter SFX d5 eter etteraient/n'q'm't's' [^j]eter SFX d5 eler elleraient/n'q'm't's' ppeler SFX d5 eler elleraient/n'q'm't's' [^p].eler SFX d5 eter ette/n'j'm't' jeter SFX d5 eter ette/n'j'm't' [^j]eter SFX d5 eler elle/n'j'm't' ppeler SFX d5 eler elle/n'j'm't' [^p].eler SFX d5 eter ettes/n'm't' jeter SFX d5 eter ettes/n'm't' [^j]eter SFX d5 eler elles/n'm't' ppeler SFX d5 eler elles/n'm't' [^p].eler SFX d5 eter ette/n'q'm't's' jeter SFX d5 eter ette/n'q'm't's' [^j]eter SFX d5 eler elle/n'q'm't's' ppeler SFX d5 eler elle/n'q'm't's' [^p].eler SFX d5 er ions/n't' er SFX d5 er iez/n'm' er SFX d5 eter ettent/n'q'm't's' jeter SFX d5 eter ettent/n'q'm't's' [^j]eter SFX d5 eler ellent/n'q'm't's' ppeler SFX d5 eler ellent/n'q'm't's' [^p].eler SFX d5 er asse/n'j'm't' er SFX d5 er asses/n'm't' er SFX d5 er ât/n'q'm't's' er SFX d5 er assions/n't' er SFX d5 er assiez/n'm' er SFX d5 er assent/n'q'm't's' er SFX a+ Y 3 SFX a+ er és/q' er SFX a+ er ée/q' er SFX a+ er ées/q' er SFX aA Y 38 SFX aA ller ller/n'q'd'm't' aller SFX aA ller llant/n'q'm't' aller SFX aA ller llé/q' aller SFX aA ller llés/q' aller SFX aA ller llée/q' aller SFX aA ller llées/q' aller SFX aA ller llons/n'q' aller SFX aA ller llez/n'q' aller SFX aA ller llais/n'q'j' aller SFX aA ller llais/n'q' aller SFX aA ller llait/n'q' aller SFX aA ller llons/n'q' aller SFX aA ller llez/n'q' aller SFX aA ller llaient/n'q' aller SFX aA ller llai/n'q'j' aller SFX aA ller llas/n'q' aller SFX aA ller lla/n'q' aller SFX aA ller llâmes/n'q' aller SFX aA ller llâtes/n'q' aller SFX aA ller llèrent/n'q' aller SFX aA ller ille/n'q'j' aller SFX aA ller illes/n'q' aller SFX aA ller ille/n'q' aller SFX aA ller llions/n'q' aller SFX aA ller lliez/n'q' aller SFX aA ller illent/n'q' aller SFX aA ller llasse/n'q'j' aller SFX aA ller llasses/n'q' aller SFX aA ller llât/n'q' aller SFX aA ller llassions/n'q' aller SFX aA ller llassiez/n'q' aller SFX aA ller llassent/n'q' aller SFX aA ller llons/n' aller SFX aA ller llons-y aller SFX aA ller llons-nous-en aller SFX aA ller llez/n' aller SFX aA ller llez-y aller SFX aA ller llez-vous-en aller SFX aB N 7 SFX aB ais ais vais SFX aB ais as vais SFX aB ais a vais SFX aB ais ont vais SFX aB ais a vais SFX aB ais as-y vais SFX aB ais a-t'en vais SFX aC Y 12 SFX aC rai rai/n'q'j' irai SFX aC rai ras/n'q' irai SFX aC rai ra/n'q' irai SFX aC rai rons/n'q' irai SFX aC rai rez/n'q' irai SFX aC rai ront/n'q' irai SFX aC rai rais/n'q'j' irai SFX aC rai rais/n'q' irai SFX aC rai rait/n'q' irai SFX aC rai rions/n'q' irai SFX aC rai riez/n'q' irai SFX aC rai raient/n'q' irai SFX aD Y 51 SFX aD voyer voyer/n'q'd'l'm't's' envoyer SFX aD voyer voyant/n'q'l'm't's' envoyer SFX aD voyer voyé/q' envoyer SFX aD voyer voyés/q' envoyer SFX aD voyer voyée/q' envoyer SFX aD voyer voyées/q' envoyer SFX aD voyer voie/n'q'j'l'm't' envoyer SFX aD voyer voies/n'q'l'm't' envoyer SFX aD voyer voie/n'q'l'm't's' envoyer SFX aD voyer voyons/n'q'l't' envoyer SFX aD voyer voyez/n'q'l'm' envoyer SFX aD voyer voient/n'q'l'm't's' envoyer SFX aD voyer voyais/n'q'j'l'm't' envoyer SFX aD voyer voyais/n'q'l'm't' envoyer SFX aD voyer voyait/n'q'l'm't's' envoyer SFX aD voyer voyions/n'q'l't' envoyer SFX aD voyer voyiez/n'q'l'm' envoyer SFX aD voyer voyaient/n'q'l'm't's' envoyer SFX aD voyer voyai/n'q'j'l'm't' envoyer SFX aD voyer voyas/n'q'l'm't' envoyer SFX aD voyer voya/n'q'l'm't's' envoyer SFX aD voyer voyâmes/n'q'l't' envoyer SFX aD voyer voyâtes/n'q'l'm' envoyer SFX aD voyer voyèrent/n'q'l'm't's' envoyer SFX aD voyer verrai/n'q'j'l'm't' envoyer SFX aD voyer verras/n'q'l'm't' envoyer SFX aD voyer verra/n'q'l'm't's' envoyer SFX aD voyer verrons/n'q'l't' envoyer SFX aD voyer verrez/n'q'l'm' envoyer SFX aD voyer verront/n'q'l'm't's' envoyer SFX aD voyer verrais/n'q'j'l'm't' envoyer SFX aD voyer verrais/n'q'l'm't' envoyer SFX aD voyer verrait/n'q'l'm't's' envoyer SFX aD voyer verrions/n'q'l't' envoyer SFX aD voyer verriez/n'q'l'm' envoyer SFX aD voyer verraient/n'q'l'm't's' envoyer SFX aD voyer voie/n'j'l'm't' envoyer SFX aD voyer voies/n'l'm't' envoyer SFX aD voyer voie/n'l'm't's' envoyer SFX aD voyer voyions/n'l't' envoyer SFX aD voyer voyiez/n'l'm' envoyer SFX aD voyer voient/n'l'm't's' envoyer SFX aD voyer voyasse/n'q'j'l'm't' envoyer SFX aD voyer voyasses/n'q'l'm't' envoyer SFX aD voyer voyât/n'q'l'm't's' envoyer SFX aD voyer voyassions/n'q'l't' envoyer SFX aD voyer voyassiez/n'q'l'm' envoyer SFX aD voyer voyassent/n'q'l'm't's' envoyer SFX aD voyer voie/n'l'm't' envoyer SFX aD voyer voyons/n'l' envoyer SFX aD voyer voyez/n'l'm' envoyer SFX aE Y 6 SFX aE direr direr/n'q'd'l'm't's' direr SFX aE direr dirant/n'q'l'm't's' direr SFX aE direr diré/q' direr SFX aE direr dirés/q' direr SFX aE direr dirée/q' direr SFX aE direr dirées/q' direr SFX aF N 16 SFX aF cerner cerner er SFX aF cerner cernant er SFX aF cerner cerné er SFX aF cerner cernés er SFX aF cerner cernée er SFX aF cerner cernées er SFX aF cerner cerne er SFX aF cerner cernent er SFX aF cerner cernait er SFX aF cerner cernaient er SFX aF cerner cerna er SFX aF cerner cernèrent er SFX aF cerner cernera er SFX aF cerner cerneront er SFX aF cerner cernerait er SFX aF cerner cerneraient er SFX aG Y 15 SFX aG er er/n'q'd'm't' er SFX aG er ant/n'q'm't' er SFX aG er é er SFX aG er e/n'q'm't' er SFX aG er ent/n'q'm't' er SFX aG er ait/n'q'm't' er SFX aG er aient/n'q'm't' er SFX aG er a/n'q'm't' er SFX aG er èrent/n'q'm't' er SFX aG er ât/n'q'm't' er SFX aG er assent/n'q'm't' er SFX aG er era/n'q'm't' er SFX aG er eront/n'q'm't' er SFX aG er erait/n'q'm't' er SFX aG er eraient/n'q'm't' er SFX aY N 51 SFX aY neler neler neler SFX aY neler nelant neler SFX aY neler nelé neler SFX aY neler nelés neler SFX aY neler nelée neler SFX aY neler nelées neler SFX aY éneler énelle éneler SFX aY éneler énelles éneler SFX aY éneler énelle éneler SFX aY neler nelons neler SFX aY neler nelez neler SFX aY éneler énellent éneler SFX aY neler nelais neler SFX aY neler nelais neler SFX aY neler nelait neler SFX aY neler nelions neler SFX aY neler neliez neler SFX aY neler nelaient neler SFX aY neler nelai neler SFX aY neler nelas neler SFX aY neler nela neler SFX aY neler nelâmes neler SFX aY neler nelâtes neler SFX aY neler nelèrent neler SFX aY éneler énellerai éneler SFX aY éneler énelleras éneler SFX aY éneler énellera éneler SFX aY éneler énellerons éneler SFX aY éneler énellerez éneler SFX aY éneler énelleront éneler SFX aY éneler énellerais éneler SFX aY éneler énellerais éneler SFX aY éneler énellerait éneler SFX aY éneler énellerions éneler SFX aY éneler énelleriez éneler SFX aY éneler énelleraient éneler SFX aY éneler énelle éneler SFX aY éneler énelles éneler SFX aY éneler énelle éneler SFX aY neler nelions neler SFX aY neler neliez neler SFX aY éneler énellent éneler SFX aY neler nelasse neler SFX aY neler nelasses neler SFX aY neler nelât neler SFX aY neler nelassions neler SFX aY neler nelassiez neler SFX aY neler nelassent neler SFX aY éneler énelle éneler SFX aY neler nelons neler SFX aY neler nelez neler SFX aZ N 51 SFX aZ teler teler teler SFX aZ teler telant teler SFX aZ teler telé teler SFX aZ teler telés teler SFX aZ teler telée teler SFX aZ teler telées teler SFX aZ ételer ételle ételer SFX aZ ételer ételles ételer SFX aZ ételer ételle ételer SFX aZ teler telons teler SFX aZ teler telez teler SFX aZ ételer étellent ételer SFX aZ teler telais teler SFX aZ teler telais teler SFX aZ teler telait teler SFX aZ teler telions teler SFX aZ teler teliez teler SFX aZ teler telaient teler SFX aZ teler telai teler SFX aZ teler telas teler SFX aZ teler tela teler SFX aZ teler telâmes teler SFX aZ teler telâtes teler SFX aZ teler telèrent teler SFX aZ ételer étellerai ételer SFX aZ ételer ételleras ételer SFX aZ ételer étellera ételer SFX aZ ételer étellerons ételer SFX aZ ételer étellerez ételer SFX aZ ételer ételleront ételer SFX aZ ételer étellerais ételer SFX aZ ételer étellerais ételer SFX aZ ételer étellerait ételer SFX aZ ételer étellerions ételer SFX aZ ételer ételleriez ételer SFX aZ ételer ételleraient ételer SFX aZ ételer ételle ételer SFX aZ ételer ételles ételer SFX aZ ételer ételle ételer SFX aZ teler telions teler SFX aZ teler teliez teler SFX aZ ételer étellent ételer SFX aZ teler telasse teler SFX aZ teler telasses teler SFX aZ teler telât teler SFX aZ teler telassions teler SFX aZ teler telassiez teler SFX aZ teler telassent teler SFX aZ ételer ételle ételer SFX aZ teler telons teler SFX aZ teler telez teler SFX dA Y 51 SFX dA peler peler/n'q'd'l'm't's' peler SFX dA peler pelant/n'q'l'm't's' peler SFX dA peler pelé/q' peler SFX dA peler pelés/q' peler SFX dA peler pelée/q' peler SFX dA peler pelées/q' peler SFX dA peler pelle/n'q'j'l't' peler SFX dA peler pelles/n'q'l'm' peler SFX dA peler pelle/n'q'l'm't's' peler SFX dA peler pelons/n'q'l't' peler SFX dA peler pelez/n'q'l'm' peler SFX dA peler pellent/n'q'l'm't's' peler SFX dA peler pelais/n'q'j'l't' peler SFX dA peler pelais/n'q'l'm' peler SFX dA peler pelait/n'q'l'm't's' peler SFX dA peler pelions/n'q'l't' peler SFX dA peler peliez/n'q'l'm' peler SFX dA peler pelaient/n'q'l'm't's' peler SFX dA peler pelai/n'q'j'l't' peler SFX dA peler pelas/n'q'l'm' peler SFX dA peler pela/n'q'l'm't's' peler SFX dA peler pelâmes/n'q'l't' peler SFX dA peler pelâtes/n'q'l'm' peler SFX dA peler pelèrent/n'q'l'm't's' peler SFX dA peler pellerai/n'q'j'l't' peler SFX dA peler pelleras/n'q'l'm' peler SFX dA peler pellera/n'q'l'm't's' peler SFX dA peler pellerons/n'q'l't' peler SFX dA peler pellerez/n'q'l'm' peler SFX dA peler pelleront/n'q'l'm't's' peler SFX dA peler pellerais/n'q'j'l't' peler SFX dA peler pellerais/n'q'l'm' peler SFX dA peler pellerait/n'q'l'm't's' peler SFX dA peler pellerions/n'q'l't' peler SFX dA peler pelleriez/n'q'l'm' peler SFX dA peler pelleraient/n'q'l'm't's' peler SFX dA peler pelle/n'j'l't' peler SFX dA peler pelles/n'l'm' peler SFX dA peler pelle/n'l'm't's' peler SFX dA peler pelions/n'l't' peler SFX dA peler peliez/n'l'm' peler SFX dA peler pellent/n'l'm't's' peler SFX dA peler pelasse/n'q'j'l't' peler SFX dA peler pelasses/n'q'l'm' peler SFX dA peler pelât/n'q'l'm't's' peler SFX dA peler pelassions/n'q'l't' peler SFX dA peler pelassiez/n'q'l'm' peler SFX dA peler pelassent/n'q'l'm't's' peler SFX dA peler pelle/n'l'm' peler SFX dA peler pelons/n'l' peler SFX dA peler pelez/n'l'm' peler SFX f0 Y 45 SFX f0 ir ir ir SFX f0 ir issant ir SFX f0 ir i ir SFX f0 ir is ir SFX f0 ir is ir SFX f0 ir it ir SFX f0 ir issons ir SFX f0 ir issez ir SFX f0 ir issent ir SFX f0 ir issais ir SFX f0 ir issais ir SFX f0 ir issait ir SFX f0 ir issions ir SFX f0 ir issiez ir SFX f0 ir issaient ir SFX f0 ir is ir SFX f0 ir is ir SFX f0 ir it ir SFX f0 ir îmes ir SFX f0 ir îtes ir SFX f0 ir irent ir SFX f0 ir irai ir SFX f0 ir iras ir SFX f0 ir ira ir SFX f0 ir irons ir SFX f0 ir irez ir SFX f0 ir iront ir SFX f0 ir irais ir SFX f0 ir irais ir SFX f0 ir irait ir SFX f0 ir irions ir SFX f0 ir iriez ir SFX f0 ir iraient ir SFX f0 ir isse ir SFX f0 ir isses ir SFX f0 ir isse ir SFX f0 ir issions ir SFX f0 ir issiez ir SFX f0 ir issent ir SFX f0 ir isse ir SFX f0 ir isses ir SFX f0 ir ît ir SFX f0 ir issions ir SFX f0 ir issiez ir SFX f0 ir issent ir SFX f1 Y 45 SFX f1 ir ir/n'q'd' ir SFX f1 ir issant/n'q' ir SFX f1 ir i/q' ir SFX f1 ir is/n'j' ir SFX f1 ir is/n' ir SFX f1 ir it/n'q' ir SFX f1 ir issons/n' ir SFX f1 ir issez/n' ir SFX f1 ir issent/n'q' ir SFX f1 ir issais/n'j' ir SFX f1 ir issais/n' ir SFX f1 ir issait/n'q' ir SFX f1 ir issions/n' ir SFX f1 ir issiez/n' ir SFX f1 ir issaient/n'q' ir SFX f1 ir is/n'j' ir SFX f1 ir is/n' ir SFX f1 ir it/n'q' ir SFX f1 ir îmes/n' ir SFX f1 ir îtes/n' ir SFX f1 ir irent/n'q' ir SFX f1 ir irai/n'j' ir SFX f1 ir iras/n' ir SFX f1 ir ira/n'q' ir SFX f1 ir irons/n' ir SFX f1 ir irez/n' ir SFX f1 ir iront/n'q' ir SFX f1 ir irais/n'j' ir SFX f1 ir irais/n' ir SFX f1 ir irait/n'q' ir SFX f1 ir irions/n' ir SFX f1 ir iriez/n' ir SFX f1 ir iraient/n'q' ir SFX f1 ir isse/n'j' ir SFX f1 ir isses/n' ir SFX f1 ir isse/n'q' ir SFX f1 ir issions/n' ir SFX f1 ir issiez/n' ir SFX f1 ir issent/n'q' ir SFX f1 ir isse/n'j' ir SFX f1 ir isses/n' ir SFX f1 ir ît/n'q' ir SFX f1 ir issions/n' ir SFX f1 ir issiez/n' ir SFX f1 ir issent/n'q' ir SFX f2 Y 45 SFX f2 ir ir/n'q'd'l'm't's' ir SFX f2 ir issant/n'q'l'm't's' ir SFX f2 ir i/q' ir SFX f2 ir is/n'q'j'l't' ir SFX f2 ir is/n'q'l'm' ir SFX f2 ir it/n'q'l'm't's' ir SFX f2 ir issons/n'q'l't' ir SFX f2 ir issez/n'q'l'm' ir SFX f2 ir issent/n'q'l'm't's' ir SFX f2 ir issais/n'q'j'l't' ir SFX f2 ir issais/n'q'l'm' ir SFX f2 ir issait/n'q'l'm't's' ir SFX f2 ir issions/n'q'l't' ir SFX f2 ir issiez/n'q'l'm' ir SFX f2 ir issaient/n'q'l'm't's' ir SFX f2 ir is/n'q'j'l't' ir SFX f2 ir is/n'q'l'm' ir SFX f2 ir it/n'q'l'm't's' ir SFX f2 ir îmes/n'q'l't' ir SFX f2 ir îtes/n'q'l'm' ir SFX f2 ir irent/n'q'l'm't's' ir SFX f2 ir irai/n'q'j'l't' ir SFX f2 ir iras/n'q'l'm't' ir SFX f2 ir ira/n'q'l'm't's' ir SFX f2 ir irons/n'q'l't' ir SFX f2 ir irez/n'q'l'm' ir SFX f2 ir iront/n'q'l'm't's' ir SFX f2 ir irais/n'q'j'l't' ir SFX f2 ir irais/n'q'l'm' ir SFX f2 ir irait/n'q'l'm't's' ir SFX f2 ir irions/n'q'l't' ir SFX f2 ir iriez/n'q'l'm' ir SFX f2 ir iraient/n'q'l'm't's' ir SFX f2 ir isse/n'j'l't' ir SFX f2 ir isses/n'l'm' ir SFX f2 ir isse/n'l'm't's' ir SFX f2 ir issions/n'l't' ir SFX f2 ir issiez/n'l'm' ir SFX f2 ir issent/n'l'm't's' ir SFX f2 ir isse/n'q'j'l't' ir SFX f2 ir isses/n'q'l'm' ir SFX f2 ir ît/n'q'l'm't's' ir SFX f2 ir issions/n'q'l't' ir SFX f2 ir issiez/n'q'l'm' ir SFX f2 ir issent/n'q'l'm't's' ir SFX f3 Y 45 SFX f3 ir ir/m't's' ir SFX f3 ir issant/m't's' ir SFX f3 ir i ir SFX f3 ir is/m' ir SFX f3 ir is/t' ir SFX f3 ir it/s' ir SFX f3 ir issons ir SFX f3 ir issez ir SFX f3 ir issent/s' ir SFX f3 ir issais/m' ir SFX f3 ir issais/t' ir SFX f3 ir issait/s' ir SFX f3 ir issions ir SFX f3 ir issiez ir SFX f3 ir issaient/s' ir SFX f3 ir is/m' ir SFX f3 ir is/t' ir SFX f3 ir it/s' ir SFX f3 ir îmes ir SFX f3 ir îtes ir SFX f3 ir irent/s' ir SFX f3 ir irai/m' ir SFX f3 ir iras/t' ir SFX f3 ir ira/s' ir SFX f3 ir irons ir SFX f3 ir irez ir SFX f3 ir iront/s' ir SFX f3 ir irais/m' ir SFX f3 ir irais/t' ir SFX f3 ir irait/s' ir SFX f3 ir irions ir SFX f3 ir iriez ir SFX f3 ir iraient/s' ir SFX f3 ir isse/m' ir SFX f3 ir isses/t' ir SFX f3 ir isse/s' ir SFX f3 ir issions ir SFX f3 ir issiez ir SFX f3 ir issent/s' ir SFX f3 ir isse/m' ir SFX f3 ir isses/t' ir SFX f3 ir ît/s' ir SFX f3 ir issions ir SFX f3 ir issiez ir SFX f3 ir issent/s' ir SFX f4 Y 45 SFX f4 ir ir/n'q'd'l'm't's' ir SFX f4 ir issant/n'q'l'm't's' ir SFX f4 ir i/q' ir SFX f4 ir is/n'q'j'l'm't' ir SFX f4 ir is/n'q'l'm't' ir SFX f4 ir it/n'q'l'm't's' ir SFX f4 ir issons/n'q'l't' ir SFX f4 ir issez/n'q'l'm' ir SFX f4 ir issent/n'q'l'm't's' ir SFX f4 ir issais/n'q'j'l'm't' ir SFX f4 ir issais/n'q'l'm't' ir SFX f4 ir issait/n'q'l'm't's' ir SFX f4 ir issions/n'q'l't' ir SFX f4 ir issiez/n'q'l'm' ir SFX f4 ir issaient/n'q'l'm't's' ir SFX f4 ir is/n'q'j'l'm't' ir SFX f4 ir is/n'q'l'm't' ir SFX f4 ir it/n'q'l'm't's' ir SFX f4 ir îmes/n'q'l't' ir SFX f4 ir îtes/n'q'l'm' ir SFX f4 ir irent/n'q'l'm't's' ir SFX f4 ir irai/n'q'j'l'm't' ir SFX f4 ir iras/n'q'l'm't' ir SFX f4 ir ira/n'q'l'm't's' ir SFX f4 ir irons/n'q'l't' ir SFX f4 ir irez/n'q'l'm' ir SFX f4 ir iront/n'q'l'm't's' ir SFX f4 ir irais/n'q'j'l'm't' ir SFX f4 ir irais/n'q'l'm't' ir SFX f4 ir irait/n'q'l'm't's' ir SFX f4 ir irions/n'q'l't' ir SFX f4 ir iriez/n'q'l'm' ir SFX f4 ir iraient/n'q'l'm't's' ir SFX f4 ir isse/n'j'l'm't' ir SFX f4 ir isses/n'l'm't' ir SFX f4 ir isse/n'l'm't's' ir SFX f4 ir issions/n'l't' ir SFX f4 ir issiez/n'l'm' ir SFX f4 ir issent/n'l'm't's' ir SFX f4 ir isse/n'q'j'l'm't' ir SFX f4 ir isses/n'q'l'm't' ir SFX f4 ir ît/n'q'l'm't's' ir SFX f4 ir issions/n'q'l't' ir SFX f4 ir issiez/n'q'l'm' ir SFX f4 ir issent/n'q'l'm't's' ir SFX f5 Y 45 SFX f5 ir ir/n'q'd'm't's' ir SFX f5 ir issant/n'q'm't's' ir SFX f5 ir i ir SFX f5 ir is/n'j'm't' ir SFX f5 ir is/n'm't' ir SFX f5 ir it/n'q'm't's' ir SFX f5 ir issons/n't' ir SFX f5 ir issez/n'm' ir SFX f5 ir issent/n'q'm't's' ir SFX f5 ir issais/n'j'm't' ir SFX f5 ir issais/n'm't' ir SFX f5 ir issait/n'q'm't's' ir SFX f5 ir issions/n't' ir SFX f5 ir issiez/n'm' ir SFX f5 ir issaient/n'q'm't's' ir SFX f5 ir is/n'j'm't' ir SFX f5 ir is/n'm't' ir SFX f5 ir it/n'q'm't's' ir SFX f5 ir îmes/n't' ir SFX f5 ir îtes/n'm' ir SFX f5 ir irent/n'q'm't's' ir SFX f5 ir irai/n'j'm't' ir SFX f5 ir iras/n'm't' ir SFX f5 ir ira/n'q'm't's' ir SFX f5 ir irons/n't' ir SFX f5 ir irez/n'm' ir SFX f5 ir iront/n'q'm't's' ir SFX f5 ir irais/n'j'm't' ir SFX f5 ir irais/n'm't' ir SFX f5 ir irait/n'q'm't's' ir SFX f5 ir irions/n't' ir SFX f5 ir iriez/n'm' ir SFX f5 ir iraient/n'q'm't's' ir SFX f5 ir isse/n'j'm't' ir SFX f5 ir isses/n'm't' ir SFX f5 ir isse/n'q'm't's' ir SFX f5 ir issions/n't' ir SFX f5 ir issiez/n'm' ir SFX f5 ir issent/n'q'm't's' ir SFX f5 ir isse/n'j'm't' ir SFX f5 ir isses/n'm't' ir SFX f5 ir ît/n'q'm't's' ir SFX f5 ir issions/n't' ir SFX f5 ir issiez/n'm' ir SFX f5 ir issent/n'q'm't's' ir SFX f+ Y 3 SFX f+ ir is/q' ir SFX f+ ir ie/q' ir SFX f+ ir ies/q' ir SFX fA N 51 SFX fA aïr aïr aïr SFX fA aïr aïssant aïr SFX fA aïr aï aïr SFX fA aïr aïs aïr SFX fA aïr aïe aïr SFX fA aïr aïes aïr SFX fA aïr ais aïr SFX fA aïr ais aïr SFX fA aïr ait aïr SFX fA aïr aïssons aïr SFX fA aïr aïssez aïr SFX fA aïr aïssent aïr SFX fA aïr aïssais aïr SFX fA aïr aïssais aïr SFX fA aïr aïssait aïr SFX fA aïr aïssions aïr SFX fA aïr aïssiez aïr SFX fA aïr aïssaient aïr SFX fA aïr aïs aïr SFX fA aïr aïs aïr SFX fA aïr aït aïr SFX fA aïr aïmes aïr SFX fA aïr aïtes aïr SFX fA aïr aïrent aïr SFX fA aïr aïrai aïr SFX fA aïr aïras aïr SFX fA aïr aïra aïr SFX fA aïr aïrons aïr SFX fA aïr aïrez aïr SFX fA aïr aïront aïr SFX fA aïr aïrais aïr SFX fA aïr aïrais aïr SFX fA aïr aïrait aïr SFX fA aïr aïrions aïr SFX fA aïr aïriez aïr SFX fA aïr aïraient aïr SFX fA aïr aïsse aïr SFX fA aïr aïsses aïr SFX fA aïr aïsse aïr SFX fA aïr aïssions aïr SFX fA aïr aïssiez aïr SFX fA aïr aïssent aïr SFX fA aïr aïsse aïr SFX fA aïr aïsses aïr SFX fA aïr aït aïr SFX fA aïr aïssions aïr SFX fA aïr aïssiez aïr SFX fA aïr aïssent aïr SFX fA aïr ais aïr SFX fA aïr aïssons aïr SFX fA aïr aïssez aïr SFX fB Y 36 SFX fB haïr haïr/s' aïr SFX fB haïr haïssant/s' aïr SFX fB haïr haï aïr SFX fB haïr haïs aïr SFX fB haïr haïe aïr SFX fB haïr haïes aïr SFX fB haïr hait/s' aïr SFX fB haïr haïssons aïr SFX fB haïr haïssez aïr SFX fB haïr haïssent/s' aïr SFX fB haïr haïssait/s' aïr SFX fB haïr haïssions aïr SFX fB haïr haïssiez aïr SFX fB haïr haïssaient/s' aïr SFX fB haïr haït/s' aïr SFX fB haïr haïmes aïr SFX fB haïr haïtes aïr SFX fB haïr haïrent/s' aïr SFX fB haïr haïra/s' aïr SFX fB haïr haïrons aïr SFX fB haïr haïrez aïr SFX fB haïr haïront/s' aïr SFX fB haïr haïrait/s' aïr SFX fB haïr haïrions aïr SFX fB haïr haïriez aïr SFX fB haïr haïraient/s' aïr SFX fB haïr haïsse/s' aïr SFX fB haïr haïssions aïr SFX fB haïr haïssiez aïr SFX fB haïr haïssent/s' aïr SFX fB haïr haït/s' aïr SFX fB haïr haïssions aïr SFX fB haïr haïssiez aïr SFX fB haïr haïssent/s' aïr SFX fB haïr haïssons-nous aïr SFX fB haïr haïssez-vous aïr SFX fC Y 12 SFX fC partir partir/n'q'd'l'm't's' impartir SFX fC partir partissant/n'q'l'm't's' impartir SFX fC partir parti/q' impartir SFX fC partir partis/q' impartir SFX fC partir partie/q' impartir SFX fC partir parties/q' impartir SFX fC partir partis/n'q'j'l't' impartir SFX fC partir partis/n'q'l'm' impartir SFX fC partir partit/n'q'l'm't's' impartir SFX fC partir partissons/n'q'l't' impartir SFX fC partir partissez/n'q'l'm' impartir SFX fC partir partissent/n'q'l'm't's' impartir SFX fD N 14 SFX fD ortir ortir sortir SFX fD ortir ortissant sortir SFX fD ortir ortit sortir SFX fD ortir ortissent sortir SFX fD ortir ortissait sortir SFX fD ortir ortissaient sortir SFX fD ortir ortira sortir SFX fD ortir ortiront sortir SFX fD ortir ortirait sortir SFX fD ortir ortiraient sortir SFX fD ortir ortisse sortir SFX fD ortir ortissent sortir SFX fD ortir ortît sortir SFX fD ortir ortissent sortir SFX fY N 51 SFX fY uïr uïr/s' uïr SFX fY uïr uïssant/m't's' uïr SFX fY uïr uï uïr SFX fY uïr uïs uïr SFX fY uïr uïe uïr SFX fY uïr uïes uïr SFX fY uïr uïs/m' uïr SFX fY uïr uïs/t' uïr SFX fY uïr uït/s' uïr SFX fY uïr uïssons uïr SFX fY uïr uïssez uïr SFX fY uïr uïssent/s' uïr SFX fY uïr uïssais/m' uïr SFX fY uïr uïssais/t' uïr SFX fY uïr uïssait/s' uïr SFX fY uïr uïssions uïr SFX fY uïr uïssiez uïr SFX fY uïr uïssaient/s' uïr SFX fY uïr uïs/m' uïr SFX fY uïr uïs/t' uïr SFX fY uïr uït/s' uïr SFX fY uïr uîmes uïr SFX fY uïr uîtes uïr SFX fY uïr uïrent/s' uïr SFX fY uïr uïrai/m' uïr SFX fY uïr uïras/t' uïr SFX fY uïr uïra/s' uïr SFX fY uïr uïrons uïr SFX fY uïr uïrez uïr SFX fY uïr uïront/s' uïr SFX fY uïr uïrais/m' uïr SFX fY uïr uïrais/t' uïr SFX fY uïr uïrait/s' uïr SFX fY uïr uïrions uïr SFX fY uïr uïriez uïr SFX fY uïr uïraient/s' uïr SFX fY uïr uïsse/m' uïr SFX fY uïr uïsses/t' uïr SFX fY uïr uïsse/s' uïr SFX fY uïr uïssions uïr SFX fY uïr uïssiez uïr SFX fY uïr uïssent/s' uïr SFX fY uïr uïsse/m' uïr SFX fY uïr uïsses/t' uïr SFX fY uïr uît/s' uïr SFX fY uïr uïssions uïr SFX fY uïr uïssiez uïr SFX fY uïr uïssent/s' uïr SFX fY uïr uis/t' uïr SFX fY uïr uïssons uïr SFX fY uïr uïssez uïr SFX fZ N 8 SFX fZ gir gir agir SFX fZ gir gissant agir SFX fZ gir git agir SFX fZ gir gissait agir SFX fZ gir gira agir SFX fZ gir girait agir SFX fZ gir gisse agir SFX fZ gir gît agir SFX i0 Y 45 SFX i0 enir enir/n'q'd' enir SFX i0 enir enant/n'q' enir SFX i0 enir enu/q' enir SFX i0 enir iens/n'j' enir SFX i0 enir iens/n' enir SFX i0 enir ient/n'q' enir SFX i0 enir enons/n' enir SFX i0 enir enez/n' enir SFX i0 enir iennent/n'q' enir SFX i0 enir enais/n'j' enir SFX i0 enir enais/n' enir SFX i0 enir enait/n'q' enir SFX i0 enir enions/n' enir SFX i0 enir eniez/n' enir SFX i0 enir enaient/n'q' enir SFX i0 enir ins/n'j' enir SFX i0 enir ins/n' enir SFX i0 enir int/n'q' enir SFX i0 enir înmes/n' enir SFX i0 enir întes/n' enir SFX i0 enir inrent/n'q' enir SFX i0 enir iendrai/n'j' enir SFX i0 enir iendras/n' enir SFX i0 enir iendra/n'q' enir SFX i0 enir iendrons/n' enir SFX i0 enir iendrez/n' enir SFX i0 enir iendront/n'q' enir SFX i0 enir iendrais/n'j' enir SFX i0 enir iendrais/n' enir SFX i0 enir iendrait/n'q' enir SFX i0 enir iendrions/n' enir SFX i0 enir iendriez/n' enir SFX i0 enir iendraient/n'q' enir SFX i0 enir ienne/n'j' enir SFX i0 enir iennes/n' enir SFX i0 enir ienne/n'q' enir SFX i0 enir enions/n' enir SFX i0 enir eniez/n' enir SFX i0 enir iennent/n'q' enir SFX i0 enir insse/n'j' enir SFX i0 enir insses/n' enir SFX i0 enir înt/n'q' enir SFX i0 enir inssions/n' enir SFX i0 enir inssiez/n' enir SFX i0 enir inssent/n'q' enir SFX i1 Y 45 SFX i1 enir enir/n'q'd'l'm't's' enir SFX i1 enir enant/n'q'l'm't's' enir SFX i1 enir enu/q' enir SFX i1 enir iens/n'q'j'l'm't' enir SFX i1 enir iens/n'q'l'm't' enir SFX i1 enir ient/n'q'l'm't's' enir SFX i1 enir enons/n'q'l't' enir SFX i1 enir enez/n'q'l'm' enir SFX i1 enir iennent/n'q'l'm't's' enir SFX i1 enir enais/n'q'j'l'm't' enir SFX i1 enir enais/n'q'l'm't' enir SFX i1 enir enait/n'q'l'm't's' enir SFX i1 enir enions/n'q'l't' enir SFX i1 enir eniez/n'q'l'm' enir SFX i1 enir enaient/n'q'l'm't's' enir SFX i1 enir ins/n'q'j'l'm't' enir SFX i1 enir ins/n'q'l'm't' enir SFX i1 enir int/n'q'l'm't's' enir SFX i1 enir înmes/n'q'l't' enir SFX i1 enir întes/n'q'l'm' enir SFX i1 enir inrent/n'q'l'm't's' enir SFX i1 enir iendrai/n'q'j'l'm't' enir SFX i1 enir iendras/n'q'l'm't' enir SFX i1 enir iendra/n'q'l'm't's' enir SFX i1 enir iendrons/n'q'l't' enir SFX i1 enir iendrez/n'q'l'm' enir SFX i1 enir iendront/n'q'l'm't's' enir SFX i1 enir iendrais/n'q'j'l'm't' enir SFX i1 enir iendrais/n'q'l'm't' enir SFX i1 enir iendrait/n'q'l'm't's' enir SFX i1 enir iendrions/n'q'l't' enir SFX i1 enir iendriez/n'q'l'm' enir SFX i1 enir iendraient/n'q'l'm't's' enir SFX i1 enir ienne/n'j'l'm't' enir SFX i1 enir iennes/n'l'm't' enir SFX i1 enir ienne/n'l'm't's' enir SFX i1 enir enions/n'l't' enir SFX i1 enir eniez/n'l'm' enir SFX i1 enir iennent/n'q'l'm't's' enir SFX i1 enir insse/n'q'j'l'm't' enir SFX i1 enir insses/n'q'l'm't' enir SFX i1 enir înt/n'q'l'm't's' enir SFX i1 enir inssions/n'q'l't' enir SFX i1 enir inssiez/n'q'l'm' enir SFX i1 enir inssent/n'q'l'm't's' enir SFX i2 Y 45 SFX i2 enir enir/m't's' enir SFX i2 enir enant/m't's' enir SFX i2 enir enu enir SFX i2 enir iens/m' enir SFX i2 enir iens/t' enir SFX i2 enir ient/s' enir SFX i2 enir enons enir SFX i2 enir enez enir SFX i2 enir iennent/s' enir SFX i2 enir enais/m' enir SFX i2 enir enais/t' enir SFX i2 enir enait/s' enir SFX i2 enir enions enir SFX i2 enir eniez enir SFX i2 enir enaient/s' enir SFX i2 enir ins/m' enir SFX i2 enir ins/t' enir SFX i2 enir int/s' enir SFX i2 enir înmes enir SFX i2 enir întes enir SFX i2 enir inrent/s' enir SFX i2 enir iendrai/m' enir SFX i2 enir iendras/t' enir SFX i2 enir iendra/s' enir SFX i2 enir iendrons enir SFX i2 enir iendrez enir SFX i2 enir iendront/s' enir SFX i2 enir iendrais/m' enir SFX i2 enir iendrais/t' enir SFX i2 enir iendrait/s' enir SFX i2 enir iendrions enir SFX i2 enir iendriez enir SFX i2 enir iendraient/s' enir SFX i2 enir ienne/m' enir SFX i2 enir iennes/t' enir SFX i2 enir ienne/s' enir SFX i2 enir enions enir SFX i2 enir eniez enir SFX i2 enir iennent/s' enir SFX i2 enir insse/m' enir SFX i2 enir insses/t' enir SFX i2 enir înt/s' enir SFX i2 enir inssions enir SFX i2 enir inssiez enir SFX i2 enir inssent/s' enir SFX i5 N 45 SFX i5 tir tir tir SFX i5 tir tant tir SFX i5 tir ti tir SFX i5 tir s tir SFX i5 tir s tir SFX i5 tir t tir SFX i5 tir tons tir SFX i5 tir tez tir SFX i5 tir tent tir SFX i5 tir tais tir SFX i5 tir tais tir SFX i5 tir tait tir SFX i5 tir tions tir SFX i5 tir tiez tir SFX i5 tir taient tir SFX i5 tir tis tir SFX i5 tir tis tir SFX i5 tir tit tir SFX i5 tir tîmes tir SFX i5 tir tîtes tir SFX i5 tir tirent tir SFX i5 tir tirai tir SFX i5 tir tiras tir SFX i5 tir tira tir SFX i5 tir tirons tir SFX i5 tir tirez tir SFX i5 tir tiront tir SFX i5 tir tirais tir SFX i5 tir tirais tir SFX i5 tir tirait tir SFX i5 tir tirions tir SFX i5 tir tiriez tir SFX i5 tir tiraient tir SFX i5 tir te tir SFX i5 tir tes tir SFX i5 tir te tir SFX i5 tir tions tir SFX i5 tir tiez tir SFX i5 tir tent tir SFX i5 tir tisse tir SFX i5 tir tisses tir SFX i5 tir tît tir SFX i5 tir tissions tir SFX i5 tir tissiez tir SFX i5 tir tissent tir SFX i+ Y 6 SFX i+ enir enus/q' enir SFX i+ enir enue/q' enir SFX i+ enir enues/q' enir SFX i+ tir tis/q' tir SFX i+ tir tie/q' tir SFX i+ tir ties/q' tir SFX iA Y 17 SFX iA dvenir dvenir/n'q'm't' venir SFX iA dvenir dvenant/n'q'm't' venir SFX iA dvenir dvenu/q' venir SFX iA dvenir dvient/n'q'm't' venir SFX iA dvenir dviennent/n'q' venir SFX iA dvenir dvenait/n'q'm't' venir SFX iA dvenir dvenaient/n'q' venir SFX iA dvenir dvint/n'q'm't' venir SFX iA dvenir dvinrent/n'q' venir SFX iA dvenir dviendra/n'q'm't' venir SFX iA dvenir dviendront/n'q' venir SFX iA dvenir dviendrait/n'q'm't' venir SFX iA dvenir dviendraient/n'q' venir SFX iA dvenir dvienne/n'q'm't' venir SFX iA dvenir dviennent/n'q' venir SFX iA dvenir dvînt/n'q'm't' venir SFX iA dvenir dvinssent/n'q' venir SFX iB Y 48 SFX iB partenir partenir/n'q'd'm't's' tenir SFX iB partenir partenant/n'q'm't's' tenir SFX iB partenir partenu/q' tenir SFX iB partenir partiens/n'j'm't' tenir SFX iB partenir partiens/n'm't' tenir SFX iB partenir partient/n'm't' tenir SFX iB partenir partenons/n't' tenir SFX iB partenir partenez/n'm' tenir SFX iB partenir partiennent/n'm't' tenir SFX iB partenir partenais/n'j'm't' tenir SFX iB partenir partenais/n'm't' tenir SFX iB partenir partenait/n'm't' tenir SFX iB partenir partenions/n't' tenir SFX iB partenir parteniez/n'm' tenir SFX iB partenir partenaient/n'm't's' tenir SFX iB partenir partins/n'j'm't' tenir SFX iB partenir partins/n'm't' tenir SFX iB partenir partint/n'm't' tenir SFX iB partenir partînmes/n't' tenir SFX iB partenir partîntes/n'm' tenir SFX iB partenir partinrent/n'm't's' tenir SFX iB partenir partiendrai/n'j'm't' tenir SFX iB partenir partiendras/n'm't' tenir SFX iB partenir partiendra/n'm't' tenir SFX iB partenir partiendrons/n't' tenir SFX iB partenir partiendrez/n'm' tenir SFX iB partenir partiendront/n'm't's' tenir SFX iB partenir partiendrais/n'j'm't' tenir SFX iB partenir partiendrais/n'm't' tenir SFX iB partenir partiendrait/n'm't' tenir SFX iB partenir partiendrions/n't' tenir SFX iB partenir partiendriez/n'm' tenir SFX iB partenir partiendraient/n'm't's' tenir SFX iB partenir partienne/n'j'm't' tenir SFX iB partenir partiennes/n'm't' tenir SFX iB partenir partienne/n'm't' tenir SFX iB partenir partenions/n't' tenir SFX iB partenir parteniez/n'm' tenir SFX iB partenir partiennent/n'm't's' tenir SFX iB partenir partinsse/n'j'm't' tenir SFX iB partenir partinsses/n'm't' tenir SFX iB partenir partînt/n'm't' tenir SFX iB partenir partinssions/n't' tenir SFX iB partenir partinssiez/n'm' tenir SFX iB partenir partinssent/n'm't's' tenir SFX iB partenir partiens/n'm't' tenir SFX iB partenir partenons/n' tenir SFX iB partenir partenez/n'm' tenir SFX iC Y 51 SFX iC rir rir/n'q'd'l'm't's' [vf]rir SFX iC rir rant/n'q'l'm't's' [vf]rir SFX iC rir ert/q' [vf]rir SFX iC rir erts/q' [vf]rir SFX iC rir erte/q' [vf]rir SFX iC rir ertes/q' [vf]rir SFX iC rir re/n'q'j'l'm't' [vf]rir SFX iC rir res/n'q'l'm't' [vf]rir SFX iC rir re/n'q'l'm't's' [vf]rir SFX iC rir rons/n'q'l't' [vf]rir SFX iC rir rez/n'q'l'm' [vf]rir SFX iC rir rent/n'q'l'm't's' [vf]rir SFX iC rir rais/n'q'j'l'm't' [vf]rir SFX iC rir rais/n'q'l'm't' [vf]rir SFX iC rir rait/n'q'l'm't's' [vf]rir SFX iC rir rions/n'q'l't' [vf]rir SFX iC rir riez/n'q'l'm' [vf]rir SFX iC rir raient/n'q'l'm't's' [vf]rir SFX iC rir ris/n'q'j'l'm't' [vf]rir SFX iC rir ris/n'q'l'm't' [vf]rir SFX iC rir rit/n'q'l'm't's' [vf]rir SFX iC rir rîmes/n'q'l't' [vf]rir SFX iC rir rîtes/n'q'l'm' [vf]rir SFX iC rir rirent/n'q'l'm't's' [vf]rir SFX iC rir rirai/n'q'j'l'm't' [vf]rir SFX iC rir riras/n'q'l'm't' [vf]rir SFX iC rir rira/n'q'l'm't's' [vf]rir SFX iC rir rirons/n'q'l't' [vf]rir SFX iC rir rirez/n'q'l'm' [vf]rir SFX iC rir riront/n'q'l'm't's' [vf]rir SFX iC rir rirais/n'q'j'l'm't' [vf]rir SFX iC rir rirais/n'q'l'm't' [vf]rir SFX iC rir rirait/n'q'l'm't's' [vf]rir SFX iC rir ririons/n'q'l't' [vf]rir SFX iC rir ririez/n'q'l'm' [vf]rir SFX iC rir riraient/n'q'l'm't's' [vf]rir SFX iC rir re/n'j'l'm't' [vf]rir SFX iC rir res/n'l'm't' [vf]rir SFX iC rir re/n'l'm't's' [vf]rir SFX iC rir rions/n'l't' [vf]rir SFX iC rir riez/n'l'm' [vf]rir SFX iC rir rent/n'q'l'm't's' [vf]rir SFX iC rir risse/n'q'j'l'm't' [vf]rir SFX iC rir risses/n'q'l'm't' [vf]rir SFX iC rir rît/n'q'l'm't's' [vf]rir SFX iC rir rissions/n'q'l't' [vf]rir SFX iC rir rissiez/n'q'l'm' [vf]rir SFX iC rir rissent/n'q'l'm't's' [vf]rir SFX iC rir re/n'l'm't' [vf]rir SFX iC rir rons/n'l' [vf]rir SFX iC rir rez/n'l'm' [vf]rir SFX iD Y 51 SFX iD courir courir/n'q'd' courir SFX iD courir courant/n'q' courir SFX iD courir couru courir SFX iD courir courus ccourir SFX iD courir courue ccourir SFX iD courir courues ccourir SFX iD courir cours/n'j' courir SFX iD courir cours/n' courir SFX iD courir court/n' courir SFX iD courir courons/n' courir SFX iD courir courez/n' courir SFX iD courir courent/n' courir SFX iD courir courais/n'j' courir SFX iD courir courais/n' courir SFX iD courir courait/n' courir SFX iD courir courions/n' courir SFX iD courir couriez/n' courir SFX iD courir couraient/n' courir SFX iD courir courus/n'j' courir SFX iD courir courus/n' courir SFX iD courir courut/n' courir SFX iD courir courûmes/n' courir SFX iD courir courûtes/n' courir SFX iD courir coururent/n' courir SFX iD courir courrai/n'j' courir SFX iD courir courras/n' courir SFX iD courir courra/n' courir SFX iD courir courrons/n' courir SFX iD courir courrez/n' courir SFX iD courir courront/n' courir SFX iD courir courrais/n'j' courir SFX iD courir courrais/n' courir SFX iD courir courrait/n' courir SFX iD courir courrions/n' courir SFX iD courir courriez/n' courir SFX iD courir courraient/n' courir SFX iD courir coure/n'j' courir SFX iD courir coures/n' courir SFX iD courir coure/n' courir SFX iD courir courions/n' courir SFX iD courir couriez/n' courir SFX iD courir courent/n' courir SFX iD courir courusse/n'j' courir SFX iD courir courusses/n' courir SFX iD courir courût/n' courir SFX iD courir courussions/n' courir SFX iD courir courussiez/n' courir SFX iD courir courussent/n' courir SFX iD courir cours/n' courir SFX iD courir courons/n' courir SFX iD courir courez/n' courir SFX iE Y 51 SFX iE ourir ourir/n'q'd'l' courir SFX iE ourir ourant/n'q' courir SFX iE ourir ouru/q' courir SFX iE ourir ourus/q' courir SFX iE ourir ourue/q' courir SFX iE ourir ourues/q' courir SFX iE ourir ours/n'q'j'l' courir SFX iE ourir ours/n'q'l' courir SFX iE ourir ourt/n'q'l' courir SFX iE ourir ourons/n'q'l' courir SFX iE ourir ourez/n'q'l' courir SFX iE ourir ourent/n'q'l' courir SFX iE ourir ourais/n'q'j'l' courir SFX iE ourir ourais/n'q'l' courir SFX iE ourir ourait/n'q'l' courir SFX iE ourir ourions/n'q'l' courir SFX iE ourir ouriez/n'q'l' courir SFX iE ourir ouraient/n'q'l' courir SFX iE ourir ourus/n'q'j'l' courir SFX iE ourir ourus/n'q'l' courir SFX iE ourir ourut/n'q'l' courir SFX iE ourir ourûmes/n'q'l' courir SFX iE ourir ourûtes/n'q'l' courir SFX iE ourir oururent/n'q'l' courir SFX iE ourir ourrai/n'q'j'l' courir SFX iE ourir ourras/n'q'l' courir SFX iE ourir ourra/n'q'l' courir SFX iE ourir ourrons/n'q'l' courir SFX iE ourir ourrez/n'q'l' courir SFX iE ourir ourront/n'q'l' courir SFX iE ourir ourrais/n'q'j'l' courir SFX iE ourir ourrais/n'q'l' courir SFX iE ourir ourrait/n'q'l' courir SFX iE ourir ourrions/n'q'l' courir SFX iE ourir ourriez/n'q'l' courir SFX iE ourir ourraient/n'q'l' courir SFX iE ourir oure/n'q'j'l' courir SFX iE ourir oures/n'q'l' courir SFX iE ourir oure/n'q'l' courir SFX iE ourir ourions/n'q'l' courir SFX iE ourir ouriez/n'q'l' courir SFX iE ourir ourent/n'q'l' courir SFX iE ourir ourusse/n'q'j'l' courir SFX iE ourir ourusses/n'q'l' courir SFX iE ourir ourût/n'q'l' courir SFX iE ourir ourussions/n'q'l' courir SFX iE ourir ourussiez/n'q'l' courir SFX iE ourir ourussent/n'q'l' courir SFX iE ourir ours/n'l' courir SFX iE ourir ourons/n'l' courir SFX iE ourir ourez/n'l' courir SFX iF N 51 SFX iF ervir ervir servir SFX iF ervir ervant servir SFX iF ervir ervi servir SFX iF ervir ervis servir SFX iF ervir ervie servir SFX iF ervir ervies servir SFX iF ervir ers servir SFX iF ervir ers servir SFX iF ervir ert servir SFX iF ervir ervons servir SFX iF ervir ervez servir SFX iF ervir ervent servir SFX iF ervir ervais servir SFX iF ervir ervais servir SFX iF ervir ervait servir SFX iF ervir ervions servir SFX iF ervir erviez servir SFX iF ervir ervaient servir SFX iF ervir ervis servir SFX iF ervir ervis servir SFX iF ervir ervit servir SFX iF ervir ervîmes servir SFX iF ervir ervîtes servir SFX iF ervir ervirent servir SFX iF ervir ervirai servir SFX iF ervir erviras servir SFX iF ervir ervira servir SFX iF ervir ervirons servir SFX iF ervir ervirez servir SFX iF ervir erviront servir SFX iF ervir ervirais servir SFX iF ervir ervirais servir SFX iF ervir ervirait servir SFX iF ervir ervirions servir SFX iF ervir erviriez servir SFX iF ervir erviraient servir SFX iF ervir erve servir SFX iF ervir erves servir SFX iF ervir erve servir SFX iF ervir ervions servir SFX iF ervir erviez servir SFX iF ervir ervent servir SFX iF ervir ervisse servir SFX iF ervir ervisses servir SFX iF ervir ervît servir SFX iF ervir ervissions servir SFX iF ervir ervissiez servir SFX iF ervir ervissent servir SFX iF ervir ers servir SFX iF ervir ervons servir SFX iF ervir ervez servir SFX iG N 51 SFX iG êtir êtir vêtir SFX iG êtir êtant vêtir SFX iG êtir êtu vêtir SFX iG êtir êtus vêtir SFX iG êtir êtue vêtir SFX iG êtir êtues vêtir SFX iG êtir êts vêtir SFX iG êtir êts vêtir SFX iG êtir êt vêtir SFX iG êtir êtons vêtir SFX iG êtir êtez vêtir SFX iG êtir êtont vêtir SFX iG êtir êtais vêtir SFX iG êtir êtais vêtir SFX iG êtir êtait vêtir SFX iG êtir êtions vêtir SFX iG êtir êtiez vêtir SFX iG êtir êtaient vêtir SFX iG êtir êtis vêtir SFX iG êtir êtis vêtir SFX iG êtir êtit vêtir SFX iG êtir êtîmes vêtir SFX iG êtir êtîtes vêtir SFX iG êtir êtirent vêtir SFX iG êtir êtirai vêtir SFX iG êtir êtiras vêtir SFX iG êtir êtira vêtir SFX iG êtir êtirons vêtir SFX iG êtir êtirez vêtir SFX iG êtir êtiront vêtir SFX iG êtir êtirais vêtir SFX iG êtir êtirais vêtir SFX iG êtir êtirait vêtir SFX iG êtir êtirions vêtir SFX iG êtir êtiriez vêtir SFX iG êtir êtiraient vêtir SFX iG êtir ête vêtir SFX iG êtir êtes vêtir SFX iG êtir ête vêtir SFX iG êtir êtions vêtir SFX iG êtir êtiez vêtir SFX iG êtir êtent vêtir SFX iG êtir êtisse vêtir SFX iG êtir êtisses vêtir SFX iG êtir êtît vêtir SFX iG êtir êtissions vêtir SFX iG êtir êtissiez vêtir SFX iG êtir êtissent vêtir SFX iG êtir êts vêtir SFX iG êtir êtons vêtir SFX iG êtir êtez vêtir SFX iI N 48 SFX iI ormir ormir dormir SFX iI ormir ormant dormir SFX iI ormir ormi dormir SFX iI ormir ors dormir SFX iI ormir ors dormir SFX iI ormir ort dormir SFX iI ormir ormons dormir SFX iI ormir ormez dormir SFX iI ormir orment dormir SFX iI ormir ormais dormir SFX iI ormir ormais dormir SFX iI ormir ormait dormir SFX iI ormir ormions dormir SFX iI ormir ormiez dormir SFX iI ormir ormaient dormir SFX iI ormir ormis dormir SFX iI ormir ormis dormir SFX iI ormir ormit dormir SFX iI ormir ormîmes dormir SFX iI ormir ormîtes dormir SFX iI ormir ormirent dormir SFX iI ormir ormirai dormir SFX iI ormir ormiras dormir SFX iI ormir ormira dormir SFX iI ormir ormirons dormir SFX iI ormir ormirez dormir SFX iI ormir ormiront dormir SFX iI ormir ormirais dormir SFX iI ormir ormirais dormir SFX iI ormir ormirait dormir SFX iI ormir ormirions dormir SFX iI ormir ormiriez dormir SFX iI ormir ormiraient dormir SFX iI ormir orme dormir SFX iI ormir ormes dormir SFX iI ormir orme dormir SFX iI ormir ormions dormir SFX iI ormir ormiez dormir SFX iI ormir orment dormir SFX iI ormir ormisse dormir SFX iI ormir ormisses dormir SFX iI ormir ormît dormir SFX iI ormir ormissions dormir SFX iI ormir ormissiez dormir SFX iI ormir ormissent dormir SFX iI ormir ors dormir SFX iI ormir ormons dormir SFX iI ormir ormez dormir SFX iJ Y 51 SFX iJ dormir dormir/n'q'd'l'm't's' dormir SFX iJ dormir dormant/n'q'l'm't's' dormir SFX iJ dormir dormi/q' dormir SFX iJ dormir dormis/q' dormir SFX iJ dormir dormie/q' dormir SFX iJ dormir dormies/q' dormir SFX iJ dormir dors/n'q'j'l'm't' dormir SFX iJ dormir dors/n'q'l'm't' dormir SFX iJ dormir dort/n'q'l'm't's' dormir SFX iJ dormir dormons/n'q'l't' dormir SFX iJ dormir dormez/n'q'l'm' dormir SFX iJ dormir dorment/n'q'l'm't's' dormir SFX iJ dormir dormais/n'q'j'l'm't' dormir SFX iJ dormir dormais/n'q'l'm't' dormir SFX iJ dormir dormait/n'q'l'm't's' dormir SFX iJ dormir dormions/n'q'l't' dormir SFX iJ dormir dormiez/n'q'l'm' dormir SFX iJ dormir dormaient/n'q'l'm't's' dormir SFX iJ dormir dormis/n'q'j'l'm't' dormir SFX iJ dormir dormis/n'q'l'm't' dormir SFX iJ dormir dormit/n'q'l'm't's' dormir SFX iJ dormir dormîmes/n'q'l't' dormir SFX iJ dormir dormîtes/n'q'l'm' dormir SFX iJ dormir dormirent/n'q'l'm't's' dormir SFX iJ dormir dormirai/n'q'j'l'm't' dormir SFX iJ dormir dormiras/n'q'l'm't' dormir SFX iJ dormir dormira/n'q'l'm't's' dormir SFX iJ dormir dormirons/n'q'l't' dormir SFX iJ dormir dormirez/n'q'l'm' dormir SFX iJ dormir dormiront/n'q'l'm't's' dormir SFX iJ dormir dormirais/n'q'j'l'm't' dormir SFX iJ dormir dormirais/n'q'l'm't' dormir SFX iJ dormir dormirait/n'q'l'm't's' dormir SFX iJ dormir dormirions/n'q'l't' dormir SFX iJ dormir dormiriez/n'q'l'm' dormir SFX iJ dormir dormiraient/n'q'l'm't's' dormir SFX iJ dormir dorme/n'j'l'm't' dormir SFX iJ dormir dormes/n'l'm't' dormir SFX iJ dormir dorme/n'l'm't's' dormir SFX iJ dormir dormions/n'l't' dormir SFX iJ dormir dormiez/n'l'm' dormir SFX iJ dormir dorment/n'l'm't's' dormir SFX iJ dormir dormisse/n'q'j'l'm't' dormir SFX iJ dormir dormisses/n'q'l'm't' dormir SFX iJ dormir dormît/n'q'l'm't's' dormir SFX iJ dormir dormissions/n'q'l't' dormir SFX iJ dormir dormissiez/n'q'l'm' dormir SFX iJ dormir dormissent/n'q'l'm't's' dormir SFX iJ dormir dors/n'l'm't' dormir SFX iJ dormir dormons/n'l' dormir SFX iJ dormir dormez/n'l'm' dormir SFX iK Y 50 SFX iK quérir quérir/n'q'd'l'm't's' quérir SFX iK quérir quérant/n'q'l'm't's' quérir SFX iK quérir quis/q' quérir SFX iK quérir quise/q' quérir SFX iK quérir quises/q' quérir SFX iK quérir quiers/n'q'j'l'm't' quérir SFX iK quérir quiers/n'q'l'm't' quérir SFX iK quérir quiert/n'q'l'm't's' quérir SFX iK quérir quérons/n'q'l't' quérir SFX iK quérir quérez/n'q'l'm' quérir SFX iK quérir quièrent/n'q'l'm't's' quérir SFX iK quérir quérais/n'q'j'l'm't' quérir SFX iK quérir quérais/n'q'l'm't' quérir SFX iK quérir quérait/n'q'l'm't's' quérir SFX iK quérir quérions/n'q'l't' quérir SFX iK quérir quériez/n'q'l'm' quérir SFX iK quérir quéraient/n'q'l'm't's' quérir SFX iK quérir quis/n'q'j'l'm't' quérir SFX iK quérir quis/n'q'l'm't' quérir SFX iK quérir quit/n'q'l'm't's' quérir SFX iK quérir quîmes/n'q'l't' quérir SFX iK quérir quîtes/n'q'l'm' quérir SFX iK quérir quirent/n'q'l'm't's' quérir SFX iK quérir querrai/n'q'j'l'm't' quérir SFX iK quérir querras/n'q'l'm't' quérir SFX iK quérir querra/n'q'l'm't's' quérir SFX iK quérir querrons/n'q'l't' quérir SFX iK quérir querrez/n'q'l'm' quérir SFX iK quérir querront/n'q'l'm't's' quérir SFX iK quérir querrais/n'q'j'l'm't' quérir SFX iK quérir querrais/n'q'l'm't' quérir SFX iK quérir querrait/n'q'l'm't's' quérir SFX iK quérir querrions/n'q'l't' quérir SFX iK quérir querriez/n'q'l'm' quérir SFX iK quérir querraient/n'q'l'm't's' quérir SFX iK quérir quière/n'j'l'm't' quérir SFX iK quérir quières/n'l'm't' quérir SFX iK quérir quière/n'l'm't's' quérir SFX iK quérir quérions/n'l't' quérir SFX iK quérir quériez/n'l'm' quérir SFX iK quérir quièrent/n'q'l'm't's' quérir SFX iK quérir quisse/n'q'j'l'm't' quérir SFX iK quérir quisses/n'q'l'm't' quérir SFX iK quérir quît/n'q'l'm't's' quérir SFX iK quérir quissions/n'q'l't' quérir SFX iK quérir quissiez/n'q'l'm' quérir SFX iK quérir quissent/n'q'l'm't's' quérir SFX iK quérir quiers/n'l'm't' quérir SFX iK quérir quérons/n'l' quérir SFX iK quérir quérez/n'l'm' quérir SFX iM Y 50 SFX iM quérir quérir/m't's' quérir SFX iM quérir quérant/m't's' quérir SFX iM quérir quis quérir SFX iM quérir quise quérir SFX iM quérir quises quérir SFX iM quérir quiers/m' quérir SFX iM quérir quiers/t' quérir SFX iM quérir quiert/s' quérir SFX iM quérir quérons quérir SFX iM quérir quérez quérir SFX iM quérir quièrent/s' quérir SFX iM quérir quérais/m' quérir SFX iM quérir quérais/t' quérir SFX iM quérir quérait/s' quérir SFX iM quérir quérions quérir SFX iM quérir quériez quérir SFX iM quérir quéraient/s' quérir SFX iM quérir quis/m' quérir SFX iM quérir quis/t' quérir SFX iM quérir quit/s' quérir SFX iM quérir quîmes quérir SFX iM quérir quîtes quérir SFX iM quérir quirent/s' quérir SFX iM quérir querrai/m' quérir SFX iM quérir querras/t' quérir SFX iM quérir querra/s' quérir SFX iM quérir querrons quérir SFX iM quérir querrez quérir SFX iM quérir querront/s' quérir SFX iM quérir querrais/m' quérir SFX iM quérir querrais/t' quérir SFX iM quérir querrait/s' quérir SFX iM quérir querrions quérir SFX iM quérir querriez quérir SFX iM quérir querraient/s' quérir SFX iM quérir quière/m' quérir SFX iM quérir quières/t' quérir SFX iM quérir quière/s' quérir SFX iM quérir quérions quérir SFX iM quérir quériez quérir SFX iM quérir quièrent/s' quérir SFX iM quérir quisse/m' quérir SFX iM quérir quisses/t' quérir SFX iM quérir quît/s' quérir SFX iM quérir quissions quérir SFX iM quérir quissiez quérir SFX iM quérir quissent/s' quérir SFX iM quérir quiers/t' quérir SFX iM quérir quérons quérir SFX iM quérir quérez quérir SFX iN N 48 SFX iN uir uir fuir SFX iN uir uyant fuir SFX iN uir ui fuir SFX iN uir uis fuir SFX iN uir uis fuir SFX iN uir uit fuir SFX iN uir uyons fuir SFX iN uir uyez fuir SFX iN uir uient fuir SFX iN uir uyais fuir SFX iN uir uyais fuir SFX iN uir uyait fuir SFX iN uir uyions fuir SFX iN uir uyiez fuir SFX iN uir uyaient fuir SFX iN uir uis fuir SFX iN uir uis fuir SFX iN uir uit fuir SFX iN uir uîmes fuir SFX iN uir uîtes fuir SFX iN uir uirent fuir SFX iN uir uirai fuir SFX iN uir uiras fuir SFX iN uir uira fuir SFX iN uir uirons fuir SFX iN uir uirez fuir SFX iN uir uiront fuir SFX iN uir uirais fuir SFX iN uir uirais fuir SFX iN uir uirait fuir SFX iN uir uirions fuir SFX iN uir uiriez fuir SFX iN uir uiraient fuir SFX iN uir uie fuir SFX iN uir uies fuir SFX iN uir uie fuir SFX iN uir uyions fuir SFX iN uir uyiez fuir SFX iN uir uient fuir SFX iN uir uisse fuir SFX iN uir uisses fuir SFX iN uir uît fuir SFX iN uir uissions fuir SFX iN uir uissiez fuir SFX iN uir uissent fuir SFX iN uir uis fuir SFX iN uir uyons fuir SFX iN uir uyez fuir SFX iO Y 51 SFX iO fuir fuir/m't's' enfuir SFX iO fuir fuyant/m't's' enfuir SFX iO fuir fui enfuir SFX iO fuir fuis enfuir SFX iO fuir fuie enfuir SFX iO fuir fuies enfuir SFX iO fuir fuis/m' enfuir SFX iO fuir fuis/t' enfuir SFX iO fuir fuit/s' enfuir SFX iO fuir fuyons enfuir SFX iO fuir fuyez enfuir SFX iO fuir fuient/s' enfuir SFX iO fuir fuyais/m' enfuir SFX iO fuir fuyais/t' enfuir SFX iO fuir fuyait/s' enfuir SFX iO fuir fuyions enfuir SFX iO fuir fuyiez enfuir SFX iO fuir fuyaient/s' enfuir SFX iO fuir fuis/m' enfuir SFX iO fuir fuis/t' enfuir SFX iO fuir fuit/s' enfuir SFX iO fuir fuîmes enfuir SFX iO fuir fuîtes enfuir SFX iO fuir fuirent/s' enfuir SFX iO fuir fuirai/m' enfuir SFX iO fuir fuiras/t' enfuir SFX iO fuir fuira/s' enfuir SFX iO fuir fuirons enfuir SFX iO fuir fuirez enfuir SFX iO fuir fuiront/s' enfuir SFX iO fuir fuirais/m' enfuir SFX iO fuir fuirais/t' enfuir SFX iO fuir fuirait/s' enfuir SFX iO fuir fuirions enfuir SFX iO fuir fuiriez enfuir SFX iO fuir fuiraient/s' enfuir SFX iO fuir fuie/m' enfuir SFX iO fuir fuies/t' enfuir SFX iO fuir fuie/s' enfuir SFX iO fuir fuyions enfuir SFX iO fuir fuyiez enfuir SFX iO fuir fuient/s' enfuir SFX iO fuir fuisse/m' enfuir SFX iO fuir fuisses/t' enfuir SFX iO fuir fuît/s' enfuir SFX iO fuir fuissions enfuir SFX iO fuir fuissiez enfuir SFX iO fuir fuissent/s' enfuir SFX iO fuir fuis/t' enfuir SFX iO fuir fuyons enfuir SFX iO fuir fuyez enfuir SFX iP N 51 SFX iP ourir ourir mourir SFX iP ourir ourant mourir SFX iP ourir ort mourir SFX iP ourir orts mourir SFX iP ourir orte mourir SFX iP ourir ortes mourir SFX iP ourir eurs mourir SFX iP ourir eurs mourir SFX iP ourir eurt mourir SFX iP ourir ourons mourir SFX iP ourir ourez mourir SFX iP ourir eurent mourir SFX iP ourir ourais mourir SFX iP ourir ourais mourir SFX iP ourir ourait mourir SFX iP ourir ourions mourir SFX iP ourir ouriez mourir SFX iP ourir ouraient mourir SFX iP ourir ourus mourir SFX iP ourir ourus mourir SFX iP ourir ourut mourir SFX iP ourir ourûmes mourir SFX iP ourir ourûtes mourir SFX iP ourir oururent mourir SFX iP ourir ourrai mourir SFX iP ourir ourras mourir SFX iP ourir ourra mourir SFX iP ourir ourrons mourir SFX iP ourir ourrez mourir SFX iP ourir ourront mourir SFX iP ourir ourrais mourir SFX iP ourir ourrais mourir SFX iP ourir ourrait mourir SFX iP ourir ourrions mourir SFX iP ourir ourriez mourir SFX iP ourir ourraient mourir SFX iP ourir eure mourir SFX iP ourir eures mourir SFX iP ourir eure mourir SFX iP ourir ourions mourir SFX iP ourir ouriez mourir SFX iP ourir eurent mourir SFX iP ourir ourusse mourir SFX iP ourir ourusses mourir SFX iP ourir ourût mourir SFX iP ourir ourussions mourir SFX iP ourir ourussiez mourir SFX iP ourir ourussent mourir SFX iP ourir eurs mourir SFX iP ourir ourons mourir SFX iP ourir ourez mourir SFX iQ N 51 SFX iQ ouillir ouillir bouillir SFX iQ ouillir ouillant bouillir SFX iQ ouillir ouilli bouillir SFX iQ ouillir ouillis bouillir SFX iQ ouillir ouillie bouillir SFX iQ ouillir ouillies bouillir SFX iQ ouillir ous bouillir SFX iQ ouillir ous bouillir SFX iQ ouillir out bouillir SFX iQ ouillir ouillons bouillir SFX iQ ouillir ouillez bouillir SFX iQ ouillir ouillent bouillir SFX iQ ouillir ouillais bouillir SFX iQ ouillir ouillais bouillir SFX iQ ouillir ouillait bouillir SFX iQ ouillir ouillions bouillir SFX iQ ouillir ouilliez bouillir SFX iQ ouillir ouillaient bouillir SFX iQ ouillir ouillis bouillir SFX iQ ouillir ouillis bouillir SFX iQ ouillir ouillit bouillir SFX iQ ouillir ouillîmes bouillir SFX iQ ouillir ouillîtes bouillir SFX iQ ouillir ouillirent bouillir SFX iQ ouillir ouillirai bouillir SFX iQ ouillir ouilliras bouillir SFX iQ ouillir ouillira bouillir SFX iQ ouillir ouillirons bouillir SFX iQ ouillir ouillirez bouillir SFX iQ ouillir ouilliront bouillir SFX iQ ouillir ouillirais bouillir SFX iQ ouillir ouillirais bouillir SFX iQ ouillir ouillirait bouillir SFX iQ ouillir ouillirions bouillir SFX iQ ouillir ouilliriez bouillir SFX iQ ouillir ouilliraient bouillir SFX iQ ouillir ouille bouillir SFX iQ ouillir ouilles bouillir SFX iQ ouillir ouille bouillir SFX iQ ouillir ouillions bouillir SFX iQ ouillir ouilliez bouillir SFX iQ ouillir ouillent bouillir SFX iQ ouillir ouillisse bouillir SFX iQ ouillir ouillisses bouillir SFX iQ ouillir ouillît bouillir SFX iQ ouillir ouillissions bouillir SFX iQ ouillir ouillissiez bouillir SFX iQ ouillir ouillissent bouillir SFX iQ ouillir ous bouillir SFX iQ ouillir ouillons bouillir SFX iQ ouillir ouillez bouillir SFX iR Y 54 SFX iR ueillir ueillir/n'q'd'l'm't's' cueillir SFX iR ueillir ueillant/n'q'l'm't's' cueillir SFX iR ueillir ueilli/q' cueillir SFX iR ueillir ueillis/q' cueillir SFX iR ueillir ueillie/q' cueillir SFX iR ueillir ueillies/q' cueillir SFX iR ueillir ueille/n'q'j'l't' cueillir SFX iR ueillir ueilles/n'q'l'm' cueillir SFX iR ueillir ueille/n'q'l'm't's' cueillir SFX iR ueillir ueillons/n'q'l't' cueillir SFX iR ueillir ueillez/n'q'l'm' cueillir SFX iR ueillir ueillent/n'q'l'm't's' cueillir SFX iR ueillir ueillais/n'q'j'l't' cueillir SFX iR ueillir ueillais/n'q'l'm' cueillir SFX iR ueillir ueillait/n'q'l'm't's' cueillir SFX iR ueillir ueillions/n'q'l't' cueillir SFX iR ueillir ueilliez/n'q'l'm' cueillir SFX iR ueillir ueillaient/n'q'l'm't's' cueillir SFX iR ueillir ueillis/n'q'j'l't' cueillir SFX iR ueillir ueillis/n'q'l'm' cueillir SFX iR ueillir ueillit/n'q'l'm't's' cueillir SFX iR ueillir ueillîmes/n'q'l't' cueillir SFX iR ueillir ueillîtes/n'q'l'm' cueillir SFX iR ueillir ueillirent/n'q'l'm't's' cueillir SFX iR ueillir ueillerai/n'q'j'l't' cueillir SFX iR ueillir ueilleras/n'q'l'm' cueillir SFX iR ueillir ueillera/n'q'l'm't's' cueillir SFX iR ueillir ueillerons/n'q'l't' cueillir SFX iR ueillir ueillerez/n'q'l'm' cueillir SFX iR ueillir ueilleront/n'q'l'm't's' cueillir SFX iR ueillir ueillerais/n'q'j'l't' cueillir SFX iR ueillir ueillerais/n'q'l'm' cueillir SFX iR ueillir ueillerait/n'q'l'm't's' cueillir SFX iR ueillir ueillerions/n'q'l't' cueillir SFX iR ueillir ueilleriez/n'q'l'm' cueillir SFX iR ueillir ueilleraient/n'q'l'm't's' cueillir SFX iR ueillir ueille/n'j'l't' cueillir SFX iR ueillir ueilles/n'l'm' cueillir SFX iR ueillir ueille/n'l'm't's' cueillir SFX iR ueillir ueillions/n'l't' cueillir SFX iR ueillir ueilliez/n'l'm' cueillir SFX iR ueillir ueillent/n'q'l'm't's' cueillir SFX iR ueillir ueillisse/n'q'j'l't' cueillir SFX iR ueillir ueillisses/n'q'l'm' cueillir SFX iR ueillir ueillît/n'q'l'm't's' cueillir SFX iR ueillir ueillissions/n'q'l't' cueillir SFX iR ueillir ueillissiez/n'q'l'm' cueillir SFX iR ueillir ueillissent/n'q'l'm't's' cueillir SFX iR ueillir ueilles/n'l'm' cueillir SFX iR ueillir ueilles recueillir SFX iR ueillir ueillons/n'l' cueillir SFX iR ueillir ueillons recueillir SFX iR ueillir ueillez/n'l'm' cueillir SFX iR ueillir ueillez recueillir SFX iS N 48 SFX iS aillir aillir aillir SFX iS aillir aillant aillir SFX iS aillir ailli aillir SFX iS aillir aille aillir SFX iS aillir ailles aillir SFX iS aillir aille aillir SFX iS aillir aillons aillir SFX iS aillir aillez aillir SFX iS aillir aillent aillir SFX iS aillir aillais aillir SFX iS aillir aillais aillir SFX iS aillir aillait aillir SFX iS aillir aillions aillir SFX iS aillir ailliez aillir SFX iS aillir aillaient aillir SFX iS aillir aillis aillir SFX iS aillir aillis aillir SFX iS aillir aillit aillir SFX iS aillir aillîmes aillir SFX iS aillir aillîtes aillir SFX iS aillir aillirent aillir SFX iS aillir aillirai aillir SFX iS aillir ailliras aillir SFX iS aillir aillira aillir SFX iS aillir aillirons aillir SFX iS aillir aillirez aillir SFX iS aillir ailliront aillir SFX iS aillir aillirais aillir SFX iS aillir aillirais aillir SFX iS aillir aillirait aillir SFX iS aillir aillirions aillir SFX iS aillir ailliriez aillir SFX iS aillir ailliraient aillir SFX iS aillir aille aillir SFX iS aillir ailles aillir SFX iS aillir aille aillir SFX iS aillir aillions aillir SFX iS aillir ailliez aillir SFX iS aillir aillent aillir SFX iS aillir aillisse aillir SFX iS aillir aillisses aillir SFX iS aillir aillît aillir SFX iS aillir aillissions aillir SFX iS aillir aillissiez aillir SFX iS aillir aillissent aillir SFX iS aillir aille aillir SFX iS aillir aillons aillir SFX iS aillir aillez aillir SFX iT Y 51 SFX iT saillir saillir/n'q'd'l'm't's' aillir SFX iT saillir saillant/n'q'l'm't's' aillir SFX iT saillir sailli/q' aillir SFX iT saillir saillis/q' aillir SFX iT saillir saillie/q' aillir SFX iT saillir saillies/q' aillir SFX iT saillir saille/n'q'j'l'm't' aillir SFX iT saillir sailles/n'q'l'm't' aillir SFX iT saillir saille/n'q'l'm't's' aillir SFX iT saillir saillons/n'q'l't' aillir SFX iT saillir saillez/n'q'l'm' aillir SFX iT saillir saillent/n'q'l'm't's' aillir SFX iT saillir saillais/n'q'j'l'm't' aillir SFX iT saillir saillais/n'q'l'm't' aillir SFX iT saillir saillait/n'q'l'm't's' aillir SFX iT saillir saillions/n'q'l't' aillir SFX iT saillir sailliez/n'q'l'm' aillir SFX iT saillir saillaient/n'q'l'm't's' aillir SFX iT saillir saillis/n'q'j'l'm't' aillir SFX iT saillir saillis/n'q'l'm't' aillir SFX iT saillir saillit/n'q'l'm't's' aillir SFX iT saillir saillîmes/n'q'l't' aillir SFX iT saillir saillîtes/n'q'l'm' aillir SFX iT saillir saillirent/n'q'l'm't's' aillir SFX iT saillir saillirai/n'q'j'l'm't' aillir SFX iT saillir sailliras/n'q'l'm't' aillir SFX iT saillir saillira/n'q'l'm't's' aillir SFX iT saillir saillirons/n'q'l't' aillir SFX iT saillir saillirez/n'q'l'm' aillir SFX iT saillir sailliront/n'q'l'm't's' aillir SFX iT saillir saillirais/n'q'j'l'm't' aillir SFX iT saillir saillirais/n'q'l'm't' aillir SFX iT saillir saillirait/n'q'l'm't's' aillir SFX iT saillir saillirions/n'q'l't' aillir SFX iT saillir sailliriez/n'q'l'm' aillir SFX iT saillir sailliraient/n'q'l'm't's' aillir SFX iT saillir saille/n'j'l'm't' aillir SFX iT saillir sailles/n'l'm't' aillir SFX iT saillir saille/n'l'm't's' aillir SFX iT saillir saillions/n'l't' aillir SFX iT saillir sailliez/n'l'm' aillir SFX iT saillir saillent/n'l'm't's' aillir SFX iT saillir saillisse/n'q'j'l'm't' aillir SFX iT saillir saillisses/n'q'l'm't' aillir SFX iT saillir saillît/n'q'l'm't's' aillir SFX iT saillir saillissions/n'q'l't' aillir SFX iT saillir saillissiez/n'q'l'm' aillir SFX iT saillir saillissent/n'q'l'm't's' aillir SFX iT saillir saille/n'l'm' aillir SFX iT saillir saillons/n'l' aillir SFX iT saillir saillez/n'l'm' aillir SFX iU N 48 SFX iU aillir aillir faillir SFX iU aillir aillant faillir SFX iU aillir ailli faillir SFX iU aillir ux faillir SFX iU aillir ux faillir SFX iU aillir ut faillir SFX iU aillir aillons faillir SFX iU aillir aillez faillir SFX iU aillir aillent faillir SFX iU aillir aillais faillir SFX iU aillir aillais faillir SFX iU aillir aillait faillir SFX iU aillir aillions faillir SFX iU aillir ailliez faillir SFX iU aillir aillaient faillir SFX iU aillir aillis faillir SFX iU aillir aillis faillir SFX iU aillir aillit faillir SFX iU aillir aillîmes faillir SFX iU aillir aillîtes faillir SFX iU aillir aillirent faillir SFX iU aillir aillirai faillir SFX iU aillir ailliras faillir SFX iU aillir aillira faillir SFX iU aillir aillirons faillir SFX iU aillir aillirez faillir SFX iU aillir ailliront faillir SFX iU aillir aillirais faillir SFX iU aillir aillirais faillir SFX iU aillir aillirait faillir SFX iU aillir aillirions faillir SFX iU aillir ailliriez faillir SFX iU aillir ailliraient faillir SFX iU aillir aille faillir SFX iU aillir ailles faillir SFX iU aillir aille faillir SFX iU aillir aillions faillir SFX iU aillir ailliez faillir SFX iU aillir aillent faillir SFX iU aillir aillisse faillir SFX iU aillir aillisses faillir SFX iU aillir aillît faillir SFX iU aillir aillissions faillir SFX iU aillir aillissiez faillir SFX iU aillir aillissent faillir SFX iU illir ux faillir SFX iU aillir aillons faillir SFX iU aillir aillez faillir SFX iV N 14 SFX iV ésir ésir gésir SFX iV ésir isant gésir SFX iV ésir is gésir SFX iV ésir is gésir SFX iV ésir ît gésir SFX iV ésir isons gésir SFX iV ésir isez gésir SFX iV ésir isent gésir SFX iV ésir isais gésir SFX iV ésir isais gésir SFX iV ésir isait gésir SFX iV ésir isions gésir SFX iV ésir isiez gésir SFX iV ésir isaient gésir SFX iW Y 64 SFX iW uïr uïr/n'q'd'l'm't's' ouïr SFX iW uïr uï-dire/n'q'd'l'm't' ouïr SFX iW uïr yant/n'q'l'm't's' ouïr SFX iW uïr uï/q' ouïr SFX iW uïr uïs/q' ouïr SFX iW uïr uïe/q' ouïr SFX iW uïr uïes/q' ouïr SFX iW uïr is/n'q'j'l'm't' ouïr SFX iW uïr is/n'q'l'm't' ouïr SFX iW uïr it/n'q'l'm't' ouïr SFX iW uïr yons/n'q'l't' ouïr SFX iW uïr yez/n'q'l'm' ouïr SFX iW uïr ient/n'q'l'm't's' ouïr SFX iW uïr yais/n'q'j'l'm't' ouïr SFX iW uïr yais/n'q'l'm't' ouïr SFX iW uïr yait/n'q'l'm't' ouïr SFX iW uïr yions/n'q'l't' ouïr SFX iW uïr yiez/n'q'l'm' ouïr SFX iW uïr yaient/n'q'l'm't's' ouïr SFX iW uïr uïs/n'q'j'l'm't' ouïr SFX iW uïr uïs/n'q'l'm't' ouïr SFX iW uïr uït/n'q'l'm't' ouïr SFX iW uïr uïmes/n'q'l't' ouïr SFX iW uïr uïtes/n'q'l'm' ouïr SFX iW uïr uïrent/n'q'l'm't's' ouïr SFX iW uïr uïrai/n'q'j'l'm't' ouïr SFX iW uïr rrai/n'q'j'l'm't' ouïr SFX iW uïr uïras/n'q'l'm't' ouïr SFX iW uïr rras/n'q'l'm't' ouïr SFX iW uïr uïra/n'q'l'm't' ouïr SFX iW uïr rra/n'q'l'm't' ouïr SFX iW uïr uïrons/n'q'l't' ouïr SFX iW uïr rrons/n'q'l't' ouïr SFX iW uïr uïrez/n'q'l'm' ouïr SFX iW uïr rrez/n'q'l'm' ouïr SFX iW uïr uïront/n'q'l'm't's' ouïr SFX iW uïr rront/n'q'l'm't's' ouïr SFX iW uïr uïrais/n'q'j'l'm't' ouïr SFX iW uïr rrais/n'q'j'l'm't' ouïr SFX iW uïr uïrais/n'q'l'm't' ouïr SFX iW uïr rrais/n'q'l'm't' ouïr SFX iW uïr uïrait/n'q'l'm't' ouïr SFX iW uïr rrait/n'q'l'm't' ouïr SFX iW uïr uïrions/n'q'l't' ouïr SFX iW uïr rrions/n'q'l't' ouïr SFX iW uïr uïriez/n'q'l'm' ouïr SFX iW uïr rriez/n'q'l'm' ouïr SFX iW uïr uïraient/n'q'l'm't's' ouïr SFX iW uïr rraient/n'q'l'm't's' ouïr SFX iW uïr ie/n'j'l'm't' ouïr SFX iW uïr ies/n'l'm't' ouïr SFX iW uïr ie/n'l'm't's' ouïr SFX iW uïr yions/n'l't' ouïr SFX iW uïr yiez/n'l'm' ouïr SFX iW uïr ient/n'l'm't's' ouïr SFX iW uïr uïsse/n'q'j'l'm't' ouïr SFX iW uïr uïsses/n'q'l'm't' ouïr SFX iW uïr uït/n'q'l'm't' ouïr SFX iW uïr uïssions/n'q'l't' ouïr SFX iW uïr uïssiez/n'q'l'm' ouïr SFX iW uïr uïssent/n'q'l'm't's' ouïr SFX iW uïr is/n'l'm' ouïr SFX iW uïr yons/n'l' ouïr SFX iW uïr yez/n'l'm' ouïr SFX iX N 5 SFX iX érir érir férir SFX iX érir éru férir SFX iX érir érus férir SFX iX érir érue férir SFX iX érir érues férir SFX iY Y 5 SFX iY ssir ssir/n'q'd' issir SFX iY ssir ssu/q' issir SFX iY ssir ssus/q' issir SFX iY ssir ssue/q' issir SFX iY ssir ssues/q' issir SFX pA N 49 SFX pA ouvoir ouvoir pouvoir SFX pA ouvoir ouvant pouvoir SFX pA ouvoir u pouvoir SFX pA ouvoir eux pouvoir SFX pA ouvoir uis pouvoir SFX pA ouvoir uissé pouvoir SFX pA ouvoir uis pouvoir SFX pA ouvoir eux pouvoir SFX pA ouvoir eut pouvoir SFX pA ouvoir ouvons pouvoir SFX pA ouvoir ouvez pouvoir SFX pA ouvoir euvent pouvoir SFX pA ouvoir ouvais pouvoir SFX pA ouvoir ouvais pouvoir SFX pA ouvoir ouvait pouvoir SFX pA ouvoir ouvions pouvoir SFX pA ouvoir ouviez pouvoir SFX pA ouvoir ouvaient pouvoir SFX pA ouvoir us pouvoir SFX pA ouvoir us pouvoir SFX pA ouvoir ut pouvoir SFX pA ouvoir ûmes pouvoir SFX pA ouvoir ûtes pouvoir SFX pA ouvoir urent pouvoir SFX pA ouvoir ourrai pouvoir SFX pA ouvoir ourras pouvoir SFX pA ouvoir ourra pouvoir SFX pA ouvoir ourrons pouvoir SFX pA ouvoir ourrez pouvoir SFX pA ouvoir ourront pouvoir SFX pA ouvoir ourrais pouvoir SFX pA ouvoir ourrais pouvoir SFX pA ouvoir ourrait pouvoir SFX pA ouvoir ourrions pouvoir SFX pA ouvoir ourriez pouvoir SFX pA ouvoir ourraient pouvoir SFX pA ouvoir uisse pouvoir SFX pA ouvoir uisses pouvoir SFX pA ouvoir uisse pouvoir SFX pA ouvoir uissions pouvoir SFX pA ouvoir uissiez pouvoir SFX pA ouvoir uissent pouvoir SFX pA ouvoir usse pouvoir SFX pA ouvoir ussé pouvoir SFX pA ouvoir usses pouvoir SFX pA ouvoir ût pouvoir SFX pA ouvoir ussions pouvoir SFX pA ouvoir ussiez pouvoir SFX pA ouvoir ussent pouvoir SFX pB N 53 SFX pB ouloir ouloir vouloir SFX pB ouloir oulant vouloir SFX pB ouloir oulu vouloir SFX pB ouloir oulus vouloir SFX pB ouloir oulue vouloir SFX pB ouloir oulues vouloir SFX pB ouloir eux vouloir SFX pB ouloir eux vouloir SFX pB ouloir eut vouloir SFX pB ouloir oulons vouloir SFX pB ouloir oulez vouloir SFX pB ouloir eulent vouloir SFX pB ouloir oulais vouloir SFX pB ouloir oulais vouloir SFX pB ouloir oulait vouloir SFX pB ouloir oulions vouloir SFX pB ouloir ouliez vouloir SFX pB ouloir oulaient vouloir SFX pB ouloir oulus vouloir SFX pB ouloir oulus vouloir SFX pB ouloir oulut vouloir SFX pB ouloir oulûmes vouloir SFX pB ouloir oulûtes vouloir SFX pB ouloir oulurent vouloir SFX pB ouloir oudrai vouloir SFX pB ouloir oudras vouloir SFX pB ouloir oudra vouloir SFX pB ouloir oudrons vouloir SFX pB ouloir oudrez vouloir SFX pB ouloir oudront vouloir SFX pB ouloir oudrais vouloir SFX pB ouloir oudrais vouloir SFX pB ouloir oudrait vouloir SFX pB ouloir oudrions vouloir SFX pB ouloir oudriez vouloir SFX pB ouloir oudraient vouloir SFX pB ouloir euille vouloir SFX pB ouloir euilles vouloir SFX pB ouloir euille vouloir SFX pB ouloir oulions vouloir SFX pB ouloir ouliez vouloir SFX pB ouloir euillent vouloir SFX pB ouloir oulusse vouloir SFX pB ouloir oulusses vouloir SFX pB ouloir oulût vouloir SFX pB ouloir oulussions vouloir SFX pB ouloir oulussiez vouloir SFX pB ouloir oulussent vouloir SFX pB ouloir eux vouloir SFX pB ouloir euille vouloir SFX pB ouloir oulons vouloir SFX pB ouloir oulez vouloir SFX pB ouloir euillez vouloir SFX pC N 51 SFX pC evoir evoir devoir SFX pC evoir evant devoir SFX pC evoir û redevoir SFX pC evoir us devoir SFX pC evoir ue devoir SFX pC evoir ues devoir SFX pC evoir ois devoir SFX pC evoir ois devoir SFX pC evoir oit devoir SFX pC evoir evons devoir SFX pC evoir evez devoir SFX pC evoir oivent devoir SFX pC evoir evais devoir SFX pC evoir evais devoir SFX pC evoir evait devoir SFX pC evoir evions devoir SFX pC evoir eviez devoir SFX pC evoir evaient devoir SFX pC evoir us devoir SFX pC evoir us devoir SFX pC evoir ut devoir SFX pC evoir ûmes devoir SFX pC evoir ûtes devoir SFX pC evoir urent devoir SFX pC evoir evrai devoir SFX pC evoir evras devoir SFX pC evoir evra devoir SFX pC evoir evrons devoir SFX pC evoir evrez devoir SFX pC evoir evront devoir SFX pC evoir evrais devoir SFX pC evoir evrais devoir SFX pC evoir evrait devoir SFX pC evoir evrions devoir SFX pC evoir evriez devoir SFX pC evoir evraient devoir SFX pC evoir oive devoir SFX pC evoir oives devoir SFX pC evoir oive devoir SFX pC evoir evions devoir SFX pC evoir eviez devoir SFX pC evoir oivent devoir SFX pC evoir usse devoir SFX pC evoir usses devoir SFX pC evoir ût devoir SFX pC evoir ussions devoir SFX pC evoir ussiez devoir SFX pC evoir ussent devoir SFX pC evoir ois devoir SFX pC evoir evons devoir SFX pC evoir evez devoir SFX pD N 1 SFX pD evoir û devoir SFX pE N 51 SFX pE avoir avoir savoir SFX pE avoir achant savoir SFX pE avoir u savoir SFX pE avoir us savoir SFX pE avoir ue savoir SFX pE avoir ues savoir SFX pE avoir ais savoir SFX pE avoir ais savoir SFX pE avoir ait savoir SFX pE avoir avons savoir SFX pE avoir avez savoir SFX pE avoir avent savoir SFX pE avoir avais savoir SFX pE avoir avais savoir SFX pE avoir avait savoir SFX pE avoir avions savoir SFX pE avoir aviez savoir SFX pE avoir avaient savoir SFX pE avoir us savoir SFX pE avoir us savoir SFX pE avoir ut savoir SFX pE avoir ûmes savoir SFX pE avoir ûtes savoir SFX pE avoir urent savoir SFX pE avoir aurai savoir SFX pE avoir auras savoir SFX pE avoir aura savoir SFX pE avoir aurons savoir SFX pE avoir aurez savoir SFX pE avoir auront savoir SFX pE avoir aurais savoir SFX pE avoir aurais savoir SFX pE avoir aurait savoir SFX pE avoir aurions savoir SFX pE avoir auriez savoir SFX pE avoir auraient savoir SFX pE avoir ache savoir SFX pE avoir aches savoir SFX pE avoir ache savoir SFX pE avoir achions savoir SFX pE avoir achiez savoir SFX pE avoir achent savoir SFX pE avoir usse savoir SFX pE avoir usses savoir SFX pE avoir ût savoir SFX pE avoir ussions savoir SFX pE avoir ussiez savoir SFX pE avoir ussent savoir SFX pE avoir ache savoir SFX pE avoir achons savoir SFX pE avoir achez savoir SFX pF Y 63 SFX pF oir oir/n'q'd'l'm't's' voir SFX pF oir oyant/n'q'l'm't's' voir SFX pF oir u/q' voir SFX pF oir us/q' voir SFX pF oir ue/q' voir SFX pF oir ues/q' voir SFX pF oir ois/n'q'j'l'm't' voir SFX pF oir ois/n'q'l'm't' voir SFX pF oir oit/n'q'l'm't's' voir SFX pF oir oyons/n'q'l't' voir SFX pF oir oyez/n'q'l'm' voir SFX pF oir oient/n'q'l'm't's' voir SFX pF oir oyais/n'q'j'l'm't' voir SFX pF oir oyais/n'q'l'm't' voir SFX pF oir oyait/n'q'l'm't's' voir SFX pF oir oyions/n'q'l't' voir SFX pF oir oyiez/n'q'l'm' voir SFX pF oir oyaient/n'q'l'm't's' voir SFX pF oir is/n'q'j'l'm't' voir SFX pF oir is/n'q'l'm't' voir SFX pF oir it/n'q'l'm't's' voir SFX pF oir îmes/n'q'l't' voir SFX pF oir îtes/n'q'l'm' voir SFX pF oir irent/n'q'l'm't's' voir SFX pF oir errai/n'q'j'l'm't' [^é]voir SFX pF oir oirai évoir SFX pF oir erras/n'q'l'm't' [^é]voir SFX pF oir oiras évoir SFX pF oir erra/n'q'l'm't's' [^é]voir SFX pF oir oira évoir SFX pF oir errons/n'q'l't' [^é]voir SFX pF oir oirons évoir SFX pF oir errez/n'q'l'm' [^é]voir SFX pF oir oirez évoir SFX pF oir erront/n'q'l'm't's' [^é]voir SFX pF oir oiront évoir SFX pF oir errais/n'q'j'l'm't' [^é]voir SFX pF oir oirais évoir SFX pF oir errais/n'q'l'm't' [^é]voir SFX pF oir oirais évoir SFX pF oir errait/n'q'l'm't's' [^é]voir SFX pF oir oirait évoir SFX pF oir errions/n'q'l't' [^é]voir SFX pF oir oirions évoir SFX pF oir erriez/n'q'l'm' [^é]voir SFX pF oir oiriez évoir SFX pF oir erraient/n'q'l'm't's' [^é]voir SFX pF oir oiraient évoir SFX pF oir oie/n'j'l'm't' voir SFX pF oir oies/n'l'm't' voir SFX pF oir oie/n'l'm't's' voir SFX pF oir oyions/n'l't' voir SFX pF oir oyiez/n'l'm' voir SFX pF oir oient/n'l'm't's' voir SFX pF oir isse/n'q'j'l'm't' voir SFX pF oir isses/n'q'l'm't' voir SFX pF oir ît/n'q'l'm't's' voir SFX pF oir issions/n'q'l't' voir SFX pF oir issiez/n'q'l'm' voir SFX pF oir issent/n'q'l'm't's' voir SFX pF oir ois/n'l'm' voir SFX pF oir oyons/n'l' voir SFX pF oir oyez/n'l'm' voir SFX pG Y 12 SFX pG oir errai voir SFX pG oir erras voir SFX pG oir erra voir SFX pG oir errons voir SFX pG oir errez voir SFX pG oir erront voir SFX pG oir errais voir SFX pG oir errais voir SFX pG oir errait voir SFX pG oir errions voir SFX pG oir erriez voir SFX pG oir erraient voir SFX pH Y 51 SFX pH ouvoir ouvoir/n'q'd'l'm't's' mouvoir SFX pH ouvoir ouvant/n'q'l'm't's' mouvoir SFX pH ouvoir u/q' .mouvoir SFX pH ouvoir us/q' mouvoir SFX pH ouvoir ue/q' mouvoir SFX pH ouvoir ues/q' mouvoir SFX pH ouvoir eus/n'q'j'l'm't' mouvoir SFX pH ouvoir eus/n'q'l'm't' mouvoir SFX pH ouvoir eut/n'q'l'm't's' mouvoir SFX pH ouvoir ouvons/n'q'l't' mouvoir SFX pH ouvoir ouvez/n'q'l'm' mouvoir SFX pH ouvoir euvent/n'q'l'm't's' mouvoir SFX pH ouvoir ouvais/n'q'j'l'm't' mouvoir SFX pH ouvoir ouvais/n'q'l'm't' mouvoir SFX pH ouvoir ouvait/n'q'l'm't's' mouvoir SFX pH ouvoir ouvions/n'q'l't' mouvoir SFX pH ouvoir ouviez/n'q'l'm' mouvoir SFX pH ouvoir ouvaient/n'q'l'm't's' mouvoir SFX pH ouvoir us/n'q'j'l'm't' mouvoir SFX pH ouvoir us/n'q'l'm't' mouvoir SFX pH ouvoir ut/n'q'l'm't's' mouvoir SFX pH ouvoir ûmes/n'q'l't' mouvoir SFX pH ouvoir ûtes/n'q'l'm' mouvoir SFX pH ouvoir urent/n'q'l'm't's' mouvoir SFX pH ouvoir ouvrai/n'q'j'l'm't' mouvoir SFX pH ouvoir ouvras/n'q'l'm't' mouvoir SFX pH ouvoir ouvra/n'q'l'm't's' mouvoir SFX pH ouvoir ouvrons/n'q'l't' mouvoir SFX pH ouvoir ouvrez/n'q'l'm' mouvoir SFX pH ouvoir ouvront/n'q'l'm't's' mouvoir SFX pH ouvoir ouvrais/n'q'j'l'm't' mouvoir SFX pH ouvoir ouvrais/n'q'l'm't' mouvoir SFX pH ouvoir ouvrait/n'q'l'm't's' mouvoir SFX pH ouvoir ouvrions/n'q'l't' mouvoir SFX pH ouvoir ouvriez/n'q'l'm' mouvoir SFX pH ouvoir ouvraient/n'q'l'm't's' mouvoir SFX pH ouvoir euve/n'j'l'm't' mouvoir SFX pH ouvoir euves/n'l'm't' mouvoir SFX pH ouvoir euve/n'q'l'm't's' mouvoir SFX pH ouvoir ouvions/n'q'l't' mouvoir SFX pH ouvoir ouviez/n'q'l'm' mouvoir SFX pH ouvoir euvent/n'q'l'm't's' mouvoir SFX pH ouvoir usse/n'q'j'l'm't' mouvoir SFX pH ouvoir usses/n'q'l'm't' mouvoir SFX pH ouvoir ût/n'q'l'm't's' mouvoir SFX pH ouvoir ussions/n'q'l't' mouvoir SFX pH ouvoir ussiez/n'q'l'm' mouvoir SFX pH ouvoir ussent/n'q'l'm't's' mouvoir SFX pH ouvoir eus/n'l'm' mouvoir SFX pH ouvoir ouvons/n'l' mouvoir SFX pH ouvoir ouvez/n'l'm' mouvoir SFX pI N 1 SFX pI ouvoir û/q' mouvoir SFX pJ N 51 SFX pJ ourvoir ourvoir pourvoir SFX pJ ourvoir ourvoyant pourvoir SFX pJ ourvoir ourvu pourvoir SFX pJ ourvoir ourvus pourvoir SFX pJ ourvoir ourvue pourvoir SFX pJ ourvoir ourvues pourvoir SFX pJ ourvoir ourvois pourvoir SFX pJ ourvoir ourvois pourvoir SFX pJ ourvoir ourvoit pourvoir SFX pJ ourvoir ourvoyons pourvoir SFX pJ ourvoir ourvoyez pourvoir SFX pJ ourvoir ourvoient pourvoir SFX pJ ourvoir ourvoyais pourvoir SFX pJ ourvoir ourvoyais pourvoir SFX pJ ourvoir ourvoyait pourvoir SFX pJ ourvoir ourvoyions pourvoir SFX pJ ourvoir ourvoyiez pourvoir SFX pJ ourvoir ourvoyaient pourvoir SFX pJ ourvoir ourvus pourvoir SFX pJ ourvoir ourvus pourvoir SFX pJ ourvoir ourvut pourvoir SFX pJ ourvoir ourvûmes pourvoir SFX pJ ourvoir ourvûtes pourvoir SFX pJ ourvoir ourvurent pourvoir SFX pJ ourvoir ourvoirai pourvoir SFX pJ ourvoir ourvoiras pourvoir SFX pJ ourvoir ourvoira pourvoir SFX pJ ourvoir ourvoirons pourvoir SFX pJ ourvoir ourvoirez pourvoir SFX pJ ourvoir ourvoiront pourvoir SFX pJ ourvoir ourvoirais pourvoir SFX pJ ourvoir ourvoirais pourvoir SFX pJ ourvoir ourvoirait pourvoir SFX pJ ourvoir ourvoirions pourvoir SFX pJ ourvoir ourvoiriez pourvoir SFX pJ ourvoir ourvoiraient pourvoir SFX pJ ourvoir ourvoie pourvoir SFX pJ ourvoir ourvoies pourvoir SFX pJ ourvoir ourvoie pourvoir SFX pJ ourvoir ourvoyions pourvoir SFX pJ ourvoir ourvoyiez pourvoir SFX pJ ourvoir ourvoient pourvoir SFX pJ ourvoir ourvusse pourvoir SFX pJ ourvoir ourvusses pourvoir SFX pJ ourvoir ourvût pourvoir SFX pJ ourvoir ourvussions pourvoir SFX pJ ourvoir ourvussiez pourvoir SFX pJ ourvoir ourvussent pourvoir SFX pJ ourvoir ourvois pourvoir SFX pJ ourvoir ourvoyons pourvoir SFX pJ ourvoir ourvoyez pourvoir SFX pK Y 51 SFX pK cevoir cevoir/n'q'd'l'm't's' cevoir SFX pK cevoir cevant/n'q'l'm't's' cevoir SFX pK cevoir çu/q' cevoir SFX pK cevoir çus/q' cevoir SFX pK cevoir çue/q' cevoir SFX pK cevoir çues/q' cevoir SFX pK cevoir çois/n'q'j'l'm't' cevoir SFX pK cevoir çois/n'q'l'm't' cevoir SFX pK cevoir çoit/n'q'l'm't's' cevoir SFX pK cevoir cevons/n'q'l't' cevoir SFX pK cevoir cevez/n'q'l'm' cevoir SFX pK cevoir çoivent/n'q'l'm't's' cevoir SFX pK cevoir cevais/n'q'j'l'm't' cevoir SFX pK cevoir cevais/n'q'l'm't' cevoir SFX pK cevoir cevait/n'q'l'm't's' cevoir SFX pK cevoir cevions/n'q'l't' cevoir SFX pK cevoir ceviez/n'q'l'm' cevoir SFX pK cevoir cevaient/n'q'l'm't's' cevoir SFX pK cevoir çus/n'q'j'l'm't' cevoir SFX pK cevoir çus/n'q'l'm't' cevoir SFX pK cevoir çut/n'q'l'm't's' cevoir SFX pK cevoir çûmes/n'q'l't' cevoir SFX pK cevoir çûtes/n'q'l'm' cevoir SFX pK cevoir çurent/n'q'l'm't's' cevoir SFX pK cevoir cevrai/n'q'j'l'm't' cevoir SFX pK cevoir cevras/n'q'l'm't' cevoir SFX pK cevoir cevra/n'q'l'm't's' cevoir SFX pK cevoir cevrons/n'q'l't' cevoir SFX pK cevoir cevrez/n'q'l'm' cevoir SFX pK cevoir cevront/n'q'l'm't's' cevoir SFX pK cevoir cevrais/n'q'j'l'm't' cevoir SFX pK cevoir cevrais/n'q'l'm't' cevoir SFX pK cevoir cevrait/n'q'l'm't's' cevoir SFX pK cevoir cevrions/n'q'l't' cevoir SFX pK cevoir cevriez/n'q'l'm' cevoir SFX pK cevoir cevraient/n'q'l'm't's' cevoir SFX pK cevoir çoive/n'j'l'm't' cevoir SFX pK cevoir çoives/n'l'm't' cevoir SFX pK cevoir çoive/n'l'm't's' cevoir SFX pK cevoir cevions/n'l't' cevoir SFX pK cevoir ceviez/n'l'm' cevoir SFX pK cevoir çoivent/n'l'm't's' cevoir SFX pK cevoir çusse/n'q'j'l'm't' cevoir SFX pK cevoir çusses/n'q'l'm't' cevoir SFX pK cevoir çût/n'q'l'm't's' cevoir SFX pK cevoir çussions/n'q'l't' cevoir SFX pK cevoir çussiez/n'q'l'm' cevoir SFX pK cevoir çussent/n'q'l'm't's' cevoir SFX pK cevoir çois/n'l'm' cevoir SFX pK cevoir cevons/n'l' cevoir SFX pK cevoir cevez/n'l'm' cevoir SFX pM N 48 SFX pM aloir aloir valoir SFX pM aloir alant valoir SFX pM aloir alu valoir SFX pM aloir aux valoir SFX pM aloir aux valoir SFX pM aloir aut valoir SFX pM aloir alons valoir SFX pM aloir alez valoir SFX pM aloir alent valoir SFX pM aloir alais valoir SFX pM aloir alais valoir SFX pM aloir alait valoir SFX pM aloir alions valoir SFX pM aloir aliez valoir SFX pM aloir alaient valoir SFX pM aloir alus valoir SFX pM aloir alus valoir SFX pM aloir alut valoir SFX pM aloir alûmes valoir SFX pM aloir alûtes valoir SFX pM aloir alurent valoir SFX pM aloir audrai valoir SFX pM aloir audras valoir SFX pM aloir audra valoir SFX pM aloir audrons valoir SFX pM aloir audrez valoir SFX pM aloir audront valoir SFX pM aloir audrais valoir SFX pM aloir audrais valoir SFX pM aloir audrait valoir SFX pM aloir audrions valoir SFX pM aloir audriez valoir SFX pM aloir audraient valoir SFX pM aloir aille valoir SFX pM aloir ailles valoir SFX pM aloir aille valoir SFX pM aloir ailions valoir SFX pM aloir ailiez valoir SFX pM aloir aillent valoir SFX pM aloir alusse valoir SFX pM aloir alusses valoir SFX pM aloir alût valoir SFX pM aloir alussions valoir SFX pM aloir alussiez valoir SFX pM aloir alussent valoir SFX pM aloir aux valoir SFX pM aloir alons valoir SFX pM aloir alez valoir SFX pN Y 60 SFX pN valoir valoir/n'q'd'm't's' valoir SFX pN valoir valant/n'q'm't's' valoir SFX pN valoir valu/q' valoir SFX pN valoir valus révaloir SFX pN valoir value révaloir SFX pN valoir values révaloir SFX pN valoir vaux/n'j'm't' valoir SFX pN valoir vaux/n'm't' valoir SFX pN valoir vaut/n'm't's' valoir SFX pN valoir valons/n't' valoir SFX pN valoir valez/n'm' valoir SFX pN valoir valent/n'm't's' valoir SFX pN valoir valais/n'j'm't' valoir SFX pN valoir valais/n'm't' valoir SFX pN valoir valait/n'm't's' valoir SFX pN valoir valions/n't' valoir SFX pN valoir valiez/n'm' valoir SFX pN valoir valaient/n'm't's' valoir SFX pN valoir valus/n'j'm't' valoir SFX pN valoir valus/n'm't' valoir SFX pN valoir valut/n'm't's' valoir SFX pN valoir valûmes/n't' valoir SFX pN valoir valûtes/n'm' valoir SFX pN valoir valurent/n'm't's' valoir SFX pN valoir vaudrai/n'j'm't' valoir SFX pN valoir vaudras/n'm't' valoir SFX pN valoir vaudra/n'm't's' valoir SFX pN valoir vaudrons/n't' valoir SFX pN valoir vaudrez/n'm' valoir SFX pN valoir vaudront/n'm't's' valoir SFX pN valoir vaudrais/n'j'm't' valoir SFX pN valoir vaudrais/n'm't' valoir SFX pN valoir vaudrait/n'm't's' valoir SFX pN valoir vaudrions/n't' valoir SFX pN valoir vaudriez/n'm' valoir SFX pN valoir vaudraient/n'm't's' valoir SFX pN valoir vaille/n'j'm't' quivaloir SFX pN valoir vale révaloir SFX pN valoir vailles/n'm't' quivaloir SFX pN valoir vales révaloir SFX pN valoir vaille/n'm't's' quivaloir SFX pN valoir vale révaloir SFX pN valoir vailions/n't' quivaloir SFX pN valoir valions révaloir SFX pN valoir vailiez/n'm' quivaloir SFX pN valoir valiez révaloir SFX pN valoir vaillent/n'm't's' quivaloir SFX pN valoir valent révaloir SFX pN valoir valusse/n'j'm't' valoir SFX pN valoir valusses/n'm't' valoir SFX pN valoir valût/n'm't's' valoir SFX pN valoir valussions/n't' valoir SFX pN valoir valussiez/n'm' valoir SFX pN valoir valussent/n'm't's' valoir SFX pN valoir vaux quivaloir SFX pN valoir vaux valoir SFX pN valoir valons quivaloir SFX pN valoir valons valoir SFX pN valoir valez quivaloir SFX pN valoir valez valoir SFX pO N 15 SFX pO valoir valoir revaloir SFX pO valoir valant revaloir SFX pO valoir valu revaloir SFX pO valoir vaudrai revaloir SFX pO valoir vaudras revaloir SFX pO valoir vaudra revaloir SFX pO valoir vaudrons revaloir SFX pO valoir vaudrez revaloir SFX pO valoir vaudront revaloir SFX pO valoir vaudrais revaloir SFX pO valoir vaudrais revaloir SFX pO valoir vaudrait revaloir SFX pO valoir vaudrions revaloir SFX pO valoir vaudriez revaloir SFX pO valoir vaudraient revaloir SFX pP N 2 SFX pP paroir paroir comparoir SFX pP paroir parant comparoir SFX pQ N 2 SFX pQ haloir haloir chaloir SFX pQ haloir haut chaloir SFX pR Y 2 SFX pR pparoir pparoir/n'q'd' apparoir SFX pR pparoir ppert/n'q' apparoir SFX pS Y 84 SFX pS oir oir/n'q'd'l'm't's' oir SFX pS sseoir sseyant/n'q'l'm't's' seoir SFX pS sseoir ssoyant/n'q'l'm't's' seoir SFX pS sseoir ssis/q' seoir SFX pS sseoir ssise/q' seoir SFX pS sseoir ssises/q' seoir SFX pS sseoir ssieds/n'q'j'l'm't' seoir SFX pS sseoir ssieds/n'q'l'm't' seoir SFX pS sseoir ssied/n'q'l'm't's' seoir SFX pS sseoir sseyons/n'q'l't' seoir SFX pS sseoir sseyez/n'q'l'm' seoir SFX pS sseoir sseyent/n'q'l'm't's' seoir SFX pS sseoir ssois/n'q'j'l'm't' seoir SFX pS sseoir ssois/n'q'l'm't' seoir SFX pS sseoir ssoit/n'q'l'm't's' seoir SFX pS sseoir ssoyons/n'q'l't' seoir SFX pS sseoir ssoyez/n'q'l'm' seoir SFX pS sseoir ssoient/n'q'l'm't's' seoir SFX pS sseoir sseyais/n'q'j'l'm't' seoir SFX pS sseoir sseyais/n'q'l'm't' seoir SFX pS sseoir sseyait/n'q'l'm't's' seoir SFX pS sseoir sseyions/n'q'l't' seoir SFX pS sseoir sseyiez/n'q'l'm' seoir SFX pS sseoir sseyaient/n'q'l'm't's' seoir SFX pS sseoir ssoyais/n'q'j'l'm't' seoir SFX pS sseoir ssoyais/n'q'l'm't' seoir SFX pS sseoir ssoyait/n'q'l'm't's' seoir SFX pS sseoir ssoyions/n'q'l't' seoir SFX pS sseoir ssoyiez/n'q'l'm' seoir SFX pS sseoir ssoyaient/n'q'l'm't's' seoir SFX pS sseoir ssis/n'q'j'l'm't' seoir SFX pS sseoir ssis/n'q'l'm't' seoir SFX pS sseoir ssit/n'q'l'm't's' seoir SFX pS sseoir ssîmes/n'q'l't' seoir SFX pS sseoir ssîtes/n'q'l'm' seoir SFX pS sseoir ssirent/n'q'l'm't's' seoir SFX pS sseoir ssiérai/n'q'j'l'm't' seoir SFX pS sseoir ssiéras/n'q'l'm't' seoir SFX pS sseoir ssiéra/n'q'l'm't's' seoir SFX pS sseoir ssiérons/n'q'l't' seoir SFX pS sseoir ssiérez/n'q'l'm' seoir SFX pS sseoir ssiéront/n'q'l'm't's' seoir SFX pS sseoir ssoirai/n'q'j'l'm't' seoir SFX pS sseoir ssoiras/n'q'l'm't' seoir SFX pS sseoir ssoira/n'q'l'm't's' seoir SFX pS sseoir ssoirons/n'q'l't' seoir SFX pS sseoir ssoirez/n'q'l'm' seoir SFX pS sseoir ssoiront/n'q'l'm't's' seoir SFX pS sseoir ssiérais/n'q'j'l'm't' seoir SFX pS sseoir ssiérais/n'q'l'm't' seoir SFX pS sseoir ssiérait/n'q'l'm't's' seoir SFX pS sseoir ssiérions/n'q'l't' seoir SFX pS sseoir ssiériez/n'q'l'm' seoir SFX pS sseoir ssiéraient/n'q'l'm't's' seoir SFX pS sseoir ssoirais/n'q'j'l'm't' seoir SFX pS sseoir ssoirais/n'q'l'm't' seoir SFX pS sseoir ssoirait/n'q'l'm't's' seoir SFX pS sseoir ssoirions/n'q'l't' seoir SFX pS sseoir ssoiriez/n'q'l'm' seoir SFX pS sseoir ssoiraient/n'q'l'm't's' seoir SFX pS sseoir sseye/n'j'l'm't' seoir SFX pS sseoir sseyes/n'l'm't' seoir SFX pS sseoir sseye/n'l'm't's' seoir SFX pS sseoir sseyions/n'l't' seoir SFX pS sseoir sseyiez/n'l'm' seoir SFX pS sseoir sseyent/n'q'l'm't's' seoir SFX pS sseoir ssoie/n'j'l'm't' seoir SFX pS sseoir ssoies/n'l'm't' seoir SFX pS sseoir ssoie/n'l'm't's' seoir SFX pS sseoir ssoyions/n'l't' seoir SFX pS sseoir ssoyiez/n'l'm' seoir SFX pS sseoir ssoient/n'q'l'm't's' seoir SFX pS sseoir ssisse/n'q'j'l'm't' seoir SFX pS sseoir ssisses/n'q'l'm't' seoir SFX pS sseoir ssît/n'q'l'm't's' seoir SFX pS sseoir ssissions/n'q'l't' seoir SFX pS sseoir ssissiez/n'q'l'm' seoir SFX pS sseoir ssissent/n'q'l'm't's' seoir SFX pS sseoir ssieds/n'l'm't' seoir SFX pS sseoir sseyons/n'l' seoir SFX pS sseoir sseyez/n'l'm' seoir SFX pS sseoir ssois/n'l'm't' seoir SFX pS sseoir ssoyons/n'l' seoir SFX pS sseoir ssoyez/n'l'm' seoir SFX pT N 50 SFX pT oir oir oir SFX pT urseoir ursoyant seoir SFX pT urseoir ursis seoir SFX pT urseoir ursise seoir SFX pT urseoir ursises seoir SFX pT urseoir ursois seoir SFX pT urseoir ursois seoir SFX pT urseoir ursoit seoir SFX pT urseoir ursoyons seoir SFX pT urseoir ursoyez seoir SFX pT urseoir ursoient seoir SFX pT urseoir ursoyais seoir SFX pT urseoir ursoyais seoir SFX pT urseoir ursoyait seoir SFX pT urseoir ursoyions seoir SFX pT urseoir ursoyiez seoir SFX pT urseoir ursoyaient seoir SFX pT urseoir ursis seoir SFX pT urseoir ursis seoir SFX pT urseoir ursit seoir SFX pT urseoir ursîmes seoir SFX pT urseoir ursîtes seoir SFX pT urseoir ursirent seoir SFX pT urseoir urseoirai seoir SFX pT urseoir urseoiras seoir SFX pT urseoir urseoira seoir SFX pT urseoir urseoirons seoir SFX pT urseoir urseoirez seoir SFX pT urseoir urseoiront seoir SFX pT urseoir urseoirais seoir SFX pT urseoir urseoirais seoir SFX pT urseoir urseoirait seoir SFX pT urseoir urseoirions seoir SFX pT urseoir urseoiriez seoir SFX pT urseoir urseoiraient seoir SFX pT urseoir ursoie seoir SFX pT urseoir ursoies seoir SFX pT urseoir ursoie seoir SFX pT urseoir ursoyions seoir SFX pT urseoir ursoyiez seoir SFX pT urseoir ursoient seoir SFX pT urseoir ursisse seoir SFX pT urseoir ursisses seoir SFX pT urseoir ursît seoir SFX pT urseoir ursissions seoir SFX pT urseoir ursissiez seoir SFX pT urseoir ursissent seoir SFX pT urseoir ursois seoir SFX pT urseoir ursoyons seoir SFX pT urseoir ursoyez seoir SFX pU N 5 SFX pU eoir eoir seoir SFX pU eoir éant seoir SFX pU eoir is seoir SFX pU eoir ise seoir SFX pU eoir ises seoir SFX pV N 14 SFX pV eoir eoir seoir SFX pV eoir éant seoir SFX pV eoir eyant seoir SFX pV eoir is seoir SFX pV eoir ied seoir SFX pV eoir iéent seoir SFX pV eoir eyait seoir SFX pV eoir eyaient seoir SFX pV eoir iéra seoir SFX pV eoir iéront seoir SFX pV eoir iérait seoir SFX pV eoir iéraient seoir SFX pV eoir iée seoir SFX pV eoir iéent seoir SFX pW N 12 SFX pW oir oir oir SFX pW sseoir sséant seoir SFX pW sseoir ssied seoir SFX pW sseoir ssiéent seoir SFX pW sseoir sseyait seoir SFX pW sseoir sseyaient seoir SFX pW sseoir ssiéra seoir SFX pW sseoir ssiéront seoir SFX pW sseoir ssiérait seoir SFX pW sseoir ssiéraient seoir SFX pW sseoir ssiée seoir SFX pW sseoir ssiéent seoir SFX pX N 62 SFX pX hoir hoir choir SFX pX hoir hu choir SFX pX hoir hus choir SFX pX hoir hue choir SFX pX hoir hues choir SFX pX hoir hois choir SFX pX hoir hois choir SFX pX hoir hoit choir SFX pX hoir hoyons choir SFX pX hoir hoyez choir SFX pX hoir hoient choir SFX pX hoir hoyais déchoir SFX pX hoir hoyais déchoir SFX pX hoir hoyait déchoir SFX pX hoir hoyions déchoir SFX pX hoir hoyiez déchoir SFX pX hoir hoyaient déchoir SFX pX hoir hus choir SFX pX hoir hus choir SFX pX hoir hut choir SFX pX hoir hûmes choir SFX pX hoir hûtes choir SFX pX hoir hurent choir SFX pX hoir hoirai choir SFX pX hoir herrai choir SFX pX hoir hoiras choir SFX pX hoir herras choir SFX pX hoir hoira choir SFX pX hoir herra choir SFX pX hoir hoirons choir SFX pX hoir herrons choir SFX pX hoir hoirez choir SFX pX hoir herrez choir SFX pX hoir hoiront choir SFX pX hoir herront choir SFX pX hoir hoirais choir SFX pX hoir herrais choir SFX pX hoir hoirais choir SFX pX hoir herrais choir SFX pX hoir hoirait choir SFX pX hoir herrait choir SFX pX hoir hoirions choir SFX pX hoir herrions choir SFX pX hoir hoiriez choir SFX pX hoir herriez choir SFX pX hoir hoiraient choir SFX pX hoir herraient choir SFX pX hoir hoie choir SFX pX hoir hoies choir SFX pX hoir hoie choir SFX pX hoir hoyions choir SFX pX hoir hoyiez choir SFX pX hoir hoient choir SFX pX hoir husse choir SFX pX hoir husses choir SFX pX hoir hût choir SFX pX hoir hussions choir SFX pX hoir hussiez choir SFX pX hoir hussent choir SFX pX hoir hois déchoir SFX pX hoir hoyons déchoir SFX pX hoir hoyez déchoir SFX pY Y 26 SFX pY choir choir/n'q'd' échoir SFX pY choir chéant/n'q' échoir SFX pY choir chu/q' échoir SFX pY choir chus/q' échoir SFX pY choir chue/q' échoir SFX pY choir chues/q' échoir SFX pY choir choit/n'q' échoir SFX pY choir chet/n'q' échoir SFX pY choir choient/n'q' échoir SFX pY choir chéent/n'q' échoir SFX pY choir choyait/n'q' échoir SFX pY choir choyaient/n'q' échoir SFX pY choir chut/n'q' échoir SFX pY choir churent/n'q' échoir SFX pY choir choira/n'q' échoir SFX pY choir cherra/n'q' échoir SFX pY choir choiront/n'q' échoir SFX pY choir cherront/n'q' échoir SFX pY choir choirait/n'q' échoir SFX pY choir cherrait/n'q' échoir SFX pY choir choirait/n'q' échoir SFX pY choir cherraient/n'q' échoir SFX pY choir choie/n'q' échoir SFX pY choir choient/n'q' échoir SFX pY choir chût/n'q' échoir SFX pY choir chussent/n'q' échoir SFX pZ N 20 SFX pZ euvoir euvoir pleuvoir SFX pZ euvoir euvant pleuvoir SFX pZ euvoir u pleuvoir SFX pZ euvoir eut pleuvoir SFX pZ euvoir euvent pleuvoir SFX pZ euvoir euvait pleuvoir SFX pZ euvoir euvaient pleuvoir SFX pZ euvoir ut pleuvoir SFX pZ euvoir urent pleuvoir SFX pZ euvoir euvra pleuvoir SFX pZ euvoir euvront pleuvoir SFX pZ euvoir euvrait pleuvoir SFX pZ euvoir euvraient pleuvoir SFX pZ euvoir euve pleuvoir SFX pZ euvoir euvent pleuvoir SFX pZ euvoir ût pleuvoir SFX pZ euvoir ussent pleuvoir SFX pZ euvoir eus pleuvoir SFX pZ euvoir euvons pleuvoir SFX pZ euvoir euvez pleuvoir SFX qA N 9 SFX qA alloir alloir falloir SFX qA alloir allu falloir SFX qA alloir aut falloir SFX qA alloir allait falloir SFX qA alloir allut falloir SFX qA alloir audra falloir SFX qA alloir audrait falloir SFX qA alloir aille falloir SFX qA alloir allût falloir SFX rA Y 32 SFX rA lore lore/n'q'd'l'm't's' clore SFX rA lore losant/n'q'l'm't's' clore SFX rA lore los/q' clore SFX rA lore lose/q' clore SFX rA lore loses/q' clore SFX rA lore los/n'q'j'l'm't' clore SFX rA lore los/n'q'l'm't' clore SFX rA lore lot/n'q'l'm't's' .clore SFX rA lore losons/n'q'l't' clore SFX rA lore losez/n'q'l'm' clore SFX rA lore losent/n'q'l'm't's' clore SFX rA lore lorai/n'q'j'l'm't' clore SFX rA lore loras/n'q'l'm't' clore SFX rA lore lora/n'q'l'm't's' clore SFX rA lore lorons/n'q'l't' clore SFX rA lore lorez/n'q'l'm' clore SFX rA lore loront/n'q'l'm't's' clore SFX rA lore lorais/n'q'j'l'm't' clore SFX rA lore lorais/n'q'l'm't' clore SFX rA lore lorait/n'q'l'm't's' clore SFX rA lore lorions/n'q'l't' clore SFX rA lore loriez/n'q'l'm' clore SFX rA lore loraient/n'q'l'm't's' clore SFX rA lore lose/n'j'l'm't' clore SFX rA lore loses/n'l'm't' clore SFX rA lore lose/n'l'm't's' clore SFX rA lore losions/n'l't' clore SFX rA lore losiez/n'l'm' clore SFX rA lore losent/n'l'm't's' clore SFX rA lore los/n'l'm' clore SFX rA lore losons/n'l' clore SFX rA lore losez/n'l'm' clore SFX rB Y 1 SFX rB lore lôt clore SFX rC Y 32 SFX rC clore clore/n'q'd' clore SFX rC clore closant/n'q' clore SFX rC clore clos/q' clore SFX rC clore close/q' clore SFX rC clore closes/q' clore SFX rC clore clos/n'j' clore SFX rC clore clos/n' clore SFX rC clore clot/n'q' clore SFX rC clore closons/n' clore SFX rC clore closez/n' clore SFX rC clore closent/n'q' clore SFX rC clore clorai/n'j' clore SFX rC clore cloras/n' clore SFX rC clore clora/n'q' clore SFX rC clore clorons/n' clore SFX rC clore clorez/n' clore SFX rC clore cloront/n'q' clore SFX rC clore clorais/n'j' clore SFX rC clore clorais/n' clore SFX rC clore clorait/n'q' clore SFX rC clore clorions/n' clore SFX rC clore cloriez/n' clore SFX rC clore cloraient/n'q' clore SFX rC clore close/n'j' clore SFX rC clore closes/n' clore SFX rC clore close/n'q' clore SFX rC clore closions/n' clore SFX rC clore closiez/n' clore SFX rC clore closent/n'q' clore SFX rC clore clos/n' clore SFX rC clore closons/n' clore SFX rC clore closez/n' clore SFX rD N 4 SFX rD clore clore clore SFX rD clore clos clore SFX rD clore close clore SFX rD clore closes clore SFX tA Y 52 SFX tA re re/n'q'd'l'm't's' [dp]re SFX tA re ant/n'q'l'm't's' [dp]re SFX tA re u/q' [dp]re SFX tA re us/q' [dp]re SFX tA re ue/q' [dp]re SFX tA re ues/q' [dp]re SFX tA re s/n'q'j'l'm't' [dp]re SFX tA re s/n'q'l'm't' [dp]re SFX tA dre d/n'q'l'm't's' dre SFX tA pre pt/n'q'l'm't's' pre SFX tA re ons/n'q'l't' [dp]re SFX tA re ez/n'q'l'm' [dp]re SFX tA re ent/n'q'l'm't's' [dp]re SFX tA re ais/n'q'j'l'm't' [dp]re SFX tA re ais/n'q'l'm't' [dp]re SFX tA re ait/n'q'l'm't's' [dp]re SFX tA re ions/n'q'l't' [dp]re SFX tA re iez/n'q'l'm' [dp]re SFX tA re aient/n'q'l'm't's' [dp]re SFX tA re is/n'q'j'l'm't' [dp]re SFX tA re is/n'q'l'm't' [dp]re SFX tA re it/n'q'l'm't's' [dp]re SFX tA re îmes/n'q'l't' [dp]re SFX tA re îtes/n'q'l'm' [dp]re SFX tA re irent/n'q'l'm't's' [dp]re SFX tA re rai/n'q'j'l'm't' [dp]re SFX tA re ras/n'q'l'm't' [dp]re SFX tA re ra/n'q'l'm't's' [dp]re SFX tA re rons/n'q'l't' [dp]re SFX tA re rez/n'q'l'm' [dp]re SFX tA re ront/n'q'l'm't's' [dp]re SFX tA re rais/n'q'j'l'm't' [dp]re SFX tA re rais/n'q'l'm't' [dp]re SFX tA re rait/n'q'l'm't's' [dp]re SFX tA re rions/n'q'l't' [dp]re SFX tA re riez/n'q'l'm' [dp]re SFX tA re raient/n'q'l'm't's' [dp]re SFX tA re e/n'j'l'm't' [dp]re SFX tA re es/n'l'm't' [dp]re SFX tA re e/n'l'm't's' [dp]re SFX tA re ions/n'l't' [dp]re SFX tA re iez/n'l'm' [dp]re SFX tA re ent/n'l'm't's' [dp]re SFX tA re isse/n'q'j'l'm't' [dp]re SFX tA re isses/n'q'l'm't' [dp]re SFX tA re ît/n'q'l'm't's' [dp]re SFX tA re issions/n'q'l't' [dp]re SFX tA re issiez/n'q'l'm' [dp]re SFX tA re issent/n'q'l'm't's' [dp]re SFX tA re s/n'l'm' [dp]re SFX tA re ons/n'l' [dp]re SFX tA re ez/n'l'm' [dp]re SFX tD Y 51 SFX tD perdre perdre/m't's' perdre SFX tD perdre perdant/m't's' perdre SFX tD perdre perdu perdre SFX tD perdre perdus perdre SFX tD perdre perdue perdre SFX tD perdre perdues perdre SFX tD perdre perds/m' perdre SFX tD perdre perds/t' perdre SFX tD perdre perd/s' perdre SFX tD perdre perdons perdre SFX tD perdre perdez perdre SFX tD perdre perdent/s' perdre SFX tD perdre perdais/m' perdre SFX tD perdre perdais/t' perdre SFX tD perdre perdait/s' perdre SFX tD perdre perdions perdre SFX tD perdre perdiez perdre SFX tD perdre perdaient/s' perdre SFX tD perdre perdis/m' perdre SFX tD perdre perdis/t' perdre SFX tD perdre perdit/s' perdre SFX tD perdre perdîmes perdre SFX tD perdre perdîtes perdre SFX tD perdre perdirent/s' perdre SFX tD perdre perdrai/m' perdre SFX tD perdre perdras/t' perdre SFX tD perdre perdra/s' perdre SFX tD perdre perdrons perdre SFX tD perdre perdrez perdre SFX tD perdre perdront/s' perdre SFX tD perdre perdrais/m' perdre SFX tD perdre perdrais/t' perdre SFX tD perdre perdrait/s' perdre SFX tD perdre perdrions perdre SFX tD perdre perdriez perdre SFX tD perdre perdraient/s' perdre SFX tD perdre perde perdre SFX tD perdre perdes perdre SFX tD perdre perde perdre SFX tD perdre perdions perdre SFX tD perdre perdiez perdre SFX tD perdre perdent perdre SFX tD perdre perdisse/m' perdre SFX tD perdre perdisses/t' perdre SFX tD perdre perdît/s' perdre SFX tD perdre perdissions perdre SFX tD perdre perdissiez perdre SFX tD perdre perdissent/s' perdre SFX tD perdre perds/t' perdre SFX tD perdre perdons perdre SFX tD perdre perdez perdre SFX tE N 54 SFX tE dre dre dre SFX tE dre dant dre SFX tE dre du dre SFX tE dre dus morfondre SFX tE dre due morfondre SFX tE dre dues morfondre SFX tE dre ds dre SFX tE dre ds dre SFX tE dre d dre SFX tE dre dons dre SFX tE dre dez dre SFX tE dre dent dre SFX tE dre dais dre SFX tE dre dais dre SFX tE dre dait dre SFX tE dre dions dre SFX tE dre diez dre SFX tE dre daient dre SFX tE dre dis dre SFX tE dre dis dre SFX tE dre dit dre SFX tE dre dîmes dre SFX tE dre dîtes dre SFX tE dre dirent dre SFX tE dre drai dre SFX tE dre dras dre SFX tE dre dra dre SFX tE dre drons dre SFX tE dre drez dre SFX tE dre dront dre SFX tE dre drais dre SFX tE dre drais dre SFX tE dre drait dre SFX tE dre drions dre SFX tE dre driez dre SFX tE dre draient dre SFX tE dre de dre SFX tE dre des dre SFX tE dre de dre SFX tE dre dions dre SFX tE dre diez dre SFX tE dre dent dre SFX tE dre disse dre SFX tE dre disses dre SFX tE dre dît dre SFX tE dre dissions dre SFX tE dre dissiez dre SFX tE dre dissent dre SFX tE dre ds [^o]ndre SFX tE dre ds ondre SFX tE dre dons [^o]ndre SFX tE dre dons ondre SFX tE dre dez [^o]ndre SFX tE dre dez ondre SFX tF Y 50 SFX tF rendre rendre/n'q'd'l'm't's' prendre SFX tF rendre renant/n'q'l'm't's' prendre SFX tF rendre ris/q' prendre SFX tF rendre rise/q' prendre SFX tF rendre rises/q' prendre SFX tF rendre rends/n'q'j'l'm't' prendre SFX tF rendre rends/n'q'l'm't' prendre SFX tF rendre rend/n'q'l'm't's' prendre SFX tF rendre renons/n'q'l't' prendre SFX tF rendre renez/n'q'l'm' prendre SFX tF rendre rennent/n'q'l'm't's' prendre SFX tF rendre renais/n'q'j'l'm't' prendre SFX tF rendre renais/n'q'l'm't' prendre SFX tF rendre renait/n'q'l'm't's' prendre SFX tF rendre renions/n'q'l't' prendre SFX tF rendre reniez/n'q'l'm' prendre SFX tF rendre renaient/n'q'l'm't's' prendre SFX tF rendre ris/n'q'j'l'm't' prendre SFX tF rendre ris/n'q'l'm't' prendre SFX tF rendre rit/n'q'l'm't's' prendre SFX tF rendre rîmes/n'q'l't' prendre SFX tF rendre rîtes/n'q'l'm' prendre SFX tF rendre rirent/n'q'l'm't's' prendre SFX tF rendre rendrai/n'q'j'l'm't' prendre SFX tF rendre rendras/n'q'l'm't' prendre SFX tF rendre rendra/n'q'l'm't's' prendre SFX tF rendre rendrons/n'q'l't' prendre SFX tF rendre rendrez/n'q'l'm' prendre SFX tF rendre rendront/n'q'l'm't's' prendre SFX tF rendre rendrais/n'q'j'l'm't' prendre SFX tF rendre rendrais/n'q'l'm't' prendre SFX tF rendre rendrait/n'q'l'm't's' prendre SFX tF rendre rendrions/n'q'l't' prendre SFX tF rendre rendriez/n'q'l'm' prendre SFX tF rendre rendraient/n'q'l'm't's' prendre SFX tF rendre renne/n'j'l'm't' prendre SFX tF rendre rennes/n'l'm't' prendre SFX tF rendre renne/n'l'm't's' prendre SFX tF rendre renions/n'l't' prendre SFX tF rendre reniez/n'l'm' prendre SFX tF rendre rennent/n'l'm't's' prendre SFX tF rendre risse/n'q'j'l'm't' prendre SFX tF rendre risses/n'q'l'm't' prendre SFX tF rendre rît/n'q'l'm't's' prendre SFX tF rendre rissions/n'q'l't' prendre SFX tF rendre rissiez/n'q'l'm' prendre SFX tF rendre rissent/n'q'l'm't's' prendre SFX tF rendre rends/n'l'm' prendre SFX tF rendre renons/n'l' prendre SFX tF rendre renez/n'l'm' prendre SFX tG Y 50 SFX tG prendre prendre/m't's' prendre SFX tG prendre prenant/m't's' prendre SFX tG prendre pris/q' prendre SFX tG prendre prise/q' prendre SFX tG prendre prises/q' prendre SFX tG prendre prends/m' prendre SFX tG prendre prends/t' prendre SFX tG prendre prend/s' prendre SFX tG prendre prenons prendre SFX tG prendre prenez prendre SFX tG prendre prennent/s' prendre SFX tG prendre prenais/m' prendre SFX tG prendre prenais/t' prendre SFX tG prendre prenait/s' prendre SFX tG prendre prenions prendre SFX tG prendre preniez prendre SFX tG prendre prenaient/s' prendre SFX tG prendre pris/m' prendre SFX tG prendre pris/t' prendre SFX tG prendre prit/s' prendre SFX tG prendre prîmes prendre SFX tG prendre prîtes prendre SFX tG prendre prirent/s' prendre SFX tG prendre prendrai/m' prendre SFX tG prendre prendras/t' prendre SFX tG prendre prendra/s' prendre SFX tG prendre prendrons prendre SFX tG prendre prendrez prendre SFX tG prendre prendront/s' prendre SFX tG prendre prendrais/m' prendre SFX tG prendre prendrais/t' prendre SFX tG prendre prendrait/s' prendre SFX tG prendre prendrions prendre SFX tG prendre prendriez prendre SFX tG prendre prendraient/s' prendre SFX tG prendre prenne/m' prendre SFX tG prendre prennes/t' prendre SFX tG prendre prenne/s' prendre SFX tG prendre prenions prendre SFX tG prendre preniez prendre SFX tG prendre prennent/s' prendre SFX tG prendre prisse/m' prendre SFX tG prendre prisses/t' prendre SFX tG prendre prît/s' prendre SFX tG prendre prissions prendre SFX tG prendre prissiez prendre SFX tG prendre prissent/s' prendre SFX tG prendre prends/t' prendre SFX tG prendre prenons prendre SFX tG prendre prenez prendre SFX tM N 39 SFX tM outre outre foutre SFX tM outre outant foutre SFX tM outre outu foutre SFX tM outre outus foutre SFX tM outre outue foutre SFX tM outre outues foutre SFX tM outre ous foutre SFX tM outre ous foutre SFX tM outre out foutre SFX tM outre outons foutre SFX tM outre outez foutre SFX tM outre outent foutre SFX tM outre outais foutre SFX tM outre outais foutre SFX tM outre outait foutre SFX tM outre outions foutre SFX tM outre outiez foutre SFX tM outre outaient foutre SFX tM outre outrai foutre SFX tM outre outras foutre SFX tM outre outra foutre SFX tM outre outrons foutre SFX tM outre outrez foutre SFX tM outre outront foutre SFX tM outre outrais foutre SFX tM outre outrais foutre SFX tM outre outrait foutre SFX tM outre outrions foutre SFX tM outre outriez foutre SFX tM outre outraient foutre SFX tM outre oute foutre SFX tM outre outes foutre SFX tM outre oute foutre SFX tM outre outions foutre SFX tM outre outiez foutre SFX tM outre outent foutre SFX tM outre ous-toi efoutre SFX tM outre outons-nous efoutre SFX tM outre outez-vous efoutre SFX tU N 5 SFX tU istre istre tistre SFX tU istre issu tistre SFX tU istre issue tistre SFX tU istre issus tistre SFX tU istre issues tistre SFX uA Y 54 SFX uA tre tre/n'q'd'l'm't's' tre SFX uA tre tant/n'q'l'm't's' tre SFX uA tre tu/q' tre SFX uA tre tus/q' tre SFX uA tre tue/q' tre SFX uA tre tues/q' tre SFX uA ttre ts/n'q'j'l'm't' ttre SFX uA ttre ts/n'q'l'm't' ttre SFX uA ttre t/n'q'l'm't's' ttre SFX uA tre ts/n'q'j'l'm't' embatre SFX uA tre ts/n'q'l'm't' embatre SFX uA tre t/n'q'l'm't's' embatre SFX uA tre tons/n'q'l't' tre SFX uA tre tez/n'q'l'm' tre SFX uA tre tent/n'q'l'm't's' tre SFX uA tre tais/n'q'j'l'm't' tre SFX uA tre tais/n'q'l'm't' tre SFX uA tre tait/n'q'l'm't's' tre SFX uA tre tions/n'q'l't' tre SFX uA tre tiez/n'q'l'm' tre SFX uA tre taient/n'q'l'm't's' tre SFX uA tre tis/n'q'j'l'm't' tre SFX uA tre tis/n'q'l'm't' tre SFX uA tre tit/n'q'l'm't's' tre SFX uA tre tîmes/n'q'l't' tre SFX uA tre tîtes/n'q'l'm' tre SFX uA tre tirent/n'q'l'm't's' tre SFX uA tre trai/n'q'j'l'm't' tre SFX uA tre tras/n'q'l'm't' tre SFX uA tre tra/n'q'l'm't's' tre SFX uA tre trons/n'q'l't' tre SFX uA tre trez/n'q'l'm' tre SFX uA tre tront/n'q'l'm't's' tre SFX uA tre trais/n'q'j'l'm't' tre SFX uA tre trais/n'q'l'm't' tre SFX uA tre trait/n'q'l'm't's' tre SFX uA tre trions/n'q'l't' tre SFX uA tre triez/n'q'l'm' tre SFX uA tre traient/n'q'l'm't's' tre SFX uA tre te/n'j'l'm't' tre SFX uA tre tes/n'l'm't' tre SFX uA tre te/n'l'm't's' tre SFX uA tre tions/n'l't' tre SFX uA tre tiez/n'l'm' tre SFX uA tre tent/n'q'l'm't's' tre SFX uA tre tisse/n'q'j'l'm't' tre SFX uA tre tisses/n'q'l'm't' tre SFX uA tre tît/n'q'l'm't's' tre SFX uA tre tissions/n'q'l't' tre SFX uA tre tissiez/n'q'l'm' tre SFX uA tre tissent/n'q'l'm't's' tre SFX uA tre s/n'l'm' tre SFX uA tre tons/n'l' tre SFX uA tre tez/n'l'm' tre SFX uC Y 51 SFX uC battre battre/m't's' battre SFX uC battre battant/m't's' battre SFX uC battre battu battre SFX uC battre battus battre SFX uC battre battue battre SFX uC battre battues battre SFX uC battre bats/m' battre SFX uC battre bats/t' battre SFX uC battre bat/s' battre SFX uC battre battons battre SFX uC battre battez battre SFX uC battre battent/s' battre SFX uC battre battais/m' battre SFX uC battre battais/t' battre SFX uC battre battait/s' battre SFX uC battre battions battre SFX uC battre battiez battre SFX uC battre battaient/s' battre SFX uC battre battis/m' battre SFX uC battre battis/t' battre SFX uC battre battit/s' battre SFX uC battre battîmes battre SFX uC battre battîtes battre SFX uC battre battirent/s' battre SFX uC battre battrai/m' battre SFX uC battre battras/t' battre SFX uC battre battra/s' battre SFX uC battre battrons battre SFX uC battre battrez battre SFX uC battre battront/s' battre SFX uC battre battrais/m' battre SFX uC battre battrais/t' battre SFX uC battre battrait/s' battre SFX uC battre battrions battre SFX uC battre battriez battre SFX uC battre battraient/s' battre SFX uC battre batte/m' battre SFX uC battre battes/t' battre SFX uC battre batte/s' battre SFX uC battre battions battre SFX uC battre battiez battre SFX uC battre battent/s' battre SFX uC battre battisse/m' battre SFX uC battre battisses/t' battre SFX uC battre battît/s' battre SFX uC battre battissions battre SFX uC battre battissiez battre SFX uC battre battissent/s' battre SFX uC battre bats/t' battre SFX uC battre battons battre SFX uC battre battez battre SFX uD Y 36 SFX uD battre battre/s' battre SFX uD battre battant/s' battre SFX uD battre battu battre SFX uD battre battus battre SFX uD battre battue battre SFX uD battre battues battre SFX uD battre bat/s' battre SFX uD battre battons battre SFX uD battre battez battre SFX uD battre battent/s' battre SFX uD battre battait/s' battre SFX uD battre battions battre SFX uD battre battiez battre SFX uD battre battaient/s' battre SFX uD battre battit/s' battre SFX uD battre battîmes battre SFX uD battre battîtes battre SFX uD battre battirent/s' battre SFX uD battre battra/s' battre SFX uD battre battrons battre SFX uD battre battrez battre SFX uD battre battront/s' battre SFX uD battre battrait/s' battre SFX uD battre battrions battre SFX uD battre battriez battre SFX uD battre battraient/s' battre SFX uD battre batte/s' battre SFX uD battre battions battre SFX uD battre battiez battre SFX uD battre battent/s' battre SFX uD battre battît/s' battre SFX uD battre battissions battre SFX uD battre battissiez battre SFX uD battre battissent/s' battre SFX uD battre battons-nous battre SFX uD battre battez-vous battre SFX vA Y 50 SFX vA ettre ettre/n'q'd'l'm't's' mettre SFX vA ettre ettant/n'q'l'm't's' mettre SFX vA ettre is/q' mettre SFX vA ettre ise/q' mettre SFX vA ettre ises/q' mettre SFX vA ettre ets/n'q'j'l'm't' mettre SFX vA ettre ets/n'q'l'm't' mettre SFX vA ettre et/n'q'l'm't's' mettre SFX vA ettre ettons/n'q'l't' mettre SFX vA ettre ettez/n'q'l'm' mettre SFX vA ettre ettent/n'q'l'm't's' mettre SFX vA ettre ettais/n'q'j'l'm't' mettre SFX vA ettre ettais/n'q'l'm't' mettre SFX vA ettre ettait/n'q'l'm't's' mettre SFX vA ettre ettions/n'q'l't' mettre SFX vA ettre ettiez/n'q'l'm' mettre SFX vA ettre ettaient/n'q'l'm't's' mettre SFX vA ettre is/n'q'j'l'm't' mettre SFX vA ettre is/n'q'l'm't' mettre SFX vA ettre it/n'q'l'm't's' mettre SFX vA ettre îmes/n'q'l't' mettre SFX vA ettre îtes/n'q'l'm' mettre SFX vA ettre irent/n'q'l'm't's' mettre SFX vA ettre ettrai/n'q'j'l'm't' mettre SFX vA ettre ettras/n'q'l'm't' mettre SFX vA ettre ettra/n'q'l'm't's' mettre SFX vA ettre ettrons/n'q'l't' mettre SFX vA ettre ettrez/n'q'l'm' mettre SFX vA ettre ettront/n'q'l'm't's' mettre SFX vA ettre ettrais/n'q'j'l'm't' mettre SFX vA ettre ettrais/n'q'l'm't' mettre SFX vA ettre ettrait/n'q'l'm't's' mettre SFX vA ettre ettrions/n'q'l't' mettre SFX vA ettre ettriez/n'q'l'm' mettre SFX vA ettre ettraient/n'q'l'm't's' mettre SFX vA ettre ette/n'j'l'm't' mettre SFX vA ettre ettes/n'l'm't' mettre SFX vA ettre ette/n'l'm't's' mettre SFX vA ettre ettions/n'l't' mettre SFX vA ettre ettiez/n'l'm' mettre SFX vA ettre ettent/n'l'm't's' mettre SFX vA ettre isse/n'q'j'l'm't' mettre SFX vA ettre isses/n'q'l'm't' mettre SFX vA ettre ît/n'q'l'm't's' mettre SFX vA ettre issions/n'q'l't' mettre SFX vA ettre issiez/n'q'l'm' mettre SFX vA ettre issent/n'q'l'm't's' mettre SFX vA ettre ets/n'l'm' mettre SFX vA ettre ettons/n'l' mettre SFX vA ettre ettez/n'l'm' mettre SFX vC Y 50 SFX vC mettre mettre/m't's' mettre SFX vC mettre mettant/m't's' mettre SFX vC mettre mis mettre SFX vC mettre mise mettre SFX vC mettre mises mettre SFX vC mettre mets/m' mettre SFX vC mettre mets/t' mettre SFX vC mettre met/s' mettre SFX vC mettre mettons mettre SFX vC mettre mettez mettre SFX vC mettre mettent/s' mettre SFX vC mettre mettais/m' mettre SFX vC mettre mettais/t' mettre SFX vC mettre mettait/s' mettre SFX vC mettre mettions mettre SFX vC mettre mettiez mettre SFX vC mettre mettaient/s' mettre SFX vC mettre mis/m' mettre SFX vC mettre mis/t' mettre SFX vC mettre mit/s' mettre SFX vC mettre mîmes mettre SFX vC mettre mîtes mettre SFX vC mettre mirent/s' mettre SFX vC mettre mettrai/m' mettre SFX vC mettre mettras/t' mettre SFX vC mettre mettra/s' mettre SFX vC mettre mettrons mettre SFX vC mettre mettrez mettre SFX vC mettre mettront/s' mettre SFX vC mettre mettrais/m' mettre SFX vC mettre mettrais/t' mettre SFX vC mettre mettrait/s' mettre SFX vC mettre mettrions mettre SFX vC mettre mettriez mettre SFX vC mettre mettraient/s' mettre SFX vC mettre mette/m' mettre SFX vC mettre mettes/t' mettre SFX vC mettre mette/s' mettre SFX vC mettre mettions mettre SFX vC mettre mettiez mettre SFX vC mettre mettent/s' mettre SFX vC mettre misse/m' mettre SFX vC mettre misses/t' mettre SFX vC mettre mît/s' mettre SFX vC mettre missions mettre SFX vC mettre missiez mettre SFX vC mettre missent/s' mettre SFX vC mettre mets mettre SFX vC mettre mettons mettre SFX vC mettre mettez mettre SFX wA N 51 SFX wA eindre eindre eindre SFX wA eindre eignant eindre SFX wA eindre eint eindre SFX wA eindre eints eindre SFX wA eindre einte eindre SFX wA eindre eintes eindre SFX wA eindre eins eindre SFX wA eindre eins eindre SFX wA eindre eint eindre SFX wA eindre eignons eindre SFX wA eindre eignez eindre SFX wA eindre eignent eindre SFX wA eindre eignais eindre SFX wA eindre eignais eindre SFX wA eindre eignait eindre SFX wA eindre eignions eindre SFX wA eindre eigniez eindre SFX wA eindre eignaient eindre SFX wA eindre eignis eindre SFX wA eindre eignis eindre SFX wA eindre eignit eindre SFX wA eindre eignîmes eindre SFX wA eindre eignîtes eindre SFX wA eindre eignirent eindre SFX wA eindre eindrai eindre SFX wA eindre eindras eindre SFX wA eindre eindra eindre SFX wA eindre eindrons eindre SFX wA eindre eindrez eindre SFX wA eindre eindront eindre SFX wA eindre eindrais eindre SFX wA eindre eindrais eindre SFX wA eindre eindrait eindre SFX wA eindre eindrions eindre SFX wA eindre eindriez eindre SFX wA eindre eindraient eindre SFX wA eindre eigne eindre SFX wA eindre eignes eindre SFX wA eindre eigne eindre SFX wA eindre eignions eindre SFX wA eindre eigniez eindre SFX wA eindre eignent eindre SFX wA eindre eignisse eindre SFX wA eindre eignisses eindre SFX wA eindre eignît eindre SFX wA eindre eignissions eindre SFX wA eindre eignissiez eindre SFX wA eindre eignissent eindre SFX wA eindre eins eindre SFX wA eindre eignons eindre SFX wA eindre eignez eindre SFX wB Y 51 SFX wB indre indre/n'q'd'l'm't's' indre SFX wB indre ignant/n'q'l'm't's' indre SFX wB indre int/q' indre SFX wB indre ints/q' indre SFX wB indre inte/q' indre SFX wB indre intes/q' indre SFX wB indre ins/n'q'j'l'm't' indre SFX wB indre ins/n'q'l'm't' indre SFX wB indre int/n'q'l'm't's' indre SFX wB indre ignons/n'q'l't' indre SFX wB indre ignez/n'q'l'm' indre SFX wB indre ignent/n'q'l'm't's' indre SFX wB indre ignais/n'q'j'l'm't' indre SFX wB indre ignais/n'q'l'm't' indre SFX wB indre ignait/n'q'l'm't's' indre SFX wB indre ignions/n'q'l't' indre SFX wB indre igniez/n'q'l'm' indre SFX wB indre ignaient/n'q'l'm't's' indre SFX wB indre ignis/n'q'j'l'm't' indre SFX wB indre ignis/n'q'l'm't' indre SFX wB indre ignit/n'q'l'm't's' indre SFX wB indre ignîmes/n'q'l't' indre SFX wB indre ignîtes/n'q'l'm' indre SFX wB indre ignirent/n'q'l'm't's' indre SFX wB indre indrai/n'q'j'l'm't' indre SFX wB indre indras/n'q'l'm't' indre SFX wB indre indra/n'q'l'm't's' indre SFX wB indre indrons/n'q'l't' indre SFX wB indre indrez/n'q'l'm' indre SFX wB indre indront/n'q'l'm't's' indre SFX wB indre indrais/n'q'j'l'm't' indre SFX wB indre indrais/n'q'l'm't' indre SFX wB indre indrait/n'q'l'm't's' indre SFX wB indre indrions/n'q'l't' indre SFX wB indre indriez/n'q'l'm' indre SFX wB indre indraient/n'q'l'm't's' indre SFX wB indre igne/n'j'l'm't' indre SFX wB indre ignes/n'l'm't' indre SFX wB indre igne/n'l'm't's' indre SFX wB indre ignions/n'l't' indre SFX wB indre igniez/n'l'm' indre SFX wB indre ignent/n'l'm't's' indre SFX wB indre ignisse/n'q'j'l'm't' indre SFX wB indre ignisses/n'q'l'm't' indre SFX wB indre ignît/n'q'l'm't's' indre SFX wB indre ignissions/n'q'l't' indre SFX wB indre ignissiez/n'q'l'm' indre SFX wB indre ignissent/n'q'l'm't's' indre SFX wB indre ins/n'l'm' indre SFX wB indre ignons/n'l' indre SFX wB indre ignez/n'l'm' indre SFX wD N 54 SFX wD aire aire faire SFX wD aire aisant faire SFX wD aire ait faire SFX wD aire aits faire SFX wD aire aite faire SFX wD aire aites faire SFX wD aire ais faire SFX wD aire ais faire SFX wD aire ait faire SFX wD aire aisons faire SFX wD aire aites faire SFX wD aire ont faire SFX wD aire aisais faire SFX wD aire aisais faire SFX wD aire aisait faire SFX wD aire aisions faire SFX wD aire aisiez faire SFX wD aire aisaient faire SFX wD aire is faire SFX wD aire is faire SFX wD aire it faire SFX wD aire îmes faire SFX wD aire îtes faire SFX wD aire irent faire SFX wD aire erai faire SFX wD aire eras faire SFX wD aire era faire SFX wD aire erons faire SFX wD aire erez faire SFX wD aire eront faire SFX wD aire erais faire SFX wD aire erais faire SFX wD aire erait faire SFX wD aire erions faire SFX wD aire eriez faire SFX wD aire eraient faire SFX wD aire asse faire SFX wD aire asses faire SFX wD aire asse faire SFX wD aire assions faire SFX wD aire assiez faire SFX wD aire assent faire SFX wD aire isse faire SFX wD aire isses faire SFX wD aire ît faire SFX wD aire issions faire SFX wD aire issiez faire SFX wD aire issent faire SFX wD aire ais faire SFX wD aire ais satisfaire SFX wD aire aisons faire SFX wD aire aisons satisfaire SFX wD aire aites faire SFX wD aire aites satisfaire SFX wF N 15 SFX wF faire faire faire SFX wF faire faisant faire SFX wF faire fait faire SFX wF faire faits faire SFX wF faire faite faire SFX wF faire faites faire SFX wF faire fais faire SFX wF faire fais faire SFX wF faire fait faire SFX wF faire faisons faire SFX wF faire faites faire SFX wF faire font faire SFX wF faire fais faire SFX wF faire faisons faire SFX wF faire faites faire SFX wG N 6 SFX wG aire aire faire SFX wG aire aisant faire SFX wG aire ait faire SFX wG aire aits faire SFX wG aire aite faire SFX wG aire aites faire SFX wL Y 42 SFX wL raire raire/n'q'd'l'm't's' traire SFX wL raire rayant/n'q'l'm't's' traire SFX wL raire rait/q' traire SFX wL raire raits/q' traire SFX wL raire raite/q' traire SFX wL raire raites/q' traire SFX wL raire rais/n'q'j'l'm't' traire SFX wL raire rais/n'q'l'm't' traire SFX wL raire rait/n'q'l'm't's' traire SFX wL raire rayons/n'q'l't' traire SFX wL raire rayez/n'q'l'm' traire SFX wL raire raient/n'q'l'm't's' traire SFX wL raire rayais/n'q'j'l'm't' traire SFX wL raire rayais/n'q'l'm't' traire SFX wL raire rayait/n'q'l'm't's' traire SFX wL raire rayions/n'q'l't' traire SFX wL raire rayiez/n'q'l'm' traire SFX wL raire rayaient/n'q'l'm't's' traire SFX wL raire rairai/n'q'j'l'm't' traire SFX wL raire rairas/n'q'l'm't' traire SFX wL raire raira/n'q'l'm't's' traire SFX wL raire rairons/n'q'l't' traire SFX wL raire rairez/n'q'l'm' traire SFX wL raire rairont/n'q'l'm't's' traire SFX wL raire rairais/n'q'j'l'm't' traire SFX wL raire rairais/n'q'l'm't' traire SFX wL raire rairait/n'q'l'm't's' traire SFX wL raire rairions/n'q'l't' traire SFX wL raire rairiez/n'q'l'm' traire SFX wL raire rairaient/n'q'l'm't's' traire SFX wL raire raie/n'q'j'l'm't' traire SFX wL raire raies/n'q'l'm't' traire SFX wL raire raie/n'q'l'm't's' traire SFX wL raire rayions/n'q'l't' traire SFX wL raire rayiez/n'q'l'm' traire SFX wL raire raient/n'q'l'm't's' traire SFX wL raire rais/n'l'm' traire SFX wL raire rais/t' [^e]traire SFX wL raire rayons/n'l' traire SFX wL raire rayons [^e]traire SFX wL raire rayez/n'l'm' traire SFX wL raire rayez [^e]traire SFX wM N 39 SFX wM aire aire raire SFX wM aire ayant raire SFX wM aire ait raire SFX wM aire ais raire SFX wM aire ais raire SFX wM aire ait raire SFX wM aire ayons raire SFX wM aire ayez raire SFX wM aire aient raire SFX wM aire ayais raire SFX wM aire ayais raire SFX wM aire ayait raire SFX wM aire ayions raire SFX wM aire ayiez raire SFX wM aire ayaient raire SFX wM aire airai raire SFX wM aire airas raire SFX wM aire aira raire SFX wM aire airons raire SFX wM aire airez raire SFX wM aire airont raire SFX wM aire airais raire SFX wM aire airais raire SFX wM aire airait raire SFX wM aire airions raire SFX wM aire airiez raire SFX wM aire airaient raire SFX wM aire aie raire SFX wM aire aies raire SFX wM aire aie raire SFX wM aire ayions raire SFX wM aire ayiez raire SFX wM aire aient raire SFX wM aire ais raire SFX wM aire ais braire SFX wM aire ayons raire SFX wM aire ayons braire SFX wM aire ayez raire SFX wM aire ayez braire SFX wN N 55 SFX wN aire aire aire SFX wN aire aisant aire SFX wN aire u aire SFX wN aire us taire SFX wN aire ue taire SFX wN aire ues taire SFX wN aire ais aire SFX wN aire ais aire SFX wN aire ait taire SFX wN aire aît plaire SFX wN aire aisons aire SFX wN aire aisez aire SFX wN aire aisent aire SFX wN aire aisais aire SFX wN aire aisais aire SFX wN aire aisait aire SFX wN aire aisions aire SFX wN aire aisiez aire SFX wN aire aisaient aire SFX wN aire us aire SFX wN aire us aire SFX wN aire ut aire SFX wN aire ûmes aire SFX wN aire ûtes aire SFX wN aire urent aire SFX wN aire airai aire SFX wN aire airas aire SFX wN aire aira aire SFX wN aire airons aire SFX wN aire airez aire SFX wN aire airont aire SFX wN aire airais aire SFX wN aire airais aire SFX wN aire airait aire SFX wN aire airions aire SFX wN aire airiez aire SFX wN aire airaient aire SFX wN aire aise aire SFX wN aire aises aire SFX wN aire aise aire SFX wN aire aisions aire SFX wN aire aisiez aire SFX wN aire aisent aire SFX wN aire usse aire SFX wN aire usses aire SFX wN aire ût aire SFX wN aire ussions aire SFX wN aire ussiez aire SFX wN aire ussent aire SFX wN aire ais plaire SFX wN aire ais taire SFX wN aire aisons plaire SFX wN aire aisons taire SFX wN aire aisez plaire SFX wN aire aisez taire SFX wO N 54 SFX wO aindre aindre aindre SFX wO aindre aignant aindre SFX wO aindre aint aindre SFX wO aindre aints aindre SFX wO aindre ainte aindre SFX wO aindre aintes aindre SFX wO aindre ains aindre SFX wO aindre ains aindre SFX wO aindre aint aindre SFX wO aindre aignons aindre SFX wO aindre aignez aindre SFX wO aindre aignent aindre SFX wO aindre aignais aindre SFX wO aindre aignais aindre SFX wO aindre aignait aindre SFX wO aindre aignions aindre SFX wO aindre aigniez aindre SFX wO aindre aignaient aindre SFX wO aindre aignis aindre SFX wO aindre aignis aindre SFX wO aindre aignit aindre SFX wO aindre aignîmes aindre SFX wO aindre aignîtes aindre SFX wO aindre aignirent aindre SFX wO aindre aindrai aindre SFX wO aindre aindras aindre SFX wO aindre aindra aindre SFX wO aindre aindrons aindre SFX wO aindre aindrez aindre SFX wO aindre aindront aindre SFX wO aindre aindrais aindre SFX wO aindre aindrais aindre SFX wO aindre aindrait aindre SFX wO aindre aindrions aindre SFX wO aindre aindriez aindre SFX wO aindre aindraient aindre SFX wO aindre aigne aindre SFX wO aindre aignes aindre SFX wO aindre aigne aindre SFX wO aindre aignions aindre SFX wO aindre aigniez aindre SFX wO aindre aignent aindre SFX wO aindre aignisse aindre SFX wO aindre aignisses aindre SFX wO aindre aignît aindre SFX wO aindre aignissions aindre SFX wO aindre aignissiez aindre SFX wO aindre aignissent aindre SFX wO aindre ains aindre SFX wO aindre ains [tp].aindre SFX wO aindre aignons aindre SFX wO aindre aignons [tp].aindre SFX wO aindre aignez aindre SFX wO aindre aignez [tp].aindre SFX wP N 51 SFX wP aincre aincre vaincre SFX wP aincre ainquant vaincre SFX wP aincre aincu vaincre SFX wP aincre aincus vaincre SFX wP aincre aincue vaincre SFX wP aincre aincues vaincre SFX wP aincre aincs vaincre SFX wP aincre aincs vaincre SFX wP aincre ainc vaincre SFX wP aincre ainquons vaincre SFX wP aincre ainquez vaincre SFX wP aincre ainquent vaincre SFX wP aincre ainquais vaincre SFX wP aincre ainquais vaincre SFX wP aincre ainquait vaincre SFX wP aincre ainquions vaincre SFX wP aincre ainquiez vaincre SFX wP aincre ainquaient vaincre SFX wP aincre ainquis vaincre SFX wP aincre ainquis vaincre SFX wP aincre ainquit vaincre SFX wP aincre ainquîmes vaincre SFX wP aincre ainquîtes vaincre SFX wP aincre ainquirent vaincre SFX wP aincre aincrai vaincre SFX wP aincre aincras vaincre SFX wP aincre aincra vaincre SFX wP aincre aincrons vaincre SFX wP aincre aincrez vaincre SFX wP aincre aincront vaincre SFX wP aincre aincrais vaincre SFX wP aincre aincrais vaincre SFX wP aincre aincrait vaincre SFX wP aincre aincrions vaincre SFX wP aincre aincriez vaincre SFX wP aincre aincraient vaincre SFX wP aincre ainque vaincre SFX wP aincre ainques vaincre SFX wP aincre ainque vaincre SFX wP aincre ainquions vaincre SFX wP aincre ainquiez vaincre SFX wP aincre ainquent vaincre SFX wP aincre ainquisse vaincre SFX wP aincre ainquisses vaincre SFX wP aincre ainquît vaincre SFX wP aincre ainquissions vaincre SFX wP aincre ainquissiez vaincre SFX wP aincre ainquissent vaincre SFX wP aincre aincs vaincre SFX wP aincre ainquons vaincre SFX wP aincre ainquez vaincre SFX wQ Y 54 SFX wQ tre tre/n'q'd'm't's' tre SFX wQ aître aissant/n'q'd'm't's' aître SFX wQ aître u/q' aître SFX wQ aître us/q' aître SFX wQ aître ue/q' aître SFX wQ aître ues/q' aître SFX wQ aître ais/n'q'j'l't' aître SFX wQ aître ais/n'q'l'm' aître SFX wQ aître aît/n'q'l'm't's' aître SFX wQ aître aissons/n'q'l't' aître SFX wQ aître aissez/n'q'l'm' aître SFX wQ aître aissont/n'q'l'm't's' aître SFX wQ aître aissais/n'q'j'l't' aître SFX wQ aître aissais/n'q'l'm' aître SFX wQ aître aissait/n'q'l'm't's' aître SFX wQ aître aissions/n'q'l't' aître SFX wQ aître aissiez/n'q'l'm' aître SFX wQ aître aissaient/n'q'l'm't's' aître SFX wQ aître us/n'q'j'l't' aître SFX wQ aître us/n'q'l'm' aître SFX wQ aître ut/n'q'l'm't's' aître SFX wQ aître ûmes/n'q'l't' aître SFX wQ aître ûtes/n'q'l'm' aître SFX wQ aître urent/n'q'l'm't's' aître SFX wQ tre trai/n'q'j'l't' tre SFX wQ tre tras/n'q'l'm' tre SFX wQ tre tra/n'q'l'm't's' tre SFX wQ tre trons/n'q'l't' tre SFX wQ tre trez/n'q'l'm' tre SFX wQ tre tront/n'q'l'm't's' tre SFX wQ tre trais/n'q'j'l't' tre SFX wQ tre trais/n'q'l'm' tre SFX wQ tre trait/n'q'l'm't's' tre SFX wQ tre trions/n'q'l't' tre SFX wQ tre triez/n'q'l'm' tre SFX wQ tre traient/n'q'l'm't's' tre SFX wQ aître aisse/n'q'j'l't' aître SFX wQ aître aisses/n'q'l'm' aître SFX wQ aître aisse/n'q'l'm't's' aître SFX wQ aître aissions/n'q'l't' aître SFX wQ aître aissiez/n'q'l'm' aître SFX wQ aître aissent/n'q'l'm't's' aître SFX wQ aître usse/n'q'j'l't' aître SFX wQ aître usses/n'q'l'm' aître SFX wQ aître ût/n'q'l'm't's' aître SFX wQ aître ussions/n'q'l't' aître SFX wQ aître ussiez/n'q'l'm' aître SFX wQ aître ussent/n'q'l'm't's' aître SFX wQ aître ais/n'm' paraître SFX wQ aître ais connaître SFX wQ aître aissons/n' paraître SFX wQ aître aissons connaître SFX wQ aître aissez/n'm' paraître SFX wQ aître aissez connaître SFX wR N 51 SFX wR tre tre tre SFX wR aître aissant naître SFX wR aître é naître SFX wR aître és naître SFX wR aître ée naître SFX wR aître ées naître SFX wR aître ais naître SFX wR aître ais naître SFX wR aître aît naître SFX wR aître aissons naître SFX wR aître aissez naître SFX wR aître aissent naître SFX wR aître aissais naître SFX wR aître aissais naître SFX wR aître aissait naître SFX wR aître aissions naître SFX wR aître aissiez naître SFX wR aître aissaient naître SFX wR aître aquis naître SFX wR aître aquis naître SFX wR aître aquit naître SFX wR aître aquîmes naître SFX wR aître aquîtes naître SFX wR aître aquirent naître SFX wR tre trai tre SFX wR tre tras tre SFX wR tre tra tre SFX wR tre trons tre SFX wR tre trez tre SFX wR tre tront tre SFX wR tre trais tre SFX wR tre trais tre SFX wR tre trait tre SFX wR tre trions tre SFX wR tre triez tre SFX wR tre traient tre SFX wR aître aisse naître SFX wR aître aisses naître SFX wR aître aisse naître SFX wR aître aissions naître SFX wR aître aissiez naître SFX wR aître aissent naître SFX wR aître aquisse naître SFX wR aître aquisses naître SFX wR aître aquît naître SFX wR aître aquissions naître SFX wR aître aquissiez naître SFX wR aître aquissent naître SFX wR aître ais naître SFX wR aître aissons naître SFX wR aître aissez naître SFX wS N 54 SFX wS tre tre tre SFX wS aître aissant paître SFX wS aître u repaître SFX wS aître us repaître SFX wS aître ue repaître SFX wS aître ues repaître SFX wS aître ais paître SFX wS aître ais paître SFX wS aître aît paître SFX wS aître aissons paître SFX wS aître aissez paître SFX wS aître aissent paître SFX wS aître aissais paître SFX wS aître aissais paître SFX wS aître aissait paître SFX wS aître aissions paître SFX wS aître aissiez paître SFX wS aître aissaient paître SFX wS aître us repaître SFX wS aître us repaître SFX wS aître ut repaître SFX wS aître ûmes repaître SFX wS aître ûtes repaître SFX wS aître urent repaître SFX wS tre trai tre SFX wS tre tras tre SFX wS tre tra tre SFX wS tre trons tre SFX wS tre trez tre SFX wS tre tront tre SFX wS tre trais tre SFX wS tre trais tre SFX wS tre trait tre SFX wS tre trions tre SFX wS tre triez tre SFX wS tre traient tre SFX wS aître aisse paître SFX wS aître aisses paître SFX wS aître aisse paître SFX wS aître aissions paître SFX wS aître aissiez paître SFX wS aître aissent paître SFX wS aître usse repaître SFX wS aître usses repaître SFX wS aître ût repaître SFX wS aître ussions repaître SFX wS aître ussiez repaître SFX wS aître ussent repaître SFX wS aître ais paître SFX wS aître ais repaître SFX wS aître aissons paître SFX wS aître aissons repaître SFX wS aître aissez paître SFX wS aître aissez repaître SFX wT N 54 SFX wT tre tre tre SFX wT roître roissant croître SFX wT roître rû recroître SFX wT roître rûs recroître SFX wT roître rûe recroître SFX wT roître rûes recroître SFX wT roître ru décroître SFX wT roître rus décroître SFX wT roître rue décroître SFX wT roître rues décroître SFX wT roître rois .croître SFX wT roître rois .croître SFX wT roître roit .croître SFX wT roître roissons croître SFX wT roître roissez croître SFX wT roître roissent croître SFX wT roître roissais croître SFX wT roître roissais croître SFX wT roître roissait croître SFX wT roître roissions croître SFX wT roître roissiez croître SFX wT roître roissaient croître SFX wT roître rus .croître SFX wT roître rus .croître SFX wT roître rut .croître SFX wT roître rûmes croître SFX wT roître rûtes croître SFX wT roître rurent .croître SFX wT tre trai tre SFX wT tre tras tre SFX wT tre tra tre SFX wT tre trons tre SFX wT tre trez tre SFX wT tre tront tre SFX wT tre trais tre SFX wT tre trais tre SFX wT tre trait tre SFX wT tre trions tre SFX wT tre triez tre SFX wT tre traient tre SFX wT roître roisse croître SFX wT roître roisses croître SFX wT roître roisse croître SFX wT roître roissions croître SFX wT roître roissiez croître SFX wT roître roissent croître SFX wT roître russe .croître SFX wT roître russes .croître SFX wT roître rût croître SFX wT roître russions .croître SFX wT roître russiez .croître SFX wT roître russent .croître SFX wT roître roissons croître SFX wT roître roissez croître SFX wU N 17 SFX wU roître rû croître SFX wU roître rûs croître SFX wU roître rûe croître SFX wU roître rûes croître SFX wU roître roîs croître SFX wU roître roîs croître SFX wU roître roît croître SFX wU roître rûs croître SFX wU roître rûs croître SFX wU roître rût croître SFX wU roître rûrent croître SFX wU roître rûsse croître SFX wU roître rûsses croître SFX wU roître rûssions croître SFX wU roître rûssiez croître SFX wU roître rûssent croître SFX wU roître roîs croître SFX wV Y 51 SFX wV tre tre/n'q'd'l'm't's' tre SFX wV croître croissant/n'q'd'l'm't's' croître SFX wV croître cru/q' croître SFX wV croître crus/q' croître SFX wV croître crue/q' croître SFX wV croître crues/q' croître SFX wV croître crois/n'q'j'l'm' croître SFX wV croître crois/n'q'l't' croître SFX wV croître croît/n'q'l's' croître SFX wV croître croissons/n'q'l' croître SFX wV croître croissez/n'q'l' croître SFX wV croître croissent/n'q'l's' croître SFX wV croître croissais/n'q'j'l'm' croître SFX wV croître croissais/n'q'l't' croître SFX wV croître croissait/n'q'l's' croître SFX wV croître croissions/n'q'l' croître SFX wV croître croissiez/n'q'l' croître SFX wV croître croissaient/n'q'l's' croître SFX wV croître crus/n'q'j'l'm' croître SFX wV croître crus/n'q'l't' croître SFX wV croître crut/n'q'l's' croître SFX wV croître crûmes/n'q'l' croître SFX wV croître crûtes/n'q'l' croître SFX wV croître crurent/n'q'l's' croître SFX wV tre trai/n'q'j'l'm' tre SFX wV tre tras/n'q'l't' tre SFX wV tre tra/n'q'l's' tre SFX wV tre trons/n'q'l' tre SFX wV tre trez/n'q'l' tre SFX wV tre tront/n'q'l's' tre SFX wV tre trais/n'q'j'l'm' tre SFX wV tre trais/n'q'l't' tre SFX wV tre trait/n'q'l's' tre SFX wV tre trions/n'q'l' tre SFX wV tre triez/n'q'l' tre SFX wV tre traient/n'q'l's' tre SFX wV croître croisse/n'q'j'l'm' croître SFX wV croître croisses/n'q'l't' croître SFX wV croître croisse/n'q'l's' croître SFX wV croître croissions/n'q'l' croître SFX wV croître croissiez/n'q'l' croître SFX wV croître croissent/n'q'l's' croître SFX wV croître crusse/n'q'j'l'm' croître SFX wV croître crusses/n'q'l't' croître SFX wV croître crût/n'q'l's' croître SFX wV croître crussions/n'q'l' croître SFX wV croître crussiez/n'q'l' croître SFX wV croître crussent/n'q'l's' croître SFX wV croître crois/n'l'm' croître SFX wV croître croissons/n'l' croître SFX wV croître croissez/n'l'm' croître SFX xA N 51 SFX xA roire roire croire SFX xA roire royant croire SFX xA roire ru croire SFX xA roire rus croire SFX xA roire rue croire SFX xA roire rues croire SFX xA roire rois croire SFX xA roire rois croire SFX xA roire roit croire SFX xA roire royons croire SFX xA roire royez croire SFX xA roire roient croire SFX xA roire royais croire SFX xA roire royais croire SFX xA roire royait croire SFX xA roire royions croire SFX xA roire royiez croire SFX xA roire royaient croire SFX xA roire rus croire SFX xA roire rus croire SFX xA roire rut croire SFX xA roire rûmes croire SFX xA roire rûtes croire SFX xA roire rurent croire SFX xA roire roirai croire SFX xA roire roiras croire SFX xA roire roira croire SFX xA roire roirons croire SFX xA roire roirez croire SFX xA roire roiront croire SFX xA roire roirais croire SFX xA roire roirais croire SFX xA roire roirait croire SFX xA roire roirions croire SFX xA roire roiriez croire SFX xA roire roiraient croire SFX xA roire roie croire SFX xA roire roies croire SFX xA roire roie croire SFX xA roire royions croire SFX xA roire royiez croire SFX xA roire roient croire SFX xA roire russe croire SFX xA roire russes croire SFX xA roire rût croire SFX xA roire russions croire SFX xA roire russiez croire SFX xA roire russent croire SFX xA roire rois croire SFX xA roire royons croire SFX xA roire royez croire SFX xB Y 1 SFX xB croire croire/n'q'd'l' accroire SFX xC N 51 SFX xC oire oire boire SFX xC oire uvant boire SFX xC oire u boire SFX xC oire us boire SFX xC oire ue boire SFX xC oire ues boire SFX xC oire ois boire SFX xC oire ois boire SFX xC oire oit boire SFX xC oire uvons boire SFX xC oire uvez boire SFX xC oire oivent boire SFX xC oire uvais boire SFX xC oire uvais boire SFX xC oire uvait boire SFX xC oire uvions boire SFX xC oire uviez boire SFX xC oire uvaient boire SFX xC oire us boire SFX xC oire us boire SFX xC oire ut boire SFX xC oire ûmes boire SFX xC oire ûtes boire SFX xC oire urent boire SFX xC oire oirai boire SFX xC oire oiras boire SFX xC oire oira boire SFX xC oire oirons boire SFX xC oire oirez boire SFX xC oire oiront boire SFX xC oire oirais boire SFX xC oire oirais boire SFX xC oire oirait boire SFX xC oire oirions boire SFX xC oire oiriez boire SFX xC oire oiraient boire SFX xC oire oive boire SFX xC oire oives boire SFX xC oire oive boire SFX xC oire uvions boire SFX xC oire uviez boire SFX xC oire oivent boire SFX xC oire usse boire SFX xC oire usses boire SFX xC oire ût boire SFX xC oire ussions boire SFX xC oire ussiez boire SFX xC oire ussent boire SFX xC oire ois boire SFX xC oire uvons boire SFX xC oire uvez boire SFX xD Y 51 SFX xD boire boire/m't's' boire SFX xD boire buvant/m't's' boire SFX xD boire bu boire SFX xD boire bus boire SFX xD boire bue boire SFX xD boire bues boire SFX xD boire bois/m' boire SFX xD boire bois/t' boire SFX xD boire boit/s' boire SFX xD boire buvons boire SFX xD boire buvez boire SFX xD boire boivent/s' boire SFX xD boire buvais/m' boire SFX xD boire buvais/t' boire SFX xD boire buvait/s' boire SFX xD boire buvions boire SFX xD boire buviez boire SFX xD boire buvaient/s' boire SFX xD boire bus/m' boire SFX xD boire bus/t' boire SFX xD boire but/s' boire SFX xD boire bûmes boire SFX xD boire bûtes boire SFX xD boire burent/s' boire SFX xD boire boirai/m' boire SFX xD boire boiras/t' boire SFX xD boire boira/s' boire SFX xD boire boirons boire SFX xD boire boirez boire SFX xD boire boiront/s' boire SFX xD boire boirais/m' boire SFX xD boire boirais/t' boire SFX xD boire boirait/s' boire SFX xD boire boirions boire SFX xD boire boiriez boire SFX xD boire boiraient/s' boire SFX xD boire boive/m' boire SFX xD boire boives/t' boire SFX xD boire boive/s' boire SFX xD boire buvions boire SFX xD boire buviez boire SFX xD boire boivent/s' boire SFX xD boire busse/m' boire SFX xD boire busses/t' boire SFX xD boire bût/s' boire SFX xD boire bussions boire SFX xD boire bussiez boire SFX xD boire bussent/s' boire SFX xD boire bois/t' boire SFX xD boire buvons boire SFX xD boire buvez boire SFX xJ N 4 SFX xJ clure clure clure SFX xJ clure clus clure SFX xJ clure cluse clure SFX xJ clure cluses clure SFX xK Y 50 SFX xK clure clure/n'q'd'l'm't's' clure SFX xK clure cluant/n'q'l'm't's' clure SFX xK clure clus/q' clure SFX xK clure cluse/q' clure SFX xK clure cluses/q' clure SFX xK clure clus/n'q'j'l' clure SFX xK clure clus/n'q'l' clure SFX xK clure clut/n'q'l' clure SFX xK clure cluons/n'q'l' clure SFX xK clure cluez/n'q'l' clure SFX xK clure cluent/n'q'l' clure SFX xK clure cluais/n'q'j'l' clure SFX xK clure cluais/n'q'l' clure SFX xK clure cluait/n'q'l' clure SFX xK clure cluions/n'q'l' clure SFX xK clure cluiez/n'q'l' clure SFX xK clure cluaient/n'q'l' clure SFX xK clure clus/n'q'j'l' clure SFX xK clure clus/n'q'l' clure SFX xK clure clut/n'q'l' clure SFX xK clure clûmes/n'q'l' clure SFX xK clure clûtes/n'q'l' clure SFX xK clure clurent/n'q'l' clure SFX xK clure clurai/n'q'j'l' clure SFX xK clure cluras/n'q'l' clure SFX xK clure clura/n'q'l' clure SFX xK clure clurons/n'q'l' clure SFX xK clure clurez/n'q'l' clure SFX xK clure cluront/n'q'l' clure SFX xK clure clurais/n'q'j'l' clure SFX xK clure clurais/n'q'l' clure SFX xK clure clurait/n'q'l' clure SFX xK clure clurions/n'q'l' clure SFX xK clure cluriez/n'q'l' clure SFX xK clure cluraient/n'q'l' clure SFX xK clure clue/n'q'j'l' clure SFX xK clure clues/n'q'l' clure SFX xK clure clue/n'q'l' clure SFX xK clure cluions/n'q'l' clure SFX xK clure cluiez/n'q'l' clure SFX xK clure cluent/n'q'l' clure SFX xK clure clusse/n'q'j'l' clure SFX xK clure clusses/n'q'l' clure SFX xK clure clût/n'q'l' clure SFX xK clure clussions/n'q'l' clure SFX xK clure clussiez/n'q'l' clure SFX xK clure clussent/n'q'l' clure SFX xK clure clus/n'l' clure SFX xK clure cluons/n'l' clure SFX xK clure cluez/n'l' clure SFX xL Y 57 SFX xL clure clure/n'q'd'l'm't's' clure SFX xL clure cluant/n'q'l'm't's' clure SFX xL clure clus/q' inclure SFX xL clure cluse/q' inclure SFX xL clure cluses/q' inclure SFX xL clure clu/q' [eo].clure SFX xL clure clus/q' [eo].clure SFX xL clure clue/q' [eo].clure SFX xL clure clues/q' [eo].clure SFX xL clure clus/n'q'j'l'm't' clure SFX xL clure clus/n'q'l'm't' clure SFX xL clure clut/n'q'l'm't's' clure SFX xL clure cluons/n'q'l't' clure SFX xL clure cluez/n'q'l'm' clure SFX xL clure cluent/n'q'l'm't's' clure SFX xL clure cluais/n'q'j'l'm't' clure SFX xL clure cluais/n'q'l'm't' clure SFX xL clure cluait/n'q'l'm't's' clure SFX xL clure cluions/n'q'l't' clure SFX xL clure cluiez/n'q'l'm' clure SFX xL clure cluaient/n'q'l'm't's' clure SFX xL clure clus/n'q'j'l'm't' clure SFX xL clure clus/n'q'l'm't' clure SFX xL clure clut/n'q'l'm't's' clure SFX xL clure clûmes/n'q'l't' clure SFX xL clure clûtes/n'q'l'm' clure SFX xL clure clurent/n'q'l'm't's' clure SFX xL clure clurai/n'q'j'l'm't' clure SFX xL clure cluras/n'q'l'm't' clure SFX xL clure clura/n'q'l'm't's' clure SFX xL clure clurons/n'q'l't' clure SFX xL clure clurez/n'q'l'm' clure SFX xL clure cluront/n'q'l'm't's' clure SFX xL clure clurais/n'q'j'l'm't' clure SFX xL clure clurais/n'q'l'm't' clure SFX xL clure clurait/n'q'l'm't's' clure SFX xL clure clurions/n'q'l't' clure SFX xL clure cluriez/n'q'l'm' clure SFX xL clure cluraient/n'q'l'm't's' clure SFX xL clure clue/n'j'l'm't' clure SFX xL clure clues/n'l'm't' clure SFX xL clure clue/n'l'm't's' clure SFX xL clure cluions/n'l't' clure SFX xL clure cluiez/n'l'm' clure SFX xL clure cluent/n'q'l'm't's' clure SFX xL clure clusse/n'q'j'l'm't' clure SFX xL clure clusses/n'q'l'm't' clure SFX xL clure clût/n'q'l'm't's' clure SFX xL clure clussions/n'q'l't' clure SFX xL clure clussiez/n'q'l'm' clure SFX xL clure clussent/n'q'l'm't's' clure SFX xL clure clus/n'l'm' clure SFX xL clure clus/t' exclure SFX xL clure cluons/n'l' clure SFX xL clure cluons exclure SFX xL clure cluez/n'l'm' clure SFX xL clure cluez exclure SFX xM N 5 SFX xM ourdre ourdre sourdre SFX xM ourdre ourd sourdre SFX xM ourdre ourdent sourdre SFX xM ourdre ourdait sourdre SFX xM ourdre ourdaient sourdre SFX xN Y 54 SFX xN soudre soudre/n'q'd'l'm't's' soudre SFX xN soudre solvant/n'q'l'm't's' soudre SFX xN soudre sous/q' soudre SFX xN soudre soute/q' soudre SFX xN soudre soutes/q' soudre SFX xN soudre solu/q' résoudre SFX xN soudre solus/q' résoudre SFX xN soudre solue/q' résoudre SFX xN soudre solues/q' résoudre SFX xN soudre sous/n'q'j'l'm't' soudre SFX xN soudre sous/n'q'l'm't' soudre SFX xN soudre sout/n'q'l'm't's' soudre SFX xN soudre solvons/n'q'l't' soudre SFX xN soudre solvez/n'q'l'm' soudre SFX xN soudre solvent/n'q'l'm't's' soudre SFX xN soudre solvais/n'q'j'l'm't' soudre SFX xN soudre solvais/n'q'l'm't' soudre SFX xN soudre solvait/n'q'l'm't's' soudre SFX xN soudre solvions/n'q'l't' soudre SFX xN soudre solviez/n'q'l'm' soudre SFX xN soudre solvaient/n'q'l'm't's' soudre SFX xN soudre solus/n'q'j'l'm't' soudre SFX xN soudre solus/n'q'l'm't' soudre SFX xN soudre solut/n'q'l'm't's' soudre SFX xN soudre solûmes/n'q'l't' soudre SFX xN soudre solûtes/n'q'l'm' soudre SFX xN soudre solurent/n'q'l'm't's' soudre SFX xN soudre soudrai/n'q'j'l'm't' soudre SFX xN soudre soudras/n'q'l'm't' soudre SFX xN soudre soudra/n'q'l'm't's' soudre SFX xN soudre soudrons/n'q'l't' soudre SFX xN soudre soudrez/n'q'l'm' soudre SFX xN soudre soudront/n'q'l'm't's' soudre SFX xN soudre soudrais/n'q'j'l'm't' soudre SFX xN soudre soudrais/n'q'l'm't' soudre SFX xN soudre soudrait/n'q'l'm't's' soudre SFX xN soudre soudrions/n'q'l't' soudre SFX xN soudre soudriez/n'q'l'm' soudre SFX xN soudre soudraient/n'q'l'm't's' soudre SFX xN soudre solve/n'j'l'm't' soudre SFX xN soudre solves/n'l'm't' soudre SFX xN soudre solve/n'l'm't's' soudre SFX xN soudre solvions/n'l't' soudre SFX xN soudre solviez/n'l'm' soudre SFX xN soudre solvent/n'l'm't's' soudre SFX xN soudre solusse/n'q'j'l'm't' soudre SFX xN soudre solusses/n'q'l'm't' soudre SFX xN soudre solût/n'q'l'm't's' soudre SFX xN soudre solussions/n'q'l't' soudre SFX xN soudre solussiez/n'q'l'm' soudre SFX xN soudre solussent/n'q'l'm't's' soudre SFX xN soudre sous/n'l'm' soudre SFX xN soudre solvons/n'l' soudre SFX xN soudre solvez/n'l'm' soudre SFX xO N 51 SFX xO oudre oudre coudre SFX xO oudre ousant coudre SFX xO oudre ousu coudre SFX xO oudre ousus coudre SFX xO oudre ousue coudre SFX xO oudre ousues coudre SFX xO oudre ouds coudre SFX xO oudre ouds coudre SFX xO oudre oud coudre SFX xO oudre ousons coudre SFX xO oudre ousez coudre SFX xO oudre ousent coudre SFX xO oudre ousais coudre SFX xO oudre ousais coudre SFX xO oudre ousait coudre SFX xO oudre ousions coudre SFX xO oudre ousiez coudre SFX xO oudre ousaient coudre SFX xO oudre ousis coudre SFX xO oudre ousis coudre SFX xO oudre ousit coudre SFX xO oudre ousîmes coudre SFX xO oudre ousîtes coudre SFX xO oudre ousirent coudre SFX xO oudre oudrai coudre SFX xO oudre oudras coudre SFX xO oudre oudra coudre SFX xO oudre oudrons coudre SFX xO oudre oudrez coudre SFX xO oudre oudront coudre SFX xO oudre oudrais coudre SFX xO oudre oudrais coudre SFX xO oudre oudrait coudre SFX xO oudre oudrions coudre SFX xO oudre oudriez coudre SFX xO oudre oudraient coudre SFX xO oudre ouse coudre SFX xO oudre ouses coudre SFX xO oudre ouse coudre SFX xO oudre ousions coudre SFX xO oudre ousiez coudre SFX xO oudre ousent coudre SFX xO oudre ousisse coudre SFX xO oudre ousisses coudre SFX xO oudre ousît coudre SFX xO oudre ousissions coudre SFX xO oudre ousissiez coudre SFX xO oudre ousissent coudre SFX xO oudre ouds coudre SFX xO oudre ousons coudre SFX xO oudre ousez coudre SFX xP Y 51 SFX xP oudre oudre/n'q'd'l' moudre SFX xP oudre oulant/n'q'l' moudre SFX xP oudre oulu/q' moudre SFX xP oudre oulus/q' moudre SFX xP oudre oulue/q' moudre SFX xP oudre oulues/q' moudre SFX xP oudre ouds/n'q'l' moudre SFX xP oudre ouds/n'q'l' moudre SFX xP oudre oud/n'q'l' moudre SFX xP oudre oulons/n'q'l' moudre SFX xP oudre oulez/n'q'l' moudre SFX xP oudre oulent/n'q'l' moudre SFX xP oudre oulais/n'q'l' moudre SFX xP oudre oulais/n'q'l' moudre SFX xP oudre oulait/n'q'l' moudre SFX xP oudre oulions/n'q'l' moudre SFX xP oudre ouliez/n'q'l' moudre SFX xP oudre oulaient/n'q'l' moudre SFX xP oudre oulus/n'q'l' moudre SFX xP oudre oulus/n'q'l' moudre SFX xP oudre oulut/n'q'l' moudre SFX xP oudre oulûmes/n'q'l' moudre SFX xP oudre oulûtes/n'q'l' moudre SFX xP oudre oulurent/n'q'l' moudre SFX xP oudre oudrai/n'q'l' moudre SFX xP oudre oudras/n'q'l' moudre SFX xP oudre oudra/n'q'l' moudre SFX xP oudre oudrons/n'q'l' moudre SFX xP oudre oudrez/n'q'l' moudre SFX xP oudre oudront/n'q'l' moudre SFX xP oudre oudrais/n'q'l' moudre SFX xP oudre oudrais/n'q'l' moudre SFX xP oudre oudrait/n'q'l' moudre SFX xP oudre oudrions/n'q'l' moudre SFX xP oudre oudriez/n'q'l' moudre SFX xP oudre oudraient/n'q'l' moudre SFX xP oudre oule/n'q'l' moudre SFX xP oudre oules/n'q'l' moudre SFX xP oudre oule/n'q'l' moudre SFX xP oudre oulions/n'q'l' moudre SFX xP oudre ouliez/n'q'l' moudre SFX xP oudre oulent/n'q'l' moudre SFX xP oudre oulusse/n'q'l' moudre SFX xP oudre oulusses/n'q'l' moudre SFX xP oudre oulût/n'q'l' moudre SFX xP oudre oulussions/n'q'l' moudre SFX xP oudre oulussiez/n'q'l' moudre SFX xP oudre oulussent/n'q'l' moudre SFX xP oudre ouds/n'l'm' moudre SFX xP oudre oulons/n'l' moudre SFX xP oudre oulez/n'l'm' moudre SFX xQ N 51 SFX xQ uivre uivre suivre SFX xQ uivre uivant suivre SFX xQ uivre uivi suivre SFX xQ uivre uivis suivre SFX xQ uivre uivie suivre SFX xQ uivre uivies suivre SFX xQ uivre uis suivre SFX xQ uivre uis suivre SFX xQ uivre uit suivre SFX xQ uivre uivons suivre SFX xQ uivre uivez suivre SFX xQ uivre uivent suivre SFX xQ uivre uivais suivre SFX xQ uivre uivais suivre SFX xQ uivre uivait suivre SFX xQ uivre uivions suivre SFX xQ uivre uiviez suivre SFX xQ uivre uivaient suivre SFX xQ uivre uivis suivre SFX xQ uivre uivis suivre SFX xQ uivre uivit suivre SFX xQ uivre uivîmes suivre SFX xQ uivre uivîtes suivre SFX xQ uivre uivirent suivre SFX xQ uivre uivrai suivre SFX xQ uivre uivras suivre SFX xQ uivre uivra suivre SFX xQ uivre uivrons suivre SFX xQ uivre uivrez suivre SFX xQ uivre uivront suivre SFX xQ uivre uivrais suivre SFX xQ uivre uivrais suivre SFX xQ uivre uivrait suivre SFX xQ uivre uivrions suivre SFX xQ uivre uivriez suivre SFX xQ uivre uivraient suivre SFX xQ uivre uive suivre SFX xQ uivre uives suivre SFX xQ uivre uive suivre SFX xQ uivre uivions suivre SFX xQ uivre uiviez suivre SFX xQ uivre uivent suivre SFX xQ uivre uivisse suivre SFX xQ uivre uivisses suivre SFX xQ uivre uivît suivre SFX xQ uivre uivissions suivre SFX xQ uivre uivissiez suivre SFX xQ uivre uivissent suivre SFX xQ uivre uis suivre SFX xQ uivre uivons suivre SFX xQ uivre uivez suivre SFX xR Y 17 SFX xR suivre suivre/s' suivre SFX xR suivre suivant/s' suivre SFX xR suivre suivi suivre SFX xR suivre suit/s' suivre SFX xR suivre suivent/s' suivre SFX xR suivre suivait/s' suivre SFX xR suivre suivaient/s' suivre SFX xR suivre suivit/s' suivre SFX xR suivre suivirent/s' suivre SFX xR suivre suivra/s' suivre SFX xR suivre suivront/s' suivre SFX xR suivre suivrait/s' suivre SFX xR suivre suivraient/s' suivre SFX xR suivre suive/s' suivre SFX xR suivre suivent/s' suivre SFX xR suivre suivît/s' suivre SFX xR suivre suivissent/s' suivre SFX xS N 54 SFX xS ivre ivre vivre SFX xS ivre ivant vivre SFX xS ivre écu vivre SFX xS ivre écus [^r]vivre SFX xS ivre écue [^r]vivre SFX xS ivre écues [^r]vivre SFX xS ivre is vivre SFX xS ivre is vivre SFX xS ivre it vivre SFX xS ivre ivons vivre SFX xS ivre ivez vivre SFX xS ivre ivent vivre SFX xS ivre ivais vivre SFX xS ivre ivais vivre SFX xS ivre ivait vivre SFX xS ivre ivions vivre SFX xS ivre iviez vivre SFX xS ivre ivaient vivre SFX xS ivre écus vivre SFX xS ivre écus vivre SFX xS ivre écut vivre SFX xS ivre écûmes vivre SFX xS ivre écûtes vivre SFX xS ivre écurent vivre SFX xS ivre ivrai vivre SFX xS ivre ivras vivre SFX xS ivre ivra vivre SFX xS ivre ivrons vivre SFX xS ivre ivrez vivre SFX xS ivre ivront vivre SFX xS ivre ivrais vivre SFX xS ivre ivrais vivre SFX xS ivre ivrait vivre SFX xS ivre ivrions vivre SFX xS ivre ivriez vivre SFX xS ivre ivraient vivre SFX xS ivre ive vivre SFX xS ivre ives vivre SFX xS ivre ive vivre SFX xS ivre ivions vivre SFX xS ivre iviez vivre SFX xS ivre ivent vivre SFX xS ivre écusse vivre SFX xS ivre écusses vivre SFX xS ivre écût vivre SFX xS ivre écussions vivre SFX xS ivre écussiez vivre SFX xS ivre écussent vivre SFX xS ivre is [^r]vivre SFX xS ivre is survivre SFX xS ivre ivons [^r]vivre SFX xS ivre ivons survivre SFX xS ivre ivez [^r]vivre SFX xS ivre ivez survivre SFX xT N 6 SFX xT ivre écus vivre SFX xT ivre écue vivre SFX xT ivre écues vivre SFX xT ivre is vivre SFX xT ivre ivons vivre SFX xT ivre ivez vivre SFX y1 Y 48 SFX y1 crire crire/n'q'd'l'm't's' crire SFX y1 crire crivant/n'q'l'm't's' crire SFX y1 crire crit/q' crire SFX y1 crire crits/q' crire SFX y1 crire crite/q' crire SFX y1 crire crites/q' crire SFX y1 crire cris/n'q'j'l'm't' crire SFX y1 crire cris/n'q'l'm't' crire SFX y1 crire crit/n'q'l'm't's' crire SFX y1 crire crivons/n'q'l't' crire SFX y1 crire crivez/n'q'l'm' crire SFX y1 crire crivent/n'q'l'm't's' crire SFX y1 crire crivais/n'q'j'l'm't' crire SFX y1 crire crivais/n'q'l'm't' crire SFX y1 crire crivait/n'q'l'm't's' crire SFX y1 crire crivions/n'q'l't' crire SFX y1 crire criviez/n'q'l'm' crire SFX y1 crire crivaient/n'q'l'm't's' crire SFX y1 crire crivis/n'q'j'l'm't' crire SFX y1 crire crivis/n'q'l'm't' crire SFX y1 crire crivit/n'q'l'm't's' crire SFX y1 crire crivîmes/n'q'l't' crire SFX y1 crire crivîtes/n'q'l'm' crire SFX y1 crire crivirent/n'q'l'm't's' crire SFX y1 crire crirai/n'q'j'l'm't' crire SFX y1 crire criras/n'q'l'm't' crire SFX y1 crire crira/n'q'l'm't's' crire SFX y1 crire crirons/n'q'l't' crire SFX y1 crire crirez/n'q'l'm' crire SFX y1 crire criront/n'q'l'm't's' crire SFX y1 crire crirais/n'q'j'l'm't' crire SFX y1 crire crirais/n'q'l'm't' crire SFX y1 crire crirait/n'q'l'm't's' crire SFX y1 crire cririons/n'q'l't' crire SFX y1 crire cririez/n'q'l'm' crire SFX y1 crire criraient/n'q'l'm't's' crire SFX y1 crire crive/n'j'l'm't' crire SFX y1 crire crives/n'l'm't' crire SFX y1 crire crive/n'l'm't's' crire SFX y1 crire crivions/n'l't' crire SFX y1 crire criviez/n'l'm' crire SFX y1 crire crivent/n'l'm't's' crire SFX y1 crire crivisse/n'q'j'l'm't' crire SFX y1 crire crivisses/n'q'l'm't' crire SFX y1 crire crivît/n'q'l'm't's' crire SFX y1 crire crivissions/n'q'l't' crire SFX y1 crire crivissiez/n'q'l'm' crire SFX y1 crire crivissent/n'q'l'm't's' crire SFX yA N 51 SFX yA ire ire lire SFX yA ire isant lire SFX yA ire u lire SFX yA ire us lire SFX yA ire ue lire SFX yA ire ues lire SFX yA ire is lire SFX yA ire is lire SFX yA ire it lire SFX yA ire isons lire SFX yA ire isez lire SFX yA ire isent lire SFX yA ire isais lire SFX yA ire isais lire SFX yA ire isait lire SFX yA ire isions lire SFX yA ire isiez lire SFX yA ire isaient lire SFX yA ire us lire SFX yA ire us lire SFX yA ire ut lire SFX yA ire ûmes lire SFX yA ire ûtes lire SFX yA ire urent lire SFX yA ire irai lire SFX yA ire iras lire SFX yA ire ira lire SFX yA ire irons lire SFX yA ire irez lire SFX yA ire iront lire SFX yA ire irais lire SFX yA ire irais lire SFX yA ire irait lire SFX yA ire irions lire SFX yA ire iriez lire SFX yA ire iraient lire SFX yA ire ise lire SFX yA ire ises lire SFX yA ire ise lire SFX yA ire isions lire SFX yA ire isiez lire SFX yA ire isent lire SFX yA ire usse lire SFX yA ire usses lire SFX yA ire ût lire SFX yA ire ussions lire SFX yA ire ussiez lire SFX yA ire ussent lire SFX yA ire is lire SFX yA ire isons lire SFX yA ire isez lire SFX yB Y 51 SFX yB lire lire/n'q'd'l'm't's' lire SFX yB lire lisant/n'q'l'm't's' lire SFX yB lire lu/q' lire SFX yB lire lus/q' lire SFX yB lire lue/q' lire SFX yB lire lues/q' lire SFX yB lire lis/n'q'j'l'm't' lire SFX yB lire lis/n'q'l'm't' lire SFX yB lire lit/n'q'l'm't's' lire SFX yB lire lisons/n'q'l't' lire SFX yB lire lisez/n'q'l'm' lire SFX yB lire lisent/n'q'l'm't's' lire SFX yB lire lisais/n'q'j'l'm't' lire SFX yB lire lisais/n'q'l'm't' lire SFX yB lire lisait/n'q'l'm't's' lire SFX yB lire lisions/n'q'l't' lire SFX yB lire lisiez/n'q'l'm' lire SFX yB lire lisaient/n'q'l'm't's' lire SFX yB lire lus/n'q'j'l'm't' lire SFX yB lire lus/n'q'l'm't' lire SFX yB lire lut/n'q'l'm't's' lire SFX yB lire lûmes/n'q'l't' lire SFX yB lire lûtes/n'q'l'm' lire SFX yB lire lurent/n'q'l'm't's' lire SFX yB lire lirai/n'q'j'l'm't' lire SFX yB lire liras/n'q'l'm't' lire SFX yB lire lira/n'q'l'm't's' lire SFX yB lire lirons/n'q'l't' lire SFX yB lire lirez/n'q'l'm' lire SFX yB lire liront/n'q'l'm't's' lire SFX yB lire lirais/n'q'j'l'm't' lire SFX yB lire lirais/n'q'l'm't' lire SFX yB lire lirait/n'q'l'm't's' lire SFX yB lire lirions/n'q'l't' lire SFX yB lire liriez/n'q'l'm' lire SFX yB lire liraient/n'q'l'm't's' lire SFX yB lire lise/n'j'l'm't' lire SFX yB lire lises/n'l'm't' lire SFX yB lire lise/n'l'm't's' lire SFX yB lire lisions/n'l't' lire SFX yB lire lisiez/n'l'm' lire SFX yB lire lisent/n'l'm't's' lire SFX yB lire lusse/n'q'j'l'm't' lire SFX yB lire lusses/n'q'l'm't' lire SFX yB lire lût/n'q'l'm't's' lire SFX yB lire lussions/n'q'l't' lire SFX yB lire lussiez/n'q'l'm' lire SFX yB lire lussent/n'q'l'm't's' lire SFX yB lire lis/n'l'm' lire SFX yB lire lisons/n'l' lire SFX yB lire lisez/n'l'm' lire SFX yC N 51 SFX yC ire ire dire SFX yC ire isant dire SFX yC ire it dire SFX yC ire its dire SFX yC ire ite dire SFX yC ire ites dire SFX yC ire is dire SFX yC ire is dire SFX yC ire it dire SFX yC ire isons dire SFX yC ire ites dire SFX yC ire isent dire SFX yC ire isais dire SFX yC ire isais dire SFX yC ire isait dire SFX yC ire isions dire SFX yC ire isiez dire SFX yC ire isaient dire SFX yC ire is dire SFX yC ire is dire SFX yC ire it dire SFX yC ire îmes dire SFX yC ire îtes dire SFX yC ire irent dire SFX yC ire irai dire SFX yC ire iras dire SFX yC ire ira dire SFX yC ire irons dire SFX yC ire irez dire SFX yC ire iront dire SFX yC ire irais dire SFX yC ire irais dire SFX yC ire irait dire SFX yC ire irions dire SFX yC ire iriez dire SFX yC ire iraient dire SFX yC ire ise dire SFX yC ire ises dire SFX yC ire ise dire SFX yC ire isions dire SFX yC ire isiez dire SFX yC ire isent dire SFX yC ire isse dire SFX yC ire isses dire SFX yC ire ît dire SFX yC ire issions dire SFX yC ire issiez dire SFX yC ire issent dire SFX yC ire is dire SFX yC ire isons dire SFX yC ire ites dire SFX yD Y 51 SFX yD dire dire/n'q'd'l'm't's' dire SFX yD dire disant/n'q'l'm't's' dire SFX yD dire dit/q' dire SFX yD dire dits/q' dire SFX yD dire dite/q' dire SFX yD dire dites/q' dire SFX yD dire dis/n'q'j'l'm't' dire SFX yD dire dis/n'q'l'm't' dire SFX yD dire dit/n'q'l'm't's' dire SFX yD dire disons/n'q'l't' dire SFX yD dire disez/n'q'l'm' dire SFX yD dire disent/n'q'l'm't's' dire SFX yD dire disais/n'q'j'l'm't' dire SFX yD dire disais/n'q'l'm't' dire SFX yD dire disait/n'q'l'm't's' dire SFX yD dire disions/n'q'l't' dire SFX yD dire disiez/n'q'l'm' dire SFX yD dire disaient/n'q'l'm't's' dire SFX yD dire dis/n'q'j'l'm't' dire SFX yD dire dis/n'q'l'm't' dire SFX yD dire dit/n'q'l'm't's' dire SFX yD dire dîmes/n'q'l't' dire SFX yD dire dîtes/n'q'l'm' dire SFX yD dire dirent/n'q'l'm't's' dire SFX yD dire dirai/n'q'j'l'm't' dire SFX yD dire diras/n'q'l'm't' dire SFX yD dire dira/n'q'l'm't's' dire SFX yD dire dirons/n'q'l't' dire SFX yD dire direz/n'q'l'm' dire SFX yD dire diront/n'q'l'm't's' dire SFX yD dire dirais/n'q'j'l'm't' dire SFX yD dire dirais/n'q'l'm't' dire SFX yD dire dirait/n'q'l'm't's' dire SFX yD dire dirions/n'q'l't' dire SFX yD dire diriez/n'q'l'm' dire SFX yD dire diraient/n'q'l'm't's' dire SFX yD dire dise/n'j'l'm't' dire SFX yD dire dises/n'l'm't' dire SFX yD dire dise/n'l'm't's' dire SFX yD dire disions/n'l't' dire SFX yD dire disiez/n'l'm' dire SFX yD dire disent/n'q'l'm't's' dire SFX yD dire disse/n'q'j'l'm't' dire SFX yD dire disses/n'q'l'm't' dire SFX yD dire dît/n'q'l'm't's' dire SFX yD dire dissions/n'q'l't' dire SFX yD dire dissiez/n'q'l'm' dire SFX yD dire dissent/n'q'l'm't's' dire SFX yD dire dis/n'l'm't' dire SFX yD dire disons/n'l' dire SFX yD dire disez/n'l'm' dire SFX yE N 51 SFX yE édire édire dire SFX yE édire édisant dire SFX yE édire édit dire SFX yE édire édits dire SFX yE édire édite dire SFX yE édire édites dire SFX yE édire édis dire SFX yE édire édis dire SFX yE édire édit dire SFX yE édire édisons dire SFX yE édire édisez dire SFX yE édire édisent dire SFX yE édire édisais dire SFX yE édire édisais dire SFX yE édire édisait dire SFX yE édire édisions dire SFX yE édire édisiez dire SFX yE édire édisaient dire SFX yE édire édis dire SFX yE édire édis dire SFX yE édire édit dire SFX yE édire édîmes dire SFX yE édire édîtes dire SFX yE édire édirent dire SFX yE édire édirai dire SFX yE édire édiras dire SFX yE édire édira dire SFX yE édire édirons dire SFX yE édire édirez dire SFX yE édire édiront dire SFX yE édire édirais dire SFX yE édire édirais dire SFX yE édire édirait dire SFX yE édire édirions dire SFX yE édire édiriez dire SFX yE édire édiraient dire SFX yE édire édise dire SFX yE édire édises dire SFX yE édire édise dire SFX yE édire édisions dire SFX yE édire édisiez dire SFX yE édire édisent dire SFX yE édire édisse dire SFX yE édire édisses dire SFX yE édire édît dire SFX yE édire édissions dire SFX yE édire édissiez dire SFX yE édire édissent dire SFX yE édire édis dire SFX yE édire édisons dire SFX yE édire édisez dire SFX yF N 51 SFX yF audire audire dire SFX yF audire audissant dire SFX yF audire audit dire SFX yF audire audits dire SFX yF audire audite dire SFX yF audire audites dire SFX yF audire audis dire SFX yF audire audis dire SFX yF audire audit dire SFX yF audire audissons dire SFX yF audire audissez dire SFX yF audire audissent dire SFX yF audire audissais dire SFX yF audire audissais dire SFX yF audire audissait dire SFX yF audire audissions dire SFX yF audire audissiez dire SFX yF audire audissaient dire SFX yF audire audis dire SFX yF audire audis dire SFX yF audire audit dire SFX yF audire audîmes dire SFX yF audire audîtes dire SFX yF audire audirent dire SFX yF audire audirai dire SFX yF audire audiras dire SFX yF audire audira dire SFX yF audire audirons dire SFX yF audire audirez dire SFX yF audire audiront dire SFX yF audire audirais dire SFX yF audire audirais dire SFX yF audire audirait dire SFX yF audire audirions dire SFX yF audire audiriez dire SFX yF audire audiraient dire SFX yF audire audisse dire SFX yF audire audisses dire SFX yF audire audisse dire SFX yF audire audissions dire SFX yF audire audissiez dire SFX yF audire audissent dire SFX yF audire audisse dire SFX yF audire audisses dire SFX yF audire audît dire SFX yF audire audissions dire SFX yF audire audissiez dire SFX yF audire audissent dire SFX yF audire audis dire SFX yF audire audissons dire SFX yF audire audissez dire SFX yG Y 48 SFX yG dire dire/m't's' dire SFX yG dire disant/m't's' dire SFX yG dire dit dire SFX yG dire dis/m' dire SFX yG dire dis/t' dire SFX yG dire dit/s' dire SFX yG dire disons dire SFX yG dire disez dire SFX yG dire disent/s' dire SFX yG dire disais/m' dire SFX yG dire disais/t' dire SFX yG dire disait/s' dire SFX yG dire disions dire SFX yG dire disiez dire SFX yG dire disaient/s' dire SFX yG dire dis/m' dire SFX yG dire dis/t' dire SFX yG dire dit/s' dire SFX yG dire dîmes dire SFX yG dire dîtes dire SFX yG dire dirent/s' dire SFX yG dire dirai/m' dire SFX yG dire diras/t' dire SFX yG dire dira/s' dire SFX yG dire dirons dire SFX yG dire direz dire SFX yG dire diront/s' dire SFX yG dire dirais/m' dire SFX yG dire dirais/t' dire SFX yG dire dirait/s' dire SFX yG dire dirions dire SFX yG dire diriez dire SFX yG dire diraient/s' dire SFX yG dire dise dire SFX yG dire dises dire SFX yG dire dise dire SFX yG dire disions dire SFX yG dire disiez dire SFX yG dire disent dire SFX yG dire disse/m' dire SFX yG dire disses/t' dire SFX yG dire dît/s' dire SFX yG dire dissions dire SFX yG dire dissiez dire SFX yG dire dissent/s' dire SFX yG dire dis/t' dire SFX yG dire disons dire SFX yG dire disez dire SFX yJ N 9 SFX yJ ruire ruire uire SFX yJ ruire ruissant uire SFX yJ ruire rui uire SFX yJ ruire ruit uire SFX yJ ruire ruissent uire SFX yJ ruire ruissait uire SFX yJ ruire ruissaient uire SFX yJ ruire ruisse uire SFX yJ ruire ruissent uire SFX yK N 5 SFX yK bduire bduire uire SFX yK bduire bduit uire SFX yK bduire bduits uire SFX yK bduire bduite uire SFX yK bduire bduites uire SFX yL Y 51 SFX yL uire uire/n'q'd'l'm't's' uire SFX yL uire uisant/n'q'l'm't's' uire SFX yL uire uit/q' uire SFX yL uire uits/q' uire SFX yL uire uite/q' uire SFX yL uire uites/q' uire SFX yL uire uis/n'q'j'l't' uire SFX yL uire uis/n'q'l'm' uire SFX yL uire uit/n'q'l'm't's' uire SFX yL uire uisons/n'q'l't' uire SFX yL uire uisez/n'q'l'm' uire SFX yL uire uisent/n'q'l'm't's' uire SFX yL uire uisais/n'q'j'l't' uire SFX yL uire uisais/n'q'l'm' uire SFX yL uire uisait/n'q'l'm't's' uire SFX yL uire uisions/n'q'l't' uire SFX yL uire uisiez/n'q'l'm' uire SFX yL uire uisaient/n'q'l'm't's' uire SFX yL uire uisis/n'q'j'l't' uire SFX yL uire uisis/n'q'l'm' uire SFX yL uire uisit/n'q'l'm't's' uire SFX yL uire uisîmes/n'q'l't' uire SFX yL uire uisîtes/n'q'l'm' uire SFX yL uire uisirent/n'q'l'm't's' uire SFX yL uire uirai/n'q'j'l't' uire SFX yL uire uiras/n'q'l'm' uire SFX yL uire uira/n'q'l'm't's' uire SFX yL uire uirons/n'q'l't' uire SFX yL uire uirez/n'q'l'm' uire SFX yL uire uiront/n'q'l'm't's' uire SFX yL uire uirais/n'q'j'l't' uire SFX yL uire uirais/n'q'l'm' uire SFX yL uire uirait/n'q'l'm't's' uire SFX yL uire uirions/n'q'l't' uire SFX yL uire uiriez/n'q'l'm' uire SFX yL uire uiraient/n'q'l'm't's' uire SFX yL uire uise/n'j'l't' uire SFX yL uire uises/n'l'm' uire SFX yL uire uise/n'l'm't's' uire SFX yL uire uisions/n'l't' uire SFX yL uire uisiez/n'l'm' uire SFX yL uire uisent/n'l'm't's' uire SFX yL uire uisisse/n'q'j'l't' uire SFX yL uire uisisses/n'q'l'm' uire SFX yL uire uisît/n'q'l'm't's' uire SFX yL uire uisissions/n'q'l't' uire SFX yL uire uisissiez/n'q'l'm' uire SFX yL uire uisissent/n'q'l'm't's' uire SFX yL uire uis/n'l'm' uire SFX yL uire uisons/n'l' uire SFX yL uire uisez/n'l'm' uire SFX yM Y 51 SFX yM uire uire/n'q'd'l'm't's' uire SFX yM uire uisant/n'q'l'm't's' uire SFX yM uire uit/q' uire SFX yM uire uits/q' uire SFX yM uire uite/q' uire SFX yM uire uites/q' uire SFX yM uire uis/n'q'j'l'm't' uire SFX yM uire uis/n'q'l'm't' uire SFX yM uire uit/n'q'l'm't's' uire SFX yM uire uisons/n'q'l't' uire SFX yM uire uisez/n'q'l'm' uire SFX yM uire uisent/n'q'l'm't's' uire SFX yM uire uisais/n'q'j'l'm't' uire SFX yM uire uisais/n'q'l'm't' uire SFX yM uire uisait/n'q'l'm't's' uire SFX yM uire uisions/n'q'l't' uire SFX yM uire uisiez/n'q'l'm' uire SFX yM uire uisaient/n'q'l'm't's' uire SFX yM uire uisis/n'q'j'l'm't' uire SFX yM uire uisis/n'q'l'm't' uire SFX yM uire uisit/n'q'l'm't's' uire SFX yM uire uisîmes/n'q'l't' uire SFX yM uire uisîtes/n'q'l'm' uire SFX yM uire uisirent/n'q'l'm't's' uire SFX yM uire uirai/n'q'j'l'm't' uire SFX yM uire uiras/n'q'l'm't' uire SFX yM uire uira/n'q'l'm't's' uire SFX yM uire uirons/n'q'l't' uire SFX yM uire uirez/n'q'l'm' uire SFX yM uire uiront/n'q'l'm't's' uire SFX yM uire uirais/n'q'j'l'm't' uire SFX yM uire uirais/n'q'l'm't' uire SFX yM uire uirait/n'q'l'm't's' uire SFX yM uire uirions/n'q'l't' uire SFX yM uire uiriez/n'q'l'm' uire SFX yM uire uiraient/n'q'l'm't's' uire SFX yM uire uise/n'j'l'm't' uire SFX yM uire uises/n'l'm't' uire SFX yM uire uise/n'l'm't's' uire SFX yM uire uisions/n'l't' uire SFX yM uire uisiez/n'l'm' uire SFX yM uire uisent/n'l'm't's' uire SFX yM uire uisisse/n'q'j'l'm't' uire SFX yM uire uisisses/n'q'l'm't' uire SFX yM uire uisît/n'q'l'm't's' uire SFX yM uire uisissions/n'q'l't' uire SFX yM uire uisissiez/n'q'l'm' uire SFX yM uire uisissent/n'q'l'm't's' uire SFX yM uire uis/n'l'm't' uire SFX yM uire uisons/n'l' uire SFX yM uire uisez/n'l'm' uire SFX yN Y 36 SFX yN truire truire/s' uire SFX yN truire truisant/s' uire SFX yN truire truit uire SFX yN truire truits uire SFX yN truire truite uire SFX yN truire truites uire SFX yN truire truit/s' uire SFX yN truire truisons uire SFX yN truire truisez uire SFX yN truire truisent/s' uire SFX yN truire truisait/s' uire SFX yN truire truisions uire SFX yN truire truisiez uire SFX yN truire truisaient/s' uire SFX yN truire truisit/s' uire SFX yN truire truisîmes uire SFX yN truire truisîtes uire SFX yN truire truisirent/s' uire SFX yN truire truira/s' uire SFX yN truire truirons uire SFX yN truire truirez uire SFX yN truire truiront/s' uire SFX yN truire truirait/s' uire SFX yN truire truirions uire SFX yN truire truiriez uire SFX yN truire truiraient/s' uire SFX yN truire truise/s' uire SFX yN truire truisions uire SFX yN truire truisiez uire SFX yN truire truisent/s' uire SFX yN truire truisît/s' uire SFX yN truire truisissions uire SFX yN truire truisissiez uire SFX yN truire truisissent/s' uire SFX yN truire truisons-nous uire SFX yN truire truisez-vous uire SFX yO Y 51 SFX yO détruire détruire/m't's' détruire SFX yO détruire détruisant/m't's' détruire SFX yO détruire détruit détruire SFX yO détruire détruits détruire SFX yO détruire détruite détruire SFX yO détruire détruites détruire SFX yO détruire détruis/m' détruire SFX yO détruire détruis/t' détruire SFX yO détruire détruit/s' détruire SFX yO détruire détruisons détruire SFX yO détruire détruisez détruire SFX yO détruire détruisent/s' détruire SFX yO détruire détruisais/m' détruire SFX yO détruire détruisais/t' détruire SFX yO détruire détruisait/s' détruire SFX yO détruire détruisions détruire SFX yO détruire détruisiez détruire SFX yO détruire détruisaient/s' détruire SFX yO détruire détruisis/m' détruire SFX yO détruire détruisis/t' détruire SFX yO détruire détruisit/s' détruire SFX yO détruire détruisîmes détruire SFX yO détruire détruisîtes détruire SFX yO détruire détruisirent/s' détruire SFX yO détruire détruirai/m' détruire SFX yO détruire détruiras/t' détruire SFX yO détruire détruira/s' détruire SFX yO détruire détruirons détruire SFX yO détruire détruirez détruire SFX yO détruire détruiront/s' détruire SFX yO détruire détruirais/m' détruire SFX yO détruire détruirais/t' détruire SFX yO détruire détruirait/s' détruire SFX yO détruire détruirions détruire SFX yO détruire détruiriez détruire SFX yO détruire détruiraient/s' détruire SFX yO détruire détruise/m' détruire SFX yO détruire détruises/t' détruire SFX yO détruire détruise/s' détruire SFX yO détruire détruisions détruire SFX yO détruire détruisiez détruire SFX yO détruire détruisent/s' détruire SFX yO détruire détruisisse/m' détruire SFX yO détruire détruisisses/t' détruire SFX yO détruire détruisît/s' détruire SFX yO détruire détruisissions détruire SFX yO détruire détruisissiez détruire SFX yO détruire détruisissent/s' détruire SFX yO détruire détruis/t' détruire SFX yO détruire détruisons détruire SFX yO détruire détruisez détruire SFX yU N 51 SFX yU uire uire uire SFX yU uire uisant uire SFX yU uire ui uire SFX yU uire uis uire SFX yU uire uis uire SFX yU uire uit uire SFX yU uire uisons uire SFX yU uire uisez uire SFX yU uire uisent uire SFX yU uire uisais uire SFX yU uire uisais uire SFX yU uire uisait uire SFX yU uire uisions uire SFX yU uire uisiez uire SFX yU uire uisaient uire SFX yU uire uisis uire SFX yU uire uisis uire SFX yU uire uisit uire SFX yU uire uisîmes uire SFX yU uire uisîtes uire SFX yU uire uisirent uire SFX yU uire uirai uire SFX yU uire uiras uire SFX yU uire uira uire SFX yU uire uirons uire SFX yU uire uirez uire SFX yU uire uiront uire SFX yU uire uirais uire SFX yU uire uirais uire SFX yU uire uirait uire SFX yU uire uirions uire SFX yU uire uiriez uire SFX yU uire uiraient uire SFX yU uire uise uire SFX yU uire uises uire SFX yU uire uise uire SFX yU uire uisions uire SFX yU uire uisiez uire SFX yU uire uisent uire SFX yU uire uisisse uire SFX yU uire uisisses uire SFX yU uire uisît uire SFX yU uire uisissions uire SFX yU uire uisissiez uire SFX yU uire uisissent uire SFX yU uire uis luire SFX yU uire uis nuire SFX yU uire uisons luire SFX yU uire uisons nuire SFX yU uire uisez luire SFX yU uire uisez nuire SFX yV N 58 SFX yV ire ire ire SFX yV ire isant ire SFX yV ire it nfire SFX yV ire its nfire SFX yV ire ite nfire SFX yV ire ites nfire SFX yV ire is cire SFX yV ire ise cire SFX yV ire ises cire SFX yV ire i ffire SFX yV ire is ire SFX yV ire is ire SFX yV ire it ire SFX yV ire isons ire SFX yV ire isez ire SFX yV ire isent ire SFX yV ire isais ire SFX yV ire isais ire SFX yV ire isait ire SFX yV ire isions ire SFX yV ire isiez ire SFX yV ire isaient ire SFX yV ire is ire SFX yV ire is ire SFX yV ire it ire SFX yV ire îmes ire SFX yV ire îtes ire SFX yV ire irent ire SFX yV ire irai ire SFX yV ire iras ire SFX yV ire ira ire SFX yV ire irons ire SFX yV ire irez ire SFX yV ire iront ire SFX yV ire irais ire SFX yV ire irais ire SFX yV ire irait ire SFX yV ire irions ire SFX yV ire iriez ire SFX yV ire iraient ire SFX yV ire ise ire SFX yV ire ises ire SFX yV ire ise ire SFX yV ire isions ire SFX yV ire isiez ire SFX yV ire isent ire SFX yV ire isse ire SFX yV ire isses ire SFX yV ire ît ire SFX yV ire issions ire SFX yV ire issiez ire SFX yV ire issent ire SFX yV ire is n.ire SFX yV ire is ffire SFX yV ire isons n.ire SFX yV ire isons ffire SFX yV ire isez n.ire SFX yV ire isez ffire SFX yW N 51 SFX yW ire ire rire SFX yW ire iant rire SFX yW ire i rire SFX yW ire is rire SFX yW ire is rire SFX yW ire it rire SFX yW ire ions rire SFX yW ire iez rire SFX yW ire ient rire SFX yW ire iais rire SFX yW ire iais rire SFX yW ire iait rire SFX yW ire iions rire SFX yW ire iiez rire SFX yW ire iaient rire SFX yW ire is rire SFX yW ire is rire SFX yW ire it rire SFX yW ire îmes rire SFX yW ire îtes rire SFX yW ire irent rire SFX yW ire irai rire SFX yW ire iras rire SFX yW ire ira rire SFX yW ire irons rire SFX yW ire irez rire SFX yW ire iront rire SFX yW ire irais rire SFX yW ire irais rire SFX yW ire irait rire SFX yW ire irions rire SFX yW ire iriez rire SFX yW ire iraient rire SFX yW ire ie rire SFX yW ire ies rire SFX yW ire ie rire SFX yW ire iions rire SFX yW ire iiez rire SFX yW ire ient rire SFX yW ire isse rire SFX yW ire isses rire SFX yW ire ît rire SFX yW ire issions rire SFX yW ire issiez rire SFX yW ire issent rire SFX yW ire is rire SFX yW ire is sourire SFX yW ire ions rire SFX yW ire ions sourire SFX yW ire iez rire SFX yW ire iez sourire SFX yX Y 36 SFX yX nuire nuire/s' nuire SFX yX nuire nuisant/s' nuire SFX yX nuire nui nuire SFX yX nuire nuis nuire SFX yX nuire nuie nuire SFX yX nuire nuies nuire SFX yX nuire nuit/s' nuire SFX yX nuire nuisons nuire SFX yX nuire nuisez nuire SFX yX nuire nuisent/s' nuire SFX yX nuire nuisait/s' nuire SFX yX nuire nuisions nuire SFX yX nuire nuisiez nuire SFX yX nuire nuisaient/s' nuire SFX yX nuire nuisit/s' nuire SFX yX nuire nuisîmes nuire SFX yX nuire nuisîtes nuire SFX yX nuire nuisirent/s' nuire SFX yX nuire nuira/s' nuire SFX yX nuire nuirons nuire SFX yX nuire nuirez nuire SFX yX nuire nuiront/s' nuire SFX yX nuire nuirait/s' nuire SFX yX nuire nuirions nuire SFX yX nuire nuiriez nuire SFX yX nuire nuiraient/s' nuire SFX yX nuire nuise/s' nuire SFX yX nuire nuisions nuire SFX yX nuire nuisiez nuire SFX yX nuire nuisent/s' nuire SFX yX nuire nuisît/s' nuire SFX yX nuire nuisissions nuire SFX yX nuire nuisissiez nuire SFX yX nuire nuisissent/s' nuire SFX yX nuire nuisons-nous nuire SFX yX nuire nuisez-vous nuire SFX yY Y 4 SFX yY ccire ccire/n'q'd'l'm't's' occire SFX yY ccire ccis/q' occire SFX yY ccire ccise/q' occire SFX yY ccire ccises/q' occire SFX yZ N 9 SFX yZ rire rire rire SFX yZ rire rit rire SFX yZ rire rits rire SFX yZ rire rite rire SFX yZ rire rites rire SFX yZ rire ris rire SFX yZ rire ris rire SFX yZ rire rit rire SFX yZ rire ris rire ================================================ FILE: dictionaries/fr_FR/fr_FR.dic ================================================ 63062 A/U.||-- Å/||-- ADN/L'D'Q' ADSL/L' AIEA/L' ARN/L'D'Q' ASBL/L'D'Q' ASC/L' ASCII/L' AUD/-- Aarschot/D'Q' Abbeville/D'Q' Abdelkader/D'Q' Abel/D'Q' Abidjan/D'Q' Abitibi-Témiscamingue/L' Abkhazie/L'D' Abraham/D'Q' Abu/D'Q' Abuja/D'Q' Abyssinie/L'D' Acadie/L'D' Acapulco/D'Q' Accra/D'Q' Achgabat/D'Q' Achille/D'Q' Aconcagua/L' Açores Adam/D'Q' Addis-Abeba/D'Q' Adélaïde/D'Q' Adelbert/D'Q' Adèle/D'Q' Adeline/D'Q' Adolphe/D'Q' Adonaï/D'Q' Adonis/D'Q' Adour/L'D' Adriatique/L' Adrien/D'Q' Adrienne/D'Q' Afghanistan/L'D' Afrique/L'D' Agamemnon/D'Q' Agatha/D'Q' Agathe/D'Q' Agde/D'Q' Agen/D'Q' Aggée/D'Q' Aglaë/D'Q' Agnès/D'Q' Ah/||-- Ahmed/D'Q' Ahmedabad/D'Q' Aïcha/D'Q' Aïd-el-Adha/L' Aïd-el-Kébir/L' Aigoual/L'D' Aimé/D'Q' Aimée/D'Q' Ain/L' Airbus/L'D'Q' Aires Aisne/L' Aix/D'Q' Aix-en-Provence/D'Q' Aix-la-Chapelle/D'Q' Aix-les-Bains/D'Q' Ajaccio/D'Q' Akhenaton/D'Q' Al-Qaïda/D'Q' Alabama/L' Alain/D'Q' Alan/D'Q' Alaska/L'D' Alban/D'Q' Albanie/L'D' Albert/D'Q' Alberta/L' Alberte/D'Q' Albertine/D'Q' Albi/D'Q' Albret/D'Q' Alcibiade/D'Q' Alembert/D'Q' Alençon/D'Q' Alès/D'Q' Alésia/D'Q' Alex/D'Q' Alexandre/D'Q' Alexandrie/D'Q' Alexia/D'Q' Alexis/D'Q' Alfortville/D'Q' Alfred/D'Q' Algarve/L' Alger/D'Q' Algérie/L'D' Ali/D'Q' Alice/D'Q' Alicia/D'Q' Alida/D'Q' Aline/D'Q' Alison/D'Q' Alix/D'Q' Alken/D'Q' Allah/D'Q' Allan/D'Q' Allemagne/S*() Alleur/D'Q' Allier/L' Alma/D'Q' Almaty/D'Q' Alost/D'Q' Alpes Alpes-Maritimes Alpes-de-Haute-Provence Alphonse/D'Q' Alsace/L'D' Altaï/L' Alzheimer/D'Q' Amadeus/D'Q' Amalthée/D'Q' Amand/D'Q' Amanda/D'Q' Amandine/D'Q' Amaury/D'Q' Amazone/L' Amazonie/L'D' Amblève/L'D' Ambre/D'Q' Ambroise/D'Q' Amédée/D'Q' Amélie/D'Q' Aménophis/D'Q' Amérique/S*() Amiens/D'Q' Amman/D'Q' Amos/D'Q' Ampère/D'Q' Amphitrite/D'Q' Amsterdam/D'Q' Anaëlle/D'Q' Anaïs/D'Q' Anastasie/D'Q' Anatole/D'Q' Anatolie/L'D' Anaxagore/D'Q' Anaximandre/D'Q' Andalousie/L'D' Andaman/L'D' Andenne/D'Q' Anderlecht/D'Q' Andersen/D'Q' Andes Andorre/L'D' André/D'Q' Andréa/D'Q' Andrée/D'Q' Andromède/D'Q' Andy/D'Q' Angèle/D'Q' Angelina/D'Q' Angers/D'Q' Angkor/D'Q' Anglet/D'Q' Angleterre/L'D' Angola/L'D' Angoulême/D'Q' Angoumois/L'D' Ångström/D'Q' Anissa/D'Q' Anita/D'Q' Anjou/L'D' Ankara/D'Q' Anna/D'Q' Annabelle/D'Q' Anne/D'Q' Anne-Laure/D'Q' Anne-Marie/D'Q' Anne-Sophie/D'Q' Annecy/D'Q' Annemasse/D'Q' Annette/D'Q' Annick/D'Q' Annie/D'Q' Anosov/D' Anouilh/D'Q' Ans/D'Q' Anselme/D'Q' Antananarivo/D'Q' Antarctique/L'D' Anthelme/D'Q' Anthony/D'Q' Antibes/D'Q' Antigone/D'Q' Antigua-et-Barbuda/D'Q' Antilles Antioche/D'Q' Antoine/D'Q' Antoinette/D'Q' Antonin/D'Q' Antonio/D'Q' Antony/D'Q' Antwerpen/D'Q' Anubis/D'Q' Anvers/D'Q' Aphrodite/D'Q' Apollinaire/D'Q' Apolline/D'Q' Apollon/L'D'Q' Apollonius/D'Q' Appalaches Appenzell/L'D' Apulée/D'Q' Aquin/D' Aquitaine/L'D' Arabie/L'D' Aragon/L'D' Aral/L'D' Aranjuez/D'Q' Arcachon/D'Q' Arcadie/L'D' Archimède/D'Q' Arctique/L'D' Ardèche/L'D' Ardenne/S*() Arès/D'Q' Argenteuil/D'Q' Argentine/L'D' Argonne/L'D' Argos/D'Q' Argovie/L'D' Ariane/D'Q' Ariège/L'D' Ariel/D'Q' Arion/D'Q' Aristarque/D'Q' Aristide/D'Q' Aristophane/D'Q' Aristote/D'Q' Arizona/L'D' Arkansas/L'D' Arles/D'Q' Arlette/D'Q' Arlon/D'Q' Armagnac/D'Q' Armand/D'Q' Armande/D'Q' Armel/D'Q' Armelle/D'Q' Arménie/L'D' Armentières/D'Q' Armor/L'D' Armorique/L'D' Arnaud/D'Q' Arras/D'Q' Arsène/D'Q' Artémis/D'Q' Arthur/D'Q' Artois/L'D' Ascq/D'Q' Asgard/D'Q' Asie/L'D' Asimov/D'Q' Asmara/D'Q' Asnières/D'Q' Asnières-sur-Seine/D'Q' Asse/D'Q' Assouan/D'Q' Assyrie/L'D' Astana/D'Q' Astrid/D'Q' Asturies Asunción/D'Q' Atahualpa/D'Q' Atalante/D'Q' Atatürk/D'Q' Ath/D'Q' Athéna/D'Q' Athènes/D'Q' Athis-Mons/D'Q' Atlanta/D'Q' Atlantide/L' Atlantique/L' Atomium/L' Atropos/D'Q' Attila/D'Q' Aubagne/D'Q' Aube/L'D' Aubervilliers/D'Q' Aubin/D'Q' Aubrac/L'D' Auch/D'Q' Auckland/D'Q' Aude/L'D' Audenarde/D'Q' Audimat/L'D'Q' Audin/D' Audrey/D'Q' Augusta/D'Q' Auguste/D'Q' Augustin/D'Q' Augustine/D'Q' Aulnay-sous-Bois/D'Q' Aunis/L'D' Aurélia/D'Q' Aurélie/D'Q' Aurélien/D'Q' Aurillac/D'Q' Auriol/D'Q' Aurore/D'Q' Auschwitz/D'Q' Austerlitz/D'Q' Australie/L'D' Australie-Méridionale/L'D' Australie-Occidentale/L'D' Austrasie/L'D' Autriche/L'D' Autriche-Hongrie/L'D' Auvergne/L'D' Auxerre/D'Q' Avalon/D'Q' Avars Ave Avé/L'D' Aveyron/L'D' Avicenne/D'Q' Avignon/D'Q' Avogadro/D'Q' Axel/D'Q' Axelle/D'Q' Aymar/D'Q' Aymé/D'Q' Aymeric/D'Q' Azerbaïdjan/L'D' Azov/L'D' B/||-- BD BEF/-- BIOS BMX Baal Baar Babel Babylone Babylonie Bacchus Bach Bachelard Backlund Bade-Wurtemberg Bagdad Bagneux Bagnolet Bahamas Bahreïn Baie-Comeau Baie-James Baïkal Baïkonour Baire Bakou Bakounine Bâle Bâle-Campagne Bâle-Ville Baléares Balen Bali Balkans Baloutchistan Balthazar Baltimore Baltique Balzac Bamako Banach Bangalore Bangkok Bangladesh Bangui Banjul Banneux Baptiste Barbade Barbara Barcelone Barchon Bargmann Bar-le-Duc Barnabé Barnard Barthélemy Barthélémy Baruch Bas-Congo Bas-Rhin Bas-Saint-Laurent Basile Basque Basse-Côte-Nord Basse-Normandie Basse-Saxe Basse-Terre Bassens Bastia Bastien Bastogne Bata Bathurst Battice Baudelaire Baudoin Baudouin Bauges Bavière Bayonne Béarn Béatrice Béatrix Beauce Beaufort Beaujolais Beaumarchais Beaune Beauraing Beauvais Beauvoir Beckett Becquerel Beersel Beethoven Bègles Beijing Belfast Belfort Belgique Belgrade Belize Bell Beltrami Belzébuth Bendixson Bénédicte Benelux Bengale Bénin Benjamin Benoît Benoîte Bercy Bérenger Bérengère Bergen Bergerac Bergson Béring Beringen Berkeley Berlin Berlioz Bermudes Bernadette Bernard Bernardin Berne Bernhard Bernoulli Bernstein Berry Bers Berthe Bertille Bertrand Besançon Bescherelle Besov Bessel Bételgeuse Bethléem Béthune Betti Betty Beurling Beveren Beyrouth Béziers Bezons Bézout Bhagavad-Gîtâ Bhoutan Bianchi Biarritz Bichkek Bieberbach Biélorussie Bienne Bienvenüe Bihar Bilal Bilbao Bilzen Binche Birkhoff Birmanie Birmingham Bishop Bissau Bizet Blagnac Blainville Blaise Blanc-Mesnil Blanche Blandine Blankenberge Blaschke Blois Blum Blu-ray Boardman Bobigny Bochner Bode Boeing Bogotá Bohême Bohr Boileau Bois-Colombes Boisbriand Bolivie Bollywood Bologne Boltzmann Bolzano Bombay Bonaparte Bondy Bonnard Boole Bordeaux Borel Borgia Borinage Boris Bornem Bornéo Bornes Bose Bosnie Bosnie-Herzégovine Bosphore Bossuet Boston Botrange Botswana Botticelli Boucherville Bouches-du-Rhône Boulogne Boulogne-Billancourt Boulogne-sur-Mer Bourbaki Bourdieu Bourg-en-Bresse Bourges Bourgogne Bourgoin-Jallieu Bouscat Boussu Bq/U.||-- Brabant Brahim Brahms Braine-le-Comte Brandon Brassac Brasschaat Brasília Bratislava Brauer Bray Brazzaville Brecht Brelot Brême Brésil Bresse Brest Bretagne Brétigny-sur-Orge Brian Brice Brie Brigitte Brisbane Brive-la-Gaillarde Broglie Bron Brossard Brown Bruay-la-Buissière Bruckner Bruegel Bruges Brunei Bruno Brunoy Brutus Bruxelles Bruxelles-Capitale Bryan Bucarest Budapest Buenos Buffalo Buffon Bujumbura Bulgarie Burkina Burnside Burundi Byron Byzance C/U.||-- CAD/-- CCP CD CD-ROM CE1 CE2 CEE CERN CHF/-- CIA CM1 CM2 CNES CNRS CNY/-- CO2 CP CRS CV Cachan Cachemire Caen Cagliari Cagnes-sur-Mer Cahors Caïn Caire Calabre Calais Calcutta Calderón Calédonie Calestienne Calgary Cali Californie Caligula Calkin Callisto Caluire-et-Cuire Calvados Calvin Camargue Cambodge Cambrai Cambridge Cameroun Camille Campanie Campbell Campine Camus Canada Canaries Canberra Candice Cannes Cannet Cantal Canton Cantons-de-l'Est Cantor Canyon Cap Cap-Vert Capet Capitale-Nationale Cappadoce Caracas Caravage Carcassonne Caribert Carine Carla Carloman Carlos Carmen Carnot Carole Caroline Carpates Carpentras Carroll Carstensz Cartan Carthage Casablanca Casamance Casanova Casimir Casimir-Perier Caspienne Cassandra Cassandre Cassiopée Castille Castres Catherine Cathy Caucase Cauchy Causses Cavaillon Cayenne Cayley Cécile Cécilia Cédric Célestin Célestine Célia Célien Céline Celle-Saint-Cloud Celsius Cenon Centrafrique Centre Centre-du-Québec Cérès Cergy Cervantès César Cesàro Cévennes Cevita Ceylan Cézanne Chablais Chaillot Chalons Châlons-en-Champagne Chalon-sur-Saône Chambéry Chambly Chambord Chamisso Chamonix Champagne Champagne-Ardenne Champigny-sur-Marne Champollion Champs-sur-Marne Chanel Chantal Chardonnay Charente/S. Charente-Maritime Charenton-le-Pont Charlemagne Charlène Charleroi Charles Charleville Charleville-Mézières Charlevoix Charlie Charline Charlotte Charlottetown Charly Charolais Charon Charonne Chartres Charybde Chasles Châteauguay Châteauroux Châtelet Châtellerault Châtenay-Malabry Châtillon Chatou Chaudfontaine Chaudière-Appalaches Chaumont Chaux-de-Fonds Chelles Chengdu Chennai Cher Cherbourg-Octeville Chesnay Chessex Chevalley Chicago Childebert Childéric Chili Chilpéric Chimay Chimène Chine Chirac Chişinău Chloé Choisy-le-Roi Cholesky Cholet Chopin Christel Christèle Christelle Christian Christiane Christie Christine Christoffel Christophe Christopher Chrysaor Churchill Chypre Ci/U.||-- Cicéron Cid Cie Cilicie Cincinnati Cindy Ciney Ciotat Circassie Circé Cisjordanie City Civita Claire Clamart Clara Clarisse Claude Claudel Claudette Claudie Claudine Clémence Clemenceau Clément Clémentine Cléopâtre Clermont-Ferrand Cleveland Clichy Clichy-sous-Bois Clifford Cloé Clotaire Clotho Clotilde Clovis Cochinchine Cocteau Cognac Cohen Coire Colbert Colchide Colette Coline Colisée Colmar Cologne Colomb Colombes Colombie Colombie-Britannique Colombo Colomiers Colorado Combs-la-Ville Côme Commonwealth Comores Compiègne Compostelle Conakry Conan Concarneau Condorcet Condroz Conflans-Sainte-Honorine Confucius Congo Connecticut Conrad Constance Constant Constantin Constantine Constantinople Cook Copenhague Copernic Coralie Corbeil-Essonnes Corbières Cordoue Corée Corentin Corine Corinne Corinthe Coriolis Corneille Cornwell Corrèze Corse Corse-du-Sud Cortés Costa Côte-Nord Côte-Saint-Luc Côte-d'Or Cotentin Côtes-du-Nord Cotonou Cotton Coty Coubertin Coudekerque-Branche Coulomb Courant Courbet Courbevoie Courneuve Courtrai Coxyde Cracovie Creil Crète Créteil Creuse Creusot Creutzfeldt-Jakob Crimée Croatie Crofton Croix Cromwell Crusoé Cuba Cuneo Cupidon Curie Cuzco Cybèle Cyclades Cynthia Cyprien Cyril Cyrille DVD DVD-ROM Da/U.||-- Dacca Dagobert Dahl Dahomey Dakar Dakota Dallas Dalmatie Dalí Damas Damien Dammarie-les-Lys Damoclès Danaé Danemark Daniel Danièle Danielle Danilevsky Dante Danton Danube Dany Darboux Dardanelles Darfour Darjeeling Darwin Daudet Dauphiné David Davy Dax Deauville Déborah Debussy Décines-Charpieu Dedekind Defoe Degas Dehn Déimos Deinze Delacroix Delaunay Delaware Delhi Délos Delphes Delphine Delvaux Déméter Démocrite Démosthène Denain Denis Denise Denjoy Dennis Denver Desargues Descartes Deschanel Désiré Despina Detroit Deucalion Deuil-la-Barre Deuring Deutéronome Deux-Sèvres Dévoluy Dhabi Diane Dickens Diderot Didier Dieppe Diest Dietikon Digne-les-Bains Dijon Dilbeek Dimitri Dinant Dioclétien Diois Dioné Dionysos Diophante Dirac Dirichlet Disney Djamel Djerba Djibouti Dnipropetrovsk Dodoma Doha Dole Dollard-des-Ormeaux Dolorès Dombes Dominique Donatien Donetsk Doppler Dordogne Dorian Dorothée Dortmund Dostoïevski Douai Douala Doubs Douchanbé Doumer Doumergue Doyle Dr/S. Dracula Draguignan Drancy Draveil Dre/S. Dresde Dreux Drôme Drummondville Dubaï Dübendorf Dublin Duchenne Dulac Dumas Dunedin Dunford Dunkerque Duplessis Durance Durbuy Durkheim Düsseldorf Dyck Dylan Dynkin Dysnomie ESA/L' EUR/-- Eaubonne/D'Q' Ebit/||-- Échirolles/D'Q' Écosse/L'D' Eddy/D'Q' Edegem/D'Q' Édimbourg/D'Q' Edison/D'Q' Édith/D'Q' Edmond/D'Q' Edmonton/D'Q' Édouard/D'Q' Edwige/D'Q' Eeyou/L' Égée/L'D'Q' Églantine/D'Q' Égypte/L'D' Ehrenpreis/D' Ehresmann/D'Q' Eibit/||-- Eiffel/D'Q' Eilenberg/D'Q' Einstein/D'Q' Eio/||-- Eisenbud/D' Eisenstein/D' Élancourt/D'Q' Elbrouz/L' Éléonore/D'Q' Éliane/D'Q' Élie/D'Q' Élisa/D'Q' Élisabeth/D'Q' Élise/D'Q' Élisée/D'Q' Élodie/D'Q' Elohim/D'Q' Éloïse/D'Q' Elsa/D'Q' Élysée/L' Émeline/D'Q' Émeric/D'Q' Émile/D'Q' Émilie/D'Q' Émilien/D'Q' Émilienne/D'Q' Emma/D'Q' Emmanuel/D'Q' Emmanuelle/D'Q' Emmen/D'Q' Empédocle/D'Q' Encelade/D'Q' Enzo/D'Q' Eo/||-- Éole/D'Q' Épernay/D'Q' Éphèse/D'Q' Épictète/D'Q' Épicure/D'Q' Épiméthée/D'Q' Épinal/D'Q' Épinay-sur-Seine/D'Q' Epstein/D'Q' Équateur/L'D' Érasme/D'Q' Ératosthène/D'Q' Erevan/D'Q' Erfurt/D'Q' Éric/D'Q' Éris/D'Q' Ermont/D'Q' Ernest/D'Q' Éros/D'Q' Erwan/D'Q' Érythrée/L'D' Escaut/L' Eschyle/D'Q' Esculape/D'Q' Esdras/D'Q' Esméralda/D'Q' Esneux/D'Q' Ésope/D'Q' Espagne/L'D' Essonne/L'D' Esteban/D'Q' Estelle/D'Q' Estérel/L'D' Esther/D'Q' Estonie/L'D' Estrie/L'D' Étampes/D'Q' États-Unis Ethan/D'Q' Ethernet/L'D'Q' Éthiopie/L'D' Étienne/D'Q' Étiennette/D'Q' Étrurie/L'D' Euclide/D'Q' Eugène/D'Q' Eugénie/D'Q' Eulalie/D'Q' Euler/D'Q' Eupen/D'Q' Euphrate/L' Eurasie/L'D' Eure/L'D' Eure-et-Loir/L'D' Euripide/D'Q' Eurogroupe/L' Europe/L'D' Eurydice/D'Q' Éva/D'Q' Évariste/D'Q' Ève/D'Q' Éveline/D'Q' Évelyne/D'Q' Everest/L' Evergem/D'Q' Evrard/D'Q' Évreux/D'Q' Évry/D'Q' Exbrayat/D'Q' Ézéchias/D'Q' Ézéchiel/D'Q' F/U.||-- FAQ FBI FMI FRF/-- FTP Fabien Fabienne Fabrice Fagne/S. Fahrenheit Falkland Fallières Famenne Fanchon Fanny Faraday Farid Faso Fatima Fatou Faure Fayette Fécamp Federer Fehling Félicie Félicité Félix Feller Fénelon Ferdinand Fermat Fermi Fernand Fernande Feydeau Feynman Fiacre Fibonacci Fidèle Fidji Finistère Finlande Finsler Firefox Firmin Fischer Flamel Flandre/S. Flandre-Occidentale Flandre-Orientale Flaubert Flavie Flavien Flémalle Fleur Fleurus Fleury-les-Aubrais Flora Florence Florent Florentin Florian Floriane Floride Fock Foix Fontaine Fontainebleau Fontenay-aux-Roses Fontenay-sous-Bois Forbach Forez Formose Fortaleza Fort-de-France Foucault Fouché Fougères Fourier Fraïssé Frameries France Francfort Franche-Comté Francine Francis Francisco Franck Franco François Françoise Franconville Francorchamps Frank Frankenstein Franklin Frauenfeld Fréchet Freddy Frédéric Fredericton Frédérique Fredholm Freetown Fréjus Fresnel Fresnes Freud Fribourg Friedman Friedmann Friedrich Frobenius Frontignan Frounze Fubini Fuchs Fukuoka Futuna G/U.||-- GBP/-- GMT GPS GSM Gabon Gaborone Gabriel Gabrielle Gaël Gaëlle Gaétan Gaëtan Gagny Gaïa Gal/||-- Galaad Galatée Galathée Galerkin Galice Galicie Galilée Galles Gallimard Galois Gambie Gand Gandhi Gange Ganymède Gap Gard Garde Garenne-Colombes Gargantua Garges-lès-Gonesse Garonne Gascogne Gaspard Gaspésie Gaspésie–Îles-de-la-Madeleine Gastinel Gaston Gatien Gâtinais Gatineau Gauguin Gaule/S. Gaulle Gaume Gauss Gauthier Gautier Gauvain Gaza Gbit/||-- Gdansk Gédéon Geel Gembloux Gênes Genève Geneviève Genk Gennevilliers Geoffrey Geoffroy George Georges Georgetown Georgette Géorgie Gérald Géraldine Gérard Géraud Gergovie Géricault Germain Germaine Germanie Gers Gertrude Gestapo Gevrey-Chambertin Ghana Ghislain Ghislaine Giacometti Gibbs Gibit/||-- Gibraltar Gide Gif-sur-Yvette Gilbert Gilberte Gildas Gileppe Gilgamesh Gilles Ginette Gio/||-- Giono Giorgione Giotto Gironde Giscard Gisèle Gizeh Glaris Glasgow Go/||-- Gobi Godefroid Gödel Goethe Gogh Golan Goldbach Golgi Golgotha Goliath Gomorrhe Goncourt Gonesse Gorbatchev Gordon Gorenstein Göring Gorki Goths Goursat Goussainville Goya Graal Gradignan Gram Gram-Schmidt Grammont Granby Grand-Quevilly Grande-Bretagne Grande-Synthe Grasse Grassmann Grèce Greenville Greenwich Grégoire Grégory Grenade Grenoble Grévy Grigny Grimbergen Grimm Grisons Groenland Gronwall Grotzsch Gstaad Gt/||-- Guadalajara Guadeloupe Guatemala Guenièvre Guéret Guernesey Guillaume Guinée Guinée-Bissau Gujarat Gupta Gustave Gutenberg Guy Guyana Guyancourt Guyane Guyenne Gwenaël Gwenaëlle Gwendoline Gy/U.||-- H/U.||-- HDMI HIV HLM Haar Habaquq/D'Q' Habib/D' Hadamard Hadès/D'Q' Hadrien/D'Q' Haendel Haguenau Hahn Hainaut Haïti/D'Q' Hakim/D'Q' Hal Halicarnasse/D'Q' Halifax/D'Q' Hall Halle Halley Halloween/S. Hamas Hambourg Hamel Hamilton Hamme Hampshire Hamza/D'Q' Han Hankel Hannibal/D'Q' Hanoï/D'Q' Hanovre/D'Q' Hansen Harare Hardy Harelbeke Harnack Harper Harpin Hartogs Harvard Hasselt Haumea Hausdorff Haussmann/D'Q' Haut-Rhin Haute-Corse Haute-Garonne Haute-Loire Haute-Marne Haute-Normandie Haute-Saône Haute-Savoie Haute-Vienne Hautes-Alpes Hautes-Pyrénées Hauts-de-Seine Havane Havre Hawaï/D'Q' Haydn Haye Hazebrouck/D'Q' Heaviside Hébrides Hécate/D'Q' Hecke Hector/D'Q' Hegel Heisenberg/D'Q' Heist-op-den-Berg Héléna/D'Q' Hélène/D'Q' Héliopolis/D'Q' Hélios/D'Q' Héloïse/D'Q' Helsinki/D' Helvétie/L'D' Hemingway/D'Q' Hénin-Beaumont/D'Q' Hénoch/D'Q' Henri/D'Q' Henriette/D'Q' Henry Héphaïstos/D'Q' Héra/D'Q' Héraclès/D'Q' Héraclite/D'Q' Hérault/L' Herbert/D'Q' Herblay/D'Q' Herculanum/D'Q' Hercule/D'Q' Herentals Hermann/D'Q' Hermès/D'Q' Hermite/D'Q' Hérode/D'Q' Hérodote/D'Q' Hérouville-Saint-Clair/D'Q' Herstal Hertz Herve Hervé/D'Q' Hesbaye Hésiode/D'Q' Hespéride/S*() Hesse Hessenberg Hestia/D'Q' Heusden-Zolder Higgs Highlands Hilbert Himalaya/L' Hippocrate/D'Q' Hippolyte/D'Q' Hiroshima Hitler/D'Q' Hô-Chi-Minh-Ville Hobart Hobbes Hochschild Hodge Hoegaerden Hoeilaart Hoffmann/D'Q' Hokkaido Hölder Hollande Hollywood Homère/D'Q' Honduras Hong Hongrie Honoré/D'Q' Honorine/D'Q' Honshu Hopf Horace/D'Q' Horn Hortense/D'Q' Horus/D'Q' Houilles Householder Houston Houthalen-Helchteren Hubble Hubert/D'Q' Hudson/L'D'Q' Hugo Hugues/D'Q' Huguette Huns Hurewicz Huron Hurwitz Huy Huygens Hyacinthe/D'Q' Hyderabad/D'Q' Hyères/D'Q' Hypatie/D'Q' Hypérion/D'Q' Hz/U.||-- I/-- II/-- III/-- IIIe/-- IIde/-- IIe/-- IInd/-- INSEE/L' IRM/L'D'Q' ISO/L'D'Q' IUT/L'D'Q' IV/-- IVe/-- IX/-- IXe/-- Ibadan/D'Q' Ibiza/D'Q' Ibrahim/D'Q' Icare/D'Q' Ida/D'Q' Idaho/L'D' Ier/-- Ignace/D'Q' Igor/D'Q' Iguaçu/L'D' Île-de-France/L'D' Île-du-Prince-Édouard/L' Îles-de-la-Madeleine Iliade/L' Ille-et-Vilaine/L'D' Illinois/L'D' Illkirch-Graffenstaden/D'Q' Illyrie/L'D' Inde/S*() Indiana/L'D' Indianapolis/D'Q' Indochine/L'D' Indonésie/L'D' Indre/L'D' Indre-et-Loire/L'D' Inès/D'Q' Ingolstadt/D' Ingrid/D'Q' Internet/D'Q' Intifada/L'D' Io/D'Q' Iowa/L' Iphigénie/D'Q' Iqaluit/D'Q' Irak/L'D' Iran/L'D' Ire/-- Irène/D'Q' Irénée/D'Q' Irlande/L'D' Iroise/L'D' Isaac/D'Q' Isabelle/D'Q' Isaïe/D'Q' Isère/L'D' Ishtar/D'Q' Isidore/D'Q' Ising/D'Q' Isis/D'Q' Islam/L'D' Islamabad/D'Q' Island Islande/L'D' Ismaël/D'Q' Israël/D'Q' Issy-les-Moulineaux/D'Q' Istanbul/D'Q' Istchee Istres/D'Q' Italie/L'D' Itô/D'Q' Ivanhoé/D'Q' Ivry-sur-Seine/D'Q' Iwasawa/D'Q' Ixelles/D'Q' Ixion/D'Q' Izegem/D'Q' Izmir/D'Q' J/U.||-- J.-C JPY/-- Jack Jackie Jacky Jacob Jacobi Jacobson Jacqueline Jacques Jade Jaffa Jakarta Jamahiriya Jamaïque James Jamésie Janeiro Jang Janine Janus Japet Japon Jason Jaurès Java JavaScript Jean Jean-Baptiste Jean-Bernard Jean-Charles Jean-Christophe Jean-Claude Jean-François Jean-Jacques Jean-Louis Jean-Luc Jean-Marc Jean-Marie Jean-Michel Jean-Noël Jean-Paul Jean-Philippe Jean-Pierre Jean-Yves Jeanine Jeanne Jeannette Jeannine Jéhovah Jemappes Jennifer Jensen Jérémie Jérémy Jéricho Jérôme Jersey Jérusalem Jessica Jessy Jésus Jésus-Christ Jimmy Joachim Jocelyn Jocelyne Joconde Jocrisse Joël Joëlle Joffo Joffrey Johan Johann Johanna Johannesburg John Johnny Jonas Jonathan Jordan Jordanie Jorge Joris José Josée Joseph Josèphe Joséphine Josephson Josette Josiane Josué Joué-lès-Tours Joule Jourdain Juan Judas Jude Judée Judicaël Judith Jules Julia Julian Julie Julien Julienne Juliette Jung Junon Jupiter Jura Juste Justin Justine Justinien K/U.||-- KMF/-- K-O Kaboul Kabylie Kac Kafka Kahan Kairouan Kalahari Kaliningrad Kalman Kaluza Kamel Kampala Kananga Kanpur Kansas Kant Kapellen Karachi Karen Karim Karine Karl Kasaï-Occidental Kasaï-Oriental Katanga Katia Kativik Katmandou Katznelson Kawasaki Kazakhstan Kazan Keeling Kelly Kelvin Kennedy Kentucky Kenya Kepler Kerguelen Kessel Kevin Keynes Kharkov Khartoum Khintchine Khrouchtchev Kibit/||-- Kiel Kierkegaard Kiev Kigali Kilian Kilimandjaro Killian Killing Kimberley King Kingston Kinshasa Kio/||-- Kipling Kippour Kirghizie Kirghizistan Kirghizstan Kiribati Kisangani Kjeldahl Klee Klein Klimt Klitzing Knokke-Heist Ko/||-- Kobe Koch Kodaira Koekelberg Kolkata Kolmogorov Kong Köniz Kontich Konya Korteweg Kosovo Kouibychev Kourou Kovalevskaya Koweït Kościuszko Krein Kremlin Kremlin-Bicêtre Kriens Krishna Krishnamurti Kronecker Krull Kuala Kuiper Kuratowski Kurdistan Kurosh Kylian Kyoto Kyushu L/U.||-- LCD LED L'Haÿ-les-Roses LSD Labrador Lachésis Laeken Lætitia Lagos Lagrange Laguerre Lahore Lamarck Lamartine Lambersart Lambert Lanaken Lanaudière Lancelot Lancy Land Landau Landen Landes Landry Lanester Languedoc Languedoc-Roussillon Lanka Lanvaux Laon Laos Laplace Laponie Larissa Larousse Lassay-les-Chateaux Laudine Laura Laure Laurence Laurent Laurentides Laurette Lauriane Laurie Laurine Lausanne Laval Lavoisier Lazare Léa Lebesgue Lebrun Leclerc Leeds Leeuw-Saint-Pierre Lefschetz Legendre Léger Lehmer Leibnitz Leibniz Leila Leipzig Lejeune Léman Léna Lénine Leningrad Lenny Lens Léo Léon Léonard Léonce Leone Léone Léonidas Léonie Léontine Léopold Leopoldt Léopoldville Leslie Lesotho Lesse Lettonie Levallois-Perret Levi Lévi-Strauss Levinson Lévis Lévitique Levy Lévy Liapunov Liban Liberia Libourne Libreville Libye Liechtenstein Liège Liénard Lierre Liévin Lilas Lilian Liliane Lille Lilongwe Lilou Lima Limbourg Limoges Limousin Lina Lincoln Linda Line Linux Lionel Liouville Lipschitz Lisa Lisbonne Lise Lisieux Lissajous Liszt Littlewood Littré Lituanie Liverpool Livourne Livry-Gargan Ljubljana Lobatchevski Lochristi Locke Loewner Logan Loïc Loir Loire Loire-Atlantique Loiret Loir-et-Cher Loïse Lojasiewicz Lokeren Lola Lombardie Lomé Lommel Londres Longjumeau Longueuil Lons-le-Saunier Loos Lorentz Lorenz Lorenzo Lorette Lorient Lormont Lorraine Lot Lot-et-Garonne Lothaire Lotharingie Lou Loubet Louis Louise Louisette Louisiane Louksor Louvain Louvière Louvre Lovecraft Lozère Luanda Lubéron Lubumbashi Luc Luca Lucas Lucerne Lucette Lucie Lucien Lucienne Lucifer Lucile Lucrèce Ludivine Ludovic Lugano Lully Lumière Lumpur Lune Lunel Lunéville Lure Lusaka Lusin Luther Luxembourg Lyapunov Lydia Lydie Lyon M MM MP3 MST Maaseik Maasmechelen Maastricht Mac MacLane Mac-Mahon Macaulay Macdonald Macédoine Mach Machhad Maclaurin Mâcon Mâconnais Madagascar Madeleine Madras Madrid Maël Maëlle Maëlys Maéva Magali Magalie Magdebourg Magellan Maghreb Maginot Magnus Magog Magritte Magyar/S. Mahâbhârata Maharashtra Mahler Mahomet Maillol Maine Maine-et-Loire Maisons-Alfort Maisons-Laffitte Maïwen Maïwenn Majorque Malabo Malachie Malaisie Malakoff Malawi Malcev Maldegem Maldives Malebranche Mali Malik Malika Malines Mallarmé Malouines Malraux Malte Managua Manama Manche Manchester Manet Manhattan Manicouagan Maniema Manille Manitoba Manon Manosque Mans Mantes-la-Jolie Mao Maputo Maracaïbo Marat Marc Marcel Marcelle Marcellin Marcelline Marche Marche-en-Famenne Marcq-en-Barœul Mardouk Margaux Margot Marguerite Maria Marianne Marie Marie-Ange Marie-Antoinette Marie-Chantal Marie-Christine Marie-Claire Marie-Claude Marie-France Marie-Françoise Marie-Hélène Marie-Jeanne Marie-José Marie-Josèphe Marie-Laure Marie-Line Marie-Louise Marie-Madeleine Marie-Noëlle Marie-Paule Marie-Pierre Marie-Rose Marie-Thérèse Marielle Mariette Marignan Marignane Marilyne Marina Marine Mario Marion Marius Marivaux Marjorie Markov Marlène Marne Maroc Marrakech Mars Marseille Marshall Marthe Martial Martigues Martin Martine Martinet Martini Martinien Martinique Marvin Marx Mary Maryland Marylène Maryline Maryse Maryvonne Mascate Mascouche Massachusetts Massy Mathéo Mathias Mathieu Mathilde Mathis Mathys Matignon Matteo Matthias Matthieu Maubeuge Maud Maupassant Maure/S. Mauriac Maurice Mauricette Mauricie Mauritanie Max Maxence Maxime Maximilien Mayence Mayenne Mayotte Mazarin Mbit/||-- Mbuji-Mayi McKinley Me/S. Meaux Mecklembourg Mecklembourg-Poméranie-Occidentale Mecque Médard Médée Medellín Médicis Mée-sur-Seine Mégane Mehdi Meknès Mélaine Mélanésie Mélanie Melba Melbourne Melchior Méliès Mélina Méline Mélissa Mellin Melun Melvin Memphis Mende Mendel Mendeleïev Mené Menin Menton Méphistophélès Mercantour Mercator Mercure Merelbeke Mérida Mérignac Mésopotamie Messaline Metz Meudon Meurthe Meurthe-et-Moselle Meuse Mexico Mexique Meyzieu Mézières Mgr/S. Miami Mibit/||-- Michael Michaël Michée Michel Michel-Ange Michèle Michelet Micheline Michelle Michigan Mickaël Micronésie Midas Midgard Midi-Pyrénées Miguel Mikaël Mike Milan Milgram Mill Millau Millerand Milne Milton Mimas Minakshisundaram Minkowski Minnesota Minos Minsk Mio/||-- Miquelon Mirabeau Mirabel Miramas Miranda Mireille Miró Mississippi Missouri Mithra Mithridate Mitterrand Mlle/S. Mme/S. Mnémosyne Mo/||-- Möbius Modigliani Mogadiscio Mohamed Mohammed Moire/S. Moïse Moisezon Mol Moldavie Molenbeek-Saint-Jean Molière Molotov Monaco Monet Monge Mongolie Monique Monrovia Mons Mons-en-Barœul Mont-Blanc Mont-Saint-Aignan Montaigne Montaigu-Zichem Montana Montauban Montbéliard Montceau-les-Mines Mont-de-Marsan Monte-Carlo Montel Montélimar Monténégro Montérégie Monterrey Montesquieu Montevideo Montfermeil Montgeron Montigny-le-Bretonneux Montigny-lès-Metz Montluçon Montmartre Montmorency Montpellier Montréal Montreuil Montreux Montrouge Moravie Morbihan Mordell Morera Moresby Morgan Morgane Morita Morphée Morse Morton Mortsel Morvan Moscou Moscovie Moselle Moser Mossad Moulins Mourad Mouscron Moyen-Orient Mozambique Mozart Mozilla Mpc/||-- Mt/||-- Mucha Mulhouse Mumbai Munch Münchhausen Munich Murcie Mureaux Muret Muriel Murielle Musset Mussolini Mustapha Mx/||-- Myanmar Mylène Myriam N/U.||-- NASA NDLR N'Djamena Nabil Nadège Nadia Nadine Nagasaki Nagata Nagoya Nagy Nahoum Naimark Nairobi Nakayama Namibie Namur Nancy Nankin Nanterre Nantes Naples Napoléon Narbonne Narcisse Nash Nasser Nassim Natacha Nathalie Nathan Nathanaël Nauru Navarre Navier-Stokes Naypyidaw Nazaire Nazareth Nazca Nebraska Néfertiti Néguev Néhémie Nehru Nelly Némésis Népal Neptune Néréide/S. Néron Nessus Nestor Neuchâtel Neuilly-sur-Marne Neuilly-sur-Seine Neumann Neustrie Nevada Nevanlinna Nevers New Newton Niagara Niamey Nicaragua Nice Nicée Nicholas Nicodème Nicolas Nicole Nicosie Nidwald Nietzsche Nièvre Niger Nigeria Nijlen Nikodym Nil Nîmes Nina Ninon Ninove Niort Nivelles Nivernais Noa Noah Nobel Noé Noël Noëlle Noémie Noether Nogent-sur-Marne Noirmoutier Noisy-le-Grand Noisy-le-Sec Nolan Nolwenn Nora Norbert Nord Nord-Kivu Nord-Pas-de-Calais Nord-du-Québec Nordine Normandie Norne/S. Norvège Notre-Dame Nouakchott Nouméa Nouveau-Brunswick Nouveau-Mexique Nouveau-Québec Nouvelle-Calédonie Nouvelle-Écosse Nouvelle-Galles Nouvelle-Guinée Nouvelle-Orléans Nouvelle-Zélande Nouvelles-Hébrides Np/||-- Nubie Nunavik Nunavut Nuremberg Nyons Nyquist OCDE/L' Œdipe/D'Q' OGM/L'D'Q' OK OMC/L' OMS/L' ONG/L'D'Q' ONU/L' OPA/L'D'Q' OPE/L'D'Q' OPR/L'D'Q' OPV/L'D'Q' ORL/L'D'Q' OS/L'D'Q' OTAN/L' Obama/D'Q' Obéron/D'Q' Obwald/D' Occam/D'Q' Occitanie/L'D' Océane/D'Q' Océanie/L'D' Ockham/D'Q' Octave/D'Q' Odéon/L' Odessa/D'Q' Odette/D'Q' Odile/D'Q' Odilon/D' Odin/D'Q' Oe/||-- Offenbach/D'Q' Ohio/L'D' Ohm/D'Q' Oisans/D' Oise/L' Oklahoma/L'D' Olivet/D'Q' Olivia/D'Q' Olivier/D'Q' Olympie/D'Q' Oman/D'Q' Omar/D'Q' Omdourman/D' Ontario/L' Oort/D'Q' Oostkamp/D'Q' Ophélie/D'Q' Oppenheimer/D'Q' Oran/D'Q' Orange/D'Q' Orcades Oregon/L'D' Origène/D'Q' Orion/D'Q' Orléans/D'Q' Orlon/L'D' Orly/D'Q' Orne/L'D' Oronte/L' Orphée/D'Q' Orsay/D'Q' Orvault/D'Q' Orwell/D'Q' Osaka/D'Q' Oscar/L'D'Q' Osiris/D'Q' Oslo/D'Q' Ossétie/L'D' Ostende/D'Q' Otez/D' Othe/L'D' Ottawa/D'Q' Ottignies-Louvain-la-Neuve/D'Q' Ouagadougou/D'Q' Ouganda/L'D' Oulan-Bator/D'Q' Oullins/D'Q' Oural/L' Ouranos/D'Q' Ouroboros/L'D' Ourthe/L' Outaouais/L' Ouzbékistan/L'D' Overijse/D'Q' Ovide/D'Q' Oxford/D'Q' Oyonnax/D'Q' Ozoir-la-Ferrière/D'Q' P/||-- PAO PC PDF P-DG PGCD PIB PNB PPCM PVC Pa/U.||-- Pablo Pacôme Padé Pagnol Pakistan Palaiseau Palaos Palerme Palestine Paley Pallas Panamá Pandore Pangée Pantin Paola Papeete Papouasie Papouasie-Nouvelle-Guinée Paracelse Paraguay Paramaribo Pareto Parfait Paris Pâris Parme Parménide Parque/S. Parthie Pascal Pascale Pas-de-Calais Passau Passy Pasteur Patagonie Paterne Patodi Patras Patrice Patricia Patrick Pau Paul Paule Paulette Paulin Pauline Paulo Pausanias Pays-Bas Paz Pbit/||-- Peano Peggy Pékin Pélagie Péloponnèse Pénélope Penh Penjab Pennsylvanie Pépin Perceval Pergame Périclès Périgord Périgueux Perm Pérou Perpignan Perrault Perreux-sur-Marne Perrine Perse Persée Perséphone Perth Pessac Pétain Petit-Quevilly Petrograd Phénicie Philadelphie Philippe Philippeville Philippines Philomène Phnom Phobos Phœbé Phragmen Pibit/||-- Picard Picardie Picasso Pie Piémont Pierre Pierre-Louis Pierre-Yves Pierrefitte-sur-Seine Pierrette Pierrick Pierrot Pigalle Pikine Pilate Pinocchio Pinochet Pio/||-- Pirandello Pise Pitot Pittsburgh Pizarro Pl/||-- Placide Plaisir Plancherel Planck Platon Pleijel Plemelj Plessis-Robinson Pline Plotin Plutarque Pluton Pô Po/||-- Podgorica Poincaré Pointe-Claire Poisson Poissy Poitiers Poitou Poitou-Charentes Pologne Polya Polynésie Poméranie Pompéi Pompidou Pontault-Combault Pontoise Pontryagin Poona Port Port-Gentil Port-au-Prince Portia Porto Porto-Novo Portugal Poséidon Possession Potsdam Pouchkine Pr/S. Prague Praia Prairie Prandtl Pre/S. Pretoria Prévert Priam Priape Princeton Prisca Priscilla Pristina Privas Prokofiev Prométhée Prosper Protée Proudhon Proust Provence Provence-Alpes-Côte Prudence Prusse Ptolémée Puccini Puck Puiseux Puteaux Puy-de-Dôme Puy-en-Velay Pyongyang Pyrénées Pyrénées-Atlantiques Pyrénées-Orientales Pyrrha Pyrrhus Pythagore QI Qatar Québec Queensland Quentin Quercy Quetzalcóatl Quichotte Quimper Quito Qumrân R/||-- RAM RDA RER RFA RIB RMI RMIste/S. ROM RSA RUB/-- Râ Rabat Rabelais Rachel Rachid Rachmaninov Racine Rademacher Radon Ragnarök Raïssa Rajasthan Râmâyana Rambouillet Ramsès Ramuz Rangoon Raoul Raphaël Raphaëlle Raphson Rapperswil-Jona Ratisbonne Rauch Ravel Rayan Raymond Raymonde Reagan Rebecca Recife Reconquista Regina Régine Reich Reidemeister Reims Reine Reiten Rellich Rembrandt Rémi Rémus Rémy Renaix Renaud René Renée Rennes Renoir Repentigny Retz Réunion Reykjavík Reynolds Rezé Rham Rhéa Rhénanie Rhénanie-Palatinat Rhénanie-du-Nord-Westphalie Rhin Rhode Rhodes Rhodes-Extérieures Rhodes-Intérieures Rhodésie Rhodia Rhône Rhône-Alpes Rhovyl Rhue Rica Riccati Ricci Richard Richelieu Richter Rico Riehen Riemann Riesz Riga Rigaud Rillieux-la-Pape Rimbaud Rimouski Rio Ris-Orangis Ritt Riyad R'n'B Roald Roanne Robert Roberte Roberval Robespierre Robin Robinson Roch Rochefort Rochefoucauld Rochelle Roche-sur-Yon Rodez Rodolphe Rodrigue Roger Rokhlin Roland Rolande Romain Romainville Romans-sur-Isère Romaric Romberg Rome Roméo Romuald Romulus Ronan Roncevaux Roosevelt Roquefort Rosalie Rose Rose-Marie Roseline Roselyne Roselyse Rosine Rosny-sous-Bois Rossini Rostand Roth Roubaix Rouen Rouergue Roulers Roumanie Rousseau Roussillon Rouyn-Noranda Roxane Royaume-Uni Ruanda Rubens Rudy Rueil-Malmaison Ruffin Ruhr Rûmî Runge-Kutta Russie/S. Ruth Rutherford Rutishauser Rwanda Ryan S/U.||-- SA SARL SDF SMS SOS SPF SPRL SS Sabine Sabrina Sacha Sade Saguenay Saguenay–Lac-Saint-Jean Sahara Saïd Saint-André Saint-Benoît Saint-Brieuc Saint-Bruno-de-Montarville Saint-Chamond Saint-Cloud Saint-Constant Saint-Denis Saint-Dié-des-Vosges Saint-Dizier Saint-Domingue Saint-Étienne Saint-Étienne-du-Rouvray Saint-Eustache Saint-Exupéry Saint-Gall Saint-Georges Saint-Germain-en-Laye Saint-Ghislain Saint-Herblain Saint-Hyacinthe Saint-Jacques-de-Compostelle Saint-Jean Saint-Jean-Baptiste Saint-Jean-sur-Richelieu Saint-Jérôme Saint-Joseph Saint-Kitts-et-Nevis Saint-Lambert Saint-Laurent Saint-Laurent-du-Var Saint-Leu Saint-Lô Saint-Louis Saint-Malo Saint-Martin-d'Hères Saint-Maur-des-Fossés Saint-Médard-en-Jalles Saint-Michel-sur-Orge Saint-Nazaire Saint-Nicolas Saint-Office Saint-Ouen Saint-Paul Saint-Pétersbourg Saint-Pierre Saint-Pol-sur-Mer Saint-Priest Saint-Quentin Saint-Raphaël Saint-Sébastien-sur-Loire Saint-Siège Saint-Trond Saint-Tropez Saint-Valentin Sainte-Foy-lès-Lyon Sainte-Geneviève-des-Bois Sainte-Julie Sainte-Thérèse Saintes Saintonge Salaberry-de-Valleyfield Saladin Salem Salisbury Salomé Salomon Salon-de-Provence Salonique Salpetrière Salvador Samantha Sambre Sami Samia Samir Samira Samoa Samson Samuel Samy San Sanaa Sancerrois Sand Sandra Sandrine Sannois Santerre Santiago Saône Saône-et-Loire Sapporo Sara Saragosse Sarah Sarajevo Sarcelles Sard Sardaigne Sarkozy Sarre Sarrebruck Sarreguemines Sarthe Sartre Sartrouville Saskatchewan Satan Sato Saturne Saturnin Saul Saumur Savigny-le-Temple Savigny-sur-Orge Savoie Savonarole Saxe Saxe-Anhalt Saxe-Cobourg Scandinavie Schaerbeek Schaffhouse Schauder Schengen Schiller Schiltigheim Schleswig-Holstein Schmitt Schnirelmann Schoenberg Schopenhauer Schoten Schottky Schouten Schreier Schrödinger Schubert Schumann Schumpeter Schur Schwartz Schwarz Schwarzschild Schwerin Schwytz Scipion Scoville Scylla SeaMonkey Seattle Sébastien Sedan Segal Ségolène Seidel Seifert Seine Seine-Maritime Seine-Saint-Denis Seine-et-Marne Seltz Sémélé Sémiramis Semois Sénégal Sénégambie Sénèque Sens Séoul Sept-Îles Seraing Sérapis Serbie Serge Sésostris Sète Seth Severi Séverin Séverine Sévigné Séville Sevran Sèvre/S. Seychelles Seyne-sur-Mer Shakespeare Shanghai Shapiro Shawinigan Shéhérazade Shelley Shenyang Sherbrooke Shikoku Shimura Shoah Sibérie Sibylle Sichuan Sicile Siddhartha Sidoine Sidonie Siegel Siegfried Sierpiński Sierra Sigebert Silvère Simmel Simon Simone Simpson Sinaï Singapour Sion Sirius Sisyphe Six-Fours-les-Plages Skopje Slovaquie Slovénie Smith Smolensk Sobolev Socrate Sodome Sofia Sofiane Soignies Soissons Solange Solène Soleure Soliman Sologne Somalie Somme Sommerfeld Sonia Sophie Sophonie Sorbonne Sorel-Tracy Sotteville-lès-Rouen Soudan Souriau Spa Sparks Spencer Spinoza Split Sri Sri-Lanka St/||-- Staël Stains Staline Stalingrad Stanislas Stanleyville Stasi Steeve Stefan Stein Steinhaus Stendhal Stephan Stéphane Stéphanie Steve Steven Stieltjes Stirling Stockholm Stokes Stradivarius Strasbourg Strauss Stravinski Sturm Stuttgart Styx Sucy-en-Brie Sud-Kivu Sudètes Suède Suétone Suisse Sumatra Sumer Surcouf Suresnes Surinam Suriname Suzanne Sv/U.||-- Svalbard Sverdlovsk Swaziland Sycorax Sydney Sylow Sylvain Sylvaine Sylvère Sylvestre Sylvette Sylvia Sylviane Sylvie Syracuse Syrie São T/U.||-- TGV TNT TTC TV TVA Tachkent Tadjikistan Tahiti Taipei Taïwan Talence Talleyrand Tallinn Tamagawa Tamise Tampico Tampon Tananarive Tanger Tanguy Tanzanie Tao Tarbes Tarn Tarn-et-Garonne Tarski Tartempion Tasmanie Tatiana Taverny Taylor Tbilissi Tbit/||-- Tchad Tchaïkovski Tchebotarev Tchebychev Tchécoslovaquie Tcheliabinsk Tchéquie Tchernobyl Teddy Tegucigalpa Téhéran Teichmüller Tel-Aviv Télémaque Tennessee Térésa Termonde Terre Terre-Neuve Terrebonne Tertullien Tervuren Tesla Tessin Teste-de-Buch Téthys Texas Thaddée Thaïlande Thalès Thalie Thanatos Thanksgiving/S. Thatcher Thèbes Thècle Thémis Théo Théocrite Théodebert Théodore Théophile Thérèse Thermopyles Thésée Thessalie Thetford Theux Thiais Thibaud Thibault Thibaut Thiérache Thierry Thiers Thiès Thionville Thomas Thompson Thonon-les-Bains Thor Thoune Thrace Thucydide Thunderbird Thurgovie Thuringe Tianjin Tibère Tibet Tibit/||-- Tibre Tiers-Monde Tietze Tiffany Tiffauges Timor Timothée Tio/||-- Tiphaine Tirana Tirlemont Titan Titania Titchmarsh Tite-Live Titicaca Titograd Titouan Titus To/||-- Tobie Tocqueville Toda Toeplitz Togo Tokyo Tolède Tolkien Tolstoï Tom Tomé Tonga Tongres Tony Torcy Torelli Toronto Torr/||-- Torricelli Toscane Toulon Toulouse Touraine Tourcoing Tournai Tournefeuille Tournier Tours Toussaint Toutankhamon Transylvanie Trappes-en-Yvelines Tremblay-en-France Trinité-et-Tobago Tripoli Triptolème Tristan Troie Trois-Rivières Trotsky Troyes Tsahal Tubize Tulle Tunis Tunisie Turin Turing Turkménistan Turku Turner Turnhout Turquie Tutte Tuttlingen Tuvalu Twain Tychonoff Tyrol UE/L' ULM/L'D'Q' UNESCO/L' UNICEF/L' UNIX/D'Q' URL/L'D' URSS/L'D' USA USB/L'D'Q' USD/-- Uccle/D'Q' Ugo/D'Q' Ukraine/L'D' Ulam/D'Q' Ulis Ulm/D'Q' Ulrich/D'Q' Ulysse/D'Q' Umbriel/D'Q' Ungava/L'D' Unicode/L' Uranus/D'Q' Urbain/D'Q' Uri/L'D' Ursule/D'Q' Uruguay/L'D' Usenet/L'D' Ushuaïa/D'Q' Uster/D'Q' Utah/L'D' Utique/D'Q' Utrecht/D'Q' V/-- V/U.||-- VA/U.||-- VI/-- VIH VII/-- VIII/-- VIIIe/-- VIIe/-- VIP VIe/-- VTT Vaduz Valais Val-d'Oise Val-d'Or Val-de-Marne Valence Valenciennes Valentin Valentine Valère Valérie Valérien Valéry Valette-du-Var Vallauris Valois Valparaiso Vancouver Vandœuvre-lès-Nancy Vanessa Vannes Vanoise Vanuatu Vanves Var Varennes Varsovie Varuna Vatican Vauban Vaucluse Vaud Vaudreuil-Dorion Vaulx-en-Velin Ve/-- Véda/S. Velay Vélizy-Villacoublay Velázquez Vendée Vendôme Vénétie Venezuela Vénézuela Venise Vénissieux Venn Vénus Vercingétorix Vercors Verdi Verdun Verlaine Vermeer Vermont Verne Vernier Vernon Vérone Véronique Versailles Vertou Verviers Vesoul Vesta Vésuve Vexin Vichy Victoire Victor Victoria Victoriaville Victorien Victorine Vienne Vientiane Vierzon Vietnam Vietoris Vigneux-sur-Seine Vilaine Villefranche-sur-Saône Villejuif Villemomble Villenave-d'Ornon Villeneuve Villeneuve-Saint-Georges Villeneuve-d'Ascq Villeneuve-la-Garenne Villeneuve-sur-Lot Villeparisis Villepinte Villeurbanne Villiers-le-Bel Villiers-sur-Marne Vilnius Vilvorde Vincennes Vincent Vinci Violette Virasoro Virgile Virginia Virginie Virginie-Occidentale Virton Viry-Châtillon Visconsin Vistule Vitali Vitrolles Vitry-sur-Seine Vivaldi Viviane Vivien Vladimir Vladivostok Voiron Volga Voltaire Volterra Vosges Vries Vve W/U.||-- WASP WC Wadowice Waerden Wagner Walhalla Walid Wallis Wallonie Walter Waregem Waremme Waring Washington Waterloo Watson Watt Watteau Wattrelos Wavre Wb/U.||-- Weber Wedderburn Weierstrass Weimar Wellington Wenceslas Westende Westerlo Westhoek Westmount Westphalie Wetteren Wevelgem Weyl Wh/U.||-- Wheatstone Whitehead Whitehorse Whitney Wiener Wiesbaden Wightman Wigner Wilde Wilfrid Wilfried Willebroek William Willy Windhoek Windows Winnipeg Winterthour Wisconsin Witt Wittgenstein Wolfgang Wuhan Wyoming X/-- XAF/-- XI/-- XII/-- XIII/-- XIIIe/-- XIIe/-- XIV/-- XIVe/-- XIX/-- XIXe/-- XIe/-- XL/-- XLI/-- XLII/-- XLIII/-- XLIIIe/-- XLIIe/-- XLIV/-- XLIVe/-- XLIX/-- XLIXe/-- XLIe/-- XLV/-- XLVI/-- XLVII/-- XLVIII/-- XLVIIIe/-- XLVIIe/-- XLVIe/-- XLVe/-- XLe/-- XOF/-- XPF/-- XV/-- XVI/-- XVII/-- XVIII/-- XVIIIe/-- XVIIe/-- XVIe/-- XVe/-- XX/-- XXI/-- XXII/-- XXIII/-- XXIIIe/-- XXIIe/-- XXIV/-- XXIVe/-- XXIX/-- XXIXe/-- XXIe/-- XXV/-- XXVI/-- XXVII/-- XXVIII/-- XXVIIIe/-- XXVIIe/-- XXVIe/-- XXVe/-- XXX/-- XXXI/-- XXXII/-- XXXIII/-- XXXIIIe/-- XXXIIe/-- XXXIV/-- XXXIVe/-- XXXIX/-- XXXIXe/-- XXXIe/-- XXXV/-- XXXVI/-- XXXVII/-- XXXVIII/-- XXXVIIIe/-- XXXVIIe/-- XXXVIe/-- XXXVe/-- XXXe/-- XXe/-- Xavier Xavière Xe/-- Xerxès Xinjiang YHWH Yacine Yahvé Yahweh Yalta Yamabe Yamoussoukro Yanis Yann Yannick Yannis Yaoundé Yasmina Yasmine Yassine Ybit/||-- Yellowknife Yémen Yerres/D'Q' Yggdrasil/D'Q' Yibit/||-- Yio/||-- Yo/||-- Yoan Yoann Yohan Yohann Yokohama Yolande Yonne/L'D' York Yougoslavie Younes Young Youssef Ypres/D'Q' Yser/L' Yucatán Yukon Yvain/D'Q' Yvan/D'Q' Yvelines Yverdon-les-Bains/D'Q' Yves/D'Q' Yvette/D'Q' Yvon/D'Q' Yvonne/D'Q' Zacharie Zagreb Zaïre Zambie Zarathoustra Zariski Zaventem Zbit/||-- Zedelgem Zélande Zele Zemst Zener Zénon Zermelo Zeus Zibit/||-- Zimbabwe Zio/||-- Zita Zo/||-- Zoé Zoersel Zola Zonhoven Zorn Zoroastre Zottegem Zoug Zoute Zurich Zwevegem Zwin Zwingli Zygmund a à/L'D'Q'Qj a/||-- ab abaca/S*() abacule/S*() abaissable/S*() abaissante/F*() abaissée/F*() abaissée/S*() abaisse-langue/L'D'Q' abaissement/S*() abaisser/a4a+() abaisseur/S*() abajoue/S*() abalober abalone/S*() abalourdir abandon/S*() abandonnataire/S*() abandonnatrice/F*() abandonnée/F*() abandonnement/S*() abandonner/a4a+() abandonnique/S*() abaque/S*() abarticulaire/S*() abasie/S*() abasourdie/F*() abasourdir/f2f+() abasourdissante/F*() abasourdissement/S*() abat/S*() abâtardie/F*() abâtardir/f4f+() abâtardissement/S*() abat-carrage/L'D' abat-carre/S*() abat-carrer/a2a+() abatée/S*() abat-feuille/S*() abat-foin/L'D'Q' abatis/L'D'Q' abat-jour/L'D'Q' abat-son/S*() abattable/S*() abattage/S*() abattant/S*() abattée/S*() abattement/S*() abatteuse/F*() abattoir/S*() abattre/uA() abattue/F*() abatture/S*() abat-vent/L'D'Q' abat-voix/L'D'Q' abbasside/S*() abbatiale/S*() abbatiale/W*() abbatiat/S*() abbaye/S*() abbé/S*() abbesse/S*() abbevillienne/F*() abc/L' abcéder/c4a+() abcès/L'D'Q' abdicataire/S*() abdication/S*() abdiquer/a2a+() abdomen/S*() abdominale/W*() abdomino-génitale/W*() abducteur/S*() abduction/S*() abeaudir abeausir abécédaire/S*() abéchée/F*() abécher abécher/L'D' abecquer abée/S*() abeillage/S*() abeille/S*() abeillère/F*() abeillerolle/S*() abeillier/S*() abeillon/S*() abélianisation/S*() abélianisée/F*() abélienne/F*() abéquer aber/S*() aberrance/S*() aberrante/F*() aberration/S*() aberrer/a1() abessif/S*() abêtie/F*() abêtifiée/F*() abêtifier abêtir/f4f+() abêtissante/F*() abêtissement/S*() abhorrée/F*() abhorrer/a2a+() abicher abies/L'D'Q' abiétacée/S*() abiétine/F*() abiétinée/S*() abigotir abillot/S*() abîme/S*() abîmée/F*() abîmer/a4a+() abiogenèse/S*() abiotique/S*() abiotrophie/S*() abjecte/F*() abjectement/D'Q' abjection/S*() abjuration/S*() abjurer/a2a+() abkhaze/S*() ablactation/S*() ablater/a4a+() ablation/S*() ablatir ablative/F*() able/S*() ablégat/S*() ableret/S*() ablette/S*() abloc/S*() ablocage/S*() abloquer/a2a+() abloquir abluer ablutiomanie/S*() ablution/S*() ablutionner abnégation/S*() aboi/S*() aboiement/S*() abolie/F*() abolir/f2f+() abolissement/S*() abolisseur/S*() abolition/S*() abolitionnisme/S*() abolitionniste/S*() abolitive/F*() abomber/a1() abominable/S*() abominablement/D'Q' abomination/S*() abominer/a2a+() abondamment/D'Q' abondance/S*() abondanciste/S*() abondante/F*() abondée/F*() abondement/S*() abonder/a1() abonnée/F*() abonnement/S*() abonner/a4a+() abonnie/F*() abonnir/f4f+() abonnissement/S*() aborale/W*() abord/S*() abordable/S*() abordage/S*() abordée/F*() aborder/a4a+() abordeur/S*() aborigène/S*() abornée/F*() abornement/S*() aborner abortive/F*() abot/S*() aboteau/X*() abotée/F*() aboter abottée/F*() abotter abouchement/S*() aboucher/a4a+() abougrie/F*() abougrir abouler/a4a+() aboulie/S*() aboulique/S*() abouquer about/S*() aboutage/S*() aboutée/F*() aboutement/S*() abouter/a2a+() abouteuse/S*() aboutie/F*() aboutir/f1f+() aboutissant/S*() aboutissement/S*() aboutonner aboyée/F*() aboyer/a2a+() aboyeuse/F*() abracadabra/S*() abracadabrante/F*() abracadabrantesque/S*() abracadabrer abraquer abraser/a4a+() abrasion/S*() abrasive/F*() abraxas/L'D'Q' abréaction/S*() abréagir/f1f+() abrégé/S*() abrégée/F*() abrègement/S*() abréger/c4a+() abreuvage/S*() abreuvée/F*() abreuvement/S*() abreuver/a4a+() abreuvoir/S*() abréviation/S*() abréviative/F*() abréviativement/D'Q' abréviatrice/F*() abréviée/F*() abrévier abreyer abri/S*() abribus/L'D'Q' abricot/S*() abricotée/F*() abricoter/a2a+() abricotier/S*() abricotine/S*() abrier abri-sous-roche/L'D'Q' abris-sous-roche/D'Q' abritée/F*() abriter/a4a+() abrivent/S*() abriver abrogation/S*() abrogative/F*() abrogatoire/S*() abrogeable/S*() abrogée/F*() abroger/a2a+() abroutie/F*() abroutir abroutissement/S*() abrupte/F*() abruptement/D'Q' abrutie/F*() abrutir/f4f+() abrutissante/F*() abrutissement/S*() abscisse/S*() abscission/S*() absconder abscondre absconse/F*() absconser absence/S*() absente/F*() absentéisme/S*() absentéiste/S*() absenter/a2a+() absenter/a3a+() absidale/W*() abside/S*() absidiole/S*() absinthe/S*() absinthisme/S*() absolue/F*() absoluité/S*() absolument/D'Q' absolution/S*() absolutisme/S*() absolutiste/S*() absolutoire/S*() absorbable/S*() absorbante/F*() absorbée/F*() absorber/a4a+() absorbeur/S*() absorption/S*() absorptivité/S*() absoudre/xN() absoute/F*() absoute/S*() abstème/S*() abstenir/i2i+() abstention/S*() abstentionnisme/S*() abstentionniste/S*() abstinence/S*() abstinente/F*() abstract/S*() abstracteur/S*() abstraction/S*() abstractionnisme/S*() abstraire/wL() abstraite/F*() abstraitement/D'Q' abstruse/F*() absurde/S*() absurdement/D'Q' absurdisme/S*() absurdiste/S*() absurdité/S*() abus/L'D'Q' abusée/F*() abuser/a4a+() abusive/F*() abusivement/D'Q' abyme abyssale/W*() abysse/S*() abyssine/F*() abyssinienne/F*() abzyme/S*() ac acabit/S*() acacia/S*() académicienne/F*() académie/S*() académique/S*() académiquement/D'Q' académisme/S*() académiste/S*() acadianisme/S*() acadienne/F*() acagnardée/F*() acagnarder/a3a+() acajou/S*() acalèphe/S*() acanthacée/S*() acanthe/S*() acanthocéphale/S*() acanthoptérygien/S*() acariâtre/S*() acariâtreté/S*() acaricide/S*() acarien/S*() acarus/L'D'Q' acaule/S*() accablante/F*() accablée/F*() accablement/S*() accabler/a4a+() accalmie/S*() accalmir accaparante/F*() accaparée/F*() accaparement/S*() accaparer/a2a+() accapareuse/F*() accastillage/S*() accastillée/F*() accastiller/a2a+() accastilleuse/F*() accédée/F*() accéder/c5() accelerando/D'Q' accélérando/S*() accélérateur/S*() accélération/S*() accélératoire/S*() accélératrice/F*() accélérée/F*() accélérer/c4a+() accélérographe/S*() accéléromètre/S*() accent/S*() accenteur/S*() accentuation/S*() accentuée/F*() accentuelle/F*() accentuer/a4a+() acceptabilité/S*() acceptable/S*() acceptante/F*() acceptation/S*() acceptée/F*() accepter/a4a+() accepteur/S*() acception/S*() accès/L'D'Q' accesseur/S*() accessibilité/S*() accessible/S*() accession/S*() accessit/S*() accessoire/S*() accessoirement/D'Q' accessoirisée/F*() accessoiriser/a2a+() accessoiriste/S*() accident/S*() accidentée/F*() accidentelle/F*() accidentellement/D'Q' accidenter/a2a+() accidentologie/S*() accipitridé/S*() accise/S*() acclamation/S*() acclamée/F*() acclamer/a2a+() acclimatable/S*() acclimatation/S*() acclimatée/F*() acclimatement/S*() acclimater/a4a+() accœurer accointance/S*() accointer/a3a+() accolade/S*() accolage/S*() accolée/F*() accolement/S*() accoler/a4a+() accommodable/S*() accommodante/F*() accommodat/S*() accommodation/S*() accommodatrice/F*() accommodée/F*() accommodement/S*() accommoder/a4a+() accompagnante/F*() accompagnatrice/F*() accompagnée/F*() accompagnement/S*() accompagner/a4a+() accomplie/F*() accomplir/f4f+() accomplissement/S*() accoquiner/a4a+() accord/S*() accordable/S*() accordage/S*() accordailles/D'Q' accordée/F*() accordement/S*() accordéon/S*() accordéoniste/S*() accorder/a4a+() accordeuse/F*() accordoir/S*() accorer/a2a+() accorte/F*() accostable/S*() accostage/S*() accostée/F*() accoster/a4a+() accot/S*() accotée/F*() accotement/S*() accoter/a4a+() accotoir/S*() accouardir accouchée/S*() accouchement/S*() accoucher/a4a+() accoucheuse/F*() accoudée/F*() accoudement/S*() accouder/a3a+() accoudoir/S*() accouer/a2a+() accouplée/F*() accouplement/S*() accoupler/a4a+() accoupleuse/F*() accourcie/F*() accourcir/f2f+() accourcissement/S*() accourir/iD() accoutrée/F*() accoutrement/S*() accoutrer/a4a+() accoutumance/S*() accoutumée/F*() accoutumer/a4a+() accouvage/S*() accouveuse/F*() accréditation/S*() accréditée/F*() accréditement/S*() accréditer/a4a+() accréditive/F*() accréditrice/F*() accrescente/F*() accrétion/S*() accrobranche/S*() accroc/S*() accrochage/S*() accroche/S*() accroche-cœur/S*() accrochée/F*() accroche-plat/S*() accrocher/a4a+() accrocheuse/F*() accroire/xB() accroissement/S*() accroître/wV() accroupie/F*() accroupir/f3f+() accroupissement/S*() accu/S*() accueil/S*() accueillante/F*() accueillie/F*() accueillir/iR() accul/S*() acculée/F*() acculer/a2a+() acculturation/S*() acculturée/F*() acculturer/a2a+() accumulateur/S*() accumulation/S*() accumulée/F*() accumuler/a4a+() accusable/S*() accusation/S*() accusative/F*() accusatoire/S*() accusatrice/F*() accusée/F*() accuser/a4a+() ace/S*() acenser/a2a+() acéphale/S*() acéphalie/S*() acéracée/S*() acerbe/S*() acerbité/S*() acérée/F*() acérer/c2a+() acescence/S*() acescente/F*() acésulfame/S*() acétabulaire/S*() acétamide/S*() acétate/S*() acétification/S*() acétifiée/F*() acétifier/a2a+() acétique/S*() acétobacter/S*() acétone/S*() acétonémie/S*() acétonurie/S*() acétylcholine/S*() acétylcystéine/S*() acétylée/F*() acétylène/S*() acétylénique/S*() acétyler/a2a+() acétylsalicylique/S*() acétylure/S*() achalandage/S*() achalandée/F*() achalander/a2a+() achaler/a2a+() achards/D'Q' acharnée/F*() acharnement/S*() acharner/a4a+() achat/S*() ache/S*() achéenne/F*() achéménide/S*() acheminée/F*() acheminement/S*() acheminer/a4a+() achemineuse/F*() achetable/S*() achète/S*() achetée/F*() acheter/b4a+() acheteuse/F*() acheuléenne/F*() achevée/F*() achèvement/S*() achever/b4a+() achigan/S*() achillée/S*() acholie/S*() achondroplase/S*() achondroplasie/S*() achoppement/S*() achopper/a4a+() achromat/S*() achromaticité/S*() achromatique/S*() achromatisée/F*() achromatiser/a2a+() achromatisme/S*() achromatopsie/S*() achrome/S*() achromie/S*() achromique/S*() achronique/S*() achylie/S*() aciculaire/S*() acidalie/S*() acide/S*() acidifiable/S*() acidifiante/F*() acidification/S*() acidifiée/F*() acidifier/a4a+() acidimètre/S*() acidimétrie/S*() acidiphile/S*() acidité/S*() acidophile/S*() acidose/S*() acidulée/F*() aciduler/a2a+() acier/S*() aciérage/S*() aciération/S*() aciérée/F*() aciérer/c2a+() aciérie/S*() aciériste/S*() acinésie/S*() acinus/I*() aciseler/b2a+() aclinique/S*() acmé/S*() acné/S*() acnéique/S*() acœlomate/S*() acolytat/S*() acolyte/S*() acompte/S*() acon/S*() aconage/S*() aconière/F*() aconit/S*() aconitine/S*() acoquinante/F*() acoquinée/F*() acoquinement/S*() acoquiner/a3a+() acore/S*() à-côté/S*() acotylédone/S*() acoumètre/S*() acoumétrie/S*() à-coup/S*() acouphène/S*() acousticienne/F*() acoustique/S*() acoustiquement/D'Q' acquéresse/S*() acquéreuse/F*() acquérir/iK() acquêt/S*() acquiescement/S*() acquiescer/a5() acquis/L'D'Q' acquise/F*() acquisition/S*() acquisitive/F*() acquit/S*() acquittable/S*() acquittée/F*() acquittement/S*() acquitter/a4a+() acra/S*() acre/S*() âcre/S*() âcrement/D'Q' âcreté/S*() acridien/S*() acridienne/F*() acridine/S*() acrimonie/S*() acrimonieuse/W*() acrimonieusement/D'Q' acroamatique/S*() acrobate/S*() acrobatie/S*() acrobatique/S*() acrobatiquement/D'Q' acrocéphale/S*() acrocéphalie/S*() acrocyanose/S*() acroléine/S*() acromégalie/S*() acromégalique/S*() acromion/S*() acronyme/S*() acronyque/S*() acrophobie/S*() acropole/S*() acrosome/S*() acrosport/S*() acrostiche/S*() acrotère/S*() acrylamide/S*() acrylique/S*() actancielle/F*() actant/S*() acte/S*() actée/S*() actéon/S*() acter/a2a+() actigramme/S*() actine/S*() acting-out/L'D'Q' actinide/S*() actinidia/S*() actinie/S*() actinique/S*() actinisme/S*() actinite/S*() actinium/S*() actinologie/S*() actinomètre/S*() actinométrie/S*() actinométrique/S*() actinomycète/S*() actinomycose/S*() actinoptérygien/S*() actinote/S*() actinothérapie/S*() action/S*() actionnable/S*() actionnaire/S*() actionnariale/W*() actionnariat/S*() actionnée/F*() actionnement/S*() actionner/a2a+() actionneur/S*() actionnisme/S*() activable/S*() activateur/S*() activation/S*() activatrice/F*() active/F*() activée/F*() activement/D'Q' activer/a4a+() activeur/S*() activisme/S*() activiste/S*() activité/S*() actrice/F*() actu/S*() actuaire/S*() actualisable/S*() actualisation/S*() actualisée/F*() actualiser/a2a+() actualisme/S*() actualité/S*() actuariat/S*() actuarielle/F*() actuation/S*() actuelle/F*() actuellement/D'Q' acuité/S*() acul/S*() aculéate/S*() acuminée/F*() acupunctrice/F*() acupuncture/S*() acutance/S*() acutangle/S*() acyclicité/S*() acyclique/S*() acylation/S*() acyle/S*() ad adage/S*() adagio/D'Q' adagio/S*() adamantine/F*() adamique/S*() adamisme/S*() adaptabilité/S*() adaptable/S*() adaptation/S*() adaptative/F*() adaptatrice/F*() adaptée/F*() adapter/a4a+() addenda/L'D'Q' addendum/L'D'Q' addiction/S*() addictive/F*() addictologie/S*() addictologique/S*() addictologue/S*() addition/S*() additionnable/S*() additionnée/F*() additionnelle/F*() additionner/a4a+() additive/F*() additivement/D'Q' additivité/S*() adducteur/S*() adduction/S*() adduit/S*() adèle/S*() adénine/S*() adénite/S*() adénocarcinome/S*() adénoïde/S*() adénome/S*() adénopathie/S*() adénosine/S*() adénovirus/L'D'Q' adent adent/S*() adepte/S*() adéquate/F*() adéquatement/D'Q' adéquation/S*() adextrée/F*() adhérence/S*() adhérente/F*() adhérer/c5() adhésion/S*() adhésive/F*() adhésivité/S*() adiabatique/S*() adiabatiquement/D'Q' adiante/S*() adiaphorèse/S*() adieu adieu/X*() adipeuse/W*() adipique/S*() adipolyse/S*() adipopexie/S*() adipose/S*() adiposité/S*() adiposo-génitale/W*() adipsie/S*() adique/S*() adire/yG() adirer/aE() adjacence/S*() adjacente/F*() adjectif/S*() adjectivale/W*() adjectivation/S*() adjective/F*() adjectivement/D'Q' adjectiver/a2a+() adjectivisation/S*() adjectiviser/a2a+() adjoindre/wB() adjointe/F*() adjonction/S*() adjudant-chef/L'D'Q' adjudante/F*() adjudants-chefs/D'Q' adjudicataire/S*() adjudication/S*() adjudicative/F*() adjudicatrice/F*() adjugée/F*() adjuger/a4a+() adjuration/S*() adjurer/a2a+() adjuvant/S*() adjuvante/F*() adjuvat/S*() admettre/vA() adminicule/S*() administrable/S*() administration/S*() administrationaliser administrative/F*() administrativement/D'Q' administratrice/F*() administrée/F*() administrer/a4a+() admirable/S*() admirablement/D'Q' admiration/S*() admirative/F*() admirativement/D'Q' admiratrice/F*() admirée/F*() admirer/a4a+() admise/F*() admissibilité/S*() admissible/S*() admission/S*() admittance/S*() admixtion/S*() admonestation/S*() admonestée/F*() admonester/a4a+() admonition/S*() adnée/F*() ado/S*() adobe/S*() adolescence/S*() adolescente/F*() adonis/L'D'Q' adonisée/F*() adoniser/a3a+() adonnée/F*() adonner/a3a+() adoptable/S*() adoptante/F*() adoptée/F*() adopter/a2a+() adoption/S*() adoptive/F*() adorable/S*() adorablement/D'Q' adoration/S*() adoratrice/F*() adorée/F*() adorer/a4a+() adorner/a4a+() ados/L'D'Q' adossée/F*() adossement/S*() adosser/a4a+() adoubée/F*() adoubement/S*() adouber/a2a+() adoucie/F*() adoucir/f4f+() adoucissage/S*() adoucissante/F*() adoucissement/S*() adoucisseur/S*() adragante/F*() adrénaline/S*() adrénergique/S*() adrénolytique/S*() adressable/S*() adressage/S*() adresse/S*() adressée/F*() adresser/a4a+() adret/S*() adriatique/S*() adroite/F*() adroitement/D'Q' adsorbable/S*() adsorbante/F*() adsorbée/F*() adsorber/a2a+() adsorption/S*() adstrat/S*() adulaire/S*() adulation/S*() adulatrice/F*() adulée/F*() aduler/a4a+() adulescence/S*() adulescente/F*() adulte/S*() adultération/S*() adultère/S*() adultérée/F*() adultérer/c2a+() adultérine/F*() adultisme/S*() adustible/S*() advection/S*() advenir/iA() adventice/S*() adventiste/S*() adventive/F*() adverbe/S*() adverbiale/W*() adverbialement/D'Q' adverbialiser/a2a+() adversaire/S*() adversative/F*() adverse/S*() adversité/S*() adynamie/S*() adynamique/S*() aède/S*() ægagropile/S*() ægipan/S*() ægosome/S*() ægyrine/S*() æpyornis/L'D'Q' æquo æquo aérage/S*() aérateur/S*() aération/S*() aérée/F*() aérer/c4a+() aérienne/F*() aérium/S*() aérobic/S*() aérobie/S*() aéro-club/S*() aérodigestive/F*() aérodrome/S*() aérodynamicienne/F*() aérodynamique/S*() aérodynamisme/S*() aéroélectrique/S*() aérofrein/S*() aérogare/S*() aérogastrie/S*() aérogel/S*() aéroglisseur/S*() aérographe/S*() aérolite/S*() aérolithe/S*() aérologie/S*() aéromancie/S*() aéromètre/S*() aérométrie/S*() aéromodélisme/S*() aéromodéliste/S*() aéronaute/S*() aéronautique/S*() aéronavale/F*() aéronavale/S*() aéronef/S*() aéronomie/S*() aérophagie/S*() aéroplane/S*() aéroponie/S*() aéroponique/S*() aéroport/S*() aéroportée/F*() aéroportuaire/S*() aéropostale/W*() aéroréfrigérant/S*() aéroréfrigérante/F*() aérosol/S*() aérosondage/S*() aérospatiale/W*() aérostat/S*() aérostation/S*() aérostatique/S*() aérostière/F*() aérotherme/S*() aérothermique/S*() aérotrain/S*() æschne/S*() æschnidé/S*() affabilité/S*() affable/S*() affablement/D'Q' affabulation/S*() affabulatrice/F*() affabulée/F*() affabuler/a2a+() affacturage/S*() affadie/F*() affadir/f4f+() affadissante/F*() affadissement/S*() affaiblie/F*() affaiblir/f4f+() affaiblissante/F*() affaiblissement/S*() affainéantie/F*() affainéantir affaire/S*() affairée/F*() affairement/S*() affairer/a3a+() affairisme/S*() affairiste/S*() affaissée/F*() affaissement/S*() affaisser/a4a+() affaitage/S*() affaitement/S*() affaîter affalée/F*() affalement/S*() affaler/a4a+() affamée/F*() affamer/a2a+() affameuse/F*() afféager/a2a+() affect/S*() affectation/S*() affectée/F*() affecter/a4a+() affection/S*() affectionnée/F*() affectionner/a2a+() affective/F*() affectivement/D'Q' affectivité/S*() affectueuse/W*() affectueusement/D'Q' affectuosité/S*() affenage/S*() afférente/F*() afférer/c1() affermage/S*() affermer/a2a+() affermie/F*() affermir/f4f+() affermissement/S*() affétée/F*() afféterie/S*() affichable/S*() affichage/S*() affiche/S*() affichée/F*() afficher/a4a+() affichette/S*() afficheuse/F*() affichiste/S*() affidavit/S*() affidée/F*() affilage/S*() affilée/F*() affiler/a2a+() affileuse/F*() affiliation/S*() affiliée/F*() affilier/a4a+() affiloir/S*() affinage/S*() affine/F*() affinée/F*() affinement/S*() affiner/a4a+() affinerie/S*() affineuse/F*() affinité/S*() affinoir/S*() affiquet/S*() affirmation/S*() affirmative/F*() affirmativement/D'Q' affirmée/F*() affirmer/a4a+() affixale/W*() affixation/S*() affixe/S*() affleurante/F*() affleurement/S*() affleurer/a2a+() affliction/S*() afflictive/F*() affligeante/F*() affligée/F*() affliger/a4a+() afflouer/a2a+() affluence/S*() affluent/S*() affluente/F*() affluer/a1() afflux/L'D'Q' affolante/F*() affolée/F*() affolement/S*() affoler/a4a+() affolir affouage/S*() affouagée/F*() affouager/a2a+() affouillement/S*() affouiller/a2a+() affouragement/S*() affourager/a2a+() affourchée/F*() affourcher/a2a+() affourrager/a2a+() affranchie/F*() affranchir/f4f+() affranchissement/S*() affranchisseuse/F*() affres/D' affrétée/F*() affrètement/S*() affréter/c2a+() affréteuse/F*() affreuse/W*() affreusement/D'Q' affriandée/F*() affriander/a2a+() affricher/a2a+() affriolante/F*() affrioler/a2a+() affriquée/F*() affriquée/S*() affriter/a2a+() affront/S*() affrontée/F*() affrontement/S*() affronter/a4a+() affronteuse/F*() affruiter/a2a+() affublée/F*() affublement/S*() affubler/a4a+() affurer/a2a+() affusion/S*() affût/S*() affûtage/S*() affûtée/F*() affûter/a2a+() affûteuse/F*() affûtiaux/D'Q' affûtoir/S*() afghane/F*() aficionado/S*() afin afocale/W*() africaine/F*() africanisation/S*() africanisée/F*() africaniser/a4a+() africanisme/S*() africaniste/S*() afrikaans/L'D'Q' afrikander/S*() afrikaner/S*() afro/L'D' afro-américaine/F*() afro-asiatique/S*() afrobeat/S*() afro-cubaine/F*() after-shave/L'D'Q' agaçante/F*() agacée/F*() agacement/S*() agacer/a4a+() agacerie/S*() agaillardie/F*() agaillardir agalactie/S*() agame/S*() agamète/S*() agami/S*() agamidé/S*() agamie/S*() agammaglobulinémie/S*() agamospermie/S*() agapanthe/S*() agape/S*() agapète/S*() agar/S*() agar-agar/L'D'Q' agaric/S*() agaricale/S*() agars-agars/D'Q' agate/S*() agatisée/F*() agavacée/S*() agave/S*() agavé/S*() age/S*() âge/S*() âgée/F*() agence/S*() agencée/F*() agencement/S*() agencer/a4a+() agencière/F*() agenda/S*() agender/a2a+() agénésie/S*() agenouillée/F*() agenouillement/S*() agenouiller/a3a+() agenouilliste/S*() agenouilloir/S*() agente/F*() agérate/S*() ageratum/S*() agger/S*() aggiornamento/S*() agglo/S*() agglomérant/S*() agglomérante/F*() agglomérat/S*() agglomération/S*() aggloméré/S*() agglomérée/F*() agglomérer/c4a+() agglutinante/F*() agglutination/S*() agglutinée/F*() agglutinement/S*() agglutiner/a4a+() agglutinine/S*() agglutinogène/S*() aggravante/F*() aggravation/S*() aggravée/F*() aggraver/a4a+() aggrédir agha/S*() agile/S*() agilement/D'Q' agilité/S*() agio/S*() agiotage/S*() agioter/a1() agioteur/S*() agir/L' agir/f1() âgisme/S*() agissante/F*() agissement/S*() agitante/F*() agitation/S*() agitato/D'Q' agitatrice/F*() agitée/F*() agiter/a4a+() aglyphe/S*() agnate/F*() agnathe/S*() agnation/S*() agnatique/S*() agneau/X*() agnelage/S*() agneler/d1() agnelet/S*() agneline/F*() agnosie/S*() agnosique/S*() agnosticisme/S*() agnostique/S*() agnus/L'D' agnus-castus/L'D'Q' agonie/S*() agonir/f2f+() agonisante/F*() agoniser/a1() agoniste/S*() agora/S*() agoraphobe/S*() agoraphobie/S*() agouti/S*() agrafage/S*() agrafe/S*() agrafée/F*() agrafer/a2a+() agrafeuse/F*() agrainage/S*() agrainer/a2a+() agraire/S*() agrammaticale/W*() agrammatisme/S*() agrandie/F*() agrandir/f4f+() agrandissement/S*() agrandisseuse/F*() agranulocytose/S*() agraphie/S*() agrarienne/F*() agréable/S*() agréablement/D'Q' agréage/S*() agréation/S*() agréée/F*() agréer/a4a+() agréeuse/F*() agrégat/S*() agrégateur/S*() agrégation/S*() agrégative/F*() agrégée/F*() agréger/c4a+() agrément/S*() agrémentée/F*() agrémenter/a2a+() agrès/L'D'Q' agressée/F*() agresser/a2a+() agresseur/S*() agression/S*() agressive/F*() agressivement/D'Q' agressivité/S*() agreste/S*() agricher/a2a+() agricole/S*() agricultrice/F*() agriculture/S*() agriffer/a3a+() agrile/S*() agrion/S*() agriote/S*() agripaume/S*() agrippée/F*() agrippement/S*() agripper/a4a+() agroalimentaire/S*() agrobiologie/S*() agrobiologique/S*() agrobiologiste/S*() agrocarburant/S*() agrochimie/S*() agrochimique/S*() agrochimiste/S*() agroclimatologie/S*() agro-industrie/S*() agro-industrielle/F*() agrologie/S*() agronome/S*() agronomie/S*() agronomique/S*() agropastoralisme/S*() agropastoraliste/S*() agropyrum/S*() agrostide/S*() agrostis/L'D'Q' agrotechnicienne/F*() agrotis/L'D'Q' agrotourisme/S*() agrume/S*() aguardiente/S*() aguerrie/F*() aguerrir/f4f+() aguerrissement/S*() aguets/D' agueusie/S*() agui/S*() aguichage/S*() aguichante/F*() aguichée/F*() aguicher/a2a+() aguicheuse/F*() ah ahan/S*() ahaner/a1() aheurtée/F*() aheurter/a3a+() ahurie/F*() ahurir/f2f+() ahurissante/F*() ahurissement/S*() aï/S*() aidante/F*() aide/S*() aide-comptable/L'D'Q' aidée/F*() aide-mémoire/L'D'Q' aider/a4a+() aides-comptables/D'Q' aïe aïeule/F*() aïeux/D'Q' aigle/S*() aiglefin/S*() aiglette/S*() aiglonne/F*() aigre/S*() aigre-douce/L'D'Q' aigre-doux/L'D'Q' aigrefin/S*() aigrelette/F*() aigrement/D'Q' aigremoine/S*() aigres-douces/D'Q' aigres-doux/D'Q' aigrette/F*() aigrettée/F*() aigreur/S*() aigrie/F*() aigrir/f4f+() aiguail/S*() aiguë/F*() aigue-marine/L'D'Q' aigues-marines/D'Q' aiguière/S*() aiguillage/S*() aiguillat/S*() aiguille/S*() aiguillée/F*() aiguiller/a2a+() aiguilleter/d2a+() aiguilleteuse/F*() aiguilleuse/F*() aiguillier/S*() aiguillon/S*() aiguillonnée/F*() aiguillonner/a2a+() aiguillot/S*() aiguisage/S*() aiguise-crayon/S*() aiguisée/F*() aiguisement/S*() aiguiser/a4a+() aiguiseuse/F*() aiguisoir/S*() aïkido/S*() ail/S*() ailante/S*() aile/S*() ailée/F*() aileron/S*() ailette/S*() ailier/S*() ailler/a2a+() ailleurs/L'D'Q' ailloli/S*() aimable/S*() aimablement/D'Q' aimant/S*() aimantation/S*() aimante/F*() aimantée/F*() aimanter/a4a+() aimantin/S*() aimantine/F*() aimée/F*() aimer/a4a+() aine/S*() aînée/F*() aînesse/S*() aïnou/S*() ainsi/D'Q' aïoli/S*() air/S*() airain/S*() aire/S*() airedale/S*() airedale-terrier/S*() airelle/S*() airer/a1() ais/L'D'Q' aisance/S*() aise/S*() aisée/F*() aisément/D'Q' aisseau/X*() aisselle/S*() aisy/S*() aître/S*() ajointer/a2a+() ajonc/S*() ajoupa/S*() ajour/S*() ajourée/F*() ajourer/a2a+() ajournable/S*() ajournée/F*() ajournement/S*() ajourner/a2a+() ajout/S*() ajoutée/F*() ajouter/a4a+() ajustable/S*() ajustage/S*() ajustée/F*() ajustement/S*() ajuster/a4a+() ajusteuse/F*() akène/S*() akinésie/S*() akkadienne/F*() alabandine/S*() alabastrite/S*() alâchir alacrité/S*() alaire/S*() alaise/S*() alambic/S*() alambique/S*() alambiquée/F*() alambiquer/a2a+() alandier/S*() alangourer alanguie/F*() alanguir/f4f+() alanguissement/S*() alanine/S*() alarmante/F*() alarme/S*() alarmée/F*() alarmer/a4a+() alarmisme/S*() alarmiste/S*() alastrim/S*() alaterne/S*() albanaise/F*() albanophone/S*() albâtre/S*() albatros/L'D'Q' albédo/S*() alberge/S*() albergier/S*() albigeoise/F*() albinisme/S*() albinos/L'D'Q' albite/S*() albuginée/F*() albugo/S*() album/S*() albumen/S*() albumine/S*() albuminée/F*() albumineuse/W*() albuminoïde/S*() albuminurie/S*() albuminurique/S*() albumose/S*() alcade/S*() alcaïque/S*() alcalescence/S*() alcalescente/F*() alcali/S*() alcalifiante/F*() alcalimètre/S*() alcalimétrie/S*() alcaline/F*() alcalinisation/S*() alcalinisée/F*() alcaliniser/a2a+() alcalinité/S*() alcalino-terreuse/W*() alcalisée/F*() alcaliser/a2a+() alcaloïde/S*() alcalose/S*() alcane/S*() alcarazas/L'D'Q' alcazar/S*() alcédinidé/S*() alcène/S*() alchémille/S*() alchimie/S*() alchimique/S*() alchimiste/S*() alcoholiser alcool/S*() alcoolat/S*() alcoolature/S*() alcoolé/S*() alcoolémie/S*() alcoolification/S*() alcoolique/S*() alcoolisable/S*() alcoolisation/S*() alcoolisée/F*() alcooliser/a4a+() alcoolisme/S*() alcoologie/S*() alcoologue/S*() alcoomètre/S*() alcootest/S*() alcoran/S*() alcôve/S*() alcoylation/S*() alcoyle/S*() alcyne/S*() alcyon/S*() alcyonaire/S*() alcyonienne/F*() aldéhyde/S*() aldéhydique/S*() aldine/F*() aldol/S*() aldostérone/S*() ale/S*() aléa/S*() aléatoire/S*() aléatoirement/D'Q' alémanique/S*() alêne/S*() alénois/L'D'Q' alentie/F*() alentir/f2f+() alentour alentour/S*() aléoute/S*() aléoutienne/F*() aleph/S*() alépine/F*() alérion/S*() alerte/S*() alertée/F*() alertement/D'Q' alerter/a2a+() alésage/S*() alèse/S*() alésée/F*() aléser/c2a+() aléseuse/F*() alésoir/S*() alestir aleurite/S*() aleurode/S*() aleurone/S*() alevin/S*() alevinage/S*() aleviner/a2a+() alevinière/F*() alexandra/L'D' alexandrine/F*() alexandrinisme/S*() alexie/S*() alexine/S*() alexithymie/S*() alezane/F*() alfa/S*() alfange/S*() alfatière/F*() alfénide/S*() algarade/S*() algazelle/S*() algèbre/S*() algébricité/S*() algébrique/S*() algébriquement/D'Q' algébrisation/S*() algébriste/S*() algérienne/F*() algéroise/F*() algide/S*() algidité/S*() algie/S*() alginate/S*() algine/S*() algique/S*() algocultrice/F*() algoculture/S*() algologie/S*() algologue/S*() algonquine/F*() algorithme/S*() algorithmie/S*() algorithmique/S*() algorithmiquement/D'Q' algothérapie/S*() algue/S*() alias alias/L'D'Q' alibi/S*() aliboufier/S*() alicament/S*() alicante/S*() alidade/S*() aliénabilité/S*() aliénable/S*() aliénante/F*() aliénataire/S*() aliénation/S*() aliénatrice/F*() aliénée/F*() aliéner/c4a+() aliéniste/S*() alifère/S*() alignée/F*() alignement/S*() aligner/a4a+() aligot/S*() aligoté/S*() aliment/S*() alimentaire/S*() alimentation/S*() alimentatrice/F*() alimentée/F*() alimenter/a4a+() alinéa/S*() alios/L'D'Q' aliphatique/S*() aliquante/S*() aliquote/S*() alise/S*() alisier/S*() alismacée/S*() alisme/S*() alitée/F*() alitement/S*() aliter/a4a+() alizari/S*() alizarine/S*() alizé/S*() alkaest/L'D' alkékenge/S*() alkermès/L'D'Q' alkylant/S*() alkylante/F*() alkylation/S*() alkyle/S*() alkyler/a4a+() allaitante/F*() allaitée/F*() allaitement/S*() allaiter/a2a+() allante/F*() allantoïde/S*() alléchante/F*() alléchée/F*() allèchement/S*() allécher/c2a+() allée/S*() allégation/S*() allégeance/S*() allégée/F*() allègement/S*() alléger/c4a+() allégérir allégir/f2f+() allégorie/S*() allégorique/S*() allégoriquement/D'Q' allégoriser/a2a+() allègre/S*() allègrement/D'Q' allégresse/S*() allegretto/D'Q' allégretto/S*() allegro/D'Q' allégro/S*() alléguée/F*() alléguer/c2a+() allèle/S*() allélique/S*() allélomorphe/S*() allélopathie/S*() alléluia alléluia/S*() allemande/F*() allène/S*() aller/S*() aller/aA() allergène/S*() allergie/S*() allergique/S*() allergisante/F*() allergologie/S*() allergologiste/S*() allergologue/S*() aller-retour/S*() alleu/X*() alliacée/F*() alliage/S*() alliance/S*() alliée/F*() allier/a4a+() alligator/S*() allitération/S*() allô allocataire/S*() allocation/S*() allocentrique/S*() allocentrisme/S*() allochtone/S*() allocutaire/S*() allocution/S*() allodiale/W*() allogamie/S*() allogène/S*() allogreffe/S*() allomorphe/S*() allonge/S*() allongée/F*() allongement/S*() allonger/a4a+() allopathe/S*() allopathie/S*() allopathique/S*() allosaure/S*() allostérie/S*() allotir/f2f+() allotissement/S*() allotropie/S*() allotropique/S*() allouée/F*() allouer/a4a+() alluchon/S*() allumage/S*() allume-cigare/S*() allumée/F*() allume-feu/X*() allume-gaz/L'D'Q' allumer/a4a+() allumette/S*() allumettière/F*() allumeuse/F*() allure/S*() allurée/F*() allusion/S*() allusive/F*() alluviale/W*() alluvion/S*() alluvionnaire/S*() alluvionnement/S*() alluvionner/a1() allyle/S*() allylique/S*() almanach/S*() almandin/S*() almasilium/S*() almée/S*() aloès/L'D'Q' alogie/S*() alogique/S*() aloi/D' alopécie/S*() alors/D'Q'Qj alose/S*() alouate/S*() alouette/S*() alourdie/F*() alourdir/f4f+() alourdissante/F*() alourdissement/S*() aloyau/X*() alpaga/S*() alpage/S*() alpaguée/F*() alpaguer/a2a+() alpax/L'D'Q' alpe/S*() alpestre/S*() alpha/L'D'Q' alphabet/S*() alphabétique/S*() alphabétiquement/D'Q' alphabétisation/S*() alphabétisée/F*() alphabétiser/a2a+() alphabétisme/S*() alphanumérique/S*() alpine/F*() alpinisme/S*() alpiniste/S*() alpiste/S*() alsacienne/F*() altaïque/S*() alter/L'D'Q' altérabilité/S*() altérable/S*() altéragène/S*() altérante/F*() altération/S*() altercation/S*() altérée/F*() altérer/c4a+() altérite/S*() altérité/S*() altermondialisation/S*() altermondialisme/S*() altermondialiste/S*() alternance/S*() alternante/F*() alternat/S*() alternateur/S*() alternative/F*() alternativement/D'Q' alternée/F*() alterner/a2a+() altesse/S*() althæa/S*() althée/S*() altière/F*() altimètre/S*() altimétrie/S*() altimétrique/S*() altiport/S*() altise/S*() altiste/S*() altitude/S*() alto/S*() altocumulus/L'D'Q' altostratus/L'D'Q' altruisme/S*() altruiste/S*() alu/S*() alucite/S*() alule/S*() aluminage/S*() aluminate/S*() alumine/S*() aluminée/F*() aluminer/a2a+() alumineuse/W*() aluminiage/S*() aluminium/S*() aluminothermie/S*() alun/S*() alunée/F*() aluner/a2a+() alunir/f1f+() alunissage/S*() alunite/S*() alvéolaire/S*() alvéole/S*() alvéolée/F*() alvéolite/S*() alvine/F*() alyte/S*() amabilité/S*() amadou/S*() amadouée/F*() amadouer/a2a+() amadouvier/S*() amaigrie/F*() amaigrir/f4f+() amaigrissante/F*() amaigrissement/S*() amalgamation/S*() amalgame/S*() amalgamée/F*() amalgamer/a4a+() amandaie/S*() amande/S*() amanderaie/S*() amandier/S*() amandine/S*() amanite/S*() amante/F*() amarante/S*() amareyeuse/F*() amarile/F*() amarinée/F*() amariner/a4a+() amarrage/S*() amarre/S*() amarrée/F*() amarrer/a4a+() amaryllidacée/S*() amaryllis/L'D'Q' amas/L'D'Q' amassée/F*() amasser/a4a+() amateurisme/S*() amatie/F*() amatir/f2f+() amatrice/F*() amaurose/S*() amazone/S*() amazonienne/F*() amazonite/S*() ambages/D'Q' ambassade/S*() ambassadrice/F*() ambiance/S*() ambiancer/a1() ambianceur/S*() ambiante/F*() ambidextre/S*() ambifier/a3a+() ambiguë/F*() ambiguïté/S*() ambigument/D'Q' ambisexuée/F*() ambitieuse/W*() ambitieusement/D'Q' ambition/S*() ambitionnée/F*() ambitionner/a2a+() ambivalence/S*() ambivalente/F*() ambler/a1() ambleuse/F*() amblyope/S*() amblyopie/S*() amblyoscope/S*() amblystome/S*() ambon/S*() ambre/L'D'Q' ambre/S*() ambrée/F*() ambrer/a2a+() ambroisie/S*() ambrosienne/F*() ambulacraire/S*() ambulacre/S*() ambulance/S*() ambulancière/F*() ambulante/F*() ambulateur/S*() ambulatoire/S*() âme/S*() améliorable/S*() améliorante/F*() amélioration/S*() amélioratrice/F*() améliorée/F*() améliorer/a4a+() amen aménageable/S*() aménagée/F*() aménagement/S*() aménager/a4a+() aménageuse/F*() amendable/S*() amende/S*() amendée/F*() amendement/S*() amender/a4a+() amenée/F*() amener/b4a+() aménité/S*() aménorrhée/S*() amentifère/S*() amenuisée/F*() amenuisement/S*() aménuiser amenuiser/a2a+() amère/F*() amèrement/D'Q' américaine/F*() américanisation/S*() américanisée/F*() américaniser/a4a+() américanisme/S*() américaniste/S*() américium/S*() amérindianisme/S*() amérindienne/F*() amerloque/S*() amerrir/f1f+() amerrissage/S*() amertume/S*() amétabole/S*() améthyste/S*() amétrope/S*() amétropie/S*() ameublement/S*() ameublie/F*() ameublir/f2f+() ameublissement/S*() ameuter/a4a+() amharique/S*() amiable/S*() amiante/S*() amiantée/F*() amibe/S*() amibiase/S*() amibienne/F*() amiboïde/S*() amicale/W*() amicalement/D'Q' amicalisme/S*() amicaliste/S*() amict/S*() amide/S*() amidon/S*() amidonnage/S*() amidonnée/F*() amidonner/a2a+() amidonnerie/S*() amidonnière/F*() amidopyrine/S*() amie/F*() amination/S*() amincie/F*() amincir/f4f+() amincissante/F*() amincissement/S*() amine/S*() aminée/F*() aminer/a1() aminoacide/S*() aminoplaste/S*() aminoside/S*() amirale/W*() amirauté/S*() amitié/S*() amitose/S*() ammodyte/S*() ammoniac/S*() ammoniacale/W*() ammoniaque/S*() ammonisation/S*() ammonite/S*() ammonium/S*() ammophile/S*() amnésie/S*() amnésique/S*() amniocentèse/S*() amnios/L'D'Q' amnioscopie/S*() amniotique/S*() amnistiable/S*() amnistiante/F*() amnistie/S*() amnistiée/F*() amnistier/a2a+() amochée/F*() amocher/a4a+() amodiataire/S*() amodiation/S*() amodiée/F*() amodier/a2a+() amoindrie/F*() amoindrir/f4f+() amoindrissement/S*() amollie/F*() amollir/f4f+() amollissante/F*() amollissement/S*() amome/S*() amoncelée/F*() amonceler/d4a+() amoncellement/S*() amont/S*() amorale/W*() amoralisme/S*() amoralité/S*() amorçage/S*() amorce/S*() amorcée/F*() amorcer/a4a+() amordancée/F*() amordancer/a2a+() amoroso/D'Q' amorphe/S*() amorti/S*() amortie/F*() amortir/f4f+() amortissable/S*() amortissement/S*() amortisseur/S*() amour/S*() amourachée/F*() amouracher/a3a+() amourer/a2a+() amourette/S*() amoureuse/W*() amoureusement/D'Q' amour-propre/L'D'Q' amours-propres/D'Q' amovibilité/S*() amovible/S*() ampélographe/S*() ampélographie/S*() ampélographique/S*() ampélopsis/L'D'Q' ampérage/S*() ampère/Um() ampère-heure/L'D'Q' ampèremètre/S*() ampères-heures/D'Q' amphétamine/S*() amphétaminique/S*() amphi/S*() amphiarthrose/S*() amphibie/S*() amphibienne/F*() amphibole/S*() amphibologie/S*() amphibologique/S*() amphibologiquement/D'Q' amphictyon/S*() amphictyonie/S*() amphigouri/S*() amphigourique/S*() amphigourisme/S*() amphimixie/S*() amphioxus/L'D'Q' amphipode/S*() amphiprion/S*() amphisbène/S*() amphistère/S*() amphithéâtre/S*() amphitryon/S*() ampholyte/S*() amphore/S*() amphorisque/S*() amphotère/S*() ample/S*() amplective/F*() amplement/D'Q' ampleur/S*() ampli/S*() ampliation/S*() ampliative/F*() amplifiable/S*() amplifiante/F*() amplification/S*() amplificatrice/F*() amplifiée/F*() amplifier/a4a+() ampliforme/S*() amplis-syntoniseurs/D'Q' amplis-tuners/D'Q' ampli-syntoniseur/L'D'Q' amplitude/S*() ampli-tuner/L'D'Q' ampoule/S*() ampoulée/F*() amputation/S*() amputée/F*() amputer/a4a+() amuïr amuïssement/S*() amulette/S*() amurer/a2a+() amusante/F*() amusée/F*() amuse-gueule/S*() amusement/S*() amuser/a4a+() amusette/S*() amuseuse/F*() amusie/S*() amygdale/S*() amygdalectomie/S*() amygdalite/S*() amylacée/F*() amylase/S*() amyle/S*() amylène/S*() amylique/S*() amylobacter/S*() amyotrophie/S*() an/S*() ana/L'D'Q' anabaptisme/S*() anabaptiste/S*() anabatique/S*() anabolisante/F*() anabolisme/S*() anabolite/S*() anacardiacée/S*() anacardier/S*() anachorète/S*() anachorétique/S*() anachorétisme/S*() anachronique/S*() anachroniquement/D'Q' anachronisme/S*() anacoluthe/S*() anaconda/S*() anacréontique/S*() anacrouse/S*() anaérobie/S*() anaérobiose/S*() anaglyphe/S*() anaglyptique/S*() anagnoste/S*() anagogie/S*() anagogique/S*() anagrammatique/S*() anagrammatisme/S*() anagramme/S*() anale/W*() analecta/L'D' analepse/S*() analeptique/S*() analgésie/S*() analgésier/a2a+() analgésique/S*() analité/S*() anallergique/S*() analogie/S*() analogique/S*() analogiquement/D'Q' analogon/S*() analogue/S*() analphabète/S*() analphabétisme/S*() analycité/S*() analysable/S*() analysante/F*() analyse/S*() analysée/F*() analyser/a4a+() analyseur/S*() analyste/S*() analyticité/S*() analytique/S*() analytiquement/D'Q' anamnèse/S*() anamorphe/S*() anamorphique/S*() anamorphose/S*() anamorphosée/F*() anamorphoseur/S*() anamostoser/a4a+() ananas/L'D'Q' anapeste/S*() anaphase/S*() anaphore/S*() anaphorèse/S*() anaphorique/S*() anaphrodisiaque/S*() anaphrodisie/S*() anaphylactique/S*() anaphylaxie/S*() anaplastie/S*() anar/S*() anarchie/S*() anarchique/S*() anarchiquement/D'Q' anarchisante/F*() anarchisme/S*() anarchiste/S*() anarcho-syndicalisme/S*() anarcho-syndicaliste/S*() anarthrie/S*() anasarque/S*() anastigmat/S*() anastomose/S*() anastomosée/F*() anastomoser/a3a+() anastrophe/S*() anathématiser/a2a+() anathème/S*() anatidé/S*() anatife/S*() anatocisme/S*() anatolienne/F*() anatomie/S*() anatomique/S*() anatomiquement/D'Q' anatomiser/a2a+() anatomiste/S*() anatomopathologie/S*() anatopisme/S*() anavenin/S*() ancestrale/W*() ancêtre/S*() anche/S*() anchois/L'D'Q' ancienne/F*() anciennement/D'Q' ancienneté/S*() ancillaire/S*() ancolie/S*() ancrage/S*() ancre/S*() ancrée/F*() ancrer/a4a+() andain/S*() andalou/S*() andalouse/S*() andalousite/S*() andante/S*() andantino/S*() andésine/S*() andésite/S*() andine/F*() andorrane/F*() andouille/S*() andouiller/S*() andouillette/S*() andrène/S*() andrinople/S*() androcée/S*() androcéphale/S*() androgène/S*() androgenèse/S*() androgénie/S*() androgyne/S*() androïde/S*() androlâtre/S*() androlâtrie/S*() andrologie/S*() andrologique/S*() andrologue/S*() andropause/S*() androstérone/S*() âne/S*() anéantie/F*() anéantir/f4f+() anéantissement/S*() anecdote/S*() anecdotière/F*() anecdotique/S*() anecdotiquement/D'Q' anémiée/F*() anémier/a2a+() anémique/S*() anémographe/S*() anémomètre/S*() anémone/S*() anémophile/S*() ânerie/S*() anéroïde/S*() ânesse/F*() anesthésiante/F*() anesthésie/S*() anesthésiée/F*() anesthésier/a4a+() anesthésiologie/S*() anesthésiologiste/S*() anesthésique/S*() anesthésiste/S*() aneth/S*() anévrismale/W*() anévrisme/S*() anfractuosité/S*() angarie/S*() ange/S*() angéite/S*() angélique/S*() angéliquement/D'Q' angélisme/S*() angelot/S*() angélus/L'D'Q' angemme/S*() angenne/S*() angevine/F*() angiectasie/S*() angine/S*() angineuse/W*() angiocardiographie/S*() angiocholite/S*() angiogenèse/S*() angiographie/S*() angiologie/S*() angiologue/S*() angiome/S*() angiosperme/S*() angiotensine/S*() angiotensinogène/S*() anglaise/F*() anglaisée/F*() anglaiser/a2a+() angle/S*() angledozer/S*() anglet/S*() anglicane/F*() anglicanisme/S*() anglicisation/S*() anglicisée/F*() angliciser/a4a+() anglicisme/S*() angliciste/S*() anglo-américaine/F*() anglo-arabe/S*() anglomane/S*() anglomanie/S*() anglo-normande/F*() anglophile/S*() anglophilie/S*() anglophobe/S*() anglophobie/S*() anglophone/S*() anglo-saxonne/F*() angoissante/F*() angoisse/S*() angoissée/F*() angoisser/a4a+() angolaise/F*() angon/S*() angor/S*() angora/S*() angström/S*() anguiforme/S*() anguille/S*() anguillère/S*() anguillule/S*() angulaire/S*() anguleuse/W*() angusticlave/S*() angustura/S*() angusture/S*() anharmonique/S*() anhélation/S*() anhéler/c1() anhidrose/S*() anhydre/S*() anhydride/S*() anhydrite/S*() anhypothétique/S*() anicroche/S*() ânière/F*() aniline/S*() anilisme/S*() animadversion/S*() animal/X*() animalcule/S*() animale/W*() animalerie/S*() animalesque/S*() animalière/F*() animalisation/S*() animalisée/F*() animaliser/a2a+() animalité/S*() animation/S*() animatrice/F*() animée/F*() animer/a4a+() animisme/S*() animiste/S*() animosité/S*() anion/S*() anionique/S*() anis/L'D'Q' anisé/S*() anisée/F*() anisée/S*() aniser/a2a+() anisette/S*() anisogamie/S*() anisole/S*() anisotrope/S*() anisotropie/S*() ankylosaure/S*() ankylosée/F*() ankyloser/a4a+() ankylostome/S*() annale/W*() annales/D'Q' annaliste/S*() annalité/S*() annamite/S*() anneau/X*() année/S*() année-lumière/L'D'Q' années-lumière/D'Q' annelée/F*() anneler/d2a+() annelet/S*() annélide/S*() annexe/S*() annexée/F*() annexer/a4a+() annexion/S*() annexionnisme/S*() annexionniste/S*() annihilante/F*() annihilation/S*() annihilée/F*() annihiler/a4a+() anniversaire/S*() annonce/S*() annoncée/F*() annoncer/a4a+() annonceure/S*() annonceuse/F*() annonciation/S*() annonciatrice/F*() annoncière/F*() annone/S*() annotation/S*() annotatrice/F*() annotée/F*() annoter/a2a+() annuaire/S*() annualisée/F*() annualiser/a2a+() annualité/S*() annuelle/F*() annuellement/D'Q' annuitaire/S*() annuité/S*() annulable/S*() annulaire/S*() annulation/S*() annulatrice/F*() annulée/F*() annuler/a4a+() anoblie/F*() anoblir/f4f+() anoblissement/S*() anode/S*() anodine/F*() anodisation/S*() anodisée/F*() anodiser/a2a+() anodiseuse/F*() anodonte/S*() anomale/W*() anomalie/S*() anomaloscope/S*() anomie/S*() ânon/S*() anonacée/S*() anone/S*() ânonnement/S*() ânonner/a2a+() anonymat/S*() anonyme/S*() anonymement/D'Q' anonymiser/a4a+() anophèle/S*() anorak/S*() anordir/f1() anorexie/S*() anorexigène/S*() anorexique/S*() anormale/W*() anormalement/D'Q' anormalité/S*() anosmie/S*() anoure/S*() anovulation/S*() anovulatoire/S*() anoxémie/S*() anse/S*() ansée/F*() ansériforme/S*() ansérine/F*() ansérine/S*() antagonique/S*() antagonisme/S*() antagoniste/S*() antalgique/S*() antamanide/S*() antan/D' antarctique/S*() ante/S*() antécédence/S*() antécédente/F*() antéchrist/S*() antédiluvienne/F*() antéfixe/S*() antenaise/F*() anténatale/F*() antenne/S*() antenniste/S*() antépénultième/S*() antéposer/a2a+() antéposition/S*() antérieure/F*() antérieurement/D'Q' antériorité/S*() antérograde/S*() anthémis/L'D'Q' anthère/S*() anthérozoïde/S*() anthologie/S*() anthonome/S*() anthozoaire/S*() anthracène/S*() anthracite/S*() anthracnose/S*() anthracose/S*() anthraquinone/S*() anthrax/L'D'Q' anthrène/S*() anthropique/S*() anthropisation/S*() anthropocentrique/S*() anthropocentrisme/S*() anthropogenèse/S*() anthropoïde/S*() anthropologie/S*() anthropologique/S*() anthropologiquement/D'Q' anthropologiste/S*() anthropologue/S*() anthropométrie/S*() anthropométrique/S*() anthropomorphe/S*() anthropomorphique/S*() anthropomorphiser/a4a+() anthropomorphisme/S*() anthroponyme/S*() anthroponymie/S*() anthroponymique/S*() anthropophage/S*() anthropophagie/S*() antiabolitionniste/S*() antiacarien/S*() antiacarienne/F*() antiacnéique/S*() antiaérienne/F*() anti-âge/L'D'Q' antialcoolique/S*() antialcoolisme/S*() antialiasing/S*() antiallergique/S*() antiamarile/F*() antiaméricaine/F*() antiaméricanisme/S*() antiatome/S*() antiatomique/S*() antiautomorphisme/S*() antibactérienne/F*() antibélier/S*() antibiogramme/S*() antibiorésistance/S*() antibiotique/S*() antibois/L'D'Q' antibrouillage/S*() antibrouillard/S*() antibrouillée/F*() antibruit/L'D'Q' anticancéreuse/W*() anticapitaliste/S*() anticasseur/S*() anticathode/S*() antichambre/S*() antichar/S*() anticholérique/S*() anticholinergique/S*() antichômage/L'D'Q' antichrèse/S*() antichrétienne/F*() antichrist/S*() anticipation/S*() anticipée/F*() anticiper/a2a+() anticléricale/W*() anticléricalisme/S*() anticlinale/W*() anticoagulante/F*() anticolonialisme/S*() anticolonialiste/S*() anticomanie/S*() anticommunisme/S*() anticommuniste/S*() anticommutative/F*() anticommutée/F*() anticommuter/a2a+() anticonceptionnelle/F*() anticoncurrentielle/F*() anticonformisme/S*() anticonformiste/S*() anticonjoncturelle/F*() anticonstitutionnelle/F*() anticonstitutionnellement/D'Q' anticorps/L'D'Q' anticorpuscule/S*() anticrénelage/S*() anticryptogamique/S*() anticyclique/S*() anticyclonale/W*() anticyclone/S*() anticyclonique/S*() antidatée/F*() antidater/a2a+() antidéflagrante/F*() antidémarrage/L'D'Q' antidémarrage/S*() antidémocratique/S*() antidéplacement/S*() antidépresseur/S*() antidérapante/F*() antidérivation/S*() antidétonante/F*() antidiabétique/S*() antidiagonale/W*() antidiphtérique/S*() antidiurétique/S*() antidopage/L'D'Q' antidoping/L'D'Q' antidote/S*() antidrogue/L'D'Q' antidumping/L'D'Q' antieffraction/L'D'Q' antiémétique/S*() antiémeute/L'D'Q' antienne/S*() antiépileptique/S*() antiesclavagiste/S*() antiétatique/S*() antifascisme/S*() antifasciste/S*() antifiscale/W*() antifongique/S*() antifriction/S*() anti-g/L'D'Q' antigang/L'D'Q' antigel/S*() antigène/S*() antigivrante/F*() antiglisse/L'D'Q' antigouvernementale/W*() antigravifique/S*() antigravitation/S*() antigravitationnelle/F*() antihalo/L'D'Q' antihalo/S*() antihausse/L'D'Q' antihermitienne/F*() antihéros/L'D'Q' antihistaminique/S*() antiholomorphe/S*() antihoraire/S*() antihygiénique/S*() anti-impérialisme/S*() anti-impérialiste/S*() anti-inflammatoire/S*() anti-inflationniste/S*() antijeu/X*() antilinéaire/S*() antilithique/S*() antillaise/F*() antilogarithme/S*() antilope/S*() antimatière/S*() antimilitarisme/S*() antimilitariste/S*() antimissile/S*() antimite/S*() antimitotique/S*() antimoine/S*() antimonarchique/S*() antimonarchiste/S*() antimondialisation/S*() antimondialiste/S*() antimoniure/S*() antimycosique/S*() antinationale/W*() antinaturelle/F*() antinazie/F*() antinazisme/S*() antinévralgique/S*() antinomie/S*() antinomique/S*() antinucléaire/S*() antioncogène/S*() antioxydant/S*() antioxydante/F*() antipaludéenne/F*() antipaludique/S*() antipanique/L'D'Q' antipape/S*() antiparallèle/S*() antiparasite/S*() antiparlementaire/S*() antiparlementarisme/S*() antiparticule/S*() antipathie/S*() antipathique/S*() antipatriote/S*() antipatriotique/S*() antipatriotisme/S*() antipéristaltique/S*() antipersonnel/L'D'Q' antiphilosophique/S*() antiphlogistique/S*() antiphonaire/S*() antiphrase/S*() antipodale/W*() antipode/S*() antipodiste/S*() antipoison/S*() antipoliomyélitique/S*() antipollupostage/S*() antipollution/L'D'Q' antiprotéase/S*() antipyrétique/S*() antipyrine/S*() antiquaille/S*() antiquaire/S*() antiquark/S*() antique/S*() antiquée/F*() antiquement/D'Q' antiquer/a2a+() antiquité/S*() antirabique/S*() antirachitique/S*() antiracisme/S*() antiraciste/S*() antiradar/S*() antiradiation/S*() antireflet/S*() antiréglementaire/S*() antirejet/L'D'Q' antireligieuse/W*() antirétroviral/X*() antirétrovirale/W*() antirévolutionnaire/S*() antirides/L'D'Q' antirouille/S*() antisatellite/S*() antiscientifique/S*() antiscorbutique/S*() antisèche/S*() antiségrégationniste/S*() antisémite/S*() antisémitisme/S*() antiséparatif/S*() antisepsie/S*() antiseptique/S*() antisérotoninergique/S*() antislash/S*() antisociale/W*() anti-sous-marine/F*() antispasmodique/S*() antisportive/F*() antistatique/S*() antistress/L'D'Q' antistrophe/S*() antisymétrique/S*() antisyphilitique/S*() antitache/L'D'Q' antiterrorisme/S*() antiterroriste/S*() antitétanique/S*() antithermique/S*() antithèse/S*() antithétique/S*() antitoxine/S*() antitoxique/S*() antitrust/L'D'Q' antituberculeuse/W*() antitussive/F*() antivariolique/S*() antivénérienne/F*() antivenimeuse/W*() antiviral/X*() antivirale/W*() antivirus/L'D'Q' antivol/S*() antonyme/S*() antonymie/S*() antre/S*() antrustion/S*() anurie/S*() anus/L'D'Q' anversoise/F*() anxiété/S*() anxieuse/W*() anxieusement/D'Q' anxiogène/S*() anxiolytique/S*() aoriste/S*() aorte/S*() aortique/S*() aortite/S*() août/S*() aoûtage/S*() aoûtat/S*() aoûtée/F*() aoûtement/S*() aoûter/a2a+() aoûteron/S*() aoûtienne/F*() apache/S*() apagogie/S*() apaisante/F*() apaisée/F*() apaisement/S*() apaiser/a4a+() apanage/S*() apanagée/F*() apanager/a2a+() apanagiste/S*() aparté/S*() apartheid/S*() apatamer/a1() apathie/S*() apathique/S*() apatite/S*() apatosaure/S*() apatride/S*() apepsie/S*() aperception/S*() apercevoir/pK() aperçu/S*() aperçue/F*() apériodique/S*() apériteur/S*() apéritif/S*() apéritive/F*() apéro/S*() aperture/S*() apesanteur/S*() apétale/S*() à-peu-près/L'D' apeurée/F*() apeurer/a2a+() apex/L'D'Q' aphasie/S*() aphasique/S*() aphélie/S*() aphérèse/S*() aphodius/L'D'Q' aphone/S*() aphonie/S*() aphorisme/S*() aphotique/S*() aphrodisiaque/S*() aphrodisie/S*() aphrodite/S*() aphte/S*() aphteuse/W*() aphylle/S*() api/S*() à-pic/S*() apicale/W*() apicultrice/F*() apiculture/S*() apidé/S*() apiéceuse/F*() apiol/S*() apion/S*() apiquage/S*() apiquée/F*() apiquer/a2a+() apitoiement/S*() apitoyée/F*() apitoyer/a4a+() apivore/S*() aplanétique/S*() aplanie/F*() aplanir/f4f+() aplanissement/S*() aplasie/S*() aplat/S*() aplatie/F*() aplatir/f4f+() aplatissage/S*() aplatissement/S*() aplatisseur/S*() aplatissoir/S*() aplatissoire/S*() aplomb/S*() aplomber/a4a+() aplustre/S*() apnée/S*() apnéiste/S*() apoastre/S*() apocalypse/S*() apocalyptique/S*() apocope/S*() apocrisiaire/S*() apocryphe/S*() apocynacée/S*() apode/S*() apodictique/S*() apodictiquement/D'Q' apoenzyme/S*() apogamie/S*() apogée/S*() apographe/S*() apolipoprotéine/S*() apolitique/S*() apolitisme/S*() apollinienne/F*() apollon/S*() apologétique/S*() apologie/S*() apologiste/S*() apologue/S*() apomixie/S*() apomorphe/S*() apomorphie/S*() apomorphine/S*() aponévrose/S*() aponévrotique/S*() apophonie/S*() apophtegme/S*() apophysaire/S*() apophyse/S*() apoplectique/S*() apoplexie/S*() apoptose/S*() aporétique/S*() aporie/S*() aposiopèse/S*() apostasie/S*() apostasier/a1() apostate/F*() apostée/F*() aposter/a2a+() apostille/S*() apostillée/F*() apostiller/a2a+() apostolat/S*() apostolique/S*() apostoliquement/D'Q' apostrophe/S*() apostrophée/F*() apostropher/a4a+() apothème/S*() apothéose/S*() apothicaire/S*() apôtre/S*() appairage/S*() appairée/F*() appairer/a2a+() appalachienne/F*() apparaître/wQ() apparat/S*() apparatchik/S*() apparaux/D'Q' appareil/S*() appareillade/S*() appareillage/S*() appareillée/F*() appareillement/S*() appareiller/a4a+() appareilleuse/F*() apparemment/D'Q' apparence/S*() apparente/F*() apparentée/F*() apparentement/S*() apparenter/a4a+() appariée/F*() appariement/S*() apparier/a4a+() apparition/S*() apparitrice/F*() apparoir/pR() appartement/S*() appartenance/S*() appartenir/iB() apparue/F*() appas/D'Q' appassionato/D'Q' appât/S*() appâter/a2a+() appauvrie/F*() appauvrir/f4f+() appauvrissante/F*() appauvrissement/S*() appeau/X*() appel/S*() appelable/S*() appelante/F*() appelée/F*() appeler/d4a+() appellation/S*() appellative/F*() appendice/S*() appendicectomie/S*() appendicite/S*() appendiculaire/S*() appendre/tA() appentis/L'D'Q' appertisation/S*() appertiser/a2a+() appesantie/F*() appesantir/f4f+() appesantissement/S*() appétence/S*() appéter/c2a+() appétissante/F*() appétit/S*() appétitive/F*() applaudie/F*() applaudimètre/S*() applaudir/f4f+() applaudissement/S*() applet/S*() applicabilité/S*() applicable/S*() applicage/S*() application/S*() applicative/F*() applicatrice/F*() applique/S*() appliquée/F*() appliquer/a4a+() appliquette/S*() appoggiature/S*() appogiature/S*() appoint/S*() appointage/S*() appointée/F*() appointements/D'Q' appointer/a4a+() appointir/f2f+() apponse/S*() appontage/S*() appontée/F*() appontement/S*() apponter/a1() apponteur/S*() apport/S*() apportée/F*() apporter/a2a+() apporteur/S*() apposée/F*() apposer/a2a+() apposition/S*() appréciabilité/S*() appréciable/S*() appréciablement/D'Q' appréciation/S*() appréciative/F*() appréciatrice/F*() appréciée/F*() apprécier/a4a+() appréhendée/F*() appréhender/a2a+() appréhension/S*() appréhensive/F*() apprenante/F*() apprendre/tF() apprentie/F*() apprentissage/S*() apprêt/S*() apprêtage/S*() apprêtée/F*() apprêter/a4a+() apprêteuse/F*() apprise/F*() apprivoisable/S*() apprivoisée/F*() apprivoisement/S*() apprivoiser/a4a+() apprivoiseuse/F*() approbation/S*() approbative/F*() approbativement/D'Q' approbativité/S*() approbatrice/F*() approchable/S*() approchante/F*() approche/S*() approchée/F*() approcher/a4a+() approfondie/F*() approfondir/f4f+() approfondissement/S*() appropriable/S*() appropriation/S*() appropriée/F*() approprier/a4a+() approuvable/S*() approuvée/F*() approuver/a4a+() approvisionnée/F*() approvisionnement/S*() approvisionner/a4a+() approvisionneuse/F*() approximation/S*() approximative/F*() approximativement/D'Q' approximer/a2a+() appui/S*() appuie-bras/L'D'Q' appuie-livres/L'D'Q' appuie-main/L'D'Q' appuie-nuque/L'D'Q' appuie-tête/L'D'Q' appuyée/F*() appuyer/a4a+() apragmatisme/S*() apraxie/S*() apraxique/S*() âpre/S*() âprement après/L'D'Q'Qj après-demain/D'Q' après-dîner/S*() après-guerre/S*() après-midi/L'D'Q' après-rasage/L'D'Q' après-rasage/S*() après-ski/S*() après-vente/L'D'Q' âpreté/S*() apriorique/S*() apriorisme/S*() aprioriste/S*() à-propos/L'D'Q' apside/S*() apte/S*() aptère/S*() aptéryx/L'D'Q' aptienne/F*() aptitude/S*() apurement/S*() apurer/a2a+() aquacole/S*() aquacultrice/F*() aquaculture/S*() aquafortiste/S*() aquagym/S*() aquaplane/S*() aquarelle/S*() aquarelliste/S*() aquariophile/S*() aquariophilie/S*() aquarium/S*() aquatinte/S*() aquatintiste/S*() aquatique/S*() aquavit/S*() aqueduc/S*() aqueuse/W*() aquicole/S*() aquicultrice/F*() aquiculture/S*() aquifère/S*() aquiger/a1() aquilin/S*() aquilon/S*() aquitaine/F*() ara/S*() arabe/S*() arabesque/S*() arabica/S*() arabique/S*() arabisante/F*() arabisation/S*() arabisée/F*() arabiser/a4a+() arabisme/S*() arable/S*() arabo-andalou/S*() arabo-andalouse/S*() arabo-islamique/S*() arabo-musulmane/F*() arabophone/S*() aracée/S*() arachide/S*() arachnéenne/F*() arachnide/S*() arachnoïde/S*() arachnophobe/S*() arachnophobie/S*() aragonaise/F*() aragonite/S*() araignée/S*() araine/S*() araire/S*() araldite/S*() araméenne/F*() aramon/S*() aranais/L'D'Q' aranéide/S*() arantèle/S*() arasée/F*() arasement/S*() araser/a2a+() aratoire/S*() araucaria/S*() arbalète/S*() arbalétrière/F*() arbitrage/S*() arbitragiste/S*() arbitraire/S*() arbitrairement/D'Q' arbitrale/W*() arbitralement/D'Q' arbitre/S*() arbitrée/F*() arbitrer/a2a+() arborée/F*() arborer/a2a+() arborescence/S*() arborescente/F*() arboretum/S*() arboricole/S*() arboricultrice/F*() arboriculture/S*() arborification/S*() arborifiée/F*() arborisation/S*() arborisée/F*() arboriser/a1() arbouse/S*() arbousier/S*() arbre/S*() arbrisseau/X*() arbuste/S*() arbustive/F*() arc/S*() arcade/S*() arcane/S*() arcanson/S*() arcasse/S*() arcature/S*() arc-boutant/L'D'Q' arc-boutée/F*() arc-bouter/a4a+() arc-doubleau/L'D'Q' arceau/X*() arc-en-ciel/L'D'Q' archaïque/S*() archaïsante/F*() archaïser/a1() archaïsme/S*() archal/L'D' archange/S*() archangélique/S*() arche/S*() archée/S*() archéenne/F*() archégone/S*() archelle/S*() archéobactérie/S*() archéologie/S*() archéologique/S*() archéologiquement/D'Q' archéologue/S*() archéoptéryx/L'D'Q' archère/F*() archerie/S*() archet/S*() archetière/F*() archétype/S*() archevêché/S*() archevêque/S*() archiatre/S*() archiconfrérie/S*() archicube/S*() archidiacre/S*() archidiocésaine/F*() archiduc/S*() archiduché/S*() archiduchesse/S*() archiépiscopale/W*() archiépiscopat/S*() archimandrite/S*() archipel/S*() archiphonème/S*() archipresbytérale/W*() archiprêtresse/F*() archiptère/S*() architecte/S*() architectonie/S*() architectonique/S*() architecturale/W*() architecturalement/D'Q' architecture/S*() architecturée/F*() architecturer/a2a+() architrave/S*() archivage/S*() archive/S*() archivée/F*() archiver/a2a+() archiviste/S*() archivistique/S*() archivolte/S*() archonte/S*() arçon/S*() arçonnée/F*() arçonner/a2a+() arcs-boutants/D'Q' arcs-doubleaux/D'Q' arcs-en-ciel/D'Q' arctique/S*() arcure/S*() ardéchoise/S*() ardemment/D'Q' ardennaise/F*() ardente/F*() arder/a1() ardeur/S*() ardillon/S*() ardoise/S*() ardoisée/F*() ardoiser/a2a+() ardoisière/F*() ardre ardue/F*() are/S*() aréage/S*() arec/S*() arécacée/S*() aréflexie/S*() aréique/S*() areligieuse/W*() aréna/S*() arénacée/F*() arène/S*() arénicole/S*() arénite/S*() aréolaire/S*() aréole/S*() aréologie/S*() aréomètre/S*() aréométrie/S*() aréopage/S*() aréostyle/S*() aréquier/S*() arête/S*() arêtière/F*() argan/S*() arganier/S*() argas/L'D'Q' argent/S*() argentan/S*() argentée/F*() argenter/a4a+() argenterie/S*() argenteuse/F*() argentière/F*() argentifère/S*() argentine/F*() argentique/S*() argentite/S*() argenture/S*() argilacée/F*() argile/S*() argileuse/W*() arginine/S*() argiope/S*() argon/S*() argonaute/S*() argot/S*() argotique/S*() argotiser/a1() argotisme/S*() argotiste/S*() argougner/a2a+() argousier/S*() argousin/S*() arguer/a4a+() argument/S*() argumentaire/S*() argumentateur/S*() argumentation/S*() argumentative/F*() argumentée/F*() argumenter/a1() argus/L'D' argutie/S*() argyrisme/S*() argyronète/S*() argyrose/S*() aria/S*() arianisme/S*() aride/S*() aridité/S*() arienne/F*() ariette/S*() arille/S*() arion/S*() arioso/S*() ariser/a2a+() aristocrate/S*() aristocratie/S*() aristocratique/S*() aristocratiquement/D'Q' aristocratisme/S*() aristoloche/S*() aristotélicienne/F*() aristotélique/S*() aristotélisme/S*() arithméticienne/F*() arithmétique/S*() arithmétiquement/D'Q' arithmétisation/S*() arlequin/S*() arlequinade/S*() arlésienne/F*() armada/S*() armagnac/S*() armailli/S*() armatrice/F*() armature/S*() arme/S*() armée/F*() armée/S*() armeline/S*() armement/S*() arménienne/F*() armer/a4a+() armet/S*() armeuse/S*() armillaire/S*() armilles/D'Q' arminienne/F*() armistice/S*() armoire/S*() armoiries/D'Q' armoise/S*() armon/S*() armoriale/W*() armoricaine/F*() armoriée/F*() armorier/a2a+() armoriste/S*() armure/S*() armurée/F*() armurerie/S*() armurière/F*() arnachée/F*() arnacher/a2a+() arnaque/S*() arnaquée/F*() arnaquer/a2a+() arnaqueuse/F*() arnica/S*() arobase/F*() arolle/S*() aromate/S*() aromathérapie/S*() aromaticienne/F*() aromatique/S*() aromatisation/S*() aromatisée/F*() aromatiser/a2a+() arôme/S*() aronde/S*() arpège/S*() arpégée/F*() arpéger/c2a+() arpent/S*() arpentage/S*() arpentée/F*() arpenter/a2a+() arpenteuse/F*() arpète/S*() arpette/S*() arpigner/a2a+() arpion/S*() arquebusade/S*() arquebuse/S*() arquebuser/a2a+() arquebusier/S*() arquée/F*() arquepincer/a2a+() arquer/a4a+() arrachage/S*() arrachée/F*() arrachement/S*() arracher/a4a+() arrache-racine/L'D'Q' arracheuse/F*() arrachis/L'D'Q' arraisonnée/F*() arraisonnement/S*() arraisonner/a2a+() arrangeable/S*() arrangeante/F*() arrangée/F*() arrangement/S*() arranger/a4a+() arrangeuse/F*() arrenter/a2a+() arrérager/a3a+() arrérages/D' arrestation/S*() arrêt/S*() arrêté/S*() arrête-bœuf/L'D'Q' arrêtée/F*() arrêter/a4a+() arrêtiste/S*() arrêtoir/S*() arrhes/D'Q' arriération/S*() arrière/S*() arrière-ban/S*() arrière-bec/S*() arrière-bouche/S*() arrière-boutique/S*() arrière-cerveau/X*() arrière-chœur/S*() arrière-corps/L'D' arrière-cour/S*() arrière-cuisine/S*() arriérée/F*() arrière-faix/L'D'Q' arrière-fond/S*() arrière-garde/S*() arrière-gorge/S*() arrière-goût/S*() arrière-grand-mère/L'D'Q' arrière-grand-oncle/S*() arrière-grand-père/L'D'Q' arrière-grands-mères/D'Q' arrière-grands-oncles/D'Q' arrière-grands-parents/D'Q' arrière-grands-pères/D'Q' arrière-grand-tante/S*() arrière-main/S*() arrière-pays/L'D'Q' arrière-pensée/S*() arrière-petite-fille/L'D'Q' arrière-petite-nièce/L'D'Q' arrière-petites-filles/D'Q' arrière-petites-nièces/D'Q' arrière-petit-fils/L'D'Q' arrière-petit-neveu/L'D'Q' arrière-petits-enfants/D'Q' arrière-petits-fils/D'Q' arrière-petits-neveux/D'Q' arrière-plan/S*() arriérer/c2a+() arrière-saison/S*() arrière-train/S*() arrière-vassal/X*() arrimage/S*() arrimée/F*() arrimer/a2a+() arrimeuse/F*() arriser/a2a+() arrivage/S*() arrivante/F*() arrivée/F*() arrivée/S*() arriver/a2() arrivisme/S*() arriviste/S*() arrobe/S*() arroche/S*() arrogamment/D'Q' arrogance/S*() arrogante/F*() arroger/a3a+() arrondi/S*() arrondie/F*() arrondir/f4f+() arrondissage/S*() arrondissement/S*() arrondisseuse/F*() arrosable/S*() arrosage/S*() arrosée/F*() arrosement/S*() arroser/a4a+() arroseuse/F*() arrosoir/S*() arroyo/S*() ars/L'D' arsenal/X*() arséniate/S*() arsenic/S*() arsenicale/W*() arsénieuse/W*() arsénite/S*() arséniure/S*() arsine/F*() arsouille/S*() arsouiller/a3a+() art/S*() artefact/S*() artel/S*() artémia/S*() artère/S*() artériectomie/S*() artérielle/F*() artériographie/S*() artériole/S*() artériologie/S*() artérioscléreuse/W*() artériosclérose/S*() artériotomie/S*() artérite/S*() artéritique/S*() artésienne/F*() arthralgie/S*() arthrite/S*() arthritique/S*() arthritisme/S*() arthrodie/S*() arthrographie/S*() arthropathie/S*() arthropode/S*() arthroscopie/S*() arthroscopique/S*() arthrose/S*() arthurienne/F*() artichaut/S*() artichautière/S*() article/S*() articulaire/S*() articulation/S*() articulatoire/S*() articulée/F*() articuler/a4a+() articulet/S*() artifice/S*() artificielle/F*() artificiellement/D'Q' artificière/F*() artificieuse/W*() artificieusement/D'Q' artiller/a1() artillerie/S*() artilleur/S*() artimon/S*() artisanale/W*() artisanalement/D'Q' artisanat/S*() artisane/F*() artison/S*() artiste/S*() artistement/D'Q' artistique/S*() artistiquement/D'Q' artocarpe/S*() arum/S*() arvale/S*() arvine/S*() aryenne/F*() aryle/S*() aryténoïde/S*() arythmie/S*() as/L'D'Q' as/||-- asbeste/S*() asbestose/S*() ascaride/S*() ascaridiase/S*() ascaridiose/S*() ascendance/S*() ascendante/F*() ascenseur/S*() ascension/S*() ascensionnelle/F*() ascensionner/a2a+() ascensionniste/S*() ascensoriste/S*() ascèse/S*() ascète/S*() ascétique/S*() ascétisme/S*() ascidie/S*() ascite/S*() ascitique/S*() asclépiadacée/S*() asclépiade/S*() ascomycète/S*() ascorbique/S*() asepsie/S*() aseptique/S*() aseptisation/S*() aseptisée/F*() aseptiser/a2a+() asexualité/S*() asexuée/F*() asexuelle/F*() ashkénaze/S*() ashram/S*() asialie/S*() asiate/S*() asiatique/S*() asilaire/S*() asile/S*() asinienne/F*() asociabilité/S*() asociale/W*() asparagine/S*() asparagus/L'D'Q' aspartame/S*() aspartate/S*() aspartique/S*() aspe/S*() aspect/S*() aspectée/F*() aspecter/a2a+() asperge/S*() aspergée/F*() asperger/a4a+() aspergille/S*() aspergillose/S*() aspérité/S*() aspermatisme/S*() asperme/S*() aspersion/S*() aspersoir/S*() aspérule/S*() asphaltage/S*() asphalte/S*() asphaltée/F*() asphalter/a2a+() asphalteuse/F*() asphaltique/S*() asphérique/S*() asphodèle/S*() asphyxiante/F*() asphyxie/S*() asphyxiée/F*() asphyxier/a4a+() aspic/S*() aspidistra/S*() aspirante/F*() aspirateur/S*() aspiration/S*() aspiratoire/S*() aspirée/F*() aspirée/S*() aspirer/a4a+() aspirine/S*() asple/S*() asque/S*() assa-fœtida/S*() assagie/F*() assagir/f4f+() assagissement/S*() assaillante/F*() assaillie/F*() assaillir/iT() assainie/F*() assainir/f2f+() assainissement/S*() assainisseuse/F*() assaisonnée/F*() assaisonnement/S*() assaisonner/a2a+() assamaise/F*() assarmenter/a2a+() assassinat/S*() assassine/F*() assassinée/F*() assassiner/a2a+() assaut/S*() assavoir asse/S*() asseau/X*() asséchée/F*() assèchement/S*() assécher/c4a+() assemblage/S*() assemblée/F*() assemblée/S*() assemblement/S*() assembler/a4a+() assembleuse/F*() assénée/F*() asséner/c2a+() assentiment/S*() asseoir/pS() assermentation/S*() assermentée/F*() assermenter/a2a+() assertion/S*() asservie/F*() asservir/f4f+() asservissante/F*() asservissement/S*() asservisseur/S*() assesseure/F*() assette/S*() assez/L'D'Q' assibilation/S*() assibiler/a4a+() assidue/F*() assiduité/S*() assidûment/D'Q' assiégeante/F*() assiégée/F*() assiéger/c2a+() assiette/S*() assiettée/S*() assignable/S*() assignat/S*() assignation/S*() assignée/F*() assigner/a2a+() assimilable/S*() assimilation/S*() assimilationniste/S*() assimilatrice/F*() assimilée/F*() assimiler/a4a+() assise/F*() assistanat/S*() assistance/S*() assistante/F*() assistée/F*() assister/a2a+() associable/S*() association/S*() associationnisme/S*() associationniste/S*() associative/F*() associativité/S*() associatrice/F*() associée/F*() associer/a4a+() assoiffée/F*() assoiffer/a2a+() assolée/F*() assolement/S*() assoler/a2a+() assombrie/F*() assombrir/f4f+() assombrissement/S*() assommante/F*() assommée/F*() assommer/a4a+() assommeur/S*() assommoir/S*() assomption/S*() assonance/S*() assonancée/F*() assonante/F*() assoner/a1() assortie/F*() assortiment/S*() assortir/f4f+() assortisseuse/F*() assoupie/F*() assoupir/f4f+() assoupissante/F*() assoupissement/S*() assouplie/F*() assouplir/f4f+() assouplissant/S*() assouplissement/S*() assouplisseur/S*() assourdie/F*() assourdir/f4f+() assourdissante/F*() assourdissement/S*() assouvie/F*() assouvir/f4f+() assouvissement/S*() assuétude/S*() assujettie/F*() assujettir/f4f+() assujettissante/F*() assujettissement/S*() assumée/F*() assumer/a4a+() assurable/S*() assurage/S*() assurance/S*() assurance-accidents/L'D' assurance-chômage/L'D' assurance-crédit/L'D' assurance-invalidité/L'D' assurance-maladie/L'D' assurances-crédits/D'Q' assurance-vieillesse/L'D' assurée/F*() assurément/D'Q' assurer/a4a+() assureuse/F*() assyrienne/F*() assyriologie/S*() assyriologue/S*() astable/S*() astacicultrice/F*() astaciculture/S*() astasie/S*() astate/S*() astatique/S*() aster/S*() astéréognosie/S*() astéride/S*() astérie/S*() astérisme/S*() astérisque/S*() astéroïde/S*() asthénie/S*() asthénique/S*() asthénosphère/S*() asthmatique/S*() asthme/S*() asti/S*() asticot/S*() asticotage/S*() asticotée/F*() asticoter/a2a+() astigmate/S*() astigmatisme/S*() astiquage/S*() astiquée/F*() astiquer/a2a+() astragale/S*() astrakan/S*() astrale/W*() astre/S*() astreignante/F*() astreindre/wB() astreinte/F*() astreinte/S*() astringence/S*() astringente/F*() astrobiologie/S*() astroblème/S*() astrographe/S*() astrolabe/S*() astrolâtrie/S*() astrologie/S*() astrologique/S*() astrologue/S*() astrométrie/S*() astronaute/S*() astronautique/S*() astronef/S*() astronome/S*() astronomie/S*() astronomique/S*() astronomiquement/D'Q' astroparticule/S*() astrophysicienne/F*() astrophysique/S*() astroport/S*() astuce/S*() astucieuse/W*() astucieusement/D'Q' asturienne/F*() asymétrie/S*() asymétrique/S*() asymétriquement/D'Q' asymptomatique/S*() asymptote/S*() asymptotique/S*() asymptotiquement/D'Q' asynchrone/S*() asynchronisme/S*() asyndète/S*() asynergie/S*() asystolie/S*() atactique/S*() ataraxie/S*() ataraxique/S*() atavique/S*() atavisme/S*() ataxie/S*() ataxique/S*() atèle/S*() atelier/S*() atemporelle/F*() atermoiement/S*() atermoyer/a1() athanor/S*() athée/S*() athéisme/S*() athématique/S*() athénée/S*() athénienne/F*() athéologie/S*() athermane/S*() athermique/S*() athéromateuse/W*() athérome/S*() athérosclérose/S*() athétose/S*() athlète/S*() athlétique/S*() athlétisme/S*() athymie/S*() atlante/S*() atlantique/S*() atlantisme/S*() atlas/L'D'Q' atm/||-- atmosphère/S*() atmosphérique/S*() atoll/S*() atome/S*() atome-gramme/L'D'Q' atomes-grammes/D'Q' atomicienne/F*() atomicité/S*() atomique/S*() atomisation/S*() atomisée/F*() atomiser/a4a+() atomiseur/S*() atomisme/S*() atomiste/S*() atomistique/S*() atonal/S*() atonale/W*() atonalité/S*() atone/S*() atonie/S*() atonique/S*() atopie/S*() atopique/S*() atour/S*() atout/S*() atoxique/S*() atrabilaire/S*() atrabile/S*() atractyligénine/S*() âtre/S*() atrière/F*() atrium/S*() atroce/S*() atrocement/D'Q' atrocité/S*() atrophie/S*() atrophiée/F*() atrophier/a4a+() atropine/S*() attablée/F*() attabler/a4a+() attachante/F*() attache/S*() attaché-case/L'D'Q' attachée/F*() attachement/S*() attacher/a4a+() attachés-cases/D'Q' attacheuse/F*() attagène/S*() attaquable/S*() attaquante/F*() attaque/S*() attaquée/F*() attaquer/a4a+() attardée/F*() attarder/a3a+() atteignable/S*() atteindre/wB() atteinte/F*() atteinte/S*() attelage/S*() attelée/F*() atteler/d4a+() attelle/S*() attenante/F*() attendre/tA() attendrie/F*() attendrir/f4f+() attendrissante/F*() attendrissement/S*() attendrisseur/S*() attendu attendue/F*() attentat/S*() attentatoire/S*() attente/S*() attenter/a5() attention/S*() attentionnée/F*() attentisme/S*() attentiste/S*() attentive/F*() attentivement/D'Q' atténuante/F*() atténuateur/S*() atténuation/S*() atténuée/F*() atténuer/a4a+() atterrage/S*() atterrante/F*() atterrée/F*() atterrer/a2a+() atterrie/F*() atterrir/f1f+() atterrissage/S*() atterrissement/S*() atterrisseur/S*() attestation/S*() attestée/F*() attester/a2a+() atticisme/S*() attiédie/F*() attiédir/f4f+() attiédissement/S*() attifée/F*() attifement/S*() attifer/a4a+() attifet/S*() attiger/a2a+() attique/S*() attirable/S*() attirail/S*() attirance/S*() attirante/F*() attirée/F*() attirer/a4a+() attisée/F*() attisement/S*() attiser/a2a+() attitrée/F*() attitrer/a2a+() attitude/S*() attorney/S*() attouchement/S*() attoucher/a4a+() attracteur/S*() attraction/S*() attractive/F*() attractivité/S*() attrait/S*() attrapade/S*() attrapage/S*() attrapée/F*() attrape-mouche/S*() attrape-nigaud/S*() attraper/a4a+() attrape-tout/L'D'Q' attrapeuse/F*() attrayante/F*() attribuable/S*() attribuée/F*() attribuer/a4a+() attribut/S*() attributaire/S*() attribution/S*() attributive/F*() attriquer/a2a+() attristante/F*() attristée/F*() attrister/a4a+() attrition/S*() attroupée/F*() attroupement/S*() attrouper/a4a+() atypique/S*() au/L'D'Q'QjX. aubade/S*() aubaine/F*() aube/S*() aubépine/S*() aubère/S*() auberge/S*() aubergine/S*() aubergiste/S*() auberon/S*() aubette/S*() aubier/S*() aubin/S*() aubiner/a1() auburn/L'D'Q' aucuba/S*() aucune/F*() aucunement/D'Q' audace/S*() audacieuse/W*() audacieusement/D'Q' au-dedans/Q' au-dehors/Q' au-delà/L'D' au-delà/Q' au-dessous/Q' au-dessus/Q' au-devant/Q' audibilité/S*() audible/S*() audience/S*() audiencière/F*() audimètre/S*() audimutité/S*() audio/L'D'Q' audioconférence/S*() audiodescription/S*() audiodisque/S*() audiofréquence/S*() audiogramme/S*() audioguide/S*() audiolivre/S*() audiomètre/S*() audiométrie/S*() audionumérique/S*() audiophone/S*() audioprothésiste/S*() audiotex/L'D'Q' audiotypiste/S*() audiovisuel/S*() audiovisuelle/F*() audit/S*() auditer/a2a+() audition/S*() auditionnée/F*() auditionner/a2a+() auditive/F*() auditoire/S*() auditorat/S*() auditorium/S*() auditrice/F*() auge/S*() augée/S*() auget/S*() augette/S*() augment/S*() augmentable/S*() augmentation/S*() augmentative/F*() augmentée/F*() augmenter/a4a+() augurale/W*() augure/S*() augurer/a2a+() auguste/S*() augustine/F*() augustinienne/F*() augustinisme/S*() aujourd'hui/D'Q'Qj aulique/S*() aulne/S*() aulx aumône/S*() aumônerie/S*() aumônière/F*() aune/S*() auner/a2a+() auparavant/D'Q' auprès/Q'Qj auquel aura/S*() aurantiacée/S*() auréole/S*() auréolée/F*() auréoler/a4a+() auréomycine/S*() auriculaire/S*() auricule/S*() aurifère/S*() aurification/S*() aurifiée/F*() aurifier/a2a+() aurige/S*() aurignacienne/F*() aurique/S*() aurochs/L'D'Q' aurore/S*() auscultation/S*() auscultatoire/S*() auscultée/F*() ausculter/a4a+() auspices/D'Q' aussi/D'Q' aussière/S*() aussitôt/D'Q' austère/S*() austèrement/D'Q' austérité/S*() australe/W*() australienne/F*() australoïde/S*() australopithèque/S*() australs/D'Q' austro-hongroise/F*() austronésien/S*() austronésienne/F*() autan/S*() autant/D'Q' autarcie/S*() autarcique/S*() autel/S*() auteure/F*() authenticité/S*() authentification/S*() authentifiée/F*() authentifier/a4a+() authentique/S*() authentiquement/D'Q' authentiquer/a2a+() autisme/S*() autiste/S*() autistique/S*() auto/S*() autoaccusation/S*() autoadhésive/F*() autoadjointe/F*() autoalarme/S*() autoallumage/S*() autoamorçage/S*() autoberge/S*() autobiographe/S*() autobiographie/S*() autobiographique/S*() autobloquante/F*() autobus/L'D'Q' autocalibration/S*() autocar/S*() autocaravane/S*() autocariste/S*() autocassable/S*() autocensure/S*() autocensurer/a3a+() autocéphale/S*() autochenille/S*() autochrome/S*() autochtone/S*() autocinétique/S*() autocinétisme/S*() autoclave/S*() autoclaviste/S*() autocollante/F*() autocommutateur/S*() autoconcurrence/S*() autoconduction/S*() autoconsommation/S*() autocopie/S*() autocorrection/S*() autocrate/S*() autocratie/S*() autocratique/S*() autocratiquement/D'Q' autocratisme/S*() autocritique/S*() autocuiseur/S*() autodafé/S*() autodéfense/S*() autodestruction/S*() autodestructrice/F*() autodétermination/S*() autodéterminer/a3a+() autodétruire/yO() autodidacte/S*() autodidactique/S*() autodidaxie/S*() autodiscipline/S*() autodrome/S*() auto-école/S*() autoédition/S*() autoentrepreneuriat/S*() autoentrepreneuse/F*() autoentreprise/S*() autoéquilibrante/F*() autoérotique/S*() autoérotisme/S*() autoethnonyme/S*() autoévaluante/F*() autoévaluation/S*() autoexcitatrice/F*() autoextractible/S*() autofiction/S*() autofinancée/F*() autofinancement/S*() autofinancer/a4a+() autofocus/L'D'Q' autoformation/S*() autogame/S*() autogamie/S*() autogène/S*() autogérée/F*() autogestion/S*() autogestionnaire/S*() autogire/S*() autogoal/S*() autographe/S*() autographiée/F*() autographier/a2a+() autoguérison/S*() autoguidage/S*() autoguidée/F*() autoguider/a3a+() auto-immune/F*() auto-immunisation/S*() auto-imposition/S*() auto-intoxication/S*() autoïque/S*() automate/S*() automaticienne/F*() automaticité/S*() automation/S*() automatique/S*() automatiquement/D'Q' automatisable/S*() automatisation/S*() automatisée/F*() automatiser/a2a+() automatiseur/S*() automatisme/S*() automédication/S*() automédon/S*() automitrailleuse/S*() automnale/W*() automne/S*() automobile/S*() automobilisable/S*() automobilisme/S*() automobiliste/S*() automorphe/S*() automorphisme/S*() automotrice/F*() automutilation/S*() autoneige/S*() autonettoyante/F*() autonome/S*() autonomie/S*() autonomisation/S*() autonomiser/a4a+() autonomisme/S*() autonomiste/S*() autonyme/S*() autonymie/S*() autonymique/S*() auto-patrouille/L'D'Q' autophagie/S*() autoplastie/S*() autopompe/S*() autoportante/F*() autoporteuse/F*() autoportrait/S*() autoproclamée/F*() autoproclamer/a3a+() autoproduction/S*() autopropulsée/F*() autopropulsion/S*() autopsie/S*() autopsiée/F*() autopsier/a2a+() autopunition/S*() autoradio/S*() autoradiographie/S*() autorail/S*() autoréglage/S*() autorégulation/S*() autorégulatrice/F*() autorisation/S*() autorisatrice/F*() autorisée/F*() autoriser/a4a+() autoritaire/S*() autoritairement/D'Q' autoritarisme/S*() autorité/S*() autoroute/S*() autoroutière/F*() autosatisfaction/S*() autoscopie/S*() autos-couchettes/L'D'Q' autosimilaire/S*() autosomale/W*() autosome/S*() autosomique/S*() autos-patrouilles/D'Q' auto-stop/S*() auto-stoppeuse/F*() autostrade/S*() autosuffisance/S*() autosuggestion/S*() autosuggestionner/a3a+() autosurveillance/S*() autotélie/S*() autotomie/S*() autotomiser/a3a+() autotour/S*() autotrophe/S*() autotrophie/S*() autour/D'Q' autour/S*() autovaccin/S*() autovaccination/S*() autre/S*() autrefois/D'Q' autrement/D'Q' autrice/S*() autrichienne/F*() autruche/S*() autrui/L'D'Q' auvent/S*() auvergnate/F*() auxiliaire/S*() auxiliairement/D'Q' auxiliariat/S*() auxine/S*() auxquelles/D' auxquels/D' avachie/F*() avachir/f4f+() avachissement/S*() aval/S*() avalanche/S*() avalancheuse/W*() avalée/F*() avalement/S*() avaler/a2a+() avale-tout/L'D'Q' avaleuse/F*() avalisée/F*() avaliser/a2a+() avaliseur/S*() avaliste/S*() à-valoir/L'D'Q' avaloir/S*() avaloire/S*() avance/S*() avancée/F*() avancée/S*() avancement/S*() avancer/a4a+() avanie/S*() avant/D'Q' avant/S*() avantage/S*() avantagée/F*() avantager/a2a+() avantageuse/W*() avantageusement/D'Q' avant-bras/L'D'Q' avant-centre/L'D'Q' avant-corps/L'D'Q' avant-coureur/S*() avant-creuset/S*() avant-dernière/F*() avant-garde/S*() avant-gardisme/S*() avant-gardiste/S*() avant-goût/S*() avant-guerre/S*() avant-hier/D'Q' avant-main/S*() avant-midi/L'D'Q' avant-port/S*() avant-poste/S*() avant-première/S*() avant-projet/S*() avant-propos/L'D'Q' avant-scène/S*() avants-centres/D'Q' avant-soirée/S*() avant-toit/S*() avant-train/S*() avant-veille/S*() avare/S*() avarement/D'Q' avarice/S*() avaricieuse/W*() avarie/S*() avariée/F*() avarier/a4a+() avatar/S*() avec/D'Q' aveindre aveline/S*() avelinier/S*() aven/S*() avenante/F*() avènement/S*() avenir avenir/S*() avent/L'D' aventure/S*() aventurée/F*() aventurer/a4a+() aventureuse/W*() aventureusement/D'Q' aventurière/F*() aventurine/S*() aventurisme/S*() avenue/S*() avérée/F*() avérer/c4a+() avers/L'D' averse/S*() aversion/S*() avertie/F*() avertir/f2f+() avertissement/S*() avertisseuse/F*() aveu/X*() aveuglante/F*() aveugle/S*() aveuglée/F*() aveuglément/D'Q' aveuglement/S*() aveugler/a4a+() aveuglette/S*() aveulie/F*() aveulir/f4f+() aveulissement/S*() aviaire/S*() aviation/S*() aviatrice/F*() avicole/S*() avicultrice/F*() aviculture/S*() avide/S*() avidement/D'Q' avidité/S*() avilie/F*() avilir/f4f+() avilissante/F*() avilissement/S*() avinée/F*() aviner/a2a+() avion/S*() avion-cargo/L'D'Q' avionique/S*() avionnette/S*() avionneuse/F*() avions-cargos/D'Q' aviron/S*() avis/L'D'Q' avisée/F*() aviser/a4a+() aviso/S*() avitaillée/F*() avitaillement/S*() avitailler/a4a+() avitailleuse/F*() avitaminose/S*() avivage/S*() avivée/F*() avivement/S*() aviver/a2a+() aviveuse/F*() avocaillon/S*() avocasser/a2a+() avocasserie/S*() avocassière/F*() avocate/F*() avocatier/S*() avocette/S*() avoine/S*() avoinée/F*() avoiner/a2a+() avoir/zA() avoirdupoids/L'D' avoirs avoisinante/F*() avoisiner/a4a+() avortée/F*() avortement/S*() avorter/a2a+() avorteuse/F*() avorton/S*() avouable/S*() avouée/F*() avouer/a4a+() avoyer/a2a+() avr avril/S*() avulsion/S*() avunculaire/S*() axe/S*() axée/F*() axer/a4a+() axiale/W*() axile/S*() axillaire/S*() axiologie/S*() axiologique/S*() axiomatique/S*() axiomatisation/S*() axiomatisée/F*() axiomatiser/a2a+() axiome/S*() axis/L'D'Q' axoa/S*() axolotl/S*() axonaise/F*() axone/S*() axonge/S*() axonométrie/S*() axonométrique/S*() ayant/S*() ayatollah/S*() ayurvéda/S*() ayurvédique/S*() azalée/S*() azéotrope/S*() azéotropique/S*() azerbaïdjanaise/F*() azérie/F*() azerole/S*() azerolier/S*() azidothymidine/S*() azimut/S*() azimutale/W*() azimuter/a2a+() azimuther/a2a+() azoïque/S*() azolla/S*() azoospermie/S*() azotate/S*() azote/S*() azotée/F*() azotémie/S*() azoteuse/W*() azotique/S*() azotite/S*() azoture/S*() azoturie/S*() aztèque/S*() azulejo/S*() azulène/S*() azur/S*() azurage/S*() azurant/S*() azurée/F*() azuréenne/F*() azurer/a2a+() azurite/S*() azygos/L'D'Q' azyme/S*() b b/||-- ba/||-- baasisme/S. baasiste/S. baba/S. babeler/d0() babelutte/S. babeurre/S. babil/S. babillage/S. babillarde/F.() babiller/a0() babine/S. babiole/S. babiroussa/S. babisme/S. bâbord bâbordais babouche/S. babouchka/S. babouin/S. babouvisme/S. baby/S. baby-boom/S. baby-boomer/S. baby-foot babylonienne/F.() baby-sitter/S. baby-sitting/S. bac/S. baccalauréat/S. baccara baccarat bacchanale/S. bacchante/S. bacciforme/S. bâchage/S. bachat/S. bâche/S. bâchée/F.() bachelière/F.() bâcher/a0a+() bachi/S. bachi-bouzouk/S. bachique/S. bachot/S. bachotage/S. bachoter/a0() bacillaire/S. bacille/S. bacilliforme/S. bacillose/S. backgammon/S. back-office/S. bâclage/S. bâclée/F.() bâcler/a0a+() bacon bactéricide/S. bactéridie/S. bactérie/S. bactérienne/F.() bactériologie/S. bactériologique/S. bactériologiste/S. bactériologue/S. bactériophage/S. bactériostatique/S. bacul/S. badaude/F.() badauderie/S. badelaire/S. bader/a0a+() baderne/S. badge/S. badiane/S. badigeon/S. badigeonnage/S. badigeonnée/F.() badigeonner/a0a+() badigeonneur/S. badigoinces badinage/S. badine/F.() badiner/a0() badinerie/S. badminton baeckeofe/S. baffe/S. baffer/a0a+() baffle/S. bafouer/a0a+() bafouillage/S. bafouille/S. bafouiller/a0a+() bafouilleuse/F.() bafouillis bâfrer/a0a+() bâfreuse/F.() bagad/S. bagage/S. bagagiste/S. bagarre/S. bagarrer/a0a+() bagarreuse/F.() bagasse/S. bagatelle/S. bagnarde/F.() bagne/S. bagnole/S. bagote/S. bagoter/a0() bagotte/S. bagotter/a0() bagou bagouler/a0() bagout baguage/S. bague/S. baguée/F.() baguenauder/a0a+() baguenaudier/S. baguer/a0a+() baguette/S. baguier/S. baguiste/S. bah bahut/S. baie/F.() baignade/S. baigner/a0a+() baigneuse/F.() baignoire/S. bail/X. bâillement/S. bailler/a0a+() bâiller/a0() bailleresse/F.() bâilleuse/F.() bailli/S. bailliage/S. bâillon/S. bâillonnée/F.() bâillonnement/S. bâillonner/a0a+() bain/S. bain-marie bains-marie baïonnette/S. baïram/S. baisable/S. baise/S. baisée/F.() baisemain/S. baisement/S. baiser/S. baiser/a0a+() baiseuse/F.() baisse/S. baissée/F.() baissement/S. baisser/a0a+() baissière/F.() bajoue/S. bajoyer/S. bakchich/S. bakélite/S. baklava/S. bal/S. balade/S. balader/a0a+() baladeuse/F.() baladin/S. balado/S. baladodiffuseuse/F.() baladodiffusion/S. balafon/S. balafre/S. balafrée/F.() balafrer/a0a+() balai/S. balai-brosse balais-brosses balaise/S. balalaïka/S. balance/S. balancée/F.() balancelle/S. balancement/S. balancer/a0a+() balancière/F.() balancine/S. balançoire/S. balane/S. balanite/S. balanoglosse/S. balanstiquer/a0a+() balata/S. balayage/S. balayée/F.() balayer/a0a+() balayette/S. balayeuse/F.() balayure/S. balbutiante/F.() balbutiée/F.() balbutiement/S. balbutier/a0a+() balbuzard/S. balcon/S. balconnet/S. baldaquin/S. baleine/S. baleineau/X. baleinée/F.() baleiner/a0a+() baleinière/F.() balénoptère/S. balès balèvre/S. balèze/S. baligander/a0() balisage/S. balise/S. balisée/F.() baliser/a0a+() baliseur/S. balisier/S. baliste/S. balisticienne/F.() balistique/S. balivage/S. baliveau/X. baliverne/S. balkanique/S. balkanisation/S. balkanisée/F.() balkaniser/a0a+() ballade/S. ballante/F.() ballast/S. ballastage/S. ballaster/a0a+() ballastière/S. balle/S. balle-molle baller/a0() ballerine/S. balles-molles ballet/S. balletomane/S. ballon/S. ballonnée/F.() ballonnement/S. ballonner/a0a+() ballonnet/S. ballon-sonde ballons-sondes ballot/S. ballote/S. ballotin/S. ballottage/S. ballottée/F.() ballottement/S. ballotter/a0a+() ballottine/S. ball-trap/S. balluchon/S. balnéaire/S. balnéation/S. balnéothérapie/S. balourde/F.() balourdise/S. baloutche/S. baloutchi/S. balsa/S. balsamier/S. balsamine/S. balsamique/S. balte/S. balter/a0a+() balthazar/S. baluchithérium/S. baluchon/S. baluchonner balustrade/S. balustre/S. balzane/F.() bambin/S. bamboche/S. bambocher/a0() bambocheuse/F.() bambou/S. bamboula/S. bambouseraie/S. ban/S. banachique/S. banale/F.() banale/W.() banalement banalisation/S. banalisée/F.() banaliser/a0a+() banalité/S. banane/S. bananer/a0a+() bananeraie/S. bananier/S. banaste/S. banc/S. bancable/S. bancaire/S. bancale/F.() bancarisation/S. bancassurance/S. bancassureur/S. banche/S. banchée/F.() bancher/a0a+() bancheuse/F.() banco/S. bancoulier/S. bancroche/S. bandage/S. bandagiste/S. bandana/S. bandante/F.() bande/S. bandeau/X. bandée/F.() bandelette/S. bander/a0a+() banderille/S. banderillero/S. banderole/S. bandit/S. banditisme/S. bandonéon/S. bandoulière/S. bang/S. banian/S. banjo/S. banjoïste/S. banlieue/S. banlieusarde/F.() banlon/S. banner/a0a+() banneret/S. banneton/S. bannette/S. bannie/F.() bannière/S. bannir/f0f+() bannissement/S. banon/S. banque/S. banquer/a0() banqueroute/S. banqueroutière/F.() banquet/S. banqueter/d0() banqueteur/S. banquette/S. banquière/F.() banquise/S. banquiste/S. bantoue/F.() baobab/S. baptême/S. baptisée/F.() baptiser/a0a+() baptismale/W.() baptisme/S. baptistaire/S. baptiste/S. baptistère/S. baquer/a0a+() baquet/S. baqueter/d0a+() baquetures bar/S. bar/||-- baragouin/S. baragouinage/S. baragouinée/F.() baragouiner/a0a+() baragouineuse/F.() baraka/S. barakie/F.() baraque/S. baraquée/F.() baraquement/S. baraquer/a0a+() baraterie/S. baratin/S. baratinée/F.() baratiner/a0a+() baratineuse/F.() barattage/S. baratte/S. baratter/a0a+() barbacane/S. barbante/F.() barbaque/S. barbare/S. barbaresque/S. barbarie/S. barbarisme/S. barbe/S. barbeau/X. barbecue/S. barbée/F.() barbelé/S. barbelée/F.() barbelure/S. barber/a0a+() barbet/S. barbette/F.() barbiche/S. barbichette/S. barbichue/F.() barbier/S. barbifier/a0a+() barbille/S. barbillon/S. barbital/S. barbiturique/S. barbiturisme/S. barbon/S. barbotage/S. barboter/a0a+() barboteuse/F.() barbotière/S. barbotine/F.() barbouillage/S. barbouiller/a0a+() barbouilleuse/F.() barbouze/S. barbue/F.() barbule/S. barcarolle/S. barcasse/S. bard/S. bardage/S. bardane/S. barde/S. bardeau/X. bardée/F.() barder/a0a+() barder/a9a+() bardeuse/F.() bardis bardot/S. barème/S. barémique/S. baréter/c0() barge/S. barguigner/a0() barguigneuse/F.() baribal/S. baril/S. barillet/S. bariolage/S. bariolée/F.() barioler/a0a+() bariolure/S. barjaquer/a0() barlongue/F.() barloquer/a0() barlotière/S. barmaid/S. barman/S. barn/S. barnabite/S. barographe/S. baromètre/S. barométrique/S. baronnage/S. baronne/F.() baronner/a0a+() baronnet/S. baronnette/S. baronnie/S. baroque/S. baroquisme/S. baroscope/S. barotraumatisme/S. baroud/S. barouder/a0() baroudeur/S. barouf/S. baroufle/S. barque/S. barquerolle/S. barquette/S. barracuda/S. barrage/S. barragiste/S. barre/S. barreau/X. barrée/F.() barregraphe/S. barrel/S. barrement/S. barrer/a0a+() barrette/S. barreuse/F.() barricade/S. barricadée/F.() barricader/a0a+() barrière/S. barrique/S. barrir/f0() barrissement/S. barrot/S. bartavelle/S. barycentre/S. barycentrique/S. barye/S. barymétrie/S. baryon/S. baryonique/S. barysphère/S. baryte/S. barytine/S. baryton/S. baryum/S. barzoï/S. bas bas basale/W.() basalte/S. basaltique/S. basane/S. basanée/F.() basaner/a0a+() bas-bleu/S. bas-côté/S. basculante/F.() bascule/S. basculée/F.() basculement/S. basculer/a0a+() basculeur/S. bas-de-casse base/S. base-ball/S. basée/F.() baselle/S. baser/a0a+() bas-fond/S. basicité/S. baside/S. basidiomycète/S. basilaire/S. basilic/S. basilicale/W.() basilique/S. basin/S. basique/S. bas-jointée/F.() basket/S. basket-ball/S. basketteuse/F.() bas-mât/S. basoche/S. basophile/S. basquaise/S. basque/S. basquine/S. bas-relief/S. basse/S. basse-contre basse-cour basse-courière/F.() basse-danse basse-fosse basse-lisse basse-lissière/F.() bassement basses-contre basses-cours basses-danses basses-fosses basses-lisses bassesse/S. basses-tailles basses-villes basset/S. basse-taille basse-ville bassin/S. bassinante/F.() bassine/S. bassiner/a0a+() bassinet/S. bassinoire/S. bassiste/S. basson/S. bastaing/S. baste/S. baster/a0() basterne/S. bastide/S. bastidon/S. bastille/S. bastillée/F.() bastillonnée/F.() bastillonner/a0a+() bastingage/S. bastion/S. bastionnée/F.() bastionner/a0a+() baston/S. bastonnade/S. bastonner/a0a+() bastos bastringue/S. bas-ventre/S. bât/S. bataclan/S. bataille/S. bataillée/F.() batailler/a0a+() batailleuse/F.() bataillon/S. bâtarde/F.() batardeau/X. bâtardise/S. batavia/S. batavique/S. batayole/S. bateau/X. bateau-citerne bateau-feu bateau-mouche bateau-pilote bateau-pompe bateaux-citernes bateaux-feux bateaux-mouches bateaux-pilotes bateaux-pompes bâtée/F.() batelage/S. batelée/F.() bateler/d0() batelet/S. bateleuse/F.() batelière/F.() batellerie/S. bâter/a0a+() bat-flanc bath bathyale/W.() bathymétrie/S. bathymétrique/S. bathyscaphe/S. bathysphère/S. bâtie/F.() bâtière/S. batifolage/S. batifolante/F.() batifoler/a0() batifoleuse/F.() batik/S. bâtiment/S. bâtir/f0f+() bâtisseuse/F.() batiste/S. bâton/S. bâtonnat/S. bâtonnée/F.() bâtonner/a0a+() bâtonnet/S. bâtonnière/F.() batoude/S. batracienne/F.() battage/S. battante/F.() batte/S. battée/S. battellement/S. battement/S. batterie/S. batteuse/F.() battiture/S. battle-dress battoir/S. battologie/S. battre/uA() battue/F.() batture/S. bau/X. baud/S. baudet/S. baudrier/S. baudroie/S. baudruche/S. bauge/S. baugée/F.() bauger/a0a+() baume/S. baumier/S. bauquière/S. bauxite/S. bavardage/S. bavarde/F.() bavarder/a0() bavaroise/F.() bavasser/a0() bave/S. baver/a0() bavette/S. baveuse/W.() bavochée/F.() bavocher/a0() bavochure/S. bavoir/S. bavolet/S. bavure/S. bayadère/S. bayer/a0() bayésienne/F.() bayle/S. bayou/S. bazar/S. bazardée/F.() bazarder/a0a+() bazooka/S. beach-volley/S. beagle/S. béance/S. béante/F.() béarnaise/F.() béate/F.() béatement béatifiante/F.() béatification/S. béatifiée/F.() béatifier/a0a+() béatifique/S. béatitude/S. beatnik/S. beau/X. beauceronne/F.() beaucoup beauf/S. beau-fils beau-frère beaujolais beau-père beaupré/S. beauté/S. beaux-arts beaux-fils beaux-frères beaux-parents beaux-pères bébé/S. bébête/S. be-bop bec/S. bécane/S. bécard/S. bécarre/S. bécasse/S. bécasseau/X. bécassine/S. bec-croisé bec-de-cane bec-de-corbeau bec-de-corbin bec-de-lièvre becfigue/S. bêchage/S. béchamel/S. bêche/S. bêcher/a0a+() bêcheuse/F.() bêcheveter/d0a+() béchique/S. bécot/S. bécoter/a0a+() becquée/F.() becquée/S. becquer/a0a+() becquerel/Um() becquet/S. becquetance/S. becquetée/F.() becqueter/d0a+() becs-croisés becs-de-cane becs-de-corbeau becs-de-corbin becs-de-lièvre bectance/S. becter/a0a+() bedaine/S. bédane/S. bédé/S. bedeau/X. bédégar/S. bédéthèque/S. bedon/S. bedonnante/F.() bedonner/a0() bédouine/F.() bée/S. béer/a0() beffroi/S. bégaiement/S. bégaler/a0a+() bégayante/F.() bégayée/F.() bégayer/a0a+() bégayeuse/F.() bégonia/S. béguë/F.() bègue/S. béguer/c0() béguètement/S. bégueter/b0() bégueule/S. bégueulerie/S. béguinage/S. béguine/F.() bégum/S. béhaviorisme/S. béhavioriste/S. béhémoth/S. beige/S. beigne/S. beignet/S. béjaune/S. béké/S. bel bel/S. bélandre/S. bêlante/F.() belcanto bêlement/S. bélemnite/S. bêler/a0() bel-étage belette/S. belge/S. belgicisme/S. belgitude/S. belgo-luxembourgeoise/F.() belgo-néerlandaise/F.() bélier/S. bélière/S. bélinographe/S. bélître/S. belladone bellâtre/S. belle/S. belle-de-jour belle-de-nuit belle-doche belle-famille belle-fille bellement belle-mère belles-de-jour belles-de-nuit belles-doches belles-familles belles-filles belles-lettres belles-mères belle-sœur belles-sœurs bellicisme/S. belliciste/S. belligérance/S. belligérante/F.() belliqueuse/W.() belliqueusement belluaire/S. belon/S. belote/S. beloter/a0() béluga/S. belvédère/S. bémol/S. bémoliser/a0a+() ben bénarde/S. bendir/S. bénédicité/S. bénédictine/F.() bénédiction/S. bénef/S. bénéfice/S. bénéficiaire/S. bénéficier/a0() bénéfique/S. benêt/S. bénévolat/S. bénévole/S. bénévolement bénévolence/S. bengalie/F.() bénie/F.() bénigne/F.() bénignement bénignité/S. béninoise/F.() béni-oui-oui bénir/f0f+() bénisseuse/F.() bénite/F.() bénitier/S. benjamine/F.() benjoin/S. benne/S. benner/a0a+() benoîte/F.() benoîte/S. benoîtement benthique/S. benthos bentonite/S. benzène benzénique/S. benzine/S. benzoate/S. benzol/S. benzolisme/S. benzopyrène/S. béotienne/F.() béotisme/S. béquer/c0a+() béquet/S. béqueter/d0a+() béquille/S. béquiller/a0a+() ber/S. berbère/S. berbérisme/S. berbériste/S. berbérophone/S. bercail berçante/S. berceau/X. bercée/F.() bercelonnette/S. bercement/S. bercer/a0a+() berceuse/F.() berceuse/S. berdeller/a0a+() béret/S. bergamasque/S. bergamote bergamotier/S. berge/S. bergère/F.() bergerie/S. bergeronnette/S. berginisation/S. béribéri/S. berkélium/S. berline/S. berlinette/S. berlingot/S. berlinoise/F.() berlue berlurer/a0a+() berme/S. bermuda/S. bernache/S. bernacle/S. bernardine/F.() bernard-l'ermite berne/S. bernée/F.() berner/a0a+() bernicle/S. bernique bernique/S. berrichonne/F.() bersaglier/S. berthon/S. bertillonnage/S. béryl/S. béryllium/S. besace/S. besaiguë/S. besant/S. besantée/F.() bésicles bésigue/S. besogne/S. besogner/a0() besogneuse/W.() besoin/S. bessemer/S. bessonne/F.() bessonnière/S. bestiaire/S. bestiale/W.() bestialement bestialité/S. bestiau/X. bestiole/S. best-seller/S. bêta bêta/S. bétail/S. bétaillère/S. bêtasse/S. bêtathérapie/S. bêtatron/S. bête/S. bétel/S. bêtement bêtifiante/F.() bêtifier/a0a+() bêtise/S. bêtiser/a0() bêtisier/S. bétoine/S. bétoire/S. béton/S. bétonnage/S. bétonnée/F.() bétonner/a0a+() bétonneuse/F.() bétonnière/F.() bette/S. betterave/S. betteravière/F.() bétulacée/S. bétyle/S. beuglante/F.() beuglante/S. beuglée/F.() beuglement/S. beugler/a0a+() beur/S. beurette/S. beurrage/S. beurre/S. beurrée/F.() beurrer/a0a+() beurrerie/S. beurrière/F.() beuverie/S. bévatron/S. bévue/S. bey/S. beylicale/W.() beylicat/S. beylisme/S. bézef bézoard/S. bhoutanaise/F.() biacide/S. biacuminée/F.() biais biaisée/F.() biaiser/a0a+() biangle/S. biathlète/S. biathlon/S. bibande/S. bibarder/a0() bibelot/S. bibeloter/a0() biberon/S. biberonner/a0() bibi/S. bibine/S. bibl bible/S. bibliobus bibliogr bibliographe/S. bibliographie/S. bibliographique/S. bibliomanie/S. bibliométrie/S. bibliométrique/S. bibliophile/S. bibliophilie/S. bibliophilique/S. bibliotechnicienne/F.() bibliothécaire/S. bibliothéconomie/S. bibliothèque/S. biblique/S. bibliquement bic/S. bicamérale/W.() bicaméralisme/S. bicamérisme/S. bicarbonate/S. bicarrée/F.() bicaténaire/S. bicentenaire/S. bicéphale/S. biceps biche/S. bicher/a0() bichette/S. bichlamar/S. bichlorure/S. bichof/S. bichonnage/S. bichonne/F.() bichonner/a0a+() bichonneuse/F.() bichoter/a9a+() bichromate/S. bichrome/S. bichromie/S. bickford/S. biclé/S. biclef/S. bicolore/S. bicolorié/S. biconcave/S. biconvexe/S. bicoque/S. bicorne/S. bicot/S. bicubique/S. biculturalisme/S. biculturelle/F.() bicycle/S. bicyclette/S. bidasse/S. bide/S. bidegré/S. bident/S. bider/a0a+() bidet/S. bidimensionnelle/F.() bidirectionnalité/S. bidirectionnelle/F.() bidoche/S. bidon/S. bidonnage/S. bidonnante/F.() bidonner/a0a+() bidonville/S. bidouillabilité/S. bidouillable/S. bidouillage/S. bidouille/S. bidouiller/a0a+() bidouilleuse/F.() biduale/W.() bidule/S. bief/S. bielle/S. biellette/S. biélorusse/S. bien bien bien/S. bien-aimée/F.() bien-aller bien-dire bien-être bienfaisance/S. bienfaisante/F.() bienfait/S. bienfaitrice/F.() bien-fondé/S. bien-fonds bienheureuse/W.() bien-jugé/S. biennale/W.() bien-pensance/S. bien-pensante/F.() bienséance/S. bienséante/F.() biens-fonds bientôt bienveillamment bienveillance/S. bienveillante/F.() bienvenir bienvenue/F.() bière/S. bièvre/S. biface/S. biffage/S. biffe/S. biffée/F.() biffer/a0a+() biffetonner/a0() biffin/S. biffure/S. bifide/S. bifilaire/S. bifocale/W.() bifteck/S. bifurcation/S. bifurquée/F.() bifurquer/a0() bigaille/S. bigame/S. bigamie/S. bigarade/S. bigaradier/S. bigarreau/X. bigarrée/F.() bigarrer/a0a+() bigarrure/S. big-bang bigèbre/S. bigle/S. bigler/a0a+() bigleuse/W.() biglouser/a0() bignonia/S. bignoniacée/S. bigophone/S. bigophoner/a0() bigorne/S. bigorneau/X. bigorner/a0a+() bigote/F.() bigoterie/S. bigotisme/S. bigouden bigoudi/S. bigre bigrement bigrer/a0() bigue/S. biguine/S. bihari/S. bihebdomadaire/S. biholomorphe/S. biholomorphisme/S. bihoreau/X. bi-infinie/F.() biinvariante/F.() bijection/S. bijective/F.() bijectivement bijou/X. bijouterie/S. bijoutière/F.() biker/S. bikini/S. bilabiale/S. bilabiale/W.() bilabiée/F.() bilame/S. bilan/S. bilaner/a0() bilatérale/W.() bilatéralement bilatéralisme/S. bilatère/S. bilboquet/S. bile/S. biler/a0a+() bileuse/W.() bilharzie/S. bilharziose/S. biliaire/S. bilieuse/W.() bilinéaire/S. bilinéarité/S. bilingue/S. bilinguisme/S. bilirubine/S. bill/S. billard/S. bille/S. billebaude/S. billebauder/a0() biller/a0() billet/S. billetée/F.() billette/S. billetterie/S. billettiste/S. billevesée/S. billion/S. billon/S. billonnage/S. billonner/a0a+() billot/S. bilobée/F.() bilocation/S. biloculaire/S. biloquer/a0a+() biloter/a0a+() bimane/S. bimbeloterie/S. bimensuelle/F.() bimestrielle/F.() bimestriellement bimesurable/S. bimétallique/S. bimétallisme/S. bimétalliste/S. bimillénaire/S. bimodule/S. bimoteur/S. binage/S. binaire/S. binairement binard/S. binationale/W.() binaurale/W.() biner/a0a+() binette/S. bineuse/S. bingo/S. biniou/S. binoclarde/F.() binocle/S. binoculaire/S. binôme/S. binomiale/W.() binominale/W.() bin's bio/S. bioacoustique/S. bioastronomie/S. biobibliographie/S. biocarburant/S. biocénose/S. biochimie/S. biochimique/S. biochimiste/S. biocide/S. bioclimatique/S. bioclimatologie/S. biocombustible/S. biodégradabilité/S. biodégradable/S. biodégradation/S. biodiesel/S. biodisponibilité/S. biodiversité/S. biodynamie/S. biodynamique/S. bioélectrique/S. bioénergie/S. bioéthanol/S. bioéthique/S. bio-feed-back biogaz biogenèse/S. biogénétique/S. biogéographie/S. biographe/S. biographie/S. biographique/S. bio-informatique/S. biologie/S. biologique/S. biologiquement biologiser/a0a+() biologisme/S. biologiste/S. bioluminescence/S. biomasse/S. biomécanique/S. biomédicale/W.() biométrie/S. biométrique/S. biomimétique/S. biomimétisme/S. biomoléculaire/S. bionique/S. biophotonique/S. biophysicienne/F.() biophysique/S. biopic/S. biopiratage/S. biopirate/S. biopiraterie/S. biopsie/S. biopsique/S. biopuce/S. biosécurité/S. biosphère/S. biosphérisation/S. biostatisticienne/F.() biostatistique/S. biosynthèse/S. biotechnologie/S. biotechnologique/S. bioterrorisme/S. bioterroriste/S. biothèque/S. biothérapie/S. biotique/S. biotite/S. biotope/S. biotype/S. biotypologie/S. bioxyde/S. bipale/S. bipartie/F.() bipartisme/S. bipartite/S. bipartition/S. bipasse/S. bipède/S. bipédie/S. bipenne/S. bipennée/F.() biphasée/F.() biphényle/S. bipied/S. biplace/S. biplan/S. bipoint/S. bipolaire/S. bipolarisation/S. bipolarité/S. bipôle/S. bipoutre/S. bique/S. biquer/a0() biquette/F.() biquotidienne/F.() birapport/S. birationnelle/F.() birationnellement birbe/S. biréacteur/S. biréfringence/S. biréfringente/F.() birème/S. birmane/F.() biroute/S. bis bisaïeule/F.() bisaïeux bisaiguë/S. bisannuelle/F.() bisbille/S. bisbrouille/S. biscaïenne/F.() biscôme/S. biscornue/F.() biscotte/S. biscotterie/S. biscuit/S. biscuitée/F.() biscuiter/a0a+() biscuiterie/S. bise/F*() bise/S. biseau/X. biseautage/S. biseautée/F.() biseauter/a0a+() biseauteuse/F.() bisegmenter/a0a+() biser/a0a+() biset/S. bisexualité/S. bisexuée/F.() bisexuelle/F.() bisimpliciale/W.() bismuth/S. bismuthine/S. bismuthinite/S. bison/S. bisou/S. bisphénol/S. bisque/S. bisquer/a0() bissau-guinéenne/F.() bisse/S. bissection/S. bissectrice/F.() bisser/a0a+() bissexte/S. bissextile/S. bissexualité/S. bissexuée/F.() bissexuelle/F.() bistable/S. bistorte/S. bistouille/S. bistouri/S. bistournage/S. bistournée/F.() bistourner/a0a+() bistre/S. bistrée/F.() bistrer/a0a+() bistro/S. bistrot/S. bisulfate/S. bisulfite/S. bisulfure/S. bit/S. bit/||-- bite/S. bitension/S. biter/a0a+() bitmap/S. bitonale/W.() bitonner/a0() bitord/S. bitos bittacus bitte/S. bitter/a0a+() bitture/S. bitturer/a0a+() bitumage/S. bitume/S. bitumée/F.() bitumer/a0a+() bitumeuse/W.() bituminer/a0a+() bitumineuse/W.() biturbine/S. biture/S. biturer/a0a+() biunivoque/S. biunivoquement bivalence/S. bivalente/F.() bivaluée/F.() bivalve/S. bivariante/F.() biveau/X. bivouac/S. bivouaquer/a0() biwa/S. bizarre/S. bizarrement bizarrerie/S. bizarroïde/S. bizut/S. bizutage/S. bizutée/F.() bizuter/a0a+() blabla/S. blablabla/S. blablater/a0() black/S. blackboulage/S. blackboulée/F.() blackbouler/a0a+() black-out black-rot/S. blafarde/F.() blague/S. blaguer/a0() blagueuse/F.() blair/S. blaireau/X. blairer/a0a+() blâmable/S. blâme/S. blâmée/F.() blâmer/a0a+() blanc-bec blanc-estoc blanc-étoc blanchaille/S. blanchâtre/S. blanche/F.() blanchet/S. blancheur/S. blanchie/F.() blanchiment/S. blanchir/f0f+() blanchissage/S. blanchissante/F.() blanchissement/S. blanchisserie/S. blanchisseuse/F.() blanc-manger blancs-becs blanc-seing blancs-estocs blancs-étocs blancs-mangers blancs-seings blandice/S. blanquette/S. blaps blasée/F.() blasement/S. blaser/a0a+() blason/S. blasonnée/F.() blasonnement/S. blasonner/a0a+() blasonneuse/F.() blasphématoire/S. blasphématrice/F.() blasphème/S. blasphémer/c0a+() blastème/S. blastocèle/S. blastocyste/S. blastoderme/S. blastogenèse/S. blastomycose/S. blastopore/S. blastula/S. blatérer/c0() blatte/S. blazer/S. blé/S. blèche/S. bled/S. blédard/S. bleffer/a0() blême/S. blêmir/f0f+() blêmissement/S. blende/S. blennie/S. blennorragie/S. blennorragique/S. blennorrhée/S. blépharite/S. blèsement/S. bléser/c0() blésité/S. blessante/F.() blessée/F.() blesser/a0a+() blessure/S. blette/F.() blette/S. blettir/f0() blettissement/S. blettissure/S. bleuâtre/S. bleue/F.() bleuet/S. bleuetière/S. bleuie/F.() bleuir/f0f+() bleuissement/S. bleusaille/S. bleutée/F.() bleuter/a0a+() blindage/S. blinde/S. blindé/S. blindée/F.() blinder/a0a+() blindicide/S. blinquer/a0a+() blister/S. blizzard/S. blobloter/a0() bloc/S. blocage/S. blocaille/S. bloc-cuisine bloc-cylindres bloc-évier blockbuster/S. blockhaus bloc-moteur bloc-notes blocs-cuisines blocs-cylindres blocs-éviers blocs-moteurs blocs-notes blocus blog/S. blogosphère/S. blogue/S. bloguer/a0a+() blogueuse/F.() blondasse/S. blonde/F.() blondel/S. blondeur/S. blondie/F.() blondine/F.() blondinette/F.() blondir/f0f+() blondoyer/a0() bloomer/S. bloquante/F.() bloquée/F.() bloquer/a0a+() blottie/F.() blottir/f0f+() blousante/F.() blouse/S. blousée/F.() blouser/a0a+() blouson/S. blue-jean/S. blues bluette/F.() bluff/S. bluffer/a0a+() bluffeuse/F.() blutage/S. bluter/a0a+() blutiner/a0() blutoir/S. boa/S. bob/S. bobard/S. bobèche/S. bobeuse/F.() bobinage/S. bobine/S. bobinée/F.() bobiner/a0a+() bobinette/S. bobineuse/F.() bobinière/F.() bobinoir/S. bobo/S. bobonne/S. bobsleigh/S. bocage/S. bocagère/F.() bocal/X. bocard/S. bocardage/S. bocarder/a0a+() boche/S. bock/S. bodhi/S. bodhisattva/S. body/S. bodyboard/S. bodybuilding/S. boësse/S. boëte/S. boëtte/S. boetter/a0a+() bœuf/S. bof boghei/S. bogie/S. bogue/S. boguée/F.() boguet/S. bohème/S. bohémienne/F.() bohrium/S. boiler/S. boille/S. boire/xC() bois boisage/S. boisée/F.() boisement/S. boiser/a0a+() boiserie/S. boiseuse/F.() boisseau/X. boisselière/F.() boissellerie/S. boisson/S. boîte/S. boitement/S. boiter/a0a+() boiterie/S. boiteuse/W.() boîtier/S. boitillante/F.() boitillement/S. boitiller/a0() boit-sans-soif boitte/S. bol/S. bolchevique/S. bolchevisation/S. bolcheviser/a0a+() bolchevisme/S. bolcheviste/S. boldo/S. bolduc/S. bolée/S. boléro/S. bolet/S. boletale/S. bolide/S. bolier/S. bolivar/S. bolivares bolivarienne/F.() bolivienne/F.() bollard/S. bollywoodienne/F.() bolomètre/S. bombacée/S. bombage/S. bombagiste/S. bombance/S. bombante/F.() bombardée/F.() bombardement/S. bombarder/a0a+() bombardier/S. bombardon/S. bombe/S. bombée/F.() bombement/S. bomber/a0a+() bombeuse/F.() bombinette/S. bombyx bôme/S. bonace/S. bonapartisme/S. bonapartiste/S. bonasse/S. bonasserie/S. bonbon/S. bonbonne/S. bonbonnière/S. bon-chrétien bond/S. bonde/S. bondée/F.() bondelle/S. bonder/a0a+() bondérisation/S. bondériser/a0a+() bondieuserie/S. bondir/f0() bondissante/F.() bondissement/S. bondon/S. bondonner/a0a+() bondonnière/S. bondrée/S. bonellie/S. bonheur/S. bonheur-du-jour bonheurs-du-jour bonhomie/S. bonhomme/S. boni/S. bonichon/S. bonifiante/F.() bonification/S. bonifiée/F.() bonifier/a0a+() boniment/S. bonimenter/a0() bonimenteuse/F.() bonite/S. bonjour bonjour/S. bonne/F.() bonne/S. bonne-maman bonnement bonnes-mamans bonnet/S. bonneteau/X. bonneterie/S. bonneteur/S. bonnetière/F.() bonnette/S. bonniche/S. bonobo/S. bon-papa bonsaï/S. bons-chrétiens bonshommes bonsoir bonsoir/S. bons-papas bonté/S. bonus bonze/S. bonzerie/S. bookmaker/S. booléenne/F.() boom/S. boomerang/S. booster/S. bootlegger/S. bop boqueteau/X. boquilloner/a0() bora/S. boraine/F.() borate/S. borax borborygme/S. borchtch/S. bord/S. bordage/S. bordante/F.() bordeaux bordée/F.() bordel/S. bordelaise/F.() bordélique/S. bordéliser/a0a+() border/a0a+() bordereau/X. borderie/S. bordeuse/S. bordière/F.() bordigue/S. bordisme/S. bordure/S. bordurer/a0a+() bordurette/S. bordureuse/S. bore/S. boréale/W.() boréals borée/S. borélienne/F.() borgne/S. borgnoter/a0a+() boriquée/F.() bornage/S. borne/S. bornée/F.() borne-fontaine borner/a0a+() bornes-fontaines bornier/S. bornitude/S. bornologie/S. bornologique/S. bornoyer/a0a+() borraginacée/S. bort/S. bortsch/S. bosco/S. boscotte/F.() boskoop/S. bosniaque/S. bosnienne/F.() boson/S. bosonique/S. bosquet/S. boss bossage/S. bossanova bosse/S. bosselage/S. bosselée/F.() bosseler/d0a+() bossellement/S. bosselure/S. bosser/a0a+() bossette/S. bosseuse/F.() bossoir/S. bossue/F.() bossuée/F.() bossuer/a0a+() boston/S. bostonner/a0() bostryche/S. botanique/S. botaniquement botaniser/a0() botaniste/S. bote/F.() bothriocéphale/S. botnet/S. bottage/S. botte/S. bottée/F.() bottelage/S. bottelée/F.() botteler/d0a+() botteleuse/F.() botter/a0a+() botteuse/F.() bottière/F.() bottillon/S. bottin/S. bottine/S. bottiner/a0a+() botulique/S. botulisme/S. boubou/S. boubouler/a0() bouc/S. boucan/S. boucanage/S. boucane/S. boucanée/F.() boucaner/a0a+() boucanier/S. boucau/S. boucaud/S. bouchage/S. bouchardage/S. boucharde/S. boucharder/a0a+() bouchardeuse/S. bouche/S. bouche-à-bouche bouchée/F.() bouchée/S. bouche-pores boucher/a0a+() bouchère/F.() boucherie/S. bouche-trou/S. boucheuse/F.() boucholeuse/F.() bouchon/S. bouchonnée/F.() bouchonner/a0a+() bouchonneuse/S. bouchonnière/F.() bouchot/S. bouclage/S. boucle/S. bouclée/F.() bouclement/S. boucler/a0a+() bouclette/S. bouclier/S. bouddha/S. bouddhique/S. bouddhisme bouddhiste/S. boudée/F.() bouder/a0a+() bouderie/S. boudeuse/F.() boudin/S. boudinage/S. boudinée/F.() boudiner/a0a+() boudineuse/S. boudoir/S. boue/S. bouée/S. boueur/S. boueuse/W.() bouffante/F.() bouffarde/S. bouffe/S. bouffée/F.() bouffée/S. bouffer/a0a+() bouffetance/S. bouffette/S. bouffeuse/F.() bouffie/F.() bouffir/f0f+() bouffissure/S. bouffon/S. bouffonner/a0() bouffonnerie/S. bougainvillée/S. bougainvillier/S. bouge/S. bougeoir/S. bougeotte/S. bouger/a0a+() bougie/S. bougnat/S. bougnoule/S. bougonne/F.() bougonnement/S. bougonner/a0a+() bougran/S. bougrement bougresse/F.() boui-boui bouif/S. bouillabaisse/S. bouillante/F.() bouilleuse/F.() bouillie/F.() bouillie/S. bouillir/iQ() bouilloire/S. bouillon/S. bouillonnante/F.() bouillonnée/F.() bouillonnement/S. bouillonner/a0a+() bouillotte/S. bouillotter/a0() bouis-bouis boulaie/S. boulanger/a0a+() boulangère/F.() boulangerie/S. boulangisme/S. boulangiste/S. boulbène/S. boule/S. bouleau/X. boule-de-neige bouledogue/S. boulée/F.() bouler/a0a+() boules-de-neige bouletée/F.() boulette/F.() boulevard/S. boulevardière/F.() bouleversante/F.() bouleversée/F.() bouleversement/S. bouleverser/a0a+() boulgour/S. boulier/S. boulimie/S. boulimique/S. boulin/S. bouline/S. bouliner/a0a+() boulingrin/S. boulinière/F.() bouliste/S. boulocher/a0() boulodrome/S. bouloir/S. boulon/S. boulonnage/S. boulonner/a0a+() boulonnerie/S. boulonneuse/S. boulonnière/F.() boulote/F.() boulotte/F.() boulotter/a0a+() boumer/a9() bouquet/S. bouquetière/F.() bouquetin/S. bouquin/S. bouquiner/a0a+() bouquinerie/S. bouquineuse/F.() bouquiniste/S. bourbe/S. bourbeuse/W.() bourbier/S. bourbillon/S. bourbon/S. bourbonienne/F.() bourdaine/S. bourde/S. bourder/a0() bourdon/S. bourdonnante/F.() bourdonnée/F.() bourdonnement/S. bourdonner/a0() bourdonneuse/F.() bourg/S. bourgade/S. bourge/S. bourgeoise/F.() bourgeoisement bourgeoisiale/W.() bourgeoisie/S. bourgeon/S. bourgeonnante/F.() bourgeonnement/S. bourgeonner/a0() bourgeonneuse/W.() bourgeron/S. bourgmestre/S. bourgogne/S. bourguignonne/F.() bourlinguer/a0() bourlingueuse/F.() bourrache/S. bourrade/S. bourrage/S. bourrasque/S. bourrative/F.() bourre/S. bourreau/X. bourrée/F.() bourrée/S. bourrelée/F.() bourrèlement/S. bourreler/d0a+() bourrelet/S. bourrelière/F.() bourrellerie/S. bourrer/a0a+() bourrette/S. bourreuse/F.() bourriche/S. bourrichon/S. bourricot/S. bourrin/S. bourrique/S. bourriquet/S. bourroir/S. bourrue/F.() bourse/S. boursicotage/S. boursicoter/a0() boursicoteuse/F.() boursicotière/F.() boursière/F.() boursouflage/S. boursouflée/F.() boursouflement/S. boursoufler/a0a+() boursouflure/S. bouscueil/S. bousculade/S. bousculée/F.() bousculer/a0a+() bouse/S. bouseuse/W.() bousier/S. bousillage/S. bousillée/F.() bousiller/a0a+() bousilleuse/F.() bousin/S. boussole/S. boustifaille/S. boustifailler/a0() boustrophédon/S. bout/S. boutade/S. boutante/F.() boutargue/S. bout-dehors boutée/F.() boute-en-train boutefas boutefeu/X. bouteille/S. bouteiller/S. bouteiller/a0a+() bouteillon/S. bouter/a0a+() bouterolle/S. bouteroue/S. boute-selle bouteur/S. boutique/S. boutiquière/F.() boutisme/S. boutisse/S. boutiste/S. boutoir/S. bouton/S. bouton-d'argent bouton-d'or boutonnage/S. boutonnée/F.() boutonner/a0a+() boutonneuse/W.() boutonnière/F.() bouton-poussoir bouton-pression boutons-d'argent boutons-d'or boutons-pression boutre/S. bouts-dehors bouts-rimés bouturage/S. bouture/S. bouturer/a0a+() bouverie/S. bouvet/S. bouveteuse/S. bouvière/F.() bouvillon/S. bouvreuil/S. bouvril/S. bovarysme/S. bovidé/S. bovine/F.() bowling/S. bow-window/S. box box-calf/S. boxe/S. boxer/S. boxer/a0a+() boxeuse/F.() box-office/S. boxonner/a0() boy/S. boyard/S. boyau/X. boyauderie/S. boyaudière/F.() boyauter/a0a+() boycott/S. boycottage/S. boycottée/F.() boycotter/a0a+() boycotteuse/F.() boy-scout/S. brabançonne/F.() brabant/S. bracelet/S. bracelet-montre bracelets-montres brachiale/W.() brachiopode/S. brachiosaure/S. brachycéphale/S. brachylogie/S. braconnage/S. braconnée/F.() braconner/a0a+() braconnière/F.() bractéale/W.() bractée/S. bradage/S. bradée/F.() bradel/S. brader/a0a+() braderie/S. bradeuse/F.() bradycardie/S. bradype/S. braguette/S. brahmane/S. brahmanique/S. brahmanisme/S. brai/S. braillante/F.() braillarde/F.() braille/S. braillement/S. brailler/a0a+() brailleuse/F.() braiment/S. brainstorming/S. brain-trust/S. braire/wM() braise/S. braisée/F.() braiser/a0a+() braisière/S. brame/S. bramement/S. bramer/a0() bran/S. brancard/S. brancardage/S. brancarder/a0a+() brancardière/F.() branchage/S. branche/S. branchée/F.() branchement/S. brancher/a0a+() branchette/S. branchiale/W.() branchie/S. branchiopode/S. branchue/F.() brandade/S. brande/S. brandebourg/S. brandie/F.() brandiller/a0a+() brandir/f0f+() brandon/S. brandy/S. branlante/F.() branle/S. branle-bas branlée/S. branlement/S. branler/a0a+() branlette/S. branleuse/F.() branlocher/a0a+() brante/S. braquage/S. braque/S. braquée/F.() braquemart/S. braquer/a0a+() braquet/S. braqueuse/F.() bras brasage/S. braser/a0a+() brasero/S. braseuse/F.() brasier/S. brasiller/a0() bras-le-corps brassage/S. brassard/S. brasse/S. brassée/F.() brassée/S. brasser/a0a+() brasserie/S. brasseuse/F.() brasseyer/a0a+() brassicole/S. brassière/S. brassin/S. brasure/S. bravache/S. bravade/S. brave/S. bravée/F.() bravement braver/a0a+() bravo bravo/I. bravo/S. bravoure/S. brayer/a0a+() break/S. breakfast/S. brebis brèche/S. brèche-dent bréchet/S. bréchique/S. bredouillage/S. bredouille/S. bredouillée/F.() bredouillement/S. bredouiller/a0a+() bredouilleuse/F.() bredouillis breffage/S. brelan/S. brèle/S. brêler/a0a+() brelle/S. breller/a0a+() breloque/S. brème/S. bren/S. brésil brésilienne/F.() brésiller/a0a+() bretèche/S. bretelle/S. bretessée/F.() bretonnante/F.() bretonne/F.() bretteler/d0a+() bretter/a0a+() bretteur/S. bretzel/S. breuvage/S. brève/F.() brevet/S. brevetabilité/S. brevetable/S. brevetée/F.() breveter/d0a+() bréviaire/S. bréviligne/S. brévité/S. briard/S. bribe/S. bric bric-à-brac brick/S. bricolage/S. bricole/S. bricolée/F.() bricoler/a0a+() bricoleuse/F.() bridage/S. bride/S. bridée/F.() brider/a0a+() brideuse/F.() bridge/S. bridger/a0() bridgeuse/F.() bridon/S. brie/S. briefer/a0a+() briefing/S. brièvement brièveté/S. briffe/S. briffer/a0a+() brigade/S. brigadière/F.() brigand/S. brigandage/S. brigander/a0a+() briganderie/S. brigandine/S. brigantine/F.() brightisme/S. briguée/F.() briguer/a0a+() brillamment brillance/S. brillantage/S. brillante/F.() brillantée/F.() brillanter/a0a+() brillantine/S. brillantiner/a0a+() briller/a0() brimade/S. brimbalement/S. brimbaler/a0a+() brimborion/S. brimée/F.() brimer/a0a+() brin/S. brindezingue/S. brindille/S. bringeure/S. bringue/S. bringuebalante/F.() bringuebaler/a0a+() brinquebalante/F.() brinquebaler/a0a+() brio/S. brioche/S. briochée/F.() briocher/a0a+() brique/S. briquée/F.() briquer/a0a+() briquet/S. briquetage/S. briquetée/F.() briqueter/d0a+() briqueterie/S. briqueteuse/F.() briquetier/S. briquette/S. bris brisance/S. brisant/S. brisante/F.() briscard/S. brise/S. brise-béton brise-bise brise-copeaux brisée/F.() brisée/S. brise-fer brise-glace brise-jet brise-lames brise-mariage brise-mèche brisement/S. brise-mottes briser/a0a+() brise-soleil brise-tout briseuse/F.() brise-vent brisis briska/S. brisque/S. bristol/S. brisure/S. britannique/S. brize/S. broadcaster/a0a+() broc/S. brocantage/S. brocante/S. brocanter/a0a+() brocanteuse/F.() brocard/S. brocardée/F.() brocarder/a0a+() brocart/S. brocatelle/S. brochage/S. brochante/F.() broche/S. brochée/F.() brocher/a0a+() brochet/S. brocheton/S. brochette/S. brocheuse/F.() brochure/S. brocoli/S. brodée/F.() brodequin/S. broder/a0a+() broderie/S. brodeuse/F.() broiement/S. broigne/S. brol/S. bromate/S. brome/S. broméliacée/S. bromhydrique/S. bromique/S. bromisme/S. bromure/S. bronche/S. bronchectasie/S. broncher/a0() bronchiectasie/S. bronchiole/S. bronchiolite/S. bronchique/S. bronchite/S. bronchiteuse/W.() bronchitique/S. broncho bronchographie/S. broncho-pneumonie/S. bronchoscopie/S. brontosaure/S. bronzage/S. bronzante/F.() bronze/S. bronzée/F.() bronzer/a0a+() bronzette/S. bronzeuse/F.() bronzière/F.() brook/S. broquanter/a0() broque/S. broquer/a0() broquette/S. brossage/S. brosse/S. brosser/a0a+() brosserie/S. brossière/F.() brou/S. brouet/S. brouette/S. brouetter/a0a+() brouhaha/S. brouillage/S. brouillamini/S. brouillard/S. brouillassée/F.() brouillasser/a9() brouille/S. brouillée/F.() brouiller/a0a+() brouillerie/S. brouilleuse/F.() brouillon/S. brouillonner/a0a+() broum broussaille/S. broussailleuse/W.() broussard/S. brousse/S. broussin/S. brout/S. broutard/S. broutement/S. brouter/a0a+() broutille/S. brownie/S. brownienne/F.() browniennement browning/S. broyage/S. broyée/F.() broyer/a0a+() broyeuse/F.() brrr bru/S. bruant/S. brucelles brucellose/S. bruche/S. brucine/S. brugnon/S. brugnonier/S. bruine/S. bruinée/F.() bruiner/a9() bruineuse/W.() bruir/f0f+() bruire/yJ() bruissage/S. bruissante/F.() bruissement/S. bruisser/a0() bruit/S. bruitage/S. bruitée/F.() bruiter/a0a+() bruiteuse/F.() brûlage/S. brûlante/F.() brûle-bouts brûlée/F.() brûle-gueule brûlement/S. brûle-parfum/S. brûle-pourpoint brûler/a0a+() brûlerie/S. brûleur/S. brûlis brûloir/S. brûlot/S. brûlure/S. brumaire/S. brumasser/a9() brume/S. brumer/a9() brumeuse/W.() brumisateur/S. brunante/S. brunâtre/S. brunch/S. brune/F.() brunette/F.() brunie/F.() brunir/f0f+() brunissage/S. brunissante/F.() brunissement/S. brunisseuse/F.() brunissoir/S. brunissure/S. brushing/S. brusque/S. brusquée/F.() brusquement brusquer/a0a+() brusquerie/S. brutale/W.() brutalement brutalisée/F.() brutaliser/a0a+() brutalité/S. brute/F.() brute/S. bruxelloise/F.() bruyamment bruyante/F.() bruyère/S. bryologie/S. bryone/S. bu/||-- buanderie/S. buandière/F.() bubale/S. bubon/S. bubonique/S. buccale/W.() buccin/S. buccinateur/S. bucco bucco-dentaire/S. bucco-génitale/W.() bûche/S. bûchée/F.() bûcher/S. bûcher/a0a+() bûcheronnage/S. bûcheronne/F.() bûcheronner/a0() bûchette/S. bûcheuse/F.() bucolique/S. bucoliquement bucrane/S. budget/S. budgétaire/S. budgétairement budgéter/c0a+() budgétisation/S. budgétiser/a0a+() budgétivore/S. buée/S. buffet/S. buffetière/F.() bufflesse/F.() buffleterie/S. buffletin/S. bufflonne/F.() bug/S. buggy/S. bugle/S. buglosse/S. bugne/S. bugrane/S. building/S. buire/S. buis buisson/S. buissonnante/F.() buissonneuse/W.() buissonnière/F.() bulb/S. bulbaire/S. bulbe/S. bulbeuse/W.() bulbille/S. bulgare/S. bull/S. bullaire/S. bulldozer/S. bulle/S. bullée/F.() buller/a0() bulletin/S. bulleuse/W.() bull-finch/S. bull-terrier/S. buna/S. bungalow/S. bunker/S. bupreste/S. buraliste/S. bure/S. bureau/X. bureaucrate/S. bureaucratie/S. bureaucratique/S. bureaucratiquement bureaucratisation/S. bureaucratisée/F.() bureaucratiser/a0a+() bureauticienne/F.() bureautique/S. burèle/S. burelée/F.() burelle/S. burette/S. burgau/S. burgaudine/S. burger/S. burin/S. burinage/S. burinée/F.() buriner/a0a+() burineuse/F.() burlesque/S. burlesquement burlingue/S. burne/S. burnous burn-out buron/S. buronnière/F.() burqa/S. burrito/S. burundaise/F.() bus busard/S. busc/S. buse/S. buser/a0a+() bush/S. business businessman/S. businesswoman/S. busquée/F.() busserole/S. buste/S. bustier/S. but/S. butadiène/S. butane butanier/S. bute/S. butée/F.() butée/S. butène/S. buter/a0a+() buteur/S. butin/S. butinée/F.() butiner/a0a+() butineuse/F.() butoir/S. butome/S. butor/S. buttage/S. butte/S. buttée/F.() butter/a0a+() buttoir/S. butylène/S. butylique/S. butyrate/S. butyreuse/W.() butyrine/S. butyrique/S. butyromètre/S. buvable/S. buvard/S. buvée/S. buvetière/F.() buvette/S. buveuse/F.() buvoter/a0() buxacée/S. buzz bye bye-bye by-pass byssinose/S. byssus byte/S. byzantine/F.() byzantinisme/S. byzantiniste/S. byzantinologie/S. c cP/||-- cSt/||-- ça çà cab/S. cabale/S. cabaler/a0() cabalistique/S. cabalistiquement caban/S. cabane/S. cabaner/a0a+() cabanon/S. cabaret/S. cabaretière/F.() cabas cabasset/S. cabèche/S. cabernet/S. cabestan/S. cabiai/S. cabillaud/S. cabillot/S. cabine/S. cabiner/a0() cabinet/S. câblage/S. câble/S. câblée/F.() câbler/a0a+() câblerie/S. câbleuse/F.() câblière/F.() câbliste/S. câblodistributeur/S. câblodistribution/S. câblogramme/S. câblo-opérateur/S. câblot/S. cabocharde/F.() caboche/S. cabochée/F.() cabochon/S. cabosse/S. cabossée/F.() cabosser/a0a+() cabotage/S. cabote/F.() caboter/a0() caboteur/S. cabotinage/S. cabotine/F.() cabotiner/a0() caboulot/S. cabrée/F.() cabrer/a0a+() cabri/S. cabriole/S. cabrioler/a0() cabriolet/S. cabus caca/S. cacaber/a0() cacahuète/S. cacao/S. cacaotée/F.() cacaotière/F.() cacaoyère/F.() cacarder/a0() cacatoès cacatois cachalot/S. cache/S. cache-brassière cache-cache cache-cœur cache-col cache-corset cachectique/S. cachée/F.() cache-entrée cache-flamme cache-lait cachemire/S. cache-misère cache-museau cache-nez cache-pot cache-poussière cache-prise cacher/a0a+() cache-radiateur cachère/S. cache-sexe cachet/S. cachetage/S. cache-tampon cachetée/F.() cacheter/d0a+() cacheton/S. cachetonner/a0() cachette/S. cachexie/S. cachot/S. cachotterie/S. cachottière/F.() cachou/S. cachucha/S. cacique/S. cacochyme/S. cacodylate/S. cacographe/S. cacographie/S. cacolet/S. cacologie/S. cacophonie/S. cacophonique/S. cacosmie/S. cactacée/S. cactée/S. cactus cadancher/a0() cadastrage/S. cadastrale/W.() cadastre/S. cadastrer/a0a+() cadavéreuse/W.() cadavérique/S. cadavre/S. caddie/S. caddy cade/S. cadeau/X. cadeauter/a0a+() cadenas cadenassable/S. cadenassée/F.() cadenasser/a0a+() cadence/S. cadencée/F.() cadencement/S. cadencer/a0a+() cadenette/S. cadette/F.() cadi/S. cadmiage/S. cadmie/S. cadmium/S. cadogan/S. cadrage/S. cadran/S. cadrante/F.() cadrat/S. cadratin/S. cadrature/S. cadre/S. cadrer/a0a+() cadreuse/F.() caduc/S. caducée/S. caducité/S. caduque/S. cæcale/W.() cæcum/S. cænogenèse/S. cæsine cafard/S. cafardage/S. cafarder/a0a+() cafardeuse/F.() cafardeuse/W.() café/S. café-concert caféière/F.() caféine/S. caféisme/S. cafés-concerts cafés-théâtres cafetan/S. cafeter/d0a+() cafétéria/S. café-théâtre cafetière/F.() cafouillage/S. cafouiller/a0() cafouillis cafre/S. caftan/S. cafter/a0a+() cafteuse/F.() cage/S. cageot/S. cagerotte/S. caget/S. cagette/S. cagibi/S. cagnarde/F.() cagnarder/a0() cagne/S. cagner/a0() cagneuse/W.() cagnotte/S. cagote/F.() cagoterie/S. cagoularde/F.() cagoule/S. cagoulée/F.() cague/S. caguer/a0() cahier/S. cahin-caha cahot/S. cahotante/F.() cahotée/F.() cahotement/S. cahoter/a0a+() cahoteuse/W.() cahute/S. caïd/S. caïdat/S. caïeu/X. caillage/S. caillassage/S. caillasser/a0a+() caille/S. caillebotis caillebotte/S. caillebottée/F.() caillebotter/a0a+() caillée/F.() caillement/S. cailler/a0a+() cailleter/d0() caillot/S. caillou/X. cailloutage/S. cailloutée/F.() caillouter/a0a+() caillouteuse/W.() cailloutis caïman/S. caïmanter/a0a+() caïque/S. cairn/S. cairote/S. caisse/S. caisserie/S. caissette/S. caissière/F.() caisson/S. cajeput/S. cajeputier/S. cajoler/a0a+() cajolerie/S. cajoleuse/F.() cajou/S. cajun/S. cake/S. cal/S. cal/U.||-- calabraise/F.() calade/S. caladium/S. calage/S. calaison/S. calamar/S. calambac/S. calame/S. calaminage/S. calamine/S. calaminer/a0a+() calamistrée/F.() calamistrer/a0a+() calamité/S. calamiteuse/W.() calancher/a0() calandrage/S. calandre/S. calandrer/a0a+() calandreuse/F.() calanque/S. calao/S. calcaire/S. calcanéum/S. calcédoine/S. calcémie/S. calcéolaire/S. calcicole/S. calcification/S. calcifiée/F.() calcifuge/S. calcin/S. calcination/S. calcinée/F.() calciner/a0a+() calciphobe/S. calcique/S. calcite/S. calcium/S. calciurie/S. calcul/S. calculabilité/S. calculable/S. calculatoire/S. calculatrice/F.() calculée/F.() calculer/a0a+() calculette/S. calculeuse/W.() caldarium/S. caldeira/S. cale/S. calebasse/S. calebassier/S. calèche/S. caleçon/S. caleçonnade/S. calédonienne/F.() calée/F.() calembour/S. calembredaine/S. calendaire/S. calendes calendrier/S. cale-pied/S. calepin/S. calepinage/S. caler/a0a+() caleter/d0a+() calfat/S. calfatage/S. calfatée/F.() calfater/a0a+() calfeutrage/S. calfeutrée/F.() calfeutrement/S. calfeutrer/a0a+() calibrage/S. calibration/S. calibre/S. calibrée/F.() calibrer/a0a+() calibreuse/F.() calice/S. calicot/S. calicule/S. calière/F.() califale/W.() califat/S. calife/S. californienne/F.() californium/S. califourchon câlin/S. câline/F.() câliner/a0a+() câlinerie/S. caliorne/S. calisson/S. calleuse/W.() call-girl/S. calligramme/S. calligraphe/S. calligraphie/S. calligraphiée/F.() calligraphier/a0a+() calligraphique/S. calligraphiquement callipyge/S. callosité/S. calmante/F.() calmar/S. calme/S. calmée/F.() calmement calmer/a0a+() calmir/f0() calo calomel/S. calomniatrice/F.() calomnie/S. calomniée/F.() calomnier/a0a+() calomnieuse/W.() calomnieusement calorie/Um() calorifère/S. calorification/S. calorifique/S. calorifuge/S. calorifugée/F.() calorifuger/a0a+() calorifugeuse/F.() calorimètre/S. calorimétrie/S. calorimétrique/S. calorique/S. calorisation/S. calot/S. calotin/S. calotte/S. calotter/a0a+() caloyère/F.() calquage/S. calque/S. calquée/F.() calquer/a0a+() calqueuse/F.() calter/a0a+() calumet/S. calure/S. calus calva/S. calvados calvaire/S. calville/S. calvinisme calviniste/S. calvitie/S. calypso/S. camaïeu/X. camail/S. camaldule/S. camarade/S. camaraderie/S. camarde/F.() camarilla/S. cambiale/W.() cambiste/S. cambium/S. cambodgienne/F.() cambouis cambrage/S. cambrée/F.() cambrement/S. cambrer/a0a+() cambrienne/F.() cambriolage/S. cambriole/S. cambriolée/F.() cambrioler/a0a+() cambrioleuse/F.() cambrousard/S. cambrousse/S. cambrure/S. cambuse/S. cambusier/S. cambuter/a0a+() came/S. camée/F.() camée/S. caméléon/S. camélia/S. camélidé/S. camelin/S. cameline/S. caméline/S. camelle/S. camelot/S. camelote/S. cameloter/a0() camembérer/c0() camembert/S. camer/a0a+() caméra/S. cameraman/S. camérier/S. camériste/S. camerlingue/S. camerounaise/F.() caméscope/S. camion/S. camion-citerne camionnage/S. camionner/a0a+() camionnette/S. camionneuse/F.() camions-citernes camisard/S. camisole/S. camomille/S. camouflage/S. camouflante/F.() camouflée/F.() camoufler/a0a+() camouflet/S. camoufleur/S. camp/S. campagnarde/F.() campagne/S. campagnol/S. campane/S. campanile/S. campaniste/S. campanulacée/S. campanule/S. campêche/S. campée/F.() campement/S. camper/a0a+() campeuse/F.() camphre/S. camphrée/F.() camphrier/S. campignienne/F.() camping/S. camping-car/S. camping-gaz campinoise/F.() campos campus camuse/F.() canada/S. canadianisme/S. canadienne/F.() canaille/S. canaillerie/S. canal/X. canalicule/S. canalisable/S. canalisation/S. canalisatrice/F.() canalisée/F.() canaliser/a0a+() cananéenne/F.() canapé/S. canapé-lit canapés-lits canard/S. canardeau/X. canarder/a0a+() canardière/F.() canari/S. canasson/S. canasta/S. cancale/S. cancan/S. cancaner/a0() cancanière/F.() cancel/S. cancer/S. cancéreuse/W.() cancérigène/S. cancérisation/S. cancériser/a0a+() cancérologie cancérologue/S. canche/S. cancre/S. cancrelat/S. candela/Um() candélabre/S. candeur/S. candidate/F.() candidature/S. candide/S. candidement candidose/S. candir/f0f+() cane/S. canepetière/S. canéphore/S. caner/a0() caneton/S. canette/S. canevas cangue/S. caniche/S. caniculaire/S. canicule/S. canidé/S. canif/S. canine/F.() canine/S. canisse/S. canitie/S. caniveau/X. canna/S. cannabinacée/S. cannabinol/S. cannabis cannabisme/S. cannage/S. canne/S. cannée/F.() cannelée/F.() canneler/d0a+() cannelier/S. cannelle/S. cannelloni/S. cannelure/S. canner/a0a+() cannetille/S. canneuse/F.() cannibale/S. cannibaliser/a0a+() cannibalisme/S. cannisse/S. canoë/S. canoéiste/S. canoë-kayak canoës-kayaks canon/S. canoniale/W.() canonicat/S. canonicité/S. canonique/S. canoniquement canonisable/S. canonisation/S. canonisée/F.() canoniser/a0a+() canoniste/S. canonnade/S. canonnage/S. canonner/a0a+() canonnière/F.() canope/S. canopée/S. canot/S. canotage/S. canoter/a0() canoteuse/F.() canotière/F.() cantabile cantabile cantal/S. cantaloup/S. cantate/S. cantatrice/S. canter/S. canthare/S. cantharellale/S. cantharide/S. cantharidine/S. cantilène/S. cantilever/S. cantillation/S. cantine/S. cantiner/a0() cantinière/F.() cantique/S. canton/S. cantonade cantonaise/F.() cantonale/W.() cantonnée/F.() cantonnement/S. cantonner/a0a+() cantonnière/F.() cantre/S. canular/S. canularesque/S. canule/S. canuler/a0a+() canuse/S. canut/S. canyon/S. canyoning/S. canyonisme/S. canyoniste/S. canzone/S. caoua/S. caoutchouc/S. caoutchoutage/S. caoutchoutée/F.() caoutchouter/a0a+() caoutchouteuse/W.() caoutchoutière/F.() cap/S. capable/S. capacimètre/S. capacitation/S. capacité/S. capacitive/F.() capahuter/a0a+() caparaçon/S. caparaçonnée/F.() caparaçonner/a0a+() cape/S. capéer/a0() capelage/S. capelan/S. capelée/F.() capeler/d0a+() capelet/S. capeline/S. capésienne/F.() capétienne/F.() capeyer/a0() capharnaüm/S. capillaire/S. capillarité/S. capillicultrice/F.() capilliculture/S. capilotade/S. capiston/S. capitaine/S. capitainerie/S. capitale/W.() capitalisable/S. capitalisante/F.() capitalisation/S. capitaliser/a0a+() capitalisme/S. capitaliste/S. capitalistique/S. capitan/S. capitation/S. capite/S. capitée/F.() capiteuse/W.() capitole/S. capitoline/F.() capiton/S. capitonnage/S. capitonnée/F.() capitonner/a0a+() capitoul/S. capitulaire/S. capitularde/F.() capitulation/S. capitule/S. capitulée/F.() capituler/a0() capoeira/S. caponne/F.() caponner/a0() caponnière/S. caporale/W.() caporaliser/a0a+() caporalisme/S. capot/S. capotage/S. capote/S. capoter/a0a+() cappa/S. cappella cappuccino/S. câpre/S. capricante/F.() capriccio/S. caprice/S. capricieuse/W.() capricieusement capricorne/S. câprier/S. caprifoliacée/S. caprine/F.() capron/S. caprylique/S. capsaïcine/S. capselle/S. capsicum/S. capside/S. capsulage/S. capsulaire/S. capsule/S. capsuler/a0a+() captable/S. captage/S. captal/S. captante/S. captation/S. captative/F.() captativité/S. captatoire/S. captatrice/F.() captée/F.() capter/a0a+() capte-suie capteur/S. captieuse/W.() captieusement captivante/F.() captive/F.() captivée/F.() captiver/a0a+() captivité/S. capture/S. capturée/F.() capturer/a0a+() capuce/S. capuche/S. capuchon/S. capuchonnée/F.() capuchonner/a0a+() capucinade/S. capucine/F.() capulet/S. caque/S. caquelon/S. caquer/a0a+() caquet/S. caquetage/S. caquetante/F.() caquètement/S. caqueter/d0() car car/S. carabe/S. carabin/S. carabine/S. carabinée/F.() carabinier/S. carabistouille/S. caracal/S. caraco/S. caracole/S. caracoler/a0() caractère/S. caractérielle/F.() caractérisante/F.() caractérisation/S. caractérisée/F.() caractériser/a0a+() caractéristique/S. caractérologie/S. caractérologique/S. carafe/S. carafon/S. caraïbe/S. carambolage/S. carambole/S. caramboler/a0a+() carambolier/S. carambouillage/S. carambouilleur/S. caramel/S. caramélée/F.() caramélisation/S. caramélisée/F.() caraméliser/a0a+() carapace/S. carapater/a0a+() carat/S. caravagesque/S. caravagisme/S. caravagiste/S. caravanage/S. caravane/S. caravanière/F.() caravaning/S. caravansérail/S. caravelle/S. carbocation/S. carbochimie/S. carbonarisme/S. carbonaro/S. carbonatation/S. carbonate/S. carbonatée/F.() carbonater/a0a+() carbone/S. carbonée/F.() carbonifère/S. carbonique/S. carbonisation/S. carbonisée/F.() carboniser/a0a+() carbonnade/S. carbono/S. carbonyle/S. carborane/S. carborundum/S. carboxylase/S. carboxyle/S. carboxylique/S. carburant/S. carburateur/S. carburation/S. carbure/S. carburéacteur/S. carburée/F.() carburer/a0a+() carburière/F.() carburologue/S. carcailler/a0() carcajou/S. carcan/S. carcasse/S. carcel/S. carcérale/W.() carcinogène/S. carcinogénétique/S. carcinologie/S. carcinome/S. cardage/S. cardamine/S. cardamome/S. cardamone/S. cardan/S. cardée/F.() carder/a0a+() cardère/S. cardeuse/F.() cardia/S. cardiale/W.() cardialgie/S. cardiaque/S. cardigan/S. cardinalat/S. cardinale/W.() cardinalice/S. cardiogramme/S. cardiographe/S. cardiographie/S. cardioïde/S. cardiologie/S. cardiologue/S. cardiomyopathie/S. cardiopathie/S. cardiopulmonaire/S. cardiorespiratoire/S. cardiotomie/S. cardiotonique/S. cardiovasculaire/S. cardite/S. cardon/S. carême/S. carénage/S. carence/S. carencer/a0a+() carène/S. carénée/F.() caréner/c0a+() carentielle/F.() caressante/F.() caresse/S. caressée/F.() caresser/a0a+() carex car-ferry/S. cargaison/S. cargo/S. cargue/S. carguer/a0a+() cari/S. cariacou/S. cariatide/S. caribe/S. caribéenne/F.() caribou/S. caricaturale/W.() caricaturalement caricature/S. caricaturée/F.() caricaturer/a0a+() caricaturiste/S. carie/S. cariée/F.() carier/a0a+() carieuse/W.() carillon/S. carillonnée/F.() carillonnement/S. carillonner/a0a+() carillonneuse/F.() cariste/S. caritative/F.() carline/F.() carlingue/S. carlinguier/S. carlisme/S. carliste/S. carmagnole/S. carme/S. carmel/S. carmeline/S. carmélitaine/F.() carmélite/S. carmer/a0a+() carmin/S. carminative/F.() carminée/F.() carminer/a0a+() carnage/S. carnassière/F.() carnation/S. carnaval/S. carnavalesque/S. carne/S. carneau/X. carnée/F.() carnèle/S. carnet/S. carnettiste/S. carnier/S. carnification/S. carnifier/a0a+() carnivore/S. carnotset/S. caroline/S. carolingienne/F.() carolus caron/S. caronade/S. caroncule/S. carotène/S. caroténoïde/S. carotide/S. carotidienne/F.() carottage/S. carotte/S. carottée/F.() carotter/a0a+() carotteuse/F.() carottière/F.() caroube/S. caroubier/S. carouble/S. caroubler/a0a+() carouge/S. carpatique/S. carpe/S. carpeau/X. carpelle/S. carpette/S. carpienne/F.() carpillon/S. carpocapse/S. carpophore/S. carquois carrare/S. carre/S. carreau/X. carrée/F.() carrefour/S. carrelage/S. carrelée/F.() carreler/d0a+() carrelet/S. carreleuse/F.() carrément carrer/a0a+() carrick/S. carrière/F.() carriérisme/S. carriériste/S. carriole/S. carrossable/S. carrossage/S. carrosse/S. carrossée/F.() carrosser/a0a+() carrosserie/S. carrossière/F.() carrousel/S. carroyage/S. carroyer/a0a+() carrure/S. cartable/S. carte/S. cartel/S. carte-lettre cartellisation/S. carter/S. carter/a0a+() carte-réponse cartésianisme/S. cartésienne/F.() cartes-lettres cartes-réponses cartes-vues carte-vue carthaginoise/F.() cartier/S. cartilage/S. cartilagineuse/W.() cartographe/S. cartographie/S. cartographiée/F.() cartographier/a0a+() cartographique/S. cartomancie/S. cartomancienne/F.() carton/S. cartonnage/S. cartonnée/F.() cartonner/a0a+() cartonnerie/S. cartonneuse/W.() cartonnière/F.() carton-pâte cartons-pâtes cartoon/S. cartoonesque/S. cartothèque/S. cartouche/S. cartoucher/a0() cartoucherie/S. cartouchière/S. cartulaire/S. caryologie/S. caryophyllacée/S. caryopse/S. caryotype/S. cas casanière/F.() casaque/S. casaquin/S. casbah/S. cascade/S. cascader/a0() cascadeuse/F.() cascatelle/S. case/S. caséeuse/W.() caséification/S. caséifier/a0a+() caséine casemate/S. casemater/a0a+() caser/a0a+() caserne/S. casernée/F.() casernement/S. caserner/a0a+() casernière/F.() cash casher cash-flow/S. casier/S. casimir/S. casino/S. casinotière/F.() casoar/S. casquante/F.() casque/S. casquée/F.() casquer/a0a+() casquette/S. casquettière/F.() cassable/S. cassage/S. cassante/F.() cassate/S. cassation/S. casse/S. casseau/X. casse-cou casse-croûte casse-croûter/a0() casse-cul casse-dalle cassée/F.() casse-graine casse-gueule cassement/S. casse-noisettes casse-noix casse-pattes casse-pieds casse-pierre/S. casse-pipe/S. casser/a0a+() casserole/S. casse-tête cassetin/S. casse-tout cassette/S. casseuse/F.() cassier/S. cassine/S. cassis cassitérite/S. cassolette/S. casson/S. cassonade/S. cassoulet/S. cassure/S. castagne/S. castagner/a0a+() castagnettes castard/S. caste/S. castel/S. castillane/F.() castine/S. casting/S. castor/S. castoréum/S. castrale/W.() castrat/S. castration/S. castratrice/F.() castrée/F.() castrer/a0a+() castrisme/S. castriste/S. casuel/S. casuelle/F.() casuiste/S. casuistique/S. catabatique/S. catabolisme/S. catachrèse/S. cataclysmale/W.() cataclysme/S. cataclysmique/S. catacombe/S. catadioptre/S. catadioptrique/S. catafalque/S. cataire/S. catalane/F.() catalase/S. catalectique/S. catalepsie/S. cataleptique/S. catalogage/S. catalogne/S. catalogue/S. cataloguée/F.() cataloguer/a0a+() catalogueuse/F.() catalpa/S. catalyse/S. catalyser/a0a+() catalyseur/S. catalytique/S. catamaran/S. cataphote/S. cataplasme/S. catapultage/S. catapulte/S. catapultée/F.() catapulter/a0a+() cataracte/S. catarrhale/W.() catarrhe/S. catarrheuse/W.() catastrophe/S. catastrophée/F.() catastropher/a0a+() catastrophique/S. catastrophisme/S. catatonie/S. catatonique/S. catch/S. catcher/a0() catcheuse/F.() catéchèse/S. catéchiser/a0a+() catéchisme/S. catéchiste/S. catéchistique/S. catéchuménat/S. catéchumène/S. catégorème/S. catégorie/S. catégorielle/F.() catégorique/S. catégoriquement catégorisante/F.() catégorisation/S. catégoriser/a0a+() caténaire/S. caténairiste/S. cathare/S. catharisme/S. catharsique/S. catharsis cathartique/S. cathédrale/S. cathédrale/W.() cathèdre/S. catherinette/S. cathéter/S. cathétérisme/S. catho/S. cathode/S. cathodique/S. catholicisme/S. catholicité/S. catholique/S. catholiquement cati/S. catie/F.() catilinaire/S. catimini catin/S. catiner/a0a+() cation/S. cationique/S. catir/f0f+() catissage/S. catoblépas catogan/S. catoptrique/S. cattleya/S. caucasienne/F.() caucasique/S. cauchemar/S. cauchemarder/a0() cauchemardesque/S. cauchemardeuse/W.() caudale/W.() caudataire/S. caudillo/S. caudrette/S. caulescente/F.() caulinaire/S. cauris causa causale/W.() causalisme/S. causalité/S. causante/F.() causative/F.() cause/S. causée/F.() causer/a0a+() causerie/S. causette/S. causeuse/F.() causse/S. causticité/S. caustique/S. cautèle/S. cauteleuse/W.() cauteleusement cautère/S. cautérisante/F.() cautérisation/S. cautériser/a0a+() caution/S. cautionnée/F.() cautionnement/S. cautionner/a0a+() cavacher/a0() cavage/S. cavaillon/S. cavalcade/S. cavalcader/a0() cavale/S. cavaler/a0a+() cavalerie/S. cavaleuse/F.() cavalière/F.() cavalièrement cavatine/S. cave/S. caveau/X. cavée/F.() caver/a0a+() caverne/S. caverneuse/W.() cavernicole/S. cavet/S. caveuse/F.() caviar/S. caviardage/S. caviardée/F.() caviarder/a0a+() cavicorne/S. caviste/S. cavitation/S. cavité/S. cc cd/U.||-- ce/S. céans cébette/S. ceci cécidie/S. cécité/S. cédante/F.() cédée/F.() céder/c0a+() cédérom/S. cédétiste/S. cedex cédille/S. cédraie/S. cédrat/S. cédratier/S. cèdre/S. cedrela/S. cédulaire/S. cédule/S. cégep/S. cégésimale/W.() cégétiste/S. cégotter/a0a+() ceindre/wB() ceinte/F.() ceinturage/S. ceinture/S. ceinturée/F.() ceinturer/a0a+() ceinturière/F.() ceinturon/S. cela céladon célébrant/S. célébration/S. célèbre/S. célébrée/F.() célébrer/c0a+() celebret/S. célébrité/S. celer/b0a+() céleri/S. célérifère/S. céleri-rave céleris-raves célérité/S. célesta/S. céleste/S. célestin/S. célibat/S. célibataire/S. cella/S. celle/S. celle-ci celle-là cellérière/F.() celles-ci celles-là cellier/S. cellophane/S. cellophaneuse/S. cellulaire/S. cellular/S. cellule/S. cellulite/S. celluloïd/S. cellulose/S. cellulosique/S. celte/S. celtique/S. celtisante/F.() celtisme/S. celui celui-ci celui-là cément/S. cémentation/S. cémenter/a0a+() c'en cénacle/S. cendre/S. cendrée/F.() cendrer/a0a+() cendreuse/W.() cendrier/S. cendrillon/S. cène/S. cenelle/S. cénesthésie/S. cénesthésique/S. cénesthopathie/S. cénesthopathique/S. cénobite/S. cénobitique/S. cénobitisme/S. cénotaphe/S. cens censée/F.() censément censeur/S. censière/F.() censitaire/S. censive/S. censorat/S. censoriale/W.() censurable/S. censure/S. censurée/F.() censurer/a0a+() cent/S. centaine/S. centaure/S. centaurée/S. centavo/S. centenaire/S. centenier/S. centennale/W.() center/a0a+() centésimale/W.() centiare/S. centibar/S. centième/S. centigrade/S. centile/S. centime/S. centimétrique/S. centipoise/S. centistokes centrafricaine/F.() centrage/S. centrale/W.() centralement centralienne/F.() centralisation/S. centralisatrice/F.() centralisée/F.() centraliser/a0a+() centralisme/S. centre/S. centre-auto centre-avant centrée/F.() centrer/a0a+() centres-autos centres-avant centres-tirs centres-villes centre-tir centreuse/F.() centre-ville centrifugation/S. centrifuge/S. centrifuger/a0a+() centrifugeuse/F.() centripète/S. centrisme/S. centriste/S. centromère/S. centrosome/S. centuple/S. centupler/a0a+() centurie/S. centurion/S. cénure/S. cénurose/S. cep/S. cépage/S. cèpe/S. cependant céphalalgie/S. céphalée/F.() céphalée/S. céphalique/S. céphalopode/S. céphalo-rachidienne/F.() céphalothorax céphéide/S. cérambyx cérame/S. céramide/S. céramique/S. céramiste/S. céramologie/S. céramologue/S. céraste/S. cérat/S. cerbère/S. cercaire/S. cerce/S. cerceau/X. cerclage/S. cercle/S. cerclée/F.() cercler/a0a+() cercopithèque/S. cercueil/S. céréale/S. céréalicultrice/F.() céréaliculture/S. céréalière/F.() cérébelleuse/W.() cérébrale/W.() cérébralisation/S. cérébralité/S. cérébro-spinale/W.() cérémonial/S. cérémonie/S. cérémonielle/F.() cérémonieuse/W.() cérémonieusement cerf/S. cerfeuil/S. cerfs-volants cerf-volant cerisaie/S. cerise/S. cerisette/S. cerisier/S. cérithe/S. cérium/S. cerne/S. cerneau/X. cernée/F.() cerner/a0a+() cerque/S. certaine/F.() certaine/F.() certainement certes certificat/S. certificateur/S. certification/S. certifiée/F.() certifier/a0a+() certitude/S. cérulée/F.() céruléenne/F.() cérumen cérumineuse/W.() céruse/S. cerveau/X. cervelas cervelet/S. cervelle/S. cervicale/W.() cervidé/S. cervier/S. cervoise/S. césalpiniacée/S. césar/S. césarienne/F.() césariser/a0a+() césarisme/S. césine césium/S. cessante/F.() cessation/S. cesser/a0a+() cessez-le-feu cessibilité/S. cessible/S. cession/S. cessionnaire/S. c'est-à-dire ceste/S. césure/S. cet cétacé/S. cétane/S. cetera cétérach/S. cétoine/S. cétone/S. cétonique/S. cette ceux ceux-ci ceux-là cévenole/F.() cf cgr/||-- ch/||-- chabichou/S. chabler/a0a+() chablis chabot/S. chabraque/S. chabrol/S. chabrot/S. chacal/S. cha-cha-cha chaconne/S. chacun chacune chadburn/S. chadouf/S. chafouine/F.() chagrin/S. chagrinante/F.() chagrine/F.() chagrinée/F.() chagriner/a0a+() chah/S. chahut/S. chahutée/F.() chahuter/a0a+() chahuteuse/F.() chai/S. chaînage/S. chaîne/S. chaînée/F.() chaîner/a0a+() chaînetière/F.() chaînette/S. chaîneuse/F.() chaînière/F.() chaîniste/S. chaînon/S. chair/S. chaire/S. chaise/S. chaisière/F.() chakra/S. chalandage/S. chalande/F.() chalandise/S. chalaze/S. chalazion/S. chalcogène/S. chalcographe/S. chalcographie/S. chalcolithique/S. chalcopyrite/S. chalcosine/S. chaldéenne/F.() châle/S. chalet/S. chaleur/S. chaleureuse/W.() chaleureusement châlit/S. challenge/S. challenger/S. chaloir/pQ() chaloupe/S. chaloupée/F.() chalouper/a0() chalumeau/X. chalumiste/S. chalut/S. chalutage/S. chalutier/S. chamade/S. chamærops chamaille/S. chamailler/a0a+() chamaillerie/S. chamailleuse/F.() chamane/F.() chamanique/S. chamanisme/S. chamaniste/S. chamarre/S. chamarrée/F.() chamarrer/a0a+() chamarrure/S. chambard/S. chambardement/S. chambarder/a0a+() chambellan/S. chambertin/S. chamboulement/S. chambouler/a0a+() chambranle/S. chambray/S. chambre/S. chambrée/F.() chambrer/a0a+() chambrette/S. chambrière/F.() chameau/X. chameauser/a0() chamelier/S. chamelle/S. chamois chamoisage/S. chamoisée/F.() chamoiser/a0a+() chamoiserie/S. chamoisette/S. chamoiseuse/F.() chamoisine/S. champ/S. champagne/S. champagnisation/S. champagniser/a0a+() champart/S. champée/F.() champenoise/F.() champêtre/S. champi/S. champignon/S. champignonnière/S. champignonniste/S. championnat/S. championne/F.() champisse/S. champlevée/F.() champlever/b0a+() chamsin/S. chançarde/F.() chance/S. chancel/S. chancelante/F.() chanceler/d0() chancelière/F.() chancellement/S. chancellerie/S. chancetiquer/a0() chanceuse/W.() chancie/F.() chancir/f0f+() chancre/S. chandail/S. chandeleur/S. chandelier/S. chandelle/S. chanfrein/S. chanfreiner/a0a+() chanfreineuse/S. change/S. changeable/S. changeante/F.() changée/F.() changement/S. changer/a0a+() changeuse/F.() chanlatte/S. chanoinesse/F.() chanson/S. chansonner/a0a+() chansonnette/S. chansonnière/F.() chanstiquer/a0a+() chant/S. chantage/S. chantante/F.() chanteau/X. chantée/F.() chantefable/S. chantepleure/S. chanter/a0a+() chanterelle/S. chanteuse/F.() chantier/S. chantignole/S. chantilly chantonnement/S. chantonner/a0a+() chantournage/S. chantournée/F.() chantourner/a0a+() chantourneuse/F.() chantre/S. chanvre/S. chanvrière/F.() chaos chaotique/S. chaotiquement chaouch/S. chapardage/S. chapardée/F.() chaparder/a0a+() chapardeuse/F.() chape/S. chapeau/X. chapeautée/F.() chapeauter/a0a+() chapée/F.() chapelain/S. chapeler/d0a+() chapelet/S. chapelière/F.() chapelle/S. chapellenie/S. chapellerie/S. chapelure/S. chaperon/S. chaperonnée/F.() chaperonner/a0a+() chapiste/S. chapiteau/X. chapitre/S. chapitrée/F.() chapitrer/a0a+() chapka/S. chaplinesque/S. chapon/S. chaponner/a0a+() chapska/S. chaptalisation/S. chaptalisée/F.() chaptaliser/a0a+() chaque char/S. charabia/S. charade/S. charadriiforme/S. charançon/S. charançonnée/F.() charango/S. charbon/S. charbonnage/S. charbonnée/F.() charbonner/a0a+() charbonnerie/S. charbonnette/S. charbonneuse/W.() charbonnière/F.() charcuter/a0a+() charcuterie/S. charcutière/F.() chardon/S. chardonneret/S. charentaise/F.() charge/S. chargée/F.() chargement/S. charger/a0a+() chargeuse/F.() charia/S. chariboter/a0() chariot/S. chariotage/S. chariotée/S. charioter/a0a+() charismatique/S. charisme/S. charitable/S. charitablement charité/S. charivari/S. charlatan/S. charlatanerie/S. charlatanesque/S. charlatanisme/S. charlater/a0() charleston/S. charlot/S. charlotte/S. charmante/F.() charme/S. charmée/F.() charmer/a0a+() charmeuse/F.() charmille/S. charnelle/F.() charnellement charnier/S. charnière/S. charnue/F.() charognarde/F.() charogne/S. charolaise/F.() charpentage/S. charpente/S. charpentée/F.() charpenter/a0a+() charpenterie/S. charpentière/F.() charpie/S. charretée/S. charretière/F.() charretin/S. charreton/S. charrette/S. charriage/S. charriée/F.() charrier/a0a+() charroi/S. charronnage/S. charronne/F.() charroyer/a0a+() charruage/S. charrue/S. charte/S. charter/S. chartériser/a0a+() chartisme/S. chartiste/S. chartreuse/W.() chartrier/S. chas chasse/S. châsse/S. chasse-clou/S. chassé-croisé chassée/F.() chasséenne/F.() chasselas chasse-marée chasse-mouches chasse-neige chasse-pierres chassepot/S. chasser/a0a+() chasseresse/S. chasse-rivet/S. chasse-roue/S. chassés-croisés chasseuse/F.() chasse-vase chassie/S. chassieuse/W.() châssis chaste/S. chastement chasteté/S. chasuble/S. chasublerie/S. châtaigne/S. châtaigner/a0a+() châtaigneraie/S. châtaignier/S. châtain/S. château/X. chateaubriand/S. châtelaine/F.() châtelet/S. châtellenie/S. chat-huant châtiée/F.() châtier/a0a+() chatière/S. châtiment/S. chatoiement/S. chaton/S. chatonner/a0() chatouille/S. chatouillée/F.() chatouillement/S. chatouiller/a0a+() chatouilleuse/W.() chatouillis chatoyante/F.() chatoyer/a0() châtrée/F.() châtrer/a0a+() chats-huants chatte/F.() chattemite/S. chatterie/S. chatterton/S. chaude/F.() chaudeau/X. chaudement chaud-froid chaudière/S. chaudrée/S. chaudron/S. chaudronnerie/S. chaudronnière/F.() chauds-froids chauffage/S. chauffagiste/S. chauffante/F.() chauffard/S. chauffe/S. chauffe-assiette/S. chauffe-bain/S. chauffe-biberon/S. chauffée/F.() chauffe-eau chauffe-lit/S. chauffe-moût/S. chauffe-pieds chauffe-plat/S. chauffer/a0a+() chaufferette/S. chaufferie/S. chauffeuse/F.() chauffoir/S. chaufour/S. chaufournier/S. chaulage/S. chaulée/F.() chauler/a0a+() chauleuse/S. chaumage/S. chaume/S. chaumer/a0a+() chaumière/S. chaumine/S. chaussante/F.() chausse/S. chaussée/F.() chaussée/S. chausse-pied/S. chausser/a0a+() chausse-trappe/S. chaussette/S. chausseuse/F.() chausson/S. chaussure/S. chauve/S. chauve-souris chauves-souris chauvine/F.() chauvinisme/S. chauvir/f0() chaux chavirée/F.() chavirement/S. chavirer/a0a+() chawer/a0() chebec/S. chèche/S. chéchia/S. check-list/S. check-up chédail/S. cheddite/S. cheeseburger/S. cheesecake/S. chef/S. chef-d'œuvre cheffe/S. chefferie/S. cheffesse/S. chef-lieu chefs-d'œuvre chefs-lieux cheftaine/S. cheikh/S. cheire/S. chélate/S. chélateur/S. chélation/S. chélatrice/F.() chelem/S. chélicérate/S. chélicère/S. chélidoine/S. chélifère/S. chelléenne/F.() chemin/S. chemineau/X. cheminée/S. cheminement/S. cheminer/a0() cheminote/F.() chemisage/S. chemise/S. chemiser/a0a+() chemiserie/S. chemisette/S. chemisière/F.() chênaie/S. chenal/X. chenapan/S. chêne/S. chéneau/X. chêne-liège chênes-lièges chenet/S. chènevière/S. chènevis chenil/S. chenillard/S. chenille/S. chenillée/F.() chenillette/S. chénopode/S. chénopodiacée/S. chenue/F.() cheptel/S. chèque/S. chèque-restaurant chèques-restaurant chéquier/S. cherchée/F.() chercher/a0a+() chercheuse/F.() chère/F.() chère/S. chèrement chérer/c0() chergui/S. chérie/F.() chérif/S. chérifienne/F.() chérir/f0f+() chérot/S. cherrer/a0() cherry/S. cherté/S. chérubin/S. chervis chester/S. chétive/F.() chétivement chétognathe/S. chevaine/S. cheval/X. chevalement/S. chevaler/a0a+() chevaleresque/S. chevalerie/S. chevalet/S. chevalière/F.() chevaline/F.() cheval-vapeur chevauchante/F.() chevauchée/F.() chevauchée/S. chevauchement/S. chevaucher/a0a+() chevaux-vapeur chevêche/S. chevelue/F.() chevelure/S. chevenne/S. chevesne/S. chevet/S. chevêtre/S. cheveu/X. chevillarde/F.() cheville/S. chevillée/F.() cheviller/a0a+() chevillette/S. cheviotte/S. chèvre/S. chevreau/X. chèvrefeuille/S. chèvre-pied/S. chevreter/d0() chevrette/S. chevreuil/S. chevrière/F.() chevron/S. chevronnage/S. chevronnée/F.() chevronner/a0a+() chevrotage/S. chevrotante/F.() chevrotement/S. chevrotin/S. chevrotine/S. chewing-gum/S. chez chez-eux chez-moi chez-nous chez-soi chez-toi chez-vous chiade/S. chiadée/F.() chiader/a0a+() chialer/a0() chialeuse/F.() chiante/F.() chianti/S. chiasma/S. chiasme/S. chibouk/S. chibouque/S. chic/S. chicane/S. chicaner/a0a+() chicanerie/S. chicaneuse/F.() chicanière/F.() chicha/S. chiche/S. chiche-kebab chichement chichi/S. chichiteuse/W.() chichon/S. chicon/S. chicorée/S. chicorer/a0a+() chicorner/a0a+() chicot/S. chicote/S. chicoter/a0() chicotin/S. chicotte/S. chicotter/a0a+() chiée/F.() chiendent/S. chienlit/S. chien-loup chienne/F.() chienner/a0() chiennerie/S. chiens-loups chier/a0a+() chieuse/F.() chiffe/S. chiffon/S. chiffonnade/S. chiffonnage/S. chiffonnée/F.() chiffonnement/S. chiffonner/a0a+() chiffonnière/F.() chiffrable/S. chiffrage/S. chiffre/S. chiffrée/F.() chiffrement/S. chiffrer/a0a+() chiffreuse/F.() chiffrier/S. chigner/a0() chignole/S. chignon/S. chihuahua/S. chiisme/S. chiite/S. chikungunya/S. chilienne/F.() chimer/a0a+() chimère/S. chimérique/S. chimériquement chimie/S. chimio/S. chimiosynthèse/S. chimiotactique/S. chimiotactisme/S. chimiotaxie/S. chimiothèque/S. chimiothérapie/S. chimique/S. chimiquement chimiquier/S. chimisme/S. chimiste/S. chimpanzé/S. chinage/S. chinchilla/S. chinée/F.() chiner/a0a+() chineuse/F.() chinoise/F.() chinoiser/a0() chinoiserie/S. chinook/S. chintz chinure/S. chiot/S. chiotte/S. chiourme/S. chiper/a0a+() chipie/S. chipolata/S. chipotage/S. chipoter/a0() chipoteuse/F.() chips chique/S. chiquée/F.() chiquement chiquenaude/S. chiquer/a0a+() chiqueuse/F.() chirale/W.() chiralité/S. chirographaire/S. chirographie/S. chirographier/a0a+() chiromancie/S. chiromancienne/F.() chiropractie/S. chiropractrice/F.() chiropraticienne/F.() chiropraxie/S. chiroptère/S. chirurgicale/W.() chirurgicalement chirurgie/S. chirurgien-dentiste chirurgienne/F.() chirurgiens-dentistes chistera/S. chitine/S. chitineuse/W.() chiton/S. chiure/S. chlamyde/S. chlamydia/S. chleuhe/F.() chloral/S. chloramphénicol/S. chlorate/S. chlore/S. chlorée/F.() chlorer/a0a+() chlorhydrate/S. chlorhydrique/S. chlorique/S. chloroforme/S. chloroformer/a0a+() chlorophycée/S. chlorophylle/S. chlorophyllienne/F.() chloropicrine/S. chloroplaste/S. chlorose/S. chlorotique/S. chlorure/S. chlorurée/F.() chlorurer/a0a+() chnoque/S. choanocyte/S. choc/S. chochotte/S. chocolat/S. chocolatée/F.() chocolaterie/S. chocolatière/F.() chocolatine/S. chocotte/S. chocotter/a0a+() chœur/S. chofer/a0a+() choir/pX() choisie/F.() choisir/f0f+() choisisseuse/F.() choix cholagogue/S. cholécystite/S. cholécystotomie/S. cholédoque/S. cholémie/S. choléra/S. cholériforme/S. cholérine/S. cholérique/S. cholestérol/S. cholestérolémie/S. choline/S. cholinestérase/S. cholinestérasique/S. cholurie/S. chômable/S. chômage/S. chômée/F.() chômer/a0a+() chômeuse/F.() chondrichtyen/S. chondriome/S. chondriosome/S. chondroblaste/S. chondrostéen/S. chope/S. choper/a0a+() chopine/S. chopiner/a0() chopper/a0() choquante/F.() choquée/F.() choquer/a0a+() chorale/F.() chorée/S. chorège/S. chorégie/S. chorégraphe/S. chorégraphie/S. chorégraphiée/F.() chorégraphier/a0a+() chorégraphique/S. choréique/S. choreute/S. chorion/S. choriste/S. chorizo/S. chorographie/S. choroïde/S. choroïdienne/F.() chorus chose/S. choser/a0a+() chosification/S. chosifiée/F.() chosifier/a0a+() chott/S. chou/X. chouan/S. chouannerie/S. choucas chouchou/S. chouchoute/S. chouchouter/a0a+() choucroute/S. chouette/S. choufer/a0a+() chou-fleur chouïa chouleur/S. chou-navet chouquette/S. chou-rave chouraver/a0a+() chourer/a0a+() chouriner/a0a+() choux-fleurs choux-navets choux-raves chow-chow chows-chows choyée/F.() choyer/a0a+() chrême/S. chrémeau/X. chrestomathie/S. chrétien-démocrate chrétienne/F.() chrétienne-démocrate chrétiennement chrétiennes-démocrates chrétiens-démocrates chrétienté/S. chris-craft chrisme/S. christ/S. christiania/S. christianisation/S. christianisée/F.() christianiser/a0a+() christianisme/S. christique/S. christologie/S. christologique/S. chromage/S. chromate/S. chromatide/S. chromatine/S. chromatique/S. chromatisme/S. chromatogramme/S. chromatographie/S. chromatographique/S. chromatopsie/S. chrome/S. chromée/F.() chromer/a0a+() chromeuse/F.() chromique/S. chromiste/S. chromo/S. chromodynamique/S. chromogène/S. chromolithographie/S. chromosome/S. chromosomique/S. chromosphère/S. chromotypie/S. chromotypographie/S. chronaxie/S. chronicité/S. chronique/S. chroniquement chroniquer/a0() chroniqueuse/F.() chrono/S. chronobiologie/S. chronogramme/S. chronographe/S. chronologie/S. chronologique/S. chronologiquement chronométrage/S. chronomètre/S. chronométrée/F.() chronométrer/c0a+() chronométreuse/F.() chronométrie/S. chronométrique/S. chronophage/S. chronophotographie/S. chronostratigraphie/S. chronostratigraphique/S. chronotachygraphe/S. chroumer/a0a+() chrysalide/S. chrysanthème/S. chrysanthémique/S. chryséléphantine/F.() chrysobéryl/S. chrysocale/S. chrysolite/S. chrysolithe/S. chrysomèle/S. chrysopée chrysoprase/S. chthonienne/F.() chtouille/S. chuchotée/F.() chuchotement/S. chuchoter/a0a+() chuchoterie/S. chuchoteuse/F.() chuchotis chuintante/F.() chuintante/S. chuintement/S. chuinter/a0() chum/S. churro/S. chut chute/S. chuter/a0() chyle/S. chylifère/S. chyme/S. chypriote/S. ci ci-après ci-avant cibiche/S. cibiste/S. ciblage/S. cible/S. ciblée/F.() cibler/a0a+() ciboire/S. ciborium/S. ciboule/S. ciboulette/S. ciboulot/S. cicatrice/S. cicatricielle/F.() cicatricule/S. cicatrisable/S. cicatrisante/F.() cicatrisation/S. cicatrisée/F.() cicatriser/a0a+() cicéro/S. cicérone/S. cicéronienne/F.() cicindèle/S. ci-contre cicutine/S. ci-dessous ci-dessus ci-devant cidre/S. cidrerie/S. cidricole/S. ciel/S. cierge/S. cierie/S. cieux cigale/S. cigare/S. cigarette/S. cigarettière/F.() cigarière/F.() cigarillo/S. ci-gisent ci-gît cigogne/S. cigogneau/X. ciguë/S. ci-haut ci-incluse/F.() ci-jointe/F.() cil/S. ciliaire/S. cilice/S. ciliée/F.() cillement/S. ciller/a0() cimaise/S. cime/S. ciment/S. cimentation/S. cimentée/F.() cimenter/a0a+() cimenterie/S. cimentière/F.() cimeterre/S. cimetière/S. cimier/S. cimmérienne/F.() cinabre/S. cinchonine/S. cincle/S. cindynique/S. ciné/S. cinéaste/S. ciné-club/S. cinéma/S. cinémascope/S. cinémathèque/S. cinématique/S. cinématographe/S. cinématographie/S. cinématographier/a0a+() cinématographique/S. cinématographiquement cinémomètre/S. ciné-parc/S. cinéphile/S. cinéphilie/S. cinéraire/S. cinérama cinérite/S. cinéroman/S. ciné-shop/S. cinéthéodolite/S. cinétique/S. cinétir/S. cinétisme/S. cinghalaise/F.() cinglante/F.() cinglée/F.() cingler/a0a+() cinnamome/S. cinoche/S. cinoque/S. cinq cinquantaine/S. cinquante cinquante-cinq cinquante-deux cinquante-et-un cinquante-huit cinquantenaire/S. cinquante-neuf cinquante-quatre cinquante-sept cinquante-six cinquante-trois cinquantième/S. cinquième/S. cinquièmement cintrage/S. cintre/S. cintrée/F.() cintrer/a0a+() cintreuse/F.() cintrière/F.() cipaye/S. cipolin/S. cippe/S. cirage/S. circ circadienne/F.() circassienne/F.() circoncire/yV() circoncis circoncise/F.() circoncision/S. circonférence/S. circonférentielle/F.() circonflexe/S. circonlocution/S. circonscriptible/S. circonscription/S. circonscrire/y1() circonscrite/F.() circonspecte/F.() circonspection/S. circonstance/S. circonstanciée/F.() circonstancielle/F.() circonstancier/a0a+() circonvallation/S. circonvenir/i0i+() circonvenue/F.() circonvolution/S. circuit/S. circulaire/S. circulairement circulante/F.() circularité/S. circulateur/S. circulation/S. circulatoire/S. circuler/a0() circumduction/S. circumnavigation/S. circumpolaire/S. circumterrestre/S. cire/S. cirée/F.() cirer/a0a+() cireuse/F.() cireuse/W.() cirière/F.() ciron/S. cirque/S. cirre/S. cirrhose/S. cirrhotique/S. cirrocumulus cirrostratus cirrus cisaillage/S. cisaille/S. cisaillée/F.() cisaillement/S. cisailler/a0a+() cisailleuse/F.() cisalpine/F.() ciseau/X. ciselée/F.() cisèlement/S. ciseler/b0a+() ciselet/S. ciseleuse/F.() ciselure/S. cisoires ciste/S. cistercienne/F.() cistre/S. cistron/S. cistude/S. citadelle/S. citadine/F.() citation/S. citattrice/F.() cité/S. cité-dortoir cité-jardin citer/a0a+() citerne/S. citernière/F.() cités-dortoirs cités-jardins cithare/S. citharède/S. cithariste/S. citoyenne/F.() citoyenneté/S. citrate/S. citrine/F.() citrique/S. citron/S. citronnade/S. citronnée/F.() citronnelle/S. citronnier/S. citrouille/S. citrus civelle/S. civette/F.() civière/S. civile/F.() civilement civilisable/S. civilisation/S. civilisatrice/F.() civilisée/F.() civiliser/a0a+() civiliste/S. civilité/S. civique/S. civisme/S. clabaud/S. clabaudage/S. clabauder/a0() clabauderie/S. clabaudeuse/F.() clabot/S. clabotage/S. claboter/a0a+() clac clacher/a0a+() clade/S. cladisme/S. cladistique/S. cladogramme/S. cladonie/S. clafoutis claie/S. clairance/S. claire/F.() clairement claires-voies clairette/F.() claire-voie clairière/S. clair-obscur clairon/S. claironnante/F.() claironnée/F.() claironner/a0a+() clairsemée/F.() clairsemer/b0a+() clairs-obscurs clairvoyance/S. clairvoyante/F.() clam/S. clamecer/b0a+() clamée/F.() clamer/a0a+() clameur/S. clamp/S. clamper/a0a+() clamser/a0() clan/S. clandé/S. clandestine/F.() clandestinement clandestinité/S. clanique/S. clanisme/S. claper/a0a+() clapet/S. clapier/S. clapir/f0f+() clapot/S. clapotage/S. clapotante/F.() clapotement/S. clapoter/a0() clapotis clappement/S. clapper/a0() clapser/a0() claquage/S. claquante/F.() claque/S. claquée/F.() claquement/S. claquemurée/F.() claquemurer/a0a+() claquer/a0a+() claqueter/d0() claquette/F.() claquoir/S. clarification/S. clarifiée/F.() clarifier/a0a+() clarine/S. clarinette/S. clarinettiste/S. clarisse/S. clarté/S. clash/S. classable/S. classe/S. classée/F.() classement/S. classer/a0a+() classeuse/F.() classicisante/F.() classicisme/S. classiciste/S. classieuse/W.() classification/S. classificatoire/S. classificatrice/F.() classifiée/F.() classifier/a0a+() classique/S. classiquement clastique/S. clathrate/S. claude/S. claudicante/F.() claudication/S. claudiquer/a0() clause/S. claustra/S. claustrale/W.() claustration/S. claustrée/F.() claustrer/a0a+() claustrophobe/S. claustrophobie/S. clausule/S. clausus clavage/S. clavaire/S. clavardage/S. clavarder/a0() claveau/X. clavecin/S. claveciniste/S. clavée/F.() clavelée/F.() claver/a0a+() clavetage/S. claveter/d0a+() clavette/S. clavetter/a0a+() clavicorde/S. claviculaire/S. clavicule/S. clavier/S. clavière/F.() claviste/S. clayère/S. clayette/S. claymore/S. clayon/S. clayonnage/S. clayonner/a0a+() clé/S. clearing/S. clébard/S. cléber/a0() clebs cléchée/F.() clef/S. clématite/S. clémence/S. clémente/F.() clémentine/S. clémentinier/S. clenche/S. clepsydre/S. cleptomane/S. cleptomanie/S. clerc/S. clergé/S. clergie/S. clergyman/S. cléricale/W.() cléricalisme/S. cléricature/S. clic clic/S. clic-clac clichage/S. cliche/S. cliché/S. clichée/F.() clicher/a0a+() clicherie/S. clicheuse/F.() cliente/F.() clientèle/S. clientélisme/S. clientéliste/S. clienter/a0a+() clignée/F.() clignement/S. cligner/a0a+() clignotante/F.() clignotement/S. clignoter/a0() clignoteur/S. climat/S. climatère/S. climatérique/S. climatique/S. climatisante/F.() climatisation/S. climatisée/F.() climatiser/a0a+() climatiseur/S. climatisme/S. climatologie/S. climatologique/S. climatologue/S. climatopathologie/S. climatothérapie/S. clin/S. clinche/S. clinfoc/S. clinicat/S. clinicienne/F.() clinique/S. cliniquement clinomètre/S. clinorhombique/S. clinquante/F.() clip/S. clipper/S. clipper/a0a+() clipser/a0a+() cliquable/S. clique/S. cliquer/a0() cliquet/S. cliquetante/F.() cliquètement/S. cliqueter/d0() cliquetis cliquette/F.() cliquoter/a0() clisse/S. clisser/a0a+() clitoridectomie/S. clitoridienne/F.() clitoris clivable/S. clivage/S. cliver/a0a+() cliveuse/F.() cloaque/S. clocharde/F.() clochardisation/S. clochardiser/a0a+() cloche/S. cloche-pied clocher/S. clocher/a0() clocheton/S. clochette/S. clodo/S. cloison/S. cloisonnage/S. cloisonnante/F.() cloisonnée/F.() cloisonnement/S. cloisonner/a0a+() cloître/S. cloîtrée/F.() cloîtrer/a0a+() clonage/S. clone/S. clonée/F.() cloner/a0a+() clope/S. cloper/a0() clopin-clopant clopiner/a0() clopinettes cloporte/S. cloque/S. cloquée/F.() cloquer/a0a+() clore/rArB() close/F.() closerie/S. clôture/S. clôturée/F.() clôturer/a0a+() clou/S. clouage/S. clouée/F.() clouement/S. clouer/a0a+() cloueuse/F.() cloutage/S. cloutard/S. cloutée/F.() clouter/a0a+() clouterie/S. cloutier/S. clovisse/S. clown/S. clownerie/S. clownesque/S. cloyère/S. club/S. clubbeuse/F.() clubiste/S. clunisienne/F.() cluse/S. clystère/S. cnémide/S. cnidaire/S. cnidoblaste/S. cnidosporidie/S. coaccusée/F.() coach/S. coaching/S. coacquéreur/S. coadjutrice/F.() coadministratrice/F.() coagulabilité/S. coagulable/S. coagulante/F.() coagulation/S. coagulatrice/F.() coagulée/F.() coaguler/a0a+() coagulum/S. coalescence/S. coalisée/F.() coaliser/a0a+() coalition/S. coaltar/S. coaptation/S. coarctation/S. coassante/F.() coassement/S. coasser/a0a+() coassociée/F.() coassurance/S. coati/S. coauteur/S. coaxiale/W.() cob/S. cobalt/S. cobaye/S. cobéa/S. cobelligérante/F.() cobord/S. cobordisme/S. cobra/S. coca/S. cocagne/S. cocaïne cocaïnisation/S. cocaïnomane/S. cocaïnomanie/S. cocaliser/a0a+() cocarde/S. cocardière/F.() cocasse/S. cocassement cocasserie/S. cocaution/S. coccidie/S. coccidiose/S. coccinelle/S. coccus/I. coccygienne/F.() coccyx cochaîne/S. coche/S. cochée/F.() cochenille/S. côcher cocher/a0a+() cochère/F.() cochléaire/S. cochléaria/S. cochonceté/S. cochonnaille/S. cochonne/F.() cochonner/a0a+() cochonnerie/S. cochonnet/S. cochylis cocker/S. cockney/S. cockpit/S. cocktail/S. coco/S. cocompacte/F.() cocon/S. cocontractante/F.() cocorico/S. cocoter/a0() cocotier/S. cocotte/S. cocréancière/F.() coction/S. cocuage/S. cocue/F.() cocufiée/F.() cocufier/a0a+() cocycle/S. cocyclique/S. cocyle/S. codable/S. codage/S. codante/F.() code/S. code-barre/S. codébitrice/F.() codec/S. codécision/S. codée/F.() codéine codemanderesse/F.() coder/a0a+() codes-barres codétentrice/F.() codétenue/F.() codeuse/F.() codex codicille/S. codification/S. codificatrice/F.() codifiée/F.() codifier/a0a+() codimension/S. codirection/S. codirectrice/F.() codominance/S. codon/S. coéditée/F.() coéditer/a0a+() coédition/S. coéditrice/F.() coefficient/S. cœlacanthe/S. cœlentéré/S. cœliaque/S. cœliochirurgie/S. cœlioscope/S. cœlioscopie/S. cœlioscopique/S. cœlome/S. cœlomique/S. coemption/S. coenzyme/S. coéquipière/F.() coercibilité/S. coercible/S. coercition/S. coercitive/F.() cœur/S. cœursage/S. cœurse/S. coévolution/S. coexistante/F.() coexistence/S. coexister/a0() coextensive/F.() cofacée/F.() cofacteur/S. coffin/S. coffrage/S. coffre/S. coffrée/F.() coffre-fort coffrer/a0a+() coffres-forts coffret/S. coffretière/F.() coffreuse/F.() cofinancement/S. cofinancer/a0a+() cofondatrice/F.() cogénération/S. cogérance/S. cogérante/F.() cogérée/F.() cogérer/c0a+() cogestion/S. cogitation/S. cogiter/a0a+() cogito cognac/S. cognassier/S. cognat/S. cognation/S. cogne/S. cognée/F.() cognée/S. cognement/S. cogner/a0a+() cogneuse/F.() cogniticienne/F.() cognition/S. cognitive/F.() cognitivement cognitivisme/S. cognitiviste/S. cognoter/a0() cohabitante/F.() cohabitation/S. cohabitationniste/S. cohabiter/a0() cohérence/S. cohérente/F.() cohéreur/S. cohériter/a0() cohéritière/F.() cohésion/S. cohésive/F.() cohomologie/S. cohomologique/S. cohomologue/S. cohorte/S. cohue/S. coi/S. coiffage/S. coiffante/F.() coiffe/S. coiffée/F.() coiffer/a0a+() coiffeuse/F.() coiffure/S. coin/S. coinçage/S. coincée/F.() coincement/S. coincer/a0a+() coinceur/S. coïncidence/S. coïncidente/F.() coïncider/a0() coin-coin coïnculpée/F.() coing/S. coït/S. coite/S. coïter/a0() coke/S. cokéfaction/S. cokéfiante/F.() cokéfier/a0a+() cokerie/S. cokser/a0a+() col/S. colatitude/S. colature/S. colback/S. colbertisme/S. colbertiste/S. colchicacée/S. colchicine/S. colchique/S. colcotar/S. cold-cream/S. col-de-cygne colégataire/S. coléoptère/S. colère/S. coléreuse/W.() colérique/S. colibacille/S. colibacillose/S. colibri/S. colicitante/F.() colifichet/S. colimaçon/S. colin/S. colinéaire/S. colinéarité/S. colineau/X. colin-maillard/S. colinot/S. colin-tampon/S. colique/S. colis colistière/F.() colite/S. coll collabo/S. collaboration/S. collaborationniste/S. collaborative/F.() collaboratrice/F.() collaborer/a0a+() collage/S. collagène/S. collagénose/S. collante/F.() collapser/a0() collapsus collargol collatérale/W.() collateur/S. collation/S. collationnement/S. collationner/a0a+() colle/S. collectage/S. collecte/S. collectée/F.() collecter/a0a+() collection/S. collectionnée/F.() collectionner/a0a+() collectionneuse/F.() collective/F.() collectivement collectivisation/S. collectivisée/F.() collectiviser/a0a+() collectivisme/S. collectiviste/S. collectivité/S. collector/S. collectrice/F.() collée/F.() collège/S. collégiale/W.() collégialement collégialité/S. collégienne/F.() collègue/S. coller/a0a+() collerette/S. collet/S. colletée/F.() colleter/d0a+() colleteuse/F.() collets-montés colleuse/F.() colley/S. collier/S. colliger/a0a+() collimage/S. collimateur/S. collimation/S. colline/S. collision/S. collisionneur/S. collocation/S. collodion/S. colloïdale/W.() colloïde/S. colloque/S. colloquer/a0a+() collusion/S. collusoire/S. collutoire/S. colluvion/S. collyre/S. colmatage/S. colmatée/F.() colmater/a0a+() coloc/S. colocalisation/S. colocase/S. colocataire/S. colocation/S. cologarithme/S. colombage/S. colombe/S. colombienne/F.() colombier/S. colombine/F.() colombophile/S. colombophilie/S. colon/S. côlon/S. colonage/S. colonat/S. colonelle/F.() coloniale/W.() colonialisme/S. colonialiste/S. colonie/S. colonisable/S. colonisation/S. colonisatrice/F.() colonisée/F.() coloniser/a0a+() colonnade/S. colonne/S. colonnette/S. colophane/S. colophon/S. coloquinte/S. colorante/F.() coloration/S. colorée/F.() colorer/a0a+() coloriage/S. coloriée/F.() colorier/a0a+() colorimètre/S. colorimétrie/S. colorimétrique/S. coloris colorisation/S. colorisée/F.() coloriser/a0a+() coloriste/S. coloscopie/S. colossale/W.() colossalement colosse/S. colostrum/S. colportage/S. colportée/F.() colporter/a0a+() colporteuse/F.() colposcopie/S. cols-de-cygne colt/S. coltinage/S. coltiner/a0a+() columbarium/S. columelle/S. colvert/S. colza colzatier/S. coma/S. comateuse/W.() combat/S. combative/F.() combativité/S. combattante/F.() combattre/uA() combattue/F.() combe/S. combien combientième/S. combinable/S. combinaison/S. combinarde/F.() combinat/S. combinateur/S. combinatoire/S. combinatoirement combine/S. combinée/F.() combiner/a0a+() comblanchien/S. comble/S. comblée/F.() comblement/S. combler/a0a+() comburante/F.() combustibilité/S. combustible/S. combustion/S. come-back comédie/S. comédienne/F.() comédon/S. comestibilité/S. comestible/S. cométaire/S. comète/S. comice/S. comics comique/S. comiquement comité/S. comma/S. commandable/S. commandante/F.() commande/S. commandée/F.() commandement/S. commander/a0a+() commanderie/S. commandeure/F.() commanditaire/S. commanditée/F.() commanditer/a0a+() commando/S. comme commémoraison/S. commémoration/S. commémorative/F.() commémorée/F.() commémorer/a0a+() commençante/F.() commencée/F.() commencement/S. commencer/a0a+() commendataire/S. commende/S. commensale/W.() commensalisme/S. commensalité/S. commensurable/S. comment commentaire/S. commentatrice/F.() commentée/F.() commenter/a0a+() commérage/S. commerçante/F.() commerce/S. commercer/a0() commerciale/W.() commercialement commercialisable/S. commercialisation/S. commercialisée/F.() commercialiser/a0a+() commère/S. commérer/c0() commettante/F.() commettre/vA() comminatoire/S. comminutive/F.() commise/F.() commisération/S. commissaire/S. commissaire-priseur commissaire-priseuse commissaires-priseurs commissaires-priseuses commissariat/S. commission/S. commissionnaire/S. commissionnée/F.() commissionnement/S. commissionner/a0a+() commissoire/S. commissurale/W.() commissure/S. commodat/S. commodataire/S. commode/S. commodément commodité/S. commodore/S. commotion/S. commotionnée/F.() commotionner/a0a+() commuable/S. commuée/F.() commuer/a0a+() communale/W.() communalisée/F.() communaliser/a0a+() communalisme/S. communarde/F.() communautaire/S. communautarisme/S. communautariste/S. communauté/S. commune/F.() communément communiante/F.() communicabilité/S. communicable/S. communicante/F.() communication/S. communicationnelle/F.() communicative/F.() communicatrice/F.() communicologue/S. communier/a0() communion/S. communiquée/F.() communiquer/a0a+() communisante/F.() communisme/S. communiste/S. commutable/S. commutateur/S. commutation/S. commutative/F.() commutativité/S. commutée/F.() commuter/a0a+() comorienne/F.() compacité/S. compactage/S. compacte/F.() compactée/F.() compacter/a0a+() compacteuse/F.() compactification/S. compactifiée/F.() compagne/S. compagnie/S. compagnonnage/S. compagnonne/F.() comparabilité/S. comparable/S. comparaison/S. comparaître/wQ() comparante/F.() comparateur/S. comparatisme/S. comparatiste/S. comparative/F.() comparativement comparatrice/F.() comparée/F.() comparer/a0a+() comparoir/pP() comparse/S. compartiment/S. compartimentage/S. compartimentation/S. compartimentée/F.() compartimenter/a0a+() comparue/F.() comparution/S. compas compassée/F.() compasser/a0a+() compassion/S. compassionnelle/F.() compatibilité/S. compatible/S. compatir/f0() compatissante/F.() compatriote/S. compendieuse/W.() compendieusement compendium/S. compensable/S. compensation/S. compensatoire/S. compensatrice/F.() compensée/F.() compenser/a0a+() compérage/S. compère/S. compère-loriot compères-loriots compétence/S. compétente/F.() compéter/c0() compétition/S. compétitive/F.() compétitivité/S. compétitrice/F.() compilable/S. compilation/S. compilatrice/F.() compilée/F.() compiler/a0a+() compisser/a0a+() complainte/S. complaire/wN() complaisamment complaisance/S. complaisante/F.() complément/S. complémentaire/S. complémentarité/S. complémentation/S. complémenter/a0a+() complet/S. complète/F.() complétée/F.() complètement complètement/S. compléter/c0a+() complétion/S. complétive/F.() complétude/S. complexe/S. complexée/F.() complexer/a0a+() complexification/S. complexifiée/F.() complexifier/a0a+() complexion/S. complexité/S. complication/S. complice/S. complicité/S. complies compliment/S. complimentée/F.() complimenter/a0a+() complimenteuse/F.() compliquée/F.() compliquer/a0a+() complot/S. comploter/a0a+() comploteuse/F.() compogravure/S. componction/S. componée/F.() comportement/S. comportementale/W.() comportementalisme/S. comportementaliste/S. comporter/a0a+() composable/S. composacée/S. composante/F.() composée/F.() composer/a0a+() composeuse/F.() composite/S. composition/S. compositrice/F.() compost/S. compostable/S. compostage/S. compostée/F.() composter/a0a+() composteuse/F.() compote/S. compotier/S. compound compréhensibilité/S. compréhensible/S. compréhension/S. compréhensive/F.() comprendre/tF() comprenette/S. compresse/S. compressée/F.() compresser/a0a+() compresseur/S. compressibilité/S. compressible/S. compression/S. compressive/F.() comprimable/S. comprimée/F.() comprimer/a0a+() comprise/F.() compromettante/F.() compromettre/vA() compromis compromise/F.() compromission/S. compromissionnaire/S. compromissoire/S. comptabilisable/S. comptabilisation/S. comptabilisée/F.() comptabiliser/a0a+() comptabilité/S. comptable/S. comptage/S. comptant comptant comptant/S. compte/S. compte-chèques comptée/F.() compte-fils compte-gouttes compte-minutes compter/a0a+() compte-rendu comptes-chèques comptes-rendus compte-tenu compte-tours compteuse/F.() comptine/S. comptoir/S. compulsée/F.() compulser/a0a+() compulsion/S. compulsive/F.() compulsivement comput/S. computation/S. computer/a0a+() comtale/W.() comté/S. comtesse/F.() comtoise/F.() conation/S. conative/F.() concassage/S. concassée/F.() concasser/a0a+() concasseur/S. concaténation/S. concaténée/F.() concaténer/c0a+() concave/S. concavité/S. concédante/F.() concédée/F.() concéder/c0a+() concélébrée/F.() concélébrer/c0a+() concentrateur/S. concentration/S. concentrationnaire/S. concentrée/F.() concentrer/a0a+() concentreuse/F.() concentricité/S. concentrique/S. concentriquement concept/S. conceptacle/S. conception/S. conceptisme/S. conceptrice/F.() conceptualisation/S. conceptualisée/F.() conceptualiser/a0a+() conceptualisme/S. conceptuelle/F.() concernée/F.() concerner/aF() concert/S. concertante/F.() concertation/S. concertée/F.() concerter/a0a+() concertino/S. concertiste/S. concerto/S. concession/S. concessionnaire/S. concessive/F.() concetti concevable/S. concevoir/pK() conchier/a0a+() conchoïdale/W.() conchoïde/S. conchylicultrice/F.() conchyliculture/S. conchylienne/F.() conchyliologie/S. concierge/S. conciergerie/S. concile/S. conciliable/S. conciliabule/S. conciliaire/S. conciliante/F.() conciliation/S. conciliatoire/S. conciliatrice/F.() conciliée/F.() concilier/a0a+() concise/F.() concision/S. concitoyenne/F.() conclave/S. conclaviste/S. concluante/F.() conclue/F.() conclure/xL() conclusion/S. conclusive/F.() concoctée/F.() concocter/a0a+() concoction/S. concombre/S. concomitamment concomitance/S. concomitante/F.() concordance/S. concordante/F.() concordat/S. concordataire/S. concorde/S. concorder/a0() concourante/F.() concourir/iD() concours concrescence/S. concrète/F.() concrètement concréter/c0a+() concrétion/S. concrétisation/S. concrétisée/F.() concrétiser/a0a+() concubinage/S. concubinaire/S. concubine/F.() conçue/F.() concupiscence/S. concupiscente/F.() concurremment concurrence/S. concurrencée/F.() concurrencer/a0a+() concurrente/F.() concurrentielle/F.() concussion/S. concussionnaire/S. condamnable/S. condamnation/S. condamnatoire/S. condamnée/F.() condamner/a0a+() condé/S. condensable/S. condensat/S. condensateur/S. condensation/S. condensée/F.() condenser/a0a+() condenseur/S. condescendance/S. condescendante/F.() condescendre/tE() condiment/S. condisciple/S. condition/S. conditionnée/F.() conditionnelle/F.() conditionnellement conditionnement/S. conditionner/a0a+() conditionneuse/F.() condoléances condom/S. condominium/S. condor/S. condottiere/S. condruzienne/F.() conductance/S. conductibilité/S. conductible/S. conduction/S. conductivité/S. conductrice/F.() conduire/yM() conduiseuse/F.() conduite/F.() condyle/S. condylienne/F.() condylome/S. cône/S. conf confection/S. confectionnée/F.() confectionner/a0a+() confectionneuse/F.() confédérale/W.() confédération/S. confédérée/F.() confédérer/c0a+() confer conférence/S. conférencière/F.() conférer/c0a+() conferve/S. confesse/S. confessée/F.() confesser/a0a+() confesseur/S. confession/S. confessionnal/X. confessionnalisation/S. confessionnalisme/S. confessionnaliste/S. confessionnelle/F.() confetti/S. confiance/S. confiancer/a0a+() confiante/F.() confidence/S. confidente/F.() confidentialité/S. confidentielle/F.() confidentiellement confiée/F.() confier/a0a+() configurable/S. configuration/S. configurée/F.() configurer/a0a+() confinée/F.() confinement/S. confiner/a0a+() confins confire/yV() confirmande/F.() confirmation/S. confirmative/F.() confirmée/F.() confirmer/a0a+() confiscable/S. confiscation/S. confiscatoire/S. confiserie/S. confiseuse/F.() confisquée/F.() confisquer/a0a+() confite/F.() confiteor confiture/S. confiturer/a0a+() confiturerie/S. confiturière/F.() conflagration/S. conflictuelle/F.() conflit/S. confluence/S. confluent/S. confluer/a0() confondante/F.() confondre/tA() confondue/F.() conformateur/S. conformation/S. conformationnelle/F.() conforme/S. conformée/F.() conformément conformer/a0a+() conformisme/S. conformiste/S. conformité/S. confort/S. confortable/S. confortablement confortée/F.() conforter/a0a+() confraternelle/F.() confraternellement confraternité/S. confrère/S. confrérie/S. confrérique/S. confrontation/S. confrontée/F.() confronter/a0a+() confucianisme/S. confucianiste/S. confuse/F.() confusément confusion/S. confusionnelle/F.() confusionnisme/S. confusionniste/S. conga/S. congaï/S. congaye/S. congé/S. congédiable/S. congédiée/F.() congédiement/S. congédier/a0a+() congelable/S. congélateur/S. congélation/S. congelée/F.() congeler/b0a+() congénère/S. congénitale/W.() congère/S. congestion/S. congestionnée/F.() congestionner/a0a+() congestive/F.() congiaire/S. conglomérale/W.() conglomérat/S. conglomérée/F.() conglomérer/c0a+() conglutination/S. conglutinée/F.() conglutiner/a0a+() congolaise/F.() congratulation/S. congratulée/F.() congratuler/a0a+() congre/S. congréer/a0a+() congréganiste/S. congrégation/S. congrès congressiste/S. congrue/F.() congruence/S. congruente/F.() congrûment conicine/S. conicité/S. conidie/S. conifère/S. conique/S. coniquement cônir/f0f+() conirostre/S. conjecturale/W.() conjecturalement conjecturer/a0a+() conjoindre/wB() conjointe/F.() conjointement conjoncteur/S. conjonction/S. conjonctivale/W.() conjonctive/F.() conjonctivite/S. conjoncture/S. conjoncturelle/F.() conjugabilité/S. conjugaison/S. conjugale/W.() conjugalement conjugalité/S. conjuguée/F.() conjuguer/a0a+() conjugueur/S. conjungo/S. conjuration/S. conjuratoire/S. conjuratrice/F.() conjurée/F.() conjurer/a0a+() connaissable/S. connaissance/S. connaissement/S. connaisseuse/F.() connaître/wQ() connarde/F.() connasse/S. conne/F.() connectabilité/S. connectable/S. connectée/F.() connecter/a0a+() connecteur/S. connectique/S. connective/F.() connectivité/S. connement connerie/S. connétable/S. connétablie/S. connexe/S. connexion/S. connexité/S. connivence/S. connivente/F.() connobler connotation/S. connotée/F.() connoter/a0a+() connue/F.() conobrer/a0a+() conoïde/S. conopée/S. conormale/W.() conoyau/X. conque/S. conquérante/F.() conquérir/iK() conquêt/S. conquête/S. conquise/F.() conquistador/S. consacrée/F.() consacrer/a0a+() consanguine/F.() consanguinité/S. consciemment conscience/S. consciencieuse/W.() consciencieusement conscient/S. consciente/F.() conscientiser/a0a+() conscription/S. conscrit/S. consécration/S. consécution/S. consécutive/F.() consécutivement conseil/S. conseillée/F.() conseiller/a0a+() conseillère/F.() conseilleuse/F.() consensuelle/F.() consensus consentante/F.() consentement/S. consentie/F.() consentir/i5i+() conséquemment conséquence/S. conséquente/F.() conservable/S. conservation/S. conservatisme/S. conservative/F.() conservatoire/S. conservatrice/F.() conserve/S. conservée/F.() conserver/a0a+() conserverie/S. conserveuse/F.() considérable/S. considérablement considération/S. considérative/F.() considérée/F.() considérer/c0a+() consignataire/S. consignation/S. consigne/S. consignée/F.() consigner/a0a+() consistance/S. consistante/F.() consister/a0() consistoire/S. consistoriale/W.() consœur/S. consolable/S. consolante/F.() consolation/S. consolatrice/F.() console/S. consolée/F.() consoler/a0a+() consolidable/S. consolidation/S. consolidée/F.() consolider/a0a+() consommable/S. consommation/S. consommatrice/F.() consommée/F.() consommer/a0a+() consomptible/S. consomption/S. consomptive/F.() consonance/S. consonante/F.() consonantique/S. consonantisme/S. consoner/a0() consonne/S. consort/S. consortium/S. consoude/S. conspiration/S. conspirationniste/S. conspiratrice/F.() conspirer/a0a+() conspuée/F.() conspuer/a0a+() constable/S. constamment constance/S. constantan/S. constante/F.() constante/S. constat/S. constatable/S. constatation/S. constatée/F.() constater/a0a+() constellation/S. constellée/F.() consteller/a0a+() consternante/F.() consternation/S. consternée/F.() consterner/a0a+() constipation/S. constipée/F.() constiper/a0a+() constituante/F.() constituée/F.() constituer/a0a+() constitution/S. constitutionnalisée/F.() constitutionnaliser/a0a+() constitutionnalisme/S. constitutionnaliste/S. constitutionnalité/S. constitutionnelle/F.() constitutionnellement constitutive/F.() constricteur/S. constructibilité/S. constructible/S. construction/S. constructive/F.() constructivisme/S. constructiviste/S. constructivité/S. constructrice/F.() construire/yM() construite/F.() consubstantialité/S. consubstantiation/S. consubstantielle/F.() consulaire/S. consulat/S. consule/F.() consultable/S. consultance/S. consultante/F.() consultation/S. consultative/F.() consultée/F.() consulter/a0a+() consumée/F.() consumer/a0a+() consumérisme/S. consumériste/S. contact/S. contactée/F.() contacter/a0a+() contactologie/S. contactologiste/S. contactologue/S. contactrice/F.() contage/S. contagieuse/W.() contagion/S. contagionner/a0a+() contagiosité/S. container/S. containérisation/S. containériser/a0a+() contaminable/S. contaminante/F.() contamination/S. contaminatrice/F.() contaminée/F.() contaminer/a0a+() conte/S. contée/F.() contemplation/S. contemplative/F.() contemplativement contemplatrice/F.() contemplée/F.() contempler/a0a+() contemporaine/F.() contemptrice/F.() contenance/S. contenante/F.() conteneur/S. conteneurisation/S. conteneuriser/a0a+() contenir/i0i+() contente/F.() contentée/F.() contentement/S. contenter/a0a+() contentieuse/W.() contention/S. contentive/F.() contenu/S. contenue/F.() conter/a0a+() contestable/S. contestataire/S. contestation/S. contestée/F.() contester/a0a+() conteuse/F.() contexte/S. contextualisation/S. contextualiser/a0a+() contextuelle/F.() contexture/S. contiguë/F.() contiguïté/S. continence/S. continent/S. continentale/W.() continentalité/S. continente/F.() contingence/S. contingente/F.() contingentement/S. contingenter/a0a+() continuation/S. continuatrice/F.() continue/F.() continuelle/F.() continuellement continuer/a0a+() continuité/S. continûment continuo/S. continuum/S. contondante/F.() contorsion/S. contorsionnée/F.() contorsionner/a0a+() contorsionniste/S. contour/S. contournable/S. contournée/F.() contournement/S. contourner/a0a+() contraceptif/S. contraception/S. contraceptive/F.() contractante/F.() contractée/F.() contracter/a0a+() contractibilité/S. contractile/S. contractilité/S. contraction/S. contractualisation/S. contractualisée/F.() contractualiser/a0a+() contractuelle/F.() contractuellement contracture/S. contracturer/a0a+() contradicteur/S. contradiction/S. contradictoire/S. contradictoirement contraignable/S. contraignante/F.() contraindre/wO() contrainte/F.() contrainte/S. contraire/S. contrairement contralto/S. contraposée/S. contrapuntique/S. contrapuntiste/S. contrariante/F.() contrariée/F.() contrarier/a0a+() contrariété/S. contrario contrarotative/F.() contrastante/F.() contraste/S. contrastée/F.() contraster/a0a+() contrat/S. contravariant/S. contravention/S. contre contre/S. contre-alizé/S. contre-allée/S. contre-amirale/W.() contre-appel/S. contre-arc/S. contre-assurance/S. contre-attaquable/S. contre-attaquante/F.() contre-attaque/S. contre-attaquer/a0() contrebalancement/S. contrebalancer/a0a+() contrebande/S. contrebandière/F.() contrebas contrebasse/S. contrebassiste/S. contrebasson/S. contrebatte/S. contrebatterie/S. contrebattre/uA() contrebouter/a0a+() contre-braquer/a0() contrebutement/S. contrebuter/a0a+() contre-calque/S. contre-calquer/a0a+() contrecarrée/F.() contrecarrer/a0a+() contre-caution/S. contrechamp/S. contre-chant/S. contre-choc/S. contrecœur/S. contrecollée/F.() contrecoup/S. contre-courant/S. contre-courbe/S. contre-culture/S. contredanse/S. contre-dénonciation/S. contre-digue/S. contredire/yD() contredite/F.() contrée/F.() contre-écrou/S. contre-électromotrice/F.() contre-emploi/S. contre-empreinte/S. contre-enquête/S. contre-épaulette/S. contre-épreuve/S. contre-espalier/S. contre-espionnage/S. contre-essai/S. contre-exemple/S. contre-expertise/S. contre-extension/S. contre-fa contrefaçon/S. contrefactrice/F.() contrefaire/wD() contrefaite/F.() contre-fenêtre/S. contre-fer/S. contre-feu/X. contrefiche/S. contreficher/a0a+() contre-fil/S. contre-filet/S. contrefixation/S. contrefort/S. contreforte/F.() contrefoutre/tM() contre-fugue/S. contre-haut contre-hermine/S. contre-hus contre-indication/S. contre-indiquée/F.() contre-indiquer/a0a+() contre-interrogatoire/S. contre-jambage/S. contre-jour/S. contre-la contre-lame/S. contre-lettre/S. contre-lignage/S. contremaîtresse/F.() contremander/a0a+() contre-manifestante/F.() contre-manifestation/S. contre-manifester/a0() contremarche/S. contremarquage/S. contremarque/S. contremarquer/a0a+() contre-mesure/S. contre-mi contre-mine/S. contre-miner/a0a+() contre-mur/S. contre-murer/a0a+() contre-offensive/S. contre-pal/S. contrepartie/S. contre-pas contre-passation/S. contre-passer/a0a+() contre-pente/S. contre-perçage/S. contreperçante/F.() contrepercement/S. contre-percer/a0a+() contre-performance/S. contrepet/S. contrepèterie/S. contre-pied/S. contreplacage/S. contreplaqué/S. contreplaquée/F.() contreplaquer/a0a+() contre-plongée/S. contrepoids contre-poinçon/S. contrepoint/S. contre-pointe/S. contrepointiste/S. contrepoison/S. contre-porte/S. contre-pousser/a8a+() contre-pouvoir/S. contre-préparation/S. contre-pression/S. contre-prestation/S. contre-productive/F.() contre-profil/S. contre-profiler/a0a+() contre-projet/S. contre-propagande/S. contre-proposition/S. contre-publicité/S. contrer/a0a+() contre-rail/S. contre-ré contre-réforme/S. contre-rejet/S. contre-révolution/S. contre-révolutionnaire/S. contrescarpe/S. contre-sceller/a0a+() contreseing/S. contre-sel/S. contresens contre-si contresignataire/S. contresignature/S. contresignée/F.() contresigner/a0a+() contre-société/S. contre-sol contre-sujet/S. contre-taille/S. contretemps contre-terrasse/S. contre-terrorisme/S. contre-terroriste/S. contre-timbre/S. contre-tirer/a0a+() contre-torpilleur/S. contre-transfert/S. contretype/S. contre-ut contre-vair/S. contre-valeur/S. contrevenante/F.() contrevenir/i0i+() contrevent/S. contreventement/S. contrevérité/S. contre-visite/S. contre-voie contre-voie/S. contribuable/S. contribuer/a0() contribution/S. contributive/F.() contributrice/F.() contrister/a0a+() contrite/F.() contrition/S. contrôlabilité/S. contrôlable/S. controlatérale/W.() contrôle/S. contrôlée/F.() contrôler/a0a+() contrôleuse/F.() contrordre/S. controuvée/F.() controuver/a0a+() controversable/S. controverse/S. controversée/F.() controverser/a0a+() controversiste/S. contumace/S. contumax contusion/S. contusionnée/F.() contusionner/a0a+() conurbation/S. convaincante/F.() convaincre/wP() convaincue/F.() convalescence/S. convalescente/F.() convecteur/S. convection/S. convective/F.() convenable/S. convenablement convenance/S. convenir/i0i+() convent/S. conventicule/S. convention/S. conventionnée/F.() conventionnelle/F.() conventionnellement conventionnement/S. conventionner/a0a+() conventuelle/F.() convenue/F.() convergence/S. convergente/F.() converger/a0() conversation/S. conversationnelle/F.() converse/F.() converser/a0() conversion/S. conversive/F.() convertibilité/S. convertible/S. convertie/F.() convertir/f0f+() convertisseuse/F.() convexe/S. convexité/S. conviction/S. conviée/F.() convier/a0a+() convive/S. conviviale/W.() convivialiser/a0a+() convivialité/S. convocation/S. convoi/S. convoitée/F.() convoiter/a0a+() convoitise/S. convoler/a0() convolution/S. convolutive/F.() convolvulacée/S. convoquée/F.() convoquer/a0a+() convoyage/S. convoyée/F.() convoyer/a0a+() convoyeuse/F.() convulsée/F.() convulser/a0a+() convulsion/S. convulsionnée/F.() convulsionner/a0a+() convulsive/F.() convulsivement cookie/S. cool coolie/S. coopérante/F.() coopération/S. coopératisme/S. coopérative/F.() coopérative/S. coopératrice/F.() coopérer/c0() cooptation/S. cooptée/F.() coopter/a0a+() coordination/S. coordinatrice/F.() coordinence/S. coordonnatrice/F.() coordonnée/F.() coordonnée/S. coordonner/a0a+() copaïer/S. copain/S. copal/S. copartage/S. copartageante/F.() copeau/X. copépode/S. copermuter/a0a+() copernicienne/F.() copernicium/S. copiage/S. copie/S. copiée/F.() copier/a0a+() copieuse/F.() copieuse/W.() copieusement copilote/S. copinage/S. copiner/a0() copinerie/S. copion/S. copiste/S. copla/S. coplanaire/S. copolymère/S. copolymérisable/S. copolymérisation/S. coposséder/c0a+() copossesseur/S. coprah/S. coprésidence/S. coprésidente/F.() coprocesseur/S. coproduction/S. coproductrice/F.() coproduire/yM() coproduite/F.() coprolithe/S. coprologie/S. coprologique/S. coprophage/S. coprophagie/S. coprophile/S. coprophilie/S. copropriétaire/S. copropriété/S. copte/S. copulation/S. copulative/F.() copulatrice/F.() copuler/a0() copyleft copyright coq/S. coq-à-l'âne coquard/S. coquart/S. coque/S. coquecigrue/S. coquelet/S. coqueleux coquelicot/S. coqueluche/S. coquelucheuse/W.() coquer/a0a+() coquerico/S. coquètement coqueter/d0a+() coquetier/S. coquette/F.() coquettement coquetterie/S. coquillage/S. coquillard/S. coquillart/S. coquille/S. coquillée/F.() coquiller/a0a+() coquillette/S. coquilleuse/F.() coquillière/F.() coquine/F.() coquinement coquinerie/S. cor/S. coracle/S. corail/X. corallienne/F.() corallifère/S. coralliforme/S. coralligène/S. coralloïde/S. coran/S. coranique/S. coraniser/a0a+() corbeau/X. corbeille/S. corbillard/S. corbillat/S. corbin/S. cordage/S. corde/S. cordeau/X. cordée/F.() cordelée/F.() cordeler/d0a+() cordelette/S. cordelière/F.() corder/a0a+() corderie/S. cordiale/W.() cordialement cordialité/S. cordière/F.() cordiforme/S. cordillère/S. cordon/S. cordon-bleu cordonnée/F.() cordonner/a0a+() cordonnerie/S. cordonnet/S. cordonnière/F.() cordons-bleus coréenne/F.() coreligionnaire/S. coriace/S. coriandre/S. coricide/S. corindon/S. corinthienne/F.() cormier/S. cormoran/S. cornac/S. cornacée/S. cornaline/S. cornancher/a0a+() cornaquer/a0a+() cornard/S. corne/S. corned-beef cornée/F.() cornéenne/F.() corneille/S. cornélienne/F.() cornemuse/S. cornemuseur/S. corner/a0a+() cornette/F.() cornettiste/S. corn-flake/S. corniaud/S. corniche/S. cornichon/S. cornière/F.() cornillon/S. cornique/S. corniste/S. cornouiller/S. cornue/F.() corollaire/S. corollairement corolle/S. coron/S. coronaire/S. coronale/W.() coronarienne/F.() coronarite/S. coronarographie/S. coroner/S. coronille/S. coronographe/S. coronographie/S. corossolier/S. corozo/S. corporal/X. corporation/S. corporatisme/S. corporatiste/S. corporative/F.() corporelle/F.() corporellement corps corpulence/S. corpulente/F.() corpus corpusculaire/S. corpuscule/S. corral/S. correcte/F.() correctement correctif/S. correction/S. correctionnaliser/a0a+() correctionnelle/F.() corrective/F.() correctrice/F.() corrélable/S. corrélat/S. corrélation/S. corrélative/F.() corrélativement corrélée/F.() corréler/c0a+() correspondance/S. correspondancière/F.() correspondante/F.() correspondre/tE() corrida/S. corridor/S. corrigeable/S. corrigée/F.() corriger/a0a+() corrigible/S. corroboration/S. corroborée/F.() corroborer/a0a+() corrodée/F.() corroder/a0a+() corrompre/tA() corrompue/F.() corrosion/S. corrosive/F.() corroyage/S. corroyer/a0a+() corroyeuse/F.() corruptible/S. corruption/S. corruptrice/F.() corsage/S. corsaire/S. corsée/F.() corselet/S. corser/a0a+() corset/S. corsetée/F.() corseter/b0a+() corseterie/S. corsetière/F.() cortège/S. cortex corticale/W.() corticoïde/S. corticostéroïde/S. corticosurrénale/S. corticosurrénale/W.() cortine/S. cortisone coruscante/F.() corvéable/S. corvée/S. corvette/S. corvidé/S. coryphée/S. coryza/S. cosaque/S. cosécante/S. cosignataire/S. cosignée/F.() cosigner/a0a+() cosinus cosméticienne/F.() cosmétique/S. cosmétiquer/a0a+() cosmétologie/S. cosmétologue/S. cosmique/S. cosmiquement cosmodrome/S. cosmogonie/S. cosmogonique/S. cosmographe/S. cosmographie/S. cosmographique/S. cosmologie/S. cosmologique/S. cosmologiste/S. cosmologue/S. cosmonaute/S. cosmopolite/S. cosmopolitisme/S. cosmos cossarde/F.() cosse/S. cosser/a0() cossue/F.() costale/W.() costard/S. costaude/F.() costière/S. costume/S. costumée/F.() costumer/a0a+() costumière/F.() cosy/S. cotable/S. cotangente/S. cotation/S. cote/S. côte/S. côté/S. coteau/X. cotée/F.() côtelée/F.() côtelette/S. coter/a0a+() coterie/S. cothurne/S. cotice/S. coticée/F.() cotidale/W.() côtière/F.() cotillon/S. cotir/f0f+() cotisante/F.() cotisation/S. cotiser/a0a+() côtoiement/S. coton/S. cotonnade/S. cotonnée/F.() cotonner/a0a+() cotonnerie/S. cotonneuse/W.() cotonnière/F.() côtoyée/F.() côtoyer/a0a+() cotre/S. cotriade/S. cottage/S. cotte/S. cotylédon/S. cou/S. couac/S. couarde/F.() couardise/S. couchage/S. couchailler/a0() couchante/F.() couche/S. couche-culotte couchée/F.() coucher/S. coucher/a0a+() coucherie/S. couches-culottes couche-tard couche-tôt couchette/S. coucheuse/F.() couci-couça coucou coucou/S. coucoumelle/S. coude/S. coudée/F.() coudée/S. cou-de-pied couder/a0a+() coudoiement/S. coudoyer/a0a+() coudraie/S. coudre/xO() coudrier/S. couenne/S. couette/S. couffin/S. coufique/S. couguar/S. couic couille/S. couiller/a0a+() couillon/S. couillonnade/S. couillonner/a0a+() couillue/F.() couinement/S. couiner/a0() coulage/S. coulante/F.() coulée/F.() couler/a0a+() couleur/S. couleuvre/S. couleuvreau/X. couleuvrine/S. couleuvrinier/S. coulis coulissage/S. coulissante/F.() coulisse/S. coulissée/F.() coulissement/S. coulisser/a0a+() coulissier/S. couloir/S. coulomb/Um() coulommiers coulpe/S. coulure/S. country coup/S. coupable/S. coupablement coupage/S. coupaillée/F.() coupailler/a0a+() coupante/F.() coupe/S. coupeau/X. coupe-batterie coupe-choux coupe-cigares coupe-circuit coupe-coupe coupecoupe/S. coupé-décalé coupée/F.() coupe-faim coupe-feu coupe-file coupe-gorge coupe-jambon coupe-jarrets coupe-légumes coupelle/S. coupeller/a0a+() coupe-mottes coupe-ongles coupe-papier coupe-pâte couper/a0a+() coupe-racines couper-coller couperet/S. couperose/S. couperosée/F.() coupés-décalés coupeuse/F.() coupe-vent couplage/S. couple/S. couplée/F.() coupler/a0a+() couplet/S. coupleur/S. coupole/S. coupon/S. couponnage/S. coupon-réponse coupons-réponse coupure/S. couque/S. cour/S. courage/S. courageuse/W.() courageusement courailler/a0() couramment courant courante/F.() courbatue/F.() courbature/S. courbaturée/F.() courbaturer/a0a+() courbe/S. courbée/F.() courbement/S. courber/a0a+() courbette/S. courbure/S. courcaillet/S. courette/S. coureuse/F.() courge/S. courgette/S. courir/iE() courlieu/S. courlis couronne/S. couronnée/F.() couronnement/S. couronner/a0a+() courre courriel/S. courrielleur/S. courrière/F.() courriériste/S. courroie/S. courroucée/F.() courroucer/a0a+() courroux cours course/S. coursée/F.() courser/a0a+() coursière/F.() coursive/S. coursonne/F.() courtage/S. courtaude/F.() courtauder/a0a+() court-bouillon court-circuit court-circuitée/F.() court-circuiter/a0a+() court-courrier/S. courte/F.() courtepointe/S. courtière/F.() courtilière/S. courtine/S. courtisane/F.() courtisanerie/S. courtisée/F.() courtiser/a0a+() courtoise/F.() courtoisement courtoisie/S. courts-bouillons courts-circuits courue/F.() couscous cous-de-pied couseuse/F.() cousinage/S. cousine/F.() cousiner/a0() coussin/S. coussinet/S. cousue/F.() coût/S. coûtante/F.() couteau/X. couteauner/a0a+() couteau-scie couteaux-scies coutelas coutelière/F.() coutellerie/S. coûter/a0a+() coûteuse/W.() coûteusement coutil/S. coutoner/a0a+() coutoyer/a0a+() coutre/S. coutume/S. coutumière/F.() coutumièrement couture/S. couturée/F.() couturer/a0a+() couturière/F.() couvain/S. couvaison/S. couvée/F.() couvent/S. couver/a0a+() couvercle/S. couverte/F.() couverture/S. couveuse/S. couvoir/S. couvrante/F.() couvre-chef/S. couvre-feu/X. couvre-lit/S. couvre-pied/S. couvre-pieds couvreuse/F.() couvrir/iC() covalence/S. covalente/F.() covariance/S. covariante/F.() covecteur/S. covendeuse/F.() cover-girl/S. covoiturage/S. covolume/S. cow-boy/S. coxale/W.() coxalgie/S. coxalgique/S. coxarthrose/S. coxer/a0a+() coyau/S. coyote/S. cr crabe/S. crabier/S. crabot/S. crabotage/S. crac crac/S. crachat/S. crachée/F.() crachement/S. cracher/a0a+() cracheuse/F.() crachin/S. crachiner/a9() crachoir/S. crachotement/S. crachoter/a0() crachouiller/a0a+() crachouillis crack/S. cracker/S. cracking/S. cracra crado/S. craft craie/S. craignos crailler/a0() craindre/wO() crainte/F.() crainte/S. craintive/F.() craintivement crambé/S. cramée/F.() cramer/a0a+() cramique/S. cramoisie/F.() crampe/S. crampillon/S. crampon/S. cramponnée/F.() cramponnement/S. cramponner/a0a+() cramponnet/S. crampser/a0() cramser/a0() cran/S. crâne/S. crânement craner/a0a+() crâner/a0() crânerie/S. crâneuse/F.() crânienne/F.() crâniologie craniologie/S. crâniologique/S. crantée/F.() cranter/a0a+() crapahuter/a0() crapaud/S. crapaudine/S. crapaüter/a0() crapette/S. crapoter/a0() crapoteuse/W.() crapouillot/S. crapoussine/F.() crapule/S. crapuler/a0() crapulerie/S. crapuleuse/W.() crapuleusement craquage/S. craquante/F.() craquée/F.() craquelage/S. craquelée/F.() craquèlement/S. craqueler/d0a+() craquelure/S. craquement/S. craquer/a0a+() craquètement/S. craqueter/d0() craqueur/S. crase/S. crash/S. crasher/a0a+() crassane/S. crasse/S. crasser/a0a+() crasseuse/W.() crassier/S. crassulacée/S. cratère/S. craterelle/S. cratériforme/S. cravache/S. cravachée/F.() cravacher/a0a+() cravate/S. cravatée/F.() cravater/a0a+() crave/S. crawl crawlée/F.() crawler/a0() crawleuse/F.() crayeuse/W.() crayon/S. crayonnage/S. crayonné/S. crayonner/a0a+() crayonneuse/W.() créance/S. créancière/F.() créatine/S. créatinine/S. création/S. créationnisme/S. créationniste/S. créative/F.() créativité/S. créatrice/F.() créature/S. crécelle/S. crécerelle/S. crèche/S. crécher/c0() crédence/S. crédibiliser/a0a+() crédibilité/S. crédible/S. crédit/S. crédit-bail créditée/F.() créditer/a0a+() créditiste/S. créditrice/F.() crédits-bails credo crédule/S. crédulité/S. créée/F.() créer/a0a+() crémaillère/S. crémation/S. crématoire/S. crématorium/S. crème/S. crémée/F.() crémer/c0() crèmerie/S. crémeuse/W.() crémière/F.() crémone/S. crénage/S. créneau/X. crénelage/S. crénelée/F.() créneler/aY() crénelure/S. créner/c0a+() crénom crénothérapie/S. créole/S. créolisation/S. créoliser/a0a+() créolisme/S. créoliste/S. créolité/S. créosote/S. créosoter/a0a+() crêpage/S. crêpe/S. crêpée/F.() crêper/a0a+() crêperie/S. crépie/F.() crêpière/F.() crépin/S. crépine/S. crépinette/S. crépir/f0f+() crépissage/S. crépisseuse/F.() crépitante/F.() crépitation/S. crépitement/S. crépiter/a0() crépon/S. crépue/F.() crépusculaire/S. crépuscule/S. crescendo crescendo/S. cressicultrice/F.() cressiculture/S. cresson/S. cressonnière/S. crétacé/S. crétacée/F.() crête/S. crêtée/F.() crételer/aZ() crétine/F.() crétinerie/S. crétinisation/S. crétiniser/a0a+() crétinisme/S. crétoise/F.() cretonne/S. creusage/S. creuse/W.() creusée/F.() creusement/S. creuser/a0a+() creuset/S. crevaison/S. crevante/F.() crevarde/F.() crevasse/S. crevassée/F.() crevasser/a0a+() crève/S. crève-cœur crevée/F.() crève-la-faim crever/b0a+() crève-tonneau crevette/S. crève-vessie crevure/S. cri/S. criaillement/S. criailler/a0() criaillerie/S. criante/F.() criarde/F.() criblage/S. crible/S. criblée/F.() cribler/a0a+() cribleuse/F.() cric/S. cricket/S. cricri/S. criée/F.() criée/S. crier/a0a+() crieuse/F.() crime/S. criminalisée/F.() criminaliser/a0a+() criminaliste/S. criminalistique/S. criminalité/S. criminelle/F.() criminellement criminologie/S. criminologique/S. criminologiste/S. criminologue/S. crin/S. crinière/S. crinoïde/S. crinoline/S. crique/S. criquer/a0a+() criquet/S. crise/S. criser/a0() crispante/F.() crispation/S. crispée/F.() crisper/a0a+() crissement/S. crisser/a0() cristal/X. cristallerie/S. cristallière/F.() cristalline/F.() cristallinité/S. cristallisable/S. cristallisante/F.() cristallisation/S. cristallisée/F.() cristalliser/a0a+() cristallisoir/S. cristallochimie/S. cristallogène/S. cristallogenèse/S. cristallographe/S. cristallographie/S. cristallographique/S. critère/S. critérium/S. criticailler/a0a+() criticisme/S. criticité/S. critiquable/S. critique/S. critiquée/F.() critiquement critiquer/a0a+() croassante/F.() croassement/S. croasser/a0() croate/S. croc/S. croc-en-jambe croche/S. croche-patte/S. croche-pied/S. crocher/a0a+() crochet/S. crochetage/S. crochetée/F.() crocheter/b0a+() crocheteur/S. crochue/F.() crocodile/S. crocs-en-jambe crocus croire/xA() croisade/S. croisée/F.() croisement/S. croiser/a0a+() croisetée/F.() croisette/S. croiseur/S. croisière/S. croisillon/S. croissance/S. croissant/S. croissante/F.() croissantée/F.() croissantière/F.() croisure/S. croît/S. croître/wTwU() croix crolle/S. crollée/F.() croller/a0() cromlech/S. crônir crooner/S. croquante/F.() croquée/F.() croque-madame croquemitaine/S. croque-monsieur croque-mort/S. croque-note/S. croquer/a0a+() croquette/F.() croqueuse/F.() croquis cross cross-country/S. crosse/S. crossée/F.() crosser/a0a+() crotale/S. crotte/S. crottée/F.() crotter/a0a+() crottin/S. crouillat/S. crouille/S. croulante/F.() crouler/a0() crounir croupe/S. croupie/F.() croupière/F.() croupion/S. croupionner/a0() croupir/f0() croupissante/F.() croupissement/S. croustade/S. croustillante/F.() croustiller/a0() croûte/S. croûter/a0a+() croûteuse/W.() croûton/S. croûtonner/a0a+() croyable/S. croyance/S. croyante/F.() cruauté/S. cruche/S. cruchon/S. cruciale/W.() crucifère/S. crucifiée/F.() crucifiement/S. crucifier/a0a+() crucifix crucifixion/S. cruciforme/S. cruciverbiste/S. crudité/S. crue/F.() cruelle/F.() cruellement crumble/S. crûment crustacé/S. cruzeiro/S. crwth/S. cryochimie/S. cryogène/S. cryogénie/S. cryogénique/S. cryogénisée/F.() cryolite/S. cryolithe/S. cryologie/S. cryométrie/S. cryophysique/S. cryoscopie/S. cryostat/S. cryotempérature/S. cryothérapie/S. cryptage/S. cryptanalyse/S. crypte/S. cryptée/F.() crypter/a0a+() cryptique/S. cryptogame/S. cryptogamique/S. cryptogramme/S. cryptographe/S. cryptographie/S. cryptographiée/F.() cryptographier/a0a+() cryptographique/S. cryptologie/S. cryptologique/S. cryptologue/S. cryptozoologie/S. cubage/S. cubaine/F.() cube/S. cuber/a0a+() cuberdon/S. cubique/S. cubisme/S. cubiste/S. cubitus cucul cucurbitacée/S. cucurbite/S. cucurbitin/S. cueillette/S. cueilleuse/F.() cueillie/F.() cueillir/iR() cuesta/S. cui-cui cui-cui cuider/S. cuiller/S. cuillère/S. cuillerée/S. cuir/S. cuirasse/S. cuirassé/S. cuirassée/F.() cuirassement/S. cuirasser/a0a+() cuirassier/S. cuire/yL() cuisante/F.() cuiseuse/F.() cuisine/S. cuisinée/F.() cuisiner/a0a+() cuisinette/S. cuisinière/F.() cuisiniste/S. cuissage cuissarde/F.() cuisse/S. cuisseau/X. cuisson/S. cuissot/S. cuistax cuistot/S. cuistre/S. cuistrerie/S. cuite/F.() cuite/S. cuiter/a0a+() cuivre/S. cuivrée/F.() cuivrer/a0a+() cuivrerie/S. cuivreuse/W.() cuivrique/S. cul/S. culbutage/S. culbute/S. culbutée/F.() culbuter/a0a+() culbuteur/S. cul-de-basse-fosse cul-de-jatte cul-de-lampe cul-de-sac culée/S. culer/a0a+() culeron/S. culex culière/S. culinaire/S. culminante/F.() culmination/S. culminer/a0() culot/S. culottage/S. culotte/S. culottée/F.() culotter/a0a+() culottière/F.() culpabilisante/F.() culpabilisation/S. culpabilisée/F.() culpabiliser/a0a+() culpabilité/S. culs-de-basse-fosse culs-de-jatte culs-de-lampe culs-de-sac culte/S. cultisme/S. cultivable/S. cultivar/S. cultivatrice/F.() cultivée/F.() cultiver/a0a+() cultuelle/F.() culturale/W.() culturalisme/S. culture/S. culturelle/F.() culturellement culturisme/S. culturiste/S. cumin/S. cumul/S. cumulable/S. cumularde/F.() cumulative/F.() cumulativement cumulatrice/F.() cumulée/F.() cumuler/a0a+() cumulet/S. cumulonimbus cumulostratus cumulo-volcan/S. cumulus cunéiforme/S. cuniculicultrice/F.() cuniculiculture/S. cunicultrice/F.() cuniculture/S. cunnilinctus cunnilingus cupide/S. cupidement cupidité/S. cupidon/S. cupressinée/S. cuprifère/S. cuprique/S. cuprite/S. cupule/S. curable/S. curaçao curage/S. curaillon/S. curare/S. curarisante/F.() curarisation/S. curatelle/S. curative/F.() curatrice/F.() curcuma/S. cure/S. cure-dents curée/S. cure-ongles cure-oreille/S. cure-pipe/S. curer/a0a+() curetage/S. cureter/d0a+() cureton/S. curettage/S. curette/S. curiale/W.() curie/S. curie/Um() curiethérapie/S. curieuse/W.() curieusement curiosité/S. curiste/S. curium/S. curling/S. curriculum/S. curry/S. curseur/S. cursive/F.() cursus curule/S. curviligne/S. curvimètre/S. cuscutacée/S. cuscute/S. cuspide/S. custode/S. cutanée/F.() cut-back cuter cuti cuticule/S. cutine/S. cuti-réaction/S. cutter/S. cuvage/S. cuvaison/S. cuve/S. cuveau/X. cuvelage/S. cuveler/d0a+() cuvellement/S. cuver/a0a+() cuverie/S. cuvette/S. cuvier/S. cuviste/S. cyan/S. cyanamide/S. cyanhydrique/S. cyanobactérie/S. cyanogène/S. cyanophycée/S. cyanose/S. cyanosée/F.() cyanoser/a0a+() cyanuration/S. cyanure/S. cybercafé/S. cybercrime/S. cybercriminalité/S. cybercriminelle/F.() cyberdélinquance/S. cyberdélinquante/F.() cyberdépendance/S. cyberespace/S. cybermonde/S. cybernéticienne/F.() cybernétique/S. cybersquatteuse/F.() cyborg/S. cycas cyclable/S. cyclamen/S. cyclane/S. cycle/S. cyclicité/S. cyclique/S. cycliquement cyclisation/S. cyclisme/S. cycliste/S. cycloalcane/S. cyclo-cross cycloïdale/W.() cycloïde/S. cyclomoteur/S. cyclomotoriste/S. cyclonale/W.() cyclone/S. cyclonique/S. cyclope/S. cyclopéenne/F.() cyclo-pousse cyclorameur/S. cyclostome/S. cyclothymie/S. cyclothymique/S. cyclotomie/S. cyclotomique/S. cyclotourisme cyclotouriste/S. cyclotron/S. cygne/S. cylindrage/S. cylindraxe/S. cylindre/S. cylindrée/F.() cylindrer/a0a+() cylindreuse/F.() cylindrique/S. cymbalaire/S. cymbale/S. cymbalière/F.() cymbaliste/S. cymbalum/S. cyme/S. cynégétique/S. cynips cynique/S. cyniquement cynisme/S. cynocéphale/S. cynodrome/S. cynoglosse/S. cynophile/S. cynorhodon/S. cyon/S. cypéracée/S. cyphose/S. cyprès cyprière/S. cyprin/S. cyprine/S. cypriote/S. cyrien/S. cyrillique/S. cystectomie/S. cystéine/S. cysticerque/S. cystine/S. cystique/S. cystite/S. cystographie/S. cystoscope/S. cystoscopie/S. cystotomie/S. cytise/S. cytochrome/S. cytodiagnostic/S. cytogénéticienne/F.() cytogénétique/S. cytologie/S. cytologique/S. cytologiste/S. cytolyse/S. cytomètre/S. cytométrie/S. cytométrique/S. cytopathologie/S. cytopathologique/S. cytopathologiste/S. cytoplasme/S. cytoplasmique/S. cytosine/S. cytosol/S. cytosquelette/S. czimbalum/S. d d/||-- dB/||-- d'Estaing dactyle/S. dactylique/S. dactylo/S. dactylographe/S. dactylographie/S. dactylographiée/F.() dactylographier/a0a+() dactylographique/S. dactylologie/S. dactyloscopie/S. dada/S. dadais dadaïsme/S. dadoter/a0a+() d'afillée dague/S. daguer/a0a+() daguerréotype/S. daguet/S. dahir/S. dahlia/S. dahoméenne/F.() daigner/a0a+() daim/S. daïmio/S. daine/S. dais dalaï-lama/S. daleau/S. dalembertienne/F.() dallage/S. dalle/S. dallée/F.() daller/a0a+() dalleuse/F.() dalmate/S. dalmatienne/F.() dalmatique/S. dalot/S. dalton/Um() daltonienne/F.() daltonisme/S. dam damage/S. damalisque/S. daman/S. damasquinage/S. damasquinée/F.() damasquiner/a0a+() damasquinerie/S. damasquineuse/F.() damasquinure/S. damassée/F.() damasser/a0a+() damassine/S. damassure/S. dame/S. dame-jeanne damer/a0a+() dames-jeannes dameuse/F.() damier/S. damnable/S. damnation/S. damnée/F.() damner/a0a+() damoiseau/X. damoiselle/S. dan/S. danaïde/S. dancing/S. dandin/S. dandinement/S. dandiner/a0a+() dandinette/S. dandy/S. dandysme/S. danger/S. dangereuse/W.() dangereusement dangerosité/S. danienne/F.() danoise/F.() dans dansable/S. dansante/F.() danse/S. danser/a0a+() danseuse/F.() dansoter/a0() dantesque/S. danubienne/F.() daphné/S. daphnie/S. daraise/S. darbouka/S. darce/S. dard/S. darder/a0a+() dare-dare dariole/S. darique/S. darmstadtium/S. darne/S. d'arrache-pied darse/S. dartois dartre/S. dartreuse/W.() dartrose/S. darwinienne/F.() darwinisme/S. darwiniste/S. dast/||-- dasyure/S. datable/S. datage/S. datagramme/S. dataire/S. datation/S. datcha/S. date/S. datée/F.() dater/a0a+() daterie/S. dateuse/F.() dation/S. dative/F.() datte/S. dattier/S. datura/S. daube/S. daubée/F.() dauber/a0a+() daubeuse/F.() daubière/S. dauphin/S. dauphine/F.() dauphinelle/S. dauphinoise/F.() daurade/S. davantage davier/S. dazibao/S. de/S. dé/S. déactiver/a0a+() deal/S. dealer/S. dealer/a0a+() déambulateur/S. déambulation/S. déambulatoire/S. déambuler/a0a+() débâchage/S. débâchée/F.() débâcher/a0a+() débâcle/S. débâclement/S. débâcler/a0a+() débagouler/a0a+() débâillonner/a0a+() déballage/S. déballastage/S. déballée/F.() déballer/a0a+() déballonner/a0a+() débalourder/a0a+() débanalisation/S. débanaliser/a0a+() débandade/S. débandage/S. débander/a0a+() débaptisée/F.() débaptiser/a0a+() débarbante/F.() débarbe/S. débarboter/a0a+() débarbouillage/S. débarbouillée/F.() débarbouiller/a0a+() débarbouillette/S. débarcadère/S. débardage/S. débarder/a0a+() débardeuse/F.() débarquée/F.() débarquement/S. débarquer/a0a+() débarrassée/F.() débarrasser/a0a+() débarrasseuse/F.() débarrer/a0a+() débâter/a0a+() débâtir/f0f+() débattement/S. débatteuse/F.() débattre/uA() débattue/F.() débauchage/S. débauche/S. débauchée/F.() débaucher/a0a+() débecqueter/d0a+() débecter/a0a+() débenzolage/S. débet/S. débile/S. débilement débilitante/F.() débilitation/S. débilité/S. débiliter/a0a+() débillarder/a0a+() débine/S. débiner/a0a+() débit/S. débitable/S. débitage/S. débitante/F.() débitée/F.() débiter/a0a+() débiteuse/S. débitmètre/S. débitrice/F.() déblai/S. déblaiement/S. déblatérer/c0() déblayage/S. déblayée/F.() déblayer/a0a+() débleuir/f0f+() déblocage/S. débloquée/F.() débloquer/a0a+() débobiner/a0a+() débogage/S. déboguée/F.() déboguer/a0a+() débogueur/S. déboire/S. déboisage/S. déboisée/F.() déboisement/S. déboiser/a0a+() déboîtée/F.() déboîtement/S. déboîter/a0a+() débonder/a0a+() débonnaire/S. débonnairement débonnaireté/S. débord/S. débordante/F.() débordée/F.() débordement/S. déborder/a0a+() débosselage/S. débosseler/d0a+() débosseleuse/F.() débotter/a0a+() débouchage/S. débouchée/F.() débouchement/S. déboucher/a0a+() déboucheur/S. débouchoir/S. débouclée/F.() déboucler/a0a+() débouder/a0a+() débouilli/S. débouillir/iQ() débouler/a0a+() déboulonnage/S. déboulonnée/F.() déboulonnement/S. déboulonner/a0a+() débouquement/S. débouquer/a0() débourbage/S. débourber/a0a+() débourbeur/S. débourgeoisée/F.() débourrage/S. débourrement/S. débourrer/a0a+() débourreuse/F.() débours déboursement/S. débourser/a0a+() déboussolée/F.() déboussoler/a0a+() debout déboutée/F.() déboutement/S. débouter/a0a+() déboutonnage/S. déboutonnée/F.() déboutonner/a0a+() débraguetter/a0a+() débraillée/F.() débraillement/S. débrailler/a0a+() débranchée/F.() débranchement/S. débrancher/a0a+() débrayage/S. débrayer/a0a+() débridée/F.() débridement/S. débrider/a0a+() débriefer/a0a+() débriefing/S. débris débrochage/S. débrocher/a0a+() débrôler/a0a+() débrouillage/S. débrouillarde/F.() débrouillardise/S. débrouillement/S. débrouiller/a0a+() débroussaillage/S. débroussaillée/F.() débroussaillement/S. débroussailler/a0a+() débroussailleuse/F.() débrousser/a0a+() débucher/a0a+() débudgétisation/S. débudgétiser/a0a+() débugger/a0a+() débuller/a0a+() débureaucratiser/a0a+() débusquée/F.() débusquement/S. débusquer/a0a+() début/S. débutante/F.() débuter/a0a+() déc deçà déca/S. décachetée/F.() décacheter/d0a+() décadaire/S. décade/S. décadenassée/F.() décadenasser/a0a+() décadence/S. décadente/F.() décadi/S. décadrer/a0a+() décaèdre/S. décaféinée/F.() décaféiner/a0a+() décagonale/W.() décagone/S. décaissement/S. décaisser/a0a+() décalage/S. décalaminage/S. décalaminée/F.() décalaminer/a0a+() décalcariser/a0a+() décalcification/S. décalcifiée/F.() décalcifier/a0a+() décalcomanie/S. décalée/F.() décaler/a0a+() décalogie/S. décalogue/S. décalottée/F.() décalotter/a0a+() décalquage/S. décalquée/F.() décalquer/a0a+() décalqueuse/F.() décalvante/F.() décamètre/S. décamper/a0() décan/S. décanale/W.() décanat/S. décaniller/a0() décantage/S. décantation/S. décantée/F.() décanter/a0a+() décanteuse/F.() décapage/S. décapante/F.() décapeler/d0a+() décaper/a0a+() décapeuse/F.() décapitaliser/a0a+() décapitation/S. décapitée/F.() décapiter/a0a+() décapode/S. décapotable/S. décapoter/a0a+() décapsulage/S. décapsulation/S. décapsulée/F.() décapsuler/a0a+() décapsuleur/S. décapuchonner/a0a+() décarburation/S. décarburer/a0a+() décarcassée/F.() décarcasser/a0a+() décarpiller/a0a+() décarreler/d0a+() décarrer/a0() décartellisation/S. décartonner/a0a+() décastère/S. décasyllabe/S. décasyllabique/S. décathlon/S. décathlonienne/F.() décatie/F.() décatir/f0f+() décauser/a0a+() decauville/S. décavaillonner/a0a+() décavée/F.() décaver/a0a+() décédée/F.() décéder/c0() décelable/S. décelée/F.() décèlement/S. déceler/b0a+() décélération/S. décélérée/F.() décélérer/c0() décembre/S. décemment décemvir/S. décemvirale/W.() décemvirat/S. décemviri décence/S. décennale/W.() décennie/S. décente/F.() décentralisation/S. décentralisatrice/F.() décentralisée/F.() décentraliser/a0a+() décentrée/F.() décentrer/a0a+() déception/S. décercler/a0a+() décérébrante/F.() décérébrée/F.() décérébrer/c0a+() décernée/F.() décerner/a0a+() décervelage/S. décervelée/F.() décerveler/d0a+() décès décesser/a0a+() décevante/F.() décevoir/pK() déchagriner/a0a+() déchaînée/F.() déchaînement/S. déchaîner/a0a+() déchanter/a0() déchaper/a0a+() déchaperonner/a0a+() décharge/S. déchargée/F.() déchargement/S. déchargeoir/S. décharger/a0a+() déchargeuse/F.() décharnée/F.() décharnement/S. décharner/a0a+() déchaumage/S. déchaumer/a0a+() déchaumeuse/F.() déchaussage/S. déchaussée/F.() déchaussement/S. déchausser/a0a+() dèche/S. déchéance/S. décher/c0a+() déchet/S. déchetterie/S. déchevelante/F.() déchevêtrer/a0a+() décheviller/a0a+() déchiffonner/a0a+() déchiffrable/S. déchiffrage/S. déchiffrée/F.() déchiffrement/S. déchiffrer/a0a+() déchiffreuse/F.() déchiquetage/S. déchiquetée/F.() déchiqueter/d0a+() déchiqueteuse/F.() déchiqueture/S. déchirage/S. déchirante/F.() déchirée/F.() déchirement/S. déchirer/a0a+() déchirure/S. déchlorurer/a0a+() déchoir/pX() déchristianisation/S. déchristianisée/F.() déchristianiser/a0a+() déchromer/a0a+() déchronologie/S. déchue/F.() déci/S. décibel/S. décidabilité/S. décidable/S. décidée/F.() décidément décider/a0a+() décideuse/F.() déciduale/S. décigrade/S. décilage/S. décile/S. décimale/W.() décimalisation/S. décimaliser/a0a+() décimalité/S. décimateur/S. décimation/S. décime/S. décimée/F.() décimer/a0a+() décimétrique/S. decimo décintrage/S. décintrement/S. décintrer/a0a+() décision/S. décisionnaire/S. décisionnelle/F.() décisive/F.() décisivement décisoire/S. déclamation/S. déclamatoire/S. déclamatrice/F.() déclamée/F.() déclamer/a0a+() déclarante/F.() déclaration/S. déclarative/F.() déclaratoire/S. déclarée/F.() déclarer/a0a+() déclassée/F.() déclassement/S. déclasser/a0a+() déclaveter/d0a+() déclenchable/S. déclenchée/F.() déclenchement/S. déclencher/a0a+() déclencheur/S. décléricaliser/a0a+() déclic/S. déclin/S. déclinable/S. déclinaison/S. déclinante/F.() déclinatoire/S. déclinée/F.() décliner/a0a+() décliquetage/S. décliqueter/d0a+() déclive/S. déclivité/S. décloisonnée/F.() décloisonnement/S. décloisonner/a0a+() déclore/rA() déclose/F.() déclouer/a0a+() décochage/S. décocher/a0a+() décoction/S. décodage/S. décodée/F.() décoder/a0a+() décodeuse/F.() décoffrage/S. décoffrer/a0a+() décohabitation/S. décohérence/S. décoiffage/S. décoiffée/F.() décoiffement/S. décoiffer/a0a+() décoincer/a0a+() décolérer/c0() décollage/S. décollation/S. décollée/F.() décollement/S. décoller/a0a+() décolletage/S. décolletée/F.() décolleter/d0a+() décolleteuse/F.() décolonisation/S. décolonisée/F.() décoloniser/a0a+() décolorante/F.() décoloration/S. décolorée/F.() décolorer/a0a+() décombres décommandée/F.() décommander/a0a+() décommettre décommuniser/a0a+() décompacter/a0a+() décompensation/S. décompensée/F.() décompenser/a0() décompilation/S. décomplexée/F.() décomplexer/a0a+() décomposable/S. décomposée/F.() décomposer/a0a+() décomposition/S. décompressée/F.() décompresser/a0a+() décompression/S. décomprimée/F.() décomprimer/a0a+() décomptage/S. décompte/S. décomptée/F.() décompter/a0a+() décompteuse/F.() déconcentration/S. déconcentrée/F.() déconcentrer/a0a+() déconcertante/F.() déconcertée/F.() déconcerter/a0a+() déconcubiner déconditionnée/F.() déconditionnement/S. déconditionner/a0a+() déconfire/yV() déconfite/F.() déconfiture/S. décongélation/S. décongelée/F.() décongeler/b0a+() décongestion/S. décongestionnée/F.() décongestionnement/S. décongestionner/a0a+() décongestive/F.() déconnectée/F.() déconnecter/a0a+() déconner/a0() déconneuse/F.() déconnexion/S. déconseillée/F.() déconseiller/a0a+() déconsidération/S. déconsidérée/F.() déconsidérer/c0a+() déconsigner/a0a+() déconstiper/a0a+() déconstruction/S. déconstruire/yM() déconstruisante/F.() déconstruite/F.() décontamination/S. décontaminée/F.() décontaminer/a0a+() décontamineur/S. décontenancée/F.() décontenancer/a0a+() décontractante/F.() décontractée/F.() décontracter/a0a+() décontraction/S. déconventionnement/S. déconvenue/S. déconversion/S. décor/S. décoration/S. décorative/F.() décorativement décoratrice/F.() décorcer/a0a+() décorder/a0a+() décorée/F.() décorer/a0a+() décorner/a0a+() décorporation/S. décorrélation/S. décorticage/S. décortication/S. décortiquée/F.() décortiquer/a0a+() décortiqueuse/F.() décorum/S. décote/S. décotée/F.() découchage/S. découcher/a0() découdre/xO() découler/a0() découpage/S. découpe/S. découpée/F.() découper/a0a+() découpeuse/F.() découplage/S. découplée/F.() découpler/a0a+() découpoir/S. découpure/S. décourageante/F.() découragée/F.() découragement/S. décourager/a0a+() découronnée/F.() découronnement/S. découronner/a0a+() décours décousue/F.() décousure/S. découverte/F.() découvrement/S. découvreuse/F.() découvrir/iC() décrambuter décramponner/a0a+() décrapouiller décrassage/S. décrassée/F.() décrassement/S. décrasser/a0a+() décrasseur/S. décréditer/a0a+() décrément/S. décrémentation/S. décrémentée/F.() décrémenter/a0a+() décrêpage/S. décrêpée/F.() décrêper/a0a+() décrépie/F.() décrépir/f0f+() décrépissage/S. décrépiter/a0a+() décrépitude/S. decrescendo decrescendo/S. décret/S. décrétée/F.() décréter/c0a+() décret-loi décrets-lois décreusage/S. décreuser/a0a+() décri/S. décriée/F.() décrier/a0a+() décriminaliser/a0a+() décrire/y1() décrispation/S. décrisper/a0a+() décrite/F.() décrochage/S. décrochée/F.() décrochement/S. décrocher/a0a+() décrocheuse/F.() décroiser/a0a+() décroissance/S. décroissante/F.() décroissement/S. décroît/S. décroître/wT() décrottage/S. décrotter/a0a+() décrotteur/S. décrottoir/S. décroûter/a0a+() décruage/S. décrue/S. décruer/a0a+() décrusage/S. décruser/a0a+() décryptage/S. décryptée/F.() décrypter/a0a+() décubitus déçue/F.() décuire décuivrer/a0a+() déculasser/a0a+() déculotter/a0a+() déculpabiliser/a0a+() décuplée/F.() décuplement/S. décupler/a0a+() décurion/S. décurrente/F.() décuscuteuse/S. décussée/F.() décuvage/S. décuvaison/S. décuver/a0a+() dédaignable/S. dédaignée/F.() dédaigner/a0a+() dédaigneuse/W.() dédaigneusement dédain/S. dédale/S. dédaléenne/F.() dedans dedans dédicace/S. dédicacée/F.() dédicacer/a0a+() dédicataire/S. dédicatoire/S. dédiée/F.() dédier/a0a+() dédire/yD() dédommagée/F.() dédommagement/S. dédommager/a0a+() dédorage/S. dédorée/F.() dédorer/a0a+() dédouanée/F.() dédouanement/S. dédouaner/a0a+() dédoublage/S. dédoublement/S. dédoubler/a0a+() dédoubleuse/F.() dédramatisation/S. dédramatiser/a0a+() déductibilité/S. déductible/S. déduction/S. déductive/F.() déduire/yM() déduite/F.() déesse/S. défaillance/S. défaillante/F.() défaillir/iS() défaire/wD() défaite/F.() défaitisme/S. défaitiste/S. défalcation/S. défalquer/a0a+() défardée/F.() défarder/a0a+() défarguer défatiguer/a0a+() défaufiler/a0a+() défaussée/F.() défausser/a0a+() défaut/S. défaveur/S. défavorable/S. défavorablement défavorisée/F.() défavoriser/a0a+() défécation/S. défection/S. défective/F.() défectueuse/W.() défectueusement défectuosité/S. défendable/S. défenderesse/F.() défendre/tA() défendue/F.() défenestration/S. défenestrée/F.() défenestrer/a0a+() défens défense/S. défenseure/F.() défensive/F.() défensivement déféquée/F.() déféquer/c0a+() déférée/F.() déférence/S. déférente/F.() déférer/c0a+() déferlante/F.() déferlée/F.() déferlement/S. déferler/a0a+() déferrage/S. déferrée/F.() déferrement/S. déferrer/a0a+() déferriser/a0a+() déferrure/S. défervescence/S. défet/S. défeuillaison/S. défeuiller/a0a+() défeutrer/a0a+() défi/S. défiance/S. défiante/F.() défibrage/S. défibrer/a0a+() défibreuse/F.() défibrillateur/S. défibrillation/S. déficeler/d0a+() déficher/a0a+() déficience/S. déficiente/F.() déficit/S. déficitaire/S. défiée/F.() défier/a0a+() défiger/a0a+() défiguration/S. défigurée/F.() défigurement/S. défigurer/a0a+() défilade/S. défilage/S. défilante/F.() défilateur/S. défilé/S. défilée/F.() défilement/S. défiler/a0a+() défileuse/F.() définie/F.() définir/f0f+() définissable/S. définissante/F.() définiteur/S. définition/S. définitionnelle/F.() définitive/F.() définitivement définitoire/S. défiscalisation/S. défiscalisée/F.() défiscaliser/a0a+() déflagrante/F.() déflagrateur/S. déflagration/S. déflagrer/a0() déflaquer/a0() déflation/S. déflationniste/S. défléchie/F.() défléchir/f0f+() déflecteur/S. défleuraison/S. défleurie/F.() défleurir/f0f+() déflexion/S. déflocage/S. défloquer/a0a+() défloraison/S. défloration/S. déflorée/F.() déflorer/a0a+() défluent/S. défluviation/S. défoliante/F.() défoliation/S. défoliée/F.() défolier/a0a+() défonçage/S. défonce/S. défoncée/F.() défoncement/S. défoncer/a0a+() défonceuse/S. déforcer/a0a+() déforestation/S. déformable/S. déformage/S. déformante/F.() déformation/S. déformatrice/F.() déformée/F.() déformer/a0a+() défoulement/S. défouler/a0a+() défouloir/S. défourailler/a0a+() défournage/S. défournement/S. défourner/a0a+() défourneuse/F.() défourrer/a0a+() défragmentation/S. défragmenter/a0a+() défraîchie/F.() défraîchir/f0f+() défraiement/S. défranchie/F.() défranciser/a0a+() défrayer/a0a+() défretter/a0a+() défrichage/S. défrichée/F.() défrichement/S. défricher/a0a+() défricheuse/F.() défringuer/a0a+() défriper/a0a+() défrisée/F.() défrisement/S. défriser/a0a+() défroissable/S. défroissée/F.() défroisser/a0a+() défroncer/a0a+() défroque/S. défroquée/F.() défroquer/a0a+() défruiter/a0a+() défrusquer défunte/F.() dégagée/F.() dégagement/S. dégager/a0a+() dégaine/S. dégainée/F.() dégainer/a0a+() dégalonner/a0a+() dégantée/F.() déganter/a0a+() dégarnie/F.() dégarnir/f0f+() dégasolinage/S. dégasoliner/a0a+() dégât/S. dégauchie/F.() dégauchir/f0f+() dégauchissage/S. dégauchissement/S. dégauchisseuse/S. dégazage/S. dégazer/a0a+() dégazolinage/S. dégazoliner/a0a+() dégazonnage/S. dégazonnement/S. dégazonner/a0a+() dégel/S. dégelée/F.() dégeler/b0a+() dégénérative/F.() dégénérée/F.() dégénérer/c0a+() dégénérescence/S. dégénérescente/F.() dégermer/a0a+() dégingandée/F.() dégingander/a0a+() dégîter/a0a+() dégivrage/S. dégivrée/F.() dégivrer/a0a+() dégivreur/S. déglacée/F.() déglacement/S. déglacer/a0a+() déglaciation/S. déglinguée/F.() déglinguer/a0a+() dégluer/a0a+() déglutie/F.() déglutination/S. déglutir/f0f+() déglutition/S. dégobiller/a0a+() dégoiser/a0a+() dégommage/S. dégommée/F.() dégommer/a0a+() dégondée/F.() dégonder/a0a+() dégonflage/S. dégonflée/F.() dégonflement/S. dégonfler/a0a+() dégorgée/F.() dégorgement/S. dégorgeoir/S. dégorger/a0a+() dégoter/a0a+() dégoudronner/a0a+() dégoulinade/S. dégoulinante/F.() dégoulinement/S. dégouliner/a0() dégoupillée/F.() dégoupiller/a0a+() dégourdie/F.() dégourdir/f0f+() dégourdissante/F.() dégourdissement/S. dégourer dégourrer dégoût/S. dégoûtamment dégoûtante/F.() dégoûtation/S. dégoûtée/F.() dégoûter/a0a+() dégoutter/a0() dégradable/S. dégradante/F.() dégradateur/S. dégradation/S. dégradée/F.() dégrader/a0a+() dégrafée/F.() dégrafer/a0a+() dégraissage/S. dégraissante/F.() dégraissée/F.() dégraisser/a0a+() dégraisseuse/F.() dégravelante/F.() dégravoyer/a0a+() degré/S. dégréer/a0a+() dégréner/c0a+() dégressive/F.() dégressivité/S. dégrèvement/S. dégrever/b0a+() dégriffée/F.() dégringolade/S. dégringoler/a0a+() dégripper/a0a+() dégrisée/F.() dégrisement/S. dégriser/a0a+() dégrosser/a0a+() dégrossie/F.() dégrossir/f0f+() dégrossissage/S. dégrossissement/S. dégrossisseuse/F.() dégrouiller/a0a+() dégroupage/S. dégroupement/S. dégrouper/a0a+() déguenillée/F.() déguerpir/f0f+() dégueulasse/S. dégueulassée/F.() dégueulasser/a0a+() dégueulasserie/S. dégueuler/a0a+() dégueulis déguisée/F.() déguisement/S. déguiser/a0a+() dégurgitée/F.() dégurgiter/a0a+() dégustation/S. dégustatrice/F.() dégustée/F.() déguster/a0a+() déhâler déhaler/a0a+() déhanchée/F.() déhanchement/S. déhancher/a0a+() déharder/a0a+() déharnachée/F.() déharnacher/a0a+() déhiscence/S. déhiscente/F.() dehors dehors déhotter/a0a+() déhouiller/a0a+() dei déicide/S. déictique/S. déification/S. déifiée/F.() déifier/a0a+() déisme déiste/S. déité/S. déjà déjantée/F.() déjanter/a0a+() déjauger/a0() déjaunir/f0f+() déjection/S. déjetée/F.() déjeter/d0a+() déjeuner/S. déjeuner/a0() déjouer/a0a+() déjucher/a0a+() déjuger/a0a+() delà délabialiser/a0a+() délabrée/F.() délabrement/S. délabrer/a0a+() délabyrinther/a0a+() délacée/F.() délacer/a0a+() délai/S. délainage/S. délainer/a0a+() délaissée/F.() délaissement/S. délaisser/a0a+() délaiter/a0a+() délaiteuse/S. délarder/a0a+() délassante/F.() délassée/F.() délassement/S. délasser/a0a+() délation/S. délatrice/F.() délatter/a0a+() délavage/S. délavée/F.() délaver/a0a+() délayage/S. délayée/F.() délayer/a0a+() delco/S. deleatur déléaturer/a0a+() délébile/S. délectable/S. délectation/S. délecter/a0a+() délégant/S. délégataire/S. délégation/S. délégatrice/F.() délégitimer/a0a+() déléguée/F.() déléguer/c0a+() délestage/S. délester/a0a+() délétère/S. délétion/S. délibérante/F.() délibération/S. délibérative/F.() délibératoire/S. délibéré/S. délibérée/F.() délibérément délibérer/c0() délicate/F.() délicatement délicatesse/S. délice/S. délicieuse/W.() délicieusement délictuelle/F.() délictueuse/W.() déliée/F.() déliement/S. délier/a0a+() délignage/S. déligneuse/F.() délignifier/a0a+() délimitation/S. délimitée/F.() délimiter/a0a+() délimiteur/S. délinéament/S. délinéer/a0a+() délinquance/S. délinquante/F.() déliquescence/S. déliquescente/F.() délirante/F.() délire/S. délirer/a0() delirium délissage/S. délisser/a0a+() délit/S. délitage/S. délitée/F.() délitement/S. déliter/a0a+() délitescence/S. délitescente/F.() délivrance/S. délivrée/F.() délivrer/a0a+() délivreur/S. délocalisante/F.() délocalisation/S. délocalisée/F.() délocaliser/a0a+() délogée/F.() délogement/S. déloger/a0a+() déloquer/a0a+() délot/S. délover/a0a+() déloyale/W.() déloyalement déloyauté/S. delphinarium/S. delphinium/S. delta delta/S. deltacisme/S. deltaïque/S. deltaplane/S. deltiste/S. deltoïde/S. deltoïdienne/F.() déluge/S. délurée/F.() délurer/a0a+() délustrage/S. délustrée/F.() délustrer/a0a+() délutage/S. déluter/a0a+() démaçonner/a0a+() démagnétisation/S. démagnétisée/F.() démagnétiser/a0a+() démagogie/S. démagogique/S. démagogue/S. démaigrir/f0f+() démaigrissement/S. démaillage/S. démailler/a0a+() démaillotée/F.() démailloter/a0a+() demain demain/S. démanchée/F.() démancher/a0a+() demande/S. demandée/F.() demander/a0a+() demanderesse/S. demandeuse/F.() démangeaison/S. démanger/a0a+() démantelée/F.() démantèlement/S. démanteler/b0a+() démantibulée/F.() démantibuler/a0a+() démaquer/a0a+() démaquillage/S. démaquillante/F.() démaquillée/F.() démaquiller/a0a+() démarabouter/a0a+() démarcation/S. démarchage/S. démarchandisation/S. démarche/S. démarchée/F.() démarcher/a0a+() démarcheuse/F.() démariage/S. démarier/a0a+() démarquage/S. démarquer/a0a+() démarqueur/S. démarrage/S. démarrer/a0a+() démarreur/S. démasclage/S. démascler/a0a+() démasquage/S. démasquée/F.() démasquer/a0a+() démastiquer/a0a+() démâtage/S. démâtée/F.() démâter/a0a+() dématérialisation/S. dématérialisée/F.() dématérialiser/a0a+() démazouter/a0a+() d'emblée dème/S. déméchage/S. démédicaliser/a0a+() démêlage/S. démêlante/F.() démêlé/S. démêlée/F.() démêlement/S. démêler/a0a+() démêloir/S. démêlure/S. démembrée/F.() démembrement/S. démembrer/a0a+() déménagement/S. déménager/a0a+() déménageuse/F.() démence/S. démener/b0a+() démente/F.() démenti/S. démentie/F.() démentielle/F.() démentir/i5i+() démerder/a0a+() démerger/a0a+() démériter/a0() démesure/S. démesurée/F.() démesurément déméthaniser/a0a+() démettre/vA() démeublée/F.() démeubler/a0a+() demeure/S. demeurée/F.() demeurer/a0() demiard/S. demi-bas demi-botte/S. demi-bouteille/S. demi-brigade/S. demi-cadratin/S. demi-cercle/S. demi-circulaire/S. demi-clé/S. demi-clef/S. demi-colonne/S. demi-deuil/S. demi-dieu/X. demi-douzaine/S. demi-droite/S. demie/F.() démieller/a0a+() demi-finale/S. demi-finaliste/S. demi-fine/F.() demi-fond demi-frère/S. demi-gras demi-grasse/S. demi-gros demi-heure/S. demi-jour/S. demi-journée/S. démilitarisation/S. démilitarisée/F.() démilitariser/a0a+() demi-litre/S. demi-longueur/S. demi-lune/S. demi-mal/X. demi-mesure/S. demi-mondaine/S. demi-monde/S. demi-morte/F.() demi-mot déminage/S. déminée/F.() déminer/a0a+() déminéralisation/S. déminéralisée/F.() déminéraliser/a0a+() démineuse/F.() demi-pause/S. demi-pension/S. demi-pensionnaire/S. demi-place/S. demi-plan/S. demi-portion/S. demi-produit/S. demi-quart/S. demi-queue/S. demi-reliure/S. demi-ronde/S. demi-saison/S. demi-sang démise/F.() demi-sel demi-sœur/S. demi-solde/S. demi-sommeil/S. demi-soupir/S. démission/S. démissionnaire/S. démissionner/a0() demi-tarif/S. demi-teinte/S. demi-tige/S. demi-ton/S. demi-tour/S. démiurge/S. demi-volée/S. démixtion/S. démobilisable/S. démobilisation/S. démobilisatrice/F.() démobilisée/F.() démobiliser/a0a+() démocrate/S. démocrate-chrétien démocrate-chrétienne démocrates-chrétiennes démocrates-chrétiens démocratie/S. démocratique/S. démocratiquement démocratisation/S. démocratiser/a0a+() démodée/F.() démoder/a0a+() demodex démodulateur/S. démodulation/S. démoduler/a0a+() démographe/S. démographie/S. démographique/S. démographiquement demoiselle/S. démolie/F.() démolir/f0f+() démolissage/S. démolisseuse/F.() démolition/S. démone/F.() démonétisation/S. démonétisée/F.() démonétiser/a0a+() démoniaque/S. démonisme/S. démoniste/S. démonographe/S. démonographie/S. démonologie/S. démonomanie/S. démonstration/S. démonstrative/F.() démonstrativement démonstratrice/F.() démontable/S. démontage/S. démontée/F.() démonte-pneu/S. démonter/a0a+() démonteuse/F.() démontrable/S. démontrée/F.() démontrer/a0a+() démoralisante/F.() démoralisation/S. démoralisatrice/F.() démoralisée/F.() démoraliser/a0a+() démordre/tE() démotique/S. démotivante/F.() démotivation/S. démotivée/F.() démotiver/a0a+() démoucheter/d0a+() démoulage/S. démoulante/F.() démoulée/F.() démouler/a0a+() démouleuse/F.() démouscailler/a0a+() démoustiquer/a0a+() d'empoigne démultiplexage/S. démultiplexeur/S. démultiplication/S. démultiplicatrice/F.() démultipliée/F.() démultiplier/a0a+() démunie/F.() démunir/f0f+() démurer/a0a+() démurger/a0a+() démuselée/F.() démuseler/d0a+() démutisation/S. démutualisation/S. démystification/S. démystificatrice/F.() démystifiée/F.() démystifier/a0a+() démythification/S. démythifiée/F.() démythifier/a0a+() dénantir/f0f+() denar/S. dénasalisation/S. dénasaliser/a0a+() dénatalité/S. dénationalisation/S. dénationalisée/F.() dénationaliser/a0a+() dénatter/a0a+() dénaturalisation/S. dénaturaliser/a0a+() dénaturation/S. dénaturée/F.() dénaturer/a0a+() dénazifier/a0a+() denchée/F.() dendrite/S. dendritique/S. dendrochronologie/S. dendroclimatologie/S. dendrographie/S. dendrologie/S. dendrologique/S. dendrologue/S. dénébuler/a0a+() dénébuliser/a0a+() dénégation/S. dénégatoire/S. déneigement/S. déneiger/a0a+() dénerver/a0a+() dengue/S. déni/S. déniaisée/F.() déniaiser/a0a+() dénichée/F.() dénicher/a0a+() dénicheuse/F.() dénickeler/d0a+() dénicotiniser/a0a+() dénicotiniseur/S. denier/S. dénier/a0a+() dénigrée/F.() dénigrement/S. dénigrer/a0a+() dénigreuse/F.() dénitrer/a0a+() dénitrification/S. dénitrifier/a0a+() dénivelé/S. dénivelée/F.() déniveler/d0a+() dénivellation/S. dénivellement/S. dénombrabilité/S. dénombrable/S. dénombrement/S. dénombrer/a0a+() dénominateur/S. dénomination/S. dénominative/F.() dénommée/F.() dénommer/a0a+() dénoncée/F.() dénoncer/a0a+() dénonciation/S. dénonciatrice/F.() dénotation/S. dénotationnelle/F.() dénotée/F.() dénoter/a0a+() dénouée/F.() dénouement/S. dénouer/a0a+() dénoyautage/S. dénoyautée/F.() dénoyauter/a0a+() dénoyer/a0a+() denrée/S. dense/S. densément densification/S. densifier/a0a+() densimétrie/S. densité/S. dent/S. dentaire/S. dentale/W.() dentée/F.() dentelaire/S. dentelée/F.() denteler/d0a+() denteleuse/F.() dentelle/S. dentellerie/S. dentellière/F.() dentelure/S. denticule/S. denticulée/F.() dentier/S. dentifrice/S. dentine/S. dentiste/S. dentisterie/S. dentition/S. denture/S. dénucléariser/a0a+() dénudation/S. dénudée/F.() dénuder/a0a+() dénuée/F.() dénuement/S. dénuer/a0a+() dénutrition/S. déodorante/F.() déontologie/S. déontologique/S. déontologue/S. dépagnoter/a0a+() dépaillage/S. dépailler/a0a+() dépaisseler/d0a+() dépalisser/a0a+() dépannage/S. dépanner/a0a+() dépanneuse/F.() dépaquetage/S. dépaqueter/d0a+() déparaffinage/S. déparaffiner/a0a+() déparasitage/S. déparasiter/a0a+() déparée/F.() dépareillée/F.() dépareiller/a0a+() déparer/a0a+() dépariage/S. déparier/a0a+() déparler/a0() départ/S. départager/a0a+() département/S. départementale/W.() départementalisation/S. départementaliser/a0a+() départir/i5i+() dépassante/F.() dépassée/F.() dépassement/S. dépasser/a0a+() dépassionnée/F.() dépassionner/a0a+() dépatouiller/a0a+() dépatrier/a0a+() dépavage/S. dépaver/a0a+() dépaysante/F.() dépaysée/F.() dépaysement/S. dépayser/a0a+() dépeçage/S. dépecée/F.() dépècement/S. dépecer/b0a+() dépeceuse/F.() dépêche/S. dépêcher/a0a+() dépeignée/F.() dépeigner/a0a+() dépeindre/wB() dépelotonner/a0a+() dépenaillée/F.() dépénalisante/F.() dépénalisation/S. dépénalisée/F.() dépénaliser/a0a+() dépendance/S. dépendante/F.() dépendeuse/F.() dépendre/tA() dépens dépensée/F.() dépenser/a0a+() dépensière/F.() déperdition/S. dépérir/f0() dépérissement/S. déperlance/S. déperlante/F.() dépersonnalisable/S. dépersonnalisation/S. dépersonnaliser/a0a+() dépêtrer/a0a+() dépeuplée/F.() dépeuplement/S. dépeupler/a0a+() déphasage/S. déphasée/F.() déphaser/a0a+() déphosphatation/S. déphosphoration/S. déphosphorer/a0a+() dépiauter/a0a+() dépicage/S. dépigeonnage/S. dépigmentation/S. dépigmentée/F.() dépigmenter/a0a+() dépilage/S. dépilation/S. dépilatoire/S. dépiler/a0a+() dépingler/a0a+() dépiquage/S. dépiquer/a0a+() dépistage/S. dépister/a0a+() dépit/S. dépitée/F.() dépiter/a0a+() déplaçable/S. déplacée/F.() déplacement/S. déplacer/a0a+() déplafonnement/S. déplafonner/a0a+() déplaire/wN() déplaisante/F.() déplaisir/S. déplaner/a0() déplanquer/a0a+() déplantage/S. déplantation/S. déplanter/a0a+() déplantoir/S. déplâtrage/S. déplâtrer/a0a+() dépliage/S. dépliante/F.() dépliée/F.() dépliement/S. déplier/a0a+() déplissage/S. déplisser/a0a+() déploiement/S. déplombage/S. déplomber/a0a+() déplombeur/S. déplorable/S. déplorablement déploration/S. déplorée/F.() déplorer/a0a+() déployable/S. déployée/F.() déployer/a0a+() déplumée/F.() déplumer/a0a+() dépocher/a0a+() dépoétiser/a0a+() dépoiler dépointer/a0a+() dépoitraillée/F.() dépolarisation/S. dépolariser/a0a+() dépolie/F.() dépolir/f0f+() dépolissage/S. dépolitisation/S. dépolitisée/F.() dépolitiser/a0a+() dépolluée/F.() dépolluer/a0a+() dépolymériser/a0a+() déponente/F.() dépontiller/a0() dépopulation/S. déport/S. déportation/S. déportée/F.() déportement/S. déporter/a0a+() déposante/F.() déposée/F.() déposer/a0a+() dépositaire/S. déposition/S. dépossédée/F.() déposséder/c0a+() dépossession/S. dépôt/S. dépotage/S. dépotement/S. dépoter/a0a+() dépotoir/S. dépoudrer/a0a+() dépouillée/F.() dépouillement/S. dépouiller/a0a+() dépouilleuse/F.() dépourvoir/pJ() dépourvue/F.() dépoussiérage/S. dépoussiérante/F.() dépoussiérée/F.() dépoussiérer/c0a+() dépoussiéreur/S. dépravation/S. dépravée/F.() dépraver/a0a+() déprécation/S. dépréciation/S. dépréciative/F.() dépréciatrice/F.() dépréciée/F.() déprécier/a0a+() déprédation/S. déprédatrice/F.() déprendre/tG() dépression/S. dépressionnaire/S. dépressive/F.() dépressurisation/S. dépressurisée/F.() dépressuriser/a0a+() déprimante/F.() déprime/S. déprimée/F.() déprimer/a0a+() déprise/F.() dépriser/a0a+() déprogrammation/S. déprogrammée/F.() déprogrammer/a0a+() déprolétariser/a0a+() dépropaniser/a0a+() déprotéger/c0a+() dépucelage/S. dépucelée/F.() dépuceler/d0a+() depuis dépulper/a0a+() dépuration/S. dépurative/F.() dépurer/a0a+() députation/S. députée/F.() députer/a0a+() déqualification/S. déqualifier/a0a+() déquiller/a0a+() der déracinable/S. déracinée/F.() déracinement/S. déraciner/a0a+() dérader/a0() dérager/a0() déraidir/f0f+() déraillement/S. dérailler/a0() dérailleur/S. déraison/S. déraisonnable/S. déraisonnablement déraisonner/a0() déramer/a0a+() dérangeante/F.() dérangée/F.() dérangement/S. déranger/a0a+() dérapage/S. déraper/a0() déraser/a0a+() dératée/F.() dérater/a0a+() dératisation/S. dératiser/a0a+() dératiseuse/F.() dérayer/a0a+() dérayure/S. derby/S. déréalisation/S. déréaliser/a0a+() derechef déréglage/S. déréglée/F.() dérèglement/S. déréglementaire/S. déréglementation/S. déréglementée/F.() déréglementer/a0a+() dérégler/c0a+() dérégulation/S. dérégulatrice/F.() déréguler/a0a+() déréliction/S. déremboursement/S. déresponsabilisation/S. déresponsabiliser/a0a+() dérésumenter déridée/F.() dérider/a0a+() dérision/S. dérisoire/S. dérisoirement dérivabilité/S. dérivable/S. dérivante/F.() dérivateur/S. dérivation/S. dérivative/F.() dérive/S. dérivée/F.() dérivée/S. dériver/a0a+() dériveur/S. dermatite/S. dermatologie/S. dermatologique/S. dermatologiste/S. dermatologue/S. dermatopathologie/S. dermatose/S. derme/S. dermeste/S. dermique/S. dermite/S. dermographie/S. dermopuncture/S. dernière/F.() dernièrement dernière-née dernières-nées dernier-né derniers-nés derny/S. dérobade/S. dérobée/F.() dérobement/S. dérober/a0a+() dérochage/S. dérochement/S. dérocher/a0a+() déroder/a0a+() dérogation/S. dérogatoire/S. déroger/a0() dérondir dérougir/f0f+() dérouiller/a0a+() déroulage/S. déroulante/F.() déroulée/F.() déroulement/S. dérouler/a0a+() dérouleuse/F.() déroutage/S. déroutante/F.() déroute/S. déroutée/F.() déroutement/S. dérouter/a0a+() derrick/S. derrière derrière/S. derviche/S. dès désabonnée/F.() désabonnement/S. désabonner/a0a+() désabusée/F.() désabusement/S. désabuser/a0a+() désaccentuer/a0a+() désacclimatable/S. désacclimatation/S. désacclimatée/F.() désacclimatement/S. désacclimater/a0a+() désaccord/S. désaccordable/S. désaccordée/F.() désaccordement/S. désaccorder/a0a+() désaccouplée/F.() désaccouplement/S. désaccoupler/a0a+() désaccoutumance/S. désaccoutumée/F.() désaccoutumer/a0a+() désacidifiée/F.() désacidifier/a0a+() désaciérée/F.() désaciérer/c0a+() désacralisation/S. désacralisée/F.() désacraliser/a0a+() désactivable/S. désactivateur/S. désactivation/S. désactivée/F.() désactivement désactiver/a0a+() désactiveur/S. désadaptation/S. désadaptée/F.() désadapter/a0a+() désaérée/F.() désaérer/c0a+() désaffectation/S. désaffectée/F.() désaffecter/a0a+() désaffection/S. désaffectionnée/F.() désaffectionner/a0a+() désaffectueuse/W.() désaffectueusement désafférentation/S. désaffilier/a0a+() désagencée/F.() désagencement/S. désagencer/a0a+() désagrafage/S. désagrafée/F.() désagrafer/a0a+() désagréable/S. désagréablement désagrégation/S. désagrégeante/F.() désagrégée/F.() désagréger/c0a+() désagrément/S. désaimanter/a0a+() désaisonnaliser/a0a+() désajuster/a0a+() désaliéner/c0a+() désaligner/a0a+() désalkylation/S. désalper/a0() désaltérante/F.() désaltérée/F.() désaltérer/c0a+() désamarrée/F.() désamarrer/a0a+() désambiguïsation/S. désambiguïsée/F.() désambiguïser/a0a+() désâmer/a0a+() désamiantage/S. désamiantée/F.() désamianter/a0a+() désamidonnée/F.() désamidonner/a0a+() désaminer/a0a+() désamorçage/S. désamorcée/F.() désamorcer/a0a+() désamour/S. désannexer/a0a+() désaper/a0a+() désappariée/F.() désapparier/a0a+() désappointée/F.() désappointement/S. désappointer/a0a+() désapprendre/tF() désapprise/F.() désapprobation/S. désapprobatrice/F.() désapprouvée/F.() désapprouver/a0a+() désapprovisionnement/S. désapprovisionner/a0a+() désarchivage/S. désarchiver/a0a+() désarçonnée/F.() désarçonner/a0a+() désargentée/F.() désargenter/a0a+() désarmante/F.() désarmée/F.() désarmement/S. désarmer/a0a+() désarrimage/S. désarrimée/F.() désarrimer/a0a+() désarroi/S. désarticulation/S. désarticulée/F.() désarticuler/a0a+() désassemblage/S. désassembler/a0a+() désassimilation/S. désassimiler/a0a+() désassortie/F.() désassortiment/S. désassortir/f0f+() désastre/S. désastreuse/W.() désastreusement désatomiser/a0a+() désavantagée/F.() désavantager/a0a+() désavantageuse/W.() désavantageusement désaveu/X. désaveugler/a0a+() désavouée/F.() désavouer/a0a+() désaxée/F.() désaxement/S. désaxer/a0a+() descellée/F.() descellement/S. desceller/a0a+() descendance/S. descendante/F.() descenderie/S. descendeuse/F.() descendre/tA() descenseur/S. descente/S. déscolarisation/S. déscolarité/S. descripteur/S. descriptible/S. description/S. descriptive/F.() descriptrice/F.() déséchouer/a0a+() désectoriser/a0a+() déségrégation/S. désembobiner/a0a+() désembourbée/F.() désembourber/a0a+() désembourgeoisée/F.() désembourgeoiser/a0a+() désembouteiller/a0a+() désembrayer/a0a+() désembuer/a0a+() désemmancher/a0a+() désemparée/F.() désemparement/S. désemparer/a0a+() désempeser/b0a+() désemplir/f0f+() désemprisonner/a0a+() désencadrée/F.() désencadrer/a0a+() désencarter/a0a+() désencastrement/S. désenchaîner/a0a+() désenchantée/F.() désenchantement/S. désenchanter/a0a+() désenclavée/F.() désenclavement/S. désenclaver/a0a+() désencombrement/S. désencombrer/a0a+() désencrage/S. désencrasser/a0a+() désendettement/S. désendetter/a0a+() désénerver/a0a+() désenfiler/a0a+() désenflammer/a0a+() désenfler/a0a+() désenfumer/a0a+() désengagement/S. désengager/a0a+() désengluer/a0a+() désengorger/a0a+() désengourdie/F.() désengourdir/f0f+() désengrener/b0a+() désenivrer/a0a+() désenlacer/a0a+() désenlaidir/f0f+() désennuyer/a0a+() désenrayer/a0a+() désenrhumer/a0a+() désenrouer/a0a+() désensabler/a0a+() désensibilisateur/S. désensibilisation/S. désensibilisée/F.() désensibiliser/a0a+() désensorcelée/F.() désensorceler/d0a+() désentoilage/S. désentoiler/a0a+() désentortiller/a0a+() désentraver/a0a+() désenvaser/a0a+() désenvelopper/a0a+() désenvenimer/a0a+() désenverguer/a0a+() désenvoûtée/F.() désenvoûter/a0a+() désépaissir/f0f+() déséquilibrage/S. déséquilibrée/F.() déséquilibrer/a0a+() déséquiper/a0a+() déserrage/S. déserrement/S. désert/S. déserte/F.() désertée/F.() déserter/a0a+() déserteuse/F.() désertifiante/F.() désertification/S. désertifier/a0a+() désertion/S. désertique/S. désescalade/S. désespérance/S. désespérante/F.() désespérée/F.() désespérément désespérer/c0a+() désespoir/S. désétablir/f0f+() désétamer/a0a+() désétatiser/a0a+() désexciter/a0a+() désexualiser/a0a+() déshabillage/S. déshabillée/F.() déshabiller/a0a+() déshabituer/a0a+() désherbage/S. désherbante/F.() désherbée/F.() désherber/a0a+() déshérence/S. déshéritée/F.() déshériter/a0a+() déshonnête/S. déshonnêtement déshonnêteté/S. déshonneur/S. déshonorante/F.() déshonorée/F.() déshonorer/a0a+() déshuiler/a0a+() déshumanisante/F.() déshumanisation/S. déshumanisée/F.() déshumaniser/a0a+() déshumidifier/a0a+() déshydratante/F.() déshydratation/S. déshydratée/F.() déshydrater/a0a+() déshydrogénation/S. déshydrogéner/c0a+() déshypothéquer/c0a+() désidérabilité/S. desideratum/I. design/S. désignation/S. désignative/F.() désignée/F.() designer/S. désigner/a0a+() désiliciage/S. désillusion/S. désillusionnée/F.() désillusionner/a0a+() désincarcérée/F.() désincarcérer/c0a+() désincarnation/S. désincarnée/F.() désincarner/a0a+() désincorporer/a0a+() désincrustation/S. désincruster/a0a+() désinculper/a0a+() désindenter/a0a+() désindexer/a0a+() désindustrialisation/S. désindustrialisée/F.() désindustrialiser/a0a+() désinence/S. désinentielle/F.() désinfectante/F.() désinfectée/F.() désinfecter/a0a+() désinfection/S. désinfectrice/F.() désinflation/S. désinformation/S. désinformer/a0a+() désingularisation/S. désinhibée/F.() désinhiber/a0a+() désinhibition/S. désinscription/S. désinscrire/y1() désinscrite/F.() désinsectisation/S. désinsectisée/F.() désinsectiser/a0a+() désinsectiseuse/F.() désinsertion/S. désinstallation/S. désinstallée/F.() désinstaller/a0a+() désintégration/S. désintégrée/F.() désintégrer/c0a+() désintéressée/F.() désintéressement/S. désintéresser/a0a+() désintérêt/S. désintoxication/S. désintoxiquée/F.() désintoxiquer/a0a+() désinvestir/f0f+() désinvestissement/S. désinviter/a0a+() désinvolte/S. désinvolture/S. désir/S. désirabilité/S. désirable/S. désirée/F.() désirer/a0a+() désireuse/W.() désistement/S. désister/a0a+() desman/S. désobéir/f0() désobéissance/S. désobéissante/F.() désobligeance/S. désobligeante/F.() désobliger/a0a+() désobstruer/a0a+() désoccupée/F.() désoccuper/a0a+() désocialisée/F.() désocialiser/a0a+() désodorisante/F.() désodoriser/a0a+() désœuvrée/F.() désœuvrement/S. désœuvrer désolante/F.() désolation/S. désolée/F.() désoler/a0a+() désolidarisation/S. désolidariser/a0a+() désoperculer/a0a+() désopilante/F.() désopiler/a0a+() désorber/a0a+() désorbitation/S. désorbitée/F.() désorbiter/a0a+() désordonnée/F.() désordonner/a0a+() désordre/S. désorganisation/S. désorganisatrice/F.() désorganisée/F.() désorganiser/a0a+() désorientation/S. désorientée/F.() désorienter/a0a+() désormais désorption/S. désossage/S. désossée/F.() désossement/S. désosser/a0a+() désosseuse/F.() désouffler/a0a+() désoxydante/F.() désoxydation/S. désoxyder/a0a+() désoxygénation/S. désoxygéner/c0a+() désoxyribonucléique/S. desperado/S. despote/S. despotique/S. despotiquement despotisme/S. desquamation/S. desquamée/F.() desquamer/a0a+() desquelles desquels dessabler/a0a+() dessaisir/f0f+() dessaisissement/S. dessalage/S. dessalée/F.() dessalement/S. dessaler/a0a+() dessangler/a0a+() dessaouler/a0a+() dessaper/a0a+() desséchante/F.() desséchée/F.() dessèchement/S. dessécher/c0a+() dessein/S. desseller/a0a+() desserrage/S. desserrement/S. desserrer/a0a+() dessert/S. desserte/S. dessertir/f0f+() desservante/F.() desservir/iF() dessiccation/S. dessiccative/F.() dessiller/a0a+() dessin/S. dessinatrice/F.() dessinée/F.() dessiner/a0a+() dessolement/S. dessoler/a0a+() dessouchage/S. dessouchement/S. dessoudée/F.() dessouder/a0a+() dessouffler/a0a+() dessoûler/a0a+() dessous dessous-de-bouteille dessous-de-bras dessous-de-plat dessous-de-table dessuintage/S. dessuinter/a0a+() dessus dessus-de-lit dessus-de-plat dessus-de-porte déstabilisante/F.() déstabilisation/S. déstabilisatrice/F.() déstabilisée/F.() déstabiliser/a0a+() déstalinisation/S. destin/S. destinataire/S. destination/S. destinatrice/F.() destinée/F.() destinée/S. destiner/a0a+() destituée/F.() destituer/a0a+() destitution/S. déstockage/S. déstocker/a0a+() déstresser/a0a+() destrier/S. destroyer/S. destructible/S. destruction/S. destructive/F.() destructrice/F.() déstructurante/F.() déstructuration/S. déstructurée/F.() déstructurer/a0a+() désuète/F.() désuétude/S. désulfiter/a0a+() désulfuration/S. désulfurer/a0a+() désunie/F.() désunion/S. désunir/f0f+() désynchronisation/S. désynchronisée/F.() désynchroniser/a0a+() détachable/S. détachage/S. détachante/F.() détachée/F.() détachement/S. détacher/a0a+() détacheuse/F.() détail/S. détaillante/F.() détaillée/F.() détailler/a0a+() détaler/a0() détaller/a0a+() détapisser/a0a+() détartrage/S. détartrante/F.() détartrée/F.() détartrer/a0a+() détartreur/S. détaxation/S. détaxe/S. détaxer/a0a+() détectable/S. détectée/F.() détecter/a0a+() détecteur/S. détection/S. détective/S. détectrice/F.() déteindre/wB() déteinte/F.() dételage/S. dételée/F.() dételer/d0a+() détendeur/S. détendre/tA() détendue/F.() détenir/i0i+() détente/S. détention/S. détentrice/F.() détenue/F.() détergence/S. détergent/S. détergente/F.() déterger/a0a+() détérioration/S. détériorée/F.() détériorer/a0a+() déterminable/S. déterminante/F.() détermination/S. déterminative/F.() déterminée/F.() déterminer/a0a+() déterminisme/S. déterministe/S. déterrage/S. déterrée/F.() déterrement/S. déterrer/a0a+() déterreur/S. détersion/S. détersive/F.() détestable/S. détestablement détestation/S. détestée/F.() détester/a0a+() détirer/a0a+() détireuse/S. détiser détisser/a0a+() détonante/F.() détonateur/S. détonation/S. détoner/a0() détonneler/d0a+() détonner/a0() détordre/tA() détortiller/a0a+() détour/S. détourer/a0a+() détournée/F.() détournement/S. détourner/a0a+() détoxication/S. détoxifiante/F.() détoxification/S. détoxifier/a0a+() détoxiquer/a0a+() détracter/a0a+() détraction/S. détractrice/F.() détrancher/a0() détransposer/a0a+() détraquée/F.() détraquement/S. détraquer/a0a+() détrempe/S. détrempée/F.() détremper/a0a+() détresser/a0a+() détricotée/F.() détricoter/a0a+() détriment/S. détritique/S. détritus détroit/S. détrompage/S. détrompée/F.() détromper/a0a+() détrompeur/S. détrônable/S. détroncher/a0() détrônée/F.() détrôner/a0a+() détroquer/a0a+() détroussée/F.() détrousser/a0a+() détrousseuse/F.() détruire/yM() détruite/F.() dette/S. détumescence/S. deuil/S. deutérium/S. deutérocanonique/S. deutéron/S. deux deux-deux deux-huit deuxième/S. deuxièmement deux-mâts deux-pièces deux-points deux-ponts deux-quatre deux-roues deux-seize deux-temps dévaler/a0a+() dévaliser/a0a+() dévalorisante/F.() dévalorisation/S. dévalorisée/F.() dévaloriser/a0a+() dévaluation/S. dévaluée/F.() dévaluer/a0a+() dévanâgari/S. devancement/S. devancer/a0a+() devancière/F.() devant devant/S. devanture/S. dévaser/a0a+() dévastation/S. dévastatrice/F.() dévastée/F.() dévaster/a0a+() déveine/S. développable/S. développante/F.() développée/F.() développement/S. développer/a0a+() développeuse/F.() devenir/S. devenir/i0i+() déventer/a0a+() déverbale/W.() déverdir/f0() dévergondage/S. dévergondée/F.() dévergonder/a0a+() déverguer/a0a+() déverminage/S. déverminer/a0a+() dévernie/F.() dévernir/f0f+() déverrouillage/S. déverrouillée/F.() déverrouiller/a0a+() devers déverse/F.() déversement/S. déverser/a0a+() déversoir/S. dévêtir/iG() dévêtue/F.() déviance/S. déviante/F.() déviation/S. déviationnisme/S. déviationniste/S. déviatrice/F.() dévidage/S. dévidée/F.() dévider/a0a+() dévideuse/F.() dévidoir/S. déviée/F.() dévier/a0a+() devin/S. devinable/S. devinée/F.() deviner/a0a+() devineresse/S. devinette/S. dévirer/a0a+() dévirginer dévirginiser/a0a+() déviriliser/a0a+() déviroler/a0a+() devis dévisagée/F.() dévisager/a0a+() devise/S. deviser/a0() deviseuse/F.() dévissage/S. dévissée/F.() dévisser/a0a+() dévitalisation/S. dévitalisée/F.() dévitaliser/a0a+() dévitrification/S. dévitrifier/a0a+() dévoiement/S. dévoilée/F.() dévoilement/S. dévoiler/a0a+() devoir/S. devoir/pCpD() dévoltage/S. dévolter/a0a+() dévolteur/S. dévolue/F.() dévolution/S. dévolutive/F.() devon/S. dévonienne/F.() dévorante/F.() dévoration/S. dévoratrice/F.() dévorée/F.() dévorer/a0a+() dévoreuse/F.() dévot/S. dévote/F.() dévotement dévotion/S. dévouée/F.() dévouement/S. dévouer/a0a+() dévoyée/F.() dévoyer/a0a+() dextérité/S. dextralité/S. dextre/S. dextrine/S. dextrocardie/S. dextrochère/S. dextrogyre/S. dextrorsum dextrorsum dextrose/S. dey/S. dézinguer/a0a+() dgr/||-- dhamma dharma/S. dia diabète/S. diabétique/S. diabétologue/S. diablement diablerie/S. diablesse/F.() diablotin/S. diabolique/S. diaboliquement diabolisation/S. diabolisée/F.() diaboliser/a0a+() diabolo/S. diachronie/S. diachronique/S. diachylon/S. diachylum diacide/S. diaclase/S. diacode/S. diaconale/W.() diaconat/S. diaconesse/S. diacoustique/S. diacre/S. diacritique/S. diadème/S. diadoque/S. diagnose/S. diagnostic/S. diagnosticienne/F.() diagnostiquée/F.() diagnostiquer/a0a+() diagonale/W.() diagonalement diagonalisable/S. diagrammatique/S. diagramme/S. diagraphe/S. diagraphie/S. diagraphique/S. dialectale/W.() dialectaliser/a0a+() dialectalisme/S. dialecte/S. dialecticienne/F.() dialectique/S. dialectiquement dialectisation/S. dialectiser/a0a+() dialectologie/S. dialectologue/S. dialogique/S. dialogue/S. dialoguée/F.() dialoguer/a0a+() dialoguiste/S. dialypétale/S. dialysat/S. dialyse/S. dialysée/F.() dialyser/a0a+() dialyseur/S. diamagnétisme/S. diamant/S. diamantaire/S. diamantée/F.() diamanter/a0a+() diamantifère/S. diamantine/F.() diamétrale/W.() diamétralement diamètre/S. diamide/S. diamidophénol/S. diamine/S. diane/S. diantre diantrement diapason/S. diapédèse/S. diaphane/S. diaphanéité/S. diaphanoscopie/S. diaphonie/S. diaphorèse/S. diaphorétique/S. diaphragmatique/S. diaphragme/S. diaphragmer/a0a+() diaphyse/S. diapo/S. diaporama/S. diapositive/F.() diapositive/S. diaprée/F.() diaprer/a0a+() diaprure/S. diarrhée/S. diarrhéique/S. diarthrose/S. diascope/S. diascopie/S. diaspora/S. diastase/S. diastasique/S. diastole/S. diastolique/S. diasystème/S. diathèse/S. diatomée/S. diatomique/S. diatomite/S. diatonique/S. diatoniquement diatribe/S. diaule/S. diazoïque/S. diazote/S. dibasique/S. dichotomie/S. dichotomique/S. dichroïque/S. dichroïsme/S. dichromatique/S. dicline/S. dico/S. dicotylédone/S. dicrote/S. dictame/S. dictaphone/S. dictatoriale/W.() dictatorialement dictatrice/F.() dictature/S. dictée/F.() dictée/S. dicter/a0a+() diction/S. dictionnaire/S. dicton/S. didacticiel/S. didacticienne/F.() didactique/S. didactiquement didactisme/S. didactyle/S. didascalie/S. didone/S. didot/S. diduction/S. didyme/S. diédrale/W.() dièdre/S. diélectrique/S. diencéphale/S. diencéphalique/S. diérèse/S. diergol/S. dièse/S. diesel/S. diéséliser/a0a+() diéséliste/S. diéser/c0a+() diète/S. diététicienne/F.() diététique/S. dieu/X. diffa/S. diffamante/F.() diffamation/S. diffamatoire/S. diffamatrice/F.() diffamée/F.() diffamer/a0a+() difféologie/S. difféomorphe/S. difféomorphisme/S. différé/S. différée/F.() différemment différence/S. différenciateur/S. différenciation/S. différenciée/F.() différencier/a0a+() différend/S. différente/F.() différentiabilité/S. différentiable/S. différentiablement différentiation/S. différentiée/F.() différentielle/F.() différentier différer/c0a+() difficile/S. difficilement difficulté/S. difforme/S. difformer/a0a+() difformité/S. diffracter/a0a+() diffraction/S. diffractomètre/S. diffractométrie/S. diffuse/F.() diffusée/F.() diffusément diffuser/a0a+() diffuseuse/F.() diffusible/S. diffusiomètre/S. diffusion/S. diffusomètre/S. digamma digérée/F.() digérer/c0a+() digeste/F.() digesteur/S. digestibilité/S. digestible/S. digestion/S. digestive/F.() digicode/S. digit/S. digitale/W.() digitaline/S. digitalisation/S. digitaliser/a0a+() digitaliseur/S. digitée/F.() digitiforme/S. digitigrade/S. diglossie/S. diglossique/S. digne/S. dignement dignitaire/S. dignité/S. digon/S. digramme/S. digraphe/S. digraphie/S. digresser/a0() digression/S. digressive/F.() digue/S. dihydrogène dijonnaise/F.() diktat/S. dilacération/S. dilacérer/c0a+() dilapidation/S. dilapidatrice/F.() dilapidée/F.() dilapider/a0a+() dilatabilité/S. dilatable/S. dilatance/S. dilatante/F.() dilatateur/S. dilatation/S. dilatatrice/F.() dilatée/F.() dilater/a0a+() dilatoire/S. dilatomètre/S. dilection/S. dilemme/S. dilettante/S. dilettantisme/S. diligemment diligence/S. diligente/F.() diligentée/F.() diligenter/a0a+() dilogie/S. diluante/F.() diluée/F.() diluer/a0a+() dilution/S. diluviale/W.() diluvienne/F.() diluvium/S. dimanche/S. dîme/S. dimension/S. dimensionnée/F.() dimensionnelle/F.() dimensionnement/S. dimensionner/a0a+() dimère/S. dimétrodon/S. diminuée/F.() diminuendo diminuendo/S. diminuer/a0a+() diminution/S. diminutive/F.() dimissoire/S. dimorphe/S. dimorphisme/S. dinanderie/S. dinandière/F.() dinar/S. dînatoire/S. dinde/S. dindon/S. dindonneau/X. dindonner/a0a+() dînée/S. dîner/S. dîner/a0() dînette/S. dîneuse/F.() ding dingbats dinghy/S. dingo/S. dingue/S. dinguer/a0() dinguerie/S. dinornis dinosaure/S. dinosaurien/S. dinothérium/S. diocésaine/F.() diocèse/S. diode/S. dionée/S. dionysiaque/S. diophantienne/F.() dioptre/S. dioptrie/S. dioptrique/S. diorama/S. diorite/S. dioxine/S. dioxyde/S. dioxygène/S. dipétale/S. diphasée/F.() diphénol/S. diphtérie/S. diphtérique/S. diphtongaison/S. diphtongue/S. diphtonguer/a0a+() diploblastique/S. diplocoque/S. diplodocus diploïde/S. diplômante/F.() diplomate/S. diplomatie/S. diplomatique/S. diplomatiquement diplôme/S. diplômée/F.() diplômer/a0a+() diplopie/S. dipneumonée/F.() dipneuste/S. dipode/S. dipolaire/S. dipôle/S. dipsacée/S. dipsomane/S. dipsomanie/S. diptère/S. diptyque/S. dire/yC() directe/F.() directement direction/S. directionnelle/F.() directive/F.() directivisme/S. directivité/S. directoire/S. directorat/S. directoriale/W.() directrice/F.() dires dirham/S. dirhem/S. dirigeable/S. dirigeante/F.() dirigée/F.() diriger/a0a+() dirigisme/S. dirigiste/S. dirimante/F.() dirimer/a0a+() disaccharide/S. discale/W.() discarthrose/S. discernable/S. discernée/F.() discernement/S. discerner/a0a+() disciple/S. disciplinable/S. disciplinaire/S. disciplinairement discipline/S. disciplinée/F.() discipliner/a0a+() disc-jockey/S. disco/S. discobole/S. discographie/S. discographique/S. discoïdale/W.() discoïde/S. discompte/S. discompter/a0a+() discompteuse/F.() discontacteur/S. discontinue/F.() discontinuer discontinuité/S. discontinûment disconvenir/i0i+() discopathie/S. discophile/S. discophilie/S. discordance/S. discordante/F.() discorde/S. discorder/a0() discothécaire/S. discothèque/S. discount/S. discountée/F.() discounter/a0a+() discounteur/S. discoureuse/F.() discourir/iD() discours discourtoise/F.() discourtoisement discourtoisie/S. discrédit/S. discréditée/F.() discréditer/a0a+() discrépance/S. discrète/F.() discrètement discrétion/S. discrétionnaire/S. discrétionnairement discrétisation/S. discrétoire/S. discriminante/F.() discrimination/S. discriminatoire/S. discriminée/F.() discriminer/a0a+() disculpation/S. disculpée/F.() disculper/a0a+() discuputer/a0() discursive/F.() discursiviser discussion/S. discutable/S. discutailler/a0a+() discutailleuse/F.() discutée/F.() discuter/a0a+() discuteuse/F.() diserte/F.() disertement disette/S. disetteuse/W.() diseuse/F.() disgrâce/S. disgraciée/F.() disgracier/a0a+() disgracieuse/W.() disgracieusement disharmonie/S. disilane/S. disjoindre/wB() disjointe/F.() disjoncter/a0a+() disjoncteur/S. disjonction/S. disjonctive/F.() dislocation/S. disloquée/F.() disloquer/a0a+() disodique/S. disparaître/wQ() disparate/S. disparation/S. disparité/S. disparition/S. disparue/F.() dispatcher/a0a+() dispatcheur/S. dispatching/S. dispendieuse/W.() dispendieusement dispensable/S. dispensaire/S. dispensation/S. dispensatrice/F.() dispense/S. dispensée/F.() dispenser/a0a+() dispersal/S. dispersante/F.() dispersée/F.() dispersement/S. disperser/a0a+() dispersion/S. dispersive/F.() disponibilité/S. disponible/S. dispose/F.() disposée/F.() disposer/a0a+() dispositif/S. disposition/S. disproportion/S. disproportionnalité/S. disproportionnée/F.() disproportionnelle/F.() disproportionnellement disproportionner/a0a+() disputailler/a0() dispute/S. disputée/F.() disputer/a0a+() disquaire/S. disqualification/S. disqualifiée/F.() disqualifier/a0a+() disque/S. disquette/S. disruption/S. disruptive/F.() dissecteur/S. dissection/S. dissemblable/S. dissemblance/S. dissémination/S. disséminée/F.() disséminer/a0a+() dissension/S. dissentiment/S. disséquée/F.() disséquer/c0a+() disséqueur/S. dissertation/S. disserter/a0() dissidence/S. dissidente/F.() dissimilation/S. dissimiler/a0a+() dissimilitude/S. dissimulable/S. dissimulation/S. dissimulatrice/F.() dissimulée/F.() dissimuler/a0a+() dissipation/S. dissipative/F.() dissipatrice/F.() dissipée/F.() dissiper/a0a+() dissociable/S. dissociation/S. dissociée/F.() dissocier/a0a+() dissolubilité/S. dissoluble/S. dissolue/F.() dissolution/S. dissolutive/F.() dissolvante/F.() dissonance/S. dissonante/F.() dissoner/a0() dissoudre/xN() dissuadée/F.() dissuader/a0a+() dissuasion/S. dissuasive/F.() dissyllabe/S. dissyllabique/S. dissymétrie/S. dissymétrique/S. distale/W.() distancée/F.() distancer/a0a+() distanciation/S. distancier/a0a+() distante/F.() distendre/tA() distendue/F.() distension/S. disthène/S. distilbène/S. distillat/S. distillation/S. distillatoire/S. distillatrice/F.() distillée/F.() distiller/a0a+() distillerie/S. distincte/F.() distinctement distinction/S. distinctive/F.() distinguable/S. distinguée/F.() distinguer/a0a+() distinguo/S. distique/S. distordre/tA() distordue/F.() distorsion/S. distraction/S. distractive/F.() distractivité/S. distraire/wL() distraite/F.() distraitement distrayante/F.() distribuable/S. distribuée/F.() distribuer/a0a+() distribution/S. distributionnalisme/S. distributionnaliste/S. distributionnelle/F.() distributive/F.() distributivement distributivité/S. distributrice/F.() district/S. distyle/S. disulfure/S. dite/F.() diterpène/S. dithyrambe/S. dithyrambique/S. dito diurèse/S. diurétique/S. diurnal/X. diurne/S. div diva/S. divagante/F.() divagation/S. divagatrice/F.() divaguer/a0() divan/S. divergence/S. divergente/F.() diverger/a0() diverse/F.() diversement diversification/S. diversifiée/F.() diversifier/a0a+() diversiforme/S. diversion/S. diversité/S. diverticule/S. diverticulose/S. divertie/F.() divertimento/S. divertir/f0f+() divertissante/F.() divertissement/S. divette/S. dividende/S. divination/S. divinatoire/S. divinatrice/F.() divine/F.() divinement divinisation/S. divinisée/F.() diviniser/a0a+() divinité/S. divise/F.() divisée/F.() diviser/a0a+() diviseur/S. divisibilité/S. divisible/S. division/S. divisionnaire/S. divisionnisme/S. divisionniste/S. divorce/S. divorcée/F.() divorcer/a0() divulgation/S. divulgatrice/F.() divulguable/S. divulguée/F.() divulguer/a0a+() dix dix-huit dix-huitième/S. dixième/S. dixièmement dixit dix-neuf dix-neuvième/S. dix-sept dix-septième/S. dizain/S. dizaine/S. dizygote/S. djaïn/S. djaïnisme/S. djebel/S. djellaba/S. djembé/S. djibser/a0() djinn/S. do doberman/S. doc docétisme/S. doche/S. docile/S. docilement docilité/S. docimasie/S. docimologie/S. dock/S. docker/S. docte/S. doctement docteure/F.() doctorale/W.() doctoralement doctorante/F.() doctorat/S. doctoresse/S. doctrinaire/S. doctrinale/W.() doctrinalement doctrine/S. docu-fiction/S. document/S. documentaire/S. documentaliste/S. documentariste/S. documentation/S. documentée/F.() documenter/a0a+() dodécaèdre/S. dodécagonale/W.() dodécagone/S. dodécalogie/S. dodécaphasée/F.() dodécaphonique/S. dodécaphonisme/S. dodécastyle/S. dodécasyllabe/S. dodelinement/S. dodeliner/a0() dodine/S. dodo/S. dodue/F.() dog-cart/S. doge/S. dogger/S. dogmatique/S. dogmatiquement dogmatiser/a0() dogmatiseur/S. dogmatisme/S. dogmatiste/S. dogme/S. dogue/S. doguer/a0a+() doigt/S. doigté/S. doigter/a0a+() doigtier/S. dol/S. dolce dolcissimo doléance/S. doleau/X. dolente/F.() doler/a0a+() dolérite/S. dolic/S. dolichocéphale/S. doline/S. dollar/S. dolman/S. dolmen/S. doloire/S. dolomie/S. dolomite/S. dolomitique/S. dolorisme/S. dolosive/F.() dom domaine/S. domaniale/W.() domanialité/S. dôme/S. domestication/S. domesticité/S. domestique/S. domestiquée/F.() domestiquer/a0a+() domicile/S. domiciliaire/S. domiciliataire/S. domiciliation/S. domiciliée/F.() domicilier/a0a+() dominance/S. dominante/F.() domination/S. dominatrice/F.() dominée/F.() dominer/a0a+() dominicaine/F.() dominicale/W.() dominion/S. domino/S. dominoterie/S. dominotière/F.() domisme/S. dommage/S. dommageable/S. dommages-intérêts domoticienne/F.() domotique/S. domptable/S. domptage/S. domptée/F.() dompter/a0a+() dompteuse/F.() dompte-venin don/S. donacie/S. donataire/S. donation/S. donatisme/S. donatiste/S. donatrice/F.() donc dondaine/S. dondon/S. donjon/S. donjonnée/F.() donjuanesque/S. donjuanisme/S. donne/S. donnée/F.() donnée/S. donner/a0a+() donneuse/F.() donquichottesque/S. donquichottisme/S. dont donzelle/S. dopage/S. dopamine/S. dopante/F.() dope/S. doper/a0a+() doping/S. dorade/S. dorage/S. dorée/F.() dorénavant dorer/a0a+() doreuse/F.() dorienne/F.() dorin/S. dorique/S. doris dorlotée/F.() dorlotement/S. dorloter/a0a+() dormance/S. dormante/F.() dormeuse/F.() dormir/iI() dormition/S. dormitive/F.() dorsale/W.() dorsalgie/S. dortoir/S. dorure/S. doryphore/S. dos dosable/S. dosage/S. dos-d'âne dose/S. doser/a0a+() dosette/S. doseuse/F.() dosimètre/S. dossard/S. dosse/S. dosseret/S. dossier/S. dossière/S. dot/S. dotale/W.() dotalité/S. dotation/S. doter/a0a+() douaire/S. douairière/S. douane/S. douanière/F.() douar/S. doublage/S. double/S. doubleau/X. double-commande double-crème doublée/F.() doublement doublement/S. doubler/a0a+() doubles-commandes doubles-crèmes doublet/S. doublette/S. doubleuse/F.() doublier/S. doublon/S. doublonner/a0() doublure/S. douce/W.() douce-amère douceâtre/S. doucement doucereuse/W.() doucereusement douces-amères doucette/F.() doucettement douceur/S. douche/S. doucher/a0a+() douchette/S. doucheuse/F.() doucin/S. doucine/S. doucir/f0f+() doucissage/S. doudou/S. doudouisme/S. doudoune/S. douée/F.() douelle/S. douer douille/S. douiller/a0() douillette/F.() douillettement douilletterie/S. douleur/S. douloureuse/W.() douloureusement doum/S. douma/S. dourine/S. douro/S. doute/S. douter/a0a+() douteuse/F.() douteuse/W.() douteusement douvain/S. douve/S. douvelle/S. douzain/S. douzaine/S. douze douze-huit douzième/S. douzièmement doxa/S. doxographe/S. doxologie/S. doyenne/F.() doyenné/S. doyenneté/S. dpi dracéna/S. dracher/a9() drachme/S. draconienne/F.() drag/S. dragage/S. dragée/S. dragéifiée/F.() dragéifier/a0a+() dragéiste/S. drageoir/S. drageon/S. drageonnage/S. drageonnement/S. drageonner/a0() dragline/S. dragon/S. dragonnade/S. dragonne/S. dragonnée/F.() dragonner/a0a+() dragonnier/S. drague/S. draguée/F.() draguer/a0a+() dragueuse/F.() draille/S. drain/S. drainage/S. drainée/F.() drainer/a0a+() draineuse/F.() draisienne/S. draisine/S. drakkar/S. dramatique/S. dramatiquement dramatisation/S. dramatiser/a0a+() dramaturge/S. dramaturgie/S. dramaturgique/S. drame/S. drap/S. drapé/S. drapeau/X. drapée/F.() drapeler/d0a+() drapement/S. draper/a0a+() draperie/S. drap-housse drapière/F.() draps-housses drastique/S. drastiquement drave/S. draver/a0a+() draveur/S. dravidienne/F.() drawback/S. drayer/a0a+() drayoir/S. drayoire/S. dreadnought/S. drège/S. drelin drenne/S. drépanocytose/S. dressage/S. dressant/S. dressée/F.() dressement/S. dresser/a0a+() dresse-tube/S. dresseuse/F.() dressing/S. dressing-room/S. dressoir/S. drève/S. dreyfusarde/F.() dribble/S. dribbler/a0a+() dribbleuse/F.() drill/S. drille/S. driller/a0a+() dring drink/S. drisse/S. drive/S. drive-in driver/S. driver/a0a+() drogman/S. drogue/S. droguée/F.() droguer/a0a+() droguerie/S. droguet/S. droguiste/S. droite/F.() droitement droit-fil droitière/F.() droitisation/S. droits-fils droiture/S. drolatique/S. drôle/S. drôlement drôlerie/S. drôlesse/F.() dromadaire/S. drone/S. dronte/S. drop/S. droper/a0a+() drop-goal/S. droppage/S. droséracée/S. drosophile/S. drosser/a0a+() drue/F.() drugstore/S. druidesse/F.() druidique/S. druidisme/S. drumlin/S. drummer/S. drums drupe/S. druze/S. dry dryade/S. dry-farming/S. dryopithèque/S. dt du dû duale/W.() dualisme/S. dualiste/S. dualité/S. duathlète/S. duathlon/S. dubitative/F.() dubitativement dubnium/S. duc/S. ducale/W.() ducasse/S. ducat/S. duce/S. duché/S. duchesse/S. ducroire/S. ductile/S. ductilité/S. ductus dudgeonner dudit due/S. duègne/S. duel/S. duelliste/S. duettiste/S. duetto/S. duffle-coat/S. dugong/S. duit/S. duite/S. dulçaquicole/S. dulcicole/S. dulcification/S. dulcifier/a0a+() dulcinée/S. dulcite/S. dulie/S. dum-dum dûment dumping/S. dunaire/S. dundee/S. dune/S. dunette/S. duo/S. duodécimale/W.() duodénale/W.() duodénite/S. duodénum/S. duodi/S. duologie/S. duopole/S. dupe/S. dupée/F.() duper/a0a+() duperie/S. dupeuse/F.() duplex duplexer/a0a+() duplicata/S. duplicateur/S. duplication/S. duplicité/S. dupliquée/F.() dupliquer/a0a+() duquel durabilité/S. durable/S. durablement duralumin/S. duramen/S. durant durative/F.() durcie/F.() durcir/f0f+() durcissement/S. durcisseur/S. dure/F.() durée/S. durement dure-mère durer/a0() dures-mères dureté/S. durillon/S. durion/S. durit/S. dus duumvir/S. duumvirat/S. duumviri duvet/S. duvetée/F.() duveter/d0a+() duveteuse/W.() duxelles dyade/S. dyadique/S. dyke/S. dyn/||-- dynamique/S. dynamiquement dynamisation/S. dynamiser/a0a+() dynamisme/S. dynamiste/S. dynamitage/S. dynamite/S. dynamitée/F.() dynamiter/a0a+() dynamiteur/S. dynamo/S. dynamoélectrique/S. dynamogène/S. dynamogénique/S. dynamographe/S. dynamomètre/S. dynamométrique/S. dynaste/S. dynastie/S. dynastique/S. dyne/S. dynode/S. dysarthrie/S. dyscalculie/S. dyschromatopsie/S. dyschromie/S. dyscrasie/S. dysenterie/S. dysentérique/S. dysfonction/S. dysfonctionnement/S. dysfonctionner/a0() dysgraphie/S. dyshidrose/S. dysidrose/S. dyskinésie/S. dysleptique/S. dyslexie/S. dyslexique/S. dysménorrhée/S. dysmorphie/S. dysorthographie/S. dyspepsie/S. dyspepsique/S. dyspeptique/S. dysphasie/S. dysphonie/S. dysphorie/S. dysplasie/S. dyspnée/S. dyspraxie/S. dysprosium/S. dystasie/S. dystocie/S. dystomie/S. dystonie/S. dystrophie/S. dystrophine/S. dystrophisation/S. dysurie/S. dytique/S. dzêta e/L' eV/U.||-- eau/X*() eau-de-vie/L'D'Q' eau-forte/L'D'Q' eaux-de-vie/D'Q' eaux-fortes/D'Q' ébahie/F*() ébahir/f4f+() ébahissement/S*() ébarbage/S*() ébarber/a2a+() ébarbeuse/F*() ébarboir/S*() ébarbure/S*() ébat/S*() ébattre/uC() ébaubie/F*() ébaubir/f3f+() ébauchage/S*() ébauche/S*() ébauchée/F*() ébaucher/a4a+() ébaucheuse/F*() ébauchoir/S*() ébaudir/f4f+() ébavurer/a2a+() ébénacée/S*() ébène/S*() ébénier/S*() ébéniste/S*() ébénisterie/S*() éberluée/F*() éberluer/a2a+() ébiseler/d2a+() éblouie/F*() éblouir/f2f+() éblouissante/F*() éblouissement/S*() ébonite/S*() e-book/S*() éborgnage/S*() éborgnée/F*() éborgnement/S*() éborgner/a4a+() ébosser/a2a+() ébouer/a2a+() éboueuse/F*() ébouillantage/S*() ébouillantée/F*() ébouillanter/a4a+() éboulée/F*() éboulement/S*() ébouler/a4a+() éboulis/L'D'Q' ébouquetée/F*() ébouqueter ébourgeonnage/S*() ébourgeonnement/S*() ébourgeonner/a2a+() ébouriffante/F*() ébouriffée/F*() ébouriffer/a2a+() ébourrer/a2a+() ébouter/a2a+() ébouzer ébraiser/a2a+() ébranchage/S*() ébrancher/a2a+() ébranchoir/S*() ébranlée/F*() ébranlement/S*() ébranler/a4a+() ébrasement/S*() ébraser/a2a+() ébréchée/F*() ébrécher/c4a+() ébréchure/S*() ébriété/S*() ébroudir/f2f+() ébrouement/S*() ébrouer/a3a+() ébruitement/S*() ébruiter/a4a+() ébruter/a2a+() ébulliomètre/S*() ébulliométrie/S*() ébullioscope/S*() ébullioscopie/S*() ébullition/S*() éburnée/F*() éburnéenne/F*() éburonne/F*() écachée/F*() écacher/a2a+() écaffer/a2a+() écaillage/S*() écaille/S*() écaillée/F*() écailler/a4a+() écaillère/F*() écailleuse/W*() écaillure/S*() écaler/a4a+() écalure/S*() écang/S*() écanguer/a2a+() écarlate/S*() écarquillée/F*() écarquiller/a2a+() écart/S*() écartée/F*() écartelée/F*() écartèlement/S*() écarteler/b2a+() écartelure/S*() écartement/S*() écarter/a4a+() écarteur/S*() écartométrie/S*() écatir/f2f+() ecballium/S*() eccéité/S*() ecchymose/S*() ecclésiale/W*() ecclésiaste/S*() ecclésiastique/S*() ecclésiologie/S*() ecclésiologique/S*() écervelée/F*() échafaud/S*() échafaudage/S*() échafaudée/F*() échafauder/a2a+() échafaudeuse/F*() échalas/L'D'Q' échalassée/F*() échalasser/a2a+() échalier/S*() échalote/S*() échampie/F*() échampir/f2f+() échancrée/F*() échancrer/a2a+() échancrure/S*() échanfreinée/F*() échanfreiner/a2a+() échange/S*() échangeable/S*() échangée/F*() échanger/a4a+() échangeur/S*() échangeuse/F*() échangisme/S*() échangiste/S*() échanson/S*() échantillon/S*() échantillonnage/S*() échantillonnée/F*() échantillonner/a2a+() échantillonneuse/F*() échappatoire/S*() échappée/F*() échappée/S*() échappement/S*() échapper/a4a+() écharde/S*() échardonnage/S*() échardonnée/F*() échardonner/a2a+() écharnage/S*() écharnée/F*() écharnement/S*() écharner/a2a+() écharneuse/F*() écharnoir/S*() écharpe/S*() écharpée/F*() écharper/a4a+() échasse/S*() échassier/S*() échauboulure/S*() échaudage/S*() échaudée/F*() échauder/a4a+() échauffante/F*() échauffée/F*() échauffement/S*() échauffer/a4a+() échauffourée/S*() échauguette/S*() échaulée/F*() échauler/a2a+() échaumée/F*() échaumer/a2a+() échéance/S*() échéancier/S*() échéante/F*() échec/S*() échelée/F*() écheler/d4a+() échelette/S*() échelier/S*() échelle/S*() échelon/S*() échelonnée/F*() échelonnement/S*() échelonner/a4a+() échenillage/S*() échenillée/F*() écheniller/a2a+() échenilloir/S*() écheveau/X*() échevelée/F*() écheveler/d2a+() échevette/S*() échevin/S*() échevinage/S*() échevinale/W*() échidné/S*() échine/S*() échinée/F*() échiner/a4a+() échinocactus/L'D'Q' échinocoque/S*() échinoderme/S*() échiquetée/F*() échiquier/S*() échiurien/S*() écho/S*() échocardiographie/S*() échoencéphalographie/S*() échographe/S*() échographie/S*() échographique/S*() échographiste/S*() échoir/pY() écholalie/S*() écholocalisation/S*() écholocation/S*() échoppe/S*() échoppée/F*() échopper/a2a+() échotière/F*() échotomographie/S*() échouage/S*() échouée/F*() échouement/S*() échouer/a4a+() écimage/S*() écimée/F*() écimer/a2a+() éclaboussée/F*() éclaboussement/S*() éclabousser/a4a+() éclaboussure/S*() éclair/S*() éclairage/S*() éclairagiste/S*() éclairante/F*() éclaircie/F*() éclaircie/S*() éclaircir/f4f+() éclaircissage/S*() éclaircissement/S*() éclairée/F*() éclairement/S*() éclairer/a4a+() éclaireuse/F*() éclampsie/S*() éclanche/S*() éclat/S*() éclatante/F*() éclatée/F*() éclatement/S*() éclater/a4a+() éclateur/S*() éclectique/S*() éclectisme/S*() éclimètre/S*() éclipse/S*() éclipsée/F*() éclipser/a4a+() écliptique/S*() éclisse/S*() éclisser/a2a+() éclopée/F*() écloper/a2a+() éclore/rC() éclose/F*() éclosion/S*() éclusage/S*() écluse/S*() éclusée/S*() écluser/a2a+() éclusière/F*() écobuage/S*() écobuer/a2a+() écocide/S*() écocitoyenne/F*() écocitoyenneté/S*() écœurante/F*() écœurée/F*() écœurement/S*() écœurer/a2a+() écohabitat/S*() écoinçon/S*() écolabel/S*() écolage/S*() écolâtre/S*() école/S*() écolière/F*() écolleter/d4a+() écolo/S*() écologie/S*() écologique/S*() écologiquement/D'Q' écologisme/S*() écologiste/S*() écologue/S*() écomusée/S*() éconduire/yL() éconduite/F*() économat/S*() économe/S*() économètre/S*() économétricienne/F*() économétrie/S*() économétrique/S*() économie/S*() économique/S*() économiquement/D'Q' économisée/F*() économiser/a4a+() économiseur/S*() économisme/S*() économiste/S*() écoparticipation/S*() écopée/F*() écoper/a2a+() écoperche/S*() écoquartier/S*() écorçage/S*() écorce/S*() écorcée/F*() écorcement/S*() écorcer/a2a+() écorceuse/F*() écorchée/F*() écorchement/S*() écorcher/a4a+() écorcheuse/F*() écorchure/S*() écorée/F*() écorer/a2a+() écornée/F*() écorner/a2a+() écorniflée/F*() écornifler/a2a+() écornifleuse/F*() écornure/S*() écossaise/F*() écossée/F*() écosser/a2a+() écosystème/S*() écosystémique/S*() écot/S*() écotaxe/S*() écotée/F*() écotone/S*() écotourisme/S*() écotoxicologie/S*() écotoxicologue/S*() écotype/S*() écoulée/F*() écoulement/S*() écouler/a4a+() écoumène/S*() écourtée/F*() écourter/a2a+() écoutante/F*() écoute/S*() écoutée/F*() écouter/a4a+() écouteur/S*() écoutille/S*() écouvillon/S*() écouvillonnée/F*() écouvillonner/a2a+() écovolontaire/S*() écovolontariat/S*() écrabouillage/S*() écrabouillée/F*() écrabouillement/S*() écrabouiller/a2a+() écran/S*() écrasante/F*() écrasée/F*() écrasement/S*() écraser/a4a+() écraseuse/F*() écrémage/S*() écrémée/F*() écrémer/c2a+() écrémeuse/S*() écrêtée/F*() écrêtement/S*() écrêter/a2a+() écrevisse/S*() écrier/a3a+() écrin/S*() écrire/y1() écrit/S*() écrite/F*() écriteau/X*() écritoire/S*() écriture/S*() écrivaillée/F*() écrivailler/a1() écrivailleuse/F*() écrivaillon/S*() écrivaine/F*() écrivasser/a2a+() écrivassière/F*() écrou/S*() écrouée/F*() écrouelles/D'Q' écrouer/a2a+() écrouie/F*() écrouir/f2f+() écrouissage/S*() écroulée/F*() écroulement/S*() écrouler/a3a+() écroûtage/S*() écroûtée/F*() écroûtement/S*() écroûter/a2a+() écroûteuse/S*() écrue/F*() ecstasy/S*() ectasie/S*() ecthyma/S*() ectoblaste/S*() ectoderme/S*() ectodermique/S*() ectogenèse/S*() ectoparasite/S*() ectopie/S*() ectopique/S*() ectoplasme/S*() ectotherme/S*() ectropion/S*() écu/S*() écubier/S*() écueil/S*() écuelle/S*() écuissée/F*() écuisser/a2a+() éculée/F*() éculer/a2a+() écumage/S*() écumante/F*() écume/S*() écumée/F*() écumer/a2a+() écumeur/S*() écumeuse/W*() écumoire/S*() écurée/F*() écurer/a2a+() écureuil/S*() écurie/S*() écusson/S*() écussonnage/S*() écussonnée/F*() écussonner/a2a+() écussonnoir/S*() écuyère/F*() eczéma/S*() eczémateuse/W*() édam/S*() edelweiss/L'D'Q' éden/S*() édénique/S*() édentée/F*() édenter/a2a+() édictée/F*() édicter/a2a+() édiction/S*() édicule/S*() édifiante/F*() édification/S*() édificatrice/F*() édifice/S*() édifiée/F*() édifier/a2a+() édile/S*() édilitaire/S*() édilité/S*() édit/S*() éditable/S*() éditée/F*() éditer/a2a+() édition/S*() éditionnée/F*() éditionner/a2a+() éditoriale/W*() éditorialiste/S*() éditrice/F*() édredon/S*() éducabilité/S*() éducable/S*() éducation/S*() éducationnelle/F*() éducative/F*() éducatrice/F*() édulcorant/S*() édulcorante/F*() édulcoration/S*() édulcorée/F*() édulcorer/a2a+() éduquée/F*() éduquer/a2a+() éfaufilée/F*() éfaufiler/a2a+() effaçable/S*() effacée/F*() effacement/S*() effacer/a4a+() effaceuse/F*() effanée/F*() effaner/a2a+() effanure/S*() effarante/F*() effarée/F*() effarement/S*() effarer/a4a+() effarouchée/F*() effarouchement/S*() effaroucher/a4a+() effarvatte/S*() effecteur/S*() effectif/S*() effective/F*() effectivement/D'Q' effectivité/S*() effectuée/F*() effectuer/a4a+() efféminée/F*() efféminement/S*() efféminer/a4a+() effendi/S*() efférente/F*() effervescence/S*() effervescente/F*() effet/S*() effeuillage/S*() effeuillaison/S*() effeuillée/F*() effeuillement/S*() effeuiller/a4a+() effeuilleuse/S*() efficace/S*() efficacement/D'Q' efficacité/S*() efficience/S*() efficiente/F*() effigie/S*() effilage/S*() effilée/F*() effilement/S*() effiler/a4a+() effilochage/S*() effilochée/F*() effilochement/S*() effilocher/a4a+() effilocheuse/F*() effilochure/S*() effilure/S*() efflanquée/F*() efflanquer/a4a+() effleurage/S*() effleurée/F*() effleurement/S*() effleurer/a2a+() effleurie/F*() effleurir/f1() effloraison/S*() efflorescence/S*() efflorescente/F*() effluence/S*() effluente/F*() effluve/S*() effluver/a1() effondrée/F*() effondrement/S*() effondrer/a4a+() efforcer/a3a+() effort/S*() effraction/S*() effractive/F*() effrangée/F*() effranger/a4a+() effrayante/F*() effrayée/F*() effrayer/a4a+() effrénée/F*() effritée/F*() effritement/S*() effriter/a4a+() effroi/S*() effrontée/F*() effrontément/D'Q' effronterie/S*() effroyable/S*() effroyablement/D'Q' effusion/S*() effusive/F*() éfourceau/X*() égagropile/S*() égaiement/S*() égaillée/F*() égailler/a3a+() égalable/S*() égale/W*() égalée/F*() également/D'Q' égaler/a2a+() égalisation/S*() égalisatrice/F*() égalisée/F*() égaliser/a2a+() égaliseur/S*() égalitaire/S*() égalitarisme/S*() égalitariste/S*() égalité/S*() égard/S*() égarée/F*() égarement/S*() égarer/a4a+() égayante/F*() égayée/F*() égayement/S*() égayer/a4a+() égéenne/F*() égérie/S*() égermage/S*() égermée/F*() égermer/a2a+() égide/S*() égipan/S*() églantier/S*() églantine/S*() églefin/S*() église/S*() églogue/S*() égnaffer ego ego/L'D'Q' égocentrique/S*() égocentrisme/S*() égoïne/S*() égoïner égoïsme/S*() égoïste/S*() égoïstement/D'Q' égorgée/F*() égorgement/S*() égorger/a4a+() égorgeuse/F*() égosiller/a3a+() égotisme/S*() égotiste/S*() égout/S*() égoutière/F*() égouttage/S*() égouttement/S*() égoutter/a4a+() égouttoir/S*() égoutture/S*() égrainage/S*() égrainée/F*() égrainer/a4a+() égrappage/S*() égrappée/F*() égrapper/a2a+() égrappoir/S*() égratignée/F*() égratigner/a4a+() égratignure/S*() égravillonnée/F*() égravillonner/a2a+() égrégore/S*() égrenage/S*() égrenée/F*() égrènement/S*() égrener/b4a+() égreneuse/S*() égrillarde/F*() égrisage/S*() égrisée/F*() égriser/a2a+() égrotante/F*() égrugeage/S*() égrugée/F*() égrugeoir/S*() égruger/a2a+() égrugeure/S*() égueulée/F*() égueulement/S*() égueuler/a2a+() égyptienne/F*() égyptologie/S*() égyptologique/S*() égyptologue/S*() eh éhontée/F*() éhontément/D'Q' eider/S*() eidétique/S*() einsteinium/S*() éjaculateur/S*() éjaculation/S*() éjaculer/a2a+() éjarrer/a2a+() éjectable/S*() éjectée/F*() éjecter/a4a+() éjecteur/S*() éjection/S*() éjointée/F*() éjointer/a2a+() élaboration/S*() élaborée/F*() élaborer/a4a+() élagage/S*() élaguée/F*() élaguer/a2a+() élagueuse/F*() élan/S*() élancée/F*() élancement/S*() élancer/a4a+() élargie/F*() élargir/f4f+() élargissement/S*() élasticimétrie/S*() élasticité/S*() élastine/S*() élastique/S*() élastomère/S*() élavée/F*() elbeuf/S*() elbot/S*() eldorado/S*() e-learning/S*() éléatique/S*() élection/S*() élective/F*() électivité/S*() électorale/W*() électoralement/D'Q' électoralisme/S*() électoraliste/S*() électorat/S*() électrice/F*() électricienne/F*() électricité/S*() électrification/S*() électrifiée/F*() électrifier/a2a+() électrique/S*() électriquement/D'Q' électrisable/S*() électrisante/F*() électrisation/S*() électrisée/F*() électriser/a2a+() électroacousticienne/F*() électroacoustique/S*() électroaimant/S*() électrobiologie/S*() électrocardiogramme/S*() électrocardiographe/S*() électrocardiographie/S*() électrocautère/S*() électrochimie/S*() électrochimique/S*() électrochoc/S*() électrocoagulation/S*() électrocutée/F*() électrocuter/a4a+() électrocution/S*() électrode/S*() électrodiagnostic/S*() électrodynamique/S*() électrodynamomètre/S*() électroencéphalogramme/S*() électroencéphalographe/S*() électroencéphalographie/S*() électrofaible/S*() électrogène/S*() électrologie/S*() électroluminescence/S*() électroluminescente/F*() électrolysable/S*() électrolyse/S*() électrolysée/F*() électrolyser/a2a+() électrolyte/S*() électrolytique/S*() électromagnétique/S*() électromagnétisme/S*() électromécanique/S*() électroménager/S*() électroménagiste/S*() électrométallurgie/S*() électromotrice/F*() électron/S*() électronégative/F*() électronégativité/S*() électronicienne/F*() électronique/S*() électroniquement/D'Q' électronisation/S*() électronisée/F*() électroniser/a2a+() électronvolt/Um() électro-oculogramme/S*() électro-oculographie/S*() électro-optique/S*() électro-osmose/S*() électro-osmotique/S*() électrophone/S*() électrophorèse/S*() électrophotographie/S*() électrophotographique/S*() électrophysiologie/S*() électropneumatique/S*() électropositive/F*() électropuncture/S*() électroradiologie/S*() électroradiologiste/S*() électroscope/S*() électrostatique/S*() électrostriction/S*() électrotechnicienne/F*() électrotechnique/S*() électrothérapie/S*() électrothermie/S*() électrothermique/S*() électrovalence/S*() électrovanne/S*() électrum/S*() électuaire/S*() élégamment/D'Q' élégance/S*() élégante/F*() élégiaque/S*() élégie/S*() élégir/f2f+() éléis/L'D'Q' élément/S*() élémentaire/S*() éléphante/F*() éléphanteau/X*() éléphantesque/S*() éléphantiasique/S*() éléphantiasis/L'D'Q' éléphantine/F*() élevage/S*() élévation/S*() élévatoire/S*() élévatrice/F*() élève/S*() élevée/F*() élèvement/S*() élever/b4a+() éleveuse/F*() elfe/S*() elfique/S*() éliciteur/S*() élidée/F*() élider/a4a+() éligibilité/S*() éligible/S*() élimée/F*() élimer/a2a+() éliminable/S*() élimination/S*() éliminatoire/S*() éliminatrice/F*() éliminée/F*() éliminer/a4a+() élingue/S*() élinguée/F*() élinguer/a2a+() élire/yB() élisabéthaine/F*() élision/S*() élitaire/S*() élite/S*() élitisme/S*() élitiste/S*() élixir/S*() elle/D'Q'S. elle-même/D'Q' elles-mêmes/D'Q' ellipse/S*() ellipsoïdale/W*() ellipsoïde/S*() ellipticité/S*() elliptique/S*() elliptiquement/D'Q' élocution/S*() élodée/S*() éloge/S*() élogieuse/W*() élogieusement/D'Q' éloignée/F*() éloignement/S*() éloigner/a4a+() élongation/S*() élongée/F*() élonger/a2a+() éloquemment/D'Q' éloquence/S*() éloquente/F*() élucidation/S*() élucidée/F*() élucider/a2a+() élucubration/S*() élucubrée/F*() élucubrer/a2a+() éludée/F*() éluder/a2a+() élue/F*() éluer/a2a+() élusive/F*() éluviale/W*() éluvion/S*() élyséenne/F*() élytre/S*() elzévir/S*() elzévirienne/F*() émaciation/S*() émaciée/F*() émacier/a4a+() e-mail/S*() émail/X*() émaillage/S*() émaillée/F*() émailler/a2a+() émaillerie/S*() émailleuse/F*() émaillure/S*() émanation/S*() émanche/S*() émanchure/S*() émancipation/S*() émancipatrice/F*() émancipée/F*() émanciper/a4a+() émanée/F*() émaner/a1() émargée/F*() émargement/S*() émarger/a2a+() émasculation/S*() émasculée/F*() émasculer/a2a+() embabouiner/a2a+() embâcle/S*() emballage/S*() emballée/F*() emballement/S*() emballer/a4a+() emballeuse/F*() emballottée/F*() emballotter/a2a+() embaluchonnée/F*() embaluchonner/a2a+() embarbouillée/F*() embarbouiller/a4a+() embarcadère/S*() embarcation/S*() embardée/S*() embarder/a4a+() embardoufler/a4a+() embargo/S*() embarquée/F*() embarquement/S*() embarquer/a4a+() embarras/L'D'Q' embarrassante/F*() embarrassée/F*() embarrasser/a4a+() embarrée/F*() embarrer/a4a+() embase/S*() embasement/S*() embastillée/F*() embastiller/a2a+() embastionnée/F*() embastionner/a2a+() embattage/S*() embattre/uA() embattue/F*() embauchage/S*() embauche/S*() embauchée/F*() embaucher/a4a+() embaucheuse/F*() embauchoir/S*() embaumée/F*() embaumement/S*() embaumer/a2a+() embaumeuse/F*() embecquer/a2a+() embecqueter embéguiner/a3a+() embellie/F*() embellie/S*() embellir/f4f+() embellissement/S*() emberlificotée/F*() emberlificoter/a4a+() emberlificoteuse/F*() embêtante/F*() embêtée/F*() embêtement/S*() embêter/a4a+() embidonnée/F*() embidonner/a2a+() embistrouiller emblavage/S*() emblavée/F*() emblaver/a2a+() emblavure/S*() emblématique/S*() emblème/S*() embobelinée/F*() embobeliner/a2a+() embobinée/F*() embobiner/a2a+() emboire/xD() emboîtable/S*() emboîtage/S*() emboîtée/F*() emboîtement/S*() emboîter/a4a+() emboîture/S*() embolie/S*() embolisation/S*() embolisme/S*() embonpoint/S*() embossage/S*() embossée/F*() embosser/a4a+() embosseuse/F*() embottelée/F*() embotteler/d2a+() emboucaner/a1() embouchée/F*() emboucher/a2a+() embouchoir/S*() embouchure/S*() embouée/F*() embouer/a2a+() embouquement/S*() embouquer/a2a+() embourbée/F*() embourber/a4a+() embourgeoisée/F*() embourgeoisement/S*() embourgeoiser/a4a+() embourrée/F*() embourrer/a4a+() embourrure/S*() embout/S*() embouteillage/S*() embouteillée/F*() embouteiller/a2a+() embouteilleuse/F*() embouter/a2a+() emboutie/F*() emboutir/f2f+() emboutissage/S*() emboutisseuse/F*() emboutissoir/S*() embranchée/F*() embranchement/S*() embrancher/a4a+() embraquée/F*() embraquer/a2a+() embrasée/F*() embrasement/S*() embraser/a4a+() embrassade/S*() embrassée/F*() embrassement/S*() embrasser/a4a+() embrasseuse/F*() embrasure/S*() embratteler/d4a+() embrayage/S*() embrayée/F*() embrayer/a2a+() embrelée/F*() embreler/d2a+() embrevée/F*() embrèvement/S*() embrever/b2a+() embrigadée/F*() embrigadement/S*() embrigader/a4a+() embringuée/F*() embringuer/a4a+() embrocation/S*() embrochée/F*() embrochement/S*() embrocher/a4a+() embronchée/F*() embronchement/S*() embroncher/a2a+() embrouillage/S*() embrouillamini/S*() embrouille/S*() embrouillée/F*() embrouillement/S*() embrouiller/a4a+() embroussaillée/F*() embroussailler/a4a+() embrumée/F*() embrumer/a2a+() embrun/S*() embrunie/F*() embrunir/f2f+() embryogenèse/S*() embryogénie/S*() embryogénique/S*() embryologie/S*() embryologique/S*() embryologiste/S*() embryon/S*() embryonnaire/S*() embryonnée/F*() embryopathie/S*() embryophagie/S*() embryotome/S*() embryotomie/S*() embûche/S*() embue/F*() embuée/F*() embuer/a4a+() embuscade/S*() embusquée/F*() embusquer/a4a+() éméchée/F*() émécher/c2a+() émeraude/S*() émergée/F*() émergence/S*() émergente/F*() émerger/a1() émeri/S*() émerillon/S*() émerillonnée/F*() émerillonner/a2a+() émerisée/F*() émeriser/a2a+() émérite/S*() émersion/S*() émerveillée/F*() émerveillement/S*() émerveiller/a4a+() émétine/S*() émétique/S*() émettre/vA() émettrice/F*() émeu/S*() émeute/S*() émeutière/F*() émiée/F*() émier/a2a+() émiettée/F*() émiettement/S*() émietter/a4a+() émigrante/F*() émigration/S*() émigrée/F*() émigrer/a1() émincée/F*() émincer/a2a+() éminemment/D'Q' éminence/S*() éminente/F*() éminentissime/S*() émir/S*() émirat/S*() émise/F*() émissaire/S*() émission/S*() émissive/F*() émissivité/S*() émissole/S*() emmagasinage/S*() emmagasinée/F*() emmagasiner/a2a+() emmaillotée/F*() emmaillotement/S*() emmailloter/a4a+() emmanchée/F*() emmanchement/S*() emmancher/a4a+() emmanchure/S*() emmantelée/F*() emmanteler/d4a+() emmargée/F*() emmarger/a2a+() emmêlée/F*() emmêlement/S*() emmêler/a4a+() emménagée/F*() emménagement/S*() emménager/a2a+() emménagogue/S*() emmenée/F*() emmener/b2a+() emmental/S*() emmerdante/F*() emmerde/S*() emmerdée/F*() emmerdement/S*() emmerder/a4a+() emmerderesse/S*() emmerdeuse/F*() emmétrée/F*() emmétrer/c2a+() emmétrope/S*() emmétropie/S*() emmiellée/F*() emmieller/a2a+() emmitonnée/F*() emmitonner/a2a+() emmitouflée/F*() emmitoufler/a4a+() emmortaisée/F*() emmortaiser/a2a+() emmottée/F*() emmouscaillée/F*() emmouscailler/a2a+() emmurée/F*() emmurer/a4a+() emmuselée/F*() emmuseler émoi/S*() émolliente/F*() émolument/S*() émonctoire/S*() émondage/S*() émondée/F*() émonder/a2a+() émondeur/S*() émondoir/S*() émorfilage/S*() émorfiler/a2a+() émoticône/S*() émotion/S*() émotionnable/S*() émotionnelle/F*() émotionner/a2a+() émotive/F*() émotivité/S*() émottage/S*() émottée/F*() émotter/a2a+() émotteuse/F*() émou/S*() émouchée/F*() émoucher/a2a+() émouchet/S*() émoucheter/d2a+() émouchette/S*() émouchoir/S*() émoudre/xP() émoulage/S*() émouleur/S*() émoulue/F*() émoussée/F*() émoussement/S*() émousser/a4a+() émoustillante/F*() émoustillée/F*() émoustiller/a4a+() émouvante/F*() émouvoir/pH() empaffée/F*() empaffer/a2a+() empagement/S*() empaillage/S*() empaillée/F*() empaillement/S*() empailler/a2a+() empailleuse/F*() empalée/F*() empalement/S*() empaler/a4a+() empaleuse/F*() empalmer/a2a+() empan/S*() empanachée/F*() empanacher/a2a+() empannage/S*() empannée/F*() empanner/a2a+() empapaouter/a2a+() empapillotée/F*() empapilloter/a2a+() empaquetage/S*() empaquetée/F*() empaqueter/d2a+() empaqueteuse/F*() emparer/a3a+() emparquée/F*() emparquer/a2a+() empâtée/F*() empâtement/S*() empâter/a4a+() empathie/S*() empathique/S*() empattée/F*() empattement/S*() empatter/a2a+() empaumée/F*() empaumer/a2a+() empaumure/S*() empêchée/F*() empêchement/S*() empêcher/a4a+() empêcheuse/F*() empeigne/S*() empeignée/F*() empeigner/a2a+() empênée/F*() empêner/a2a+() empennage/S*() empenne/S*() empennée/F*() empennelée/F*() empenneler/d2a+() empenner/a2a+() emperchée/F*() empercher/a2a+() empereur/S*() emperlée/F*() emperler/a2a+() empesage/S*() empesée/F*() empeser/b2a+() empestée/F*() empester/a2a+() empêtrée/F*() empêtrer/a4a+() emphase/S*() emphatique/S*() emphatiquement/D'Q' emphysémateuse/W*() emphysème/S*() emphytéose/S*() emphytéote/S*() emphytéotique/S*() empiècement/S*() empiégée/F*() empiéger/c2a+() empierrée/F*() empierrement/S*() empierrer/a2a+() empiétement/S*() empiéter/c1() empiffrée/F*() empiffrer/a3a+() empilage/S*() empilée/F*() empilement/S*() empiler/a4a+() empileuse/F*() empire/S*() empirer/a4a+() empiriocriticisme/S*() empirique/S*() empiriquement/D'Q' empirisme/S*() empiriste/S*() emplacement/S*() emplafonner/a4a+() emplanture/S*() emplâtre/S*() emplâtrée/F*() emplâtrer/a2a+() emplette/S*() emplie/F*() emplir/f4f+() emplissage/S*() emploi/S*() employabilité/S*() employable/S*() employée/F*() employer/a4a+() employeuse/F*() emplumée/F*() emplumer/a2a+() empochée/F*() empocher/a2a+() empoignade/S*() empoignante/F*() empoignée/F*() empoigner/a4a+() empointure/S*() empois/L'D'Q' empoisonnante/F*() empoisonnée/F*() empoisonnement/S*() empoisonner/a4a+() empoisonneuse/F*() empoissée/F*() empoisser/a2a+() empoissonnée/F*() empoissonnement/S*() empoissonner/a2a+() emporium/S*() emport/S*() emportée/F*() emportement/S*() emporte-pièce/L'D'Q' emporter/a4a+() empotée/F*() empoter/a2a+() empourprée/F*() empourprer/a4a+() empoussiérée/F*() empoussiérer/c4a+() empreindre/wB() empreinte/F*() empreinte/S*() empressée/F*() empressement/S*() empresser/a3a+() emprésurée/F*() emprésurer/a2a+() emprise/S*() emprisonnée/F*() emprisonnement/S*() emprisonner/a4a+() emprunt/S*() empruntée/F*() emprunter/a2a+() emprunteuse/F*() empuantie/F*() empuantir/f2f+() empuantissement/S*() empuse/S*() empyème/S*() empyrée/S*() empyreumatique/S*() empyreume/S*() émue/F*() émulation/S*() émulatrice/F*() émule/S*() émulée/F*() émuler/a2a+() émulseur/S*() émulsifiable/S*() émulsifiante/F*() émulsifiée/F*() émulsifier/a2a+() émulsine/S*() émulsion/S*() émulsionnée/F*() émulsionner/a2a+() émulsive/F*() en/Q'Qjn'd'j'l'm't's' enamourée/F*() énamourée/F*() énamourer/a3a+() énanthème/S*() énantiomorphe/S*() énantiotrope/S*() énarque/S*() énarthrose/S*() en-avant/L'D'Q' en-but encabanage/S*() encabanée/F*() encabaner/a2a+() encablure/S*() encadrante/F*() encadré/S*() encadrée/F*() encadrement/S*() encadrer/a4a+() encadreuse/F*() encagée/F*() encagement/S*() encager/a2a+() encagoulée/F*() encagouler/a4a+() encaissable/S*() encaissage/S*() encaisse/S*() encaissée/F*() encaissement/S*() encaisser/a2a+() encaisseur/S*() encalminée/F*() encan/S*() encanaillée/F*() encanaillement/S*() encanailler/a4a+() encaper encapsulage/S*() encapsulation/S*() encapsulée/F*() encapsuler/a2a+() encapuchonnée/F*() encapuchonner/a4a+() encaquée/F*() encaquement/S*() encaquer/a2a+() encarrer encart/S*() encartage/S*() encartée/F*() encarter/a2a+() encarteuse/S*() encartonnée/F*() encartonner/a2a+() encartouchée/F*() encartoucher/a2a+() en-cas/L'D'Q' encasernée/F*() encaserner/a2a+() encastelée/F*() encasteler/b3a+() encastelure/S*() encastrable/S*() encastrée/F*() encastrement/S*() encastrer/a4a+() encaustiquage/S*() encaustique/S*() encaustiquée/F*() encaustiquer/a2a+() encavage/S*() encavée/F*() encavement/S*() encaver/a2a+() enceindre/wB() enceinte/F*() enceinte/S*() enceinter/a2a+() encens/L'D'Q' encensée/F*() encensement/S*() encenser/a4a+() encenseuse/F*() encensoir/S*() encéphale/S*() encéphalique/S*() encéphalite/S*() encéphalogramme/S*() encéphalographie/S*() encéphalopathie/S*() encerclée/F*() encerclement/S*() encercler/a2a+() enchaînée/F*() enchaînement/S*() enchaîner/a4a+() enchantée/F*() enchanteler enchantement/S*() enchanter/a4a+() enchanteresse/F*() enchaperonnée/F*() enchaperonner/a2a+() encharnée/F*() encharner/a2a+() enchâssée/F*() enchâssement/S*() enchâsser/a4a+() enchâssure/S*() enchatonnée/F*() enchatonnement/S*() enchatonner/a2a+() enchaussée/F*() enchausser/a2a+() enchemisage/S*() enchemisée/F*() enchemiser/a2a+() enchère/S*() enchérie/F*() enchérir/f2f+() enchérissement/S*() enchérisseuse/F*() enchetarder enchevalement/S*() enchevauchée/F*() enchevaucher/a2a+() enchevauchure/S*() enchevêtrée/F*() enchevêtrement/S*() enchevêtrer/a4a+() enchevêtrure/S*() enchifrenée/F*() enchifrènement/S*() enchifrener/b2a+() enchtiber enchtourber encirée/F*() encirer/a2a+() enclave/S*() enclavée/F*() enclavement/S*() enclaver/a4a+() enclenchée/F*() enclenchement/S*() enclencher/a4a+() encline/F*() encliquetage/S*() encliquetée/F*() encliqueter/d2a+() enclitique/S*() encloîtrée/F*() encloîtrer/a2a+() encloquer enclore/rA() enclos/L'D'Q' enclose/F*() enclouée/F*() enclouer/a2a+() enclouure/S*() enclume/S*() encoche/S*() encochée/F*() encocher/a2a+() encodage/S*() encodée/F*() encoder/a2a+() encodeuse/F*() encoffrée/F*() encoffrer/a2a+() encoignure/S*() encollage/S*() encollée/F*() encoller/a2a+() encolleuse/F*() encolure/S*() encombrante/F*() encombrée/F*() encombrement/S*() encombrer/a4a+() encontre/L' encorbellement/S*() encordée/F*() encorder/a4a+() encore/D'Q' encornée/F*() encorner/a2a+() encornet/S*() encourageante/F*() encouragée/F*() encouragement/S*() encourager/a4a+() encourir/iE() en-cours/L'D'Q' encourue/F*() encrage/S*() encrassée/F*() encrassement/S*() encrasser/a4a+() encre/S*() encrée/F*() encrêpée/F*() encrêper/a2a+() encrer/a2a+() encreur/S*() encrier/S*() encrine/S*() encrister encrouée/F*() encroumer encroûtée/F*() encroûtement/S*() encroûter/a4a+() encryptage/S*() encrypter/a2a+() enculée/F*() enculer/a2a+() encuvage/S*() encuvée/F*() encuver/a2a+() encyclique/S*() encyclopédie/S*() encyclopédique/S*() encyclopédisme/S*() encyclopédiste/S*() endaubée/F*() endauber/a2a+() endéans endémie/S*() endémique/S*() endémisme/S*() endentée/F*() endenter/a2a+() endettée/F*() endettement/S*() endetter/a4a+() endeuillée/F*() endeuiller/a2a+() endêvée/F*() endêver endiablée/F*() endiabler/a2a+() endigage/S*() endiguée/F*() endiguement/S*() endiguer/a2a+() endimanchée/F*() endimancher/a4a+() endive/S*() endivisionnée/F*() endivisionner/a2a+() endoblaste/S*() endocarde/S*() endocardite/S*() endocarpe/S*() endocrine/S*() endocrinienne/F*() endocrinologie/S*() endocrinologiste/S*() endocrinologue/S*() endoctrinée/F*() endoctrinement/S*() endoctriner/a2a+() endoderme/S*() endogame/S*() endogamie/S*() endogamique/S*() endogène/S*() endolorie/F*() endolorir/f2f+() endolorissement/S*() endomètre/S*() endométrite/S*() endommagée/F*() endommagement/S*() endommager/a2a+() endomorphisme/S*() endonymie/S*() endoplasme/S*() endoplasmique/S*() endormante/F*() endormeuse/F*() endormie/F*() endormir/iJ() endormissement/S*() endorphine/S*() endos/L'D'Q' endoscope/S*() endoscopie/S*() endoscopique/S*() endosmomètre/S*() endosmose/S*() endosquelette/S*() endossable/S*() endossataire/S*() endossée/F*() endossement/S*() endosser/a2a+() endosseur/S*() endothéliale/W*() endothélium/S*() endotherme/S*() endothermique/S*() endotoxine/S*() endroit/S*() enduire/yM() enduiseuse/F*() enduit/S*() enduite/F*() endurable/S*() endurance/S*() endurante/F*() endurcie/F*() endurcir/f4f+() endurcissement/S*() endurée/F*() endurer/a2a+() enduro/S*() endymion/S*() énergéticienne/F*() énergétique/S*() énergétiquement/D'Q' énergétisme/S*() énergie/S*() énergique/S*() énergiquement/D'Q' énergisante/F*() énergivore/S*() énergumène/S*() énervante/F*() énervation/S*() énervée/F*() énervement/S*() énerver/a4a+() enfaîteau/X*() enfaîtée/F*() enfaîtement/S*() enfaîter/a2a+() enfance/S*() enfant/S*() enfantée/F*() enfantement/S*() enfanter/a2a+() enfantillage/S*() enfantine/F*() enfarinée/F*() enfariner/a2a+() enfer/S*() enfermée/F*() enfermement/S*() enfermer/a4a+() enferrée/F*() enferrer/a4a+() enfeu/S*() enficelée/F*() enficeler enfichable/S*() enfichée/F*() enficher/a2a+() enfiellée/F*() enfieller/a2a+() enfiévrée/F*() enfiévrer/c4a+() enfilade/S*() enfilage/S*() enfilée/F*() enfiler/a4a+() enfileuse/F*() enfin/D'Q' enfirouapée/F*() enfirouaper/a2a+() enflammée/F*() enflammer/a4a+() enfléchée/F*() enflécher/c2a+() enfléchure/S*() enflée/F*() enfler/a4a+() enfleurage/S*() enfleurée/F*() enfleurer/a2a+() enflure/S*() enfoirée/F*() enfoirer enfoncée/F*() enfoncement/S*() enfoncer/a4a+() enfonceuse/F*() enfonçure/S*() enforcir/f1() enfouie/F*() enfouiller enfouir/f4f+() enfouissement/S*() enfouisseur/S*() enfourailler enfourchée/F*() enfourchement/S*() enfourcher/a2a+() enfourchure/S*() enfournage/S*() enfournée/F*() enfournement/S*() enfourner/a4a+() enfreindre/wB() enfreinte/F*() enfuir/iO() enfumage/S*() enfumée/F*() enfumer/a4a+() enfûtage/S*() enfutaillée/F*() enfutailler/a2a+() enfûtée/F*() enfûter/a2a+() engageante/F*() engagée/F*() engagement/S*() engager/a4a+() engainée/F*() engainer/a2a+() engamée/F*() engamer/a2a+() engargoussée/F*() engargousser/a2a+() engavée/F*() engaver/a2a+() engazonnée/F*() engazonnement/S*() engazonner/a2a+() engazonneuse/F*() engeance/S*() engelure/S*() engendrable/S*() engendrée/F*() engendrement/S*() engendrer/a2a+() engerbée/F*() engerber/a2a+() engin/S*() englacée/F*() englacer/a2a+() englobante/F*() englobée/F*() englober/a2a+() engloutie/F*() engloutir/f4f+() engloutissement/S*() engluage/S*() engluée/F*() engluement/S*() engluer/a4a+() engobage/S*() engobée/F*() engober/a2a+() engommage/S*() engommée/F*() engommer/a2a+() engoncée/F*() engoncer/a2a+() engorgée/F*() engorgement/S*() engorger/a4a+() engouée/F*() engouement/S*() engouer/a3a+() engouffrée/F*() engouffrement/S*() engouffrer/a4a+() engoulée/F*() engouler/a2a+() engoulevent/S*() engourdie/F*() engourdir/f4f+() engourdissement/S*() engrais/L'D'Q' engraissage/S*() engraissée/F*() engraissement/S*() engraisser/a4a+() engraisseuse/F*() engramme/S*() engrangée/F*() engrangement/S*() engranger/a2a+() engravée/F*() engraver/a2a+() engrêlée/F*() engrêlure/S*() engrenage/S*() engrenée/F*() engrener/b4a+() engreneuse/F*() engrois/L'D'Q' engrossée/F*() engrosser/a2a+() engrumelée/F*() engrumeler/d4a+() engueulade/S*() engueulée/F*() engueuler/a4a+() enguichée/F*() enguichure/S*() enguirlandée/F*() enguirlander/a2a+() enhardie/F*() enhardir/f4f+() enharmonie/S*() enharmonique/S*() enharnachée/F*() enharnacher/a2a+() enherbée/F*() enherber/a2a+() éniellée/F*() énieller/a2a+() énième/S*() énigmatique/S*() énigmatiquement/D'Q' énigme/S*() enivrante/F*() enivrée/F*() enivrement/S*() enivrer/a4a+() enjambée/F*() enjambement/S*() enjamber/a2a+() enjavelée/F*() enjaveler/d2a+() enjeu/X*() enjoindre/wB() enjointe/F*() enjôlée/F*() enjôlement/S*() enjôler/a2a+() enjôleuse/F*() enjolivée/F*() enjolivement/S*() enjoliver/a4a+() enjoliveur/S*() enjolivure/S*() enjoncée/F*() enjoncer/a2a+() enjouée/F*() enjouement/S*() enjouer/a2a+() enjuguée/F*() enjuguer/a2a+() enjuivée/F*() enjuiver/a4a+() enjuponnée/F*() enjuponner/a2a+() enképhaline/S*() enkystée/F*() enkystement/S*() enkyster/a3a+() enlacée/F*() enlacement/S*() enlacer/a4a+() enlaidie/F*() enlaidir/f4f+() enlaidissement/S*() enlevage/S*() enlevée/F*() enlèvement/S*() enlever/b4a+() enlevure/S*() enliassée/F*() enliasser/a2a+() enliée/F*() enlier/a2a+() enlignée/F*() enligner/a2a+() enlisée/F*() enlisement/S*() enliser/a4a+() enluminée/F*() enluminer/a2a+() enlumineuse/F*() enluminure/S*() ennéade/S*() ennéagonale/W*() ennéagone/S*() ennealogie/S*() enneigée/F*() enneigement/S*() enneiger/a2a+() ennemie/F*() ennoblie/F*() ennoblir/f2f+() ennoblissement/S*() ennuagée/F*() ennuager/a4a+() ennui/S*() ennuyante/F*() ennuyée/F*() ennuyer/a4a+() ennuyeuse/W*() ennuyeusement/D'Q' énoncé/S*() énoncée/F*() énoncer/a4a+() énonciation/S*() énonciative/F*() énonciatrice/F*() enorgueillie/F*() enorgueillir/f4f+() énorme/S*() énormément/D'Q' énormité/S*() énostose/S*() énouée/F*() énouer/a2a+() enquérir/iM() enquerre enquête/S*() enquêtée/F*() enquêter/a1() enquêteuse/F*() enquêtrice/S*() enquiller/a1() enquiquinante/F*() enquiquinée/F*() enquiquinement/S*() enquiquiner/a4a+() enquiquineuse/F*() enracinée/F*() enracinement/S*() enraciner/a4a+() enrageante/F*() enragée/F*() enrager/a1() enraiement/S*() enraillée/F*() enrailler/a2a+() enrayage/S*() enrayée/F*() enrayement/S*() enrayer/a4a+() enrayoir/S*() enrayure/S*() enrégimentée/F*() enrégimenter/a2a+() enregistrable/S*() enregistrée/F*() enregistrement/S*() enregistrer/a4a+() enregistreuse/F*() enrênée/F*() enrênement/S*() enrêner/a2a+() enrésiner/a2a+() enrhumée/F*() enrhumer/a4a+() enrhuner enrichie/F*() enrichir/f4f+() enrichissante/F*() enrichissement/S*() enrobage/S*() enrobée/F*() enrobement/S*() enrober/a4a+() enrobeuse/S*() enrochée/F*() enrochement/S*() enrocher/a2a+() enrôlée/F*() enrôlement/S*() enrôler/a4a+() enrôleur/S*() enrouée/F*() enrouement/S*() enrouer/a4a+() enrouiller/a3a+() enroulée/F*() enroulement/S*() enrouler/a4a+() enrouleuse/F*() enrubannage/S*() enrubannée/F*() enrubanner/a4a+() enrubanneuse/S*() ensablée/F*() ensablement/S*() ensabler/a4a+() ensabotée/F*() ensaboter/a2a+() ensachage/S*() ensachée/F*() ensacher/a2a+() ensacheuse/F*() ensaisinée/F*() ensaisiner/a2a+() ensanglantée/F*() ensanglanter/a2a+() ensauvagée/F*() ensauvager/a2a+() ensauvée/F*() ensauver/a3a+() enseignante/F*() enseigne/S*() enseignée/F*() enseignement/S*() enseigner/a4a+() enseigniste/S*() ensemble/D'Q' ensemble/S*() ensemblier/S*() ensembliste/S*() ensemencée/F*() ensemencement/S*() ensemencer/a2a+() enserrée/F*() enserrer/a2a+() ensevelie/F*() ensevelir/f4f+() ensevelissement/S*() ensevelisseuse/F*() ensiforme/S*() ensilage/S*() ensilée/F*() ensiler/a2a+() en-soi/L'D'Q' ensoleillée/F*() ensoleillement/S*() ensoleiller/a2a+() ensommeillée/F*() ensorcelante/F*() ensorcelée/F*() ensorceler/d2a+() ensorceleuse/F*() ensorcellement/S*() ensoufrée/F*() ensoufrer/a2a+() ensouple/S*() ensoutanée/F*() ensoutaner/a2a+() enstérée/F*() enstérer/c2a+() ensuite/D'Q' ensuivre/xR() ensuquer/a2a+() entablée/F*() entablement/S*() entabler/a4a+() entachée/F*() entacher/a2a+() entaillage/S*() entaille/S*() entaillée/F*() entailler/a4a+() entame/S*() entamée/F*() entamer/a2a+() entaquée/F*() entaquer/a2a+() entarter/a2a+() entartrage/S*() entartrée/F*() entartrer/a4a+() entassée/F*() entassement/S*() entasser/a4a+() entée/F*() entéléchie/S*() entendante/F*() entendement/S*() entendeur/S*() entendre/tA() entendue/F*() enténébrée/F*() enténébrer/c4a+() entente/S*() enter/a2a+() entéralgie/S*() entérinée/F*() entérinement/S*() entériner/a2a+() entérique/S*() entérite/S*() entérocolite/S*() entérocoque/S*() entérokinase/S*() entéropneuste/S*() entéro-rénale/W*() entérotoxine/S*() entérovaccin/S*() enterrage/S*() enterrée/F*() enterrement/S*() enterrer/a4a+() entêtante/F*() en-tête/S*() entêtée/F*() entêtement/S*() entêter/a4a+() enthalpie/S*() enthousiasmante/F*() enthousiasme/S*() enthousiasmée/F*() enthousiasmer/a4a+() enthousiaste/S*() enthymème/S*() entichée/F*() entichement/S*() enticher/a3a+() entière/F*() entièrement/D'Q' entièreté/S*() entifler/a4a+() entité/S*() entoilage/S*() entoilée/F*() entoiler/a2a+() entoir/S*() entôlage/S*() entôlée/F*() entôler/a2a+() entolome/S*() entomologie/S*() entomologique/S*() entomologiste/S*() entomophage/S*() entomophile/S*() entonnage/S*() entonnaison/S*() entonnée/F*() entonnement/S*() entonner/a2a+() entonnoir/S*() entorse/S*() entorser/a1() entortillage/S*() entortillée/F*() entortillement/S*() entortiller/a4a+() entour/S*() entourage/S*() entourée/F*() entourer/a4a+() entourloupe/S*() entourlouper/a2a+() entourloupette/S*() entournure/S*() entraccorder/a8a+() entraccuser/a8a+() entracte/S*() entradmirer/a8a+() entraide/S*() entraider/a8a+() entrailles/D'Q' entr'aimer/a8a+() entrain/S*() entraînable/S*() entraînante/F*() entraînée/F*() entraînement/S*() entraîner/a4a+() entraîneuse/F*() entrante/F*() entrapercevoir/pK() entrave/S*() entravée/F*() entraver/a2a+() entre/D'Q'Qj entrebâillée/F*() entrebâillement/S*() entrebâiller/a4a+() entrebâilleur/S*() entre-bande/S*() entrebattre/uD() entrechat/S*() entrechoquer/a4a+() entrecôte/S*() entrecoupée/F*() entrecouper/a4a+() entrecroisée/F*() entrecroisement/S*() entrecroiser/a4a+() entrecuisse/S*() entre-déchirer/a8a+() entre-détruire/yN() entre-deux/L'D'Q' entre-deux-guerres/L'D' entre-dévorer/a8a+() entrée/F*() entrée/S*() entrefaite/S*() entrefaites entrefer/S*() entrefilet/S*() entre-frapper/a8a+() entregent/S*() entr'égorger/a8a+() entre-haïr/fB() entre-heurter/a8a+() entrejambe/S*() entrelacée/F*() entrelacement/S*() entrelacer/a4a+() entrelacs/L'D'Q' entrelardée/F*() entrelarder/a2a+() entre-ligne/S*() entre-louer/a8a+() entre-manger/a8a+() entremêlée/F*() entremêlement/S*() entremêler/a4a+() entremet/S*() entremetteuse/F*() entremettre/vC() entremise/S*() entre-nerf/S*() entre-nœud/S*() entre-nuire/yX() entrepont/S*() entreposage/S*() entreposée/F*() entreposer/a2a+() entreposeur/S*() entrepositaire/S*() entrepôt/S*() entreprenante/F*() entreprendre/tF() entrepreneure/S*() entrepreneuriale/W*() entrepreneuriat/S*() entrepreneuse/F*() entreprise/F*() entreprise/S*() entrer/a2a+() entre-rail/S*() entre-regarder/a8a+() entresol/S*() entretaille/S*() entretailler/a3a+() entre-temps/D'Q' entretenir/i1i+() entretenue/F*() entretien/S*() entretissée/F*() entre-tisser/a4a+() entretoise/S*() entretoisée/F*() entretoiser/a2a+() entre-tuer/a8a+() entrevoie/S*() entrevoir/pF() entrevous/L'D' entrevoûtée/F*() entrevoûter/a2a+() entrevue/F*() entrevue/S*() entr'hiverner entrisme/S*() entropie/S*() entropion/S*() entropique/S*() entroque/S*() entrouverte/F*() entrouvrir/iC() entubée/F*() entuber/a2a+() enturbannée/F*() enture/S*() énucléation/S*() énucléée/F*() énucléer/a2a+() énumérable/S*() énumération/S*() énumérative/F*() énumérée/F*() énumérer/c2a+() énurésie/S*() envahie/F*() envahir/f2f+() envahissante/F*() envahissement/S*() envahisseur/S*() envasée/F*() envasement/S*() envaser/a4a+() enveloppante/F*() enveloppe/S*() enveloppée/F*() enveloppement/S*() envelopper/a4a+() envenimation/S*() envenimée/F*() envenimement/S*() envenimer/a4a+() envergée/F*() enverger/a2a+() enverguée/F*() enverguer/a2a+() envergure/S*() envers/D'Q' envers/L' envi/L' enviable/S*() enviander/a2a+() envidée/F*() envider/a2a+() envie/S*() enviée/F*() envieillie/F*() envieillir/f4f+() envier/a2a+() envieuse/W*() envieusement/D'Q' envinée/F*() environ/D'Q' environ/S*() environnante/F*() environnée/F*() environnement/S*() environnementale/W*() environnementalement/D'Q' environnementalisme/S*() environnementaliste/S*() environner/a4a+() envisageable/S*() envisagée/F*() envisager/a2a+() envoi/S*() envoilée/F*() envoiler/a3a+() envol/S*() envolée/F*() envoler/a3a+() envoûtante/F*() envoûtée/F*() envoûtement/S*() envoûter/a2a+() envoûteuse/F*() envoyée/F*() envoyer/aD() envoyeuse/F*() enzootie/S*() enzymatique/S*() enzyme/S*() enzymologie/S*() enzymopathie/S*() éocène/S*() éolienne/F*() éolipyle/S*() éolithe/S*() éon/S*() éosine/S*() éosinophile/S*() éosinophilie/S*() épacte/S*() épagneule/F*() épagomène/S*() épair/S*() épaisse/F*() épaisseur/S*() épaissie/F*() épaissir/f4f+() épaississante/F*() épaississement/S*() épaississeur/S*() épalée/F*() épaler/a2a+() épamprage/S*() épamprée/F*() épamprement/S*() épamprer/a2a+() épanchée/F*() épanchement/S*() épancher/a4a+() épandage/S*() épandeuse/F*() épandre/tA() épandue/F*() épannée/F*() épannelage/S*() épannelée/F*() épanneler/d2a+() épanner/a2a+() épanouie/F*() épanouir/f4f+() épanouissante/F*() épanouissement/S*() épar/S*() éparchie/S*() épargnante/F*() épargne/S*() épargnée/F*() épargner/a4a+() éparpillée/F*() éparpillement/S*() éparpiller/a4a+() éparque/S*() éparse/F*() épart/S*() épatamment/D'Q' épatante/F*() épatée/F*() épatement/S*() épater/a4a+() épateuse/F*() épaufrée/F*() épaufrer/a2a+() épaufrure/S*() épaulard/S*() épaule/S*() épaulé/S*() épaulée/F*() épaulé-jeté/L'D'Q' épaulement/S*() épauler/a4a+() épaulés-jetés/D'Q' épaulette/S*() épaulière/S*() épave/S*() épeautre/S*() épée/S*() épeiche/S*() épeichette/S*() épeire/S*() épeirogénique/S*() épéisme/S*() épéiste/S*() épelée/F*() épeler/d4a+() épellation/S*() épendyme/S*() épenthèse/S*() épenthétique/S*() épépinage/S*() épépinée/F*() épépiner/a2a+() épépineuse/F*() éperdre/tD() éperdue/F*() éperdument/D'Q' éperlan/S*() éperon/S*() éperonnée/F*() éperonner/a4a+() épervier/S*() épervière/S*() épervin/S*() épeulée/F*() épeuler/a2a+() épeurée/F*() épeurer/a2a+() éphèbe/S*() éphémère/S*() éphéméride/S*() éphéméroptère/S*() éphod/S*() éphore/S*() épi/S*() épiage/S*() épiaire/S*() épiaison/S*() épicarpe/S*() épice/S*() épicéa/S*() épicée/F*() épicène/S*() épicentre/S*() épicer/a2a+() épicerie/S*() épicière/F*() épiclèse/S*() épicondyle/S*() épicrânienne/F*() épicurienne/F*() épicurisme/S*() épicycle/S*() épicycloïdale/W*() épicycloïde/S*() épidémicité/S*() épidémie/S*() épidémiologie/S*() épidémiologique/S*() épidémique/S*() épiderme/S*() épidermique/S*() épidictique/S*() épididyme/S*() épiée/F*() épier/a4a+() épierrage/S*() épierrée/F*() épierrement/S*() épierrer/a2a+() épieu/X*() épieuse/F*() épigastre/S*() épigastrique/S*() épigée/F*() épigénie/S*() épiglotte/S*() épigone/S*() épigrammatique/S*() épigramme/S*() épigraphe/S*() épigraphie/S*() épigraphique/S*() épigraphiste/S*() épigyne/S*() épilaryngienne/F*() épilation/S*() épilatoire/S*() épilatrice/F*() épilée/F*() épilepsie/S*() épileptiforme/S*() épileptique/S*() épiler/a4a+() épillet/S*() épilobe/S*() épilogue/S*() épiloguée/F*() épiloguer/a4a+() épilogueuse/F*() épimorphisme/S*() épinard/S*() épincée/F*() épincelée/F*() épinceler/d2a+() épincer/a2a+() épincetée/F*() épinceter/d2a+() épine/S*() épinée/F*() épiner/a2a+() épines-vinettes/D'Q' épinette/S*() épineuse/W*() épine-vinette/L'D'Q' épinglage/S*() épingle/S*() épinglée/F*() épingler/a2a+() épinglette/S*() épinglière/F*() épinier/S*() épinière/S*() épinoche/S*() épinochette/S*() épiphane/S*() épiphanie/S*() épiphénomène/S*() épiphénoménisme/S*() épiphénoméniste/S*() épiphyse/S*() épiphyte/S*() épiphytie/S*() épiploon/S*() épique/S*() épirogénique/S*() épiscopale/W*() épiscopalienne/F*() épiscopat/S*() épiscope/S*() épisode/S*() épisodique/S*() épisodiquement/D'Q' épissée/F*() épisser/a2a+() épissoir/S*() épissure/S*() épistasie/S*() épistaxis/L'D'Q' épistémique/S*() épistémologie/S*() épistémologique/S*() épistémologiste/S*() épistémologue/S*() épistolaire/S*() épistolière/F*() épistyle/S*() épitaphe/S*() épitaxie/S*() épite/S*() épithalame/S*() épithéliale/W*() épithélium/S*() épithème/S*() épithète/S*() épitoge/S*() épitomé/S*() épître/S*() épivarder/a3a+() épizootie/S*() épizootique/S*() éplorée/F*() éployée/F*() éployer/a4a+() épluchage/S*() épluchée/F*() épluche-légumes/L'D'Q' éplucher/a2a+() éplucheuse/F*() épluchure/S*() épode/S*() épointage/S*() épointée/F*() épointement/S*() épointer/a2a+() éponge/S*() épongeage/S*() épongée/F*() épongement/S*() éponger/a4a+() éponte/S*() épontille/S*() épontiller/a2a+() éponyme/S*() éponymie/S*() épopée/S*() époque/S*() épouillage/S*() épouillée/F*() épouiller/a4a+() époumoner/a3a+() épousailles/D'Q' épouse/S*() épousée/F*() épouser/a4a+() épouseur/S*() époussetage/S*() époussetée/F*() épousseter/d2a+() époustouflante/F*() époustouflée/F*() époustoufler/a2a+() époutier/a2a+() époutir/f2f+() épouvantable/S*() épouvantablement/D'Q' épouvantail/S*() épouvante/S*() épouvantée/F*() épouvantement/S*() épouvanter/a4a+() époux/L'D'Q' époxyde/S*() épreindre épreinte/S*() éprendre/tG() épreuve/S*() éprise/F*() éprouvante/F*() éprouvée/F*() éprouver/a4a+() éprouvette/S*() epsilon/L'D'Q' epsomite/S*() épucer/a4a+() épuisable/S*() épuisante/F*() épuisée/F*() épuisement/S*() épuiser/a4a+() épuisette/S*() épulide/S*() épulie/S*() épulis/L'D'Q' épulon/S*() épulpeur/S*() épuration/S*() épurative/F*() épuratoire/S*() épuratrice/F*() épure/S*() épurée/F*() épurement/S*() épurer/a4a+() épurge/S*() équanime/S*() équanimité/S*() équarrie/F*() équarrier équarrir/f2f+() équarrissage/S*() équarrissement/S*() équarrisseuse/F*() équarrissoir/S*() équateur/S*() équation/S*() équato-guinéenne/F*() équatorial/X*() équatoriale/W*() équatorienne/F*() équerrage/S*() équerre/S*() équerrer/a2a+() équestre/S*() équeutage/S*() équeutée/F*() équeuter/a2a+() équiangle/S*() équidé/S*() équidimensionnelle/F*() équidistance/S*() équidistante/F*() équilatérale/W*() équilatère/S*() équilibrage/S*() équilibrante/F*() équilibration/S*() équilibre/S*() équilibrée/F*() équilibrer/a4a+() équilibriste/S*() équille/S*() équimoléculaire/S*() équimultiple/S*() équimultiplicité/S*() équine/F*() équinisme/S*() équinoxe/S*() équinoxiale/W*() équipage/S*() équipartition/S*() équipe/S*() équipée/F*() équipement/S*() équipementière/F*() équiper/a4a+() équipière/F*() équipolé/S*() équipollé/S*() équipollence/S*() équipollente/F*() équipotent/S*() équipotentialité/S* équipotentielle/F*() équiprobabilité/S*() équiprobable/S*() équisingularité/S*() équisingulière/F*() équitable/S*() équitablement/D'Q' équitante/F*() équitation/S*() équité/S*() équivalence/S*() équivalent/S*() équivalente/F*() équivaloir/pN() équivariance/S*() équivariante/F*() équivoque/S*() équivoquer/a1() érable/S*() érablière/S*() éradication/S*() éradicatrice/F*() éradiquée/F*() éradiquer/a2a+() éraflée/F*() éraflement/S*() érafler/a4a+() éraflure/S*() éraillée/F*() éraillement/S*() érailler/a4a+() éraillure/S*() érathème/S*() érayée/F*() érayer/a2a+() erbine/S*() erbium/S*() ère/S*() érectile/S*() érectilité/S*() érection/S*() érectrice/F*() éreintage/S*() éreintante/F*() éreintée/F*() éreintement/S*() éreinter/a4a+() éreinteuse/F*() érémitique/S*() érémitisme/S*() érepsine/S*() érésipèle/S*() éréthisme/S*() erg/S*() erg/||-- ergastule/S*() ergodicité/S*() ergodique/S*() ergographe/S*() ergol/S*() ergologie/S*() ergonome/S*() ergonomie/S*() ergonomique/S*() ergonomiste/S*() ergostérol/S*() ergot/S*() ergotage/S*() ergotée/F*() ergoter/a1() ergoteuse/F*() ergothérapeute/S*() ergothérapie/S*() ergotine/S*() ergotisme/S*() éricacée/S*() érigée/F*() ériger/a4a+() érigéron/S*() érigne/S*() érine/S*() érinye/S*() éristale/S*() éristique/S*() erlenmeyer/S*() ermitage/S*() ermite/S*() érodée/F*() éroder/a4a+() érogène/S*() éros/L'D'Q' érosion/S*() érosive/F*() érotique/S*() érotiquement/D'Q' érotisation/S*() érotisée/F*() érotiser/a2a+() érotisme/S*() érotomane/S*() érotomaniaque/S*() érotomanie/S*() errance/S*() errante/F*() errata/L'D'Q' erratique/S*() erratum/L'D'Q' errements/D'Q' errer/a1() erreur/S*() erronée/F*() erronément/D'Q' ers/L'D'Q' ersatz/L'D'Q' erse/S*() erseau/X*() érubescence/S*() érubescente/F*() éruciforme/S*() éructation/S*() éructée/F*() éructer/a2a+() érudite/F*() érudition/S*() érugineuse/W*() éruption/S*() éruptive/F*() érysipélateuse/W*() érysipèle/S*() érythémateuse/W*() érythème/S*() érythréenne/F*() érythrine/S*() érythroblaste/S*() érythroblastose/S*() érythrocyte/S*() érythromycine/S*() érythropoïèse/S*() érythropoïétine/S*() érythrosine/S*() ès es/zI() esbaudir/f3f+() esbignée/F*() esbigner/a3a+() esbroufe/S*() esbroufer/a2a+() esbroufeuse/F*() escabeau/X*() escabelle/S*() escadre/S*() escadrille/S*() escadron/S*() escalade/S*() escaladée/F*() escalader/a2a+() escaladeuse/F*() escalator/S*() escale/S*() escalier/S*() escaliéteuse/F*() escalope/S*() escamotable/S*() escamotage/S*() escamotée/F*() escamoter/a4a+() escamoteuse/F*() escampette/S*() escapade/S*() escape/S*() escarbille/S*() escarbot/S*() escarboucle/S*() escarcelle/S*() escargot/S*() escargotière/S*() escarmouche/S*() escarmoucher/a1() escarole/S*() escarpe/S*() escarpée/F*() escarpement/S*() escarper/a2a+() escarpin/S*() escarpolette/S*() escarre/S*() escarrifiée/F*() escarrifier/a2a+() escharifier eschatologie/S*() eschatologique/S*() esche/S*() eschée/F*() escher/a2a+() escient/S*() esclaffer/a3a+() esclandre/S*() esclavage/S*() esclavager/a2a+() esclavagisme/S*() esclavagiste/S*() esclave/S*() esclavonne/F*() escobar/S*() escobarderie/S*() escoffier/a2a+() escogriffe/S*() escomptable/S*() escompte/S*() escomptée/F*() escompter/a2a+() escompteur/S*() escopette/S*() escorte/S*() escortée/F*() escorter/a2a+() escorteur/S*() escot/S*() escouade/S*() escourgeon/S*() escrime/S*() escrimer/a3a+() escrimeuse/F*() escroc/S*() escroquée/F*() escroquer/a2a+() escroquerie/S*() escudo/S*() esculape/S*() esculine/S*() ésérine/S*() esgourde/S*() esgourder/a2a+() ésotérique/S*() ésotérisme/S*() espace/S*() espacée/F*() espacement/S*() espacer/a4a+() espaces-temps/D'Q' espace-temps/L'D'Q' espada/S*() espadon/S*() espadrille/S*() espagnole/F*() espagnolette/S*() espagnolisme/S*() espalier/S*() espar/S*() esparcet/S*() esparcette/S*() espèce/S*() espérance/S*() espérantiste/S*() espéranto/S*() espérée/F*() espérer/c2a+() esperluette/S*() espiègle/S*() espièglerie/S*() espingole/S*() espionnage/S*() espionne/F*() espionnée/F*() espionner/a2a+() espionnite/S*() esplanade/S*() espoir/S*() espolinée/F*() espoliner/a2a+() esponton/S*() espoulinée/F*() espouliner/a2a+() espressivo/D'Q' esprit/S*() esprit-de-bois/L'D' esprit-de-sel/L'D' esprit-de-vin/L'D' esquichée/F*() esquicher/a1() esquif/S*() esquille/S*() esquimau/X*() esquimaude/S*() esquimautage/S*() esquintante/F*() esquintée/F*() esquinter/a4a+() esquire/S*() esquisse/S*() esquissée/F*() esquisser/a4a+() esquive/S*() esquivée/F*() esquiver/a4a+() essai/S*() essaim/S*() essaimage/S*() essaimée/F*() essaimer/a2a+() essangeage/S*() essangée/F*() essanger/a2a+() essanvage/S*() essart/S*() essartage/S*() essartée/F*() essartement/S*() essarter/a2a+() essayage/S*() essayée/F*() essayer/a4a+() essayeuse/F*() essayiste/S*() esse/S*() essence/S*() essencerie/S*() essencière/F*() essénienne/F*() essentialisme/S*() essentielle/F*() essentiellement/D'Q' esseulée/F*() essieu/X*() essor/S*() essorage/S*() essorée/F*() essorer/a4a+() essoreuse/F*() essorillée/F*() essoriller/a2a+() essouchage/S*() essouchée/F*() essouchement/S*() essoucher/a2a+() essoufflée/F*() essoufflement/S*() essouffler/a4a+() essuie/S*() essuie-glace/S*() essuie-mains/L'D'Q' essuie-meubles/L'D'Q' essuie-phare/S*() essuie-pieds/L'D'Q' essuie-plume/S*() essuie-tout/L'D'Q' essuie-verre/S*() essuyage/S*() essuyée/F*() essuyer/a4a+() essuyeuse/F*() est/L'D'Q' establishment/S*() estacade/S*() estafette/S*() estafier/S*() estafilade/S*() estagnon/S*() est-allemande/F*() estaminet/S*() estampage/S*() estampe/S*() estampée/F*() estamper/a2a+() estampeuse/F*() estampillage/S*() estampille/S*() estampillée/F*() estampiller/a2a+() estancia/S*() estarie/S*() este/S*() ester ester/S*() estérification/S*() estérifiée/F*() estérifier/a2a+() esterlin/S*() esthésie/S*() esthésiogène/S*() esthésiologie/S*() esthète/S*() esthéticienne/F*() esthétique/S*() esthétiquement/D'Q' esthétisante/F*() esthétisée/F*() esthétiser/a2a+() esthétisme/S*() estimable/S*() estimation/S*() estimative/F*() estimatoire/S*() estimatrice/F*() estime/S*() estimée/F*() estimer/a4a+() estivage/S*() estivale/W*() estivante/F*() estivation/S*() estivée/F*() estiver/a2a+() estoc/S*() estocade/S*() estomac/S*() estomaquée/F*() estomaquer/a2a+() estompage/S*() estompée/F*() estomper/a4a+() estonienne/F*() estoquée/F*() estoquer/a2a+() estouffade/S*() estourbie/F*() estourbir/f2f+() estrade/S*() estradiène/S*() estradiol/S*() estradiot/S*() estragon/S*() estran/S*() estrapade/S*() estrapadée/F*() estrapader/a2a+() estrapassée/F*() estrapasser/a2a+() estriol/S*() estrogène/S*() estrogénique/S*() estrogénothérapie/S*() estrone/S*() estrope/S*() estropiée/F*() estropier/a4a+() estroprogestative/F*() estuaire/S*() estuarienne/F*() estudiantine/F*() esturgeon/S*() eszett/S*() et êta/L'D'Q' étable/S*() établée/F*() établer/a2a+() établi/S*() établie/F*() établir/f4f+() établissement/S*() étage/S*() étagée/F*() étagement/S*() étager/a4a+() étagère/S*() étai/S*() étaiement/S*() étain/S*() étais/zG() étal/S*() étalage/S*() étalagée/F*() étalager/a2a+() étalagiste/S*() étalée/F*() étalement/S*() étaler/a4a+() étaleuse/S*() étalière/F*() étalinguée/F*() étalinguer/a2a+() étalingure/S*() étalon/S*() étalonnage/S*() étalonnée/F*() étalonnement/S*() étalonner/a2a+() étalonneuse/F*() étalonnière/F*() étamage/S*() étambot/S*() étambrai/S*() étamée/F*() étamer/a2a+() étameuse/F*() étamine/S*() étampage/S*() étampe/S*() étampée/F*() étamper/a2a+() étamperche/S*() étampeur/S*() étampure/S*() étamure/S*() étanche/S*() étanchée/F*() étanchéiste/S*() étanchéité/S*() étanchement/S*() étancher/a2a+() étancheuse/F*() étançon/S*() étançonnée/F*() étançonner/a2a+() étang/S*() étape/S*() étarquée/F*() étarquer/a2a+() étasunienne/F*() état/S*() étatique/S*() étatisation/S*() étatisée/F*() étatiser/a2a+() étatisme/S*() étatiste/S*() état-major/L'D'Q' états-majors/D'Q' états-unienne/F*() étau/X*() étayage/S*() étayée/F*() étayement/S*() étayer/a4a+() etc été/S*() éteignoir/S*() éteindre/wB() éteinte/F*() étendage/S*() étendard/S*() étendoir/S*() étendre/tA() étendue/F*() éternelle/F*() éternellement/D'Q' éternisée/F*() éterniser/a4a+() éternité/S*() éternuement/S*() éternuer/a1() étésien/S*() étêtage/S*() étêtée/F*() étêtement/S*() étêter/a2a+() éteuf/S*() éteule/S*() eth éthane/S*() éthanol/S*() éther/S*() éthérée/F*() éthérification/S*() éthérifiée/F*() éthérifier/a2a+() éthérisation/S*() éthérisée/F*() éthériser/a2a+() éthérisme/S*() éthéromane/S*() éthéromanie/S*() éthiopienne/F*() éthique/S*() ethniciser/a2a+() ethnie/S*() ethnique/S*() ethniquement/D'Q' ethnocentrique/S*() ethnocentrisme/S*() ethnocide/S*() ethnogenèse/S*() ethnographe/S*() ethnographie/S*() ethnographique/S*() ethnolinguistique/S*() ethnologie/S*() ethnologique/S*() ethnologiquement/D'Q' ethnologue/S*() ethnométhodologie/S*() ethnonyme/S*() ethnonymie/S*() ethnopsychiatrie/S*() éthographie/S*() éthologie/S*() éthologique/S*() éthologiste/S*() éthologue/S*() éthuse/S*() éthyle/S*() éthylène/S*() éthylénique/S*() éthylique/S*() éthylisme/S*() éthylomètre/S*() éthylotest/S*() étiage/S*() étier/S*() étincelage/S*() étincelante/F*() étinceler/d1() étincelle/S*() étincellement/S*() étiolée/F*() étiolement/S*() étioler/a4a+() étiologie/S*() étiologique/S*() étique/S*() étiquetage/S*() étiquetée/F*() étiqueter/d2a+() étiqueteuse/F*() étiquette/S*() étirable/S*() étirage/S*() étirée/F*() étirement/S*() étirer/a4a+() étireuse/F*() étisie/S*() étoc/S*() étoffe/S*() étoffée/F*() étoffement/S*() étoffer/a4a+() étoile/S*() étoilée/F*() étoilement/S*() étoiler/a4a+() étole/S*() étonnamment/D'Q' étonnante/F*() étonnée/F*() étonnement/S*() étonner/a4a+() étouffade/S*() étouffage/S*() étouffante/F*() étouffe-chrétien/L'D'Q' étouffée/F*() étouffement/S*() étouffer/a4a+() étouffeur/S*() étouffoir/S*() étoupe/S*() étoupée/F*() étouper/a2a+() étoupiller/a2a+() étourderie/S*() étourdie/F*() étourdiment/D'Q' étourdir/f4f+() étourdissante/F*() étourdissement/S*() étourneau/X*() étrange/S*() étrangement/D'Q' étrangère/F*() étrangeté/S*() étranglée/F*() étranglement/S*() étrangler/a4a+() étrangleuse/F*() étrangloir/S*() étrave/S*() être/S*() être/zE() étrécie/F*() étrécir/f4f+() étrécissement/S*() étreindre/wB() étreinte/F*() étreinte/S*() étrenne/S*() étrennée/F*() étrenner/a2a+() étrésillon/S*() étrésillonnée/F*() étrésillonnement/S*() étrésillonner/a2a+() étrier/S*() étrille/S*() étrillée/F*() étriller/a2a+() étripage/S*() étripailler/a2a+() étripée/F*() étriper/a4a+() étriquée/F*() étriquer/a2a+() étrive/S*() étrivière/S*() étroite/F*() étroitement/D'Q' étroitesse/S*() étron/S*() étronçonnée/F*() étronçonner/a2a+() étruscologie/S*() étruscologue/S*() étrusque/S*() étude/S*() étudiante/F*() étudiée/F*() étudier/a4a+() étui/S*() étuvage/S*() étuve/S*() étuvée/S*() étuver/a2a+() étuveuse/F*() étym étymologie/S*() étymologique/S*() étymologiquement/D'Q' étymologiste/S*() étymon/S*() eubactérie/S*() eucalyptol/S*() eucalyptus/L'D'Q' eucaryote/S*() eucharistie/S*() eucharistique/S*() euclidienne/F*() eucologe/S*() eudémis/L'D'Q' eudémonisme/S*() eudiomètre/S*() eudiométrie/S*() eudiométrique/S*() eudiste/S*() eugénate/S*() eugénie/S*() eugénique/S*() eugénisme/S*() eugéniste/S*() eugénol/S*() euglène/S*() euh eulérienne/F*() eulogie/S*() eumélanine/S*() euménide/S*() eunecte/S*() eunuque/S*() eupatoire/S*() eupeptique/S*() euphémique/S*() euphémiquement/D'Q' euphémisme/S*() euphonie/S*() euphonique/S*() euphoniquement/D'Q' euphorbe/S*() euphorbiacée/S*() euphorie/S*() euphorique/S*() euphorisante/F*() euphorisée/F*() euphoriser/a2a+() euphuisme/S*() eurafricaine/F*() eurasiatique/S*() eurasienne/F*() eurêka euro/S*() eurocentrisme/S*() eurocentriste/S*() eurocommunisme/S*() eurocommuniste/S*() eurocrate/S*() eurodéputée/F*() eurodevise/S*() eurodollar/S*() euromarché/S*() euromissile/S*() euro-obligataire/S*() euro-obligation/S*() européanisation/S*() européanisée/F*() européaniser/a4a+() européanisme/S*() européenne/F*() européisme/S*() europium/S*() europoïde/S*() euroscepticisme/S*() eurosceptique/S*() eurovision/S*() eurytherme/S*() eurythermie/S*() eurythmie/S*() eurythmique/S*() eus/zB() euscarienne/F*() euskarienne/F*() eustache/S*() eustatique/S*() eustatisme/S*() eutectique/S*() eutexie/S*() euthanasie/S*() euthanasiée/F*() euthanasier/a2a+() eutrophisation/S*() eux/D'Q' eux-mêmes/D'Q' évacuante/F*() évacuation/S*() évacuatrice/F*() évacuée/F*() évacuer/a4a+() évadée/F*() évader/a3a+() évagination/S*() évaginée/F*() évaluable/S*() évaluation/S*() évaluative/F*() évaluatrice/F*() évaluée/F*() évaluer/a4a+() évanescence/S*() évanescente/F*() évangéliaire/S*() évangélique/S*() évangéliquement/D'Q' évangélisation/S*() évangélisatrice/F*() évangélisée/F*() évangéliser/a2a+() évangélisme/S*() évangéliste/S*() évangile/S*() évanouie/F*() évanouir/f3f+() évanouissement/S*() évaporable/S*() évaporateur/S*() évaporation/S*() évaporatoire/S*() évaporée/F*() évaporer/a4a+() évasée/F*() évasement/S*() évaser/a4a+() évasion/S*() évasive/F*() évasivement/D'Q' évasure/S*() évêché/S*() évection/S*() éveil/S*() éveillée/F*() éveiller/a4a+() éveilleur/S*() événement/S*() événementiel/S*() événementielle/F*() évent/S*() éventail/S*() éventaire/S*() éventée/F*() éventement/S*() éventer/a4a+() éventration/S*() éventrée/F*() éventrement/S*() éventrer/a4a+() éventreur/S*() éventualité/S*() éventuelle/F*() éventuellement/D'Q' évêque/S*() évergète/S*() évergétisme/S*() évertuer/a3a+() évhémérisme/S*() éviction/S*() évidage/S*() évidée/F*() évidement/S*() évidemment/D'Q' évidence/S*() évidente/F*() évider/a2a+() évier/S*() évincée/F*() évincement/S*() évincer/a2a+() éviscérée/F*() éviscérer/c2a+() évitable/S*() évitage/S*() évitée/F*() évitement/S*() éviter/a4a+() évocable/S*() évocation/S*() évocatoire/S*() évocatrice/F*() évohé évoluée/F*() évoluer/a1a+() évolution/S*() évolutionnaire/S*() évolutionnisme/S*() évolutionniste/S*() évolutive/F*() évolutivité/S*() évoquée/F*() évoquer/a2a+() évulsion/S*() evzone/S*() ex/L'D'Q' exabit/S*() exacerbation/S*() exacerbée/F*() exacerber/a4a+() exacte/F*() exactement/D'Q' exaction/S*() exactitude/S*() exagération/S*() exagératrice/F*() exagérée/F*() exagérément/D'Q' exagérer/c4a+() exaltante/F*() exaltation/S*() exaltée/F*() exalter/a4a+() examen/S*() examinatrice/F*() examinée/F*() examiner/a4a+() exanthémateuse/W*() exanthématique/S*() exanthème/S*() exaoctet/S*() exarchat/S*() exarque/S*() exaspérante/F*() exaspération/S*() exaspérée/F*() exaspérer/c4a+() exaucée/F*() exaucement/S*() exaucer/a4a+() exbibit/S*() exbioctet/S*() excavation/S*() excavatrice/F*() excavée/F*() excaver/a2a+() excédante/F*() excédée/F*() excédent/S*() excédentaire/S*() excéder/c2a+() excellemment/D'Q' excellence/S*() excellente/F*() excellentissime/S*() exceller/a1() excentration/S*() excentrée/F*() excentrer/a2a+() excentricité/S*() excentrique/S*() excentriquement/D'Q' exceptée/F*() excepter/a2a+() exception/S*() exceptionnelle/F*() exceptionnellement/D'Q' excès/L'D'Q' excessive/F*() excessivement/D'Q' excipée/F*() exciper/a5() excipient/S*() excisée/F*() exciser/a2a+() exciseuse/F*() excision/S*() excitabilité/S*() excitable/S*() excitante/F*() excitation/S*() excitatrice/F*() excitée/F*() exciter/a4a+() excitomotrice/F*() exciton/S*() exclamation/S*() exclamative/F*() exclamée/F*() exclamer/a3a+() exclue/F*() exclure/xL() exclusion/S*() exclusive/F*() exclusivement/D'Q' exclusivisme/S*() exclusivité/S*() excommunication/S*() excommuniée/F*() excommunier/a2a+() excoriation/S*() excoriée/F*() excorier/a2a+() excracher excrément/S*() excrémenteuse/W*() excrémentielle/F*() excrétée/F*() excréter/c2a+() excrétion/S*() excrétoire/S*() excrétrice/F*() excroissance/S*() excursion/S*() excursionner/a1() excursionniste/S*() excusable/S*() excuse/S*() excusée/F*() excuser/a4a+() exeat/L'D'Q' exécrable/S*() exécrablement/D'Q' exécration/S*() exécrée/F*() exécrer/c2a+() exécutable/S*() exécutante/F*() exécutée/F*() exécuter/a4a+() exécution/S*() exécutive/F*() exécutoire/S*() exécutrice/F*() exèdre/S*() exégèse/S*() exégète/S*() exégétique/S*() exemplaire/S*() exemplairement/D'Q' exemplarité/S*() exemple/S*() exemplification/S*() exemplifiée/F*() exemplifier/a2a+() exempte/F*() exemptée/F*() exempter/a4a+() exemption/S*() exequatur/L'D'Q' exerçante/F*() exercée/F*() exercer/a4a+() exercice/S*() exerciseur/S*() exérèse/S*() exergue/S*() exfiltration/S*() exfiltrée/F*() exfiltrer/a2a+() exfoliante/F*() exfoliation/S*() exfoliée/F*() exfolier/a4a+() exhalaison/S*() exhalation/S*() exhalée/F*() exhaler/a4a+() exhaure/S*() exhaussée/F*() exhaussement/S*() exhausser/a2a+() exhausteur/S*() exhaustion/S*() exhaustive/F*() exhaustivement/D'Q' exhaustivité/S*() exhérédation/S*() exhérédée/F*() exhéréder/c2a+() exhibée/F*() exhiber/a4a+() exhibition/S*() exhibitionnisme/S*() exhibitionniste/S*() exhortation/S*() exhortée/F*() exhorter/a4a+() exhumation/S*() exhumée/F*() exhumer/a2a+() exigeante/F*() exigée/F*() exigence/S*() exiger/a2a+() exigibilité/S*() exigible/S*() exiguë/F*() exiguïté/S*() exil/S*() exilée/F*() exiler/a4a+() exinscrite/F*() existante/F*() existence/S*() existentialisme/S*() existentialiste/S*() existentielle/F*() exister/a1() exit/L'D'Q' ex-libris/L'D'Q' exobiologie/S*() exocet/S*() exocrine/S*() exode/S*() exogame/S*() exogamie/S*() exogamique/S*() exogène/S*() exomphale/S*() exon/S*() exondation/S*() exondée/F*() exonder/a3a+() exonération/S*() exonérée/F*() exonérer/c4a+() exonyme/S*() exonymie/S*() exophtalmie/S*() exophtalmique/S*() exoplanète/S*() exorable/S*() exorbitante/F*() exorbitée/F*() exorcisation/S*() exorcisée/F*() exorciser/a2a+() exorciseuse/F*() exorcisme/S*() exorciste/S*() exorde/S*() exoréique/S*() exoréisme/S*() exosmose/S*() exosphère/S*() exosphérique/S*() exosquelette/S*() exostose/S*() exotérique/S*() exotérisme/S*() exoterre/S*() exothermique/S*() exotique/S*() exotiquement/D'Q' exotisme/S*() exotoxine/S*() expactative/F*() expansée/F*() expansibilité/S*() expansible/S*() expansion/S*() expansionnisme/S*() expansionniste/S*() expansive/F*() expansivité/S*() expatriation/S*() expatriée/F*() expatrier/a4a+() expectative/S*() expectorante/F*() expectoration/S*() expectorée/F*() expectorer/a2a+() expédiée/F*() expédient/S*() expédier/a2a+() expédition/S*() expéditionnaire/S*() expéditive/F*() expéditivement/D'Q' expéditrice/F*() expérience/S*() expérimentale/W*() expérimentalement/D'Q' expérimentation/S*() expérimentatrice/F*() expérimentée/F*() expérimenter/a2a+() expert-comptable/L'D'Q' experte/F*() expertement/D'Q' expertise/S*() expertisée/F*() expertiser/a2a+() experts-comptables/D'Q' expiable/S*() expiation/S*() expiatoire/S*() expiée/F*() expier/a4a+() expirante/F*() expiration/S*() expiratoire/S*() expirée/F*() expirer/a2a+() explétive/F*() explicable/S*() explication/S*() explicative/F*() explicitation/S*() explicitée/F*() explicitement/D'Q' expliciter/a2a+() expliquée/F*() expliquer/a4a+() exploit/S*() exploitabilité/S*() exploitable/S*() exploitante/F*() exploitation/S*() exploitée/F*() exploiter/a2a+() exploiteuse/F*() exploration/S*() exploratoire/S*() exploratrice/F*() explorée/F*() explorer/a2a+() explosée/F*() exploser/a1() exploseur/S*() explosible/S*() explosif/S*() explosion/S*() explosive/F*() expo/S*() exponentiation/S*() exponentielle/F*() exponentiellement/D'Q' export/S*() exportable/S*() exportation/S*() exportatrice/F*() exportée/F*() exporter/a4a+() exposante/F*() exposé/S*() exposée/F*() exposer/a4a+() exposition/S*() exprès/D'Q' exprès/L'D'Q' express/L'D'Q' expresse/S*() expressément/D'Q' expression/S*() expressionnisme/S*() expressionniste/S*() expressive/F*() expressivement/D'Q' expressivité/S*() exprimable/S*() exprimée/F*() exprimer/a4a+() expromission/S*() expropriante/F*() expropriation/S*() expropriée/F*() exproprier/a2a+() expulsée/F*() expulser/a4a+() expulsion/S*() expurgation/S*() expurgatoire/S*() expurgée/F*() expurger/a2a+() exquise/F*() exquisément/D'Q' exsangue/S*() exstrophie/S*() exsudat/S*() exsudation/S*() exsudée/F*() exsuder/a2a+() extase/S*() extasiée/F*() extasier/a3a+() extatique/S*() extatiquement/D'Q' extemporanée/F*() extemporanément/D'Q' extenseur/S*() extensibilité/S*() extensible/S*() extension/S*() extensionnalité/L'D'Q' extensive/F*() extenso extensomètre/S*() exténuante/F*() exténuation/S*() exténuée/F*() exténuer/a4a+() extérieur/S*() extérieure/F*() extérieurement/D'Q' extériorisation/S*() extériorisée/F*() extérioriser/a4a+() extériorité/S*() extermination/S*() exterminatrice/F*() exterminée/F*() exterminer/a2a+() externalisation/S*() externalisée/F*() externaliser/a2a+() externalité/S*() externat/S*() externe/S*() externer/a2a+() extéroceptive/F*() exterritorialité/S*() extinction/S*() extinctrice/F*() extinguible/S*() extirpable/S*() extirpateur/S*() extirpation/S*() extirpée/F*() extirper/a4a+() extorquée/F*() extorquer/a2a+() extorqueuse/F*() extorsion/S*() extourner/a2a+() extra/L'D'Q' extra-atmosphérique/S*() extraconjugale/W*() extracourant/S*() extractible/S*() extraction/S*() extractive/F*() extractrice/F*() extradée/F*() extrader/a2a+() extradition/S*() extrados/L'D'Q' extra-dry/L'D'Q' extrafine/F*() extraforte/F*() extragalactique/S*() extraire/wL() extrait/S*() extraite/F*() extrajudiciaire/S*() extralégale/W*() extralinguistique/S*() extralucide/S*() extra-muros/D'Q' extra-muros/L'D'Q' extranéité/S*() extranet/S*() extraordinaire/S*() extraordinairement/D'Q' extraparlementaire/S*() extrapolation/S*() extrapolée/F*() extrapoler/a2a+() extrascolaire/S*() extrasensible/S*() extrasensorielle/F*() extrasolaire/S*() extrasystole/S*() extraterrestre/S*() extraterritorialité/S*() extravagamment/D'Q' extravagance/S*() extravagante/F*() extravaguer/a1() extravasation/S*() extravasée/F*() extravaser/a4a+() extraversion/S*() extravertie/F*() extrémale/W*() extrême/S*() extrêmement/D'Q' extrême-onction/L'D' extrême-orientale/W*() extremis extrémisme/S*() extrémiste/S*() extrémité/S*() extremum/S*() extrinsèque/S*() extrinsèquement/D'Q' extrorse/S*() extrovertie/F*() extrudée/F*() extruder/a2a+() extrudeuse/F*() extrusion/S*() exubérance/S*() exubérante/F*() exubérer exulcération/S*() exulcérée/F*() exulcérer/c2a+() exultation/S*() exulter/a1() exutoire/S*() ex-voto/L'D'Q' eye-liner/S*() f fa fabacée/S. fable/S. fabliau/X. fablier/S. fabricante/F.() fabrication/S. fabricatrice/F.() fabricien/S. fabrique/S. fabriquée/F.() fabriquer/a0a+() fabulation/S. fabulatrice/F.() fabuler/a0() fabuleuse/W.() fabuleusement fabuliste/S. fac/S. façade/S. façadière/F.() face/S. face-à-face face-à-main faces-à-main facétie/S. facétieuse/W.() facétieusement facette/S. facetter/a0a+() fâchée/F.() fâcher/a0a+() fâcherie/S. fâcheuse/W.() fâcheusement facho/S. faciale/W.() faciès facile/S. facilement facilitation/S. facilitatrice/F.() facilité/S. facilitée/F.() faciliter/a0a+() façon/S. faconde/S. façonnage/S. façonnée/F.() façonnement/S. façonner/a0a+() façonneuse/F.() façonnière/F.() fac-similé/S. factage/S. factice/S. facticement facticité/S. factieuse/W.() faction/S. factionnaire/S. factitive/F.() facto factorage/S. factorerie/S. factorielle/F.() factoring/S. factorisable/S. factorisation/S. factorisée/F.() factoriser/a0a+() factotum/S. factrice/F.() factuelle/F.() factum/S. facturable/S. facturation/S. facture/S. facturée/F.() facturer/a0a+() facturette/S. facturière/F.() facultative/F.() facultativement faculté/S. fadaise/S. fadasserie/S. fade/S. fadée/F.() fadement fader/a0a+() fadeur/S. fading/S. fado/S. fafiot/S. fagacée/S. fagnarde/F.() fagne/S. fagot/S. fagotage/S. fagotée/F.() fagoter/a0a+() fagotier/S. fagotin/S. faiblarde/F.() faible/S. faiblement faiblesse/S. faiblir/f0() faiblissante/F.() faïence/S. faïencée/F.() faïencerie/S. faïencière/F.() faignante/F.() faignanter/a0() faille/S. faillée/F.() failler/a0a+() faillibilité/S. faillible/S. faillie/F.() faillir/iU() faillite/S. faim/S. faine/S. fainéante/F.() fainéanter/a0() fainéantise/S. fainéantiser faire/wD() faire-part faire-valoir/S. fair-play faisabilité/S. faisable/S. faisandage/S. faisandeau/X. faisandée/F.() faisander/a0a+() faisanderie/S. faisane/F.() faisceau/X. faiseuse/F.() faisselle/S. fait/S. faîtage/S. faite/F.() faîte/S. faîteau/X. faîtière/F.() faitout/S. faix fajita/S. fakir/S. fakirisme/S. falafel/S. falaise/S. falarique/S. falbala/S. falciforme/S. faldistoire/S. falerne/S. fallacieuse/W.() fallacieusement falloir/qA() falote/F.() faloter falourde/S. falsifiabilité/S. falsifiable/S. falsification/S. falsificatrice/F.() falsifiée/F.() falsifier/a0a+() faluche/S. falun/S. faluner/a0a+() falunière/S. falzar/S. famée/F.() famélique/S. famennoise/F.() fameuse/W.() fameusement familiale/W.() familiarisation/S. familiariser/a0a+() familiarité/S. familière/F.() familièrement familistère/S. famille/S. famine/S. fan/S. fanage/S. fanaison/S. fanal/X. fanatique/S. fanatiquement fanatisante/F.() fanatisée/F.() fanatiser/a0a+() fanatiseuse/F.() fanatisme/S. fan-club/S. fancy-fair/S. fandango/S. fane/S. fanée/F.() faner/a0a+() faneuse/F.() fanfare/S. fanfaronnade/S. fanfaronne/F.() fanfaronner/a0() fanfreluche/S. fanfreluchée/F.() fanfrelucher/a0a+() fange/S. fangeuse/W.() fangothérapie/S. fanion/S. fanon/S. fantaisie/S. fantaisiste/S. fantaliser/a0a+() fantasia/S. fantasmagorie/S. fantasmagorique/S. fantasmatique/S. fantasme/S. fantasmée/F.() fantasmer/a0a+() fantasque/S. fantasquement fantassin/S. fantastique/S. fantastiquement fantasy fantoche/S. fantomatique/S. fantomatiquement fantôme/S. fanton/S. fanzine/S. faon/S. faquin/S. far/S. farad/Um() faraday/S. faradique/S. faramineuse/W.() farandole/S. faraude/F.() farce/S. farceuse/F.() farcie/F.() farcin/S. farcir/f0f+() fard/S. fardage/S. farde/S. fardeau/X. fardée/F.() farder/a0a+() fardier/S. farfadet/S. farfelue/F.() farfouiller/a0a+() farfouilleuse/F.() farguer fargues faribole/S. farigoule/S. farinacée/F.() farine/S. farinée/F.() fariner/a0a+() farineuse/W.() farinière/F.() farlouse/S. farniente/S. faro/S. farouch/S. farouche/S. farouchement farrago/S. fart/S. fartage/S. fartée/F.() farter/a0a+() fasce/S. fascée/F.() fascia/S. fasciation/S. fascicule/S. fasciculée/F.() fasciée/F.() fascinante/F.() fascination/S. fascinatrice/F.() fascinée/F.() fasciner/a0a+() fascisante/F.() fascisation/S. fascisée/F.() fasciser/a0a+() fascisme/S. fasciste/S. faséier faseiller faseyer faséyer/c0() faste/S. fast-food/S. fastidieuse/W.() fastidieusement fastigiée/F.() fastoche/S. fastueuse/W.() fastueusement fat/S. fatale/F.() fatalement fatalisme/S. fataliste/S. fatalité/S. fatidique/S. fatigabilité/S. fatigable/S. fatigante/F.() fatigue/S. fatiguée/F.() fatiguer/a0a+() fatma/S. fatras fatrasie/S. fatuité/S. fatum fatwa/S. fauber/S. faubérer/c0() faubert/S. faubourg/S. faubourienne/F.() faucard/S. faucarder/a0a+() faucardeur/S. fauchage/S. fauchaison/S. fauchard/S. fauche/S. fauchée/F.() faucher/a0a+() fauchet/S. fauchette/S. faucheuse/F.() faucheux fauchon/S. faucille/S. faucillon/S. faucon/S. fauconneau/X. fauconner/a0() fauconnerie/S. fauconnier/S. faucre/S. faufil/S. faufilage/S. faufiler/a0a+() faufilure/S. faune/S. faunesque/S. faunique/S. faunistique/S. faussaire/S. fausse/W.() faussée/F.() faussement fausser/a0a+() fausset/S. fausseté/S. faute/S. fauter/a0() fauteuil/S. fautive/F.() fautivement fautrice/F.() fauve/S. fauverie/S. fauvette/S. fauvisme/S. faux faux-bourdon/S. faux-filet/S. faux-fuyant/S. faux-monnayeur/S. faux-semblant/S. faux-sens favela/S. faverole/S. faveur/S. favorable/S. favorablement favori/S. favorisante/F.() favorisée/F.() favoriser/a0a+() favorite/S. favoritisme/S. favus fax faxée/F.() faxer/a0a+() fayard/S. fayot/S. fayotage/S. fayoter/a0() fazenda/S. féale/W.() fébricule/S. fébrifuge/S. fébrile/S. fébrilement fébrilité/S. fécale/W.() fèces fécial/X. fécondabilité/S. fécondable/S. fécondante/F.() fécondation/S. fécondatrice/F.() féconde/F.() fécondée/F.() féconder/a0a+() fécondité/S. fécule/S. féculence/S. féculent/S. féculente/F.() féculer/a0a+() féculerie/S. fedayin/S. fédérale/W.() fédéralisation/S. fédéralisée/F.() fédéraliser/a0a+() fédéralisme/S. fédéraliste/S. fédération/S. fédérative/F.() fédératrice/F.() fédérée/F.() fédérer/c0a+() fée/S. feed-back féerie/S. féerique/S. féeriquement feignante/F.() feignanter/a0() feignasse/S. feindre/wB() feinte/F.() feinte/S. feintée/F.() feinter/a0a+() feinteur/S. feintise/S. feld-maréchal/X. feldspath/S. feldspathique/S. feldwebel/S. fêlée/F.() fêler/a0a+() félibre/S. félibrige/S. félicitation/S. félicité/S. félicitée/F.() féliciter/a0a+() félidé/S. féline/F.() félinité/S. fellaga/S. fellah/S. fellation/S. félonie/S. félonne/F.() felouque/S. fêlure/S. femelle/S. féminine/F.() féminisation/S. féminisée/F.() féminiser/a0a+() féminisme/S. féministe/S. féminité/S. femme/S. femmelette/S. fémorale/W.() fémur/S. fenaison/S. fendage/S. fendante/F.() fendard/S. fendart/S. fendeuse/F.() fendille/S. fendillée/F.() fendillement/S. fendiller/a0a+() fendoir/S. fendre/tA() fendue/F.() fenestrage/S. fenestration/S. fenestrée/F.() fenestrer/a0a+() fenêtrage/S. fenêtre/S. fenêtrée/F.() fenêtrer/a0a+() fenil/S. fennec/S. fenouil/S. fenouillet/S. fenouillette/S. fente/S. fenton/S. fenugrec/S. féodale/W.() féodalement féodalisation/S. féodalisme/S. féodalité/S. fer/S. féra/S. férale/W.() férals fer-blanc ferblanterie/S. ferblantière/F.() fériale/W.() fériée/F.() férir/iX() ferler/a0a+() fermage/S. fermail/X. fermante/F.() ferme/S. fermée/F.() fermement ferment/S. fermentable/S. fermentation/S. fermentative/F.() fermentée/F.() fermenter/a0() fermentescible/S. fermenteur/S. fermer/a0a+() fermeté/S. fermette/S. fermeture/S. fermière/F.() fermion/S. fermionique/S. fermium/S. fermoir/S. féroce/S. férocement férocité/S. ferrade/S. ferrage/S. ferraillage/S. ferraille/S. ferraillement/S. ferrailler/a0() ferrailleuse/F.() ferrate/S. ferratier/S. ferrée/F.() ferrement/S. ferrer/a0a+() ferret/S. ferreur/S. ferreuse/W.() ferricyanure/S. ferrimagnétique/S. ferrimagnétisme/S. ferrique/S. ferrite/S. ferrocyanure/S. ferromagnésienne/F.() ferromagnétique/S. ferromagnétisme/S. ferromanganèse/S. ferronickel/S. ferronnerie/S. ferronnière/F.() ferroprussiate/S. ferrosilicium/S. ferrotypie/S. ferroutage/S. ferrouter/a0a+() ferroviaire/S. ferrugineuse/W.() ferrure/S. ferry/S. ferry-boat/S. fers-blancs fertile/S. fertilement fertilisable/S. fertilisante/F.() fertilisation/S. fertilisée/F.() fertiliser/a0a+() fertilité/S. férue/F.() férule/S. fervemment fervente/F.() ferveur/S. fesse/S. fessée/S. fesse-mathieu/X. fesser/a0a+() fessière/F.() fessue/F.() festin/S. festival/S. festivalière/F.() festive/F.() festivité/S. fest-noz festoiement/S. feston/S. festonnée/F.() festonner/a0a+() festoyer/a0a+() fêtard/S. fête/S. fêtée/F.() fêter/a0a+() fétiche/S. féticher/a0a+() féticheur/S. fétichiser/a0a+() fétichisme/S. fétichiste/S. fétide/S. fétidité/S. fétu/S. fétuque/S. feu/X. feudataire/S. feudiste/S. feue/F.() feuil/S. feuillage/S. feuillagiste/S. feuillaison/S. feuillantine/S. feuillard/S. feuillardière/F.() feuille/S. feuillée/F.() feuille-morte feuiller/a0a+() feuilleret/S. feuillet/S. feuilletage/S. feuilletée/F.() feuilleter/d0a+() feuilletis feuilletiser/a0a+() feuilleton/S. feuilletonesque/S. feuilletoniste/S. feuillue/F.() feuillure/S. feulement/S. feuler/a0() feutrage/S. feutrante/F.() feutre/S. feutrée/F.() feutrer/a0a+() feutrine/S. fève/S. féverole/S. févier/S. févr février/S. fez fi fiabilisation/S. fiabiliser/a0a+() fiabilité/S. fiable/S. fiacre/S. fiançailles fiancée/F.() fiancer/a0a+() fiasco/S. fiasque/S. fiat fibrage/S. fibranne/S. fibration/S. fibre/S. fibrée/F.() fibrer/a0a+() fibreuse/W.() fibrillaire/S. fibrillation/S. fibrille/S. fibrilleuse/W.() fibrine/S. fibrineuse/W.() fibrinogène/S. fibroblaste/S. fibrociment/S. fibrocyte/S. fibroïne/S. fibromateuse/W.() fibromatose/S. fibrome/S. fibromyalgie/S. fibromyome/S. fibroscope/S. fibroscopie/S. fibrose/S. fibule/S. fic/S. ficaire/S. ficelage/S. ficelée/F.() ficeler/d0a+() ficellerie/S. fichage/S. fiche/S. fichée/F.() ficher/a0a+() fichet/S. fichier/S. fichiste/S. fichoir/S. fichtre fichtrement fichue/F.() fiction/S. fictive/F.() fictivement ficus fidéicommis fidéicommissaire/S. fidéisme/S. fidéiste/S. fidéjusseur/S. fidéjussion/S. fidéjussoire/S. fidèle/S. fidèlement fidélisante/F.() fidélisation/S. fidélisée/F.() fidéliser/a0a+() fidélité/S. fidjienne/F.() fiduciaire/S. fiduciairement fiducie/S. fief/S. fieffée/F.() fieffer/a0a+() fiel/S. fielleuse/W.() fiente/S. fienter/a0() fier/a0a+() fier-à-bras fière/F.() fièrement fiérote/F.() fiers-à-bras fierté/S. fiesta/S. fieu/X. fièvre/S. fiévreuse/W.() fiévreusement fifille/S. fifre/S. fifrelin/S. fifty-fifty fig figaro/S. figée/F.() figement/S. figer/a0a+() fignolage/S. fignolée/F.() fignoler/a0a+() fignoleuse/F.() figue/S. figuerie/S. figuier/S. figuline/S. figurante/F.() figuration/S. figurative/F.() figurativement figure/S. figurée/F.() figurément figurer/a0a+() figurine/S. figurisme/S. figuriste/S. fil/S. filable/S. filage/S. filaire/S. filament/S. filamenteuse/W.() filandière/S. filandre/S. filandreuse/W.() filante/F.() filanzane/S. filariose/S. filateur/S. filature/S. fildefériste/S. file/S. filée/F.() filer/a0a+() filet/S. filetage/S. filetée/F.() fileter/b0a+() fileuse/F.() fileyeur/S. filiale/W.() filialement filialiser/a0a+() filiation/S. filicinée/S. filicophyte/S. filière/S. filiforme/S. filigrane/S. filigranée/F.() filigraner/a0a+() filin/S. filipendule/S. fillasse/S. fille/S. fillette/S. filleule/F.() film/S. filmage/S. filmée/F.() filmer/a0a+() filmique/S. filmographie/S. filmologie/S. filmothèque/S. filocher/a0a+() filon/S. filonienne/F.() filoselle/S. filou/S. filoutage/S. filouter/a0a+() filouterie/S. fils filtrable/S. filtrage/S. filtrante/F.() filtrat/S. filtration/S. filtre/S. filtrée/F.() filtrer/a0a+() filtreuse/F.() fin/S. finage/S. finale/F.() finalement finalisation/S. finalisée/F.() finaliser/a0a+() finalisme/S. finaliste/S. finalitaire/S. finalité/S. finance/S. financée/F.() financement/S. financer/a0a+() financiarisation/S. financiariser/a0a+() financière/F.() financièrement finasser/a0a+() finasserie/S. finasseuse/F.() finassière/F.() finaude/F.() finauderie/S. finaux fine/F.() finement finerie/S. finesse/S. finette/S. finie/F.() finir/f0f+() finish finissage/S. finissante/F.() finisseur/S. finisseuse/F.() finition/S. finitude/S. finlandaise/F.() finlandiser/a0a+() finnoise/F.() finno-ougrien/S. finno-ougrienne/F.() finslérienne/S. fiole/S. fion/S. fioriture/S. fioul/S. fiqh/S. firmament/S. firman/S. firme/S. fisc/S. fiscale/W.() fiscalement fiscalisation/S. fiscaliser/a0a+() fiscaliste/S. fiscalité/S. fissa fissible/S. fissile/S. fission/S. fissionner/a0a+() fissuration/S. fissure/S. fissurée/F.() fissurer/a0a+() fiston/S. fistot/S. fistulaire/S. fistule/S. fistuleuse/W.() fistuline/S. fistulisante/F.() fitness fixage/S. fixation/S. fixative/F.() fixatrice/F.() fixe/S. fixe-chaussette/S. fixée/F.() fixement fixer/a0a+() fixette/S. fixing/S. fixisme/S. fixiste/S. fixité/S. fjeld/S. fjord/S. fla fla flabellation/S. flabelle/S. flabellée/F.() flabelliforme/S. flac flac/S. flaccidité/S. flache/S. flacherie/S. flacheuse/W.() flacon/S. flaconnage/S. flaconnier/S. fla-fla/S. flagada/S. flagellaire/S. flagellation/S. flagellatrice/F.() flagelle/S. flagellée/F.() flageller/a0a+() flagelline/S. flagellum/S. flageolante/F.() flageolement/S. flageoler/a0() flageolet/S. flagorner/a0a+() flagornerie/S. flagorneuse/F.() flagrance/S. flagrante/F.() flair/S. flairer/a0a+() flaireuse/F.() flamande/F.() flamant/S. flambage/S. flambante/F.() flambard/S. flambart/S. flambe/S. flambeau/X. flambée/F.() flambée/S. flambement/S. flamber/a0a+() flamberge/S. flambeuse/F.() flamboiement/S. flamboyance/S. flamboyante/F.() flamboyer/a0() flamenco/S. flamine/S. flamingante/F.() flamingantisme/S. flamme/S. flammèche/S. flammée/F.() flammerole/S. flan/S. flanc/S. flancher/a0a+() flanchet/S. flanconade/S. flandricisme/S. flandrin/S. flanelle/S. flâner/a0() flânerie/S. flâneuse/F.() flânocher/a0() flanquement/S. flanquer/a0a+() flapie/F.() flaque/S. flaquer/a0() flash/S. flashage/S. flash-back flasher/a0a+() flasheuse/F.() flashmètre/S. flasque/S. flattée/F.() flatter/a0a+() flatterie/S. flatteuse/F.() flatteusement flatulence/S. flatulente/F.() flatuosité/S. flauper/a0a+() flavescente/F.() flavine/S. flavonoïde/S. fléau/X. fléchage/S. flèche/S. fléchée/F.() flécher/c0a+() fléchette/S. fléchie/F.() fléchir/f0f+() fléchissement/S. fléchisseur/S. flegmatique/S. flegmatiquement flegmatisant/S. flegmatisme/S. flegme/S. flein/S. flemmarde/F.() flemmarder/a0() flemmardise/S. flemme/S. fléole/S. flétan/S. flétrie/F.() flétrir/f0f+() flétrissante/F.() flétrissement/S. flétrissure/S. flette/F.() fleur/S. fleurage/S. fleuraison/S. fleurdelisée/F.() fleurdeliser/a0a+() fleurée/F.() fleurer/a0a+() fleuret/S. fleurette/S. fleurettiste/S. fleurie/F.() fleurir/f0f+() fleurissante/F.() fleurissement/S. fleuriste/S. fleuron/S. fleuronnée/F.() fleuve/S. flexibilisée/F.() flexibiliser/a0a+() flexibilité/S. flexible/S. flexion/S. flexionnelle/F.() flexographe/S. flexueuse/W.() flexuosité/S. flexure/S. flibuste/S. flibuster/a0a+() flibusterie/S. flibustier/S. flic/S. flicage/S. flicaille/S. flingot/S. flingoter flingue/S. flinguer/a0a+() flingueuse/F.() flint/S. flipot/S. flipper/S. flipper/a0() fliquée/F.() fliquer/a0a+() flirt/S. flirter/a0() flirteuse/F.() floc floc/S. flocage/S. floche/S. flock-book/S. flocon/S. floconner/a0() floconneuse/W.() floculation/S. floculer/a0() flonflon/S. flood flop/S. flopée/S. floquer/a0a+() floraison/S. florale/W.() floralies flore/S. floréal/S. florence/S. florencée/F.() florentine/F.() florès floricole/S. floricultrice/F.() floriculture/S. florifère/S. florilège/S. florin/S. florissante/F.() floristique/S. flosculeuse/W.() flot/S. flottabilité/S. flottable/S. flottage/S. flottaison/S. flottante/F.() flottard/S. flottation/S. flotte/S. flottée/F.() flottement/S. flotter/a0a+() flotteur/S. flottille/S. floue/F.() flouée/F.() flouer/a0a+() flouser/a0() floutage/S. floutée/F.() flouter/a0a+() flouve/S. flouze/S. fluage/S. fluate/S. fluber/a0() fluctuante/F.() fluctuation/S. fluctuer/a0() fluence/S. fluer/a0() fluette/F.() fluide/S. fluidifiante/F.() fluidification/S. fluidifiée/F.() fluidifier/a0a+() fluidique/S. fluidiser/a0a+() fluidité/S. fluocompacte/F.() fluofibre/S. fluor/S. fluoration/S. fluorescéine/S. fluorescence/S. fluorescente/F.() fluorhydrique/S. fluorifère/S. fluorine/S. fluorisation/S. fluorisée/F.() fluoriser/a0a+() fluorographie/S. fluorophore/S. fluoroscopie/S. fluorose/S. fluoruration/S. fluorure/S. fluotournage/S. flurer flush/S. flûte/S. flûteau/X. flûtée/F.() flûter/a0a+() flûtiau/X. flûtiste/S. fluviale/W.() fluviatile/S. fluvio-glaciaire/S. fluviomètre/S. fluviométrique/S. flux fluxer/a0a+() fluxion/S. fluxmètre/S. fm/||-- foc/S. focale/W.() focalisante/F.() focalisation/S. focalisée/F.() focaliser/a0a+() focomètre/S. focométrie/S. focométrique/S. focus fœhn/S. foéner/c0a+() fœtale/W.() fœtida fœtus foi/S. foie/S. foin/S. foirade/S. foirail/S. foire/S. foirer/a0() foireuse/W.() foirolle/S. foiron/S. fois foison foisonnante/F.() foisonnement/S. foisonner/a0() fol/S. folasse/S. folâtrer/a0() folâtrerie/S. foliacée/F.() foliaire/S. foliation/S. folichonne/F.() folichonner/a0() folie/S. foliée/F.() folio/S. foliole/S. foliot/S. foliotage/S. folioter/a0a+() folique/S. folk/S. folklore/S. folklorique/S. folkloriser/a0a+() folkloriste/S. folksong/S. folle/S. follement follette/F.() folliculaire/S. follicule/S. folliculine/S. folliculite/S. fomentation/S. fomentatrice/F.() fomenter/a0a+() foncée/F.() foncer/a0a+() fonceuse/F.() foncière/F.() foncièrement foncteur/S. fonction/S. fonctionnaire/S. fonctionnalisme/S. fonctionnalité/S. fonctionnariat/S. fonctionnarisation/S. fonctionnariser/a0a+() fonctionnarisme/S. fonctionnelle/F.() fonctionnellement fonctionnement/S. fonctionner/a0() fonctorialité/S. fonctorielle/F.() fondamentale/W.() fondamentalement fondamentalisme/S. fondamentaliste/S. fondante/F.() fondation/S. fondatrice/F.() fondée/F.() fondement/S. fonder/a0a+() fonderie/S. fondeuse/F.() fondoir/S. fondouk/S. fondre/tA() fondrière/S. fondue/F.() fongibilité/S. fongible/S. fongicide/S. fongiforme/S. fongique/S. fongistatique/S. fongoïde/S. fongosité/S. fongueuse/W.() fongus fontaine/S. fontainebleau/S. fontainière/F.() fontanelle/S. fontange/S. fontanili fonte/S. fontis fonts foot/S. football/S. footballeuse/F.() footballistique/S. footeuse/W.() footing/S. for/S. forage/S. foraine/F.() foraminée/F.() foraminifère/S. forban/S. forçage/S. forçat/S. force/S. forcée/F.() forcément forcement/S. forcenée/F.() forceps forcer/a0a+() forcerie/S. forcing/S. forcipressure/S. forcir/f0() forclore/rD() forclose/F.() forclusion/S. fordisme/S. forer/a0a+() foresterie/S. forestière/F.() foret/S. forêt/S. foreuse/F.() forfaire/wF() forfait/S. forfaitaire/S. forfaitairement forfaitiste/S. forfaiture/S. forfanterie/S. forficule/S. forge/S. forgeable/S. forgeage/S. forgée/F.() forger/a0a+() forgeronne/F.() forgeuse/F.() forint/S. forjeter/d0a+() forlancer/a0a+() forlane/S. forligner/a0() forlonger/a0a+() formable/S. formage/S. formaldéhyde/S. formalisante/F.() formalisation/S. formalisée/F.() formaliser/a0a+() formalisme/S. formaliste/S. formalité/S. formariage/S. format/S. formatage/S. formatée/F.() formater/a0a+() formation/S. formative/F.() formatrice/F.() forme/S. formée/F.() formelle/F.() formellement formène/S. former/a0a+() formeret/S. formiate/S. formica/S. formicaliser/a0a+() formicante/F.() formication/S. formidable/S. formidablement formique/S. formiste/S. formol/S. formolée/F.() formoler/a0a+() formulable/S. formulaire/S. formulation/S. formule/S. formulée/F.() formuler/a0a+() fornication/S. fornicatrice/F.() forniquer/a0() forsythia/S. forte/F.() fortement forte-piano forteresse/S. fortiche/S. fortifiante/F.() fortification/S. fortifiée/F.() fortifier/a0a+() fortin/S. fortiori fortissimo fortissimo/S. fortraite/F.() fortraiture/S. fortuite/F.() fortuitement fortune/S. fortunée/F.() forum/S. forure/S. fosse/S. fossé/S. fossette/S. fossile/S. fossilifère/S. fossilisation/S. fossilisée/F.() fossiliser/a0a+() fossoir/S. fossoyer/a0a+() fossoyeuse/F.() fou/S. fouace/S. fouacier/S. fouage/S. fouaille/S. fouaillée/F.() fouailler/a0a+() foucade/S. fouchtra fouder/a0a+() foudre/S. foudroiement/S. foudroyante/F.() foudroyée/F.() foudroyer/a0a+() fouée/S. fouet/S. fouettard/S. fouettée/F.() fouettement/S. fouetter/a0a+() foufou/S. fougasse/S. fouger/a0() fougère/S. fougerole/S. fougue/S. fougueuse/W.() fougueusement fouille/S. fouillée/F.() fouiller/a0a+() fouilleuse/F.() fouillis fouinarde/F.() fouine/S. fouiner/a0() fouineuse/F.() fouir/f0f+() fouisseuse/F.() foulage/S. foulante/F.() foulard/S. foule/S. foulée/S. foulement/S. fouler/a0a+() foulerie/S. fouleuse/F.() fouloir/S. foulon/S. foulonnage/S. foulonnière/F.() foulque/S. foultitude/S. foulure/S. four/S. fourailler/a0a+() fourbe/S. fourber/a0a+() fourberie/S. fourbie/F.() fourbir/f0f+() fourbissage/S. fourbisseur/S. fourbue/F.() fourbure/S. fourche/S. fourchée/F.() fourcher/a0a+() fourchet/S. fourchetée/S. fourchette/S. fourchon/S. fourchue/F.() fourgon/S. fourgonner/a0() fourgonnette/S. fourgue/S. fourguer/a0a+() fouriérisme/S. fouriériste/S. fourme/S. fourmi/S. fourmilier/S. fourmilière/S. fourmilion/S. fourmillante/F.() fourmillement/S. fourmiller/a0() fournaise/S. fourneau/X. fournée/S. fournie/F.() fournière/F.() fournil/S. fourniment/S. fournir/f0f+() fournisseuse/F.() fourniture/S. fourrage/S. fourrager/a0a+() fourragère/F.() fourrageur/S. fourreau/X. fourrée/F.() fourrer/a0a+() fourre-tout fourreuse/F.() fourrière/F.() fourrure/S. fourvoiement/S. fourvoyante/F.() fourvoyée/F.() fourvoyer/a0a+() foutaise/S. fouteuse/F.() foutisme/S. foutoir/S. foutrale/F.() foutraque/S. foutre/S. foutre/tM() foutrement foutriquet/S. foutue/F.() fovéa/S. fox foxée/F.() fox-terrier/S. fox-trot foyer/S. fr frac/S. fracas fracassante/F.() fracassée/F.() fracassement/S. fracasser/a0a+() fractale/F.() fractale/S. fraction/S. fractionnaire/S. fractionnée/F.() fractionnelle/F.() fractionnement/S. fractionner/a0a+() fractionnisme/S. fractographie/S. fracture/S. fracturée/F.() fracturer/a0a+() fragile/S. fragilisante/F.() fragilisation/S. fragilisée/F.() fragiliser/a0a+() fragilité/S. fragment/S. fragmentaire/S. fragmentairement fragmentation/S. fragmentée/F.() fragmenter/a0a+() fragon/S. fragrance/S. frai/S. fraîche/F.() fraîche/S. fraîchement fraîcheur/S. fraîchin/S. fraîchir/f0() fraîchissante/F.() frairie/S. frais frais fraisage/S. fraise/S. fraiser/a0a+() fraiseuse/F.() fraisier/S. fraisière/S. fraisil/S. fraisure/S. framboise/S. framboisée/F.() framboiser/a0a+() framboisier/S. framée/S. franc/S. française/F.() franc-alleu franc-bord franc-bourgeois franche/S. franchement franchie/F.() franchir/f0f+() franchisage/S. franchise/S. franchisée/F.() franchiser/a0a+() franchissable/S. franchissement/S. francien/S. francilienne/F.() francique/S. francisation/S. franciscaine/F.() francisée/F.() franciser/a0a+() francisme/S. francisque/S. franciste/S. francité/S. francium/S. franc-jeu franc-maçon franc-maçonne franc-maçonnerie/S. franc-maçonnique/S. franco franco-allemande/F.() franco-américaine/F.() franco-belge/S. franco-canadienne/F.() franco-espagnole/F.() franco-italienne/F.() francolin/S. franco-luxembourgeoise/F.() francophile/S. francophilie/S. francophobe/S. francophobie/S. francophone/S. francophonie/S. francophoniser/a0a+() franco-québécoise/F.() franco-suisse/S. franc-parler franc-quartier francs-alleux francs-bords francs-bourgeois francs-jeux francs-maçonnes francs-maçons francs-parlers francs-quartiers francs-tireurs franc-tireur frange/S. frangeante/F.() frangée/F.() franger/a0a+() frangine/F.() frangipane/S. frangipanier/S. franglais franque/S. franquette franquisme franquiste/S. fransquillonner/a0() frappage/S. frappante/F.() frappe/S. frappée/F.() frappement/S. frapper/a0a+() frappeuse/F.() frasil/S. frasque/S. frater/S. fraternelle/F.() fraternellement fraternisation/S. fraterniser/a0() fraternité/S. fratricide/S. fratrie/S. fraude/S. frauder/a0a+() fraudeuse/F.() frauduleuse/W.() frauduleusement fraxinelle/S. frayage/S. frayement/S. frayer/a0a+() frayère/S. frayeur/S. fredaine/S. fredonnement/S. fredonner/a0a+() free-jazz free-lance free-lance/S. free-martin/S. free-shop/S. freesia/S. freezer/S. frégate/S. frégater/a0a+() frein/S. freinage/S. freinante/F.() freinatrice/F.() freinée/F.() freiner/a0a+() freineuse/F.() freinte/S. frelatage/S. frelatée/F.() frelater/a0a+() frêle/S. frelon/S. freluquet/S. frémir/f0() frémissante/F.() frémissement/S. frênaie/S. frêne/S. frénésie/S. frénétique/S. frénétiquement fréon/S. fréquemment fréquence/S. fréquencemètre/S. fréquentable/S. fréquentation/S. fréquentative/F.() fréquente/F.() fréquentée/F.() fréquenter/a0a+() fréquentielle/F.() frère/S. frérot/S. fresque/S. fresquiste/S. fressure/S. fret/S. fréter/c0a+() fréteur/S. frétillante/F.() frétillement/S. frétiller/a0() fretin/S. frettage/S. frette/S. frettée/F.() fretter/a0a+() freudienne/F.() freudisme/S. freux friabilité/S. friable/S. friande/F.() friandise/S. fric/S. fricadelle/S. fricandeau/X. fricassée/S. fricasser/a0a+() fricative/F.() fric-frac friche/S. frichti/S. fricot/S. fricotage/S. fricoter/a0a+() fricoteuse/F.() friction/S. frictionnelle/F.() frictionner/a0a+() fridolin/S. frigidaire/S. frigidarium/S. frigide/S. frigidité/S. frigo/S. frigolite/S. frigoporteur/S. frigorie/S. frigorifère/S. frigorifiée/F.() frigorifier/a0a+() frigorifique/S. frigorifuger/a0a+() frigorigène/S. frigorimètre/S. frigoriste/S. frigothérapie/S. frileuse/W.() frileusement frilosité/S. frimaire/S. frime/S. frimer/a0a+() frimeuse/F.() frimousse/S. fringale/S. fringante/F.() fringue/S. fringuée/F.() fringuer/a0a+() frioulane/F.() fripe/S. fripée/F.() friper/a0a+() friperie/S. fripière/F.() friponne/F.() friponner/a0a+() friponnerie/S. fripouille/S. fripouillerie/S. friquée/F.() friquer/a0a+() friquet/S. frire/yZ() frisage/S. frisante/F.() frisbee/S. frise/S. frisée/F.() friselis friser/a0a+() frisette/S. frisolée/S. frisonne/F.() frisonner frisottante/F.() frisotter/a0a+() frisottis frisquette/F.() frisson/S. frissonnante/F.() frissonnement/S. frissonner/a0() fristouiller/a0a+() frisure/S. frite/F.() frite/S. friter/a0a+() friterie/S. friteuse/S. fritillaire/S. frittage/S. fritter/a0a+() friture/S. fritz frivole/S. frivolement frivolité/S. froc/S. frocard/S. froide/F.() froidement froideur/S. froidir/f0() froidure/S. froissable/S. froissante/F.() froissée/F.() froissement/S. froisser/a0a+() froissure/S. frôlée/F.() frôlement/S. frôler/a0a+() frôleuse/F.() fromage/S. fromagère/F.() fromagerie/S. froment/S. fromental/X. froncée/F.() froncement/S. froncer/a0a+() froncis frondaison/S. fronde/S. fronder/a0a+() frondeuse/F.() front/S. frontail/S. frontale/W.() frontalière/F.() frontalité/S. fronteau/X. frontière/S. frontignan/S. frontisme/S. frontispice/S. frontiste/S. fronton/S. frottage/S. frottante/F.() frottée/F.() frottement/S. frotter/a0a+() frotteuse/F.() frottis frottoir/S. frouer/a0() froufrou/S. froufroutante/F.() froufroutement/S. froufrouter/a0() froussarde/F.() frousse/S. frousser/a0() fructidor/S. fructifère/S. fructification/S. fructifier/a0() fructose/S. fructueuse/W.() fructueusement frugale/W.() frugalement frugalité/S. frugivore/S. fruit/S. fruitarienne/F.() fruitée/F.() fruiterie/S. fruiticultrice/F.() fruitière/F.() frumentacée/F.() frumentaire/S. frusque/S. frusquer/a0a+() fruste/S. frustrante/F.() frustration/S. frustratoire/S. frustre/S. frustrée/F.() frustrer/a0a+() frutescente/F.() frutti ft/||-- fuchsia/S. fuchsienne/F.() fuchsine/S. fucus fuégienne/F.() fuel-oil/S. fugace/S. fugacement fugacité/S. fugitive/F.() fugitivement fugue/S. fuguée/F.() fuguer/a0() fugueuse/F.() führer/S. fuir/f0f+() fuir/iN() fuite/S. fuiter/a0a+() fulgurance/S. fulgurante/F.() fulguration/S. fulgurer/a0a+() fuligineuse/W.() full/S. fulminante/F.() fulminate/S. fulmination/S. fulminatoire/S. fulminer/a0a+() fulminique/S. fumable/S. fumage/S. fumagine/S. fumaison/S. fumante/F.() fumariacée/S. fume-cigare fume-cigarette fumée/F.() fumée/S. fumer/a0a+() fumerie/S. fumerolle/S. fumeron/S. fumet/S. fumeterre/S. fumeuse/F.() fumeuse/W.() fumier/S. fumigateur/S. fumigation/S. fumigatoire/S. fumigène/S. fumiger/a0a+() fumiste/S. fumisterie/S. fumivore/S. fumoir/S. fumure/S. funambule/S. funambulesque/S. funboard/S. funèbre/S. funérailles funéraire/S. funérale/W.() funérarium/S. funeste/S. funestement funiculaire/S. funicule/S. funin/S. funk funky fur furax furetage/S. fureter/b0() fureteuse/F.() furette/F.() fureur/S. furfuracée/F.() furfural/S. furia/S. furibarde/F.() furibonde/F.() furie/S. furieuse/W.() furieusement furigana/S. furioso furioso/S. furole/S. furoncle/S. furonculeuse/W.() furonculose/S. furtive/F.() furtivement furtivité/S. fus/zH() fusain/S. fusainiste/S. fusante/F.() fusarolle/S. fuscine/S. fuseau/X. fusée/S. fusel/S. fuselage/S. fuselée/F.() fuseler/d0a+() fuséologie/S. fuséologue/S. fuser/a0() fusette/S. fusibilité/S. fusible/S. fusiforme/S. fusil/S. fusilière/F.() fusillade/S. fusiller/a0a+() fusilleur/S. fusil-mitrailleur fusils-mitrailleurs fusiniste/S. fusion/S. fusionnante/F.() fusionnée/F.() fusionnelle/F.() fusionnement/S. fusionner/a0a+() fustanelle/S. fuste/S. fustibale/S. fustigation/S. fustigée/F.() fustiger/a0a+() fût/S. futaie/S. futaille/S. futaine/S. futée/F.() futée/S. fûtier/S. futile/S. futilement futilité/S. futon/S. futsal/S. future/F.() futurible/S. futurisme/S. futuriste/S. futurologie/S. futurologue/S. fuyante/F.() fuyarde/F.() g g/U.||-- gabardine/S. gabare/S. gabariage/S. gabarier/S. gabarier/a0a+() gabarit/S. gabarre/S. gabarrier/S. gabbro/S. gabegie/S. gabelle/S. gabelou/S. gabier/S. gabion/S. gabionnage/S. gabionner/a0a+() gâble/S. gabonaise/F.() gâchage/S. gâche/S. gâchée/F.() gâcher/a0a+() gâchette/S. gâcheuse/F.() gâchis gade/S. gadget/S. gadgétiser/a0a+() gadin/S. gadolinium/S. gadoue/S. gaélique/S. gaffe/S. gaffer/a0a+() gaffeuse/F.() gafouiller gag/S. gaga/S. gage/S. gagée/F.() gager/a0a+() gageure/S. gagiste/S. gagman/S. gagnable/S. gagnage/S. gagnante/F.() gagnée/F.() gagne-pain gagne-petit gagner/a0a+() gagneuse/F.() gaïac/S. gaïacol/S. gaie/F.() gaiement gaieté/S. gaillarde/F.() gaillardement gaillardie/S. gaillardise/S. gaillet/S. gailleterie/S. gailletin/S. gaîment gain/S. gainage/S. gaine/S. gaînée/F.() gaîner/a0a+() gainerie/S. gainière/F.() gaîté/S. gal/S. gal/||-- gala/S. galactagogue/S. galactique/S. galactogène/S. galactomètre/S. galactophore/S. galactose/S. galalithe/S. galamment galandage/S. galante/F.() galanterie/S. galantin/S. galantine/S. galapiat/S. galaxie/S. galbante/F.() galbe/S. galbée/F.() galber/a0a+() gale/S. galéace/S. galéasse/S. galée/S. galéjade/S. galéjer/a0() galène/S. galénique/S. galénisme/S. galéopithèque/S. galère/S. galérer/c0() galerie/S. galérien/S. galeriste/S. galerne/S. galet/S. galetas galette/S. galetteuse/W.() galeuse/W.() galgal/S. galhauban/S. galibot/S. galicienne/F.() galiléenne/F.() galimafrée/S. galimatias galion/S. galiote/S. galipette/S. galipot/S. galipoter/a0a+() galle/S. gallec/S. gallérie/S. gallicane/F.() gallicanisme/S. gallicisme/S. gallicole/S. galliforme/S. gallinacée/F.() gallinule/S. gallique/S. gallium/S. gallo/S. galloise/F.() gallomanie/S. gallon/S. gallo-romaine/F.() gallup/S. galoche/S. galoisienne/F.() galon/S. galonnée/F.() galonner/a0a+() galonnière/F.() galop/S. galopade/S. galopante/F.() galoper/a0a+() galopeuse/F.() galopin/S. galoubet/S. galuchat/S. galure/S. galurin/S. galvanique/S. galvaniquement galvanisante/F.() galvanisation/S. galvanisée/F.() galvaniser/a0a+() galvaniseuse/F.() galvanisme/S. galvanocautère/S. galvanomagnétique/S. galvanomètre/S. galvanométrique/S. galvanoplaste/S. galvanoplastie/S. galvanoplastique/S. galvanoscope/S. galvanostégie/S. galvanotaxie/S. galvanotropisme/S. galvanotype/S. galvanotypie/S. galvaudage/S. galvaudée/F.() galvauder/a0a+() galvaudeuse/W.() gamba/S. gambadante/F.() gambade/S. gambader/a0() gambe/S. gamberger/a0a+() gambette/S. gambienne/F.() gambier/S. gambille/S. gambiller/a0() gambiste/S. gambit/S. gameler/d0a+() gamelle/S. gamète/S. gamin/S. gamine/F.() gaminer/a0() gaminerie/S. gamma gammaglobuline/S. gammagraphie/S. gammare/S. gamme/S. gammée/F.() gamopétale/S. gamosépale/S. gan/S. ganache/S. ganacherie/S. ganaderia/S. gandin/S. gandoura/S. gang/S. ganga/S. gangétique/S. ganglion/S. ganglionnaire/S. gangrène/S. gangrenée/F.() gangrener/b0a+() gangreneuse/W.() gangster/S. gangstérisme/S. gangue/S. ganoïde/S. ganse/S. gansée/F.() ganser/a0a+() gansette/S. gant/S. gantée/F.() gantelée/F.() gantelet/S. ganteline/S. ganter/a0a+() ganterie/S. gantière/F.() gap/S. garage/S. garagiste/S. garalde/S. garance/S. garancer/a0a+() garancerie/S. garanceur/S. garancière/S. garante/F.() garantie/F.() garantir/f0f+() garbure/S. garce/S. garcette/S. garçonne/F.() garçonnet/S. garçonnière/F.() garde/S. garde-à-vous garde-barrière garde-bœufs garde-boue garde-but garde-cendre garde-chasse garde-chiourme garde-corps garde-côte garde-côtes gardée/F.() garde-feu garde-fou garde-frein garde-magasin garde-malade garde-manège garde-manger garde-meubles garde-mites gardénal/S. garde-nappe gardénia/S. garden-party/S. garde-pêche garde-places garde-port garder/a0a+() garde-rats garderie/S. garde-robe/S. gardes-barrières gardes-buts gardes-chasse gardes-chiourme gardes-côtes gardes-freins gardes-magasins gardes-maisons gardes-malades gardes-manèges gardes-pêche gardes-ports gardes-voies gardeuse/F.() garde-voie garde-vue gardiane/F.() gardiennage/S. gardienne/F.() gardisme/S. gardiste/S. gardon/S. gare/S. garée/F.() garenne/S. garer/a0a+() gargamelle/S. gargantua/S. gargantuesque/S. gargariser/a0a+() gargarisme/S. gargote/S. gargoter/a0() gargotière/F.() gargouille/S. gargouillement/S. gargouiller/a0() gargouillis gargoulette/S. gargousse/S. garibaldienne/F.() gariguette/S. garnement/S. garnie/F.() garnir/f0f+() garnison/S. garnissage/S. garnisseuse/F.() garniture/S. garou/S. garrigue/S. garrot/S. garrottage/S. garrottée/F.() garrotter/a0a+() gars gasconnade/S. gasconne/F.() gasconner/a0() gasconnisme/S. gas-oil/S. gaspacho/S. gaspillage/S. gaspillée/F.() gaspiller/a0a+() gaspilleuse/F.() gastéropode/S. gastralgie/S. gastralgique/S. gastrectomie/S. gastrique/S. gastrite/S. gastro-entérite/S. gastro-entérologie/S. gastro-entérologue/S. gastro-intestinale/W.() gastronome/S. gastronomie/S. gastronomique/S. gastroplastie/S. gastropode/S. gastroscopie/S. gastrotomie/S. gastrozoïde/S. gastrula/S. gate/S. gâteau/X. gâtée/F.() gâte-métiers gâte-papiers gâter/a0a+() gâterie/S. gâte-sauce gâteuse/W.() gâtifier/a0() gâtine/S. gâtisme/S. gatte/S. gattilier/S. gauche/S. gauchement gauchère/F.() gaucherie/S. gauchie/F.() gauchir/f0f+() gauchisante/F.() gauchisme/S. gauchissement/S. gauchiste/S. gaucho/S. gaude/S. gaudir/f0f+() gaudriole/S. gaufrage/S. gaufre/S. gaufrée/F.() gaufrer/a0a+() gaufrette/S. gaufreuse/F.() gaufrier/S. gaufroir/S. gaufrure/S. gaulage/S. gaule/S. gauler/a0a+() gaulette/S. gaulis gaullienne/F.() gaullisme/S. gaulliste/S. gauloise/F.() gauloisement gauloiserie/S. gaulthérie/S. gaumaise/F.() gaupe/S. gaur/S. gauss/Um() gausser/a0a+() gaussienne/F.() gavache/S. gavage/S. gavée/F.() gaver/a0a+() gaveuse/F.() gavial/S. gavotte/S. gavroche/S. gay gayal/S. gaz gazage/S. gaze/S. gazée/F.() gazéification/S. gazéifiée/F.() gazéifier/a0a+() gazelle/S. gazer/a0a+() gazetière/F.() gazette/S. gazeuse/W.() gazière/F.() gazinière/S. gazoduc/S. gazogène/S. gazole/S. gazoline/S. gazomètre/S. gazon/S. gazonnage/S. gazonnée/F.() gazonnement/S. gazonner/a0a+() gazouillante/F.() gazouillement/S. gazouiller/a0() gazouilleuse/F.() gazouillis geai/S. géante/F.() gecko/S. geek/S. géhenne/S. geignante/F.() geignarde/F.() geignement/S. geindre/wA() geisha/S. gel/S. gélatine/S. gélatinée/F.() gélatiner/a0a+() gélatineuse/W.() gélatiniser/a0a+() gélatino-bromure/S. gélatino-chlorure/S. gelée/F.() gelée/S. geler/b0a+() gélifiante/F.() gélification/S. gélifier/a0a+() gelinotte/S. gélisol/S. gélive/F.() gélivure/S. gélose/S. gélule/S. gelure/S. gémeau/X. gémellaire/S. gémelle/S. gémellipare/S. gémelliparité/S. gémellité/S. gémination/S. géminée/F.() géminer/a0a+() gémir/f0f+() gémissante/F.() gémissement/S. gemmage/S. gemmail/X. gemmation/S. gemme/S. gemmée/F.() gemmer/a0a+() gemmeuse/F.() gemmifère/S. gemmologie/S. gemmologiste/S. gemmologue/S. gemmule/S. gémonies gênante/F.() gencive/S. gendarme/S. gendarmer/a0a+() gendarmerie/S. gendarmette/S. gendre/S. gène/S. gêne/S. généalogie/S. généalogique/S. généalogiquement généalogiste/S. gênée/F.() génépi/S. gêner/a0a+() généralat/S. générale/W.() généralement généralisable/S. généralisation/S. généralisatrice/F.() généralisée/F.() généraliser/a0a+() généralissime/S. généraliste/S. généralité/S. génération/S. générationnelle/F.() générative/F.() génératrice/F.() générée/F.() générer/c0a+() généreuse/W.() généreusement généricité/S. générique/S. génériquement générosité/S. genèse/S. génésiaque/S. génésique/S. genet/S. genêt/S. généthliaque/S. généticienne/F.() genêtière/S. génétique/S. génétiquement génétisme/S. genette/S. gêneuse/F.() genevoise/F.() genévrier/S. géniale/W.() génialement génialité/S. génie/S. genièvre/S. génique/S. génisse/S. génitale/W.() génitif/S. génito-urinaire/S. génitrice/F.() génocidaire/S. génocide/S. génogramme/S. génoise/F.() génome/S. génomique/S. génosociogramme/S. génotype/S. genou/X. genouillère/S. génovéfain/S. genre/S. gens gent/S. gente/S. gentianacée/S. gentiane/S. gentianée/S. gentilé/S. gentilhomme gentilhommière/S. gentilité/S. gentille/F.() gentillesse/S. gentillette/F.() gentilshommes gentiment gentleman/S. gentleman-farmer gentlemans-farmers gentrification/S. gentry/S. génuflexion/S. génuine/S. géobiologie/S. géobiologique/S. géobiologiste/S. géobiologue/S. géocentrique/S. géocentrisme/S. géochimie/S. géochimique/S. géochimiste/S. géochronologie/S. géochronologique/S. géocroiseur/S. géode/S. géodésie/S. géodésienne/F.() géodésique/S. géodésiquement géodimètre/S. géodynamique/S. géoglyphe/S. géographe/S. géographie/S. géographique/S. géographiquement géoïde/S. geôlage/S. geôle/S. geôlière/F.() géolocalisation/S. géolocaliser/a0a+() géologie/S. géologique/S. géologiquement géologue/S. géomagnétique/S. géomagnétisme/S. géomancie/S. géomancienne/F.() géomarketing/S. géomatique/S. géomembrane/S. géométral/X. géomètre/S. géométrie/S. géométrique/S. géométriquement géométrisation/S. géométriser/a0a+() géomorphologie/S. géomorphologue/S. géophage/S. géophagie/S. géophile/S. géophone/S. géophysicienne/F.() géophysique/S. géopoliticienne/F.() géopolitique/S. géopolitologue/S. géorgienne/F.() géoscience/S. géostationnaire/S. géostratégie/S. géostratégique/S. géostrophique/S. géosynclinal/X. géotechnicienne/F.() géotechnique/S. géotextile/S. géothermie/S. géothermique/S. géotropisme/S. géotrupe/S. gérable/S. gérance/S. géraniacée/S. géraniée/S. géranium/S. gérante/F.() gerbage/S. gerbante/F.() gerbe/S. gerber/a0a+() gerbera/S. gerbeuse/F.() gerbier/S. gerbière/S. gerbille/S. gerboise/S. gerce/S. gercée/F.() gercer/a0a+() gerçure/S. gérée/F.() gérer/c0a+() gerfaut/S. gériatre/S. gériatrie/S. gériatrique/S. germaine/F.() germandrée/S. germanique/S. germanisation/S. germaniser/a0a+() germanisme/S. germaniste/S. germanium/S. germanophile/S. germanophobe/S. germanophone/S. germanopratine/F.() germe/S. germée/F.() germen/S. germer/a0() germicide/S. germinal/S. germinale/W.() germination/S. germinative/F.() germinatrice/F.() germoir/S. germon/S. géromé/S. gérondif/S. géronte/S. gérontisme/S. gérontocratie/S. gérontologie/S. gérontologique/S. gérontologue/S. gérontophile/S. gérontophilie/S. gerseau/X. gerzeau/X. gésier/S. gésine/S. gésir/iV() gesse/S. gestaltisme/S. gestation/S. gestatoire/S. geste/S. gesticulante/F.() gesticulation/S. gesticulatoire/S. gesticulée/F.() gesticuler/a0() gestion/S. gestionnaire/S. gestuelle/F.() getter/S. geyser/S. ghanéenne/F.() ghetto/S. ghettoïsation/S. giaour/S. gibbeuse/W.() gibbon/S. gibbosité/S. gibbsite/S. gibecière/S. gibeline/F.() gibelotte/S. giberne/S. gibet/S. gibibit/S. gibier/S. gibioctet/S. giboulée/S. giboyer/a0a+() giboyeuse/W.() gibus giclée/S. giclement/S. gicler/a0() gicleur/S. gifle/S. gifler/a0a+() gigabit/S. gigantesque/S. gigantesquement gigantisme/S. gigantomachie/S. gigaoctet/S. gigatonne/S. gigogne/S. gigolo/S. gigot/S. gigotante/F.() gigotée/F.() gigotement/S. gigoter/a0() gigoteuse/F.() gigue/S. gilet/S. giletière/F.() gille/S. gimblette/S. gin/S. gindre/S. gin-fizz gingembre/S. gingivale/W.() gingivite/S. ginguet/S. ginkgo/S. ginseng/S. giorno girafe/S. girafeau/X. girafon/S. girandole/S. girasol/S. giration/S. giratoire/S. giraumon/S. giraumont/S. giravion/S. girelle/S. girie/S. girl/S. girodyne/S. girofle/S. giroflée/S. giroflier/S. girolle/S. giron/S. gironde/F.() girondine/F.() gironnée/F.() gironner/a0a+() girouette/S. girouetter/a0() gisante/F.() gisement/S. gîtage/S. gitane/F.() gîte/S. gîter/a0() gîtologie/S. giton/S. givrage/S. givrante/F.() givre/S. givrée/F.() givrer/a0a+() givreuse/W.() givrure/S. glabelle/S. glabre/S. glaçage/S. glaçante/F.() glace/S. glacée/F.() glacer/a0a+() glacerie/S. glaceur/S. glaceuse/W.() glaciaire/S. glaciale/W.() glacialement glacials glaciation/S. glacier/S. glacière/S. glaciologie/S. glaciologique/S. glaciologue/S. glacis glaçon/S. glaçure/S. gladiateur/S. glaglater glagolitique/S. glaïeul/S. glaire/S. glairer/a0a+() glaireuse/W.() glairure/S. glaise/S. glaiser/a0a+() glaiseuse/W.() glaisière/S. glaive/S. glamour/S. glanage/S. gland/S. glandage/S. glande/S. glandée/F.() glandée/S. glander/a0() glandeuse/F.() glandouille/S. glandouiller/a0() glandulaire/S. glanduleuse/W.() glanée/F.() glaner/a0a+() glaneuse/F.() glanure/S. glapir/f0f+() glapissante/F.() glapissement/S. glaréole/S. glas glasnost glass glatir/f0() glaucome/S. glauque/S. glaviot/S. glavioter/a0() glèbe/S. gléchome/S. glène/S. gléner/c0a+() glénoïde/S. glette/S. gletter/a0() gliale/W.() glie/S. gliome/S. glissade/S. glissage/S. glissante/F.() glisse/S. glissée/F.() glissement/S. glisser/a0a+() glisseuse/F.() glissière/S. glissoir/S. glissoire/S. globale/W.() globalement globalisante/F.() globalisation/S. globalisée/F.() globaliser/a0a+() globalisme/S. globaliste/S. globalité/S. globe/S. globe-trotteuse/F.() globigérine/S. globine/S. globulaire/S. globule/S. globuleuse/W.() globuline/S. glockenspiel/S. gloire/S. glome/S. gloméris glomérule/S. gloria gloriette/S. glorieuse/W.() glorieusement glorifiante/F.() glorification/S. glorificatrice/F.() glorifiée/F.() glorifier/a0a+() gloriole/S. glose/S. gloser/a0a+() glossaire/S. glossateur/S. glossectomie/S. glossette/S. glossine/S. glossite/S. glossolalie/S. glosso-pharyngienne/F.() glossotomie/S. glottale/W.() glotte/S. glottique/S. glouglou/S. glougloutante/F.() glouglouter/a0() gloussante/F.() gloussement/S. glousser/a0() glouteron/S. gloutonne/F.() gloutonnement gloutonner/a0a+() gloutonnerie/S. glu/S. gluante/F.() gluau/X. glucide/S. glucidique/S. glucinium/S. glucomètre/S. glucose/S. glucosée/F.() glucoserie/S. glucoside/S. glui/S. glume/S. glumelle/S. gluon/S. glutamate/S. glutamique/S. glutathion/S. gluten/S. glutineuse/W.() glycémie/S. glycéride/S. glycérie/S. glycérine/S. glycériner/a0a+() glycérique/S. glycine/S. glycocolle/S. glycogène/S. glycogénique/S. glycol/S. glycolipide/S. glycolyse/S. glycoprotéine/S. glycosurie/S. glycosurique/S. glycosylation/S. glyphe/S. glyptique/S. glyptodon/S. glyptodon/S. glyptographie/S. glyptothèque/S. gnangnan gnangnan/S. gnaque/S. gnathologie/S. gnathologique/S. gneiss gnocchi/S. gnognotte/S. gnôle/S. gnome/S. gnomique/S. gnomon/S. gnomonique/S. gnomoniste/S. gnon/S. gnose/S. gnoséologie/S. gnoséologique/S. gnosie/S. gnosticisme/S. gnostique/S. gnotobiotique/S. gnou/S. go goal/S. goaler/a0a+() gobée/F.() gobelet/S. gobeleterie/S. gobeletier/S. gobeline/F.() gobe-mouche/S. gobe-mouches gober/a0a+() goberge/S. goberger/a0a+() gobeter/d0a+() gobeuse/F.() gobie/S. godage/S. godaille/S. godailler/a0() godelureau/X. godemiché/S. goder/a0() godet/S. godiche/S. godillante/F.() godille/S. godiller/a0() godilleur/S. godillot/S. godiner/a0a+() godiveau/X. godron/S. godronnage/S. godronnée/F.() godronner/a0a+() goéland/S. goélette/S. goémon/S. goémonière/F.() goethite/S. goglu/S. gogo/S. goguenarde/F.() goguenarder/a0() goguenardise/S. goguette/S. goï goïm goinfre/S. goinfrer/a0a+() goinfrerie/S. goitre/S. goitreuse/W.() golden/S. golem/S. golf/S. golfe/S. golfeuse/F.() golmotte/S. gombo/S. goménol/S. goménolée/F.() gominée/F.() gominer/a0a+() gommage/S. gomme/S. gommée/F.() gomme-gutte gommer/a0a+() gomme-résine gommes-guttes gommes-résines gommeuse/W.() gommier/S. gomorrhéenne/F.() gomorrhiser gonade/S. gonadique/S. gonadostimuline/S. gonadotrope/S. gonadotrophine/S. gond/S. gonder/a0a+() gondolage/S. gondolante/F.() gondole/S. gondolée/F.() gondolement/S. gondoler/a0a+() gondolière/F.() gonelle/S. gonfalon/S. gonfalonier/S. gonfanon/S. gonfanonier/S. gonflable/S. gonflage/S. gonflante/F.() gonflée/F.() gonflement/S. gonfler/a0a+() gonfleur/S. gong/S. gongonner/a0() gongorisme/S. goniomètre/S. goniométrie/S. goniométrique/S. gonochorisme/S. gonococcie/S. gonocoque/S. gonophore/S. gonorrhée/S. gonosome/S. gonozoïde/S. gonzesse/F.() gord/S. gordien/S. gore goret/S. gorfou/S. gorge/S. gorge-de-pigeon gorgée/F.() gorgée/S. gorgeon/S. gorgeonner gorger/a0a+() gorgerette/S. gorgerin/S. gorget/S. gorgone/S. gorgonzola/S. gorille/S. goron/S. gosette/S. gosier/S. gospel/S. gosse/S. gothique/S. gotique/S. goton/S. gouache/S. gouachée/F.() gouacher/a0a+() gouacheuse/F.() gouaille/S. gouailler/a0() gouaillerie/S. gouailleuse/F.() goualante/S. goualer/a0a+() gouape/S. gouaper/a0() gouda/S. goudron/S. goudronnage/S. goudronnée/F.() goudronner/a0a+() goudronneuse/F.() goudronneuse/W.() gouet/S. gouffre/S. gouge/S. gouger/a0a+() gougère/S. gougnafier/S. gougnotte/S. gougnotter gouine/S. goujat/S. goujaterie/S. goujon/S. goujonner/a0a+() goujonnette/S. goujonnière/S. goulache/S. goulafre/S. goulag/S. goule/S. goulée/S. goulet/S. gouleyante/F.() goulot/S. goulotte/S. goulue/F.() goulûment goum/S. goupil/S. goupille/S. goupiller/a0a+() goupillon/S. goupillonner/a0a+() gour/S. gourance/S. gourancer gourbi/S. gourde/F.() gourdin/S. gourer/a0a+() gourgandine/S. gourmande/F.() gourmandée/F.() gourmander/a0a+() gourmandise/S. gourme/S. gourmée/F.() gourmet/S. gourmette/S. gourou/S. gousse/S. gousset/S. goût/S. goûtée/F.() goûter/S. goûter/a0a+() goûteuse/F.() goûteuse/W.() goûte-vin goutte/S. goutte-à-goutte gouttelette/S. goutter/a0() gouttereau/X. goutteur/S. goutteuse/W.() gouttière/S. gouttiner/a9() gouvernable/S. gouvernail/S. gouvernance/S. gouvernante/F.() gouverne/S. gouvernée/F.() gouvernement/S. gouvernementale/W.() gouvernementalisme/S. gouverner/a0a+() gouverneure/F.() gouvernorat/S. gouzi-gouzi gouzis-gouzis goy/S. goyave/S. goyavier/S. gr/||-- grabat/S. grabataire/S. grabatisation/S. graben/S. grabuge/S. grâce grâce/S. graciée/F.() gracier/a0a+() gracieuse/W.() gracieusement gracieuseté/S. gracile/S. gracilité/S. gradateur/S. gradation/S. grade/S. gradée/F.() gradient/S. gradin/S. gradine/S. gradualisme/S. graduat/S. graduation/S. graduée/F.() graduelle/F.() graduellement graduer/a0a+() gradus grafcet/S. graff/S. graffer graffiter/a0a+() graffiti/S. grafigner/a0a+() graille/S. graillement/S. grailler/a0a+() graillon/S. graillonner/a0() grain/S. grainage/S. graine/S. grainée/F.() grainer/a0a+() graineterie/S. grainetière/F.() grainière/F.() graissage/S. graissante/F.() graisse/S. graissée/F.() graisser/a0a+() graisseuse/F.() graisseuse/W.() gram gramen/S. graminacée/S. graminée/S. grammage/S. grammaire/S. grammairienne/F.() grammaticale/W.() grammaticalement grammaticalisation/S. grammaticaliser/a0a+() grammaticalité/S. grammatiste/S. gramme/Um() gramophone/S. grand-angle grand-angulaire grand-chose grand-croix grand-duc grand-ducale/W.() grand-duché grande/F.() grande-duchesse grandelette/F.() grandement grandes-duchesses grandesse/S. grandette/F.() grandeur/S. grand-guignolesque/S. grandie/F.() grandiloquence/S. grandiloquente/F.() grandiose/S. grandiosement grandir/f0f+() grandissante/F.() grandissime/S. grand-maman/S. grand-mère/S. grand-messe/S. grand-oncle grand-papa grand-peine grand-père grands-angles grands-angulaires grands-croix grands-duchés grands-ducs grands-mamans grands-mères grands-messes grands-oncles grands-papas grands-parents grands-pères grands-tantes grands-voiles grand-tante/S. grand-voile/S. grange/S. granit/S. granite/S. granitée/F.() graniter/a0a+() graniteuse/W.() granitique/S. granitoïde/S. granivore/S. granny-smith granoclassement/S. granulaire/S. granularité granulat/S. granulation/S. granule/S. granulée/F.() granuler/a0a+() granuleuse/W.() granulie/S. granulite/S. granulocyte/S. granulomatose/S. granulome/S. granulométrie/S. granulométrique/S. grape-fruit/S. grapefruit/S. graphe/S. graphème/S. graphène/S. graphie/S. graphique/S. graphiquement graphisme/S. graphiste/S. graphitage/S. graphite/S. graphiter/a0a+() graphiteuse/W.() graphologie/S. graphologique/S. graphologue/S. graphomètre/S. grappe/S. grappillage/S. grappiller/a0a+() grappilleuse/F.() grappillon/S. grappin/S. gras gras-double/S. grasse/F.() grassement grasserie/S. grasset/S. grasseyante/F.() grasseyement/S. grasseyer/a0a+() grassmannienne/F.() grassouillette/F.() grateron/S. graticuler/a0a+() gratifiante/F.() gratification/S. gratifiée/F.() gratifier/a0a+() gratin/S. gratinée/F.() gratiner/a0a+() gratiole/S. gratis gratitude/S. grattage/S. gratte/S. gratte-ciel gratte-cul gratte-dos grattée/F.() grattelle/S. grattement/S. gratte-papier gratter/a0a+() gratteron/S. gratteuse/F.() grattoir/S. grattouiller/a0a+() gratture/S. gratuiciel/S. gratuite/F.() gratuité/S. gratuitement grau/X. gravatière/F.() gravats grave/S. gravée/F.() gravelée/S. graveleuse/W.() gravelle/S. gravelure/S. gravement graver/a0a+() graveuse/F.() gravide/S. gravidique/S. gravidité/S. gravie/F.() gravier/S. gravillon/S. gravillonnage/S. gravillonnée/F.() gravillonner/a0a+() gravillonneuse/F.() gravimètre/S. gravimétrie/S. gravimétrique/S. gravir/f0f+() gravisphère/S. gravissime/S. gravitaire/S. gravitation/S. gravitationnelle/F.() gravité/S. graviter/a0() graviton/S. gravois gravure/S. gray/Um() gré grèbe/S. grébiche grébige/S. gréciser/a0a+() grécité gréco-latine/F.() gréco-romaine/F.() grecque/F.() grecquer/a0a+() gredine/F.() gredinerie/S. gréement/S. green/S. gréer/a0a+() gréeuse/F.() greffage/S. greffe/S. greffée/F.() greffer/a0a+() greffeuse/F.() greffière/F.() greffoir/S. greffon/S. grégaire/S. grégarisme/S. grège/S. grégeois grégorienne/F.() grègues grêle/S. grêlée/F.() grêler/a9a+() grelin/S. grêlon/S. grelot/S. grelote/S. grelottante/F.() grelotte/S. grelottement/S. grelotter/a0() greluchon/S. grémil grémille/S. grenache/S. grenadage/S. grenade/S. grenadeur/S. grenadienne/F.() grenadière/F.() grenadille/S. grenadine/F.() grenage/S. grenaille/S. grenailler/a0a+() grenailleuse/F.() grenaison/S. grenat/S. grenée/F.() greneler/d0a+() grener/b0a+() grènetis greneur/S. grenier/S. grenobloise/F.() grenouillage/S. grenouillante/F.() grenouille/S. grenouiller/a0() grenouillère/S. grenouillesque/S. grenouillette/S. grenue/F.() grenure/S. grès grésage gréser/c0a+() gréseux grésil/S. grésillement/S. grésiller/a9() gressin/S. grève/S. gréver/a0() grever/b0a+() grévicultrice/F.() gréviste/S. gribiche/S. gribouillage/S. gribouille/S. gribouillée/F.() gribouiller/a0a+() gribouilleuse/F.() gribouillis grièche/S. grief/S. grièvement griffade/S. griffage/S. griffe/S. griffée/F.() griffer/a0a+() griffeuse/F.() griffon/S. griffonnage/S. griffonnée/F.() griffonnement/S. griffonner/a0a+() griffonneuse/F.() griffue/F.() griffure/S. grigne/S. grigner/a0() grignon/S. grignotage/S. grignotement/S. grignoter/a0a+() grignoteuse/F.() grignotis grigou/S. grigri/S. grigriser/a0a+() gril/S. grill/S. grillade/S. grilladerie/S. grillage/S. grillagée/F.() grillager/a0a+() grillageur/S. grille/S. grillée/F.() grille-pain griller/a0a+() grillette/F.() grilloir/S. grillon/S. grill-room/S. grimaçante/F.() grimace/S. grimacer/a0() grimacière/F.() grimage/S. grimaud/S. grimée/F.() grimer/a0a+() grimoire/S. grimpante/F.() grimpe/S. grimpée/S. grimper/a0a+() grimpereau/X. grimpette/S. grimpeuse/F.() grinçante/F.() grincement/S. grincer/a0() grinche/S. grincher/a0a+() grincheuse/W.() gringalet/S. gringe/S. gringo/S. gringolée/F.() gringue/S. gringuer/a0() griotte/F.() grip/S. grippage/S. grippale/W.() grippe/S. grippée/F.() gripper/a0a+() grippe-sou/S. grisaille/S. grisaillée/F.() grisailler/a0a+() grisante/F.() grisard/S. grisâtre/S. grisbi/S. grise/F.() grisée/F.() griser/a0a+() griserie/S. griset/S. grisette/S. grisoler/a0() grisoller/a0() grisonnante/F.() grisonne/F.() grisonnement/S. grisonner/a0() grisou/S. grisoumètre/S. grisouteuse/W.() grive/S. grivelée/F.() griveler/d0a+() grivèlerie/S. grivelure/S. griveton/S. grivoise/F.() grivoiserie/S. grizzli/S. groenendael/S. groenlandaise/F.() grog/S. groggy grognarde/F.() grognasse/S. grognasser/a0() grogne/S. grognement/S. grogner/a0a+() grognerie/S. grogneuse/F.() grognonne/F.() grognonner/a0() groin/S. groisil/S. grolle/S. grommeler/d0a+() grommellement/S. grondante/F.() gronde/S. grondée/F.() grondement/S. gronder/a0a+() gronderie/S. grondeuse/F.() grondin/S. groom/S. groschen/S. groseille/S. groseillier/S. gros-grain/S. gros-porteur/S. grosse/F.() grosserie/S. grossesse/S. grosseur/S. grossie/F.() grossière/F.() grossièrement grossièreté/S. grossir/f0f+() grossissante/F.() grossissement/S. grossiste/S. grosso grossoyer/a0a+() grotesque/S. grotesquement grotte/S. grouillante/F.() grouillement/S. grouiller/a0a+() grouillot/S. groûler/a0() groumer/a0() groupage/S. groupale/W.() groupe/S. groupée/F.() groupement/S. grouper/a0a+() groupie/S. groupiste/S. groupoïde/S. groupuscule/S. grouse/S. gruau/X. grue/S. grugée/F.() grugeoir/S. gruger/a0a+() grulette/S. grume/S. grumeau/X. grumelée/F.() grumeler/d0a+() grumeleuse/W.() grumelure/S. grumier/S. gruppetti gruppetto/S. grutière/F.() gruyère/S. gryphée/S. guacamole/S. guadeloupéenne/F.() guai/S. guanaco/S. guanidine/S. guanine/S. guano/S. guarani/S. guard/S. guatémaltèque/S. gué/S. guéable/S. guèbre/S. guède/S. guéer/a0a+() guéguerre/S. guelfe/S. guelte/S. guenille/S. guenon/S. guépard/S. guêpe/S. guêpière/F.() guère guéret/S. guéridon/S. guérie/F.() guérilla/S. guérillero/S. guérir/f0f+() guérison/S. guérissable/S. guérissante/F.() guérisseuse/F.() guérite/S. guerre/S. guerrière/F.() guerroyer/a0a+() guet/S. guet-apens guêtre/S. guêtrer/a0a+() guêtron/S. guets-apens guette/S. guetter/a0a+() guetteuse/F.() gueulante/F.() gueularde/F.() gueule/S. gueule-de-loup gueulée/F.() gueulement/S. gueuler/a0a+() gueules-de-loup gueuleton/S. gueuletonner/a0() gueuse/W.() gueuser/a0a+() gueuserie/S. gueuze/S. gugusse/S. gui/S. guibolle/S. guibre/S. guiche/S. guichet/S. guichetière/F.() guidage/S. guidance/S. guide/S. guide-âne/S. guideau/X. guidée/F.() guide-fil guider/a0a+() guiderope/S. guidon/S. guignarde/F.() guigne/S. guigner/a0a+() guignette/S. guignier/S. guignol/S. guignolade/S. guignolesque/S. guignolet/S. guignon/S. guilde/S. guili-guili guillaume/S. guilledou guillemet/S. guillemeter/d0a+() guillemot/S. guillerette/F.() guilleri/S. guillochage/S. guillochée/F.() guillocher/a0a+() guillocheur/S. guillochis guillochure/S. guillotine/S. guillotinée/F.() guillotiner/a0a+() guillotineuse/F.() guimauve/S. guimbarde/S. guimpe/S. guinche/S. guincher/a0() guindaille/S. guindailler/a0() guindeau/X. guindée/F.() guinder/a0a+() guinderesse/S. guinée/S. guinéenne/F.() guingois guinguette/S. guipage/S. guiper/a0a+() guipoir/S. guipon/S. guipure/S. guirlande/S. guisarme/S. guise/S. guitare/S. guitariste/S. guitoune/S. guivre/S. guivrée/F.() gulden/S. gummifère/S. gunite/S. guppy/S. gus guss gustation/S. gustative/F.() gustométrie/S. gutta-percha guttas-perchas gutturale/W.() guyanaise/F.() guyanienne/F.() guzla/S. gym/S. gymkhana/S. gymnase/S. gymnasiarque/S. gymnaste/S. gymnastique/S. gymnique/S. gymnocarpe/S. gymnosophiste/S. gymnosperme/S. gymnote/S. gynandromorphisme/S. gynécée/S. gynécologie/S. gynécologique/S. gynécologiste/S. gynécologue/S. gynécomastie/S. gypaète/S. gypse/S. gypserie/S. gypseuse/W.() gypsomètre/S. gypsophile/S. gyrin/S. gyrocompas gyromètre/S. gyrophare/S. gyropilote/S. gyroscope/S. gyroscopique/S. gyrostat/S. h h/||-- ha/||-- hab habanera/S. habile/S*() habilement/D'Q' habileté/S*() habilitation/S*() habilité/S*() habilitée/F*() habiliter/a2a+() habillable/S*() habillage/S*() habillée/F*() habillement/S*() habiller/a4a+() habilleuse/F*() habit/S*() habitabilité/S*() habitable/S*() habitacle/S*() habitante/F*() habitat/S*() habitation/S*() habitée/F*() habiter/a2a+() habituation/S*() habitude/S*() habituée/F*() habituelle/F*() habituellement/D'Q' habituer/a4a+() habitus/L'D'Q' hâbler/a0a+() hâblerie/S. hâbleuse/F.() hachage/S. hache/S. hachée/F.() hache-fourrage hache-légumes hachement/S. hachémite/S. hache-paille hacher/a0a+() hachereau/X. hachette/S. hacheuse/F.() hache-viande hachis hachoir/S. hachure/S. hachurée/F.() hachurer/a0a+() hacienda/S*() hacker/S. hadale/W*() haddock/S. hadith/S. hadji/S. hadron/S. hafnium/S. hagarde/F.() hagiographe/S*() hagiographie/S*() hagiographique/S*() haïe haïe/F.() haie/S. haïk/S. haïkaï/S. haïku/S. haillon/S. haillonneuse/W.() haine/S. haineuse/W.() haineusement haïr/fA() haire/S. haïssable/S. haïtienne/F.() halage/S. halal halbi/S. halbran/S. hâle/S. halecret/S. halée/F.() hâlée/F.() haleine/S*() halenée/S*() halener/b0a+() haler/a0a+() hâler/a0a+() haletante/F.() halètement/S. haleter/b0() haleuse/F.() half-track/S. halicte/S*() halieute/S*() halieutique/S*() halin/S. haline/F.() haliotide/S*() haliple/S. halitueuse/W*() halkiner/a0a+() hall/S. hallage/S. hallali/S*() halle/S. hallebarde/S. hallebardier/S. hallier/S. hallstattienne/F.() hallucinante/F*() hallucination/S*() hallucinatoire/S*() hallucinée/F*() halluciner/a2a+() hallucinogène/S*() hallucinose/S*() halo/S. halogénation/S*() halogène/S*() halogénure/S*() halographie/S*() haloïde/S*() hâloir/S. halophile/S*() halophyte/S*() halte/S. haltère/S*() haltérophile/S*() haltérophilie/S*() halva/S. hamac/S. hamada/S. hamadryade/S*() hamadryas/L'D'Q' hamamélis/L'D'Q' hamburger/S. hameau/X. hameçon/S*() hameçonnage/S*() hameçonnée/F*() hameçonner/a2a+() hamiltonienne/F*() hammam/S. hammerless hampe/S. hamster/S. han hanap/S. hanche/S. hanchée/F.() hanchement/S. hancher/a0a+() handball/S. handballeuse/F.() handeler/d0a+() handicap/S. handicapante/F.() handicapée/F.() handicaper/a0a+() handicapeur/S. handisport/S. hangar/S. hanneton/S. hannetonnage/S. hannetonner/a0a+() hansart/S. hanse/S. hanséatique/S. hantée/F.() hanter/a0a+() hantise/S. hapax/L'D'Q' haploïde/S*() haplologie/S*() haplotype/S*() happe/S. happement/S. happening/S. happer/a0a+() haquebute/S. haquenée/S. haquet/S. hara-kiri/S. haranguée/F.() haranguer/a0a+() harangueuse/F.() haras harassante/F.() harassée/F.() harassement/S. harasser/a0a+() harcelante/F.() harcelée/F.() harcèlement/S. harceler/b0a+() harceleuse/F.() hard harde/S. harder/a0a+() hardeuse/F.() hardie/F.() hardiesse/S. hardiment hardware/S. harem/S. hareng/S. harengaison/S. harengère/S. harenguet/S. harengueux harenguier/S. haret/S. harfang/S. hargne/S. hargneuse/W.() hargneusement haricot/S. haricoter/a0a+() haridelle/S. harissa/S. harka/S. harkie/F.() harle/S. harmattan/S*() harmonica/S*() harmoniciste/S*() harmonicité/S*() harmonicorde/S*() harmonie/S*() harmonieuse/W*() harmonieusement/D'Q' harmonique/S*() harmoniquement/D'Q' harmonisation/S*() harmonisée/F*() harmoniser/a4a+() harmonium/S*() harnachée/F.() harnachement/S. harnacher/a0a+() harnacheur/S. harnais harnois haro/S. harpagon/S*() harpail/S. harpailler/a0a+() harpe/S. harpée/F.() harper/a0a+() harpie/S. harpiste/S. harpon/S. harponnage/S. harponnée/F.() harponnement/S. harponner/a0a+() harponneur/S. harrisme/S. harriste/S. hart/S. haruspice/S*() hasard/S. hasardée/F.() hasarder/a0a+() hasardeuse/W.() hasch/S. haschisch/S. haschischée/F.() haschischine/F.() haschischisme/S. hase/S. hassidique/S. hassidisme/S. hassium/S. hast/S*() hastaire/S. haste/S. hastée/F.() hâte/S. hâtée/F.() hâtelet/S. hâtelette/S. hâtelle/S. hâter/a0a+() hâtereau/X. hâtier/S. hâtive/F.() hâtiveau/X. hâtivement hauban/S. haubanage/S. haubaner/a0a+() haubert/S. hausse/S. hausse-col/S. haussement/S. hausser/a0a+() haussière/F.() haussmannienne/F*() haut haut/S. hautaine/F.() hautainement hautbois hautboïste/S. haut-commissaire haut-commissariat haut-de-chausse haut-de-chausses haut-de-forme haute/F.() haute-contre haute-fidélité haute-lisse haute-lissière/F.() hautement hautes-contre hautes-fidélités hautes-lisses hautesse/S. hautes-villes hauteur/S. haute-ville haut-fond hautin/S. haut-le-cœur haut-le-corps haut-parleur/S. haut-relief hauts-commissaires hauts-commissariats hauts-de-chausse hauts-de-chausses hauts-de-forme hauts-fonds hauts-reliefs hauturière/F.() havage/S. havanaise/F.() havane/S. hâve/S. haveneau/X. havenet/S. haver/a0a+() haveuse/F.() havir/f0f+() havre/S. havresac/S. hawaïenne/F*() hayon/S. hé heaume/S. heaumier/S. hebdo/S*() hebdomadaire/S*() hebdomadairement/D'Q' hebdomadière/F*() hébéphrénie/S*() hébéphrénique/S*() hébergée/F*() hébergement/S*() héberger/a2a+() hébergeur/S*() hébertisme/S*() hébétée/F*() hébétement/S*() hébéter/c4a+() hébétude/S*() hébraïque/S*() hébraïsante/F*() hébraïser/a2a+() hébraïsme/S*() hébreu/X*() hécatombe/S*() hectare/S*() hectique/S*() hectométrique/S*() hectopièze/S*() hédéracée/S*() hédonisme/S*() hédoniste/S*() hégélianisme/S*() hégélienne/F*() hégémonie/S*() hégémonique/S*() hégire/S*() heiduque/S. heimatlos hein hélépole/S*() héler/c0a+() hélianthe/S*() hélianthème/S*() hélianthine/S*() héliaque/S*() héliaste/S*() hélice/S*() hélicicultrice/F*() héliciculture/S*() hélico/S*() hélicoïdale/W*() hélicoïde/S*() hélicon/S*() hélicoptère/S*() hélicoptériste/S*() héligare/S*() héliocentrique/S*() héliocentrisme/S*() héliochromie/S*() héliogaine/S*() héliographe/S*() héliographie/S*() héliograveur/S*() héliogravure/S*() héliomarine/F*() héliomètre/S*() hélion/S*() héliopause/S*() héliophile/S*() héliosphère/S*() héliosphérique/S*() héliostat/S*() héliothérapie/S*() héliotrope/S*() héliotropine/S*() héliotropisme/S*() héliport/S*() héliportage/S*() héliportée/F*() héliporter/a2a+() hélitreuillée/F*() hélitreuiller/a2a+() hélium/S*() hélix/L'D'Q' hellébore/S*() hellène/S*() hellénique/S*() hellénisante/F*() hellénisation/S*() hellénisée/F*() helléniser/a4a+() hellénisme/S*() helléniste/S*() hellénistique/S*() hellénophone/S*() hello helminthe/S*() helminthiase/S*() helminthique/S*() helminthologie/S*() helvelle/S*() helvète/S*() helvétique/S*() helvétisme/S*() hem hémarthrose/S*() hématémèse/S*() hématidrose/S*() hématie/S*() hématine/S*() hématique/S*() hématite/S*() hématologie/S*() hématologique/S*() hématologiste/S*() hématologue/S*() hématome/S*() hématopoïèse/S*() hématopoïétique/S*() hématose/S*() hématozoaire/S*() hématurie/S*() héméralope/S*() héméralopie/S*() hémérocalle/S*() hémialgie/S*() hémicrânie/S*() hémicycle/S*() hémicylindrique/S*() hémièdre/S*() hémiédrie/S*() hémiédrique/S*() hémine/S*() hémione/S*() hémiparésie/S*() hémiplégie/S*() hémiplégique/S*() hémiptère/S*() hémisphère/S*() hémisphérique/S*() hémistiche/S*() hémitropie/S*() hémoculture/S*() hémocyanine/S*() hémodialyse/S*() hémodynamique/S*() hémogénie/S*() hémoglobine/S*() hémogramme/S*() hémolyse/S*() hémolysine/S*() hémolytique/S*() hémopathie/S*() hémophile/S*() hémophilie/S*() hémoptysie/S*() hémoptysique/S*() hémorragie/S*() hémorragique/S*() hémorroïdaire/S*() hémorroïdale/W*() hémorroïde/S*() hémosidérine/S*() hémostase/S*() hémostatique/S*() hémotypologie/S*() hendécagone/S*() hendécalogie/S*() hendécasyllabe/S*() henné/S. hennin/S. hennir/f0() hennissante/F.() hennissement/S. hennuyère/F.() hénothéisme/S*() henry/Um() hensélien/S*() hep héparine/S*() hépatalgie/S*() hépatique/S*() hépatisation/S*() hépatisme/S*() hépatite/S*() hépatocèle/S*() hépatographie/S*() hépatologie/S*() hépatologue/S*() hépatomégalie/S*() heptaèdre/S*() heptagonale/W*() heptagone/S*() heptalogie/S*() heptamètre/S*() heptathlon/S*() héraldique/S*() héraldiste/S*() héraut/S. herbacée/F*() herbage/S*() herbagée/F*() herbager/a2a+() herbagère/F*() herbe/S*() herbée/F*() herber/a2a+() herberie/S*() herbette/S*() herbeuse/W*() herbicide/S*() herbier/S*() herbivore/S*() herborisation/S*() herborisatrice/F*() herborisée/F*() herboriser/a1() herboriste/S*() herboristerie/S*() herbue/F*() herbue/S*() herchage/S. hercher/a0() hercheuse/F.() hercule/S*() herculéenne/F*() hercynienne/F*() herd-book/S. hère/S. héréditaire/S*() héréditairement/D'Q' hérédité/S*() hérédosyphilis/L'D'Q' hérésiarque/S*() hérésie/S*() hérétique/S*() hérissée/F.() hérissement/S. hérisser/a0a+() hérissonne/F.() hérissonner/a0a+() héritage/S*() héritée/F*() hériter/a1() héritière/F*() hermandad/S. hermaphrodisme/S*() hermaphrodite/S*() herméneute/S*() herméneutique/S*() hermès/L'D'Q' hermesse/S. herméticité/S*() hermétique/S*() hermétiquement/D'Q' hermétisme/S*() hermétiste/S*() hermine/S*() herminée/F*() herminette/S*() hermitienne/F*() herniaire/S. hernie/S. herniée/F.() hernieuse/W.() héroï-comique/S*() héroïne/S*() héroïnomane/S*() héroïque/S*() héroïquement/D'Q' héroïsme/S*() héron/S. héronneau/X. héronnière/S. héros herpe/S. herpès/L'D'Q' herpétique/S*() herpétologie/S*() herpétologique/S*() herpétologiste/S*() hersage/S. herse/S. herser/a0a+() herseuse/F.() hertz/Um() hertzienne/F.() hervienne/F.() hesbignonne/F.() hésitante/F*() hésitation/S*() hésiter/a1() hessienne/F.() hétaïre/S*() hétairie/S*() hétéro/S*() hétérocentrique/S*() hétérocerque/S*() hétérochromosome/S*() hétérochronie/S*() hétéroclite/S*() hétérocyclique/S*() hétérodoxe/S*() hétérodoxie/S*() hétérodyne/S*() hétérogamie/S*() hétérogène/S*() hétérogénéité/S*() hétérogénie/S*() hétérogreffe/S*() hétérologue/S*() hétéromorphe/S*() hétéromorphisme/S*() hétéronome/S*() hétéronomie/S*() hétéroptère/S*() hétérosexualité/S*() hétérosexuelle/F*() hétérotherme/S*() hétérothermie/S*() hétérotrophe/S*() hétérotrophie/S*() hétérozygote/S*() hetman/S*() hêtraie/S. hêtre/S. heu heure/F*() heure-homme/L'D'Q' heure-machine/L'D'Q' heures-homme/D'Q' heures-machine/D'Q' heureuse/W*() heureusement/D'Q' heuristique/S*() heurt/S. heurtée/F.() heurter/a0a+() heurtoir/S. hévéa/S*() hexachlorure/S*() hexacoralliaire/S*() hexacorde/S*() hexadécimale/W*() hexaèdre/S*() hexagonale/W*() hexagone/S*() hexagramme/S*() hexalogie/S*() hexamètre/S*() hexapode/S*() hexose/S*() hi hiatale/W*() hiatus/L'D'Q' hibernale/W*() hibernante/F*() hibernation/S*() hiberner/a1() hibiscus/L'D'Q' hibou/X. hic hickory/S. hidalgo/S*() hideur/S. hideuse/W.() hideusement hidrosadénite/S*() hie/S. hièble/S*() hiémale/W*() hier/D'Q' hiérarchie/S. hiérarchique/S. hiérarchiquement hiérarchisation/S. hiérarchisée/F.() hiérarchiser/a0a+() hiératique/S*() hiératiquement/D'Q' hiératisme/S*() hiérogamie/S*() hiérogamique/S*() hiéroglyphe/S*() hiéroglyphique/S*() hiérogrammate/S*() hiérogrammatiste/S*() hiérophante/S*() hi-fi highlander/S. hi-han hi-han hilaire/S. hilarante/F*() hilare/S*() hilarité/S*() hilbertienne/F*() hile/S. himalayenne/F*() himation/S*() hindi hindoue/F*() hindouisme/S*() hindouiste/S*() hindoustani/S*() hinterland/S*() hip-hop hipparchie/S*() hipparion/S*() hipparque/S*() hippiatre/S*() hippiatrie/S*() hippiatrique/S*() hippie/S. hippique/S*() hippisme/S*() hippocampe/S*() hippocastanacée/S*() hippocratique/S*() hippocratisme/S*() hippodrome/S*() hippogriffe/S*() hippologie/S*() hippologique/S*() hippomobile/S*() hippophagique/S*() hippopotame/S*() hippopotamesque/S*() hippurique/S*() hiragana/S. hircine/F*() hirondeau/X*() hirondelle/S*() hirsute/S*() hirsutisme/S*() hirudinée/S*() hispanique/S*() hispanisante/F*() hispanisation/S*() hispaniser/a4a+() hispanisme/S*() hispaniste/S*() hispano-américaine/F*() hispano-arabe/S*() hispanophone/S*() hispide/S*() hissée/F.() hisser/a0a+() histamine/S*() histaminique/S*() histidine/S*() histochimie/S*() histocompatibilité/S*() histogenèse/S*() histogramme/S*() histoire/S*() histologie/S*() histologique/S*() histologiste/S*() histolyse/S*() histone/S*() histopathologie/S*() histopathologique/S*() histopathologiste/S*() histoplasmose/S*() historiale/W*() historiciser/a2a+() historicisme/S*() historicité/S*() historiée/F*() historienne/F*() historier/a2a+() historiette/S*() historiographe/S*() historiographie/S*() historiographique/S*() historique/S*() historiquement/D'Q' historisation/S*() historisme/S*() histrion/S*() hitlérienne/F*() hitlérisme/S*() hit-parade/S. hittite/S. hiver/S*() hivernage/S*() hivernale/W*() hivernante/F*() hivernée/F*() hiverner/a2a+() hobby/S. hobbyiste/S. hobereau/X. hoc hocco/S. hochement/S. hochequeue/S. hocher/a0a+() hochet/S. hockey/S. hockeyeuse/F.() hoir/S*() hoirie/S*() holà holding/S. hold-up holisme/S*() holiste/S*() holistique/S*() hollandaise/F.() hollande/S. hollywoodienne/F.() holmium/S*() holocauste/S*() holocène/S*() hologramme/S*() holographie/S*() holographier/a2a+() holographique/S*() holométabole/S*() holomorphe/S*() holomorphie/S*() holomorphiquement/D'Q' holonome/S*() holonomie/S*() holonyme/S*() holonymie/S*() holophrastique/S*() holoprotéine/S*() holoside/S*() holostéen/S*() holothurie/S*() holotype/S*() holster/S. homard/S. homarderie/S. hombre/S*() home/S. homélie/S*() homéomorphe/S*() homéomorphisme/S*() homéopathe/S*() homéopathie/S*() homéopathique/S*() homéostasie/S*() homéostat/S*() homéostatique/S*() homéotherme/S*() homéothermie/S*() homéotique/S*() homérique/S*() homespun/S. homicide/S*() homilétique/S*() hominem hominidé/S*() hominisation/S*() hominisée/F*() hominoïde/S*() hommage/S*() hommasse/S*() homme/S*() homme-grenouille/L'D'Q' homme-orchestre/L'D'Q' homme-sandwich/L'D'Q' hommes-grenouilles/D'Q' hommes-orchestres/D'Q' hommes-sandwichs/D'Q' homo/L'D'Q' homo/S*() homocentrique/S*() homocerque/S*() homochromie/S*() homocinétique/S*() homocyclique/S*() homodonte/S*() homofocale/W*() homogamie/S*() homogène/S*() homogénéifier/a2a+() homogénéisation/S*() homogénéisatrice/F*() homogénéisée/F*() homogénéiser/a2a+() homogénéité/S*() homographe/S*() homographie/S*() homographique/S*() homogreffe/S*() homologable/S*() homologation/S*() homologie/S*() homologique/S*() homologiquement/D'Q' homologue/S*() homologuée/F*() homologuer/a2a+() homomorphe/S*() homomorphisme/S*() homoncule/S*() homonyme/S*() homonymie/S*() homonymique/S*() homoparentale/W*() homoparentalité/S*() homophobe/S*() homophobie/S*() homophone/S*() homophonie/S*() homoptère/S*() homosexualité/S*() homosexuelle/F*() homothétie/S*() homothétique/S*() homotope/S*() homotopie/S*() homotopique/S*() homotopiquement/D'Q' homozygote/S*() hondurienne/F.() hongre/S. hongrer/a0a+() hongroierie/S. hongroise/F.() hongroyage/S. hongroyer/a0a+() hongroyeuse/F.() honnête/S*() honnêtement/D'Q' honnêteté/S*() honneur/S*() honnie/F.() honnir/f0f+() honorabilité/S*() honorable/S*() honorablement/D'Q' honoraire/S*() honorariat/S*() honorée/F*() honorer/a4a+() honorifique/S*() honoris honte/S. honteuse/W.() honteusement hooligan/S. hooliganisme/S. hop hôpital/X*() hoplite/S*() hoquet/S. hoqueter/d0() hoqueton/S. horaire/S*() horde/S. hordéine/S*() horeca/L' horion/S. horizon/S*() horizontale/W*() horizontalement/D'Q' horizontalité/S*() horloge/S*() horlogère/F*() horlogerie/S*() hormis hormonale/W*() hormone/S*() hormonée/F*() hormoner/a2a+() hormonothérapie/S*() hornblende/S. horocycle/S*() horocyclique/S*() horodatage/S*() horodatée/F*() horodater/a2a+() horodatrice/F*() horographie/S*() horokilométrique/S*() horoptère/S*() horoscope/S*() horosphère/S*() horreur/S*() horrible/S*() horriblement/D'Q' horrifiante/F*() horrifiée/F*() horrifier/a2a+() horrifique/S*() horripilante/F*() horripilation/S*() horripilée/F*() horripiler/a2a+() hors horsaine/F.() hors-bilan hors-bord hors-champ hors-concours hors-cote hors-d'œuvre horse-ball/S. horse-guard/S. horse-power horse-pox hors-jeu hors-la-loi hors-ligne hors-média hors-piste hors-série hors-série/S. hors-sol hors-statut horst/S. hors-taxe hors-texte hortensia/S*() horticole/S*() horticultrice/F*() horticulture/S*() hortillonnage/S*() hortocentre/S*() hosanna/S*() hospice/S*() hospitalière/F*() hospitalisation/S*() hospitalisée/F*() hospitaliser/a2a+() hospitalisme/S*() hospitalité/S*() hospitalo-universitaire/S*() hospodar/S*() hostellerie/S*() hostie/S*() hostile/S*() hostilement/D'Q' hostilité/S*() hosto/S*() hot-dog/S. hôte/S*() hôtel/S*() hôtel-Dieu/L'D'Q' hôtelière/F*() hôtellerie/S*() hôtels-Dieu/D'Q' hôtesse/S*() hotte/S. hottée/S. hottentote/F.() hottereau/X. hotteret/S. hou houache/S. houaiche/S. houblon/S. houblonnage/S. houblonner/a0a+() houblonnière/F.() houdan/S. houe/S. houer/a0a+() houille/S. houillère/F.() houka/S. houle/S. houlette/S. houleuse/W.() houlque/S. houp houppe/S. houppelande/S. houpper/a0a+() houppette/S. houppier/S. houque/S. hourd/S. hourdage/S. hourder/a0a+() hourdir/f0f+() houri/S. hourque/S. hourra hourra/S. hourvari/S. houseau/X. houspiller/a0a+() houspilleuse/F.() houssaie/S. housse/S. housser/a0a+() houssine/S. houssiner/a0a+() houssoir/S. houx hovercraft/S*() hoyau/X. hpz/||-- huard/S. huart/S. hublot/S. huche/S. hucher/a0a+() huchet/S. huer/a0a+() huerta/S. huguenote/F.() hui/S. huilage/S*() huile/S*() huilée/F*() huiler/a2a+() huilerie/S*() huileuse/W*() huilière/F*() huis/L'D'Q' huisserie/S*() huissière/F*() huit huitain/S. huitaine/S. huitante huitante-cinq huitante-deux huitante-et-un huitante-huit huitante-neuf huitante-quatre huitante-sept huitante-six huitante-trois huitantième/S. huitième/S. huitièmement huître/S*() huit-reflets huîtrière/F*() hulotte/S. hum humage/S. humagne/S*() humaine/F*() humainement/D'Q' humanisation/S*() humanisée/F*() humaniser/a4a+() humanisme/S*() humaniste/S*() humanistique/S*() humanitaire/S*() humanitarisme/S*() humanitariste/S*() humanité/S*() humanoïde/S*() humble/S*() humblement/D'Q' humectage/S*() humectant/S*() humectée/F*() humecter/a4a+() humer/a0a+() humérale/W*() humérus/L'D'Q' humeur/S*() humide/S*() humidificateur/S*() humidification/S*() humidifiée/F*() humidifier/a2a+() humidité/S*() humification/S*() humiliante/F*() humiliation/S*() humiliée/F*() humilier/a4a+() humilité/S*() humorale/W*() humorisme/S*() humoriste/S*() humoristique/S*() humour/S*() humus/L'D'Q' hune/S. hunier/S. huppe/S. huppée/F.() hurdler/S. hure/S. hurlante/F.() hurlée/F.() hurlement/S. hurler/a0a+() hurleuse/F.() hurluberlue/F*() huronienne/F.() huronne/F.() hurricane/S. hussarde/F.() hussite/S. hutinet/S. hutte/S. hyacinthe/S*() hyaline/F*() hyalite/S*() hyaloïde/S*() hyaloplasme/S*() hyaluronique/S*() hybridation/S*() hybride/S*() hybridée/F*() hybrider/a4a+() hybridisme/S*() hybridité/S*() hydarthrose/S*() hydatide/S*() hydne/S*() hydracide/S*() hydralcoolique/S*() hydrargyre/S*() hydrargyrisme/S*() hydratable/S*() hydratante/F*() hydratation/S*() hydrate/S*() hydratée/F*() hydrater/a4a+() hydraulicienne/F*() hydraulique/S*() hydrauliquement/D'Q' hydravion/S*() hydrazine/S*() hydre/S*() hydrémie/S*() hydrie/S*() hydrique/S*() hydroalcoolique/S*() hydrobiologie/S*() hydrobiologiste/S*() hydrocarbonate/S*() hydrocarbonée/F*() hydrocarbure/S*() hydrocèle/S*() hydrocéphale/S*() hydrocéphalie/S*() hydrocharidacée/S*() hydrocharidée/S*() hydrocoralliaire/S*() hydrocortisone/S*() hydrocotyle/S*() hydrocraquage/S*() hydroculture/S*() hydrocution/S*() hydrodynamique/S*() hydroélectricité/S*() hydroélectrique/S*() hydroélectrolytique/S*() hydrofoil/S*() hydrofuge/S*() hydrofugée/F*() hydrofuger/a2a+() hydrogénation/S*() hydrogène/S*() hydrogénée/F*() hydrogéner/c2a+() hydrogénocarbonate/S*() hydrogénosulfure/S*() hydrogéologie/S*() hydroglisseur/S*() hydrographe/S*() hydrographie/S*() hydrographique/S*() hydrolase/S*() hydrolat/S*() hydrolithe/S*() hydrologie/S*() hydrologique/S*() hydrologiste/S*() hydrologue/S*() hydrolysable/S*() hydrolyse/S*() hydrolysée/F*() hydrolyser/a2a+() hydromancie/S*() hydromécanique/S*() hydromel/S*() hydrométéore/S*() hydromètre/S*() hydrométrie/S*() hydrométrique/S*() hydrominérale/W*() hydromorphe/S*() hydromorphie/S*() hydronéphrose/S*() hydropathe/S*() hydropéricarde/S*() hydrophile/S*() hydrophobe/S*() hydrophobie/S*() hydrophone/S*() hydrophyte/S*() hydropique/S*() hydropisie/S*() hydropneumatique/S*() hydropolitique/S*() hydroponie/S*() hydroponique/S*() hydroptère/S*() hydroquinone/S*() hydroscopie/S*() hydrosilicate/S*() hydrosoluble/S*() hydrosphère/S*() hydrostatique/S*() hydrothérapie/S*() hydrothérapique/S*() hydrothermale/W*() hydrothermalisme/S*() hydrothorax/L'D'Q' hydrotropisme/S*() hydroxyde/S*() hydroxyle/S*() hydroxylée/F*() hydrozoaire/S*() hydrure/S*() hyène/S*() hygiaphone/S*() hygiène/S*() hygiénique/S*() hygiéniquement/D'Q' hygiéniste/S*() hygroma/S*() hygromètre/S*() hygrométrie/S*() hygrométrique/S*() hygrophile/S*() hygrophobe/S*() hygrophyte/S*() hygroscope/S*() hygroscopie/S*() hygroscopique/S*() hygrostat/S*() hylobatidé/S*() hylozoïsme/S*() hymen/S*() hyménée/S*() hyménoptère/S*() hymne/S*() hymnologie/S*() hyoïde/S*() hyoïdienne/F*() hypallage/S*() hyperacidité/S*() hyperacousie/S*() hyperactive/F*() hyperactivité/S*() hyperalgèbre/S*() hyperalgésie/S*() hyperalgie/S*() hyperbare/S*() hyperbate/S*() hyperbole/S*() hyperbolicité/S*() hyperbolique/S*() hyperboliquement/D'Q' hyperboloïde/S*() hyperboréenne/F*() hypercalcémie/S*() hypercapnie/S*() hypercentre/S*() hyperchlorhydrie/S*() hyperchrome/S*() hyperchromie/S*() hypercorrecte/F*() hypercorrection/S*() hypercritique/S*() hypercube/S*() hyperdolichocéphale/S*() hyperdulie/S*() hyperelliptique/S*() hyperémotive/F*() hyperémotivité/S*() hyperespace/S*() hyperesthésie/S*() hyperfonction/S*() hyperfréquence/S*() hypergenèse/S*() hypergéométrique/S*() hyperglycémie/S*() hypergonar/S*() hypergraphe/S*() hypéricacée/S*() hyperinflation/S*() hyperkinésie/S*() hyperkinétique/S*() hyperlien/S*() hyperlipémie/S*() hyperlipidémie/S*() hypermarché/S*() hypermédia/S*() hypermètre/S*() hypermétrope/S*() hypermétropie/S*() hypermnésie/S*() hypernerveuse/W*() hypéron/S*() hyperonyme/S*() hyperonymie/S*() hyperplan/S*() hyperplasie/S*() hyperréalisme/S*() hypersécrétion/S*() hypersensibilité/S*() hypersensible/S*() hypersonique/S*() hypersphère/S*() hyperstatique/S*() hypersurface/S*() hypersustentation/S*() hypersustentatrice/F*() hypertélie/S*() hypertendue/F*() hypertension/S*() hypertensive/F*() hypertexte/S*() hyperthermie/S*() hyperthyroïdie/S*() hypertonie/S*() hypertonique/S*() hypertrophie/S*() hypertrophiée/F*() hypertrophier/a4a+() hypertrophique/S*() hyperventilation/S*() hyperviseur/S*() hypnose/S*() hypnothérapeute/S*() hypnothérapeutique/S*() hypnothérapie/S*() hypnotique/S*() hypnotiquement/D'Q' hypnotisable/S*() hypnotisée/F*() hypnotiser/a4a+() hypnotiseuse/F*() hypnotisme/S*() hypoacousie/S*() hypoalgésie/S*() hypocalorique/S*() hypocapnie/S*() hypocauste/S*() hypocentre/S*() hypochloreuse/W*() hypochlorhydrie/S*() hypochlorite/S*() hypochrome/S*() hypocondre/S*() hypocondriaque/S*() hypocondrie/S*() hypocoristique/S*() hypocras/L'D'Q' hypocrisie/S*() hypocrite/S*() hypocritement/D'Q' hypocycloïde/S*() hypoderme/S*() hypodermique/S*() hypodermite/S*() hypodermose/S*() hypoelliptique/S*() hypoesthésie/S*() hypogastre/S*() hypogastrique/S*() hypogée/F*() hypogée/S*() hypoglosse/S*() hypoglycémie/S*() hypoglycémique/S*() hypogyne/S*() hypokhâgne/S*() hypolipémie/S*() hyponomeute/S*() hyponyme/S*() hyponymie/S*() hypophysaire/S*() hypophyse/S*() hypoprotéinémie/S*() hyposcenium/S*() hyposécrétion/S*() hypospadias/L'D'Q' hypostase/S*() hypostasiée/F*() hypostasier/a2a+() hypostatique/S*() hypostyle/S*() hyposulfite/S*() hyposulfureuse/W*() hyposynchrone/S*() hypotendue/F*() hypotension/S*() hypoténuse/S*() hypothalamique/S*() hypothalamus/L'D'Q' hypothécable/S*() hypothécaire/S*() hypothénar/L'D'Q' hypothèque/S*() hypothéquée/F*() hypothéquer/c4a+() hypothermie/S*() hypothèse/S*() hypothético-déductive/F*() hypothétique/S*() hypothétiquement/D'Q' hypothyroïdie/S*() hypothyroïdisme/S*() hypotonie/S*() hypotonique/S*() hypotrophie/S*() hypotypose/S*() hypoventilation/S*() hypovigilance/S*() hypoxie/S*() hysope/S*() hystérectomie/S*() hystérésis/L'D'Q' hystérie/S*() hystérique/S*() hystérographie/S*() hystérométrie/S*() hystéroscopie/S*() hystéroscopique/S*() i/L' iambe/S*() iatrogène/S*() ibère/S*() ibéride/S*() ibérique/S*() ibid ibidem ibis/L'D'Q' ibuprofène/S*() icaque/S*() icaquier/S*() icarienne/F*() iceberg/S*() ice-field/S*() icelle/D'S. icelui/D' ice-shelf/S*() iceux/D' ichneumon/S*() ichnologie/S*() ichor/S*() ichoreuse/W*() ichtyocolle/S*() ichtyol/S*() ichtyologie/S*() ichtyologique/S*() ichtyologiste/S*() ichtyologue/S*() ichtyophage/S*() ichtyornis/L'D'Q' ichtyosaure/S*() ichtyose/S*() ici/D'Q' ici-bas/D'Q' icoglan/S*() icône/S*() iconique/S*() iconiser iconoclasme/S*() iconoclaste/S*() iconoclastie/S*() iconogène/S*() iconographe/S*() iconographie/S*() iconographique/S*() iconolâtre/S*() iconolâtrie/S*() iconologie/S*() iconophile/S*() iconophilie/S*() iconoscope/S*() iconostase/S*() icosaèdre/S*() ictère/S*() ictérique/S*() ictus/L'D'Q' id ide/S*() idéale/W*() idéalement/D'Q' idéalisation/S*() idéalisatrice/F*() idéalisée/F*() idéaliser/a4a+() idéalisme/S*() idéaliste/S*() idéalité/S*() idéals/D'Q' idéation/S*() idée/S*() idée-force/L'D'Q' idéelle/F*() idées-forces/D'Q' idem idempotente/F*() identifiable/S*() identifiant/S*() identification/S*() identificatrice/F*() identifiée/F*() identifier/a4a+() identifieur/S*() identique/S*() identiquement/D'Q' identitaire/S*() identité/S*() idéogramme/S*() idéographie/S*() idéographique/S*() idéologie/S*() idéologique/S*() idéologiquement/D'Q' idéologisée/F*() idéologiser/a2a+() idéologue/S*() idéomotrice/F*() ides/D'Q' idiographique/S*() idiolecte/S*() idiomatique/S*() idiome/S*() idiopathie/S*() idiopathique/S*() idiosyncrasie/S*() idiote/F*() idiotement/D'Q' idiotie/S*() idiotifier/a2a+() idiotiser/a2a+() idiotisme/S*() idoine/S*() idolâtre/S*() idolâtrée/F*() idolâtrer/a4a+() idolâtrie/S*() idolâtrique/S*() idole/S*() idylle/S*() idyllique/S*() if/S*() igloo/S*() igname/S*() ignare/S*() ignée/F*() ignifugation/S*() ignifuge/S*() ignifugeante/F*() ignifugée/F*() ignifuger/a2a+() ignimbrite/S*() ignipuncture/S*() igniteur/S*() ignition/S*() ignivome/S*() ignoble/S*() ignoblement/D'Q' ignominie/S*() ignominieuse/W*() ignominieusement/D'Q' ignorance/S*() ignorante/F*() ignorantin/S*() ignorée/F*() ignorer/a4a+() iguane/S*() iguanodon/S*() igue/S*() il/D'Q'SiS. île/S*() iléale/W*() iléite/S*() iléo-cæcale/W*() iléon/S*() îlet/S*() iléus/L'D'Q' iliaque/S*() ilicacée/S*() îlienne/F*() ilion/S*() illégale/W*() illégalement/D'Q' illégalité/S*() illégitime/S*() illégitimement/D'Q' illégitimité/S*() illettrée/F*() illettrisme/S*() illicite/S*() illicitement/D'Q' illico/D'Q' illimitée/F*() illisibilité/S*() illisible/S*() illisiblement/D'Q' illogique/S*() illogiquement/D'Q' illogisme/S*() illumination/S*() illuminatrice/F*() illuminée/F*() illuminer/a4a+() illuminisme/S*() illusion/S*() illusionnée/F*() illusionner/a4a+() illusionnisme/S*() illusionniste/S*() illusoire/S*() illusoirement/D'Q' illustration/S*() illustrative/F*() illustratrice/F*() illustre/S*() illustré/S*() illustrée/F*() illustrement/D'Q' illustrer/a4a+() illyrienne/S*() îlot/S*() îlotage/S*() ilote/S*() îlotière/F*() ilotisme/S*() image/S*() imagée/F*() imager/a2a+() imagerie/S*() imagière/F*() imaginable/S*() imaginaire/S*() imaginairement/D'Q' imagination/S*() imaginative/F*() imaginée/F*() imaginer/a4a+() imago/S*() imam/S*() imamat/S*() imanat/S*() imbattable/S*() imbécile/S*() imbécilement/D'Q' imbécillité/S*() imberbe/S*() imbibée/F*() imbiber/a4a+() imbibition/S*() imbrication/S*() imbriquée/F*() imbriquer/a4a+() imbroglio/S*() imbrûlée/F*() imbrûlés/D'Q' imbue/F*() imbuvable/S*() imide/S*() imitable/S*() imitation/S*() imitative/F*() imitatrice/F*() imitée/F*() imiter/a2a+() immaculée/F*() immanence/S*() immanente/F*() immanentisme/S*() immangeable/S*() immanquable/S*() immanquablement/D'Q' immarcescible/S*() immariable/S*() immatérialisée/F*() immatérialiser/a4a+() immatérialisme/S*() immatérialiste/S*() immatérialité/S*() immatérielle/F*() immatriculation/S*() immatriculée/F*() immatriculer/a2a+() immature/S*() immaturité/S*() immédiate/F*() immédiatement/D'Q' immédiateté/S*() immémoriale/W*() immense/S*() immensément/D'Q' immensité/S*() immensurable/S*() immergée/F*() immerger/a4a+() imméritée/F*() immersion/S*() immersive/F*() immettable/S*() immeuble/S*() immigrante/F*() immigration/S*() immigrée/F*() immigrer/a1() imminence/S*() imminente/F*() immiscer/a3a+() immixtion/S*() immobile/S*() immobilier/S*() immobilière/F*() immobilisation/S*() immobilisée/F*() immobiliser/a4a+() immobilisme/S*() immobiliste/S*() immobilité/S*() immodérée/F*() immodérément/D'Q' immodeste/S*() immodestie/S*() immolation/S*() immolée/F*() immoler/a4a+() immonde/S*() immondice/S*() immorale/W*() immoralement/D'Q' immoralisme/S*() immoraliste/S*() immoralité/S*() immortalisation/S*() immortalisée/F*() immortaliser/a4a+() immortalité/S*() immortelle/F*() immotivée/F*() immuabilité/S*() immuable/S*() immuablement/D'Q' immune/F*() immunisante/F*() immunisation/S*() immunisée/F*() immuniser/a4a+() immunitaire/S*() immunité/S*() immunochimie/S*() immunocompétente/F*() immunodéficience/S*() immunodéficiente/F*() immunodépresseur/S*() immunodépressive/F*() immunogène/S*() immunogénétique/S*() immunoglobuline/S*() immunologie/S*() immunologique/S*() immunologiste/S*() immunologue/S*() immunopathologie/S*() immunopathologique/S*() immunosuppresseur/S*() immunothérapie/S*() immunotolérante/F*() immutabilité/S*() impact/S*() impacter/a2a+() impactite/S*() impaire/F*() impala/S*() impalpabilité/S*() impalpable/S*() impaludation/S*() impaludée/F*() impanation/S*() imparable/S*() impardonnable/S*() imparfait/S*() imparfaite/F*() imparfaitement/D'Q' imparidigité/S*() imparipennée/F*() imparisyllabique/S*() imparité/S*() impartageable/S*() impartiale/W*() impartialement/D'Q' impartialité/S*() impartir/fC() impasse/S*() impassibilité/S*() impassible/S*() impassiblement/D'Q' impatiemment/D'Q' impatience/S*() impatientante/F*() impatiente/F*() impatienter/a4a+() impatroniser/a4a+() impavide/S*() impavidement/D'Q' impavidité/S*() impayable/S*() impayé/S*() impayée/F*() impeachment/S*() impeccabilité/S*() impeccable/S*() impeccablement/D'Q' impécunieuse/W*() impécuniosité/S*() impédance/S*() impédante/F*() impedimentum/I*() impénétrabilité/S*() impénétrable/S*() impénitence/S*() impénitente/F*() impensable/S*() impensée/F*() impenses/D'Q' imper/S*() impérative/F*() impérativement/D'Q' impératrice/S*() imperceptibilité/S*() imperceptible/S*() imperceptiblement/D'Q' imperdable/S*() imperfectible/S*() imperfection/S*() imperfective/F*() impériale/W*() impérialement/D'Q' impérialisme/S*() impérialiste/S*() impérieuse/W*() impérieusement/D'Q' impérissable/S*() impéritie/S*() imperium/S*() impermanence/S*() impermanente/F*() imperméabilisation/S*() imperméabiliser/a2a+() imperméabilité/S*() imperméable/S*() impersonnalité/S*() impersonnelle/F*() impersonnellement/D'Q' impertinemment/D'Q' impertinence/S*() impertinente/F*() imperturbabilité/S*() imperturbable/S*() imperturbablement/D'Q' impétigineuse/W*() impétigo/S*() impétrante/F*() impétration/S*() impétrer/c2a+() impétueuse/W*() impétueusement/D'Q' impétuosité/S*() impie/S*() impiété/S*() impitoyable/S*() impitoyablement/D'Q' implacabilité/S*() implacable/S*() implacablement/D'Q' implant/S*() implantation/S*() implantée/F*() implanter/a4a+() implanteuse/F*() implantologie/S*() implantologique/S*() implantologiste/S*() implantologue/S*() implémentation/S*() implémentée/F*() implémenter/a2a+() implexe/S*() implication/S*() implicite/S*() implicitement/D'Q' impliquée/F*() impliquer/a4a+() implorante/F*() imploration/S*() implorer/a2a+() implosée/F*() imploser/a1() implosion/S*() implosive/F*() impluvium/S*() impolie/F*() impoliment/D'Q' impolitesse/S*() impolitique/S*() impondérable/S*() impopulaire/S*() impopularité/S*() import/L'D' importable/S*() importance/S*() importante/F*() importation/S*() importatrice/F*() importée/F*() importer/a4a+() import-export/L'D'Q' importune/F*() importunée/F*() importuner/a2a+() importunité/S*() imposable/S*() imposante/F*() imposée/F*() imposer/a4a+() imposeuse/F*() imposition/S*() impossibilité/S*() impossible/S*() impossiblement/D'Q' imposte/S*() imposteur/S*() imposture/S*() impôt/S*() impotence/S*() impotente/F*() impraticabilité/S*() impraticable/S*() imprécation/S*() imprécatoire/S*() imprécatrice/F*() imprécise/F*() imprécision/S*() imprégnation/S*() imprégnée/F*() imprégner/c4a+() imprenable/S*() impréparation/S*() imprésario/S*() imprescriptibilité/S*() imprescriptible/S*() impression/S*() impressionnabilité/S*() impressionnable/S*() impressionnante/F*() impressionnée/F*() impressionner/a2a+() impressionnisme/S*() impressionniste/S*() imprévisibilité/S*() imprévisible/S*() imprévisiblement/D'Q' imprévision/S*() imprévoyance/S*() imprévoyante/F*() imprévu/S*() imprévue/F*() imprimable/S*() imprimante/F*() imprimatur/L'D'Q' imprimé/S*() imprimée/F*() imprimer/a4a+() imprimerie/S*() imprimeuse/F*() imprimitive/F*() improbabilité/S*() improbable/S*() improbation/S*() improbité/S*() improductive/F*() improductivité/S*() impromptu/S*() impromptue/F*() imprononçable/S*() impropre/S*() improprement/D'Q' impropriété/S*() improuvable/S*() improuver/a2a+() improvisation/S*() improvisatrice/F*() improvisée/F*() improviser/a4a+() improviste/L'D' imprudemment/D'Q' imprudence/S*() imprudente/F*() impubère/S*() impuberté/S*() impubliable/S*() impudemment/D'Q' impudence/S*() impudente/F*() impudeur/S*() impudicité/S*() impudique/S*() impudiquement/D'Q' impuissance/S*() impuissante/F*() impulser/a2a+() impulsion/S*() impulsionnelle/F*() impulsive/F*() impulsivement/D'Q' impulsivité/S*() impunément/D'Q' impunie/F*() impunité/S*() impure/F*() impureté/S*() imputabilité/S*() imputable/S*() imputation/S*() imputer/a4a+() imputrescible/S*() in in/||-- inabordable/S*() inaboutie/F*() inabritée/F*() inaccentuée/F*() inacceptable/S*() inacceptation/S*() inaccessibilité/S*() inaccessible/S*() inaccomplie/F*() inaccomplissement/S*() inaccordable/S*() inaccoutumée/F*() inachevée/F*() inachèvement/S*() inaction/S*() inactivation/S*() inactive/F*() inactiver/a2a+() inactivité/S*() inactuelle/F*() inadaptable/S*() inadaptation/S*() inadaptée/F*() inadéquate/F*() inadéquation/S*() inadmissibilité/S*() inadmissible/S*() inadvertance/S*() inaliénabilité/S*() inaliénable/S*() inaliénation/S*() inaltérabilité/S*() inaltérable/S*() inaltérée/F*() inamicale/W*() inamissible/S*() inamovibilité/S*() inamovible/S*() inanalysable/S*() inanimée/F*() inanité/S*() inanitié/S*() inanition/S*() inapaisable/S*() inapaisée/F*() inaperçue/F*() inapparente/F*() inappétence/S*() inapplicabilité/S*() inapplicable/S*() inapplication/S*() inappliquée/F*() inappréciable/S*() inappréciée/F*() inapprivoisable/S*() inapprivoisée/F*() inapprochable/S*() inappropriée/F*() inapte/S*() inaptitude/S*() inarticulée/F*() inassimilable/S*() inassouvie/F*() inassouvissable/S*() inassouvissement/S*() inattaquable/S*() inatteignable/S*() inattendue/F*() inattention/S*() inattentive/F*() inaudible/S*() inaugurale/W*() inauguration/S*() inaugurée/F*() inaugurer/a2a+() inauthenticité/S*() inauthentique/S*() inavouable/S*() inavouée/F*() inca/S*() incalculable/S*() incandescence/S*() incandescente/F*() incantation/S*() incantatoire/S*() incantatrice/F*() incanter/a2a+() incapable/S*() incapacitante/F*() incapacité/S*() incarcération/S*() incarcérée/F*() incarcérer/c2a+() incarnadine/F*() incarnardin/S*() incarnate/F*() incarnation/S*() incarnée/F*() incarner/a4a+() incartade/S*() incasique/S*() incassable/S*() incendiaire/S*() incendie/S*() incendiée/F*() incendier/a2a+() incertaine/F*() incertitude/S*() incessamment/D'Q' incessante/F*() incessibilité/S*() incessible/S*() inceste/S*() incestueuse/W*() incestueusement/D'Q' inchangée/F*() inchantable/S*() inchauffable/S*() inchavirable/S*() inchoative/F*() incidemment/D'Q' incidence/S*() incident/S*() incidente/F*() incinérateur/S*() incinération/S*() incinérée/F*() incinérer/c2a+() incipit/L'D'Q' incise/S*() incisée/F*() inciser/a2a+() incision/S*() incisive/F*() incisive/S*() incisure/S*() incitante/F*() incitation/S*() incitative/F*() incitatrice/F*() incitée/F*() inciter/a2a+() incivile/F*() incivilité/S*() incivique/S*() incivisme/S*() inclassable/S*() inclémence/S*() inclémente/F*() inclinable/S*() inclinaison/S*() inclination/S*() inclinée/F*() incliner/a4a+() inclure/xL() incluse/F*() inclusion/S*() inclusive/F*() inclusivement/D'Q' incoagulable/S*() incoercibilité/S*() incoercible/S*() incognito/S*() incohérence/S*() incohérente/F*() incoiffable/S*() incollable/S*() incolore/S*() incomber/aG() incombustibilité/S*() incombustible/S*() incomestible/S*() incommensurabilité/S*() incommensurable/S*() incommensurablement/D'Q' incommodante/F*() incommode/S*() incommodée/F*() incommodément/D'Q' incommoder/a2a+() incommodité/S*() incommunicabilité/S*() incommunicable/S*() incommutabilité/S*() incomparabilité/S*() incomparable/S*() incomparablement/D'Q' incompatibilité/S*() incompatible/S*() incompétence/S*() incompétente/F*() incomplète/F*() incomplètement/D'Q' incomplétude/S*() incompréhensibilité/S*() incompréhensible/S*() incompréhension/S*() incompréhensive/F*() incompressibilité/S*() incompressible/S*() incomprise/F*() inconcevable/S*() inconcevablement/D'Q' inconciliable/S*() inconciliablement/D'Q' inconditionnalité/S*() inconditionnée/F*() inconditionnelle/F*() inconditionnellement/D'Q' inconduite/S*() inconfort/S*() inconfortable/S*() inconfortablement/D'Q' incongelable/S*() incongrue/F*() incongruité/S*() incongrûment/D'Q' inconnaissable/S*() inconnaissance/S*() inconnue/F*() inconsciemment/D'Q' inconscience/S*() inconsciente/F*() inconséquence/S*() inconséquente/F*() inconsidérée/F*() inconsidérément/D'Q' inconsistance/S*() inconsistante/F*() inconsolable/S*() inconsolée/F*() inconsommable/S*() inconstance/S*() inconstante/F*() inconstatable/S*() inconstitutionnalité/S*() inconstitutionnelle/F*() inconstitutionnellement/D'Q' inconstructible/S*() incontestabilité/S*() incontestable/S*() incontestablement/D'Q' incontestée/F*() incontinence/S*() incontinente/F*() incontournable/S*() incontrôlable/S*() incontrôlée/F*() inconvenance/S*() inconvenante/F*() inconvénient/S*() inconvertibilité/S*() inconvertible/S*() incoordination/S*() incorporable/S*() incorporation/S*() incorporatrice/F*() incorporée/F*() incorporelle/F*() incorporer/a4a+() incorrecte/F*() incorrectement/D'Q' incorrection/S*() incorrigible/S*() incorrigiblement/D'Q' incorruptibilité/S*() incorruptible/S*() incorruptiblement/D'Q' incrédule/S*() incrédulité/S*() incréée/F*() incrément/S*() incrémentale/W*() incrémentation/S*() incrémentée/F*() incrémenter/a2a+() incrémentielle/F*() increvable/S*() incriminable/S*() incrimination/S*() incriminée/F*() incriminer/a4a+() incristallisable/S*() incrochetable/S*() incroyable/S*() incroyablement/D'Q' incroyance/S*() incroyante/F*() incrustante/F*() incrustation/S*() incrustée/F*() incruster/a4a+() incrusteuse/F*() incubation/S*() incubatrice/F*() incube/S*() incuber/a2a+() incuite/F*() inculcation/S*() inculpable/S*() inculpation/S*() inculpée/F*() inculper/a2a+() inculquée/F*() inculquer/a2a+() inculte/S*() incultivable/S*() incultivée/F*() inculture/S*() incunable/S*() incurabilité/S*() incurable/S*() incurablement/D'Q' incurie/S*() incurieuse/W*() incuriosité/S*() incursion/S*() incurvation/S*() incurvée/F*() incurver/a4a+() incuse/S*() indaguer/a1() indatable/S*() inde/S*() indébrouillable/S*() indécachetable/S*() indécelable/S*() indécemment/D'Q' indécence/S*() indécente/F*() indéchiffrable/S*() indéchiffrée/F*() indéchirable/S*() indécidable/S*() indécise/F*() indécision/S*() indéclinable/S*() indécollable/S*() indécomposable/S*() indécrochable/S*() indécrottable/S*() indécrottablement/D'Q' indéfectibilité/S*() indéfectible/S*() indéfectiblement/D'Q' indéfendable/S*() indéfinie/F*() indéfiniment/D'Q' indéfinissable/S*() indéformable/S*() indéfrichable/S*() indéfrisable/S*() indélébile/S*() indélébilement/D'Q' indélébilité/S*() indélibérée/F*() indélicate/F*() indélicatesse/S*() indélogeable/S*() indémaillable/S*() indemne/S*() indemnisable/S*() indemnisation/S*() indemnisée/F*() indemniser/a4a+() indemnitaire/S*() indemnité/S*() indémodable/S*() indémontable/S*() indémontrable/S*() indéniable/S*() indéniablement/D'Q' indénombrable/S*() indentation/S*() indenter/a2a+() indépassable/S*() indépendamment/D'Q' indépendance/S*() indépendante/F*() indépendantisme/S*() indépendantiste/S*() indéracinable/S*() indéréglable/S*() indescriptible/S*() indésirable/S*() indestructibilité/S*() indestructible/S*() indestructiblement/D'Q' indétectable/S*() indéterminable/S*() indétermination/S*() indéterminée/F*() indéterminisme/S*() indétrônable/S*() index/L'D'Q' indexage/S*() indexation/S*() indexée/F*() indexer/a2a+() indianisme/S*() indianiste/S*() indianocéanique/S*() indican/S*() indication/S*() indicative/F*() indicatrice/F*() indice/S*() indicée/F*() indicer/a2a+() indiciaire/S*() indicible/S*() indiciblement/D'Q' indicielle/F*() indiction/S*() indienne/F*() indifféremment/D'Q' indifférence/S*() indifférenciation/S*() indifférenciée/F*() indifférente/F*() indifférer/c2a+() indigence/S*() indigène/S*() indigénisme/S*() indigente/F*() indigeste/S*() indigestion/S*() indigète/S*() indignation/S*() indigne/S*() indignée/F*() indignement/D'Q' indigner/a4a+() indignité/S*() indigo/S*() indigotier/S*() indigotine/S*() indiquée/F*() indiquer/a2a+() indirecte/F*() indirectement/D'Q' indiscernable/S*() indiscipline/S*() indisciplinée/F*() indiscrète/F*() indiscrètement/D'Q' indiscrétion/S*() indiscutable/S*() indiscutablement/D'Q' indiscutée/F*() indispensable/S*() indisponibilité/S*() indisponible/S*() indisposée/F*() indisposer/a2a+() indisposition/S*() indissociable/S*() indissociablement/D'Q' indissolubilité/S*() indissoluble/S*() indissolublement/D'Q' indistincte/F*() indistinctement/D'Q' indistinguable/S*() indium/S*() individu/S*() individualisation/S*() individualisée/F*() individualiser/a4a+() individualisme/S*() individualiste/S*() individualité/S*() individuation/S*() individuelle/F*() individuellement/D'Q' indivisaire/S*() indivise/F*() indivisément/D'Q' indivisibilité/S*() indivisible/S*() indivision/S*() in-dix-huit/L'D'Q' indochinoise/F*() indocile/S*() indocilité/S*() indo-européenne/F*() indole/S*() indolemment/D'Q' indolence/S*() indolente/F*() indolore/S*() indomptable/S*() indomptée/F*() indonésienne/F*() in-douze/L'D'Q' indubitable/S*() indubitablement/D'Q' inductance/S*() induction/S*() inductive/F*() inductrice/F*() indue/F*() induire/yL() induite/F*() indulgence/S*() indulgenciée/F*() indulgencier/a2a+() indulgente/F*() induline/S*() indult/S*() indûment/D'Q' induration/S*() indurée/F*() indurer/a2a+() indusie/S*() industrialisation/S*() industrialisée/F*() industrialiser/a4a+() industrialisme/S*() industrie/S*() industrielle/F*() industriellement/D'Q' industrieuse/W*() industrieusement/D'Q' induvie/S*() inébranlable/S*() inébranlablement/D'Q' inéchangeable/S*() inécoutable/S*() inécoutée/F*() inédite/F*() ineffable/S*() ineffablement/D'Q' ineffaçable/S*() inefficace/S*() inefficacement/D'Q' inefficacité/S*() inefficiente/F*() inégalable/S*() inégale/W*() inégalée/F*() inégalement/D'Q' inégalitaire/S*() inégalité/S*() inélasticité/S*() inélastique/S*() inélégance/S*() inélégante/F*() inéligibilité/S*() inéligible/S*() inéluctabilité/S*() inéluctable/S*() inéluctablement/D'Q' inemployable/S*() inemployée/F*() inénarrable/S*() inentamée/F*() inéprouvée/F*() inepte/S*() ineptie/S*() inépuisable/S*() inépuisablement/D'Q' inépuisée/F*() inéquation/S*() inéquitable/S*() inerme/S*() inertage/S*() inerte/S*() inertie/S*() inertielle/F*() inescomptable/S*() inespérée/F*() inesthétique/S*() inestimable/S*() inétendue/F*() inévitable/S*() inévitablement/D'Q' inexacte/F*() inexactement/D'Q' inexactitude/S*() inexcusable/S*() inexécutable/S*() inexécutée/F*() inexécution/S*() inexercée/F*() inexhaustible/S*() inexistante/F*() inexistence/S*() inexorabilité/S*() inexorable/S*() inexorablement/D'Q' inexpérience/S*() inexpérimentée/F*() inexperte/F*() inexpiable/S*() inexpiée/F*() inexplicabilité/S*() inexplicable/S*() inexplicablement/D'Q' inexpliquée/F*() inexploitable/S*() inexploitée/F*() inexplorable/S*() inexplorée/F*() inexplosible/S*() inexpressive/F*() inexprimable/S*() inexprimée/F*() inexpugnable/S*() inextensible/S*() inextinguible/S*() inextirpable/S*() inextricable/S*() inextricablement/D'Q' infaillibilité/S*() infaillible/S*() infailliblement/D'Q' infaisable/S*() infalsifiable/S*() infamante/F*() infâme/S*() infamie/S*() infante/F*() infanterie/S*() infanticide/S*() infantile/S*() infantilisation/S*() infantilisée/F*() infantiliser/a2a+() infantilisme/S*() infarctus/L'D'Q' infatigabilité/S*() infatigable/S*() infatigablement/D'Q' infatuation/S*() infatuée/F*() infatuer/a4a+() inféconde/F*() infécondité/S*() infectante/F*() infecte/F*() infectée/F*() infecter/a4a+() infectieuse/W*() infectiologie/S*() infectiologique/S*() infectiologue/S*() infection/S*() inféodation/S*() inféodée/F*() inféoder/a4a+() infère/S*() inférée/F*() inférence/S*() inférer/c2a+() inférieure/F*() inférieurement/D'Q' infériorisation/S*() infériorisée/F*() inférioriser/a2a+() infériorité/S*() infermentescible/S*() infernale/W*() infernalement/D'Q' infertile/S*() infertilité/S*() infestation/S*() infestée/F*() infester/a2a+() infeutrable/S*() infibulation/S*() infidèle/S*() infidèlement/D'Q' infidélité/S*() infiltration/S*() infiltrée/F*() infiltrer/a4a+() infime/S*() infinie/F*() infiniment/L'D'Q' infinitaire/S*() infinité/S*() infinitésimale/W*() infinitive/F*() infinitude/S*() infirmation/S*() infirmative/F*() infirme/S*() infirmée/F*() infirmer/a2a+() infirmerie/S*() infirmière/F*() infirmité/S*() infixe/S*() inflammabilité/S*() inflammable/S*() inflammation/S*() inflammatoire/S*() inflation/S*() inflationnaire/S*() inflationniste/S*() infléchie/F*() infléchir/f4f+() infléchissement/S*() inflexibilité/S*() inflexible/S*() inflexiblement/D'Q' inflexion/S*() infligée/F*() infliger/a4a+() inflorescence/S*() influençable/S*() influence/S*() influencée/F*() influencer/a2a+() influente/F*() influenza/S*() influer/a1() influx/L'D'Q' info/S*() infobulle/S*() infogérance/S*() infogérant/S*() infographe/S*() infographie/S*() infographiste/S*() in-folio/L'D'Q' infondée/F*() informaticienne/F*() information/S*() informationnelle/F*() informatique/S*() informatisable/S*() informatisation/S*() informatisée/F*() informatiser/a4a+() informative/F*() informatrice/F*() informe/S*() informée/F*() informelle/F*() informellement/D'Q' informer/a4a+() informulée/F*() inforoute/S*() infortune/S*() infortunée/F*() infra/L'D' infraction/S*() infractionnelle/F*() infranchissable/S*() infrangible/S*() infrarouge/S*() infrason/S*() infrasonore/S*() infrastructure/S*() infréquentable/S*() infréquentée/F*() infroissable/S*() infructueuse/W*() infructueusement/D'Q' infule/S*() infumable/S*() infundibuliforme/S*() infundibulum/S*() infuse/F*() infusée/F*() infuser/a2a+() infusible/S*() infusion/S*() infusoire/S*() ingagnable/S*() ingambe/S*() ingénier/a3a+() ingénierie/S*() ingénieur-conseil/L'D'Q' ingénieure/F*() ingénieure-conseil/L'D'Q' ingénieures-conseils/D'Q' ingénieurs-conseils/D'Q' ingénieuse/W*() ingénieusement/D'Q' ingéniosité/S*() ingénue/F*() ingénuité/S*() ingénument/D'Q' ingérable/S*() ingérée/F*() ingérence/S*() ingérer/c4a+() ingestion/S*() ingouvernable/S*() ingrate/F*() ingratement/D'Q' ingratitude/S*() ingrédient/S*() ingression/S*() inguérissable/S*() inguinale/W*() ingurgitation/S*() ingurgitée/F*() ingurgiter/a2a+() inhabile/S*() inhabileté/S*() inhabilité/S*() inhabitable/S*() inhabitée/F*() inhabituelle/F*() inhalateur/S*() inhalation/S*() inhalatrice/F*() inhalée/F*() inhaler/a2a+() inharmonieuse/W*() inhérence/S*() inhérente/F*() inhibée/F*() inhiber/a2a+() inhibition/S*() inhibitive/F*() inhibitrice/F*() inhomogénéité/S*() inhospitalière/F*() inhumaine/F*() inhumainement/D'Q' inhumanité/S*() inhumation/S*() inhumée/F*() inhumer/a2a+() inimaginable/S*() inimitable/S*() inimitée/F*() inimitié/S*() ininflammable/S*() inintelligemment/D'Q' inintelligence/S*() inintelligente/F*() inintelligibilité/S*() inintelligible/S*() inintelligiblement/D'Q' inintéressante/F*() ininterrompue/F*() inique/S*() iniquement/D'Q' iniquité/S*() initiale/W*() initialement/D'Q' initialer/a2a+() initialisation/S*() initialisée/F*() initialiser/a2a+() initiation/S*() initiatique/S*() initiative/S*() initiatrice/F*() initiée/F*() initier/a4a+() initio injaculation/S*() injectable/S*() injectée/F*() injecter/a4a+() injection/S*() injective/F*() injectivité/S*() injectrice/F*() injoignable/S*() injonction/S*() injonctive/F*() injouable/S*() injure/S*() injuriée/F*() injurier/a4a+() injurieuse/W*() injurieusement/D'Q' injuste/S*() injustement/D'Q' injustice/S*() injustifiable/S*() injustifiée/F*() inlandsis/L'D'Q' inlassable/S*() inlassablement/D'Q' inlay/S*() innée/F*() innéisme/S*() innéiste/S*() innéité/S*() innervation/S*() innervée/F*() innerver/a2a+() innocemment/D'Q' innocence/S*() innocente/F*() innocentée/F*() innocenter/a2a+() innocuité/S*() innombrable/S*() innominée/F*() innommable/S*() innommée/F*() innovante/F*() innovation/S*() innovatrice/F*() innovée/F*() innover/a2a+() inobservable/S*() inobservance/S*() inobservation/S*() inobservée/F*() inoccupation/S*() inoccupée/F*() in-octavo/L'D'Q' inoculable/S*() inoculation/S*() inoculée/F*() inoculer/a4a+() inodore/S*() inoffensive/F*() inondable/S*() inondation/S*() inondée/F*() inonder/a4a+() inopérable/S*() inopérante/F*() inopinée/F*() inopinément/D'Q' inopportune/F*() inopportunément/D'Q' inopportunité/S*() inopposabilité/S*() inopposable/S*() inorganique/S*() inorganisation/S*() inorganisée/F*() inotrope/S*() inoubliable/S*() inouïe/F*() inox/L'D'Q' inoxydabilité/S*() inoxydable/S*() in-plano/L'D'Q' input/S*() inqualifiable/S*() inquart/S*() in-quarto/L'D'Q' inquiétante/F*() inquiète/F*() inquiétée/F*() inquiéter/c4a+() inquiétude/S*() inquisition/S*() inquisitoire/S*() inquisitoriale/W*() inquisitrice/F*() inracontable/S*() inrayable/S*() insaisissabilité/S*() insaisissable/S*() insalissable/S*() insalivation/S*() insalubre/S*() insalubrité/S*() insane/S*() insanité/S*() insatiabilité/S*() insatiable/S*() insatiablement/D'Q' insatisfaction/S*() insatisfaisante/F*() insatisfaite/F*() insaturée/F*() inscriptible/S*() inscription/S*() inscrire/y1() inscrite/F*() inscrivante/F*() insculpée/F*() insculper/a2a+() insécabilité/S*() insécable/S*() insectarium/S*() insecte/S*() insecticide/S*() insectifuge/S*() insectivore/S*() insécurité/S*() in-seize/L'D'Q' inselberg/S*() insémination/S*() inséminatrice/F*() inséminée/F*() inséminer/a2a+() insensée/F*() insensibilisation/S*() insensibilisée/F*() insensibiliser/a4a+() insensibilité/S*() insensible/S*() insensiblement/D'Q' inséparabilité/S*() inséparable/S*() inséparablement/D'Q' insérable/S*() insérée/F*() insérer/c4a+() insermentée/F*() insertion/S*() insidieuse/W*() insidieusement/D'Q' insigne/S*() insignifiance/S*() insignifiante/F*() insincère/S*() insinuante/F*() insinuation/S*() insinuée/F*() insinuer/a4a+() insipide/S*() insipidité/S*() insistance/S*() insistante/F*() insister/a1() insociabilité/S*() insociable/S*() insolation/S*() insolée/F*() insolemment/D'Q' insolence/S*() insolente/F*() insoler/a2a+() insolite/S*() insolubilisée/F*() insolubiliser/a2a+() insolubilité/S*() insoluble/S*() insolvabilité/S*() insolvable/S*() insomniaque/S*() insomnie/S*() insomnieuse/W*() insondable/S*() insonore/S*() insonorisation/S*() insonorisée/F*() insonoriser/a2a+() insonorité/S*() insortable/S*() insouciance/S*() insouciante/F*() insoucieuse/W*() insoumise/F*() insoumission/S*() insoupçonnable/S*() insoupçonnée/F*() insoutenable/S*() inspectée/F*() inspecter/a2a+() inspection/S*() inspectorat/S*() inspectrice/F*() inspirante/F*() inspiration/S*() inspiratrice/F*() inspirée/F*() inspirer/a4a+() instabilité/S*() instable/S*() installable/S*() installation/S*() installatrice/F*() installée/F*() installer/a4a+() installeur/S*() instamment/D'Q' instance/S*() instanciation/S*() instanciée/F*() instancier/a2a+() instant/S*() instantanée/F*() instantanéité/S*() instantanément/D'Q' instante/F*() instanton/S*() instar/L' instauration/S*() instauratrice/F*() instaurée/F*() instaurer/a4a+() instigation/S*() instigatrice/F*() instiguée/F*() instiguer/a2a+() instillation/S*() instillée/F*() instiller/a2a+() instinct/S*() instinctive/F*() instinctivement/D'Q' instinctuelle/F*() instituer/a4a+() institut/S*() institutes/D' institution/S*() institutionnalisation/S*() institutionnalisée/F*() institutionnaliser/a4a+() institutionnalisme/S*() institutionnaliste/S*() institutionnelle/F*() institutionnellement/D'Q' institutrice/F*() instruction/S*() instructive/F*() instructrice/F*() instruire/yM() instruite/F*() instrument/S*() instrumentaire/S*() instrumentale/W*() instrumentalisation/S*() instrumentalisée/F*() instrumentaliser/a2a+() instrumentalisme/S*() instrumentaliste/S*() instrumentalité/S*() instrumentation/S*() instrumenter/a2a+() instrumentiste/S*() insu/L' insubmersibilité/S*() insubmersible/S*() insubordination/S*() insubordonnée/F*() insuccès/L'D'Q' insuffisamment/D'Q' insuffisance/S*() insuffisante/F*() insufflateur/S*() insufflation/S*() insuffler/a2a+() insulaire/S*() insularité/S*() insulinase/S*() insuline/S*() insulinodépendante/F*() insulinothérapie/S*() insultante/F*() insulte/S*() insultée/F*() insulter/a4a+() insulteur/S*() insupportable/S*() insupportablement/D'Q' insupporter/a3a+() insurgée/F*() insurger/a3a+() insurmontable/S*() insurpassable/S*() insurrection/S*() insurrectionnelle/F*() intacte/F*() intactile/S*() intailler/a2a+() intangibilité/S*() intangible/S*() intarissable/S*() intarissablement/D'Q' intégrabilité/S*() intégrable/S*() intégrale/S*() intégrale/W*() intégralement/D'Q' intégralité/S*() intégrante/F*() intégrateur/S*() intégration/S*() intégrationniste/S*() intègre/S*() intégrée/F*() intégrer/c4a+() intégrisme/S*() intégriste/S*() intégrité/S*() intégrodifférentielle/F*() intellect/S*() intellection/S*() intellectisme/S*() intellectualisation/S*() intellectualisée/F*() intellectualiser/a2a+() intellectualisme/S*() intellectualiste/S*() intellectualité/S*() intellectuelle/F*() intellectuellement/D'Q' intelligemment/D'Q' intelligence/S*() intelligente/F*() intelligentsia/S*() intelligibilité/S*() intelligible/S*() intelligiblement/D'Q' intello/S*() intempérance/S*() intempérante/F*() intempérie/S*() intempestive/F*() intempestivement/D'Q' intempestivité/S*() intemporalité/S*() intemporelle/F*() intenable/S*() intendance/S*() intendante/F*() intense/S*() intensément/D'Q' intensification/S*() intensifiée/F*() intensifier/a4a+() intensité/S*() intensive/F*() intensivement/D'Q' intentée/F*() intenter/a2a+() intention/S*() intentionnalité/S*() intentionnée/F*() intentionnelle/F*() intentionnellement/D'Q' inter/L'D' interaction/S*() interactionnisme/S*() interactive/F*() interactivement/D'Q' interactivité/S*() interagir/f1f+() interagissante/F*() interagissement/S*() interalliée/F*() interarmées/L'D'Q' interarmes/L'D'Q' interastrale/W*() interbancaire/S*() intercalaire/S*() intercalation/S*() intercalée/F*() intercaler/a4a+() intercéder/c1() intercellulaire/S*() interceptée/F*() intercepter/a2a+() intercepteur/S*() interception/S*() intercesseur/S*() intercession/S*() interchangeabilité/S*() interchangeable/S*() interclasse/S*() interclassée/F*() interclassement/S*() interclasser/a2a+() interclubs/D' intercommunale/W*() intercommunalité/S*() intercommunication/S*() intercompréhension/S*() interconfessionnelle/F*() interconnectée/F*() interconnecter/a2a+() interconnexion/S*() intercontinentale/W*() intercostale/W*() intercotidale/W*() intercours/L'D'Q' intercourse/S*() interculturalité/S*() interculturelle/F*() intercurrente/F*() interdépartementale/W*() interdépendance/S*() interdépendante/F*() interdiction/S*() interdigitale/W*() interdire/yD() interdisciplinaire/S*() interdisciplinarité/S*() interdit/S*() interdite/F*() intéressante/F*() intéressée/F*() intéressement/S*() intéresser/a4a+() intérêt/S*() interfaçable/S*() interfaçage/S*() interface/S*() interfacée/F*() interfacer/a2a+() interférence/S*() interférentielle/F*() interférer/c1() interféromètre/S*() interférométrie/S*() interférométrique/S*() interféron/S*() interfluve/S*() interfoliage/S*() interfoliée/F*() interfolier/a2a+() interfonctionnement/S*() interfonctionner/a9() intergalactique/S*() intergénérationnelle/F*() interglaciaire/S*() intergouvernementale/W*() intergroupe/S*() intérieur/S*() intérieure/F*() intérieurement/D'Q' intérim/S*() intérimaire/S*() interindividuelle/F*() intériorisation/S*() intériorisée/F*() intérioriser/a2a+() intériorité/S*() interjection/S*() interjective/F*() interjetée/F*() interjeter/d2a+() interlettrage/S*() interlignage/S*() interligne/S*() interlignée/F*() interligner/a2a+() interlinéaire/S*() interlock/S*() interlocutoire/S*() interlocutrice/F*() interlope/S*() interloquée/F*() interloquer/a2a+() interlude/S*() intermède/S*() intermédiaire/S*() intermezzo/S*() interminable/S*() interminablement/D'Q' interministérielle/F*() intermittence/S*() intermittente/F*() intermodale/W*() intermodalité/S*() intermodulation/S*() intermoléculaire/S*() inter-mot/L'D' intermusculaire/S*() internalisation/S*() internat/S*() internationale/W*() internationalement/D'Q' internationalisation/S*() internationalisée/F*() internationaliser/a4a+() internationalisme/S*() internationaliste/S*() internationalité/S*() internaute/S*() interne/S*() internée/F*() internement/S*() interner/a2a+() internet/L'D'Q' interniste/S*() internonce/S*() interocéanique/S*() intéroceptive/F*() interoculaire/S*() interopérabilité/S*() interopérable/S*() interosseuse/W*() interpariétale/W*() interparlementaire/S*() interpellation/S*() interpellatrice/F*() interpellée/F*() interpeller/a2a+() interpénétration/S*() interpénétrée/F*() interpénétrer/c3a+() interpersonnelle/F*() interphone/S*() interplanétaire/S*() interpolation/S*() interpolative/F*() interpolatrice/F*() interpolée/F*() interpoler/a2a+() interposée/F*() interposer/a4a+() interposition/S*() interprétable/S*() interprétante/F*() interprétariat/S*() interprétation/S*() interprétative/F*() interprète/S*() interprétée/F*() interpréter/c4a+() interpréteur/S*() interprofessionnelle/F*() interraciale/W*() interrègne/S*() interrelation/S*() interrogation/S*() interrogative/F*() interrogativement/D'Q' interrogatoire/S*() interrogatrice/F*() interrogeable/S*() interrogée/F*() interroger/a4a+() interrompre/tA() interrompue/F*() interruptible/S*() interruption/S*() interruptive/F*() interruptrice/F*() intersectée/F*() intersecter/a2a+() intersection/S*() intersectorielle/F*() intersession/S*() intersexualité/S*() intersexuée/F*() intersexuelle/F*() intersidérale/W*() intersigne/S*() interstellaire/S*() interstice/S*() interstitielle/F*() intersubjective/F*() intersyndicale/W*() intertextualité/S*() intertitre/S*() intertropicale/W*() interurbaine/F*() intervallaire/S*() intervalle/S*() intervalliste/S*() intervenante/F*() intervenir/i0i+() intervention/S*() interventionnelle/F*() interventionnisme/S*() interventionniste/S*() intervenue/F*() interversion/S*() intervertébrale/W*() intervertie/F*() intervertir/f2f+() interview/S*() interviewée/F*() interviewer/a2a+() intervieweuse/F*() intervocalique/S*() interzonale/W*() interzone/S*() intestat/S*() intestin/S*() intestinale/W*() intestine/F*() inti/S*() intimation/S*() intime/S*() intimée/F*() intimement/D'Q' intimer/a2a+() intimidable/S*() intimidante/F*() intimidation/S*() intimidatrice/F*() intimidée/F*() intimider/a2a+() intimisme/S*() intimiste/S*() intimité/S*() intitulé/S*() intitulée/F*() intituler/a4a+() intolérable/S*() intolérablement/D'Q' intolérance/S*() intolérante/F*() intonation/S*() intouchabilité/S*() intouchable/S*() intoxicante/F*() intoxication/S*() intoxiquée/F*() intoxiquer/a4a+() intra-atomique/S*() intracardiaque/S*() intracellulaire/S*() intracommunautaire/S*() intracontinentale/W*() intracrânienne/F*() intradermique/S*() intradermo-réaction/S*() intrados/L'D'Q' intraduisible/S*() intraitable/S*() intramoléculaire/S*() intra-muros/D'Q' intra-muros/L'D'Q' intramusculaire/S*() intranet/S*() intransigeance/S*() intransigeante/F*() intransitive/F*() intransitivement/D'Q' intransitivité/S*() intransmissible/S*() intransportable/S*() intrant/S*() intranucléaire/S*() intraoculaire/S*() intra-utérine/F*() intraveineuse/S*() intraveineuse/W*() intrépide/S*() intrépidement/D'Q' intrépidité/S*() intrication/S*() intrigante/F*() intrigue/S*() intriguée/F*() intriguer/a2a+() intrinsèque/S*() intrinsèquement/D'Q' intriquée/F*() intriquer/a2a+() introduction/S*() introductive/F*() introductrice/F*() introduire/yM() introduite/F*() introït/S*() introjection/S*() intromission/S*() intron/S*() intronisation/S*() intronisée/F*() introniser/a4a+() introrse/S*() introspection/S*() introspective/F*() introuvable/S*() introversion/S*() introvertie/F*() intruse/F*() intrusion/S*() intrusive/F*() intubation/S*() intubée/F*() intuber/a2a+() intuition/S*() intuitionnisme/S*() intuitionniste/S*() intuitive/F*() intuitivement/D'Q' intuitu intussusception/S*() inuit/S*() inule/S*() inuline/S*() inusable/S*() inusitée/F*() inusuelle/F*() inutile/S*() inutilement/D'Q' inutilisable/S*() inutilisée/F*() inutilité/S*() invagination/S*() invaginée/F*() invaginer/a3a+() invaincue/F*() invalidante/F*() invalidation/S*() invalide/S*() invalidée/F*() invalider/a2a+() invalidité/S*() invar invariabilité/S*() invariable/S*() invariablement/D'Q' invariance/S*() invariante/F*() invasion/S*() invasive/F*() invective/S*() invectivée/F*() invectiver/a2a+() invendable/S*() invendue/F*() inventaire/S*() inventée/F*() inventer/a4a+() invention/S*() inventive/F*() inventivité/S*() inventoriage/S*() inventorier/a2a+() inventrice/F*() invérifiable/S*() inversable/S*() inverse/S*() inversée/F*() inversement/D'Q' inverser/a4a+() inverseur/S*() inversibilité/S*() inversible/S*() inversion/S*() inversive/F*() invertase/S*() invertébrée/F*() invertie/F*() invertine/S*() invertir/f2f+() investie/F*() investigation/S*() investigatrice/F*() investiguer/a1() investir/f4f+() investissement/S*() investisseuse/F*() investiture/S*() invétérée/F*() invétérer/c3a+() invincibilité/S*() invincible/S*() invinciblement/D'Q' inviolabilité/S*() inviolable/S*() inviolablement/D'Q' inviolée/F*() invisibilité/S*() invisible/S*() invisiblement/D'Q' invitante/F*() invitation/S*() invitatoire/S*() invite/S*() invitée/F*() inviter/a4a+() invivable/S*() invocation/S*() invocatoire/S*() invocatrice/F*() involontaire/S*() involontairement/D'Q' involucrée/F*() involutée/F*() involution/S*() involutive/F*() involutivité/S*() invoquée/F*() invoquer/a2a+() invraisemblable/S*() invraisemblance/S*() invulnérabilité/S*() invulnérable/S*() iodate/S*() iode/S*() iodée/F*() ioder/a2a+() iodhydrique/S*() iodique/S*() iodisme/S*() iodoforme/S*() iodure/S*() iodurée/F*() ion/S*() ionienne/F*() ionique/S*() ionisante/F*() ionisation/S*() ioniser/a2a+() ionone/S*() ionosphère/S*() ionosphérique/S*() iota/L'D'Q' iota/S*() iotacisme/S*() iouler/a1() ipéca/S*() ipécacuanha/S*() ipomée/S*() irai/aC() irakienne/F*() iranienne/F*() irascibilité/S*() irascible/S*() irato ire/S*() irénique/S*() irénisme/S*() iridacée/S*() iridectomie/S*() iridescente/F*() iridiée/F*() iridienne/F*() iridium/S*() iridologie/S*() iridologue/S*() iris/L'D'Q' irisable/S*() irisation/S*() irisée/F*() iriser/a4a+() iritis/L'D'Q' irlandaise/F*() irone/S*() ironie/S*() ironique/S*() ironiquement/D'Q' ironiser/a1() ironiste/S*() iroquoise/F*() irrachetable/S*() irracontable/S*() irradiance/S*() irradiante/F*() irradiation/S*() irradiée/F*() irradier/a4a+() irraisonnée/F*() irrationalisme/S*() irrationalité/S*() irrationnelle/F*() irrationnellement/D'Q' irrattrapable/S*() irréalisable/S*() irréalisée/F*() irréalisme/S*() irréaliste/S*() irréalité/S*() irrecevabilité/S*() irrecevable/S*() irréconciliable/S*() irrécouvrable/S*() irrécupérable/S*() irrécusable/S*() irrécusablement/D'Q' irrédentisme/S*() irrédentiste/S*() irréductibilité/S*() irréductible/S*() irréductiblement/D'Q' irréelle/F*() irréfléchie/F*() irréflexion/S*() irréformable/S*() irréfragable/S*() irréfrénable/S*() irréfutabilité/S*() irréfutable/S*() irréfutablement/D'Q' irréfutée/F*() irrégularité/S*() irrégulière/F*() irrégulièrement/D'Q' irréligieuse/W*() irréligion/S*() irrémédiable/S*() irrémédiablement/D'Q' irrémissible/S*() irrémissiblement/D'Q' irremplaçable/S*() irréparable/S*() irréparablement/D'Q' irrépétible/S*() irrépréhensible/S*() irrépressible/S*() irrépressiblement/D'Q' irréprochable/S*() irréprochablement/D'Q' irrésistible/S*() irrésistiblement/D'Q' irrésolue/F*() irrésolution/S*() irrespect/S*() irrespectueuse/W*() irrespectueusement/D'Q' irrespirable/S*() irresponsabilité/S*() irresponsable/S*() irrétrécissable/S*() irrévérence/S*() irrévérencieuse/W*() irrévérencieusement/D'Q' irréversibilité/S*() irréversible/S*() irréversiblement/D'Q' irrévocabilité/S*() irrévocable/S*() irrévocablement/D'Q' irrigable/S*() irrigation/S*() irrigatrice/F*() irriguée/F*() irriguer/a2a+() irritabilité/S*() irritable/S*() irritante/F*() irritation/S*() irritative/F*() irritée/F*() irriter/a4a+() irruption/S*() isallobare/S*() isard/S*() isarienne/F*() isatis/L'D'Q' isba/S*() ischémie/S*() ischémique/S*() ischiatique/S*() ischion/S*() isiaque/S*() islam/L'D' islamique/S*() islamisation/S*() islamisée/F*() islamiser/a4a+() islamisme/S*() islamiste/S*() islamologie/S*() islamologue/S*() islandaise/F*() ismaélienne/F*() ismaélisme/S*() ismaélite/S*() isobare/S*() isobarique/S*() isobarycentre/S*() isobathe/S*() isocarde/S*() isocèle/S*() isochore/S*() isochromatique/S*() isochrone/S*() isochronisme/S*() isoclinale/W*() isocline/S*() isodynamie/S*() isodynamique/S*() isoforme/S*() isogame/S*() isogamie/S*() isogénie/S*() isoglosse/S*() isogone/S*() isohyète/S*() isohypse/S*() isolable/S*() isolante/F*() isolat/S*() isolation/S*() isolationnisme/S*() isolationniste/S*() isolatrice/F*() isolée/F*() isolément/D'Q' isolement/S*() isoler/a4a+() isologue/S*() isoloir/S*() isomérase/S*() isomère/S*() isomérie/S*() isomérisation/S*() isométrie/S*() isométrique/S*() isométriquement/D'Q' isomonodromique/S*() isomorphe/S*() isomorphiquement/D'Q' isomorphisme/S*() isonomie/S*() isopérimètre/S*() isopérimétrie/S*() isopérimétrique/S*() isopet/S*() isopode/S*() isoptère/S*() isoséiste/S*() isosiste/S*() isospectrale/W*() isospectralité/S*() isostasie/S*() isostatique/S*() isotactique/S*() isotherme/S*() isotonie/S*() isotonique/S*() isotope/S*() isotopie/S*() isotopique/S*() isotrope/S*() isotropie/S*() isotypique/S*() israélienne/F*() israélite/S*() issante/F*() issir/iY() issue/F*() isthme/S*() isthmique/S*() italianisante/F*() italianisée/F*() italianiser/a4a+() italianisme/S*() italienne/F*() italiote/S*() italique/S*() italophone/S*() item item/S*() itération/S*() itérative/F*() itérée/F*() itérer/c2a+() ithyphallique/S*() itinéraire/S*() itinérance/S*() itinérante/F*() itou iule/S*() ive/S*() ivette/S*() ivoire/S*() ivoirerie/S*() ivoirienne/F*() ivoirière/F*() ivoirine/F*() ivoiriser/a2a+() ivraie/S*() ivre/S*() ivresse/S*() ivrognerie/S*() ivrognesse/F*() ixer/a2a+() ixia/S*() ixième/S*() ixode/S*() j jabiru/S. jable/S. jabler/a0a+() jablière/S. jabloir/S. jabloire/S. jaborandi/S. jabot/S. jaboter/a0a+() jacaranda/S. jacassante/F.() jacasse/S. jacassement/S. jacasser/a0() jacasserie/S. jacasseuse/F.() jacée/S. jachère/S. jacinthe/S. jack/S. jacket/S. jackpot/S. jacobée/S. jacobien/S. jacobienne/F.() jacobine/F.() jacobinisme/S. jacobite/S. jacobus jaconas jacot/S. jacquard/S. jacquerie/S. jacquet/S. jacqueter jacquier/S. jacquot/S. jactance/S. jacter/a0a+() jaculatoire/S. jacuzzi/S. jade/S. jadéite/S. jadis jaffe/S. jaffer/a0() jaguar/S. jaillir/f0() jaillissante/F.() jaillissement/S. jaïn/S. jaïna/S. jaïnisme/S. jais jalap/S. jale/S. jalon/S. jalonnée/F.() jalonnement/S. jalonner/a0a+() jalonneur/S. jalouse/W.() jalousée/F.() jalousement jalouser/a0a+() jalousie/S. jam/S. jamaïcaine/F.() jamaïquaine/F.() jamais jambage/S. jambe/S. jambée/F.() jambette/S. jambière/F.() jambon/S. jambonneau/X. jambonnée/F.() jambonner/a0a+() jamboree/S. jambose/S. jambosier/S. jamerosier/S. jam-session/S. jan/S. jangada/S. janissaire/S. janotisme/S. jansénisme/S. janséniste/S. jante/S. janv janvier/S. japon/S. japonaise/F.() japonaiserie/S. japonerie/S. japonisante/F.() japonisée/F.() japoniser/a0a+() japonisme/S. japoniste/S. japonner/a0a+() jappement/S. japper/a0() jappeuse/F.() jaque/S. jaquemart/S. jaquette/S. jaquier/S. jar/S. jard/S. jarde/S. jardin/S. jardinage/S. jardiner/a0a+() jardinerie/S. jardinet/S. jardineuse/W.() jardinière/F.() jardiniste/S. jardon/S. jargon/S. jargonaphasie/S. jargonnante/F.() jargonner/a0() jargonneuse/F.() jargonneuse/W.() jarnicoton jarosse/S. jarovisation/S. jarre/S. jarret/S. jarretée/F.() jarretelle/S. jarreter/d0a+() jarretière/S. jas jaser/a0() jaseran/S. jaseron/S. jaseuse/F.() jasmin/S. jaspe/S. jaspée/F.() jasper/a0a+() jaspiner/a0a+() jaspure/S. jatte/S. jattée/S. jauge/S. jaugeage/S. jauger/a0a+() jaugeur/S. jaumière/S. jaunâtre/S. jaune/S. jaunette/F.() jaunie/F.() jaunir/f0f+() jaunissage/S. jaunissante/F.() jaunissement/S. java/S. javanaise/F.() javart/S. javeau/X. javel/S. javelage/S. javelée/F.() javeler/d0a+() javeleuse/F.() javeline/S. javelle/S. javellisation/S. javelliser/a0a+() javelot/S. javer/a0a+() jazz jazzman/S. je jean/S. jean-foutre jeannette/S. jectisse/S. jeep/S. jéjuno-iléon/S. jéjunum/S. je-m'en-fichisme/S. je-m'en-fichiste/S. je-m'en-foutisme/S. je-m'en-foutiste/S. je-ne-sais-quoi jennérienne/F.() jenny/S. jérémiade/S. jerez jerk/S. jéroboam/S. jerrycan/S. jersey/S. jersiaise/F.() jésuite/S. jésuitique/S. jésuitiquement jésuitisme/S. jésus jet/S. jetable/S. jetage/S. jetée/F.() jeter/d0a+() jeteuse/F.() jeton/S. jet-set/S. jet-setteuse/F.() jet-ski/S. jet-society/S. jet-stream/S. jettatura jeu/X. jeudi/S. jeun jeune/S. jeûne/S. jeunement jeûner/a0() jeunesse/S. jeunette/F.() jeûneuse/F.() jeunisme/S. jeunotte/F.() jigger/S. jingle/S. jiu-jitsu joaillerie/S. joaillière/F.() job/S. job/S. jobarde/F.() jobarder/a0a+() jobarderie/S. jobardise/S. jobelin/S. jocasse/S. jociste/S. jockey/S. jocoler/a0() jocrisse/S. jodhpurs jodler/a0() jogger/a0() joggeuse/F.() jogging/S. johannique/S. johannisberg/S. johannite/S. joie/S. joignable/S. joindre/wB() joint/S. jointe/F.() jointée/F.() jointer/a0a+() jointive/F.() jointoiement/S. jointoyer/a0a+() jointoyeuse/F.() jointure/S. joker/S. jolie/F.() joliesse/S. joliment jonc/S. joncacée/S. joncer/a0a+() jonchaie/S. jonchée/F.() joncher/a0a+() joncheraie/S. jonchère/S. jonchet/S. joncteur/S. jonction/S. jonglage/S. jongler/a0() jonglerie/S. jongleuse/F.() jonkheer/S. jonque/S. jonquille/S. jordanienne/F.() joseph/S. jota/S. jottereau/X. jouable/S. jouailler/a0() joual joubarbe/S. joue/S. jouer/a0a+() jouet/S. jouette/S. joueuse/F.() joufflue/F.() joug/S. jouir/f0() jouissance/S. jouissante/F.() jouisseuse/F.() jouissive/F.() joujou/X. joule/Um() jour/S. journal/X. journaleuse/W.() journalière/F.() journalisation/S. journalisme/S. journaliste/S. journalistique/S. journée/S. journellement joute/S. jouter/a0() jouteuse/F.() jouvence/S. jouvenceau/X. jouvencelle/S. jouxter/a0a+() joviale/W.() jovialement jovialité/S. jovials jovienne/F.() joyau/X. joyeuse/W.() joyeusement joyeuseté/S. joystick/S. jubarte/S. jubé/S. jubilaire/S. jubilation/S. jubilatoire/S. jubilé/S. jubiler/a0() juchée/F.() jucher/a0a+() juchoir/S. judaïcité/S. judaïque/S. judaïsée/F.() judaïser/a0a+() judaïsme/S. judaïté/S. judas judéité/S. judelle/S. judéo-chrétienne/F.() judéo-christianisme/S. judicature/S. judiciaire/S. judiciairement judiciarisation/S. judicieuse/W.() judicieusement judo/S. judoka/S. judokate/S. jugale/W.() juge/S. jugeable/S. jugée/F.() jugement/S. jugeote/S. juger/a0a+() jugeuse/F.() juglandacée/S. jugulaire/S. jugulée/F.() juguler/a0a+() juil juillet/S. juillettiste/S. juin/S. juive/F.() juiverie/S. jujube/S. jujubier/S. juke-box julep/S. jules julienne/F.() jumbo/S. jumeau/X. jumel/S. jumelage/S. jumelée/F.() jumeler/d0a+() jumelle/S. jument/S. jumping/S. jungle/S. junior/S. junker/S. junkie/S. junonienne/F.() junte/S. jupe/S. jupe-culotte jupes-culottes jupette/S. jupitérienne/F.() jupon/S. juponnée/F.() juponner/a0a+() jurande jurassienne/F.() jurassique/S. jurat/S. juratoire/S. jurée/F.() jurement/S. jurer/a0a+() jureur/S. juridiction/S. juridictionnelle/F.() juridique/S. juridiquement juridisme/S. jurisconsulte/S. jurisprudence/S. jurisprudentielle/F.() juriste/S. juron/S. jury/S. jus jusant/S. jusée/S. jusqu'à jusqu'au-boutisme/S. jusqu'au-boutiste/S. jusque jusque-là jusques jusquiame/S. jusqu'ici jussiée/S. jussion/S. justaucorps juste/S. justement juste-milieu/X. justes-milieux justesse/S. justice/S. justiciable/S. justicière/F.() justifiable/S. justifiante/F.() justificatif/S. justification/S. justificative/F.() justificatrice/F.() justifiée/F.() justifier/a0a+() jute/S. juter/a0() juteuse/W.() juvénat/S. juvénile/S. juvénilité/S. juxtalinéaire/S. juxtaposable/S. juxtaposante/F.() juxtaposée/F.() juxtaposer/a0a+() juxtaposition/S. k kabbale/S. kabbaliste/S. kabbalistique/S. kabuki/S. kabyle/S. kacha/S. kache/S. kachoube/S. kafkaïenne/F.() kaïnite/S. kaiser/S. kakemono/S. kaki/S. kalachnikov/S. kaléidoscope/S. kaléidoscopique/S. kali/S. kalicytie/S. kaliémie/S. kalium/S. kalmouke/F.() kamala/S. kami/S. kamichi/S. kamikaze/S. kana/S. kanake/F.() kanban/S. kandjar/S. kangourou/S. kanji/S. kantienne/F.() kantisme/S. kaoliang/S. kaolin/S. kaolinisation/S. kaon/S. kaoter/a0a+() kaotiser/a0a+() kapo/S. kapok/S. kapokier/S. kappa karakul/S. karaoké/S. karaté/S. karatéka/S. karbau/S. karité/S. karma/S. karman/S. karst/S. karstification/S. karstique/S. kart/S. karting/S. kascher kat/U.||-- katakana/S. katal/Um() katana/S. kava/S. kawa/S. kayak/S. kayakiste/S. kazakhe/F.() kbit/||-- kebab/S. keepsake/S. keffieh/S. kéfir/S. keiretsu/S. kelvin/Um() kelvinomètre/S. kendo/S. kénotron/S. kentia/S. kentrophylle/S. kényane/F.() képi/S. kérabau/S. kératine/S. kératinisation/S. kératinisée/F.() kératiniser/a0a+() kératite/S. kératose/S. kératotomie/S. kéraunique/S. kermès kermesse/S. kérogène/S. kérosène/S. kérygme/S. kétamine/S. ketch/S. ketchup/S. ketmie/S. keum/S. kevlar/S. keynésianisme/S. keynésienne/F.() khâgne/S. khâgneuse/W.() khamsin/S. khan/S. khanat/S. kharidjisme/S. kharidjite/S. khat/S. khédivale/W.() khédivat/S. khédive/S. khédiviale/W.() khédiviat/S. khi khmère/F.() khôl/S. kibboutz kibibit/S. kibioctet/S. kick/S. kidnappage/S. kidnappée/F.() kidnapper/a0a+() kidnappeuse/F.() kidnapping/S. kief/S. kieselguhr/S. kiesérite/S. kif/S. kiffer/a0a+() kif-kif kiki/S. kil/S. kilo/S. kilobit/S. kilocycle/S. kilogrammètre/S. kilométrage/S. kilométrer/c0a+() kilométrique/S. kilooctet/S. kiloparsec/S. kilothermie/S. kilotonne/S. kilt/S. kimbanguisme/S. kimbanguiste/S. kimono/S. kinase/S. kinescope/S. kinésithérapeute/S. kinésithérapie/S. kinesthésie/S. kinesthésique/S. kinétochore/S. kinkajou/S. kiosque/S. kipper/S. kir/S. kirghize/F.() kirsch/S. kit/S. kitchenette/S. kitesurf/S. kitsch kiwi/S. klaxon/S. klaxonner/a0a+() kleenex kleinien/S. klephte/S. klezmer/S. klystron/S. kn/||-- knickerbockers knickers knock-down knock-out knout/S. ko/||-- koala/S. kobold/S. koinè kola/S. kolatier/S. kolinski/S. kolkhoze/S. kolkhozienne/F.() kommandantur/S. konzern/S. kopeck/S. korê/S. koriste/S. korrigane/F.() kosovare/F.() kot/S. koter/a0() koubba/S. kouglof/S. kouign-amann/S. koulak/S. koumis kouros koweïtienne/F.() kpc/||-- kraal/S. krach/S. kraft/S. krak/S. kraken/S. kremlin/S. kremlinologie/S. kreutzer/S. kriek krishnaïte/S. kriss kronprinz kroumir/S. krypton/S. ksar kshatriya ksi ksour kt/||-- kth/||-- kummel/S. kumquat/S. kung-fu kurde/S. kvas kymographe/S. kymographie/S. kymrique/S. kyrie/S. kyrielle/S. kyste/S. kystique/S. kyudo/S. l/U.||-- la la là labadens labarum/S. là-bas labdanum/S. label/S. labelle/S. labellisée/F.() labelliser/a0a+() labeur/S. labiacée/S. labiale/W.() labialisation/S. labialiser/a0a+() labiée/F.() labile/S. labiodentale/S. labiodentale/W.() labium/S. laborante/F.() laborantine/F.() laboratoire/S. laborieuse/W.() laborieusement laboriste/S. labour/S. labourable/S. labourage/S. labourée/F.() labourer/a0a+() laboureur/S. labrador/S. labre/S. labri/S. labridé/S. labrit/S. labyrinthe/S. labyrinthique/S. labyrinthodon/S. labyrinthodonte/S. lac/S. laçage/S. lacaniser laccase/S. laccolite/S. laccolithe/S. l'accoutumée lacédémonienne/F.() lacée/F.() lacement/S. lacer/a0a+() lacération/S. lacérée/F.() lacérer/c0a+() lacerie/S. lacet/S. laceuse/F.() lâchage/S. lâche/S. lâchée/F.() lâchement lâcher/S. lâcher/a0a+() lâcheté/S. lâcheuse/F.() laciniée/F.() lacis laconique/S. laconiquement laconisme/S. lacquemant/S. lacrima-christi lacrymale/W.() lacrymogène/S. lactaire/S. lactalbumine/S. lactase/S. lactate/S. lactation/S. lactée/F.() lactescence/S. lactescente/F.() lactifère/S. lactique/S. lactodensimètre/S. lactoflavine/S. lactomètre/S. lactose/S. lactosérum/S. lactucarium/S. lacunaire/S. lacune/S. lacuneuse/W.() lacustre/S. lad/S. ladanum/S. là-dessous là-dessus ladin/S. ladine/F.() ladite ladre/S. ladrerie/S. lady/S. lagon/S. lagopède/S. lagothrix lagotriche/S. lagrangien/S. lagrangienne/F.() laguiole/S. laguis lagunage/S. lagunaire/S. lagune/S. là-haut laïc/S. laïcat/S. laîche/S. laïcisation/S. laïcisée/F.() laïciser/a0a+() laïcisme/S. laïcité/S. laide/F.() laidement laideron/S. laideur/S. laie/F.() lainage/S. laine/S. lainée/F.() lainer/a0a+() lainerie/S. laineuse/F.() laineuse/W.() lainière/F.() laïque/S. laird/S. laisse/S. laissée/F.() laissée-pour-compte laissées-pour-compte laissé-pour-compte laisser/a0a+() laisser-aller laissés-pour-compte laissez-passer lait/S. laitage/S. laitance/S. laitée/F.() laiterie/S. laiteron/S. laiteuse/W.() laitière/F.() laiton/S. laitonner/a0a+() laitue/S. laïus laïusser/a0() laïusseuse/F.() laize/S. lakiste/S. lallation/S. lama/S. lamage/S. lamaïque/S. lamaïsme/S. lamaïste/S. lamanage/S. lamaneuse/F.() lamantin/S. lamarckienne/F.() lamarckisme/S. lamarckiste/S. lamaserie/S. lambada/S. lambda lambdacisme/S. lambeau/X. lambel/S. lambic/S. lambine/F.() lambiner/a0() lambinerie/S. lambourde/S. lambrequin/S. lambris lambrissage/S. lambrissée/F.() lambrisser/a0a+() lambruche/S. lambrusque/S. lambswool/S. lame/S. lamée/F.() lamellaire/S. lamelle/S. lamellée/F.() lamelleuse/W.() lamellibranche/S. lamelliforme/S. lamellophone/S. lamentable/S. lamentablement lamentation/S. lamenter/a0a+() lamento/S. lamer/a0a+() lamie/S. lamier/S. lamifiée/F.() laminage/S. laminaire/S. lamination/S. laminectomie/S. laminée/F.() laminer/a0a+() lamineuse/F.() laminoir/S. lampadaire/S. lampadophore/S. lamparo/S. lampassée/F.() lampe/S. lamper/a0a+() lampion/S. lampiste/S. lampisterie/S. lampourde/S. lamprillon/S. lamproie/S. lampyre/S. lançage/S. lance/S. lance-amarres lance-bombes lancée/F.() lance-engins lance-flammes lance-fusées lance-grenades lancement/S. lance-missiles lancéolée/F.() lance-pierres lancequiner/a0() lancer/S. lancer/a0a+() lance-roquettes lance-satellites lance-torpilles lancette/S. lanceuse/F.() lancier/S. lancinante/F.() lanciner/a0a+() lançon/S. land landaise/F.() landau/S. landaulet/S. lande/S. länder landgrave/S. landgraviat/S. landier/S. landsturm/S. langage/S. langage-machine langagière/F.() lange/S. langer/a0a+() langoureuse/W.() langoureusement langouste/S. langoustière/F.() langoustine/S. langue/S. languedocienne/F.() languée/F.() languette/S. langueur/S. langueyage/S. langueyer/a0a+() languide/S. languier/S. languir/f0f+() languissamment languissante/F.() lanice/S. lanier/S. lanière/S. lanifère/S. lanigère/S. lanlaire lanoline/S. lansquenet/S. lansquine/S. lansquiner/a0() lantanier/S. lanterne/S. lanterneau/X. lanterner/a0a+() lanternon/S. lanthane/S. lanthanide/S. lanugineuse/W.() laotienne/F.() lapalissade/S. lapement/S. laper/a0a+() lapereau/X. lapiaz lapicide/S. lapidaire/S. lapidation/S. lapidée/F.() lapider/a0a+() lapidification/S. lapidifier/a0a+() lapilli lapine/F.() lapiner/a0() lapinière/S. lapinisme/S. lapis lapis-lazuli laplacien/S. laplacienne/F.() lapone/F.() laps lapsus laptot/S. laquage/S. laquais laque/S. laquée/F.() laquelle laquer/a0a+() laqueuse/F.() laqueuse/W.() laquier/S. laraire/S. larbin/S. larcin/S. lard/S. larder/a0a+() lardoire/S. lardon/S. lardonner/a0a+() lare/S. largable/S. largage/S. large/S. largement largesse/S. largeur/S. larghetto/S. largo largo/S. larguée/F.() larguer/a0a+() largueuse/F.() larigot/S. larme/S. larmier/S. larmoiement/S. larmoyante/F.() larmoyer/a0() larron/S. larvaire/S. larve/S. larvée/F.() larvicide/S. laryngale/S. laryngale/W.() laryngectomie/S. laryngée/F.() laryngienne/F.() laryngite/S. laryngologie/S. laryngologiste/S. laryngologue/S. laryngoscope/S. laryngoscopie/S. larynx lasagne/S. lascar/S. lascive/F.() lascivement lasciveté/S. lascivité/S. laser/S. lassante/F.() lasse/F.() lassée/F.() lasser/a0a+() lassis lassitude/S. lasso/S. lastex lasting/S. lasure/S. lat latanier/S. latence/S. latente/F.() latérale/W.() latéralement latéralisation/S. latéralité/S. latere latere latérite/S. latéritique/S. latex laticifère/S. laticlave/S. latifoliée/F.() latifundiaire/S. latifundium/S. latine/F.() latinisante/F.() latinisation/S. latiniser/a0a+() latinisme/S. latiniste/S. latinité/S. latino-américaine/F.() latitude/S. latitudinaire/S. latomies latrie/S. latrines lattage/S. latte/S. latter/a0a+() lattis laudanum/S. laudative/F.() laudatrice/F.() laudes lauracée/S. laure/S. lauréate/F.() laurée/F.() laurier/S. laurier-rose lauriers-roses lavable/S. lavabo/S. lavage/S. lavallière/S. lavande/S. lavandicultrice/F.() lavandiculture/S. lavandière/F.() lavandin/S. lavaret/S. lavatory/S. lave-auto lave-dos lavée/F.() lave-glace lave-linge lave-mains lavement/S. lave-pont laver/a0a+() laverie/S. lave-tête lavette/S. laveuse/F.() lave-vaisselle lavis lavoir/S. lavure/S. lawrencium/S. laxative/F.() laxisme/S. laxiste/S. laxité/S. layer/a0a+() layetière/F.() layette/S. layon/S. lazaret/S. lazariste/S. lazulite/S. lazurite/S. lazzarone/S. lazzi/S. lb/||-- le/S. lé/S. leader/S. leadership/S. leasing/S. lebel/S. léchage/S. lèche/S. lèche-bottes lèche-cul léchée/F.() lèchefrite/S. lèchement/S. lécher/c0a+() lécheuse/F.() lèche-vitrines lécithine/S. leçon/S. lectorat/S. lectrice/F.() lecture/S. ledit légale/W.() légalement légalisation/S. légalisée/F.() légaliser/a0a+() légalisme/S. légaliste/S. légalité/S. légat/S. légataire/S. légation/S. legato legato/S. lège/S. légendaire/S. légende/S. légender/a0a+() legendrienne/F.() légère/F.() légèrement légèreté/S. leggings leggins légiférée/F.() légiférer/c0() légion/S. légionellose/S. légionnaire/S. législation/S. législative/F.() législatrice/F.() législature/S. légiste/S. légitimation/S. légitime/S. légitimée/F.() légitimement légitimer/a0a+() légitimisme/S. légitimiste/S. légitimité/S. legs léguée/F.() léguer/c0a+() légume/S. légumière/F.() légumine/S. légumineuse/W.() lei leishmanie/S. leishmaniose/S. leitmotiv/S. lémanique/S. lemmatiser/a0a+() lemme/S. lemming/S. lemnacée/S. lemniscate/S. lémure/S. lémurien/S. lendemain/S. lendit/S. lénifiante/F.() lénifier/a0a+() léninisme/S. léniniste/S. lénitive/F.() lente/F.() lentement lenteur/S. lenticelle/S. lenticulaire/S. lentiforme/S. lentigine/S. lentigo/S. lentille/S. lentillon/S. lentisque/S. lento lento/S. léonarde/F.() léonine/F.() léonure/S. léopard/S. léopardée/F.() lépidodendron/S. lépidoptère/S. lépidoptériste/S. lépidosirène/S. lépidostée/S. lépiote/S. lépisme/S. lépisostée/S. lèpre/S. leprechaun/S. lépreuse/W.() léprologie/S. léprologiste/S. léprologue/S. léproserie/S. leptocéphale/S. leptolithique/S. lepton/S. leptonique/S. leptospirose/S. lepture/S. lequel lerche lérot/S. lès lesbianisme/S. lesbienne/F.() lesdites lesdits lésée/F.() lèse-majesté léser/c0a+() lésinante/F.() lésine/S. lésiner/a0() lésinerie/S. lésineuse/F.() lésion/S. lésionnaire/S. lésionnelle/F.() lesquelles lesquels lessivable/S. lessivage/S. lessive/S. lessivée/F.() lessiver/a0a+() lessiveuse/F.() lessivielle/F.() lest/S. lestage/S. leste/F.() lestée/F.() lestement lester/a0a+() let létale/W.() létalité/S. léthargie/S. léthargique/S. lettone/F.() lettrage/S. lettre/S. lettrée/F.() lettreuse/F.() lettrine/S. lettrisme/S. leu leucanie/S. leucémie/S. leucémique/S. leucine/S. leucite/S. leucocytaire/S. leucocyte/S. leucocytose/S. leucoderme/S. leucodermie/S. leucodystrophie/S. leucome/S. leucopénie/S. leucoplasie/S. leucorrhée/S. leucose/S. leucotomie/S. leude/S. leur/S. leurre/S. leurrée/F.() leurrer/a0a+() lev levage/S. levageuse/F.() levain/S. levantine/F.() levée/F.() lève-glace/S. lever/S. lever/b0a+() leveuse/F.() lève-vitre/S. léviathan/S. levier/S. lévigation/S. léviger/a0a+() lévirat/S. levis lévitation/S. lévite/S. léviter/a0() levraut/S. lèvre/S. levrette/S. levrettée/F.() levretter/a0() lévrier/S. levronne/F.() lévulose/S. levure/S. lexème/S. lexicale/W.() lexicalisation/S. lexicalisée/F.() lexicaliser/a0a+() lexicographe/S. lexicographie/S. lexicographique/S. lexicologie/S. lexicologique/S. lexicologue/S. lexie/S. lexique/S. lexis lez lézarde/F.() lézardée/F.() lézarder/a0a+() li/S. liage/S. liaison/S. liaisonner/a0a+() liane/S. liante/F.() liard/S. liarder/a0() liasique/S. libage/S. libanaise/F.() libaniser/a0a+() libation/S. libelle/S. libellé/S. libellée/F.() libeller/a0a+() libelliste/S. libellule/S. liber/S. libérable/S. libérale/W.() libéralement libéralisante/F. libéralisation/S. libéralisée/F.() libéraliser/a0a+() libéralisme/S. libéralité/S. libération/S. libératoire/S. libératrice/F.() libérée/F.() libérer/c0a+() libérienne/F.() libériste/S. libéro-ligneuse/W.() libertaire/S. libertarianisme/S. libertarienne/F.() liberté/S. liberticide/S. libertinage/S. libertine/F.() liberty libidinale/W.() libidineuse/W.() libido/S. libitum libraire/S. librairie/S. libration/S. libre/S. libre-échange/S. libre-échangisme libre-échangiste/S. librement libre-penseur libre-penseuse libre-service libres-penseurs libres-penseuses libres-services librettiste/S. libretto/S. librisme/S. libriste/S. libyenne/F.() lice/S. licéité/S. licence/S. licenciée/F.() licenciement/S. licencier/a0a+() licencieuse/W.() liche/S. lichen/S. licher/a0a+() lichetrogner lichette/S. lichoter lichotter licière/F.() licitation/S. licite/S. licitement liciter/a0a+() licol/S. licorne/S. licou/S. licteur/S. lidar/S. lido/S. lidocaïne/S. lied/S. lie-de-vin liée/F.() liège/S. liégée/F.() liégeoise/F.() liéger/c0a+() liégeuse/W.() lien/S. lier/a0a+() lierne/S. lierre/S. liesse/S. lieu/X. lieu-dit lieue/S. lieuse/F.() lieutenance/S. lieutenant-colonel lieutenante/F.() lieutenants-colonels lieux-dits lièvre/S. lift/S. lifter/a0a+() liftière/F.() lifting/S. ligament/S. ligamentaire/S. ligamenteuse/W.() ligand/S. ligase/S. ligature/S. ligaturée/F.() ligaturer/a0a+() lige/S. ligérienne/F.() ligie/S. lignage/S. lignarde/F.() ligne/S. lignée/S. ligner/a0a+() lignerolle/S. ligneul/S. ligneuse/F.() ligneuse/W.() lignicole/S. lignifiante/F.() lignification/S. lignifiée/F.() lignifier/a0a+() lignine/S. lignite/S. lignivore/S. lignomètre/S. ligot/S. ligotage/S. ligotée/F.() ligoter/a0a+() ligue/S. liguée/F.() liguer/a0a+() ligueuse/F.() ligule/S. ligulée/F.() liguliflore/S. ligure/S. lilas liliacée/F.() liliale/W.() lilliputienne/F.() limace/S. limaçon/S. limage/S. limaille/S. liman/S. limande/S. limander/a0a+() limbaire/S. limbe/S. limbique/S. limbourgeoise/F.() lime/S. limée/F.() limer/a0a+() limerick/S. limes limette/S. limettier/S. limeuse/F.() limicole/S. limier/S. liminaire/S. liminale/W.() limitable/S. limitation/S. limitative/F.() limitativement limite/S. limitée/F.() limiter/a0a+() limiteur/S. limitrophe/S. limnée/S. limniculture/S. limnique/S. limnologie/S. limogeage/S. limogée/F.() limoger/a0a+() limon/S. limonade/S. limonadière/F.() limonage/S. limonaire/S. limonène/S. limoner/a0a+() limoneuse/W.() limonière/F.() limonite/S. limoselle/S. limousinage/S. limousine/F.() limousiner/a0a+() limpide/S. limpidité/S. limule/S. lin/S. linacée/S. linaigrette/S. linaire/S. linceul/S. linçoir/S. linéaire/S. linéairement linéale/W.() linéament/S. linéarisabilité/S. linéarisable/S. linéarisation/S. linéarité/S. linéique/S. liner/S. linette/S. linga/S. lingala/S. lingam/S. linge/S. lingée/F.() linger/a0a+() lingère/F.() lingerie/S. lingette/S. lingot/S. lingotière/S. linguale/W.() linguatule/S. linguette/S. linguiforme/S. linguiste/S. linguistique/S. linguistiquement linière/F.() liniment/S. linkage/S. links linnéenne/F.() lino/S. linogravure/S. linoléum/S. linon/S. linotte/S. linotype/S. linotypie/S. linotypiste/S. linsang/S. linsoir/S. linteau/X. linter/S. lionceau/X. lionne/F.() lionnée/F.() liparis lipase/S. lipémie/S. lipide/S. lipidémie/S. lipidique/S. lipochrome/S. lipoïde/S. lipolyse/S. lipome/S. lipophile/S. lipoprotéine/S. lipoprotéinémie/S. liposarcome/S. liposoluble/S. lipothymie/S. lipotrope/S. lipovaccin/S. lippe/S. lippée/S. lippue/F.() lipschitzienne/F.() liquation/S. liquéfacteur/S. liquéfaction/S. liquéfiable/S. liquéfiante/F.() liquéfiée/F.() liquéfier/a0a+() liquette/S. liqueur/S. liquidable/S. liquidambar/S. liquidation/S. liquidative/F.() liquidatrice/F.() liquide/S. liquidée/F.() liquider/a0a+() liquidienne/F.() liquidité/S. liquoreuse/W.() liquoriste/S. lire/S. lire/yA() liron/S. lisage/S. lisbroquer lisérage/S. liseré/S. liséré/S. liserer/b0a+() lisérer/c0a+() liseron/S. liseuse/F.() lisibilité/S. lisible/S. lisiblement lisier/S. lisière/S. lissage/S. lissante/F.() lisse/S. lissée/F.() lisser/a0a+() lisseron/S. lisseuse/F.() lissier/S. lissoir/S. listage/S. liste/S. listeau/X. listel/S. lister/a0a+() listériose/S. listing/S. liston/S. lit/S. litanie/S. litchi/S. liteau/X. litée/F.() litée/S. liter/a0a+() literie/S. litham/S. litharge/S. lithergol/S. lithiase/S. lithiasique/S. lithinée/F.() lithinifère/S. lithique/S. lithium/S. litho/S. lithodome/S. lithogène/S. lithogenèse/S. lithographe/S. lithographie/S. lithographier/a0a+() lithographique/S. lithologie/S. lithologique/S. lithophage/S. lithophanie/S. lithosphère/S. lithosphérique/S. lithostatique/S. lithothamnium/S. lithotriteur/S. lithotypographie/S. litière/S. litige/S. litigeur/S. litigieuse/W.() litispendance/S. litorne/S. litote/S. litre/Um() litron/S. litroner litsam/S. litt littéraire/S. littérairement littérale/W.() littéralement littéralisme/S. littéralité/S. littérarité/S. littératrice/F.() littérature/S. littérisme/S. littorale/W.() littorine/S. lituanienne/F.() liturgie/S. liturgique/S. liturgiste/S. liure/S. livarot/S. live livèche/S. livet/S. livide/S. lividité/S. living/S. living-room/S. livrable/S. livraison/S. livre/S. livre-cassette livrée/F.() livrer/a0a+() livres-cassettes livresque/S. livret/S. livreuse/F.() lixiviation/S. llano/S. lm/U.||-- loader/S. lob/S. lobaire/S. lobby/S. lobbying/S. lobbyisme/S. lobbyiste/S. lobe/S. lobectomie/S. lobée/F.() lobélie/S. lober/a0a+() lobotomie/S. lobotomisée/F.() lobotomiser/a0a+() lobulaire/S. lobulée/F.() lobuleuse/W.() local/X. locale/W.() localement localisable/S. localisante/F.() localisateur/S. localisation/S. localisatrice/F.() localisée/F.() localiser/a0a+() localité/S. locataire/S. locataire-gérant locataires-gérants location/S. locations-ventes location-vente locative/F.() locavore/S. loch/S. loche/S. locher/a0a+() lochies lock-out lock-outer/a0a+() locomobile/S. locomotion/S. locomotive/F.() locomotive/S. locomotrice/F.() locotracteur/S. loculaire/S. loculée/F.() loculeuse/W.() locuste/S. locution/S. locutrice/F.() loden/S. lods lœss lof/S. lofer/a0() loft/S. log/S. logarithme/S. logarithmique/S. loge/S. logeable/S. logée/F.() logement/S. loger/a0a+() logette/S. logeuse/F.() loggia/S. logiciel/S. logicielle/F.() logiciellement logicienne/F.() logicisme/S. logico-mathématique/S. logico-positivisme/S. logigramme/S. logique/S. logiquement logis logiste/S. logisticienne/F.() logistique/S. logithèque/S. logo/S. logogramme/S. logogrammique/S. logographe/S. logographie/S. logographique/S. logogriphe/S. logomachie/S. logomachique/S. logopède/S. logopédie/S. logopédiste/S. logorrhée/S. logorrhéique/S. logos logotype/S. loguer/a0() loi/S. loi-cadre loin lointaine/F.() lointainement loi-programme loir/S. lois-cadres loisible/S. loisir/S. lois-programmes lokoum/S. lolette/S. lolita/S. lolo/S. lombaire/S. lombalgie/S. lombarde/F.() lombarthrose/S. lombes lombo-sacrée/F.() lombosciatique/S. lombric/S. lombricultrice/F.() lombriculture/S. lompe/S. londonienne/F.() londrès lône/S. longane/S. longanimité/S. long-courrier/S. longe/S. longée/F.() longeole/S. longer/a0a+() longère/S. longeron/S. longévité/S. longicorne/S. longiforme/S. longiligne/S. longitude/S. longitudinale/W.() longitudinalement longotte/S. longrine/S. longtemps longue/F.() longuement longues-vues longuette/F.() longueur/S. longue-vue looch/S. loofa/S. look/S. looping/S. lopette/S. lophophore/S. lopin/S. loquace/S. loquacité/S. loque/S. loquer/a0a+() loquet/S. loqueteau/X. loqueteuse/W.() loran/S. loranthacée/S. lord/S. lord-maire lordose/S. lords-maires lorentzienne/F.() lorette/S. lorgner/a0a+() lorgnette/S. lorgnon/S. lori/S. loricaire/S. loriot/S. lorraine/F.() lorry/S. lors lorsque losange/S. losangée/F.() lot/S. loterie/S. lotie/F.() lotier/S. lotion/S. lotionner/a0a+() lotir/f0f+() lotissement/S. lotisseuse/F.() loto/S. lotoise/F.() lotte/S. lotus louable/S. louablement louage/S. louange/S. louangée/F.() louanger/a0a+() louangeuse/F.() loubar/S. loubard/S. louche/S. loucher/a0() loucherie/S. louchet/S. loucheuse/F.() louchir/f0() louchonne/F.() louée/F.() louer/a0a+() loueuse/F.() loufer/a0() loufiat/S. loufoque/S. loufoquerie/S. lougre/S. louis loukoum/S. loulou/S. loup/S. loupage/S. loup-cervier louper/a0a+() loup-garou loupiote/F.() loups-cerviers loups-garous louquer lourdaude/F.() lourde/F.() lourdement lourder/a0a+() lourdeur/S. lourdingue/S. lourée/F.() lourer/a0a+() lousse/S. loustic/S. loutre/S. louve/S. louver/a0a+() louveteau/X. louveter/d0() louveterie/S. louvetier/S. louvette/F.() louvoiement/S. louvoyante/F. louvoyer/a0() lovelace/S. lover/a0a+() loxodromie/S. loxodromique/S. loyale/W.() loyalement loyalisme/S. loyaliste/S. loyauté/S. loyer/S. lubie/S. lubricité/S. lubrifiante/F.() lubrification/S. lubrifiée/F.() lubrifier/a0a+() lubrique/S. lubriquement lucane/S. lucarne/S. lucernaire/S. lucide/S. lucidement lucidité/S. luciférienne/F.() lucifuge/S. lucilie/S. lucimètre/S. luciole/S. lucrative/F.() lucrativement lucrativité/S. lucre/S. luddisme/S. ludiciel/S. ludion/S. ludique/S. ludisme/S. ludothécaire/S. ludothèque/S. lue/F.() luétine/S. luette/S. lueur/S. luffa/S. luge/S. luger/a0() lugeuse/F.() lugubre/S. lugubrement lui lui-même luire/yU() luisance/S. luisante/F.() lulu/S. lumachelle/S. lumbago/S. lumen/Um() lumière/S. lumignon/S. luminaire/S. luminance/S. luminescence/S. luminescente/F.() lumineuse/W.() lumineusement luminique/S. luminisme/S. luministe/S. luminomètre/S. luminophore/S. luminosité/S. luminothérapie/S. lumitype/S. lump/S. lunaire/S. lunaison/S. lunatique/S. lunch/S. luncher/a0() lundi/S. lune/S. lunée/F.() lunette/S. lunetterie/S. lunettière/F.() luni-solaire/S. lunule/S. lunure/S. lupanar/S. lupercale/W.() lupercales lupin/S. lupuline/F.() lupus lurette/S. luronne/F.() lusin/S. lusitanienne/F.() lusophone/S. lustrage/S. lustrale/W.() lustrante/F.() lustration/S. lustre/S. lustrée/F.() lustrer/a0a+() lustrerie/S. lustreuse/F.() lustrine/S. lustroir/S. lutécienne/F.() lutécium/S. lutéine/S. lutéinisation/S. luter/a0a+() luth/S. luthéranisme/S. lutherie/S. luthérienne/F.() luthière/F.() luthiste/S. lutin/S. lutinée/F.() lutiner/a0a+() lutrin/S. lutte/S. lutter/a0() lutteuse/F.() lux/Um() luxation/S. luxe/S. luxembourgeoise/F.() luxembourgisme/S. luxembourgiste/S. luxer/a0a+() luxmètre/S. luxueuse/W.() luxueusement luxure/S. luxuriance/S. luxuriante/F.() luxurieuse/W.() luzerne/S. luzernière/S. luzule/S. lx/U.||-- lycanthrope/S. lycanthropie/S. lycaon/S. lycée/S. lycéenne/F.() lycène/S. lychnis lycope/S. lycopène/S. lycoperdon/S. lycopode/S. lycose/S. lycra lyddite/S. lydienne/F.() lymphangite/S. lymphatique/S. lymphatisme/S. lymphe/S. lymphocytaire/S. lymphocyte/S. lymphocytose/S. lymphœdème/S. lymphogranulomatose/S. lymphographie/S. lymphoïde/S. lymphome/S. lymphopénie/S. lynchage/S. lynchée/F.() lyncher/a0a+() lyncheuse/F.() lynx lyonnaise/F.() lyophile/S. lyophilisat/S. lyophilisateur/S. lyophilisation/S. lyophilisée/F.() lyophiliser/a0a+() lyophobe/S. lyre/S. lyrée/F.() lyrer/a0() lyric/S. lyrique/S. lyriquement lyrisme/S. lys lysat/S. lyse/S. lyser/a0a+() lysergamide/S. lysergide/S. lysergique/S. lysimaque/S. lysine/S. lysogène/S. lysogénie/S. lysogénique/S. lysosome/S. lysosomiale/W.() lysozyme/S. lytique/S. m m/U.||-- mR/||-- ma maboule/F.() mac/S. macabre/S. macache macadam/S. macadamiser/a0a+() macaque/S. macareux macaron/S. macaroni/S. macaronique/S. macassar/S. macchabée/S. macchaber macédoine/S. macédonienne/F.() macérateur/S. macération/S. macérée/F.() macérer/c0a+() maceron/S. macfarlane/S. mach machaon/S. mâche/S. mâchée/F.() mâchefer/S. mâchement/S. mâcher/a0a+() machette/S. mâcheuse/F.() machiavel/S. machiavélique/S. machiavéliquement machiavélisme/S. machicoter/a0() mâchicoulis machin/S. machinale/W.() machinalement machination/S. machine/S. machine-outil machiner/a0a+() machinerie/S. machines-outils machinisme/S. machiniste/S. machisme/S. machiste/S. machmètre/S. macho/S. mâchoire/S. mâchon/S. mâchonnement/S. mâchonner/a0a+() mâchouiller/a0a+() mâchurer/a0a+() macis macle/S. maclée/F.() macler/a0a+() mâcon/S. maçonne/F.() maçonner/a0a+() maçonnerie/S. maçonnique/S. macque/S. macquer/a0a+() macramé/S. macre/S. macreuse/S. macro/S. macrobiotique/S. macrocéphale/S. macrocéphalie/S. macrocosme/S. macrocosmique/S. macrocycle/S. macrocyclique/S. macrocyte/S. macrocytose/S. macrodécision/S. macroéconomie/S. macroéconomique/S. macrofaune/S. macrographie/S. macro-instruction/S. macromoléculaire/S. macromolécule/S. macron/S. macronutriment/S. macro-ordinateur/S. macro-organisme/S. macrophage/S. macrophotographie/S. macropode/S. macroscélide/S. macroscopie/S. macroscopique/S. macroscopiquement macroséisme/S. macrosporange/S. macrospore/S. macrostructure/S. macroure/S. macula/S. maculage/S. maculaire/S. maculature/S. macule/S. maculée/F.() maculer/a0a+() madame/S. madapolam/S. made madécasse/S. madéfier/a0a+() madeleine/S. mademoiselle madère/S. madériser/a0a+() madison/S. madone/S. madrague/S. madras madrée/F.() madrépore/S. madréporique/S. madrier/S. madrigal/X. madrigaliser/a0() madrigaliste/S. madrilène/S. maelström/S. maërl/S. maestoso maestria maestro/S. mafflue/F.() mafia/S. mafieuse/W.() mafioso/I. magadhi/S. maganer/a0a+() magasin/S. magasinage/S. magasiner/a0a+() magasinière/F.() magazine/S. magdalénienne/F.() mage/S. magellanique/S. magenta maghrébine/F.() maghzen/S. magicienne/F.() magie/S. magique/S. magiquement magister/S. magistère/S. magistrale/W.() magistralement magistrate/F.() magistrature/S. magma/S. magmatique/S. magmatisme/S. magmatologie/S. magnanarelle/S. magnanerie/S. magnanière/F.() magnanime/S. magnanimement magnanimité/S. magnat/S. magner/a0a+() magnésie/S. magnésienne/F.() magnésite/S. magnésium/S. magnet/S. magnétique/S. magnétiquement magnétisante/F.() magnétisation/S. magnétisée/F.() magnétiser/a0a+() magnétiseuse/F.() magnétisme/S. magnétite/S. magnéto/S. magnétocassette/S. magnétochimie/S. magnétodynamique/S. magnétoélasticité/S. magnétoélectrique/S. magnétohydrodynamique/S. magnétomètre/S. magnétométrie/S. magnétomotrice/F.() magnétopause/S. magnétophone/S. magnétorésistance/S. magnétoscope/S. magnétoscoper/a0a+() magnétosphère/S. magnétosphérique/S. magnétostriction/S. magnétothermique/S. magnétron/S. magnificat/S. magnificence/S. magnifiée/F.() magnifier/a0a+() magnifique/S. magnifiquement magnitude/S. magnolia/S. magnoliacée/S. magnum/S. magot/S. magoter/a0a+() magotte/S. magouillage/S. magouille/S. magouiller/a0a+() magouilleuse/F.() magret/S. magyare/F.() maharadja/S. maharaja/S. maharani/S. maharashtri/S. mahatma/S. mahdi/S. mahdisme/S. mahdiste/S. mah-jong/S. mahométane/F.() mahométisme/S. mahonia/S. mahonne/S. mahratte/S. mai/S. maïa/S. maie/S. maïeur/S. maïeuticienne/F.() maïeutique/S. maigre/S. maigrelette/F.() maigrement maigreur/S. maigrichonne/F.() maigriotte/F.() maigrir/f0f+() mail/S. mail-coach/S. mailing/S. maillage/S. maillard/S. maille/S. maillechort/S. maillée/F.() mailler/a0a+() maillet/S. mailleton/S. mailloche/S. maillon/S. maillot/S. maillotin/S. maillure/S. main/S. mainate/S. main-d'œuvre main-forte mainlevée/S. mainmettre mainmise/S. mainmortable/S. mainmorte/S. mains-d'œuvre mainte/F.() maintenabilité/S. maintenable/S. maintenance/S. maintenant mainteneur/S. maintenicienne/F.() maintenir/i0i+() maintenue/F.() maintien/S. mairesse/F.() mairie/S. mais mais mais maïs maïserie/S. maïsicultrice/F.() maïsiculture/S. maison/S. maisonnée/S. maisonnette/S. maistrance/S. maître-à-danser maître-assistant maître-assistante maître-autel maître-chien maître-nageur maîtres-à-danser maîtres-assistantes maîtres-assitants maîtres-autels maîtres-chiens maîtres-nageurs maîtresse/F.() maîtrisable/S. maîtrise/S. maîtrisée/F.() maîtriser/a0a+() maïzena/S. majesté/S. majestueuse/W.() majestueusement majeure/F.() majolique/S. major/S. majorable/S. majoral/X. majorante/F.() majorat/S. majoration/S. majordome/S. majorée/F.() majorer/a0a+() majorette/S. majoritaire/S. majoritairement majorité/S. majuscule/S. maki/S. makimono/S. mal mal/X. malabar/S. malachite/S. malacologie/S. malacologiste/S. malacologue/S. malade/S. maladie/S. maladive/F.() maladivement maladrerie/S. maladresse/S. maladroite/F.() maladroitement malaga/S. mal-aimée/F.() malaire/S. malaise/F.() malaise/S. malaisée/F.() malaisément malaisienne/F.() malandre/S. malandreuse/W.() malandrin/S. malapprise/F.() malard/S. malaria/S. malariathérapie/S. malart/S. malavisée/F.() malaxage/S. malaxer/a0a+() malaxeur/S. malayo-polynésien/S. malayo-polynésienne/F.() malbar/S. malbaraise/S. malbouffe/S. malchance/S. malchanceuse/W.() malcommode/S. maldonne/S. mâle/S. malédiction/S. maléfice/S. maléfique/S. malékisme/S. malékite/S. malencontreuse/W.() malencontreusement mal-en-point malentendante/F.() malentendu/S. mal-être malfaçon/S. malfaire malfaisance/S. malfaisante/F.() malfaiteur/S. malfamée/F.() malformation/S. malfrat/S. malgache/S. malgracieuse/W.() malgré malhabile/S. malhabilement malheur/S. malheureuse/W.() malheureusement malhonnête/S. malhonnêtement malhonnêteté/S. mali/S. malice/S. malicieuse/W.() malicieusement malienne/F.() maligne/F.() malignement malignité/S. maline/S. malingre/S. malinoise/F.() malintentionnée/F.() malique/S. mal-jugé/S. malle/S. malléabilisation/S. malléabiliser/a0a+() malléabilité/S. malléable/S. malléolaire/S. malléole/S. mallette/S. mallouser/a0a+() malmenée/F.() malmener/b0a+() malnutrition/S. malocclusion/S. malodorante/F.() malotrue/F.() malpighie/S. malpolie/F.() malposition/S. malpropre/S. malproprement malpropreté/S. malsaine/F.() malséance/S. malséante/F.() malsonnante/F.() malt/S. maltage/S. maltaise/F.() maltase/S. malter/a0a+() malterie/S. malteur/S. malthusianisme/S. malthusienne/F.() maltose/S. maltôte/S. maltraitance/S. maltraitante/F.() maltraitée/F.() maltraiter/a0a+() malus malvacée/S. malveillance/S. malveillante/F.() malvenue/F.() malversation/S. malvoyante/F.() maman/S. mambo/S. mamelle/S. mamelon/S. mamelonnée/F.() mamelonner/a0a+() mamelouk/S. mamelue/F.() mamie/S. mamillaire/S. mammaire/S. mammalienne/F.() mammalogie/S. mammalogique/S. mammalogiste/S. mammifère/S. mammite/S. mammographie/S. mammouth/S. mammy/S. mamours mam'selle mam'zelle man/S. mana/S. manade/S. manadière/F.() management/S. manager/S. manager/a0a+() managériale/W.() manant/S. mancelle/S. mancenille/S. mancenillier/S. manche/S. mancheron/S. manchette/S. manchon/S. manchonner/a0a+() manchote/F.() mancie/S. mancipation/S. mandale/S. mandante/F.() mandarinale/W.() mandarinat/S. mandarine/F.() mandarinier/S. mandat/S. mandataire/S. mandat-carte mandat-contributions mandatée/F.() mandatement/S. mandater/a0a+() mandat-lettre mandats-cartes mandats-contributions mandats-lettres mandature/S. mandchoue/F.() mandée/F.() mandement/S. mander/a0a+() mandibulaire/S. mandibule/S. mandoline/S. mandoliniste/S. mandore/S. mandorle/S. mandragore/S. mandrill/S. mandrin/S. mandrinage/S. manducation/S. manducatrice/F.() manécanterie/S. manège/S. manéger/c0a+() mânes maneton/S. manette/S. manga/S. manganate/S. manganèse/S. manganeuse/F.() manganique/S. manganite/S. mangeable/S. mangeaille/S. mangée/F.() mangeoire/S. mangeotter/a0a+() manger/S. manger/a0a+() mange-tout mangeure/S. mangeuse/F.() manglier/S. mangonneau/X. mangoustan/S. mangoustanier/S. mangouste/S. mangrove/S. mangue/S. manguier/S. maniabilité/S. maniable/S. maniaco-dépressive/F.() maniaque/S. maniaquement maniaquerie/S. manichéenne/F.() manichéisme/S. manichordion/S. manicle/S. manicorde/S. maniée/F.() maniement/S. manier/a0a+() manière/S. maniérée/F.() maniérer/c0a+() maniérisme/S. maniériste/S. manieuse/F.() manifestante/F.() manifestation/S. manifeste/S. manifestée/F.() manifestement manifester/a0a+() manifold/S. manigance/S. manigancer/a0a+() maniguette/S. manille/S. manillon/S. manioc/S. manipulable/S. manipulation/S. manipulatoire/S. manipulatrice/F.() manipulée/F.() manipuler/a0a+() manique/S. manitou/S. manivelle/S. manne/S. mannequin/S. mannequinage/S. mannequinat/S. mannequiner/a0a+() mannite/S. mannose/S. manodétendeur/S. manœuvrabilité/S. manœuvrable/S. manœuvre/S. manœuvrer/a0a+() manœuvrière/F.() manoir/S. manomètre/S. manométrie/S. manométrique/S. manoque/S. manoquer/a0a+() manouche/S. manouvrière/F.() manquante/F.() manque/S. manquée/F.() manquement/S. manquer/a0a+() mansarde/S. mansardée/F.() mansarder/a0a+() manse/S. mansion/S. mansuétude/S. mante/S. manteau/X. mantelée/F.() mantelet/S. mantelure/S. mantille/S. mantique/S. mantisse/S. mantra/S. manuaire/S. manubrium/S. manucure/S. manucurée/F.() manucurer/a0a+() manuéline/F.() manuelle/F.() manuellement manufacturable/S. manufacture/S. manufacturée/F.() manufacturer/a0a+() manufacturière/F.() manumission/S. manuscrite/F.() manutention/S. manutentionnaire/S. manutentionner/a0a+() manuterge/S. maoïsme/S. maoïste/S. maorie/F.() maousse/F.() mappemonde/S. mapper/a0a+() maquer/a0a+() maquereau/X. maquerelle/S. maquette/S. maquetter/a0a+() maquettiste/S. maquignonnage/S. maquignonne/F.() maquignonner/a0a+() maquillage/S. maquillée/F.() maquiller/a0a+() maquilleuse/F.() maquis maquisarde/F.() marabout/S. marabouter/a0a+() maraboutique/S. maraboutisme/S. maraîchage/S. maraîchère/F.() maraîchine/F.() marais maranta/S. marante/S. marasme/S. marasque/S. marasquin/S. marathi/S. marathon/S. marathonienne/F.() maratoner/a0() marâtre/S. maraudage/S. maraude/F.() marauder/a0a+() maraudeuse/F.() maravédis maraver/a0a+() marbre/S. marbrée/F.() marbrer/a0a+() marbrerie/S. marbreuse/F.() marbrière/F.() marbrure/S. marc/S. marcassin/S. marcassite/S. marcescence/S. marcescente/F.() marcescible/S. marchandage/S. marchande/F.() marchander/a0a+() marchandeuse/F.() marchandisage/S. marchandisation/S. marchandise/S. marchante/F.() marchantie/S. marche/S. marché/S. marchéage/S. marchepied/S. marcher/a0() marchette/S. marcheuse/F.() marcottage/S. marcotte/S. marcotter/a0a+() mardi/S. mare/S. marécage/S. marécageuse/W.() maréchalat maréchale/W.() maréchale-ferrante maréchalerie/S. maréchales-ferrantes maréchal-ferrant maréchaussée/S. maréchaux-ferrants marée/S. marégraphe/S. marelle/S. maremmatique/S. maremme/S. marémotrice/F.() marengo marengo/S. marennes maréomètre/S. mareyage/S. mareyeuse/F.() marfil/S. margaille/S. margarine/S. margauder/a0() margay/S. marge/S. margelle/S. marger/a0a+() margeuse/F.() marginale/W.() marginalement marginalisation/S. marginalisée/F.() marginaliser/a0a+() marginalisme/S. marginalité/S. marginée/F.() marginer/a0a+() margis margoter/a0() margotin/S. margouillis margoulette/S. margoulin/S. margrave/S. margraviat/S. marguerite/S. marguillière/F.() mari/S. mariable/S. mariage/S. marial/S. mariale/W.() maricultrice/F.() mariculture/S. marie-couche-toi-là mariée/F.() marie-jeanne marier/a0a+() marieuse/F.() marigot/S. marijuana/S. marinade/S. marinage/S. marine/F.() marine/S. marinée/F.() mariner/a0a+() maringouin/S. marinière/F.() marinisme/S. mariole/S. marionnette/S. marionnettiste/S. mariste/S. maritale/W.() maritalement maritime/S. maritorne/S. marivaudage/S. marivauder/a0() marjolaine/S. mark/S. marketeuse/F.() marketing/S. markovienne/F.() marli/S. marlou/S. marmaille/S. marmelade/S. marmenteau/X. marmitage/S. marmite/S. marmiter/a0a+() marmitonne/F.() marmonnée/F.() marmonnement/S. marmonner/a0a+() marmoréenne/F.() marmoriser/a0a+() marmot/S. marmotte/S. marmottement/S. marmotter/a0a+() marmotteuse/F.() marmouset/S. marnage/S. marnaise/F.() marne/S. marner/a0a+() marneuse/F.() marneuse/W.() marnière/S. marocaine/F.() maroilles maronite/S. maronner/a0() maroquin/S. maroquinage/S. maroquiner/a0a+() maroquinerie/S. maroquinière/F.() marotique/S. marotte/S. marouette/S. marouflage/S. maroufle/S. maroufler/a0a+() maroute/S. marquage/S. marquante/F.() marque/S. marquée/F.() marque-page/S. marquer/a0a+() marquetée/F.() marqueter/d0a+() marqueterie/S. marqueteur/S. marqueuse/F.() marquisat/S. marquise/F.() marquoir/S. marraine/S. marrante/F.() marrer/a0a+() marrie/F.() marron/S. marronnage/S. marronne/F.() marronner/a0() marronnier/S. marrube/S. mars marsault/S. marseillaise/F.() marsouin/S. marsouiner/a0() marsupial/X. marsupiale/W.() martagon/S. marte/S. marteau/X. marteau-pilon marteaux-pilons martel martelage/S. martelée/F.() martèlement/S. marteler/b0a+() marteleuse/F.() martensite/S. martiale/W.() martialement martienne/F.() martin/S. martinet/S. martingale/S. martini/S. martiniquaise/F.() martin-pêcheur martins-pêcheurs martre/S. martyre/F.() martyrisée/F.() martyriser/a0a+() martyrium/S. martyrologe/S. marxienne/F.() marxiser/a0a+() marxisme/S. marxisme-léninisme marxiste/S. marxiste-léniniste marxistes-léninistes maryland/S. mas mas/||-- mascara/S. mascarade/S. mascaret/S. mascaron/S. mascarpone/S. mascogne/S. mascotte/S. masculine/F.() masculinisation/S. masculiniser/a0a+() masculinité/S. maser/S. maskinongé/S. maso/S. masochisme/S. masochiste/S. masquage/S. masquante/F.() masque/S. masquée/F.() masquer/a0a+() massacrante/F.() massacre/S. massacrée/F.() massacrer/a0a+() massacreuse/F.() massage/S. masse/S. massée/F.() masselotte/S. massepain/S. masser/a0a+() masséter/S. massette/S. masseuse/F.() massicot/S. massicoter/a0a+() massicotière/F.() massière/F.() massif/S. massification/S. massifier/a0a+() massique/S. massive/F.() massivement massivité/S. massorah/S. massothérapeute/S. massothérapie/S. massue/S. mastaba/S. mastectomie/S. mastéguer master/S. mastère/S. mastic/S. masticage/S. masticateur/S. mastication/S. masticatoire/S. masticatrice/F.() mastiff/S. mastiquer/a0a+() mastite/S. mastoc mastocyte/S. mastodonte/S. mastoïde/S. mastoïdienne/F.() mastoïdite/S. mastologie/S. mastopathie/S. mastose/S. mastroquet/S. masturbation/S. masturber/a0a+() m'as-tu-vu masure/S. masurium/S. mât/S. matabicher/a0a+() matador/S. mataf/S. matage/S. matamore/S. match/S. matcher/a0a+() mate/F.() matefaim/S. matelas matelassée/F.() matelasser/a0a+() matelassière/F.() matelote/F.() mater/a0a+() mâter/a0a+() mâtereau/X. matérialisation/S. matérialisée/F.() matérialiser/a0a+() matérialisme/S. matérialiste/S. matérialité/S. matériau/X. matérielle/F.() matériellement maternage/S. maternelle/F.() maternellement materner/a0a+() materniser/a0a+() maternité/S. mateuse/F.() math/S. mathématicienne/F.() mathématique/S. mathématiquement mathématisation/S. mathématiser/a0a+() matheuse/W.() matière/S. matin/S. matinale/W.() matinalement mâtine/F.() mâtinée/F.() matinée/S. mâtiner/a0a+() matines matineuse/W.() matinière/F.() matir/f0f+() matité/S. matoir/S. matoise/F.() matonne/F.() matos matou/S. matouner/a0a+() matraquage/S. matraque/S. matraquée/F.() matraquer/a0a+() matraqueuse/F.() matras matriarcale/W.() matriarcat/S. matriarche/S. matricaire/S. matrice/S. matricer/a0a+() matricide/S. matricielle/F.() matricule/S. matriculer/a0a+() matrilinéaire/S. matrilocale/W.() matrimoniale/W.() matrimonialement matriochka/S. matroïde/S. matrone/S. matte/S. matthiole/S. maturation/S. mature/S. mâture/S. maturer/a0a+() maturité/S. matutinale/W.() maubèche/S. maudire/yF() maudite/F.() maugréer/a0a+() maurandie/S. maure/S. maurelle/S. mauresque/S. mauricienne/F.() mauritanienne/F.() mauser/S. mausolée/S. maussade/S. maussadement maussaderie/S. mauvaise/F.() mauvaiseté/S. mauve/S. mauvéine/S. mauviette/S. mauvis max maxillaire/S. maxille/S. maxillo-faciale/W.() maxima/S. maximale/W.() maximalisation/S. maximaliser/a0a+() maximalisme/S. maximaliste/S. maxime/S. maximisation/S. maximisée/F.() maximiser/a0a+() maximum/S. maxwell/S. maya/S. maye/S. mayen/S. mayonnaise/S. mazagran/S. mazdéisme/S. mazette mazout/S. mazouter/a0a+() mazurka/S. mbar/||-- me/S. mea-culpa méandre/S. méandrine/S. méat/S. mébibit/S. mébioctet/S. mec/S. mécane/S. mécanicien-dentiste mécanicienne/F.() mécaniciens-dentistes mécanique/S. mécaniquement mécanisation/S. mécanisée/F.() mécaniser/a0a+() mécanisme/S. mécaniste/S. mécano/S. mécanographe/S. mécanographie/S. mécanographique/S. mécanothérapie/S. mécatronicienne/F.() mécatronique/S. meccano/S. mécénat/S. mécène/S. méchage/S. méchamment méchanceté/S. méchante/F.() mèche/S. mécher/c0a+() mécheuse/W.() méchoui/S. mechta/S. mécompte/S. mécompter/a0a+() méconduire méconduite/S. méconium/S. méconnaissable/S. méconnaissance/S. méconnaître/wQ() méconnue/F.() mécontente/F.() mécontentée/F.() mécontentement/S. mécontenter/a0a+() mécoptère/S. mécréance/S. mécréante/F.() mécroire médaille/S. médaillée/F.() médailler/a0a+() médailleuse/F.() médaillier/S. médailliste/S. médaillon/S. mède/S. médecin/S. médecine/S. medecine-ball/S. medersa/S. média/S. médiale/W.() médialogie/S. médialogue/S. médiane/F.() médianoche/S. médiante/S. médiaplanning/S. médiastin/S. médiate/F.() médiathèque/S. médiation/S. médiatique/S. médiatiquement médiatisation/S. médiatisée/F.() médiatiser/a0a+() médiator/S. médiatrice/F.() médicale/W.() médicalement médicalisante/F.() médicalisation/S. médicalisée/F.() médicaliser/a0a+() médicament/S. médicamenter/a0a+() médicamenteuse/W.() médicastre/S. médication/S. médicinale/W.() médicinier/S. médico-chirurgicale/W.() médico-légale/W.() médico-pédagogique/S. médico-professionnelle/F.() médico-sociale/W.() médiévale/W.() médiévisme/S. médiéviste/S. médina/S. médiocratie/S. médiocre/S. médiocrement médiocrité/S. médique/S. médire/yE() médisance/S. médisante/F.() médiser/a0() méditante/F.() méditation/S. méditative/F.() méditée/F.() méditer/a0a+() méditerranée/F.() méditerranéenne/F.() médium/S. médiumnique/S. médiumnité/S. médius médoc/S. médullaire/S. médulleuse/W.() médusante/F.() méduse/S. médusée/F.() méduser/a0a+() meeting/S. méfaire méfait/S. méfiance/S. méfiante/F.() méfier/a0a+() méforme/S. méga/S. mégabit/S. mégacéros mégacôlon/S. mégacycle/S. mégafaune/S. mégalithe/S. mégalithique/S. mégalithisme/S. mégalo/S. mégalomane/S. mégalomaniaque/S. mégalomanie/S. mégalopole/S. mégaoctet/S. mégaparsec/S. mégaphone/S. mégapixel/S. mégapode/S. mégapole/S. mégaptère/S. mégarde/S. mégathérium/S. mégatonne/S. mégère/S. mégir/f0f+() mégisser/a0a+() mégisserie/S. mégissier/S. mégohmmètre/S. mégot/S. mégoter/a0a+() mehalla/S. méharée/S. méhari/S. méhariste/S. meïji/S. meilleure/F.() méiose/S. méiotique/S. meistre/S. meitnérium/S. méjanage/S. méjuger/a0a+() mél mélamine/S. mélaminé/S. mélaminée/F.() mélampyre/S. mélancolie/S. mélancolique/S. mélancoliquement mélanésienne/F.() mélange/S. mélangeante/F.() mélangée/F.() mélanger/a0a+() mélangeur-doseur/S. mélangeurs-doseurs mélangeuse/F.() mélanine/S. mélanique/S. mélanisme/S. mélanodermie/S. mélanome/S. mélanose/S. mélanostimuline/S. mélasse/S. mélatonine/S. melba melchior/S. méléagrine/S. mêlé-cass mêlée/F.() mêlée/S. méléna/S. mêler/a0a+() mêle-tout mélèze/S. mélia/S. méliacée/S. mélilot/S. méli-mélo mélinite/S. méliorative/F.() mélique/S. mélis-mélos mélisse/S. mélitte/S. melkite/S. mellah/S. mellifère/S. mellification/S. melliflue/F.() mellite/S. mélo/S. mélodie/S. mélodieuse/W.() mélodieusement mélodique/S. mélodiste/S. mélodramatique/S. mélodrame/S. mélomane/S. melon/S. mélongine/S. melonnée/F.() melonnière/S. mélopée/S. mélophage/S. mélusine/S. membranaire/S. membrane/S. membraneuse/W.() membranule/S. membre/S. membrée/F.() membron/S. membrue/F.() membrure/S. même mémé/S. même/S. mêmement mémento/S. mémère/S. mémétique/S. mémo/S. mémoire/S. mémorable/S. mémorandum/S. mémoration/S. mémorial/X. mémorialiste/S. mémorielle/F.() mémorisable/S. mémorisation/S. mémorisée/F.() mémoriser/a0a+() menaçante/F.() menace/S. menacée/F.() menacer/a0a+() ménade/S. ménage/S. ménageable/S. ménagée/F.() ménagement/S. ménager/a0a+() ménagère/F.() ménagerie/S. ménagiste/S. menchevique/S. mendélévium/S. mendélienne/F.() mendélisme/S. mendiante/F.() mendicité/S. mendier/a0a+() mendigote/F.() mendigoter/a0a+() meneau/X. mener/b0a+() ménestrel/S. ménétrier/S. meneuse/F.() menhir/S. menine/F.() méninge/S. méningée/F.() méningiome/S. méningite/S. méningitique/S. méningocoque/S. ménisque/S. mennonite/S. ménologe/S. ménopause/S. ménopausée/S. ménopausique/S. ménorragie/S. menottage/S. menotte/S. menottée/F.() menotter/a0a+() mense/S. mensonge/S. mensongère/F.() mensongèrement menstruation/S. menstruelle/F.() menstrues mensualisation/S. mensualisée/F.() mensualiser/a0a+() mensualité/S. mensuelle/F.() mensuellement mensuration/S. mensurer/a0a+() mentale/W.() mentalement mentalisme/S. mentaliste/S. mentalité/S. menterie/S. menteuse/F.() menthe/S. menthol/S. mentholée/F.() mention/S. mentionner/a0a+() mentir/i5i+() mentisme/S. menton/S. mentonnet/S. mentonnière/F.() mentonnière/S. mentor/S. mentorat/S. menue/F.() menuet/S. menuiser/a0a+() menuiserie/S. menuisière/F.() ménure/S. ményanthe/S. méphistophélique/S. méphitique/S. méphitisme/S. méplat/S. méplate/F.() méprendre/tG() mépris méprisable/S. méprisante/F.() méprise/S. méprisée/F.() mépriser/a0a+() mer/S. mercanti/S. mercantile/S. mercantiliser/a0a+() mercantilisme/S. mercantiliste/S. mercaptan/S. mercaticienne/F.() mercatique/S. mercenaire/S. mercenariat/S. mercerie/S. mercerisage/S. merceriser/a0a+() merchandising/S. merci merci/S. mercière/F.() mercredi/S. mercure/S. mercureux mercuriale/S. mercurielle/F.() mercurochrome/S. merdaille/S. merdaillon/S. merde merde/S. merder/a0() merdeuse/W.() merdier/S. merdique/S. merdouiller/a0() merdoyer/a0() mère/S. mère-grand mères-grand merguez méridienne/F.() méridionale/W.() meringue/S. meringuée/F.() meringuer/a0a+() mérinos merise/S. merisier/S. méristème/S. méritante/F.() mérite/S. méritée/F.() mériter/a0a+() méritocratie/S. méritocratique/S. méritoire/S. merl/S. merlan/S. merle/S. merlette/S. merlin/S. merlon/S. merlu/S. merluche/S. méromorphe/S. méromorphie/S. méromorphiquement méronyme/S. méronymie/S. mérostome/S. mérou/S. mérovingienne/F.() merrain/S. merroutage/S. merveille/S. merveilleuse/W.() merveilleusement mérycisme/S. mesa/S. mésalliance/S. mésallier/a0a+() mésange/S. mésangette/S. mésaventure/S. mescaline/S. mesclun/S. mesdames mesdemoiselles mésencéphale/S. mésenchyme/S. mésentente/S. mésentère/S. mésentérique/S. mésestimation/S. mésestime/S. mésestimée/F.() mésestimer/a0a+() mésintelligence/S. mesmérisme/S. mésoblaste/S. mésocarpe/S. mésocéphale/S. mésocéphalique/S. mésoderme/S. mésolithique/S. méson/S. mésopause/S. mésopotamienne/F.() mésosphère/S. mésothéliale/W.() mésothéliome/S. mésothélium/S. mésothorax mésozoaire/S. mésozoïque/S. mesquine/F.() mesquinement mesquinerie/S. mess message/S. messagère/F.() messagerie/S. messe/S. messeigneurs messeoir/pW() messer/S. messianique/S. messianisme/S. messianité/S. messidor/S. messie/S. messier/S. messieurs messire/S. mestre/S. mesurabilité/S. mesurable/S. mesurablement mesurage/S. mesure/S. mesurée/F.() mesurer/a0a+() mesurette/S. mesureur/S. mésusage/S. mésuser/a0() méta/S. métabole/S. métabolique/S. métabolisation/S. métabolisée/F.() métaboliser/a0a+() métabolisme/S. métabolite/S. métacarpe/S. métacarpienne/F.() métacentre/S. métaconnaissance/S. métadonnée/S. métairie/S. métal/X. métalangage/S. métalangue/S. métaldéhyde/S. métalepse/S. métalinguistique/S. métalléité/S. métallerie/S. métallicité/S. métallière/F.() métallifère/S. métallique/S. métallisation/S. métallisée/F.() métalliser/a0a+() métalliste/S. métallo/S. métallochromie/S. métallogénie/S. métallographe/S. métallographie/S. métallographique/S. métalloïde/S. métalloplastique/S. métalloprotéine/S. métallurgie/S. métallurgique/S. métallurgiste/S. métamathématique/S. métamère/S. métamorphique/S. métamorphiser/a0a+() métamorphisme/S. métamorphosable/S. métamorphose/S. métamorphoser/a0a+() métaphase/S. métaphore/S. métaphorique/S. métaphoriquement métaphorisée/F.() métaphoriser/a0a+() métaphosphorique/S. métaphyse/S. métaphysicienne/F.() métaphysique/S. métaphysiquement métaplasie/S. métaplectique/S. métapsychique/S. métapsychologie/S. métastase/S. métastaser/a0a+() métastatique/S. métatarse/S. métatarsienne/F.() métathèse/S. métayage/S. métayère/F.() métazoaire/S. méteil/S. métempsychose/S. métempsycose/S. métencéphale/S. météo météore/S. météorique/S. météoriser/a0a+() météorisme/S. météorite/S. météoritique/S. météoroïde/S. météorologie/S. météorologique/S. météorologiste/S. météorologue/S. métèque/S. méthacrylique/S. méthadone/S. méthamphétamine/S. méthane/S. méthanier/S. méthanique/S. méthanoïque/S. méthanol/S. méthémoglobine/S. méthionine/S. méthode/S. méthodique/S. méthodiquement méthodisme/S. méthodiste/S. méthodologie/S. méthodologique/S. méthodologiquement méthylamine/S. méthyle/S. méthylène/S. méthylique/S. méticuleuse/W.() méticuleusement méticulosité/S. métier/S. métis métissage/S. métisse/S. métissée/F.() métisser/a0a+() métonymie/S. métonymique/S. métope/S. métrage/S. mètre/Um() métrer/c0a+() métreuse/F.() métricienne/F.() métrique/S. métrisable/S. métrite/S. métro/S. métrologie/S. métrologique/S. métrologiste/S. métrologue/S. métromanie/S. métronome/S. métropole/S. métropolisation/S. métropolitaine/F.() métropolite/S. métrorragie/S. métrosexuelle/F.() mettable/S. metteuse/F.() mettre/vA() meublante/F.() meuble/S. meublé/S. meublée/F.() meubler/a0a+() meuf/S. meuglement/S. meugler/a0() meulage/S. meule/S. meuler/a0a+() meulette/S. meuleuse/S. meulière/F.() meulon/S. meunerie/S. meunière/F.() meurette/S. meurtre/S. meurtrie/F.() meurtrière/F.() meurtrir/f0f+() meurtrissante/F.() meurtrissure/S. meute/S. mévendre/tA() mévente/S. mexicaine/F.() mézail/S. mézigue/S. mezzanine/S. mezzo/S. mezzo-soprano/S. mezzotinto/S. mgr/||-- mi mi/||-- miam miam-miam miaou/S. mi-août miasmatique/S. miasme/S. miaulement/S. miauler/a0() miauleuse/F.() mi-avril mi-bas mica/S. micacée/F.() mi-carême/S. micaschiste/S. micellaire/S. micelle/S. miche/S. micheline/S. mi-chemin micheton/S. michetonner/a0() mi-close/F.() micmac/S. micocoulier/S. mi-côte micro/S. microampèremètre/S. microanalyse/S. microbalance/S. microbe/S. microbicide/S. microbienne/F.() microbiologie/S. microbiologique/S. microbiologiste/S. microbouturage/S. microbus micro-casque microcéphale/S. microcéphalie/S. microchimie/S. microchirurgie/S. microcinéma/S. microcircuit/S. microclimat/S. microcoque/S. microcosme/S. microcosmique/S. micro-cravate microcrédit/S. microcristal/X. microdifférentiel/S. microdissection/S. microdistribution/S. microéconomie/S. microéconomique/S. microélectronique/S. microentreprise/S. microfaune/S. microfibre/S. microfibrée/F.() microfiche/S. microfilm/S. microfilmer/a0a+() microflore/S. microfonction/S. microglobuline/S. microglossaire/S. micrographie/S. micrographique/S. microgrenue/F.() microhistoire/S. micro-informatique/S. micro-instruction/S. micro-irrigation/S. microlangage/S. microlite/S. microlithe/S. microlithique/S. microlitique/S. microlocale/W.() microlocalement microlocalisée/F.() micrologiciel/S. micromanipulation/S. micrométrie/S. micrométrique/S. micron/S. micronésienne/F.() microniser/a0a+() micronutriment/S. micro-onde/S. micro-ondes micro-ordinateur/S. micro-organisme/S. microparticule/S. micropénis microphage/S. microphone/S. microphonique/S. microphotographie/S. microphysique/S. microprocesseur/S. microprogramme/S. micropropagation/S. micropyle/S. microrœntgen/S. micros-casques microscope/S. microscopie/S. microscopique/S. microscopiquement micros-cravates microsillon/S. microsomatie/S. microsome/S. microsomiale/W.() microsonde/S. micros-trottoirs microstructure/S. microtechnologie/S. microtome/S. micro-trottoir microtubule/S. microvillosité/S. microzoaire/S. miction/S. mi-décembre midi/S. midinette/S. midship/S. midshipman/S. mie/S. miel/S. miellée/F.() mielleuse/W.() mielleusement mienne/F.() miette/S. mieux mieux-disante/F.() mieux-être mieux-vivre mièvre/S. mièvrement mièvrerie/S. mi-février mi-fin/S. migmatite/S. mignarde/F.() mignarder/a0a+() mignardise/S. mignonne/F.() mignonnement mignonnet/S. mignonnette/F.() mignonnette/S. mignoter/a0a+() migraine/S. migraineuse/W.() migrante/F.() migration/S. migratoire/S. migratrice/F.() migrer/a0() mi-jambe mi-janvier mijaurée/S. mijoler/a0() mijoter/a0a+() mijoteuse/S. mi-juillet mi-juin mikado/S. mil/S. milan/S. milanaise/F.() mildiou/S. mildiousée/F.() mile/S. miliaire/S. milice/S. milicienne/F.() milieu/X. militaire/S. militairement militante/F.() militantisme/S. militarisation/S. militarisée/F.() militariser/a0a+() militarisme/S. militariste/S. militaro-industrielle/F.() militer/a0() milk-bar/S. milk-shake/S. millage/S. millas millasse/S. mille/S. mille-feuille/S. mille-fleurs millénaire/S. millénarisme/S. millénariste/S. millénium/S. mille-pattes millepertuis millépore/S. milleraies millerandage/S. millerandée/F.() millésimale/W.() millésime/S. millésimée/F.() millésimer/a0a+() millet/S. milliaire/S. milliard/S. milliardaire/S. milliardième/S. milliasse/S. millibar/S. millième/S. millier/S. milligrade/S. millime/S. millimétrée/F.() millimétrique/S. million/S. millionième/S. millionnaire/S. millirœntgen/S. millithermie/S. milord/S. milouin/S. mi-mai mi-mars mime/S. mimer/a0a+() mimétique/S. mimétisme/S. mimi/S. mimique/S. mimodrame/S. mimographe/S. mimolette/S. mimologie/S. mimosa/S. mimosacée/S. mimosée/S. min min/S. min/||-- minable/S. minablement minage/S. minahouet/S. minaret/S. minauder/a0() minauderie/S. minaudière/F.() minbar/S. mince/S. minceur/S. mincir/f0() mine/S. minée/F.() miner/a0a+() minérale/W.() minéralier/S. minéralier-pétrolier/S. minéraliers-pétroliers minéralisable/S. minéralisante/F.() minéralisation/S. minéralisatrice/F.() minéralisée/F.() minéraliser/a0a+() minéralogie/S. minéralogique/S. minéralogiquement minéralogiste/S. minéralurgie/S. minérographie/S. minerval/S. minerve/S. minerviste/S. minestrone/S. minette/F.() mineure/F.() mineuse/S. mini/S. miniature/S. miniaturée/F.() miniaturer/a0a+() miniaturisation/S. miniaturisée/F.() miniaturiser/a0a+() miniaturiste/S. minibus minicar/S. minicassette/S. minichaîne/S. minidisque/S. minière/F.() minigolf/S. minijupe/S. minima/S. minimale/W.() minimalisme/S. minimaliste/S. minimalité/S. minime/S. minimessage/S. minimex minimexée/F.() minimisante/F.() minimisation/S. minimisée/F.() minimiser/a0a+() minimum/S. mini-ordinateur/S. minispace/S. ministère/S. ministérielle/F.() ministrable/S. ministre/S. ministre-président ministre-présidente ministres-présidentes ministres-présidents minitel/S. minium/S. minnesinger/S. minoenne/F.() minois minon/S. minorante/F.() minoration/S. minorative/F.() minorée/F.() minorer/a0a+() minoritaire/S. minorité/S. minot/S. minotaure/S. minoterie/S. minotière/F.() minou/S. mi-novembre minuit/S. minus minuscule/S. minutage/S. minutaire/S. minute/S. minutée/F.() minuter/a0a+() minuterie/S. minuteur/S. minutie/S. minutier/S. minutieuse/W.() minutieusement miocène/S. mioche/S. mi-octobre mi-partie/F.() mir/S. mirabelle/S. mirabellier/S. mirabilis miracle/S. miraculée/F.() miraculeuse/W.() miraculeusement mirador/S. mirage/S. miraillée/F.() mirbane/S. mire/S. mirée/F.() mire-œufs mirepoix mirer/a0a+() mirettes mireuse/F.() mirifique/S. mirliflor/S. mirliflore/S. mirliton/S. mirmidon/S. mirmillon/S. miro/S. mirobolante/F.() miroir/S. miroitante/F.() miroitée/F.() miroitement/S. miroiter/a0() miroiterie/S. miroitière/F.() mironton/S. miroton/S. misaine/S. misandre/S. misandrie/S. misanthrope/S. misanthropie/S. misanthropique/S. miscellanées miscibilité/S. miscible/S. mise/F.() mise/S. misée/F.() mi-septembre miser/a0a+() misérabilisme/S. misérabiliste/S. misérable/S. misérablement misère/S. misérer/c0() miserere miséréré/S. miséreuse/W.() miséricorde/S. miséricordieuse/W.() miséricordieusement misogyne/S. misogynie/S. misologie/S. misonéisme/S. misonéiste/S. mispickel/S. miss missel/S. missile/S. missilière/F.() mission/S. missionnaire/S. missionner/a0a+() missive/S. mistelle/S. mistigri/S. mistonne/F.() mistoufle/S. mistral/S. mitage/S. mitaine/S. mitan/S. mitard/S. mitarder mite/S. mitée/F.() mi-temps miter/a0a+() miteuse/W.() mithraïsme/S. mithriacisme/S. mithriaque/S. mithridatisation/S. mithridatiser/a0a+() mithridatisme/S. mitigation/S. mitigée/F.() mitiger/a0a+() mitigeur/S. mitochondriale/W.() mitochondrie/S. miton/S. mitonner/a0a+() mitose/S. mitoyenne/F.() mitoyenneté/S. mitraillade/S. mitraillage/S. mitraille/S. mitraillée/F.() mitrailler/a0a+() mitraillette/S. mitrailleuse/F.() mitrale/W.() mitre/S. mitrée/F.() mitron/S. mi-voix mixage/S. mixer/a0a+() mixeuse/F.() mixité/S. mixte/S. mixtion/S. mixtionner/a0a+() mixture/S. ml mmHg/||-- mnémonique/S. mnémotechnie/S. mnémotechnique/S. moabite/S. mob/S. mobile/S. mobilier/S. mobilière/F.() mobilisable/S. mobilisante/F.() mobilisation/S. mobilisatrice/F.() mobilisée/F.() mobiliser/a0a+() mobilité/S. mobilophone/S. mobilophonie/S. mobinaute/S. moblot/S. mobutisme/S. mobylette/S. mocassin/S. mocharde/F.() moche/S. mocheté/S. moco/S. modale/W.() modalisation/S. modalité/S. mode/S. modelage/S. modelante/F.() modèle/S. modelée/F.() modeler/b0a+() modeleuse/F.() modélisation/S. modélisatrice/F.() modélisée/F.() modéliser/a0a+() modélisme/S. modéliste/S. modem/S. modénature/S. modérantisme/S. modération/S. moderato moderato/S. modératrice/F.() modérée/F.() modérément modérer/c0a+() moderne/S. modernisation/S. modernisée/F.() moderniser/a0a+() modernisme/S. moderniste/S. modernité/S. modeste/S. modestement modestie/S. modicité/S. modifiable/S. modifiante/F.() modification/S. modificative/F.() modificatrice/F.() modifiée/F.() modifier/a0a+() modillon/S. modique/S. modiquement modiste/S. modo modulable/S. modulaire/S. modulante/F.() modularisation/S. modularité/S. modulation/S. modulatrice/F.() module/S. modulée/F.() moduler/a0a+() modulo modulor/S. modus moelle/S. moelleuse/W.() moelleusement moellon/S. moere/S. mœurs mofette/S. mofler/a0a+() moghole/F.() mohair/S. moi moignon/S. moi-même moindre/S. moindrement moine/S. moineau/X. moinerie/S. moinillon/S. moins moins-perçu/S. moins-value/S. moirage/S. moire/S. moirée/F.() moirer/a0a+() moirure/S. mois moise/S. moïse/S. moiser/a0a+() moisie/F.() moisir/f0f+() moisissure/S. moissine/S. moisson/S. moissonnage/S. moissonnée/F.() moissonner/a0a+() moissonneuse/F.() moissonneuse-batteuse moissonneuse-lieuse moissonneuses-batteuses moissonneuses-lieuses moite/S. moiter/a0() moiteur/S. moitié/S. moitié-moitié moitir/f0f+() moka/S. mol/S. mol/U.||-- molaire/S. molasse/S. moldave/S. môle/S. mole/Um() moléculaire/S. molécule/S. molène/S. moleskine/S. molestée/F.() molester/a0a+() moletage/S. moleter/d0a+() molette/S. molière/S. moliéresque/S. moliniste/S. molinosiste/S. mollah/S. mollard/S. mollarder/a0a+() mollasse/S. mollasserie/S. mollassonne/F.() molle/S. mollement mollesse/S. mollet/S. molletière/S. molleton/S. molletonnée/F.() molletonner/a0a+() molletonneuse/W.() mollette/F.() mollir/f0f+() mollisol/S. mollo molluscum/S. mollusque/S. moloch/S. molosse/S. molossoïde/S. moly/S. molybdate/S. molybdène/S. molybdique/S. molysmologie/S. môme/S. moment/S. momentanée/F.() momentanément momerie/S. momie/S. momification/S. momifiée/F.() momifier/a0a+() momordique/S. mon monacale/W.() monachisme/S. monade/S. monadelphe/S. monadique/S. monadisme/S. monarchie/S. monarchique/S. monarchisme/S. monarchiste/S. monarque/S. monastère/S. monastique/S. monazite/S. monceau/X. mondaine/F.() mondainement mondanité/S. monde/S. monder/a0a+() mondiale/W.() mondialement mondialisation/S. mondialisée/F.() mondialiser/a0a+() mondialisme/S. mondialiste/S. mondovision/S. monégasque/S. monel/S. monème/S. monétaire/S. monétarisme/S. monétariste/S. monétique/S. monétisée/F.() monétiser/a0a+() mongole/F.() mongolienne/F.() mongolique/S. mongolisme/S. mongoloïde/S. moniale/W.() monisme/S. moniste/S. monition/S. monitoire/S. monitor/S. monitorage/S. monitorat/S. monitoring/S. monitrice/F.() monnayable/S. monnayage/S. monnayée/F.() monnayer/a0a+() monnayeuse/F.() mono/S. monoacide/S. monoamine/S. monoatomique/S. monobloc/S. monocamérale/W.() monocaméralisme/S. monocamérisme/S. monocaténaire/S. monocellulaire/S. monochromatique/S. monochrome/S. monochromie/S. monocle/S. monoclinale/W.() monoclinique/S. monocomposante/F.() monocoque/S. monocorde/S. monocorps monocotylédone/S. monocristalline/F.() monoculaire/S. monoculture/S. monocycle/S. monocyclique/S. monocyte/S. monodie/S. monodique/S. monodirectionnelle/F.() monodromie/S. monodromique/S. monœcie/S. monogame/S. monogamie/S. monogamique/S. monogène/S. monogénique/S. monogénisme/S. monogramme/S. monographie/S. monographique/S. monoïde/S. monoïdéisme/S. monoïque/S. monokini/S. monolingue/S. monolinguisme/S. monolithe/S. monolithique/S. monolithisme/S. monologue/S. monologuer/a0() monomaniaque/S. monomanie/S. monôme/S. monomère/S. monométallisme/S. monométalliste/S. monomode/S. monomorphisme/S. monomoteur/S. monomotrice/F.() mononucléaire/S. mononucléose/S. monoparentale/W.() monoparentalité/S. monopartisme/S. monophasée/F.() monophonie/S. monophonique/S. monophtongue/S. monophylétique/S. monophysisme/S. monophysite/S. monoplace/S. monoplan/S. monopole/S. monopôle/S. monopolisante/F.() monopolisation/S. monopolisatrice/F.() monopolisée/F.() monopoliser/a0a+() monopoliste/S. monopolistique/S. monoprix monoprocesseur/S. monopsone/S. monoptère/S. monorail/S. monorime/S. monosaccharide/S. monosépale/S. monosilane/S. monoski/S. monosodique/S. monospace/S. monosperme/S. monostable/S. monostyle/S. monosulfite/S. monosyllabe/S. monosyllabique/S. monosyllabisme/S. monotâche/S. monoterpène/S. monothéique/S. monothéisme/S. monothéiste/S. monotone/S. monotonement monotonicité/S. monotonie/S. monotonique/S. monotrace/S. monotrème/S. monotype/S. monovalente/F.() monoxène/S. monoxyde/S. monoxyle/S. monozygote/S. monseigneur monsieur monsignor monsignore/S. monsignori monstrance/S. monstre/S. monstrueuse/W.() monstrueusement monstruosité/S. mont/S. montable/S. montage/S. montagnarde/F.() montagne/S. montagnette/S. montagneuse/W.() montaison/S. montanisme/S. montaniste/S. montante/F.() mont-blanc mont-de-piété monte-charge montée/F.() monte-fût monte-glace monte-pente monte-plats monter/a0a+() monte-sacs monteuse/F.() montgolfière/S. monticole/S. monticule/S. mont-joie montmorency/S. montoir/S. montoise/F.() montrable/S. montre/S. montréalaise/F.() montre-bracelet montrée/F.() montrer/a0a+() montres-bracelets montreuse/F.() monts-blancs monts-de-piété monts-joie montueuse/W.() monture/S. monument/S. monumentale/W.() monumentalité/S. moquer/a0a+() moquerie/S. moquette/S. moquetter/a0a+() moquettiste/S. moqueuse/F.() moracée/S. moraillon/S. moraine/S. morainique/S. morale/W.() moralement moralisante/F.() moralisation/S. moralisatrice/F.() moralisée/F.() moraliser/a0a+() moralisme/S. moraliste/S. moralité/S. morasse/S. moratoire/S. moratorium/S. morbide/S. morbidement morbidité/S. morbilleuse/W.() morbleu morbus morceau/X. morcelable/S. morcelée/F.() morceler/d0a+() morcellement/S. mordache/S. mordacité/S. mordançage/S. mordancer/a0a+() mordante/F.() mordicante/F.() mordicus mordillement/S. mordiller/a0a+() mordorée/F.() mordorer/a0a+() mordorure/S. mordre/tA() mordue/F.() more/S. moreau/X. morelle/S. moresque/S. morfale/W.() morfaler/a0() morfil/S. morfiler/a0a+() morfler/a0a+() morfondre/tE() morfondue/F.() morganatique/S. morganatiquement morgeline/S. morgue/S. morguenne morguienne moribonde/F.() moricaude/F.() morigénée/F.() morigéner/c0a+() morille/S. morillon/S. morio/S. morion/S. mormone/F.() mormonisme/S. morne/S. mornée/F.() mornement mornifle/S. mornifler/a0a+() morose/S. morosité/S. morphème/S. morphine/S. morphinique/S. morphinisme/S. morphinomane/S. morphinomanie/S. morphisme/S. morphogène/S. morphogenèse/S. morphologie/S. morphologique/S. morphologiquement morphopsychologie/S. morpion/S. mors morse/S. morsure/S. mort/S. mortadelle/S. mortaisage/S. mortaise/S. mortaiser/a0a+() mortaiseuse/F.() mortalité/S. mort-aux-rats morte/F.() morte-eau mortelle/F.() mortellement morte-saison mortes-eaux mortes-saisons mortier/S. mortifère/S. mortifiante/F.() mortification/S. mortifiée/F.() mortifier/a0a+() mortinatalité/S. mort-née/F.() mortuaire/S. morue/S. morula/S. morutière/F.() morve/S. morveuse/W.() mosaïque/S. mosaïquée/F.() mosaïsme/S. mosaïste/S. mosane/F.() moscoutaire/S. moscovite/S. mosellane/F.() mosette/S. mosquée/S. mot/S. motamoter/a0() motarde/F.() mot-clé mot-clef motel/S. motet/S. motif/S. motilité/S. motion/S. motionner/a0() motivante/F.() motivation/S. motivée/F.() motiver/a0a+() moto/S. motociste/S. motocross motoculteur/S. motoculture/S. motocycle/S. motocyclette/S. motocyclisme/S. motocycliste/S. motogodille/S. motonautique/S. motonautisme/S. motoneige/S. motoneigiste/S. motopompe/S. motopropulseur/S. motorisation/S. motorisée/F.() motoriser/a0a+() motoriste/S. motorship/S. mototracteur/S. motrice/F.() motricité/S. mots-clefs mots-clés mots-croisiste/S. mots-valises motte/S. motter/a0a+() motteux motus mot-valise mou/S. mouais mouchage/S. moucharabieh/S. mouchardage/S. moucharde/F.() moucharder/a0a+() mouche/S. moucher/a0a+() moucherolle/S. moucheron/S. moucheronner/a0() mouchetée/F.() moucheter/d0a+() mouchetis moucheture/S. moucheuse/F.() mouchoir/S. mouchure/S. moudjahid moudjahidin moudre/xP() moue/S. mouette/S. mouetter/a0() moufeter moufette/S. mouffette/S. mouflage/S. moufle/S. mouflée/F.() moufler/a0a+() mouflette/F.() mouflon/S. moufter/f+() mouillage/S. mouillante/F.() mouillement/S. mouiller/a0a+() mouillère/S. mouillette/S. mouilleur/S. mouilloir/S. mouillure/S. mouise/S. moujik/S. moujingue/S. moukère/S. moulage/S. moulante/F.() moule/S. moulée/F.() mouler/a0a+() mouleuse/F.() moulière/S. moulin/S. moulinage/S. mouliner/a0a+() moulinet/S. moulinette/S. moulineuse/F.() moulinière/F.() moult moulue/F.() moulure/S. moulurer/a0a+() moumoute/S. mourante/F.() mouride/S. mouridisme/S. mourir/iP() mouroir/S. mouron/S. mouronner/a0a+() mourre/S. mouscaille/S. mousmé/S. mousquet/S. mousquetade/S. mousquetaire/S. mousqueterie/S. mousqueton/S. moussaillon/S. moussaka/S. moussante/F.() mousse/S. mousseline/S. mousser/a0() mousseron/S. mousseuse/W.() moussoir/S. mousson/S. moussue/F.() moustache/S. moustachue/F.() moustérienne/F.() moustiquaire/S. moustique/S. moût/S. moutard/S. moutarde/S. moutardière/F.() moutier/S. mouton/S. moutonnante/F.() moutonnée/F.() moutonnement/S. moutonner/a0() moutonnerie/S. moutonneuse/W.() moutonnière/F.() mouture/S. mouvance/S. mouvante/F.() mouvement/S. mouvementée/F.() mouvementer/a0a+() mouver/a0a+() mouvoir/pHpI() moviola/S. moxa/S. moxibustion/S. moyée/F.() moyen-âge moyenâgeuse/W.() moyen-courrier/S. moyennabilité/S. moyennable/S. moyenne/F.() moyennement moyenner/a0a+() moyennisation/S. moyette/S. moyeu/X. mozabite/S. mozambicaine/F.() mozarabe/S. mozette/S. mozzarella/S. ms mth/||-- mu muance/S. mucher/a0a+() mucilage/S. mucilagineuse/W.() mucor/S. mucosité/S. mucoviscidose/S. mucron/S. mucus mudéjare/F.() mudra/S. mue/F.() mue/S. muée/F.() muer/a0a+() muesli/S. muette/F.() muezzin/S. muffin/S. mufle/S. muflerie/S. muflier/S. mufti/S. muge/S. mugir/f0f+() mugissante/F.() mugissement/S. muguet/S. mugueter/d0a+() muid/S. mularde/F.() mulassière/F.() mulâtresse/F.() mule/S. mule-jenny/S. mulet/S. muleta/S. muletière/F.() mulette/S. mulon/S. mulot/S. muloter/a0() mulsion/S. multibras multicellulaire/S. multicolore/S. multiconfessionnelle/F.() multicritère/S. multiculturalisme/S. multiculturaliste/S. multiculturelle/F.() multidiffusion/S. multidimensionnelle/F.() multidirectionnalité/S. multidirectionnelle/F.() multidisciplinaire/S. multifactorielle/F.() multifilaire/S. multiflore/S. multifonction/S. multifonctionnalité/S. multifonctionnelle/F.() multiforme/S. multigénique/S. multigraduée/F.() multigraphe/S. multihomogène/S. multijoueur/S. multilatérale/W.() multilatéralisme/S. multilatération/S. multilinéaire/S. multilingue/S. multilinguisme/S. multimédia/S. multimètre/S. multimilliardaire/S. multimillionnaire/S. multimodale/W.() multimode/S. multinationale/W.() multinationalisation/S. multipare/S. multipartisme/S. multiplate-forme/S. multiple/S. multiplex multiplexage/S. multiplexe/S. multiplexer/a0a+() multiplexeur/S. multipliable/S. multiplicande/S. multiplicateur/S. multiplication/S. multiplicative/F.() multiplicativement multiplicativité/S. multiplicatrice/F.() multiplicité/S. multipliée/F.() multiplier/a0a+() multipolaire/S. multipôle/S. multiprise/S. multiprocesseur/S. multiprogrammation/S. multipropriété/S. multiraciale/W.() multirécidiviste/S. multirisque/S. multisalle/S. multiséculaire/S. multisommabilité/S. multisommable/S. multistandard/S. multisupport/S. multitâche/S. multitraitement/S. multitube/S. multitubulaire/S. multitude/S. multivalente/F.() multivaluée/F.() multivariée/F.() multivibrateur/S. multivoie/S. multivoque/S. municipale/W.() municipalisation/S. municipalisée/F.() municipaliser/a0a+() municipalité/S. municipe/S. munie/F.() munificence/S. munificente/F.() munir/f0f+() munition/S. munitionnaire/S. munitionner/a0a+() munster/S. muon/S. muqueuse/W.() mur/S. murage/S. muraille/S. murailler/a0a+() murale/W.() mûre/F.() mûre/S. murée/F.() mûrement murène/S. murer/a0a+() muret/S. muretin/S. murette/S. murex murge/S. murger/a0a+() muriate/S. muriatique/S. mûrie/F.() mûrier/S. murine/F.() mûrir/f0f+() mûrissage/S. murissante/F.() mûrissante/F.() mûrissement/S. mûrisserie/S. murmel/S. murmurante/F.() murmure/S. murmurée/F.() murmurer/a0a+() mûron/S. murrhine/F.() musacée/S. musagète/S. musaraigne/S. musarde/F.() musarder/a0() musardise/S. musc/S. muscade/S. muscadet/S. muscadier/S. muscadin/S. muscardine/F.() muscari/S. muscarine/S. muscat/S. muscinale/W.() muscinée/S. muscle/S. musclée/F.() muscler/a0a+() muscovite/S. musculaire/S. musculairement musculation/S. musculature/S. musculeuse/W.() musculo-squelettique/S. musculotrope/S. muse/S. muséale/W.() museau/X. musée/S. muselée/F.() museler/d0a+() muselet/S. muselière/S. musellement/S. muséographe/S. muséographie/S. muséologie/S. muséologique/S. muséologue/S. muser/a0a+() muserolle/S. musette/S. muséum/S. musicale/W.() musicalement musicalité/S. music-hall/S. musicienne/F.() musicographe/S. musicographie/S. musicologie/S. musicologique/S. musicologue/S. musicothérapie/S. musique/S. musiquer/a0a+() musiquette/S. musoir/S. musquée/F.() musquer/a0a+() musse/S. musser/a0a+() mussitation/S. mussive/F.() must/S. mustang/S. mustélidé/S. musulmane/F.() mutabilité/S. mutable/S. mutage/S. mutagène/S. mutante/F.() mutateur/S. mutation/S. mutationnisme/S. mutationniste/S. mutée/F.() muter/a0a+() mutilante/F.() mutilation/S. mutilatrice/F.() mutilée/F.() mutiler/a0a+() mutine/F.() mutinée/F.() mutiner/a0a+() mutinerie/S. mutique/S. mutisme/S. mutité/S. mutualisation/S. mutualisée/F.() mutualiser/a0a+() mutualisme/S. mutualiste/S. mutualité/S. mutuelle/F.() mutuellement mutule/S. myalgie/S. myasthénie/S. mycélienne/F.() mycélium/S. mycénienne/F.() mycète/S. mycobactérie/S. mycoderme/S. mycodermique/S. mycologie/S. mycologique/S. mycologue/S. mycoplasme/S. mycorhization/S. mycorhize/S. mycorhizienne/F.() mycose/S. mycosique/S. mydriase/S. mydriatique/S. mye/S. myéline/S. myélite/S. myéloblaste/S. myélocyte/S. myélogramme/S. myélographie/S. myélome/S. mygale/S. myiase/S. myocarde/S. myocardiopathie/S. myocardite/S. myofibrille/S. myoglobine/S. myographe/S. myologie/S. myome/S. myopathie/S. myope/S. myopie/S. myopotame/S. myosis myosite/S. myosotis myotique/S. myriade/S. myriamètre/S. myriapode/S. myriophylle/S. myrmécophile/S. myrmidon/S. myrobolan/S. myrosine/S. myroxyle/S. myroxylon/S. myrrhe/S. myrtacée/S. myrte/S. myrtiforme/S. myrtille/S. mystagogie/S. mystagogue/S. myste/S. mystère/S. mystérieuse/W.() mystérieusement mysticisme/S. mysticité/S. mystifiable/S. mystifiante/F.() mystification/S. mystificatrice/F.() mystifiée/F.() mystifier/a0a+() mystique/S. mystiquement mythe/S. mythifiée/F.() mythifier/a0a+() mythique/S. mythographe/S. mythologie/S. mythologique/S. mythologue/S. mythomane/S. mythomaniaque/S. mythomanie/S. mytilicultrice/F.() mytiliculture/S. mytilotoxine/S. myxine/S. myxœdémateuse/W.() myxœdème/S. myxomatose/S. n na nabab/S. nabote/F.() nacarat/S. nacelle/S. nacre/S. nacrée/F.() nacrer/a0a+() nadir/S. nævocarcinome/S. nævus nafé/S. nagaïka/S. nage/S. nagée/S. nageoire/S. nager/a0a+() nageuse/F.() naguère nahaïka/S. naïade/S. naine/F.() naissain/S. naissance/S. naissante/F.() naisseuse/F.() naître/wR() naïve/F.() naïvement naïveté/S. naja/S. namibienne/F.() namuroise/F.() nana/S. nanan/S. nanar/S. nancéienne/F.() nandou/S. nanifier/a0a+() nanisme/S. nankin/S. nanocomposant/S. nanoélectronique/S. nanomachine/S. nanoparticule/S. nanophysique/S. nanoscience/S. nanotechnologie/S. nanotechnologique/S. nanotube/S. nansouk/S. nantie/F.() nantir/f0f+() nantissable/S. nantissement/S. nanzouk/S. naos napalm/S. napée/S. napel/S. naphtalène/S. naphtaline/S. naphte/S. naphtol/S. napoléon/S. napoléonienne/F.() napolitaine/F.() nappage/S. nappe/S. napper/a0a+() napperon/S. narcéine/S. narcisse/S. narcissique/S. narcissiquement narcissisme/S. narcoanalyse/S. narcodollar/S. narcolepsie/S. narcoleptique/S. narcose/S. narcothérapie/S. narcotine/S. narcotique/S. narcotrafic/S. narcotrafiquante/F.() nard/S. nargue/S. narguée/F.() narguer/a0a+() narguilé/S. narine/S. narquoise/F.() narquoisement narration/S. narrative/F.() narratrice/F.() narrée/F.() narrer/a0a+() narthex narval/S. nasale/W.() nasalisation/S. nasaliser/a0a+() nasalité/S. nasarde/F.() nase/S. naseau/X. nasillarde/F.() nasillement/S. nasiller/a0a+() nasilleuse/F.() nasique/S. nasitort/S. nasonnement/S. nasse/S. nassérisme/S. nassériste/S. natale/F.() nataliste/S. natalité/S. natation/S. natatoire/S. natchaver/a0() natice/S. nation/S. nationale/W.() nationalement nationalisation/S. nationalisée/F.() nationaliser/a0a+() nationalisme/S. nationaliste/S. nationalité/S. national-socialisme/S. national-socialiste nationaux-socialistes native/F.() nativement nativisme/S. nativiste/S. nativité/S. natoufien/S. natron/S. natrum/S. nattage/S. natte/S. nattée/F.() natter/a0a+() nattière/F.() naturalisation/S. naturalisée/F.() naturaliser/a0a+() naturalisme/S. naturaliste/S. naturalité/S. nature/S. naturelle/F.() naturellement naturisme/S. naturiste/S. naturopathe/S. naturopathie/S. naucore/S. naufrage/S. naufragée/F.() naufrager/a0() naufrageuse/F.() naumachie/S. naupathie/S. nauplius nauséabonde/F.() nausée/S. nauséeuse/W.() nautile/S. nautique/S. nautisme/S. nautonière/F.() navaja/S. navale/F.() navaler navalisation/S. navarin/S. navarque/S. navel/S. navet/S. navette/S. navetteuse/F.() navicert/S. naviculaire/S. navicule/S. navigabilité/S. navigable/S. navigante/F.() navigation/S. navigatrice/F.() naviguer/a0() naviplane/S. navire/S. navire-école navires-écoles navisphère/S. navrante/F.() navrée/F.() navrement/S. navrer/a0a+() nazaréenne/F.() nazie/F.() nazillonne/F.() nazisme/S. ne néandertalien/S. néandertalienne/F.() néanmoins néant/S. néantisation/S. néantiser/a0a+() nebka/S. nébulaire/S. nébuleuse/W.() nébulisation/S. nébuliseur/S. nébulosité/S. nec nécessaire/S. nécessairement nécessitante/F.() nécessiter/a0a+() nécessiteuse/W.() neck/S. nec-plus-ultra nécrobie/S. nécrologe/S. nécrologie/S. nécrologique/S. nécrologue/S. nécromancie/S. nécromancienne/F.() nécromante/F.() nécrophage/S. nécrophagie/S. nécrophile/S. nécrophilie/S. nécrophilique/S. nécrophore/S. nécropole/S. nécropsie/S. nécrose/S. nécrosée/F.() nécroser/a0a+() nécrotique/S. nectaire/S. nectar/S. nectarine/S. nectarivore/S. necton/S. née/F.() néerlandaise/F.() néerlandophone/S. nef/S. néfaste/S. nèfle/S. néflier/S. négation/S. négationnisme/S. négationniste/S. négative/F.() négativement négativisme/S. négativiste/S. négativité/S. négaton/S. négatoscope/S. négatrice/F.() négligeable/S. négligée/F.() négligemment négligence/S. négligente/F.() négliger/a0a+() négoce/S. négociabilité/S. négociable/S. négociante/F.() négociation/S. négociatrice/F.() négociée/F.() négocier/a0a+() négondo/S. nègre/S. négresse/S. négrière/F.() négrifier/a0a+() négrille/S. négrillonne/F.() négritude/S. négro/S. négro-africaine/F.() négroïde/S. negro-spiritual/S. néguentropie/S. négus neige/S. neigeoter/a9() neiger/a9() neigeuse/W.() nélombo/S. némale/S. némalion/S. nématoblaste/S. nématocyste/S. nématode/S. nématomorphe/S. néné/S. nénette/S. nénies nenni nénuphar/S. néo néoblaste/S. néo-calédonienne/F.() néocapitalisation/S. néocapitalisme/S. néocapitaliste/S. néoceltique/S. néoclassicisme/S. néoclassique/S. néocolonialisme/S. néocolonialiste/S. néocomienne/F.() néocommunisme/S. néocommuniste/S. néoconservatisme/S. néoconservatrice/F.() néocriticisme/S. néocriticiste/S. néodarwinisme/S. néodyme/S. néofascisme/S. néofasciste/S. néoformation/S. néoformée/F.() néogène/S. néogothique/S. néogrecque/F.() néo-hébridaise/F.() néokantisme/S. néolibérale/W.() néolibéralisme/S. néolithique/S. néologie/S. néologique/S. néologisme/S. néoménie/S. néomycine/S. néon/S. néonatale/F.() néonatalogie/S. néonatologie/S. néonazie/F.() néonazisme/S. néophyte/S. néoplasique/S. néoplasme/S. néoplatonicienne/F.() néoplatonisme/S. néopositivisme/S. néopositiviste/S. néoprène/S. néoréalisme/S. néoréaliste/S. néoromane/F.() néoténie/S. néotestamentaire/S. néothomisme/S. néottie/S. néovasculaire/S. néovascularisation/S. néo-zélandaise/F.() néozoïque/S. népalaise/F.() népenthès néper/S. néperienne/F.() népérienne/F.() népète/S. néphéline/S. néphélinique/S. néphélion/S. néphrectomie/S. néphrétique/S. néphridie/S. néphrite/S. néphrographie/S. néphrologie/S. néphrologue/S. néphron/S. néphropathie/S. néphropathologie/S. néphrose/S. népotisme/S. neptunium/S. nerd/S. néréide/S. nerf/S. néritique/S. néroli/S. néronienne/F.() nerprun/S. nervation/S. nerveuse/W.() nerveusement nervi/S. nervin/S. nervosité/S. nervure/S. nervurée/F.() nervurer/a0a+() nestorianisme/S. nestorienne/F.() netcam/S. netiquette nétiquette nette/F.() nettement netteté/S. nettoiement/S. nettoyage/S. nettoyante/F.() nettoyée/F.() nettoyer/a0a+() nettoyeuse/F.() neumatique/S. neume/S. neuneu/S. neurale/W.() neurasthénie/S. neurasthénique/S. neuroanatomie/S. neuroanatomiste/S. neurobiochimie/S. neurobiochimique/S. neurobiochimiste/S. neurobiologie/S. neurobiologiste/S. neuroblaste/S. neurochimie/S. neurochimique/S. neurochimiste/S. neurochirurgicale/W.() neurochirurgie/S. neurochirurgienne/F.() neurodégénérative/F.() neurodépresseur/S. neuroendocrinienne/F.() neuroendocrinologie/S. neurofibrille/S. neurofibromatose/S. neurohistologie/S. neurohypophyse/S. neuroleptique/S. neurolinguistique/S. neurologie/S. neurologique/S. neurologiste/S. neurologue/S. neuromédiateur/S. neuromédiation/S. neuromotrice/F.() neuromusculaire/S. neuronale/W.() neurone/S. neuronique/S. neuropaludisme/S. neuropathie/S. neuropathologie/S. neuropathologique/S. neuropathologiste/S. neuropeptide/S. neuropharmacologie/S. neurophysiologie/S. neuroplasticité/S. neuroplégique/S. neuropsychiatre/S. neuropsychiatrie/S. neuropsychologie/S. neuropsychologique/S. neuropsychologue/S. neuroscience/S. neurosensorielle/F.() neurotomie/S. neurotonie/S. neurotonique/S. neurotoxine/S. neurotoxique/S. neurotransmetteur/S. neurotransmission/S. neurotrope/S. neurovégétative/F.() neurula/S. neutralisante/F.() neutralisation/S. neutralisée/F.() neutraliser/a0a+() neutralisme/S. neutraliste/S. neutralité/S. neutre/S. neutrino/S. neutrographie/S. neutron/S. neutronique/S. neutronographie/S. neutrophile/S. neuvaine/S. neuve/F.() neuvième/S. neuvièmement névé/S. neveu/X. névralgie/S. névralgique/S. névraxe/S. névrilème/S. névrite/S. névritique/S. névrodermite/S. névroglie/S. névropathe/S. névropathie/S. névroptère/S. névrose/S. névrosée/F.() névrotique/S. new-look news newton/Um() newtonienne/F.() new-yorkaise/F.() nexus nez ni niable/S. niaise/F.() niaisement niaiser/a0() niaiserie/S. niaouli/S. niaque/S. nib nicaraguayenne/F.() niche/S. nichée/F.() nicher/a0a+() nichet/S. nicheuse/F.() nichoir/S. nichon/S. nichrome/S. nickel/S. nickelage/S. nickelée/F.() nickeler/d0a+() nickélifère/S. nicnac/S. nicodème/S. niçoise/F.() nicol/S. nicolaïsme/S. nicotine/S. nicotinique/S. nicotiniser/a0a+() nicotinisme/S. nictation/S. nictitante/F.() nictitation/S. nid/S. nidation/S. nid-d'abeilles nid-de-poule nidification/S. nidifier/a0() nids-d'abeilles nids-de-poule nièce/S. niée/F.() niellage/S. nielle/S. nieller/a0a+() nielleur/S. niellure/S. nier/a0a+() nietzschéenne/F.() nietzschéisme/S. nife/S. nigaude/F.() nigauderie/S. nigelle/S. nigériane/F.() nigérianiser/a0a+() nigérienne/F.() night-club/S. nihilisme/S. nihiliste/S. nihilo nilgaut/S. nille/S. nilotique/S. nilpotence/S. nilpotente/F.() nilvariété/S. nimbe/S. nimbée/F.() nimber/a0a+() nimbostratus nimbus nîmoise/F.() n'importe ninas ninja/S. ninjato/S. niobium/S. niôle/S. nippe/S. nipper/a0a+() nippone/F.() niqab/S. nique/S. niquedouille/S. niquer/a0a+() niqueuse/F.() nirvana/S. nitescence/S. nitratation/S. nitrate/S. nitratée/F.() nitrater/a0a+() nitration/S. nitre/S. nitrée/F.() nitrer/a0a+() nitreuse/W.() nitrière/S. nitrification/S. nitrifier/a0a+() nitrile/S. nitrique/S. nitrite/S. nitrobenzène/S. nitrobenzine/S. nitrocellulose/S. nitroglycérine/S. nitrophile/S. nitrosation/S. nitrotoluène/S. nitruration/S. nitrure/S. nitrurer/a0a+() nivale/W.() nivaquiner/a0() nivéale/W.() niveau/X. nivelage/S. nivelée/F.() niveler/d0a+() nivelette/S. niveleuse/F.() nivellement/S. nivéole/S. nivernaise/F.() nivo-glaciaire/S. nivologie/S. nivologue/S. nivo-pluviale/W.() nivôse/S. nivosité/S. nixe/S. nizeré/S. no nô nobélium/S. nobiliaire/S. nobilité/S. noblaillon/S. noble/S. noblement noblesse/S. nobliau/X. nobscuriter/a0() noce/S. nocer/a0() noceuse/F.() nocher/S. nociception/S. nociceptive/F.() nocive/F.() nocivité/S. noctambule/S. noctambulisme/S. noctiluque/S. noctuelle/S. noctule/S. nocturne/S. nocuité/S. nodale/W.() nodosité/S. nodulaire/S. nodule/S. noduleuse/W.() noël/S. noethérienne/F.() noétique/S. nœud/S. noirâtre/S. noiraude/F.() noirceur/S. noircie/F.() noircir/f0f+() noircissante/F.() noircissement/S. noircisseur/S. noircissure/S. noire/F.() noise/S. noiseraie/S. noisetier/S. noisette/S. noix noli-me-tangere nolis noliser/a0a+() nolissement/S. nom/S. nomade/S. nomadiser/a0() nomadisme/S. nombrable/S. nombre/S. nombrée/F.() nombrer/a0a+() nombreuse/W.() nombril/S. nombrilisme/S. nombriliste/S. nome/S. nomenclatrice/F.() nomenclature/S. nominale/W.() nominalement nominalisation/S. nominaliser/a0a+() nominalisme/S. nominaliste/S. nominante/F.() nomination/S. nominative/F.() nominativement nominée/F.() nominer/a0a+() nominette/S. nommage/S. nommée/F.() nommément nommer/a0a+() nomogramme/S. nomographie/S. nomothétique/S. non non non-acceptation/S. non-activité/S. nonagénaire/S. non-agression/S. nonaire/S. non-alignée/F.() non-alignement/S. non-animé/S. nonantaine/S. nonante nonante-cinq nonante-deux nonante-et-un nonante-huit nonante-neuf nonante-quatre nonante-sept nonante-six nonante-trois nonantième/S. non-appartenance/S. non-assistance/S. non-belligérance/S. non-belligérante/F.() nonce/S. noncer/a0() nonchalamment nonchalance/S. nonchalante/F.() nonchaloir/S. nonciature/S. non-combattante/F.() non-comparante/F.() non-comparution/S. non-comptable/S. non-conciliation/S. non-concurrence non-conformisme/S. non-conformiste/S. non-conformité/S. non-contradiction/S. non-croyante/F.() non-cumul/S. non-directive/F.() non-directivité/S. non-discrimination/S. non-dit/S. non-droit/S. none/S. non-engagée/F.() non-engagement/S. non-être non-euclidienne/F.() non-événement/S. non-exécution/S. non-existence/S. non-figuration/S. non-figurative/F.() non-fumeuse/F.() non-gage/S. nonidi/S. nonillion/S. non-ingérence/S. non-initiée/F.() non-inscrite/F.() non-intervention/S. non-interventionniste/S. non-jouissance/S. non-lieu/X. non-linéaire/S. non-métal/X. non-moi nonne/S. nonnette/S. nono nonobstant non-paiement/S. nonpareille/F.() non-participation/S. non-prolifération/S. non-rapatriement/S. non-recevoir non-remboursement/S. non-réponse/S. non-résidente/F.() non-respect/S. non-responsabilité/S. non-retour non-rétroactivité/S. non-satisfaction/S. non-sens non-spécialiste/S. non-stop non-tissé/S. non-usage/S. non-valeur/S. non-viable/S. non-violence/S. non-violente/F.() non-voyante/F.() noologique/S. noosphère/S. noosphérique/S. nopal/S. nope/S. noper/a0a+() noradrénaline/S. nord nord-africaine/F.() nord-américaine/F.() nord-coréenne/F.() nord-est nordique/S. nordir/f0() nordiste/S. nord-ouest nord-vietnamienne/F.() noria/S. normale/W.() normalement normalienne/F.() normalisable/S. normalisation/S. normalisatrice/F.() normalisée/F.() normaliser/a0a+() normalité/S. normande/F.() normative/F.() normativité/S. norme/S. normée/F.() normographe/S. norois noroît/S. norroise/F.() norvégienne/F.() nos nosocomiale/W.() nosographie/S. nosologie/S. nosophobie/S. nostalgie/S. nostalgique/S. nostalgiquement nostoc/S. notabilité/S. notable/S. notablement notaire/S. notairesse/S. notamment notariale/W.() notariat/S. notariée/F.() notation/S. notatrice/F.() note/S. notée/F.() noter/a0a+() notice/S. notification/S. notifiée/F.() notifier/a0a+() notion/S. notionnelle/F.() notoire/S. notoirement notonecte/S. notoriété/S. notre nôtre/S. notule/S. nouage/S. nouaison/S. nouba/S. noue/S. nouée/F.() nouer/a0a+() noueuse/F.() noueuse/W.() nougat/S. nougatine/S. nouille/S. noulet/S. noumène/S. nounou/S. nounours nourrain/S. nourrice/S. nourricerie/S. nourricière/F.() nourrie/F.() nourrir/f0f+() nourrissage/S. nourrissante/F.() nourrisseur/S. nourrisson/S. nourriture/S. nous nous-mêmes nouure/S. nouveau/X. nouveau-née/F.() nouveauté/S. nouvel nouvelle/S. nouvellement nouvelliste/S. nov nova novæ novation/S. novatoire/S. novatrice/F.() novélisation/S. novembre/S. nover/a0a+() novice/S. noviciat/S. novlangue/S. novocaïne/S. noyade/S. noyau/X. noyautage/S. noyautée/F.() noyauter/a0a+() noyauteuse/F.() noyée/F.() noyer/S. noyer/a0a+() nu/S. nuage/S. nuageuse/W.() nuance/S. nuancée/F.() nuancer/a0a+() nubienne/F.() nubile/S. nubilité/S. nucelle/S. nucléaire/S. nucléariser/a0a+() nucléarité/S. nucléée/F.() nucléer/a0a+() nucléide/S. nucléine/S. nucléique/S. nucléoïde/S. nucléole/S. nucléolyse/S. nucléon/S. nucléonique/S. nucléophile/S. nucléoprotéine/S. nucléoside/S. nucléosynthèse/S. nucléotide/S. nucléotidique/S. nucléus nudisme/S. nudiste/S. nudité/S. nue/F.() nue/S. nuée/F.() nuée/S. nue-propriétaire nue-propriété nuer/a0a+() nues-propriétaires nues-propriétés nuire/yU() nuisance/S. nuisette/S. nuisibilité/S. nuisible/S. nuisiblement nuit/S. nuitamment nuitée/S. nullarde/F.() nulle/F.() nullement nullipare/S. nullité/S. nûment numéraire/S. numérale/W.() numérateur/S. numération/S. numérique/S. numériquement numérisation/S. numérisée/F.() numériser/a0a+() numériseur/S. numéro/S. numérologie/S. numérotage/S. numérotation/S. numérotée/F.() numéroter/a0a+() numéroteur/S. numerus numide/S. numismate/S. numismatique/S. nummulite/S. nummulitique/S. nunatak/S. nunchaku/S. nuncupation/S. nu-pieds n-uple/S. n-uplet/S. nu-propriétaire nuptiale/W.() nuptialité/S. nuque/S. nuraghe/S. nurse/S. nursery/S. nus-propriétaires nutation/S. nutriment/S. nutrition/S. nutritionnelle/F.() nutritionniste/S. nutritive/F.() nyctalope/S. nyctalopie/S. nycthémérale/W.() nycthémère/S. nycturie/S. nylon/S. nymphale/W.() nymphalidé/S. nymphe/S. nymphéa/S. nymphéacée/S. nymphée/S. nymphette/S. nymphomane/S. nymphomanie/S. nymphose/S. nystagmus ô o/L' o/||-- oaristys/L'D'Q' oasienne/F*() oasis/L'D'Q' obédience/S*() obédiencier/S*() obédientielle/F*() obéie/F*() obéir/f5f+() obéissance/S*() obéissante/F*() obel/S*() obèle/S*() obélisque/S*() obérée/F*() obérer/c4a+() obèse/S*() obésité/S*() obi/S*() obier/S*() obit/S*() obituaire/S*() objectale/W*() objectée/F*() objecter/a2a+() objecteur/S*() objectif/S*() objection/S*() objectivation/S*() objective/F*() objectivée/F*() objectivement/D'Q' objectiver/a4a+() objectivisme/S*() objectiviste/S*() objectivité/S*() objet/S*() objurgation/S*() objurguer/a1() oblate/F*() oblation/S*() oblative/F*() oblicité/S*() obligataire/S*() obligation/S*() obligatoire/S*() obligatoirement/D'Q' obligeamment/D'Q' obligeance/S*() obligeante/F*() obligée/F*() obliger/a4a+() oblique/S*() obliquement/D'Q' obliquer/a1() obliquité/S*() oblitération/S*() oblitératrice/F*() oblitérée/F*() oblitérer/c2a+() oblongue/F*() obnubilation/S*() obnubilée/F*() obnubiler/a2a+() obole/S*() obombrée/F*() obombrer/a2a+() obscène/S*() obscènement/D'Q' obscénité/S*() obscurantisme/S*() obscurantiste/S*() obscurcie/F*() obscurcir/f4f+() obscurcissement/S*() obscure/F*() obscurément/D'Q' obscurité/S*() obsécration/S*() obsédante/F*() obsédée/F*() obséder/c2a+() obsèques/D'Q' obséquieuse/W*() obséquieusement/D'Q' obséquiosité/S*() observabilité/S*() observable/S*() observance/S*() observante/F*() observation/S*() observationnelle/F*() observatoire/S*() observatrice/F*() observée/F*() observer/a4a+() obsession/S*() obsessionnelle/F*() obsidienne/S*() obsidionale/W*() obsolescence/S*() obsolescente/F*() obsolète/S*() obstacle/S*() obstétricale/W*() obstétricienne/F*() obstétrique/S*() obstination/S*() obstinée/F*() obstinément/D'Q' obstiner/a3a+() obstruction/S*() obstructionnisme/S*() obstructionniste/S*() obstructive/F*() obstruée/F*() obstruer/a4a+() obtempérer/c5() obtenir/i1i+() obtention/S*() obtentrice/F*() obtenue/F*() obturation/S*() obturatrice/F*() obturée/F*() obturer/a2a+() obtusangle/S*() obtuse/F*() obus/L'D'Q' obusier/S*() obvenir/i0i+() obvers/L'D'Q' obvier/a5() oc/D' ocarina/S*() occase/S*() occasion/S*() occasionnalisme/S*() occasionnaliste/S*() occasionnée/F*() occasionnelle/F*() occasionnellement/D'Q' occasionner/a2a+() occident/S*() occidentale/W*() occidentalisation/S*() occidentalisée/F*() occidentaliser/a4a+() occipitale/W*() occiput/S*() occire/yY() occise/F*() occision/S*() occitane/F*() occitanienne/F*() occitanisme/S*() occitaniste/S*() occlure/xK() occluse/F*() occlusion/S*() occlusive/F*() occultation/S*() occulte/S*() occultée/F*() occulter/a2a+() occultisme/S*() occultiste/S*() occupante/F*() occupation/S*() occupée/F*() occuper/a4a+() occurrence/S*() occurrente/F*() océan/S*() océanaute/S*() océane/S*() océanide/S*() océanienne/F*() océanique/S*() océaniste/S*() océanographe/S*() océanographie/S*() océanographique/S*() océanologie/S*() océanologique/S*() océanologue/S*() ocelle/S*() ocellée/F*() ocelot/S*() ocre/S*() ocrée/F*() ocrer/a2a+() ocreuse/W*() oct octa/S*() octaèdre/S*() octaédrique/S*() octale/W*() octalogie/S*() octane/S*() octant/S*() octante/L'D'Q' octante-cinq/L'D'Q' octante-deux/L'D'Q' octante-et-un/L'D'Q' octante-huit/L'D'Q' octante-neuf/L'D'Q' octante-quatre/L'D'Q' octante-sept/L'D'Q' octante-six/L'D'Q' octante-trois/L'D'Q' octantième/S*() octave/S*() octaviée/F*() octavier/a2a+() octavin/S*() octavo/D'Q' octet/S*() octidi/S*() octillion/S*() octobre/S*() octocoralliaire/S*() octogénaire/S*() octogonale/W*() octogone/S*() octonion/S*() octopode/S*() octostyle/S*() octosyllabe/S*() octosyllabique/S*() octroi/S*() octroyée/F*() octroyer/a4a+() octuor/S*() octuple/S*() octuplée/F*() octupler/a2a+() oculaire/S*() oculariste/S*() oculiste/S*() oculométrie/S*() oculus/L'D'Q' ocytocine/S*() odalisque/S*() ode/S*() odelette/S*() odéon/S*() odeur/S*() odieuse/W*() odieusement/D'Q' odomètre/S*() odontalgie/S*() odontoïde/S*() odontologie/S*() odontologiste/S*() odontologue/S*() odontostomatologie/S*() odorante/F*() odorat/S*() odoriférante/F*() odyssée/S*() œcuménicité/S*() œcuménique/S*() œcuménisme/S*() œdémateuse/W*() œdème/S*() œdicnème/S*() œdipe/S*() œdipienne/F*() œil/S*() œil-de-bœuf/L'D'Q' œil-de-chat/L'D'Q' œil-de-perdrix/L'D'Q' œil-de-pie/L'D'Q' œillade/S*() œillard/S*() œiller/a2a+() œillère/S*() œillet/S*() œilleton/S*() œilletonnage/S*() œilletonnée/F*() œilletonner/a2a+() œillette/S*() œils-de-bœuf/D'Q' œils-de-chat/D'Q' œils-de-perdrix/D'Q' œils-de-pie/D'Q' œnanthe/S*() œnanthique/S*() œnilisme/S*() œnolique/S*() œnolisme/S*() œnologie/S*() œnologique/S*() œnologue/S*() œnomètre/S*() œnométrie/S*() œnométrique/S*() œnotechnie/S*() œnotechnique/S*() œnothèque/S*() œnothera/S*() œnothéracée/S*() œnothère/S*() œrsted/S*() œrstite/S*() œsophage/S*() œsophagectomie/S*() œsophagienne/F*() œsophagique/S*() œsophagisme/S*() œsophagite/S*() œsophagomalacie/S*() œsophagoplastie/S*() œsophagoscope/S*() œsophagoscopie/S*() œsophagostomie/S*() œsophagotomie/S*() œstrale/W*() œstre/S*() œstromane/S*() œstromanie/S*() œstrus/L'D'Q' œuf/S*() œufrier/S*() œuvée/F*() œuvre/S*() œuvrer/a1() œuvrette/S*() off/L'D'Q' offensante/F*() offense/S*() offensée/F*() offenser/a4a+() offenseur/S*() offensive/F*() offensivement/D'Q' offerte/F*() offerte/S*() offertoire/S*() office/S*() official/X*() officialisation/S*() officialisée/F*() officialiser/a2a+() officialité/S*() officiante/F*() officielle/F*() officiellement/D'Q' officier/a1() officière/F*() officieuse/W*() officieusement/D'Q' officinale/W*() officine/S*() offrande/S*() offrante/F*() offre/S*() offreuse/F*() offrir/iC() offset/L'D'Q' offsettiste/S*() offshore/L'D'Q' offshore/S*() offuscation/S*() offusquée/F*() offusquer/a4a+() oflag/S*() ogham/S*() oghamique/S*() ogivale/W*() ogive/S*() ogonek/S*() ogresse/F*() oh ohé ohm/Um() ohmique/S*() ohmmètre/S*() ohnisme/S*() oïdium/S*() oie/S*() oignon/S*() oignonade/S*() oignonière/S*() oïl/D' oille/S*() oindre/wB() oing/S*() ointe/F*() oiseau/X*() oiseau-lyre/L'D'Q' oiseau-mouche/L'D'Q' oiseaux-lyres/D'Q' oiseaux-mouches/D'Q' oiselée/F*() oiseler/d2a+() oiselet/S*() oiseleuse/F*() oiselière/F*() oisellerie/S*() oiseuse/W*() oisillon/S*() oisive/F*() oisivement/D'Q' oisiveté/S*() oison/S*() okapi/S*() okoumé/S*() olé oléacée/S*() oléagineuse/W*() oléate/S*() oléfiante/F*() oléfine/S*() oléicole/S*() oléicultrice/F*() oléiculture/S*() oléifère/S*() oléiforme/S*() oléine/S*() oléique/S*() oléoduc/S*() oléolat/S*() oléomètre/S*() oléoprotéagineuse/W*() oléoprotéagineux/L'D'Q' oléum/S*() olfaction/S*() olfactive/F*() olibrius/L'D'Q' olifant/S*() oligarchie/S*() oligarchique/S*() oligarque/S*() oligiste/S*() oligocène/S*() oligodendrocyte/S*() oligoélément/S*() oligomère/S*() oligophrénie/S*() oligopole/S*() oligopolistique/S*() oligosaccharide/S*() oligurie/S*() olim/L'D'Q' olivaie/S*() olivaison/S*() olivâtre/S*() olive/S*() oliveraie/S*() olivétain/S*() olivette/S*() olivier/S*() olivine/S*() ollaire/S*() olmèque/S*() olographe/S*() olympe/S*() olympiade/S*() olympienne/F*() olympique/S*() olympisme/S*() omanaise/F*() ombelle/S*() ombellée/F*() ombellifère/S*() ombelliforme/S*() ombellule/S*() ombilic/S*() ombilicale/W*() ombiliquée/F*() omble/S*() ombrage/S*() ombragée/F*() ombrager/a2a+() ombrageuse/W*() ombrageusement/D'Q' ombre/S*() ombrée/F*() ombrelle/S*() ombrer/a2a+() ombrette/S*() ombreuse/W*() ombrienne/F*() ombrine/S*() ombudsman/S*() oméga/L'D'Q' omelette/S*() omerta/S*() omettre/vA() omicron/L'D'Q' omise/F*() omission/S*() omnibus/L'D'Q' omnicolore/S*() omnidirectionnalité/S*() omnidirectionnelle/F*() omnipotence/S*() omnipotente/F*() omnipraticienne/F*() omniprésence/S*() omniprésente/F*() omniscience/S*() omnisciente/F*() omnisports/D' omnium/S*() omnivore/S*() omoplate/S*() omphalos/L'D'Q' on/L'D'Q' onagracée/S*() onagrariée/S*() onagre/S*() onanisme/S*() once/S*() onciale/W*() oncle/S*() oncogène/S*() oncologie/S*() oncologiste/S*() oncologue/S*() oncotique/S*() oncques onction/S*() onctueuse/W*() onctueusement/D'Q' onctuosité/S*() ondatra/S*() onde/S*() ondée/F*() ondelette/S*() ondemètre/S*() ondine/F*() on-dit ondoiement/S*() ondoyante/F*() ondoyée/F*() ondoyer/a2a+() ondulante/F*() ondulation/S*() ondulatoire/S*() ondulée/F*() onduler/a2a+() onduleur/S*() onduleuse/W*() one-man-show onéreuse/W*() onéreusement/D'Q' one-step/S. one-woman-show ongle/S*() onglée/F*() onglet/S*() onglette/S*() onglier/S*() onglon/S*() onguent/S*() onguiculée/F*() onguiforme/S*() ongulé/S*() ongulée/F*() onguligrade/S*() onirique/S*() onirisme/S*() onirologie/S*() onirologue/S*() oniromancie/S*() oniromancienne/F*() onkotique/S*() onomasiologie/S*() onomastique/S*() onomatopée/S*() onomatopéique/S*() onques ont/zC() ontogenèse/S*() ontogénie/S*() ontogénique/S*() ontologie/S*() ontologique/S*() ontologiquement/D'Q' ontologisme/S*() onusienne/F*() onychophagie/S*() onyx/L'D'Q' onyxis/L'D'Q' onzain/S*() onze/L'D'Q' onzième/S*() onzièmement/D'Q' oocyte/S*() oogone/S*() oolite/S*() oolithe/S*() oolithique/S*() oolitique/S*() oosphère/S*() oospore/S*() oothèque/S*() op opacification/S*() opacifiée/F*() opacifier/a4a+() opacimétrie/S*() opacité/S*() opale/S*() opalescence/S*() opalescente/F*() opaline/F*() opalisée/F*() opaliser/a2a+() opaque/S*() ope/S*() open/L'D'Q' open/S*() opéra/S*() opérabilité/S*() opérable/S*() opéra-bouffe/L'D'Q' opéra-comique/L'D'Q' opérande/S*() opérante/F*() opéras-bouffes/D'Q' opéras-comiques/D'Q' opération/S*() opérationnelle/F*() opérationnellement/D'Q' opérative/F*() opératoire/S*() opératrice/F*() operculaire/S*() opercule/S*() operculée/F*() opérée/F*() opérer/c4a+() opérette/S*() ophicléide/S*() ophidien/S*() ophidienne/F*() ophioglosse/S*() ophiographie/S*() ophiolâtrie/S*() ophiologie/S*() ophite/S*() ophiure/S*() ophrys/L'D'Q' ophtalmie/S*() ophtalmique/S*() ophtalmologie/S*() ophtalmologique/S*() ophtalmologiste/S*() ophtalmologue/S*() ophtalmomètre/S*() ophtalmométrie/S*() ophtalmoscope/S*() ophtalmoscopie/S*() opiacée/F*() opiacer/a2a+() opiat/S*() opime/S*() opiner/a1() opiniâtre/S*() opiniâtrement/D'Q' opiniâtrer/a3a+() opiniâtreté/S*() opinion/S*() opioïde/S*() opiomane/S*() opiomanie/S*() opisthobranche/S*() opisthodome/S*() opisthographe/S*() opium/S*() opopanax/L'D'Q' opoponax/L'D'Q' opossum/S*() opothérapie/S*() oppidum/S*() opportune/F*() opportunément/D'Q' opportunisme/S*() opportuniste/S*() opportunité/S*() opposabilité/S*() opposable/S*() opposante/F*() opposée/F*() opposer/a4a+() opposite/S*() opposition/S*() oppositionnelle/F*() oppressante/F*() oppressée/F*() oppresser/a2a+() oppresseur/S*() oppression/S*() oppressive/F*() opprimante/F*() opprimée/F*() opprimer/a2a+() opprobre/S*() optative/F*() opter/a1() opticienne/F*() optimale/W*() optimalisée/F*() optimaliser/a2a+() optimalité/S*() optimisation/S*() optimisée/F*() optimiser/a2a+() optimisme/S*() optimiste/S*() optimum/S*() option/S*() optionnelle/F*() optionnellement/D'Q' optique/S*() optomètre/S*() optométrie/S*() optométriste/S*() opulence/S*() opulente/F*() opuntia/S*() opus/L'D'Q' opuscule/S*() or or/S*() oracle/S*() oraculaire/S*() orage/S*() orageuse/W*() orageusement/D'Q' oraison/S*() orale/W*() oralement/D'Q' oralisation/S*() oraliser/a2a+() oralité/S*() orange/S*() orangeade/S*() orangée/F*() oranger/S*() oranger/a2a+() orangeraie/S*() orangerie/S*() orangiste/S*() orang-outan/L'D'Q' orangs-outans/D'Q' orante/F*() oratoire/S*() oratorien/S*() oratorio/S*() oratrice/F*() orbe/S*() orbicole/S*() orbiculaire/S*() orbitaire/S*() orbitale/W*() orbitalement/D'Q' orbite/S*() orbiter/a1() orbiteur/S*() orcanette/S*() orchestie/S*() orchestique/S*() orchestrale/W*() orchestration/S*() orchestratrice/F*() orchestre/S*() orchestrée/F*() orchestrer/a2a+() orchidacée/S*() orchidée/S*() orchis/L'D'Q' orchite/S*() ordalie/S*() ordalique/S*() ordinaire/S*() ordinairement/D'Q' ordinale/W*() ordinand/S*() ordinant/S*() ordinateur/S*() ordination/S*() ordinatrice/F*() ordinogramme/S*() ordiphone/S*() ordo/L'D'Q' ordonnable/S*() ordonnance/S*() ordonnancée/F*() ordonnancement/S*() ordonnancer/a2a+() ordonnanceur/S*() ordonnancière/F*() ordonnatrice/F*() ordonnée/F*() ordonnée/S*() ordonner/a4a+() ordre/S*() ordure/S*() ordurière/F*() oréade/S*() orée/S*() oreillarde/F*() oreille/S*() oreiller/S*() oreillette/S*() oreillon/S*() orémus/L'D'Q' ores/D' orfèvre/S*() orfèvrerie/S*() orfraie/S*() orfroi/S*() organdi/S*() organe/S*() organeau/X*() organicisme/S*() organigramme/S*() organique/S*() organiquement/D'Q' organisable/S*() organisation/S*() organisationnelle/F*() organisatrice/F*() organisée/F*() organiser/a4a+() organisme/S*() organiste/S*() organite/S*() organoleptique/S*() organologie/S*() organothérapie/S*() organsin/S*() organsinée/F*() organsiner/a2a+() orgasme/S*() orgasmique/S*() orgastique/S*() orge/S*() orgeat/S*() orgelet/S*() orgiaque/S*() orgie/S*() orgue/S*() orgueil/S*() orgueilleuse/W*() orgueilleusement/D'Q' oribus/L'D'Q' orichalque/S*() oriel/S*() orient/S*() orientable/S*() orientale/W*() orientalisée/F*() orientaliser/a4a+() orientalisme/S*() orientaliste/S*() orientation/S*() orientatrice/F*() orientée/F*() orientement/S*() orienter/a4a+() orienteuse/F*() orifice/S*() oriflamme/S*() origami/S*() origan/S*() originaire/S*() originairement/D'Q' originale/W*() originalement/D'Q' originalité/S*() origine/S*() originelle/F*() originellement/D'Q' orignal/X*() orillon/S*() orin/S*() oringuer/a2a+() oripeau/X*() orle/S*() orléaniste/S*() ormaie/S*() orme/S*() ormeau/X*() ormille/S*() ormoie/S*() ornée/F*() ornemaniste/S*() ornement/S*() ornementale/W*() ornementation/S*() ornementée/F*() ornementer/a2a+() orner/a4a+() ornière/S*() ornithogale/S*() ornithologie/S*() ornithologique/S*() ornithologiste/S*() ornithologue/S*() ornithomancie/S*() ornithorynque/S*() orobanche/S*() orobe/S*() orogène/S*() orogenèse/S*() orogénie/S*() orogénique/S*() orographie/S*() orographique/S*() oronge/S*() oronymie/S*() oropharynx/L'D'Q' orpaillage/S*() orpailleuse/F*() orphelinat/S*() orpheline/F*() orphéon/S*() orphéoniste/S*() orphie/S*() orphique/S*() orphisme/S*() orpiment/S*() orpin/S*() orque/S*() orseille/S*() orteil/S*() orthèse/S*() orthésiste/S*() orthocentre/S*() orthochromatique/S*() orthodontie/S*() orthodontiste/S*() orthodoxe/S*() orthodoxie/S*() orthodromie/S*() orthodromique/S*() orthogenèse/S*() orthogénie/S*() orthogonale/W*() orthogonalement/D'Q' orthogonalisation/S*() orthogonalité/S*() orthographe/S*() orthographiée/F*() orthographier/a4a+() orthographique/S*() orthographiquement/D'Q' orthonormale/W*() orthonormalisation/S*() orthonormée/F*() orthopédie/S*() orthopédique/S*() orthopédiste/S*() orthophonie/S*() orthophoniste/S*() orthophosphate/S*() orthophosphorique/S*() orthopnée/S*() orthoprothésiste/S*() orthoptère/S*() orthoptiste/S*() orthorhombique/S*() orthoscopique/S*() orthose/S*() orthostatique/S*() orthostatisme/S*() orthosympathique/S*() orthotypographie/S*() ortie/S*() ortolan/S*() orvale/S*() orvet/S*() orviétan/S*() orwellienne/F*() oryctérope/S*() os/L'D'Q' oscabrion/S*() oscar/S*() oscillante/F*() oscillation/S*() oscillatoire/S*() oscillatrice/F*() osciller/a1() oscillogramme/S*() oscillographe/S*() oscillomètre/S*() oscilloscope/S*() osculateur/S*() osculation/S*() osculatrice/F*() oscule/S*() osée/F*() oseille/S*() oser/a2a+() oseraie/S*() oside/S*() osier/S*() osiériculture/S*() osmique/S*() osmium/S*() osmomètre/S*() osmonde/S*() osmose/S*() osmotique/S*() osque/S*() ossature/S*() osséine/S*() osselet/S*() ossement/S*() ossète/S*() osseuse/W*() ossianique/S*() ossification/S*() ossifiée/F*() ossifier/a4a+() osso-buco/L'D'Q' ossuaire/S*() ossue/F*() ost/S*() ostéalgie/S*() ostéichtyen/S*() ostéite/S*() ostensible/S*() ostensiblement/D'Q' ostension/S*() ostensoir/S*() ostentation/S*() ostentatoire/S*() ostéoblaste/S*() ostéoblastome/S*() ostéoclasie/S*() ostéoclaste/S*() ostéocyte/S*() ostéogenèse/S*() ostéogénie/S*() ostéologie/S*() ostéomalacie/S*() ostéomyélite/S*() ostéopathe/S*() ostéopathie/S*() ostéophyte/S*() ostéoplastie/S*() ostéoporose/S*() ostéosarcome/S*() ostéosynthèse/S*() ostéotomie/S*() ostiak/S*() ostiole/S*() ostracisée/F*() ostraciser/a2a+() ostracisme/S*() ostréicole/S*() ostréicultrice/F*() ostréiculture/S*() ostrogothe/F*() ostrogothique/S*() otage/S*() otalgie/S*() otarie/S*() ôtée/F*() ôter/a4a+() otique/S*() otite/S*() otocyon/S*() otocyste/S*() otolithe/S*() otolithique/S*() otologie/S*() oto-rhino/S*() oto-rhino-laryngologie/S*() oto-rhino-laryngologiste/S*() otorragie/S*() otorrhée/S*() otoscope/S*() otoscopie/S*() ottomane/F*() ottonienne/F*() ou où/D'Qj ouabaïne/S*() ouaille/S*() ouais ouananiche/S*() ouaouaron/S*() ouate/S*() ouatée/F*() ouater/a2a+() ouatinée/F*() ouatiner/a2a+() oubli/S*() oubliable/S*() oubliée/F*() oublier/a4a+() oubliette/S*() oublieuse/W*() ouche/S*() oued/S*() ouest/L'D'Q' ouest-allemande/F*() ouf ougandaise/F*() ougrienne/F*() oui oui ouï-dire/D' ouïe/F*() ouïe/S*() ouïgour/S*() ouillée/F*() ouiller/a2a+() ouillère/S*() ouïr/iW() ouistiti/S. oukase/S*() ouléma/S*() oulipienne/F*() oumma/S*() ouragan/S*() ouralienne/F*() ouralo-altaïque/S*() ourder ourdie/F*() ourdir/f4f+() ourdissage/S*() ourdisserie/S*() ourdisseuse/F*() ourdissoir/S*() ourdou/L'D' ourlée/F*() ourler/a2a+() ourlet/S*() ourleuse/F*() ourlienne/F*() ourse/F*() oursin/S*() oursonne/F*() oust ouste out/D'Q' out/L'D'Q' outarde/S*() outardeau/X*() outil/S*() outillage/S*() outillée/F*() outiller/a4a+() outilleuse/F*() outlaw/S*() output/S*() outrage/S*() outrageante/F*() outragée/F*() outrager/a2a+() outrageuse/W*() outrageusement/D'Q' outrance/S*() outrancière/F*() outrancièrement/D'Q' outre outre/S*() outrecuidance/S*() outrecuidante/F*() outrée/F*() outre-mer outremer/S*() outrepassée/F*() outrepasser/a2a+() outrer/a2a+() outre-tombe/L'D'Q' outsider/S*() ouverte/F*() ouvertement/D'Q' ouverture/S*() ouvrable/S*() ouvrage/S*() ouvragée/F*() ouvrager/a2a+() ouvraison/S*() ouvrante/F*() ouvreau/X*() ouvre-boîte/S*() ouvre-bouteille/S*() ouvrée/F*() ouvre-gant/S*() ouvre-huître/S*() ouvrer/a2a+() ouvreuse/F*() ouvrière/F*() ouvriérisme/S*() ouvriériste/S*() ouvrir/iC() ouvroir/S*() ouzbèke/F*() ovaire/S*() ovalbumine/S*() ovale/S*() ovalisation/S*() ovalisée/F*() ovaliser/a2a+() ovariectomie/S*() ovarienne/F*() ovarite/S*() ovate/S*() ovation/S*() ovationnée/F*() ovationner/a2a+() ove/S*() overdose/S*() ovibos/L'D'Q' ovidé/S*() oviducte/S*() ovin/S*() ovine/F*() oviné/S*() ovipare/S*() oviparité/S*() ovipositeur/S*() oviscapte/S*() ovni/S*() ovo ovocyte/S*() ovogenèse/S*() ovoïdale/W*() ovoïde/S*() ovovivipare/S*() ovoviviparité/S*() ovulaire/S*() ovulation/S*() ovulatoire/S*() ovule/S*() ovulée/F*() ovuler/a1() oxacide/S*() oxalate/S*() oxalidacée/S*() oxalique/S*() oxford/S*() oxhydrique/S*() oxyacétylénique/S*() oxycarbonée/F*() oxychlorure/S*() oxycoupage/S*() oxycoupeuse/F*() oxydable/S*() oxydante/F*() oxydase/S*() oxydation/S*() oxyde/S*() oxydée/F*() oxyder/a4a+() oxydoréduction/S*() oxygénase/S*() oxygénation/S*() oxygène/S*() oxygénée/F*() oxygéner/c4a+() oxygénothérapie/S*() oxyhémoglobine/S*() oxylithe/S*() oxymel/S*() oxymore/S*() oxymoron/S*() oxysulfure/S*() oxyton/S*() oxyure/S*() oxyurose/S*() oyat/S*() oz/||-- ozène/S*() ozocérite/S*() ozokérite/S*() ozone/S*() ozonée/F*() ozonisateur/S*() ozonisation/S*() ozonisée/F*() ozoniser/a2a+() ozoniseur/S*() p pH/|| pH-mètre/S.|| paca/S. pacage/S. pacager/a0a+() pacemaker/S. pacfung/S. pacha/S. pachalik/S. pachto pachyderme/S. pachydermie/S. pacification/S. pacificatrice/F.() pacifiée/F.() pacifier/a0a+() pacifique/S. pacifiquement pacifisme/S. pacifiste/S. pack/S. packfung/S. pacotille/S. pacquage/S. pacquer/a0a+() pacs pacsée/F.() pacson/S. pacte/S. pactiser/a0() pactole/S. paddock/S. paddocker/a0a+() paddy/S. padichah/S. padou/S. padoue/S. paella/S. paf pagaille/S. paganiser/a0a+() paganisme/S. pagayer/a0() pagayeuse/F.() page/S. pagel/S. pageot/S. pageoter pager/a0a+() pagination/S. paginer/a0a+() pagne/S. pagnote/S. pagnoter/a0a+() pagode/S. pagodon/S. pagre/S. pagure/S. pagus paidologie/S. paiement/S. païenne/F.() paierie/S. paillage/S. paillarde/F.() paillarder/a0a+() paillardise/S. paillasson/S. paillassonnage/S. paillassonner/a0a+() paille/S. paillée/F.() pailler/a0a+() paillet/S. pailletage/S. pailletée/F.() pailleter/d0a+() pailleteur/S. pailleuse/W.() paillis paillon/S. paillonner/a0a+() paillot/S. paillote/S. pain/S. paintball/S. pair-à-pair paire/F.() pairesse/S. pairie/S. pairle/S. paisible/S. paisiblement paissance/S. paisseau/X. paisseler/d0a+() paître/wS() paix pajoter pakistanaise/F.() pal/S. pala/S. palabre/S. palabrer/a0() palace/S. paladin/S. palais palan/S. palanche/S. palancrer/a0a+() palangre/S. palangrer/a0a+() palanguer/a0a+() palanque/S. palanquée/S. palanquer/a0a+() palanquin/S. palastre/S. palatale/W.() palatalisation/S. palatalisée/F.() palataliser/a0a+() palatiale/W.() palatinat/S. palatine/F.() pale/S. pâle/S. pale-ale/S. palée/F.() palée/S. palefrenière/F.() palefroi/S. palémon/S. paléoanthropologie/S. paléoanthropologue/S. paléobiogéographie/S. paléobiogéographique/S. paléobiologie/S. paléobotanique/S. paléocène/S. paléochrétienne/F.() paléoclimat/S. paléoclimatologie/S. paléoenvironnement/S. paléoenvironnementale/W.() paléogène/S. paléogéographie/S. paléographe/S. paléographie/S. paléographique/S. paléohistologie/S. paléolithique/S. paléomagnétisme/S. paléontologie/S. paléontologique/S. paléontologiste/S. paléontologue/S. paléo-océanographie/S. paléorelief/S. paléosol/S. paléotempérature/S. paléothérium/S. paléozoïque/S. paléozoologie/S. paleron/S. palestinienne/F.() palestre/S. palet/S. paletot/S. palette/S. paletter/a0a+() palettiser/a0a+() palétuvier/S. pâleur/S. palicare/S. pâlichonne/F.() pâlie/F.() palière/F.() palikare/S. palilalie/S. palimpseste/S. palindrome/S. palingénésie/S. palingénésique/S. palinodie/S. palinodique/S. pâlir/f0f+() palis palissade/S. palissader/a0a+() palissage/S. palissandre/S. pâlissante/F.() palissée/F.() palisser/a0a+() palissonner/a0a+() palissonneur/S. paliure/S. palladium/S. palléale/W.() palliative/F.() pallidectomie/S. pallidum/S. pallier/a0a+() pallium/S. palmacée/S. palma-christi palmaire/S. palmarès palmature/S. palme/S. palmée/F.() palmer/a0a+() palmeraie/S. palmette/S. palmier/S. palmifide/S. palmilobée/F.() palmipartie/F.() palmipartite/S. palmipède/S. palmiséquée/F.() palmiste/S. palmite/S. palmitine/S. palmitique/S. palmure/S. palombe/S. palonnier/S. palot/S. paloter/a0a+() pâlotte/F.() palourde/S. palpable/S. palpation/S. palpébrale/W.() palpée/F.() palper/a0a+() palpeur/S. palpitante/F.() palpitation/S. palpitement/S. palpiter/a0() palplanche/S. palsambleu paltoquet/S. paluche/S. palud/S. palude/S. paludéenne/F.() paludière/F.() paludine/S. paludique/S. paludisme/S. paludologie/S. palus palustre/S. palynologie/S. palynologue/S. pâmée/F.() pâmer/a0a+() pâmoison/S. pampa/S. pampéro/S. pamphlet/S. pamphlétaire/S. pampille/S. pamplemousse/S. pamplemoussier/S. pampre/S. pan/S. panacée/S. panachage/S. panache/S. panachée/F.() panacher/a0a+() panachure/S. panade/S. panafricaine/F.() panafricanisme/S. panama/S. panaméenne/F.() panaméricaine/F.() panaméricanisme/S. panarabisme/S. panarde/F.() panaris panatela/S. panathénées panax panca/S. pancalisme/S. pancarte/S. panchromatique/S. panclastite/S. pancosmisme/S. pancrace/S. pancréas pancréatine/S. pancréatique/S. pancréatite/S. panda/S. pandanus pandectes pandèmes pandémie/S. pandémonium/S. pandiculation/S. pandit/S. pandore/S. panée/F.() panégyrique/S. panégyriste/S. panel/S. paner/a0a+() panerée/S. paneterie/S. panetière/F.() paneton/S. panettone/S. paneuropéenne/F.() pangermanisme/S. pangermaniste/S. pangolin/S. pangramme/S. panhellénique/S. panhellénisme/S. panic/S. panicaut/S. paniculée/F.() panière/F.() panier-repas paniers-repas panifiable/S. panification/S. panifier/a0a+() paniquante/F.() paniquarde/F.() panique/S. paniquée/F.() paniquer/a0a+() panislamique/S. panislamisme/S. panka/S. panlogisme/S. panmixie/S. panne/S. panneau/X. panneautage/S. panneauter/a0a+() pannée/F.() panner/a0a+() panneton/S. pannicule/S. panonceau/X. panophtalmie/S. panoplie/S. panoptique/S. panorama/S. panoramique/S. panoramiquer/a0() panorpe/S. panosse/S. panoufle/S. pansage/S. panse/S. pansement/S. panser/a0a+() panseuse/F.() panslavisme/S. panspermie/S. pansue/F.() pantagruélique/S. pantalon/S. pantalonnade/S. pante/S. pantelante/F.() panteler/d0() pantène/S. pantenne/S. panthéisme/S. panthéiste/S. panthéon/S. panthère/S. pantière/S. pantin/S. pantographe/S. pantoire/S. pantoise/F.() pantomètre/S. pantomime/S. pantouflage/S. pantouflarde/F.() pantoufle/S. pantoufler/a0() pantouflière/F.() pantoum/S. panure/S. panurgisme/S. panzer/S. paonne/F.() papa/S. papable/S. papaïne/S. papale/W.() papauté/S. papaver/S. papavéracée/S. papavérine/S. papaye/S. papayer/S. papegai/S. papelarde/F.() papelardise/S. paperasse/S. paperasserie/S. paperassière/F.() papesse/F.() papeterie/S. papetière/F.() papier/S. papier-monnaie papiers-monnaies papilionacée/F.() papillaire/S. papille/S. papilleuse/W.() papillifère/S. papillome/S. papillon/S. papillonnage/S. papillonnante/F.() papillonnement/S. papillonner/a0() papillonneuse/F.() papillotage/S. papillotante/F.() papillote/S. papillotement/S. papilloter/a0a+() papion/S. papisme/S. papiste/S. papotage/S. papoter/a0() papouille/S. papouiller/a0a+() paprika/S. papule/S. papuleuse/W.() papy/S. papy-boom/S. papyrologie/S. papyrologique/S. papyrologue/S. papyrus pâque/S. paquebot/S. pâquerette/S. paquet/S. paquetage/S. paqueteuse/F.() par parabase/S. parabellum/S. parabiose/S. parabole/S. parabolique/S. paraboliquement paraboloïde/S. paracentèse/S. paracétamol parachèvement/S. parachever/b0a+() parachronisme/S. parachutage/S. parachutale/W.() parachute/S. parachutée/F.() parachuter/a0a+() parachutisme/S. parachutiste/S. paraclet/S. paracompacte/S. parade/S. parader/a0() paradeur/S. paradigmatique/S. paradigme/S. paradis paradisiaque/S. paradisier/S. parados paradoxale/W.() paradoxalement paradoxe/S. paraffinage/S. paraffine/S. paraffinée/F.() paraffiner/a0a+() parafiscale/W.() parafiscalité/S. parafoudre/S. parage/S. paragoge/S. paragogique/S. paragraphe/S. paragrêle/S. paraguante/S. paraguayenne/F.() paraisonner/a0a+() paraître/wQ() parajudiciaire/S. paralangage/S. paralipomènes paralittéraire/S. paralittérature/S. paraliturgie/S. parallactique/S. parallaxe/S. parallèle/S. parallèlement parallélépipède/S. parallélépipédique/S. parallélisable/S. parallélisation/S. paralléliser/a0a+() parallélisme/S. parallélogramme/S. paralogisme/S. paralympique/S. paralysante/F.() paralysée/F.() paralyser/a0a+() paralysie/S. paralytique/S. paramagnétique/S. paramagnétisme/S. paramécie/S. paramédic/S. paramédicale/W.() paramétrable/S. paramétrage/S. paramètre/S. paramétrée/F.() paramétrer/c0a+() paramétrique/S. paramétriquement paramétrisation/S. paramilitaire/S. paramnésie/S. parangon/S. parangonnage/S. parangonner/a0a+() paranoïa/S. paranoïaque/S. paranoïde/S. paranormale/W.() paranymphe/S. parapente/S. parapentiste/S. parapet/S. parapharmacie/S. paraphasie/S. paraphe/S. parapher/a0a+() paraphernale/W.() parapheur/S. paraphilie/S. paraphimosis paraphlébite/S. paraphrase/S. paraphrasée/F.() paraphraser/a0a+() paraphraseuse/F.() paraphrastique/S. paraphrénie/S. paraphyse/S. paraplégie/S. paraplégique/S. parapluie/S. parapsychique/S. parapsychologie/S. parapsychologique/S. parapublique/F.() parasange/S. parascève/S. parascolaire/S. parasélène/S. parasexualité/S. parasismique/S. parasitage/S. parasitaire/S. parasite/S. parasitée/F.() parasiter/a0a+() parasitisme/S. parasitologie/S. parasitologiste/S. parasitologue/S. parasitose/S. parasol/S. parastatale/W.() parasurtenseur/S. parasympathique/S. parasynthétique/S. parataxe/S. parathormone/S. parathymie/S. parathyroïde/S. paratonnerre/S. parâtre/S. paratyphique/S. paratyphoïde/S. paravalanche/S. paravent/S. paraxiale/W.() parbleu parc/S. parcage/S. parce parcellaire/S. parcellarisation/S. parcellariser/a0a+() parcelle/S. parceller/a0a+() parcellisation/S. parcelliser/a0a+() parchemin/S. parcheminée/F.() parcheminer/a0a+() parcheminerie/S. parcheminière/F.() par-ci parcimonie/S. parcimonieuse/W.() parcimonieusement parcmètre/S. parcomètre/S. parcourir/iE() parcours parcourue/F.() par-delà par-derrière par-dessous par-dessus pardessus par-devant par-devers pardi pardieu pardon pardon/S. pardonnable/S. pardonnée/F.() pardonner/a0a+() paréage/S. pare-balles pare-battage pare-boue pare-brise pare-cendres pare-chocs pare-clous parèdre/S. parée/F.() pare-éclats pare-étincelles pare-étoupilles pare-feu pare-fumée parégorique/S. pareille/F.() pareillement parement/S. parementer/a0a+() parémiologie/S. parenchymateuse/W.() parenchyme/S. pare-neige parentale/W.() parentalies parentalité/S. parente/F.() parenté/S. parentèle/S. parentelle/S. parentérale/W.() parenthèse/S. parenthésée/F.() paréo/S. parer/a0a+() parère/S. parésie/S. pare-soleil paresse/S. paresser/a0() paresseuse/W.() paresseusement paresthésie/S. pareuse/F.() pare-vent parfaire/wD() parfaite/F.() parfaitement parfilage/S. parfiler/a0a+() parfin parfois parfondre/tA() parfum/S. parfumée/F.() parfumer/a0a+() parfumerie/S. parfumeuse/F.() parhélie/S. pari/S. pariade/S. pariage/S. parian/S. paridigitidée/F.() parier/a0a+() pariétaire/S. pariétale/W.() parieuse/F.() parigote/F.() paripennée/F.() parisette/S. parisianisme/S. parisienne/F.() parisis parisyllabique/S. paritaire/S. paritairement paritarisme/S. parité/S. parjure/S. parjurer/a0a+() parka/S. parkérisation/S. parkériser/a0a+() parking/S. parkinson/S. parkinsonienne/F.() par-là parlante/F.() parlée/F.() parlement/S. parlementaire/S. parlementairement parlementarisme/S. parlementer/a0() parler/S. parler/a0a+() parleuse/F.() parloir/S. parlote/S. parloter/a0() parlotte/S. parme parmélie/S. parmenture/S. parmesan/S. parmi parnasse/S. parnassienne/F.() parodie/S. parodiée/F.() parodier/a0a+() parodique/S. parodiste/S. parodontale/W.() parodonte/S. parodontie/S. parodontiste/S. parodontite/S. parodontopathie/S. paroi/S. paroisse/S. paroissiale/W.() paroissienne/F.() parole/S. paroli parolière/F.() paronomase/S. paronyme/S. paronymie/S. paronymique/S. paros parotide/S. parotidienne/F.() parotidite/S. parousie/S. paroxysmale/W.() paroxysme/S. paroxysmique/S. paroxystique/S. paroxyton/S. parpaillote/F.() parpaing/S. parquée/F.() parquer/a0a+() parquet/S. parquetage/S. parqueter/d0a+() parqueterie/S. parqueteuse/F.() parquetière/F.() parqueuse/F.() parrain/S. parrainage/S. parrainée/F.() parrainer/a0a+() parraineuse/F.() parricide/S. parsec/S. parsemée/F.() parsemer/b0a+() parsie/F.() parsisme/S. part/S. partage/S. partageable/S. partagée/F.() partager/a0a+() partageuse/F.() partageuse/W.() partagiciel/S. partance/S. partante/F.() partenaire/S. partenariat/S. parterre/S. parthe/S. parthénocarpie/S. parthénogenèse/S. parthénogénétique/S. parti/S. partiaire/S. partiale/W.() partialement partialité/S. participante/F.() participation/S. participative/F.() participe/S. participer/a0() participiale/W.() particularisation/S. particulariser/a0a+() particularisme/S. particulariste/S. particularité/S. particule/S. particulière/F.() particulièrement partie/F.() partie/S. partielle/F.() partiellement partir/i5i+() partisane/F.() partita/S. partiteur/S. partition/S. partitionnement/S. partitive/F.() parton/S. partouse/S. partouser/a0() partout partouzarde/F.() partouze/S. partouzer/a0() parturiente/S. parturition/S. parue/F.() parulie/S. parure/S. parurerie/S. parurière/F.() parution/S. parvenir/i0i+() parvenue/F.() parvis pas pas pas/||-- pas-à-pas pascal/Um() pascale/W.() pascaline/S. pas-d'âne pas-de-géant pas-de-porte paseo/S. pasionaria/S. paso-doble pasquin/S. passable/S. passablement passacaille/S. passade/S. passage/S. passagère/F.() passagèrement passante/F.() passation/S. passavant/S. passe/S. passe-bande passe-boules passe-coupe passe-crassane passe-droit/S. passée/F.() passéisme/S. passéiste/S. passe-lacet/S. passe-lait passement/S. passementer/a0a+() passementerie/S. passementière/F.() passe-montagne/S. passe-partout passe-passe passe-pied/S. passe-pierre/S. passe-plat/S. passepoil/S. passepoile/S. passepoiler/a0a+() passeport/S. passer/a0a+() passerage/S. passereau/X. passerelle/S. passerine/S. passerinette/S. passerose/S. passe-temps passe-thé passeuse/F.() passe-velours passe-volant/S. passible/S. passif/S. passiflore/S. passim passing-shot/S. passion/S. passionnante/F.() passionnée/F.() passionnelle/F.() passionnément passionner/a0a+() passionnette/S. passivation/S. passive/F.() passivement passivité/S. passoire/S. pastel/S. pasteller/a0a+() pastelliste/S. pastenague/S. pastèque/S. pasteur/S. pasteurienne/F.() pasteurisateur/S. pasteurisation/S. pasteurisatrice/F.() pasteurisée/F.() pasteuriser/a0a+() pastiche/S. pastichée/F.() pasticher/a0a+() pasticheuse/F.() pastille/S. pastiller/a0a+() pastiquer/a0() pastis pastorale/W.() pastoralisme/S. pastoraliste/S. pastoureau/X. pastourelle/S. pat patache/S. patachon/S. patafioler/a0a+() patagonne/F.() pataphysique/S. patapouf/S. pataquès patarasse/S. patard/S. patate/S. patatoïde/S. patatras pataude/F.() pataugeage/S. pataugeoire/S. patauger/a0() pataugeuse/F.() patch/S. patchouli/S. patchwork/S. pâte/S. pâté/S. pâtée/S. patelin/S. patelinage/S. pateline/F.() pateliner/a0a+() patelinerie/S. patelle/S. patène/S. patenôtre/S. patentable/S. patentage/S. patente/F.() patentée/F.() patenter/a0a+() pater/S. pâter/a0() patère/S. paterfamilias paternalisme/S. paternaliste/S. paterne/S. paternelle/F.() paternellement paternité/S. pâteuse/W.() pathétique/S. pathétiquement pathétisme/S. pathogène/S. pathogenèse/S. pathogénie/S. pathognomonique/S. pathologie/S. pathologique/S. pathologiquement pathologiste/S. pathos patibulaire/S. patiemment patience/S. patiente/F.() patienter/a0a+() patin/S. patinage/S. patine/S. patinée/F.() patiner/a0a+() patinette/S. patineuse/F.() patinoire/S. patio/S. pâtir/f0() pâtisser/a0() pâtisserie/S. pâtissière/F.() pâtisson/S. patoche/S. patois patoisante/F.() patoiser/a0() pâton/S. patouille/S. patouiller/a0a+() patraque/S. pâtre/S. patriarcale/W.() patriarcalement patriarcat/S. patriarche/S. patrice/S. patriciat/S. patricienne/F.() patriclan/S. patrie/S. patrilinéaire/S. patrilocale/W.() patrimoine/S. patrimoniale/W.() patriotarde/F.() patriote/S. patriotique/S. patriotiquement patriotisme/S. patristique/S. patrologie/S. patronage/S. patronale/W.() patronat/S. patronne/F.() patronner/a0a+() patronnesse/S. patronnière/F.() patronyme/S. patronymique/S. patrouille/S. patrouiller/a0() patrouilleur/S. patte/S. patte-d'oie pattée/F.() pattemouille/S. patter/a0a+() pattern/S. pattes-d'oie pattier/S. pattinsonage/S. pattue/F.() pâturage/S. pâture/S. pâturer/a0a+() pâturin/S. paturon/S. pâturon/S. pauchouse/S. paulette/S. paulienne/F.() paulinienne/F.() paulinisme/S. pauliste/S. paulownia/S. paume/S. paumée/F.() paumelle/S. paumer/a0a+() paumier/S. paumoyer/a0a+() paumure/S. paupérisation/S. paupérisée/F.() paupériser/a0a+() paupérisme/S. paupière/S. paupiette/S. pause/S. pause-café pauser/a0() pauses-café pauvre/S. pauvrement pauvresse/S. pauvreté/S. pauvrette/F.() pavage/S. pavane/S. pavaner/a0a+() pavé/S. pavée/F.() pavement/S. paver/a0a+() paveur/S. pavie/S. pavillon/S. pavillonnaire/S. pavillonnée/F.() pavillonnerie/S. pavimenteuse/W.() pavois pavoisement/S. pavoiser/a0a+() pavot/S. payable/S. payante/F.() paye/S. payement/S. payer/a0a+() payeuse/F.() pays paysage/S. paysagère/F.() paysagiste/S. paysannat/S. paysanne/F.() paysannerie/S. payse/F.() pc/||-- péage/S. péagère/F.() péagiste/S. péan/S. peau/X. peaucier/S. peaufinée/F.() peaufiner/a0a+() peau-rouge peausser/a0() peausserie/S. peaussier/S. peaux-rouges pébibit/S. pébioctet/S. pébrine/S. pébroc/S. pébroque/S. pécaïre pécari/S. peccable/S. peccadille/S. pechblende/S. péché/S. pêche/S. pêcher/S. pêcher/a0a+() pécher/c0() pécheresse/S. pêcherie/S. pêchette/S. pécheur/S. pêcheuse/F.() pêchue/F.() pecnot/S. pécoptéris pécore/S. pecque/S. pecquer/a0() pecten/S. pectine/S. pectinée/F.() pectique/S. pectorale/W.() péculat/S. pécule/S. pécuniaire/S. pécuniairement pédagogie/S. pédagogique/S. pédagogiquement pédagogue/S. pédalage/S. pédale/S. pédaler/a0() pédaleuse/F.() pédalier/S. pédalo/S. pédante/F.() pédanterie/S. pédantesque/S. pédantisme/S. pédé/S. pédégée/F.() pédégère/S. pédéraste/S. pédérastie/S. pédérastique/S. pédestre/S. pédestrement pédiatre/S. pédiatrie/S. pédiatrique/S. pédicellaire/S. pédicelle/S. pédiculaire/S. pédiculée/F.() pédiculose/S. pédicure/S. pédicurie/S. pédieuse/W.() pedigree/S. pédimane/S. pédiment/S. pédipalpe/S. pédiplaine/S. pédogenèse/S. pédologie/S. pédologue/S. pédonculaire/S. pédoncule/S. pédonculée/F.() pédophile/S. pédophilie/S. pédopornographie/S. pédopornographique/S. pédopsychiatre/S. pédopsychiatrie/S. pédopsychologie/S. pédopsychologue/S. pedum/S. pedzouille/S. peeling/S. peer-to-peer pégase/S. pegmatite/S. pègre/S. pehlvi peignage/S. peigne/S. peigne-cul peignée/F.() peigner/a0a+() peignette/S. peigneuse/F.() peignier/S. peignoir/S. peignures peille/S. peinarde/F.() peinardement peindre/wB() peine/S. peinée/F.() peiner/a0a+() peinte/F.() peintre/S. peinture/S. peinturer/a0a+() peinturlurer/a0a+() péjoration/S. péjorative/F.() péjorativement pékan/S. pékin/S. pékinée/F.() pékinoise/F.() pelade/S. pelage/S. pélagianisme/S. pélagienne/F.() pélagique/S. pelagos pélamide/S. pelard/S. pélargonium/S. pélasgienne/F.() pélasgique/S. pelée/F.() peléenne/F.() péléenne/F.() pêle-mêle pêle-mêle peler/b0a+() pèlerinage/S. pèlerine/F.() péliade/S. pélican/S. pelisse/S. pellagre/S. pellagreuse/W.() pelle/S. pelle-pioche peller/a0a+() pelles-pioches pellet/S. pelletage/S. pelletée/S. pelleter/d0a+() pelleterie/S. pelleteuse/F.() pelletière/F.() pelletiérine/S. pelliculage/S. pelliculaire/S. pellicule/S. pelliculée/F.() pelliculeuse/W.() pellucide/S. pélobate/S. pélodyte/S. pelotage/S. pelotari/S. pelote/S. pelotée/F.() peloter/a0a+() peloteuse/F.() peloton/S. pelotonnée/F.() pelotonnement/S. pelotonner/a0a+() pelouse/S. pelta/S. peltaste/S. pelte/S. peltée/F.() peluche/S. peluchée/F.() pelucher/a0() pelucheuse/W.() pelure/S. pelvienne/F.() pelvigraphie/S. pelvimètre/S. pelvimétrie/S. pelvimétrique/S. pelvis pembeniser/a0a+() pemmican/S. pénale/W.() pénalement pénalisante/F.() pénalisation/S. pénalisée/F.() pénaliser/a0a+() pénaliste/S. pénalité/S. penalty/S. pénarde/F.() pénardement pénates penaude/F.() pence penchant/S. penchante/F.() penchée/F.() pencher/a0a+() pendable/S. pendage/S. pendaison/S. pendant pendant pendant/S. pendante/F.() pendard/S. pendeloque/S. pendentif/S. penderie/S. pendiller/a0() pendillon/S. pendoir/S. pendouiller/a0() pendre/tA() pendue/F.() pendulaire/S. pendule/S. penduler/a0() pendulette/S. pêne/S. pénéplaine/S. pénétrabilité/S. pénétrable/S. pénétrante/F.() pénétration/S. pénétrée/F.() pénétrer/c0a+() pénétromètre/S. pénibilité/S. pénible/S. péniblement péniche/S. pénicillée/F.() pénicilline/S. pénicillinorésistante/F.() pénicillium/S. pénienne/F.() pénil/S. péninsulaire/S. péninsule/S. pénis pénitence/S. pénitencerie/S. pénitencier/S. pénitente/F.() pénitentiaire/S. pénitentiale/W.() pénitentielle/F.() pennage/S. penne/S. pennée/F.() penniforme/S. pennon/S. penny/S. pénologie/S. pénombre/S. penon/S. pensable/S. pensante/F.() pense-bête/S. pensée/F.() pensée/S. penser/a0a+() penseuse/F.() pension/S. pensionnaire/S. pensionnat/S. pensionnée/F.() pensionner/a0a+() pensive/F.() pensivement pensum/S. pentachlorure/S. pentacle/S. pentacorde/S. pentacrine/S. pentacrinite/S. pentadactyle/S. pentadécagone/S. pentaèdre/S. pentagonale/W.() pentagone/S. pentagramme/S. pentalogie/S. pentamère/S. pentamètre/S. pentane/S. pentanol/S. pentarchie/S. pentasodique/S. pentateuque/S. pentathlon/S. pentatome/S. pentatonique/S. pente/S. pentecôte/S. pentecôtisme/S. pentecôtiste/S. pentédécagone/S. penthiobarbital/S. penthode/S. penthotal/S. pentode/S. pentose/S. pentue/F.() penture/S. pénultième/S. pénurie/S. péon/S. péotte/S. pep pépé/S. pépère/S. péperin/S. pépètes pépie/S. pépiement/S. pépier/a0() pépin/S. pépinière/S. pépiniériste/S. pépite/S. péplum/S. pépon/S. péponide/S. peppermint/S. pepsine/S. peptide/S. peptidique/S. peptique/S. peptone/S. péquenaude/F.() péquenotte/F.() péquin/S. péquiste/S. péramèle/S. perborate/S. perçage/S. percale/S. percaline/S. perçante/F.() perce/S. percée/F.() percée/S. percement/S. perce-muraille/S. perce-neige perce-oreille/S. perce-pierre/S. percept/S. perceptibilité/S. perceptible/S. perceptiblement perception/S. perceptive/F.() perceptrice/F.() perceptuelle/F.() percer/a0a+() percerette/S. perceuse/F.() percevable/S. percevoir/pK() perche/S. perchée/F.() percher/a0a+() percheronne/F.() percheuse/F.() perchis perchiste/S. perchlorate/S. perchlorique/S. perchman/S. perchoir/S. percluse/F.() percnoptère/S. perçoir/S. percolateur/S. percolation/S. perçue/F.() percussion/S. percussionniste/S. percutanée/F.() percutante/F.() percutée/F.() percuter/a0a+() percuteur/S. percuti-réaction/S. perdable/S. perdante/F.() perdition/S. perdre/tA() perdreau/X. perdrix perdue/F.() perdurable/S. perdurer/a0() père/S. pérégrination/S. pérégrine/F.() pérégriner/a0() péremption/S. péremptoire/S. péremptoirement pérenne/S. pérennisation/S. pérenniser/a0a+() pérennité/S. péréquater/a0a+() péréquation/S. perestroïka perfectibilité/S. perfectible/S. perfection/S. perfectionnée/F.() perfectionnement/S. perfectionner/a0a+() perfectionnisme/S. perfectionniste/S. perfective/F.() perfide/S. perfidement perfidie/S. perfoliée/F.() perforage/S. perforante/F.() perforation/S. perforatrice/F.() perforée/F.() perforelieuse/F.() perforer/a0a+() perforeuse/S. performance/S. performante/F.() performative/F.() performativité/S. perfuser/a0a+() perfusion/S. pergélisol/S. pergola/S. péri/S. périanthe/S. péricarde/S. péricardite/S. péricarpe/S. périchondre/S. périclitante/F.() périclitation/S. péricliter/a0() péricope/S. péricycle/S. péridot/S. péridotite/S. péridurale/W.() périe/F.() périgée/S. périglaciaire/S. périgourdine/F.() périgueux périhélie/S. péril/S. périlleuse/W.() périlleusement périmée/F.() périmer/a0a+() périmètre/S. périmétrie/S. périmétrique/S. périnatale/F.() périnatalité/S. périnéale/W.() périnée/S. période/S. périodicité/S. périodique/S. périodiquement périœsophagienne/F.() périoste/S. périostite/S. péripate/S. péripatéticienne/F.() péripatétisme/S. péripétie/S. périphérie/S. périphérique/S. périphlébite/S. périphrase/S. périphraser/a0() périphrastique/S. périple/S. périptère/S. périr/f0() périscolaire/S. périscope/S. périscopique/S. périsperme/S. périspomène/S. périssable/S. périssoire/S. périssologie/S. péristaltique/S. péristaltisme/S. péristome/S. péristyle/S. péritel périthèce/S. péritoine/S. péritonéale/W.() péritonite/S. pérityphlite/S. périurbaine/F.() périurbanisation/S. périzonium/S. perle/S. perlèche/S. perlée/F.() perler/a0a+() perlière/F.() perlimpinpin perlon/S. perlot/S. perlouse/S. perlouze/S. perluète/S. permaculture/S. permafrost/S. permalloy/S. permanence/S. permanente/F.() permanentée/F.() permanenter/a0a+() permanganate/S. permanganique/S. perméabiliser/a0a+() perméabilité/S. perméable/S. permettre/vA() permienne/F.() permis permise/F.() permission/S. permissionnaire/S. permissive/F.() permissivité/S. permittivité/S. permutabilité/S. permutable/S. permutante/F.() permutateur/S. permutation/S. permutée/F.() permuter/a0a+() pernicieuse/W.() pernicieusement péroné/S. péronier/S. péronière/F.() péronnelle/S. péroraison/S. pérorer/a0() péroreuse/F.() pérot/S. peroxydase/S. peroxyde/S. peroxyder/a0a+() perpendiculaire/S. perpendiculairement perpendicularité/S. perpétration/S. perpétrée/F.() perpétrer/c0a+() perpétuation/S. perpétuée/F.() perpétuelle/F.() perpétuellement perpétuer/a0a+() perpétuité/S. perplexe/S. perplexité/S. perquisiteur/S. perquisition/S. perquisitionnée/F.() perquisitionner/a0() perron/S. perroquet/S. perruche/S. perruque/S. perruquière/F.() pers persane/F.() persanophone/S. perse/S. persécutée/F.() persécuter/a0a+() persécution/S. persécutrice/F.() persel/S. persévérance/S. persévérante/F.() persévération/S. persévérer/c0() persicaire/S. persicot/S. persienne/S. persiflage/S. persifler/a0a+() persifleuse/F.() persil/S. persillade/S. persillée/F.() persiller/a0a+() persillère/S. persique/S. persistance/S. persistante/F.() persister/a0() personæ personnage/S. personnalisable/S. personnalisation/S. personnalisée/F.() personnaliser/a0a+() personnalisme/S. personnaliste/S. personnalité/S. personne personne/S. personnelle/F.() personnellement personnification/S. personnifiée/F.() personnifier/a0a+() perspective/F.() perspectivement perspectivisme/S. perspicace/S. perspicacement perspicacité/S. perspiration/S. persuadée/F.() persuader/a0a+() persuasion/S. persuasive/F.() persulfate/S. persulfure/S. persulfurée/F.() perte/S. pertinemment pertinence/S. pertinente/F.() pertuis pertuisane/S. pertuisanier/S. perturbante/F.() perturbation/S. perturbatrice/F.() perturbée/F.() perturber/a0a+() péruvienne/F.() pervenche/S. perverse/F.() perversement perversion/S. perversité/S. pervertie/F.() pervertir/f0f+() pervertissement pervertisseuse/F.() pervibrage/S. pervibrer/a0a+() pesade/S. pesage/S. pesamment pesante/F.() pesanteur/S. pèse-acide/S. pèse-alcool pèse-bébé/S. pesée/F.() pesée/S. pèse-esprit pèse-lait pèse-lettre/S. pèse-liqueur/S. pèse-moût/S. pèse-personne/S. peser/b0a+() pèse-sel/S. pèse-sirop/S. peseta/S. pesette/S. peseuse/F.() pèse-vin peso/S. peson/S. pessaire/S. pesse/S. pessière/S. pessigner pessimisme/S. pessimiste/S. peste/S. pesteller/a0() pester/a0() pesteuse/W.() pesticide/S. pestiférée/F.() pestiférer/c0a+() pestilence/S. pestilentielle/F.() pet/S. pétabit/S. pétage/S. pétainisme/S. pétainiste/S. pétale/S. pétalisme/S. pétaloïde/S. pétamètre/S. pétanque/S. pétante/F.() pétaoctet/S. pétaradante/F.() pétarade/S. pétarader/a0() pétard/S. pétarder/a0a+() pétase/S. pétaudière/S. pétaure/S. pétauriste/S. pet-de-nonne pétéchiale/W.() pétéchie/S. péter/c0a+() pète-sec/S. péteuse/F.() péteuse/W.() pétillante/F.() pétillement/S. pétiller/a0() pétiole/S. pétiolée/F.() petiote/F.() petit-beurre petit-bois petit-bourgeois petit-déjeuner petit-déjeuner/a0() petite/F.() petite-bourgeoise petite-fille petite-maîtresse petitement petite-nièce petites-bourgeoises petites-filles petites-maîtresses petites-nièces petitesse/S. petit-fils petit-gris pétition/S. pétitionnaire/S. pétitionner/a0() petit-lait petit-maître petit-nègre petit-neveu pétitoire/S. petit-pois petits-beurre petits-bois petits-bourgeois petits-déjeuners petits-enfants petits-fils petits-gris petits-laits petits-maîtres petits-neveux petits-pois petits-suisses petit-suisse pétoche/S. pétocher/a0() pétoire/S. peton/S. pétoncle/S. pétrarquisante/F.() pétrarquiser/a0() pétrarquisme/S. pétrarquiste/S. pétrée/F.() pétrel/S. pétreuse/W.() pétrie/F.() pétrifiante/F.() pétrification/S. pétrifiée/F.() pétrifier/a0a+() pétrin/S. pétrir/f0f+() pétrissable/S. pétrissage/S. pétrisseuse/F.() pétrochimie/S. pétrochimique/S. pétrochimiste/S. pétrodollar/S. pétrogale/S. pétrogenèse/S. pétroglyphe/S. pétrographe/S. pétrographie/S. pétrographique/S. pétrole/S. pétrolette/S. pétroleuse/S. pétrolière/F.() pétrolifère/S. pétrolochimie/S. pétrolochimique/S. pétrologie/S. pets-de-nonne pétulance/S. pétulante/F.() pétun/S. pétuner/a0() pétunia/S. peu peucédan/S. peuchère peuh peule/F.() peulven/S. peuplade/S. peuple/S. peuplée/F.() peuplement/S. peupler/a0a+() peupleraie/S. peuplier/S. peur/S. peureuse/W.() peureusement peut-être peyotl/S. pèze/S. pézize/S. pfaffienne/F.() pfennig/S. pff pfft pfut ph/||-- phacochère/S. phacomètre/S. phage/S. phagédénique/S. phagédénisme/S. phagocytage/S. phagocytaire/S. phagocyte/S. phagocytée/F.() phagocyter/a0a+() phagocytose/S. phalange/S. phalanger/S. phalangette/S. phalangienne/F.() phalangine/S. phalangiste/S. phalanstère/S. phalanstérienne/F.() phalène/S. phalère/S. phalline/S. phallique/S. phallocentrique/S. phallocentrisme/S. phallocrate/S. phallocratie/S. phalloïde/S. phallus phanère/S. phanérogame/S. phanie/S. pharaonienne/F.() pharaonique/S. pharaonne/F.() phare/S. pharillon/S. pharisaïque/S. pharisaïsme/S. pharisienne/F.() pharmaceutique/S. pharmacie/S. pharmacienne/F.() pharmacodépendance/S. pharmacodynamie/S. pharmacodynamique/S. pharmacogénétique/S. pharmacognosie/S. pharmacologie/S. pharmacologique/S. pharmacologiste/S. pharmacologue/S. pharmacomanie/S. pharmacopée/S. pharmacothérapie/S. pharmacovigilance/S. pharyngale/W.() pharyngée/F.() pharyngienne/F.() pharyngite/S. pharyngo-laryngite/S. pharynx phasage/S. phascolome/S. phase/S. phasemètre/S. phaser/a0() phasme/S. phelloderme/S. phellogène/S. phénakisticope/S. phénakistiscope/S. phénanthrène/S. phénate/S. phénicienne/F.() phénicoptère/S. phénique/S. phéniquée/F.() phénix phénobarbital/S. phénol/S. phénolique/S. phénoménale/W.() phénoménalement phénoménalisme/S. phénoménalité/S. phénomène/S. phénoménique/S. phénoménisme/S. phénoméniste/S. phénoménologie/S. phénoménologique/S. phénoménologue/S. phénotype/S. phénotypique/S. phénylalanine/S. phéochromocytome/S. phéomélanine/S. phéon/S. phéophycée/S. phéromonale/W.() phéromone/S. phi philanthrope/S. philanthropie/S. philanthropique/S. philatélie/S. philatélique/S. philatéliste/S. philharmonie/S. philharmonique/S. philippine/F.() philippique/S. philistin/S. philistinisme/S. philo/S. philodendron/S. philologie/S. philologique/S. philologiquement philologue/S. philosophale/F.() philosophe/S. philosopher/a0() philosophie/S. philosophique/S. philosophiquement philosophisme/S. philtre/S. phlébite/S. phlébographie/S. phlébologie/S. phlébologue/S. phlébotomie/S. phlegmasie/S. phlegmasique/S. phlegmon/S. phlegmoneuse/W.() phlogistique/S. phlox phlyctène/S. phobie/S. phobique/S. phocéenne/F.() phœnix pholade/S. pholiote/S. phonation/S. phonatoire/S. phonatrice/F.() phone/S. phonématique/S. phonème/S. phonémique/S. phonéticienne/F.() phonétique/S. phonétiquement phonétisme/S. phoniatrie/S. phonie/S. phonique/S. phono/S. phonogénie/S. phonogénique/S. phonogramme/S. phonogrammique/S. phonographe/S. phonographie/S. phonographique/S. phonolite/S. phonolithe/S. phonolithique/S. phonolitique/S. phonologie/S. phonologique/S. phonologiquement phonologisation/S. phonologue/S. phonométrie/S. phonothèque/S. phoque/S. phormium/S. phosgène/S. phosphatage/S. phosphatation/S. phosphate/S. phosphatée/F.() phosphater/a0a+() phosphaturie/S. phosphène/S. phosphine/S. phosphite/S. phospholipide/S. phosphore/S. phosphorée/F.() phosphorer/a0() phosphorescence/S. phosphorescente/F.() phosphoreuse/W.() phosphorique/S. phot/S. photique/S. photo/S. photocalque/S. photocatalyse/S. photocatalytique/S. photocellule/S. photochimie/S. photochimique/S. photochrome/S. photochromie/S. photochromique/S. photochromisme/S. photocomposeuse/S. photocomposition/S. photoconductivité/S. photoconductrice/F.() photocopie/S. photocopiée/F.() photocopier/a0a+() photocopieuse/F.() photodiode/S. photoélasticimétrie/S. photoélectricité/S. photoélectrique/S. photoémettrice/F.() photoémission/S. photo-finish photogène/S. photogénie/S. photogénique/S. photogramme/S. photogrammétrie/S. photographe/S. photographie/S. photographiée/F.() photographier/a0a+() photographique/S. photographiquement photograveuse/F.() photogravure/S. photohéliographe/S. photojournalisme/S. photojournaliste/S. photojournalistique/S. photolithographie/S. photoluminescence/S. photolyse/S. photomacrographie/S. photomaton/S. photomécanique/S. photomètre/S. photométrie/S. photométrique/S. photomicrographie/S. photomontage/S. photomultiplicateur/S. photon/S. photonique/S. photopériode/S. photopériodique/S. photopériodisme/S. photophobie/S. photophore/S. photopile/S. photorécepteur/S. photorésistance/S. photorésistante/F.() photo-robot photosensibilisant/S. photosensibilisante/F.() photosensibilisation/S. photosensible/S. photos-finish photosphère/S. photos-robots photostat/S. photostyle/S. photosynthèse/S. photosynthétique/S. phototactisme/S. photothèque/S. photothérapie/S. phototropisme/S. phototype/S. phototypie/S. photovoltaïque/S. phragmite/S. phrase/S. phraséologie/S. phraséologique/S. phraser/a0a+() phraseuse/F.() phrasicoter phrastique/S. phratrie/S. phréatique/S. phrénique/S. phrénologie/S. phrénologique/S. phrénologiste/S. phrénologue/S. phrygane/S. phrygienne/F.() phtalate/S. phtaléine/S. phtalique/S. phtiriase/S. phtiriasis phtisie/S. phtisiologie/S. phtisiologue/S. phtisique/S. phycoérythrine/S. phylactère/S. phylarque/S. phylétique/S. phyllade/S. phyllie/S. phyllosilicate/S. phylloxéra/S. phylloxérée/F.() phylloxérienne/F.() phylloxérique/S. phylogenèse/S. phylogénétique/S. phylogénie/S. phylogénique/S. phylogéographie/S. phylum/S. physalie/S. physalis physiatre/S. physiatrie/S. physicalisme/S. physicienne/F.() physico-chimie/S. physico-chimique/S. physico-mathématique/S. physico-théologique/S. physiocrate/S. physiocratie/S. physiocratique/S. physiognomonie/S. physiognomonique/S. physiognomoniste/S. physiographie/S. physiographique/S. physiologie/S. physiologique/S. physiologiquement physiologiste/S. physionomie/S. physionomique/S. physionomiste/S. physiopathologie/S. physiothérapie/S. physique/S. physiquement physisorption/S. physostigma/S. phytéléphas phytoalexine/S. phytoécologie/S. phytogéographie/S. phytohormone/S. phytolithe/S. phytopathologie/S. phytophage/S. phytopharmaceutique/S. phytopharmacie/S. phytophthora/S. phytoplancton/S. phytosanitaire/S. phytothérapeute/S. phytothérapie/S. phytotron/S. phytozoaire/S. pi pi/||-- piaculaire/S. piaf/S. piaffante/F.() piaffement/S. piaffer/a0() piaffeuse/F.() piaillarde/F.() piaillement/S. piailler/a0() piaillerie/S. piailleuse/F.() pian/S. pianissimo pianissimo/S. pianiste/S. pianistique/S. piano piano/S. pianoforte/S. pianotage/S. pianoter/a0a+() piassava/S. piastre/S. piaule/S. piaulement/S. piauler/a0() pibale/S. pibrock/S. pic/S. pica/S. picador/S. picage/S. picaillon/S. picardan/S. picarde/F.() picarel/S. picaresque/S. piccolo/S. pichenette/S. pichet/S. picholine/S. pickles pickpocket/S. pick-up picoler/a0a+() picoleuse/F.() picorer/a0a+() picot/S. picotée/F.() picotement/S. picoter/a0a+() picotin/S. picpoul/S. picrate/S. picridium/S. picrique/S. picris picte/S. picter/a0a+() pictogramme/S. pictographie/S. pictographique/S. picturale/W.() pidgin/S. pie/S. pièce/S. piécette/S. pied/S. pied-à-terre pied-bot pied-d'alouette pied-de-biche pied-de-cheval pied-de-chèvre pied-de-loup pied-de-mouton pied-de-poule pied-de-veau pied-d'oiseau piédestal/X. pied-noir piédouche/S. pied-plat piédroit/S. pieds-bots pieds-d'alouette pieds-de-biche pieds-de-cheval pieds-de-chèvre pieds-de-loup pieds-de-mouton pieds-de-poule pieds-de-veau pieds-d'oiseau pieds-noirs pieds-plats piéfort/S. piège/S. piégeage/S. piégée/F.() piéger/c0a+() piégeur/S. pie-grièche piémont/S. piémontaise/F.() piercing/S. piéride/S. pierraille/S. pierre/S. pierrer/a0a+() pierreries pierrette/S. pierreuse/W.() pierrier/S. pierrière/S. pierrot/S. pies-grièches pietà piétaille/S. piété/S. piétement/S. piéter/c0a+() piétin/S. piétinante/F.() piétinée/F.() piétinement/S. piétiner/a0a+() piétisme/S. piétiste/S. piétonne/F.() piétonnière/F.() piètre/S. piètrement pieu/X. pieuse/W.() pieusement pieuter/a0a+() pieuvre/S. pièze/S. piézoélectricité/S. piézoélectrique/S. piézographe/S. piézomètre/S. piézométrie/S. piézométrique/S. pif/S. piffer/a0a+() pifomètre/S. pige/S. pigeonnante/F.() pigeonne/F.() pigeonneau/X. pigeonnée/F.() pigeonner/a0a+() pigeonnier/S. piger/a0a+() pigiste/S. pigment/S. pigmentaire/S. pigmentation/S. pigmentée/F.() pigmenter/a0a+() pignada/S. pignade/S. pignatelle/S. pigne/S. pignocher/a0a+() pignon/S. pignorative/F.() pignouf/S. pilaf/S. pilage/S. pilaire/S. pilastre/S. pilchard/S. pile/S. piler/a0a+() pîler/a0() pilet/S. pileuse/F.() pileuse/W.() pilier/S. pilifère/S. pillage/S. pillarde/F.() pillée/F.() piller/a0a+() pilleuse/F.() pilocarpe/S. pilocarpine/S. pilon/S. pilonnage/S. pilonnée/F.() pilonner/a0a+() pilori/S. pilo-sébacée/F.() piloselle/S. pilosisme/S. pilosité/S. pilot/S. pilotable/S. pilotage/S. pilote/S. pilotée/F.() piloter/a0a+() pilotin/S. pilotis pilou/S. pils pilulaire/S. pilule/S. piluler/a0() pilulier/S. pilum/S. pimbêche/S. piment/S. pimentée/F.() pimenter/a0a+() pimer/a0a+() pimpante/F.() pimprenelle/S. pin/S. pinacée/S. pinacle/S. pinacothèque/S. pinaillage/S. pinailler/a0() pinailleuse/F.() pinard/S. pinardier/S. pinasse/S. pinastre/S. pince/S. pinceau/X. pincée/F.() pincée/S. pince-fesses pincelier/S. pince-maille/S. pincement/S. pince-monseigneur pince-nez pince-notes pince-oreille/S. pincer/a0a+() pince-sans-rire pinces-monseigneur pincette/S. pincharde/F.() pinçon/S. pinçure/S. pindarique/S. pindariser/a0() pindouler/a0() pinéale/W.() pineau/X. pinède/S. pineraie/S. pingler pingouin/S. ping-pong/S. pingre/S. pingrerie/S. pinière/S. pinne/S. pinnothère/S. pinnule/S. pinot/S. pin's pinson/S. pintade/S. pintadeau/X. pintadine/S. pinte/S. pinter/a0a+() pin-up pinyin piochage/S. pioche/S. piocher/a0a+() piocheuse/F.() pioger/a0() piolet/S. pioncer/a0() pionne/F.() pionner/a0() pionnière/F.() pioupiou/S. pipe/S. pipeau/X. pipée/F.() pipelette/F.() pipeline/S. piper/a0a+() piperade/S. piperie/S. pipérine/S. pipéronal/S. pipette/S. pipeuse/F.() pipi/S. pipière/F.() pipistrelle/S. pipit/S. piquage/S. piquante/F.() pique/S. pique-assiette/S. pique-bœuf/S. piquée/F.() pique-feu pique-fleurs pique-fruits pique-nique/S. pique-niquer/a0() pique-niqueuse/F.() pique-notes piquer/a0a+() piquet/S. piquetage/S. piquetée/F.() piqueter/d0a+() piquette/S. piqueur/S. piqueuse/W.() piquier/S. piquouse/S. piquouser/a0a+() piqûre/S. piranha/S. piratage/S. pirate/S. piratée/F.() pirater/a0a+() piraterie/S. piraya/S. pire pire/S. piriforme/S. pirogue/S. piroguière/F.() pirojki pirole/S. pirouette/S. pirouettement/S. pirouetter/a0() pis pis pis-aller piscicole/S. piscicultrice/F.() pisciculture/S. pisciforme/S. piscine/S. piscivore/S. pisé/S. pisolite/S. pisolithe/S. pisolithique/S. pisolitique/S. pissaladière/S. pissat/S. pisse/S. pisse-froid pissenlit/S. pisser/a0a+() pissette/S. pisseuse/F.() pisseuse/W.() pisse-vinaigre pissoir/S. pissoter/a0() pissotière/S. pistache/S. pistacher/a0a+() pistachier/S. pistage/S. pistard/S. piste/S. pistée/F.() pister/a0a+() pisteur/S. pistil/S. pistole/S. pistolet/S. pistolet-mitrailleur pistolets-mitrailleurs piston/S. pistonnée/F.() pistonner/a0a+() pistou/S. pitance/S. pitancher/a0a+() pitbull/S. pitch/S. pitchpin/S. pite/S. piter/a0() piteuse/W.() piteusement pithécanthrope/S. pithiatique/S. pithiatisme/S. pithiviers pitié/S. piton/S. pitonnage/S. pitonner/a0() pitoyable/S. pitoyablement pitre/S. pitrerie/S. pittoresque/S. pittoresquement pittosporum/S. pituitaire/S. pituite/S. pityriasis pive/S. pivert/S. pivoine/S. pivot/S. pivotage/S. pivotante/F.() pivotement/S. pivoter/a0() pixel/S. pixelisée/F.() pixeliser/a0a+() pixellisation/S. pizza/S. pizzeria/S. pizzicato/S. placage/S. placard/S. placarder/a0a+() place/S. placebo/S. placée/F.() placement/S. placenta/S. placentaire/S. placentation/S. placer/S. placer/a0a+() placette/F.() placeuse/F.() placide/S. placidement placidité/S. placier/S. placoter/a0() plafond/S. plafonnage/S. plafonnée/F.() plafonnement/S. plafonner/a0a+() plafonneur/S. plafonnier/S. plagale/W.() plage/S. plagiaire/S. plagiat/S. plagiée/F.() plagier/a0a+() plagiste/S. plaid/S. plaidante/F.() plaidée/F.() plaider/a0a+() plaideuse/F.() plaidoirie/S. plaidoyer/S. plaie/S. plaignante/F.() plain/S. plain-chant plaindre/wO() plaine/F.() plainer/a0a+() plain-pied plains-chants plainte/F.() plainte/S. plaintive/F.() plaintivement plaire/wN() plaisamment plaisance/S. plaisancier/S. plaisante/F.() plaisanter/a0a+() plaisanterie/S. plaisantin/S. plaisir/S. plan/S. planage/S. planaire/S. planar/S. planarisation/S. planche/S. planchéiage/S. planchéier/a0a+() plancher/S. plancher/a0() planchette/S. plan-concave/S. plan-convexe/S. plancton/S. planctonique/S. plane/F.() planée/F.() planéité/S. planer/a0a+() planétaire/S. planétairement planétarisation/S. planétarium/S. planète/S. planétoïde/S. planétologie/S. planétologue/S. planeuse/F.() planèze/S. planification/S. planificatrice/F.() planifiée/F.() planifier/a0a+() planimètre/S. planimétrie/S. planimétrique/S. planisme/S. planisphère/S. planiste/S. planning/S. planoir/S. planorbe/S. planque/S. planquée/F.() planquer/a0a+() plan-séquence plans-séquences plantage/S. plantaginacée/S. plantain/S. plantaire/S. plantation/S. plante/F.() plantée/F.() planter/a0a+() planteuse/F.() plantigrade/S. plantoir/S. planton/S. plantule/S. plantureuse/W.() plantureusement planure/S. plaquage/S. plaque/S. plaquée/F.() plaquemine/S. plaqueminier/S. plaquer/a0a+() plaquette/S. plaqueuse/F.() plaquiste/S. plasma/S. plasmagène/S. plasmatique/S. plasmide/S. plasmifier/a0a+() plasmique/S. plasmocyte/S. plasmode/S. plasmodium/S. plasmolyse/S. plaste/S. plastic/S. plasticage/S. plasticienne/F.() plasticine/S. plasticité/S. plastie/S. plastifiante/F.() plastification/S. plastifiée/F.() plastifier/a0a+() plastigel/S. plastination/S. plastiquage/S. plastique/S. plastiquée/F.() plastiquement plastiquer/a0a+() plastiqueur/S. plastisol/S. plastron/S. plastronner/a0a+() plasturgie/S. plasturgique/S. plasturgiste/S. platane/S. plataniste/S. plate/F.() plateau/X. plate-bande platée/S. plate-forme platelage/S. platement plateresque/S. plates-bandes plates-formes plathelminthe/S. platière/S. platinage/S. platine/S. platinée/F.() platiner/a0a+() platiniser/a0a+() platinocyanure/S. platitude/S. platonicienne/F.() platonique/S. platoniquement platonisme/S. plâtrage/S. plâtre/S. plâtrée/F.() plâtrée/S. plâtrer/a0a+() plâtrerie/S. plâtreuse/W.() plâtrière/F.() plausibilité/S. plausible/S. plausiblement play-back play-boy/S. playon/S. pléban/S. plèbe/S. plébéienne/F.() plébiscitaire/S. plébiscite/S. plébiscitée/F.() plébisciter/a0a+() plecquer/a0() plectre/S. pléiade/S. pleine/F.() pleinement plein-emploi pleins-temps pleins-vents plein-temps plein-vent pléistocène/S. plénière/F.() plénièrement plénipotentiaire/S. plénitude/S. plénum/S. pléonasme/S. pléonastique/S. plérôme/S. plésiomorphe/S. plésiosaure/S. pléthore/S. pléthorique/S. pleur/S. pleurage/S. pleurale/W.() pleurante/F.() pleurarde/F.() pleure-misère pleurer/a0a+() pleurésie/S. pleurétique/S. pleureuse/F.() pleurite/S. pleurnicharde/F.() pleurnichement/S. pleurnicher/a0() pleurnicherie/S. pleurnicheuse/F.() pleurobranche/S. pleurodynie/S. pleuronecte/S. pleuronectiforme/S. pleuropneumonie/S. pleurote/S. pleurotomie/S. pleutre/S. pleutrerie/S. pleuvasser/a9() pleuviner/a9() pleuvioter/a9() pleuvoir/pZ() pleuvoter/a9() plèvre/S. plexiglas plexus pleyon/S. pli/S. pliable/S. pliage/S. pliante/F.() plie/S. pliée/F.() pliement/S. plier/a0a+() plieuse/F.() plinthe/S. pliocène/S. plioir/S. plique/S. plissage/S. plissée/F.() plissement/S. plisser/a0a+() plisseuse/F.() plissure/S. pliure/S. ploc ploiement/S. plomb/S. plombage/S. plombagine/S. plombe/S. plombée/F.() plomber/a0a+() plomberie/S. plombeur/S. plombeuse/W.() plombière/F.() plombifère/S. plomboir/S. plombure/S. plommée/S. plonge/S. plongeable/S. plongeante/F.() plongement/S. plongeoir/S. plongeon/S. plonger/a0a+() plongeuse/F.() ploquer/a0a+() plot/S. plouc/S. plouf plouk/S. ploutocrate/S. ploutocratie/S. ploutocratique/S. ployable/S. ployer/a0a+() pluche/S. plucher/a0() plucheuse/W.() pluie/S. plumage/S. plumaison/S. plumard/S. plumasserie/S. plumassière/F.() plume/S. plumeau/X. plumée/F.() plumer/a0a+() plumet/S. plumetée/F.() plumetis plumeuse/F.() plumeuse/W.() plumier/S. plumitif/S. plum-pudding/S. plumule/S. plupart plurale/W.() pluralisation/S. pluralisme/S. pluraliste/S. pluralité/S. pluriannuelle/F.() pluricellulaire/S. pluridisciplinaire/S. pluridisciplinarité/S. plurielle/F.() plurilatérale/W.() plurilingue/S. plurilinguisme/S. plurinationale/W.() pluripartisme/S. pluripotente/F.() plurisousharmonique/S. plurivalente/F.() plurivoque/S. plus plusieurs plus-que-parfait/S. plus-value/S. pluton/S. plutonienne/F.() plutonigène/S. plutonique/S. plutonisme/S. plutonium/S. plutôt pluviale/W.() pluvian/S. pluvier/S. pluvieuse/W.() pluviner/a9() pluviomètre/S. pluviométrie/S. pluviométrique/S. pluviôse/S. pluviosité/S. pneu/S. pneumatique/S. pneumatologie/S. pneumatophore/S. pneumatothérapie/S. pneumectomie/S. pneumoconiose/S. pneumocoque/S. pneumogastrique/S. pneumographie/S. pneumologie/S. pneumologue/S. pneumonie/S. pneumonique/S. pneumopathie/S. pneumothorax po/||-- pochade/S. pochage/S. pocharde/F.() pocharder/a0a+() pochardise/S. poche/S. pochée/F.() pocher/a0a+() pochetée/S. pochetronner/a0a+() pochette/S. pochettes-surprises pochette-surprise pocheuse/S. pochoir/S. pochon/S. pochouse/S. podagre/S. podaire/S. podcast/S. podcasteuse/F.() podcasting/S. podestat/S. podium/S. podologie/S. podologue/S. podomètre/S. podoscaphe/S. podzol/S. podzolique/S. podzoliser/a0a+() pœcilandrie/S. pœcile/S. pœcilitique/S. pœcilogynie/S. pœcilotherme/S. pœcilothermie/S. poêle/S. poêlée/F.() poêler/a0a+() poêlon/S. poème/S. poésie/S. poète/S. poétereau/X. poétesse/S. poétique/S. poétiquement poétiser/a0a+() pogne/S. pogner/a0a+() pognon/S. pogrom/S. poids poignante/F.() poignard/S. poignardée/F.() poignarder/a0a+() poigne/S. poignée/S. poignet/S. poïkilotherme/S. poïkilothermie/S. poil/S. poilante/F.() poiler/a0a+() poilue/F.() poinçon/S. poinçonnage/S. poinçonnée/F.() poinçonnement/S. poinçonner/a0a+() poinçonneuse/F.() poindre/wB() poing/S. point point/S. pointage/S. pointal/X. pointe/S. pointeau/X. pointée/F.() pointer/S. pointer/a0a+() pointeuse/F.() pointillage/S. pointillé/S. pointillée/F.() pointiller/a0a+() pointilleuse/W.() pointillisme/S. pointilliste/S. points-virgules pointue/F.() pointure/S. point-virgule poire/S. poireau/X. poireauter/a0() poirée/F.() poirier/S. poiroter/a0() pois poiscaille/S. poise/S. poiseuille/S. poison/S. poissarde/F.() poisse/S. poisser/a0a+() poisseuse/W.() poisson/S. poisson-chat poisson-clown poissonnerie/S. poissonneuse/W.() poissonnière/F.() poissons-chats poissons-clowns poitevine/F.() poitrail/S. poitrinaire/S. poitrine/S. poitrinière/S. poivrade/S. poivre/S. poivrée/F.() poivrer/a0a+() poivrière/F.() poivron/S. poivrote/F.() poivroter/a0a+() poix poker/S. polacre/S. polaire/S. polaque/S. polar/S. polard/S. polarimètre/S. polarisable/S. polarisante/F.() polarisation/S. polarisatrice/F.() polariscope/S. polarisée/F.() polariser/a0a+() polariseur/S. polarité/S. polaroid/S. polatouche/S. polder/S. pôle/S. polémarque/S. polémique/S. polémiquer/a0() polémiste/S. polémologie/S. polenta/S. police/S. policée/F.() policeman/S. policer/a0a+() polichinelle/S. policière/F.() policlinique/S. polie/F.() poliment polio/S. poliomyélite/S. poliomyélitique/S. poliorcétique/S. polir/f0f+() polissable/S. polissage/S. polisseuse/F.() polissoir/S. polissoire/S. polissonne/F.() polissonner/a0() polissonnerie/S. polissure/S. politesse/S. politicarde/F.() politicienne/F.() politique/S. politiquement politiquer/a0() politisation/S. politisée/F.() politiser/a0a+() politologie/S. politologique/S. politologue/S. polka/S. pollen/S. pollinique/S. pollinisation/S. pollinisatrice/F.() polliniser/a0a+() pollinose/S. polluante/F.() polluée/F.() polluer/a0a+() pollueuse/F.() pollupostage/S. polluposteuse/F.() pollution/S. polo/S. polochon/S. polonaise/F.() polonium/S. poltronne/F.() poltronnerie/S. polyacide/S. polyacrylate/S. polyacrylique/S. polyakène/S. polyalcool/S. polyamide/S. polyamine/S. polyandre/S. polyandrie/S. polyarthrite/S. polybasique/S. polycarbonate/S. polycentrique/S. polycentrisme/S. polycéphale/S. polycercle/S. polychlorure/S. polychroïsme/S. polychrome/S. polychromie/S. polyclinique/S. polycondensat/S. polycondensation/S. polycopie/S. polycopiée/F.() polycopier/a0a+() polycristalline/F.() polyculture/S. polycycle/S. polycyclique/S. polydactyle/S. polydactylie/S. polydisque/S. polyédrale/W.() polyèdre/S. polyédrique/S. polyélectrolyte/S. polyembryonie/S. polyester/S. polyéther/S. polyéthylène/S. polygala/S. polygale/S. polygame/S. polygamie/S. polygamique/S. polygénisme/S. polygéniste/S. polyglobulie/S. polyglotte/S. polygonale/W.() polygonation/S. polygone/S. polygraphe/S. polygraphie/S. polyimide/S. polyiodure/S. polylobée/F.() polymathe/S. polymathie/S. polymathique/S. polymérase/S. polymère/S. polymérisable/S. polymérisation/S. polymériser/a0a+() polymétallique/S. polymorphe/S. polymorphie/S. polymorphique/S. polymorphisme/S. polynésienne/F.() polynévrite/S. polynôme/S. polynomiale/W.() polynucléaire/S. polyoside/S. polype/S. polypeptide/S. polypeptidique/S. polypétale/S. polypeuse/W.() polyphasée/F.() polyphénol/S. polyphonie/S. polyphonique/S. polyphosphate/S. polyphylétique/S. polypier/S. polyploïde/S. polyploïdie/S. polypode/S. polypore/S. polyptère/S. polyptyque/S. polyrythmie/S. polysaccharide/S. polysème/S. polysémie/S. polysémique/S. polysoc/S. polystyle/S. polystyrène/S. polysulfure/S. polysyllabe/S. polysyllabique/S. polysynodie/S. polysynthétique/S. polytechnicienne/F.() polytechnique/S. polyterpène/S. polythéisme/S. polythéiste/S. polythène/S. polytonale/W.() polytonique/S. polytope/S. polytoxicomanie/S. polytraumatisée/F.() polytraumatisme/S. polytric/S. polyurie/S. polyvalence/S. polyvalente/F.() polyvinyle/S. polyvinylique/S. polyvitamine/S. polyxène/S. pomélo/S. poméranienne/F.() pomerium/S. pommade/S. pommader/a0a+() pommard/S. pomme/S. pommeau/X. pommée/F.() pommelée/F.() pommeler/d0a+() pommer/a0() pommeraie/S. pommetée/F.() pommette/S. pommier/S. pomologie/S. pomologique/S. pomologiste/S. pomologue/S. pompage/S. pompe/S. pompée/F.() pompéienne/F.() pomper/a0a+() pompette/S. pompeuse/F.() pompeuse/W.() pompeusement pompière/F.() pompiérisme/S. pompile/S. pompiste/S. pompon/S. pomponnée/F.() pomponner/a0a+() ponant/S. ponantaise/F.() ponçage/S. ponce/S. ponceau/X. poncée/F.() poncelet/S. poncer/a0a+() ponceuse/F.() ponceuse/W.() poncho/S. poncif/S. ponction/S. ponctionner/a0a+() ponctualité/S. ponctuation/S. ponctuée/F.() ponctuelle/F.() ponctuellement ponctuer/a0a+() pondaison/S. pondérable/S. pondérale/W.() pondération/S. pondératrice/F.() pondérée/F.() pondérer/c0a+() pondéreuse/W.() pondeuse/F.() pondoir/S. pondre/tA() poney/S. pongé/S. pongée/S. pongiste/S. pontage/S. ponte/F.() pontée/F.() ponter/a0a+() pontet/S. pontier/S. pontife/S. pontifiante/F.() pontificale/W.() pontificat/S. pontifier/a0() pontil/S. pontiller/a0a+() pont-levis ponton/S. pontonnier/S. pont-promenade ponts-levis ponts-promenades pontuseau/X. pool/S. pop pop-corn pope/S. popeline/S. poplitée/F.() popote/S. popotin/S. populace/S. populacière/F.() populage/S. populaire/S. populairement popularisation/S. popularisée/F.() populariser/a0a+() popularité/S. population/S. populationniste/S. populéum/S. populeuse/W.() populicultrice/F.() populiculture/S. populisme/S. populiste/S. populo/S. popup/S. poquer/a0() poquet/S. porc/S. porcelaine/S. porcelainière/F.() porcelet/S. porc-épic porchaison/S. porche/S. porchère/F.() porcherie/S. porcine/F.() porcs-épics pore/S. poreuse/W.() porion/S. porno/S. pornographe/S. pornographie/S. pornographique/S. porosité/S. porphyra/S. porphyre/S. porphyrine/S. porphyrique/S. porphyriser/a0a+() porphyrogénète/S. porphyroïde/S. porque/S. porreau/X. porrection/S. porridge/S. port/S. portabilité/S. portable/S. portage/S. portail/S. portance/S. portante/F.() portative/F.() porte/F.() porte-aéronefs porte-à-faux porte-affiche/S. porte-aigle/S. porte-aiguille/S. porte-allumettes porte-amarre/S. porte-à-porte porte-avions porte-bagages porte-baïonnette/S. porte-balais porte-bannière/S. porte-barges porte-bébé/S. porte-billets porte-bois porte-bonheur porte-bouquet/S. porte-bouteilles porte-brancard/S. porte-cartes porte-chapeau/X. porte-cigares porte-cigarettes porte-clefs porte-clés porte-conteneurs porte-copie/S. porte-couteau/X. porte-crayon/S. porte-croix porte-crosse/S. porte-documents porte-drapeau/X. portée/F.() portée/S. porte-enseigne/S. porte-épée/S. porte-étendard/S. porte-étriers porte-étrivière/S. portefaix porte-fanion/S. porte-fenêtre portefeuille/S. porte-fort porte-glaive/S. porte-greffe/S. porte-hauban/S. porte-hélicoptères porte-jarretelles porte-jupe/S. porte-lame/S. porte-malheur portemanteau/X. portement/S. porte-menu/S. portemine/S. porte-monnaie porte-montre/S. porte-mors porte-musique porte-objet/S. porte-outil/S. porte-papier porte-parapluie/S. porte-parole porte-plume/S. porte-queue/S. porter/a0a+() porte-revues porterie/S. porte-savon/S. porte-serviette porte-serviette/S. portes-fenêtres porte-trait/S. porteuse/F.() porte-vent porte-voix portfolio/S. portière/F.() portillon/S. portion/S. portionnaire/S. portique/S. portland/S. portlandien/S. porto/S. portoir/S. portor/S. portrait/S. portraitiste/S. portrait-robot portraits-robots portraiturer/a0a+() portuaire/S. portugaise/F.() portulan/S. portune/S. posada/S. pose/S. posée/F.() posément posemètre/S. poser/a0a+() poseuse/F.() position/S. positionnelle/F.() positionnement/S. positionner/a0a+() positive/F.() positivement positiver/a0a+() positivisme/S. positiviste/S. positivité/S. positon/S. positonium/S. positron/S. positronium/S. posologie/S. posologique/S. possédante/F.() possédée/F.() posséder/c0a+() possesseur/S. possession/S. possessionnelle/F.() possessive/F.() possessivité/S. possessoire/S. possibilité/S. possible/S. possiblement post-abortum postage/S. postale/W.() postclassique/S. postcombustion/S. postcommunion/S. postcondition/S. postcure/S. postdatée/F.() postdater/a0a+() postdoctorale/W.() postdoctorante/F.() postdoctorat/S. poste/S. poste-à-poste postée/F.() poster/S. poster/a0a+() postérieure/F.() postérieurement posteriori postériorité/S. postérité/S. postface/S. postglaciaire/S. posthite/S. posthume/S. posthypophyse/S. postiche/S. posticher/a0() posticheur/S. postière/F.() postillon/S. postillonner/a0() postindustrielle/F.() post-it postlude/S. post-marché/S. postmoderne/S. postmodernisme/S. postmoderniste/S. postmodernité/S. postnatale/F.() postopératoire/S. post-partum postposer/a0a+() postposition/S. postproduction/S. postromantique/S. postscolaire/S. post-scriptum post-soixante-huitarde/F.() postsonorisation/S. postsynchronisation/S. postsynchroniser/a0a+() post-tonique/S. post-traumatique/S. postulante/F.() postulat/S. postulation/S. postuler/a0a+() posturale/W.() posture/S. potable/S. potache/S. potage/S. potager/S. potagère/F.() potamochère/S. potamologie/S. potamot/S. potard/S. potasse/S. potassée/F.() potasser/a0a+() potasseur/S. potassique/S. potassium/S. pot-au-feu pot-de-vin pote/F.() poteau/X. potée/S. potelée/F.() potelet/S. potence/S. potencée/F.() potentat/S. potentialisation/S. potentialiser/a0a+() potentialiste/S. potentialité/S. potentielle/F.() potentiellement potentille/S. potentiomètre/S. poter/a0() poterie/S. poterne/S. potestative/F.() potiche/S. potière/F.() potin/S. potiner/a0() potinière/F.() potion/S. potiron/S. potlatch potomètre/S. pot-pourri pots-de-vin pots-pourris potto/S. pou/X. pouacre/S. pouah poubelle/S. pouce/S. pouce-pied pouces-pieds poucettes poucier/S. pou-de-soie poudingue/S. poudrage/S. poudre/S. poudrée/F.() poudrer/a0a+() poudrerie/S. poudrette/S. poudreuse/W.() poudrière/F.() poudroiement/S. poudroyer pouf/S. pouffer/a0() pouffiasse/S. pouillard/S. pouille/S. pouillé/S. pouiller/a0a+() pouillerie/S. pouilleuse/W.() pouillot/S. poujadisme/S. poulailler/S. poulaine/F.() poularde/S. poulbot/S. poule/S. poulet/S. poulette/S. pouliche/S. poulie/S. pouliner/a0() poulinière/S. pouliot/S. poulote/F.() poulpe/S. pouls poult-de-soie poults-de-soie poumon/S. poupard/S. poupe/S. poupée/S. poupine/F.() poupon/S. pouponnée/F.() pouponner/a0() pouponnière/S. pour pourboire/S. pourceau/X. pour-cent pourcentage/S. pourchassée/F.() pourchasser/a0a+() pourcompte/S. pourfendeur/S. pourfendre/tA() pourfendue/F.() pourlécher/c0a+() pourparlers pourpier/S. pourpoint/S. pourpre/S. pourprée/F.() pourprer/a0a+() pourprine/F.() pourquoi pourridié/S. pourrie/F.() pourriel/S. pourrir/f0f+() pourrissage/S. pourrissante/F.() pourrissement/S. pourrissoir/S. pourriture/S. pour-soi poursuite/S. poursuivante/F.() poursuiveuse/F.() poursuivie/F.() poursuivre/xQ() pourtant pourtour/S. pourvoi/S. pourvoir/pJ() pourvoirie/S. pourvoyeuse/F.() pourvue/F.() poussage/S. poussah/S. pousse/S. pousse-café pousse-cailloux pousse-cul poussée/F.() poussée/S. pousse-pied pousse-pousse pousser/a0a+() pousse-toc poussette/S. pousseur/S. pousse-wagon poussier/S. poussière/S. poussiéreuse/W.() poussine/F.() poussinière/S. poussive/F.() poussivement poussoir/S. poutargue/S. pout-de-soie poutine/S. poutraison/S. poutre/S. poutrelle/S. pouts-de-soie poutser/a0a+() pouture/S. pouvoir/S. pouvoir/pA() poux-de-soie pouzzolane/S. pp ppb/||-- ppm/||-- ppp ppq/||-- ppt/||-- pragmatique/S. pragmatiquement pragmatisme/S. pragmatiste/S. praire/S. prairial/S. prairie/S. pralin/S. pralinage/S. praline/S. pralinée/F.() praliner/a0a+() prame/S. prao/S. praséodyme/S. praticabilité/S. praticable/S. praticienne/F.() praticité/S. pratiquante/F.() pratique/S. pratiquée/F.() pratiquement pratiquer/a0a+() praxéologie/S. praxis pré/S. préachetable/S. préacheter/b0a+() préactionneur/S. préadamisme/S. préadamite/S. préadolescence/S. préalable/S. préalablement préalpine/F.() préambule/S. préardennaise/F.() préau/X. préavis préaviser/a0a+() prébende/S. prébendée/F.() prébendier/S. prébiotique/S. précaire/S. précairement précambrienne/F.() précampagne/S. précarisation/S. précarisée/F.() précariser/a0a+() précarité/S. précaution/S. précautionnée/F.() précautionner/a0a+() précautionneuse/W.() précautionneusement précédemment précédence/S. précédente/F.() précéder/c0a+() préceinte/S. précellence/S. précepte/S. préceptorat/S. préceptrice/F.() précéramique/S. précession/S. préchambre/S. préchargée/F.() préchargement/S. précharger/a0a+() préchauffage/S. préchauffe/S. préchauffée/F.() préchauffer/a0a+() prêche/S. prêcher/a0a+() prêcheuse/F.() prêchi-prêcha précieuse/W.() précieusement préciosité/S. précipice/S. précipitamment précipitation/S. précipitée/F.() précipiter/a0a+() préciput/S. préciputaire/S. précis précise/F.() précisément préciser/a0a+() précision/S. précitée/F.() précoce/S. précocement précocité/S. précognition/S. précolombienne/F.() précombustion/S. précompilation/S. précompte/S. précompter/a0a+() préconception/S. préconçue/F.() précondition/S. préconisateur/S. préconisation/S. préconisée/F.() préconiser/a0a+() préconiseur/S. préconscient/S. préconsciente/F.() précontrainte/F.() précordiale/W.() précuisson/S. précuite/F.() précurseur/S. prédatée/F.() prédation/S. prédatrice/F.() prédécesseur/S. prédécoupée/F.() prédéfinie/F.() prédéfinir/f0f+() prédestination/S. prédestinée/F.() prédestiner/a0a+() prédétermination/S. prédéterminée/F.() prédéterminer/a0a+() prédéterminisme/S. prédicable/S. prédicant/S. prédicat/S. prédication/S. prédicative/F.() prédicatrice/F.() prédictibilité/S. prédiction/S. prédictive/F.() prédigérée/F.() prédilection/S. prédiquer/a0a+() prédire/yD() prédisposée/F.() prédisposer/a0a+() prédisposition/S. prédite/F.() prédominance/S. prédominante/F.() prédominer/a0() préélectorale/W.() préemballée/F.() prééminence/S. prééminente/F.() préemptée/F.() préempter/a0a+() préemption/S. préencollée/F.() préétablie/F.() préétablir/f0f+() préexistante/F.() préexistence/S. préexister/a0() préfabrication/S. préfabriquée/F.() préface/S. préfacée/F.() préfacer/a0a+() préfacier/S. préfanage/S. préfectorale/W.() préfecture/S. préférable/S. préférablement préférée/F.() préférence/S. préférentielle/F.() préférentiellement préférer/c0a+() préfète/F.() préfiguration/S. préfigurer/a0a+() préfinancement/S. préfixation/S. préfixe/S. préfixée/F.() préfixer/a0a+() préfixion/S. préfloraison/S. préfoliation/S. préformatage/S. préformatée/F.() préformation/S. préforme/S. préformée/F.() préformer/a0a+() prégénérateur/S. prégéodésique/S. préglaciaire/S. prégnance/S. prégnante/F.() préhellénique/S. préhenseur/S. préhensile/S. préhension/S. préhistoire/S. préhistorienne/F.() préhistorique/S. préhomogène/S. préhospitalière/F.() préimplantation/S. préindustrielle/F.() préislamique/S. préjudice/S. préjudiciable/S. préjudicielle/F.() préjudicier/a0() préjugé/S. préjuger/a0a+() prélart/S. prélasser/a0a+() prélat/S. prélatine/F.() prélature/S. prélavage/S. prèle/S. prêle/S. prélegs prélevée/F.() prélèvement/S. prélever/b0a+() préliminaire/S. préliminairement prélogique/S. prélude/S. préluder/a0() prématurée/F.() prématurément prématurité/S. prémédication/S. préméditation/S. préméditée/F.() préméditer/a0a+() prémenstruelle/F.() prémices première/F.() premièrement première-née premières-nées premier-maître premier-né premiers-maîtres premiers-nés prémilitaire/S. prémisse/S. prémolaire/S. prémonition/S. prémonitoire/S. prémontrée/F.() prémunie/F.() prémunir/f0f+() prémunition/S. prenable/S. prenante/F.() prénatale/F.() prendre/tF() preneuse/F.() prénom/S. prénommée/F.() prénommer/a0a+() prénormale/W.() prénuptiale/W.() préoccupante/F.() préoccupation/S. préoccupée/F.() préoccuper/a0a+() préopératoire/S. préorale/W.() préouverture/S. préparatif/S. préparation/S. préparatoire/S. préparatrice/F.() préparée/F.() préparer/a0a+() prépayée/F.() prépayer/a0a+() prépension/S. prépensionnée/F.() prépensionner/a0a+() prépondérance/S. prépondérante/F.() préposée/F.() préposer/a0a+() préposition/S. prépositionnelle/F.() prépositionner/a0a+() prépositive/F.() prépositivement prépotence/S. préprocesseur/S. préproduction/S. préprogrammée/F.() prépsychotique/S. prépublication/S. prépuce/S. préraphaélite/S. prérégler/c0a+() prérequis préretraite/S. prérogative/S. préromane/F.() préromantique/S. préromantisme/S. près présage/S. présager/a0a+() présalaire/S. pré-salé présanctifiée/F.() presbyopie/S. presbyte/S. presbytérale/W.() presbytère/S. presbytérianisme/S. presbytérienne/F.() presbytie/S. presbytisme/S. préschéma/S. prescience/S. presciente/F.() préscolaire/S. prescriptible/S. prescription/S. prescriptive/F.() prescriptrice/F.() prescrire/y1() prescrite/F.() préséance/S. présélecteur/S. présélection/S. présélectionnée/F.() présélectionner/a0a+() présence/S. présent/S. présentable/S. présentatif/S. présentation/S. présentatrice/F.() présente/F.() présentée/F.() présentéisme/S. présentement présenter/a0a+() présentoir/S. présérie/S. préservatif/S. préservation/S. préservatrice/F.() préservée/F.() préserver/a0a+() présidée/F.() présidence/S. président-directeur présidente/F.() présidente-directrice présidentes-directrices présidentiable/S. présidentialisation/S. présidentialisme/S. présidentielle/F.() présidents-directeurs présider/a0a+() présidial/X. présidium/S. présocratique/S. présomption/S. présomptive/F.() présomptueuse/W.() présomptueusement présonorisation/S. presque presqu'île/S. pressage/S. prés-salés pressante/F.() press-book/S. presse/S. presse-agrumes presse-bouton presse-citron/S. pressée/F.() presse-étoupe/S. presse-fruits pressentie/F.() pressentiment/S. pressentir/i5i+() presse-papiers presse-purée presser/a0a+() presse-raquette/S. presseuse/F.() presse-viande pressier/S. pressing/S. pression/S. pressoir/S. pressostat/S. pressurage/S. pressurée/F.() pressurer/a0a+() pressureuse/F.() pressurisation/S. pressurisée/F.() pressuriser/a0a+() pressuriseur/S. prestance/S. prestant/S. prestataire/S. prestation/S. preste/S. prestement prester/a0a+() prestesse/S. prestidigitation/S. prestidigitatrice/F.() prestige/S. prestigieuse/W.() prestissimo prestissimo/S. presto présumable/S. présumée/F.() présumer/a0a+() présupposée/F.() présupposer/a0a+() présupposition/S. présure/S. présurer/a0a+() prêt/S. prétantaine/S. prêt-à-porter prêt-bail prêtée/F.() prétendante/F.() prétendre/tA() prétendue/F.() prétendument prête-nom/S. prétentaine/S. prétentiarde/F.() prétentieuse/W.() prétentieusement prétention/S. prêter/a0a+() prétérit/S. prétérition/S. préteuse/F.() prêteuse/F.() prétexte/S. prétexter/a0a+() pretintaille/S. prétoire/S. prétoriale/W.() prétorienne/F.() prétraitement/S. prêtresse/F.() prêtrise/S. prêts-à-porter prêts-bails préture/S. preuve/S. preux prévalence/S. prévaloir/pN() prévarication/S. prévaricatrice/F.() prévariquer/a0() prévenance/S. prévenante/F.() prévenir/i0i+() prévention/S. préventive/F.() préventivement préventorium/S. prévenue/F.() préverbe/S. prévisibilité/S. prévisible/S. prévision/S. prévisionnelle/F.() prévisionniste/S. prévisualisation/S. prévisualiser/a0a+() prévoir/pF() prévôt/S. prévôtale/W.() prévôté/S. prévoyance/S. prévoyante/F.() prévue/F.() priante/F.() priapée/S. priapisme/S. prie-Dieu priée/F.() prier/a0a+() prière/S. prieure/F.() prieuré/S. prima-donna/I. primage/S. primaire/S. primale/W.() primalité/S. primariser/a0a+() primarité/S. primat/S. primate/S. primatiale/W.() primatie/S. primatologie/S. primatologue/S. primauté/S. prime/S. primée/F.() primer/a0a+() primerose/S. primesautière/F.() primeur/S. primeuriste/S. primevère/S. primidi/S. primipare/S. primipilaire/S. primipile/S. primitive/F.() primitivement primitivisme/S. primo primogéniture/S. primo-infection/S. primordiale/W.() primordialement primulacée/S. prince-de-galles princeps princesse/F.() princière/F.() princièrement principalat/S. principale/W.() principalement principat/S. principauté/S. principe/S. printanière/F.() printanisation/S. printemps priodonte/S. prion/S. priorat/S. priori prioriser/a0a+() prioritaire/S. prioritairement priorité/S. prise/F.() prise/S. prisée/F.() priser/a0a+() priseuse/F.() prismatique/S. prismatiquement prisme/S. prison/S. prisonnière/F.() privat-docent/S. privat-dozent/S. privation/S. privatique/S. privatisation/S. privatisée/F.() privatiser/a0a+() privative/F.() privatrice/F.() privauté/S. privée/F.() priver/a0a+() privilège/S. privilégiée/F.() privilégier/a0a+() prix pro/S. proactive/F.() proactivité/S. proarthropode/S. probabilisable/S. probabilisée/F.() probabilisme/S. probabiliste/S. probabilité/S. probable/S. probablement probante/F.() probation/S. probatique/S. probatoire/S. probe/S. prober/a0a+() probité/S. problématique/S. problème/S. procaryote/S. procédé/S. procéder/c0() procédurale/W.() procédure/S. procédurière/F.() procès processeur/S. procession/S. processionnaire/S. processionnelle/F.() processionnellement processionner/a0() processive/F.() processus procès-verbal/X. prochaine/F.() prochainement proche/S. prochinoise/F.() proclamation/S. proclamée/F.() proclamer/a0a+() proclitique/S. proconsul/S. proconsulaire/S. proconsulat/S. procrastination/S. procréation/S. procréatrice/F.() procréer/a0a+() proctalgie/S. proctite/S. proctologie/S. proctologue/S. proctorrhée/S. procuratie/S. procuration/S. procuratrice/F.() procurer/a0a+() procureure/S. procureuse/F.() procyclique/S. prodigalité/S. prodige/S. prodigieuse/W.() prodigieusement prodigue/S. prodiguer/a0a+() prodrome/S. prodromique/S. productible/S. production/S. productique/S. productive/F.() productivisme/S. productiviste/S. productivité/S. productrice/F.() produire/yM() produit/S. produite/F.() proéminence/S. proéminente/F.() prof/S. profanation/S. profanatrice/F.() profane/S. profanée/F.() profaner/a0a+() proférée/F.() proférer/c0a+() profès professe/S. professée/F.() professer/a0a+() professeure/F.() profession/S. professionnalisation/S. professionnalisée/F.() professionnaliser/a0a+() professionnalisme/S. professionnelle/F.() professionnellement professorale/W.() professorat/S. profil/S. profilage/S. profilée/F.() profiler/a0a+() profit/S. profitabilité/S. profitable/S. profitablement profiter/a0() profiterole/S. profiteuse/F.() profonde/F.() profondément profondeur/S. profuse/F.() profusément profusion/S. progénitrice/F.() progéniture/S. progestative/F.() progestérone/S. progiciel/S. proglottis prognathe/S. prognathisme/S. programmable/S. programmation/S. programmatique/S. programmatiquement programmatrice/F.() programme/S. programmée/F.() programmer/a0a+() programmeuse/F.() programmiste/S. progrès progresser/a0() progression/S. progressisme/S. progressiste/S. progressive/F.() progressivement progressivité/S. prohibée/F.() prohiber/a0a+() prohibition/S. prohibitionnisme/S. prohibitionniste/S. prohibitive/F.() proie/S. projecteur/S. projectile/S. projection/S. projectionniste/S. projective/F.() projectivement projectivisée/F.() projecture/S. projet/S. projetable/S. projetée/F.() projeter/d0a+() projeteur/S. prolactine/S. prolamine/S. prolan/S. prolapsus prolégomènes prolepse/S. prolétaire/S. prolétariat/S. prolétarienne/F.() prolétarisation/S. prolétariser/a0a+() prolifération/S. proliférer/c0() prolificité/S. prolifique/S. prolixe/S. prolixité/S. prolo/S. prologue/S. prolongateur/S. prolongation/S. prolongeable/S. prolongée/F.() prolongement/S. prolonger/a0a+() promenade/S. promener/b0a+() promeneuse/F.() promenoir/S. promesse/S. prométhéenne/F.() prométhéum/S. prometteuse/F.() promettre/vA() promiscuité/S. promise/F.() promo/S. promontoire/S. promotion/S. promotionnaire/S. promotionnelle/F.() promotionner/a0a+() promotrice/F.() promouvoir/pH() prompte/F.() promptement prompteur/S. promptitude/S. promue/F.() promulgation/S. promulguée/F.() promulguer/a0a+() pronaos pronation/S. pronatrice/F.() prônée/F.() prôner/a0a+() prôneuse/F.() pronom/S. pronominale/W.() pronominalement prononçable/S. prononcée/F.() prononcer/a0a+() prononciation/S. pronostic/S. pronostiquée/F.() pronostiquer/a0a+() pronostiqueuse/F.() pronunciamiento/S. propagande/S. propagandiste/S. propagation/S. propagatrice/F.() propagée/F.() propager/a0a+() propagule/S. propanal/S. propane/S. propanier/S. propanoïque/S. proparoxyton/S. propective/S. propédeute/S. propédeutique/S. propène/S. propension/S. propergol/S. propérispomène/S. propharmacienne/F.() prophase/S. prophète/S. prophétesse/S. prophétie/S. prophétique/S. prophétiquement prophétisée/F.() prophétiser/a0a+() prophétisme/S. prophylactique/S. prophylaxie/S. propice/S. propionique/S. propitiation/S. propitiatoire/S. propolis proportion/S. proportionnalité/S. proportionnée/F.() proportionnelle/F.() proportionnellement proportionner/a0a+() propos proposable/S. proposée/F.() proposer/a0a+() proposition/S. propositionnelle/F.() propre/S. propre-à-rien proprement propres-à-rien propreté/S. propréteur/S. proprette/F.() propréture/S. propriétaire/S. propriété/S. proprio/S. proprioceptive/F.() propulsée/F.() propulser/a0a+() propulseur/S. propulsion/S. propulsive/F.() propylée/S. propylène/S. prorata prorogation/S. prorogative/F.() prorogée/F.() proroger/a0a+() prosaïque/S. prosaïquement prosaïsme/S. prosateur/S. proscenium/S. proscripteur/S. proscription/S. proscrire/y1() proscrite/F.() prose/S. prosecteur/S. prosectorat/S. prosélyte/S. prosélytisme/S. prosimien/S. prosociale/W.() prosodie/S. prosodier/a0a+() prosodique/S. prosopopée/S. prospect/S. prospectée/F.() prospecter/a0a+() prospection/S. prospective/F.() prospectrice/F.() prospectus prospérer/c0() prospérité/S. prostaglandine/S. prostate/S. prostatectomie/S. prostatique/S. prostatisme/S. prosternation/S. prosternée/F.() prosternement/S. prosterner/a0a+() prosthèse/S. prosthétique/S. prostituée/F.() prostituer/a0a+() prostitution/S. prostration/S. prostrée/F.() prostyle/S. protactinium/S. protagoniste/S. protase/S. prote/S. protéase/S. protection/S. protectionnelle/F.() protectionnisme/S. protectionniste/S. protectorat/S. protectrice/F.() protée/S. protège-cahier/S. protège-dents protégée/F.() protéger/c0a+() protège-tibia/S. protéide/S. protéiforme/S. protéine/S. protéinée/F.() protéinémie/S. protéinurie/S. protéique/S. protèle/S. protéolyse/S. protéolytique/S. protéome/S. protéomique/S. protérandrie/S. protestante/F.() protestantisme/S. protestataire/S. protestation/S. protester/a0a+() protêt/S. prothalle/S. prothèse/S. prothésiste/S. prothétique/S. prothorax prothrombine/S. protide/S. protidique/S. protiste/S. protistologie/S. protistologue/S. protocarbure/S. protochlorure/S. protococcus protocolaire/S. protocole/S. protoétoile/S. protogalaxie/S. protogine/S. protogynie/S. protohistoire/S. protohistorienne/F.() protohistorique/S. proto-industrialisation/S. protomé/S. proton/S. protonéma/S. protonique/S. protonotaire/S. protophyte/S. protoplanétaire/S. protoplanète/S. protoplasme/S. protoplasmique/S. protoptère/S. prototypage/S. prototype/S. protoxyde/S. protozoaire/S. protractile/S. protubérance/S. protubérante/F.() protutrice/F.() prou proudhonienne/F.() proue/S. prouesse/S. prouter/a0() prouvable/S. prouver/a0a+() provéditeur/S. provenance/S. provençale/W.() provende/S. provenir/i0i+() proverbe/S. proverbiale/W.() proverbialement proverbialiser/a0a+() providence/S. providentialisme/S. providentielle/F.() providentiellement provignage/S. provignement/S. provigner/a0a+() provin/S. province/S. provincialat/S. provinciale/W.() provincialisme/S. proviseure/F.() provision/S. provisionnée/F.() provisionnelle/F.() provisionner/a0a+() provisoire/S. provisoirement provisorat/S. provitamine/S. provo/S. provocante/F.() provocation/S. provocatrice/F.() provoquée/F.() provoquer/a0a+() proxémique/S. proxénète/S. proxénétisme/S. proximale/W.() proximité/S. proyer/S. prude/S. prudemment prudence/S. prudente/F.() pruderie/S. prud'homale/W.() prud'homie/S. prud'homme/S. prudhommerie/S. prudhommesque/S. pruine/S. prune/S. pruneau/X. prunelaie/S. prunelée/S. prunelle/S. prunellier/S. pruner prunier/S. prunus prurigineuse/W.() prurigo/S. prurit/S. prussiate/S. prussienne/F.() prussique/S. prytane/S. prytanée/S. psallette/S. psalliote/S. psalmiste/S. psalmodiée/F.() psalmodier/a0a+() psalmodique/S. psaltérion/S. psaume/S. psautier/S. pschent/S. pschitt pseudarthrose/S. pseudo/S. pseudobulbaire/S. pseudoconvexe/S. pseudoconvexité/S. pseudocycle/S. pseudodifférentielle/F.() pseudofécondation/S. pseudogroupe/S. pseudo-intégrable/S. pseudomembrane/S. pseudomembraneuse/W.() pseudonévroptère/S. pseudonyme/S. pseudopode/S. pseudoriemannienne/F.() pseudosection/S. psi psitt psittacisme/S. psittacose/S. psoas psoque/S. psoriasis pst psy/S. psychanalyse/S. psychanalysée/F.() psychanalyser/a0a+() psychanalyste/S. psychanalytique/S. psychasthénie/S. psyché/S. psychédélique/S. psychédélisme/S. psychiatre/S. psychiatrie/S. psychiatrique/S. psychiatrisée/F.() psychiatriser/a0a+() psychique/S. psychiquement psychisme/S. psychoanaleptique/S. psychobiologie/S. psychochirurgie/S. psychocritique/S. psychodramatique/S. psychodrame/S. psychodynamique/S. psychodysleptique/S. psychoéducation/S. psychoéducative/F.() psychoéducatrice/F.() psycholeptique/S. psycholinguistique/S. psychologie/S. psychologique/S. psychologiquement psychologiser/a0a+() psychologisme/S. psychologue/S. psychométrie/S. psychométrique/S. psychomotrice/F.() psychomotricienne/F.() psychomotricité/S. psychonévrose/S. psychopathe/S. psychopathie/S. psychopathologie/S. psychopathologique/S. psychopédagogie/S. psychopharmacologie/S. psychophysiologie/S. psychophysiologique/S. psychophysique/S. psychopompe/S. psychorigide/S. psychorigidité/S. psychose/S. psychosensorielle/F.() psycho-sensori-motrice/F.() psychosociale/W.() psychosociologie/S. psychosomatique/S. psychotechnicienne/F.() psychotechnique/S. psychothérapeute/S. psychothérapie/S. psychotique/S. psychotrope/S. pt/S. pt/||-- ptéridophyte/S. ptérodactyle/S. ptérygotus ptolémaïque/S. ptomaïne/S. ptôse/S. ptôsis ptyaline/S. ptyalisme/S. puante/F.() puanteur/S. pub/S. pubère/S. pubertaire/S. puberté/S. pubescence/S. pubescente/F.() pubienne/F.() pubis publiable/S. public/S. publicain/S. publication/S. publiciser/a0a+() publiciste/S. publicitaire/S. publicité/S. publiée/F.() publier/a0a+() publi-information/S. publipostage/S. publique/S. publiquement publireportage/S. puccinia/S. puccinie/S. puce/S. puceau/X. pucelage/S. pucelle/S. puceron/S. puche/S. pucheux pucier/S. pudding/S. puddlage/S. puddler/a0a+() puddleur/S. pudeur/S. pudibonde/F.() pudibonderie/S. pudicité/S. pudique/S. pudiquement puer/a0a+() puéricultrice/S. puériculture/S. puérile/F.() puérilement puérilisme/S. puérilité/S. puerpérale/W.() puffin/S. pugilat/S. pugiliste/S. pugilistique/S. pugnace/S. pugnacité/S. puînée/F.() puisage/S. puisard/S. puisatier/S. puisement/S. puiser/a0a+() puisette/S. puisque puissamment puissance/S. puissante/F.() puits pulicaire/S. pull/S. pullman/S. pullorose/S. pull-over/S. pullulante/F.() pullulation/S. pullulement/S. pulluler/a0() pulmonaire/S. pulpaire/S. pulpe/S. pulpectomie/S. pulpeuse/W.() pulque/S. pulsante/F.() pulsar/S. pulsation/S. pulsative/F.() pulsée/F.() pulser/a0a+() pulsion/S. pulsionnelle/F.() pulsoréacteur/S. pultacée/F.() pulvérin/S. pulvérisable/S. pulvérisateur/S. pulvérisation/S. pulvérisée/F.() pulvériser/a0a+() pulvériseur/S. pulvérulence/S. pulvérulente/F.() puma/S. puna/S. punaise/S. punaiser/a0a+() punch/S. puncheur/S. punching-ball/S. puncture/S. punie/F.() punique/S. punir/f0f+() punissable/S. punition/S. punitive/F.() punk/S. puntarelle/S. puntillero/S. pupazzo/S. pupe/S. pupillaire/S. pupillarité/S. pupille/S. pupinisation/S. pupitre/S. pupitreuse/F.() pure/F.() pureau/X. purée/S. purement pureté/S. purgation/S. purgative/F.() purgatoire/S. purge/S. purgée/F.() purgeoir/S. purger/a0a+() purgeur/S. purifiante/F.() purification/S. purificatoire/S. purificatrice/F.() purifiée/F.() purifier/a0a+() purin/S. purine/S. purique/S. purisme/S. puriste/S. puritaine/F.() puritanisme/S. purot/S. purotin/S. purpura/S. purpurine/F.() pur-sang purulence/S. purulente/F.() puseyisme/S. pusillanime/S. pusillanimité/S. pustule/S. pustuleuse/W.() putain/S. putassassière/F.() putative/F.() pute/S. putier/S. putiet/S. putois putréfaction/S. putréfiable/S. putréfiée/F.() putréfier/a0a+() putrescence/S. putrescente/F.() putrescibilité/S. putrescible/S. putride/S. putridité/S. putsch/S. putschiste/S. putt/S. putter/S. putter/a0() putting/S. putto/S. puy/S. puzzle/S. px/||-- pycnogonide/S. pycnomètre/S. pycnose/S. pyélite/S. pygargue/S. pygmée/S. pyjama/S. pylône/S. pylore/S. pylorique/S. pyodermite/S. pyogène/S. pyorrhée/S. pyracanthe/S. pyrale/S. pyramidale/W.() pyramide/S. pyramidée/F.() pyramider/a0() pyramidion/S. pyrène/S. pyrénéenne/F.() pyrénéite/S. pyrénomycète/S. pyrèthre/S. pyrex pyrexie/S. pyridoxine/S. pyrimidine/S. pyrimidique/S. pyrite/S. pyriteuse/W.() pyroclastique/S. pyroélectricité/S. pyroélectrique/S. pyrogallique/S. pyrogallol/S. pyrogénation/S. pyrogène/S. pyrographe/S. pyrogravée/F.() pyrograver/a0a+() pyrograveuse/F.() pyrogravure/S. pyroligneuse/W.() pyrolusite/S. pyrolyse/S. pyromane/S. pyromanie/S. pyromètre/S. pyrométrie/S. pyrométrique/S. pyrophore/S. pyrophosphorique/S. pyrophyte/S. pyroscaphe/S. pyrosis pyrotechnicienne/F.() pyrotechnie/S. pyrotechnique/S. pyroxène/S. pyroxénite/S. pyroxylée/F.() pyrrhique/S. pyrrhonienne/F.() pyrrhonisme/S. pyrrhotite/S. pyrrole/S. pyrrolique/S. pythagoricienne/F.() pythagorique/S. pythagorisme/S. pythie/S. pythienne/F.() pythique/S. python/S. pythonisse/S. pyurie/S. pyxide/S. pz/||-- q qanat/S. qatarienne/F.() quadragénaire/S. quadragésimale/W.() quadragésime/S. quadrangle/S. quadrangulaire/S. quadrant/S. quadratin/S. quadratique/S. quadrature/S. quadrette/S. quadricentenaire/S. quadriceps quadrichromie/S. quadricycle/S. quadriennale/W.() quadrifide/S. quadrige/S. quadrilatère/S. quadrilingue/S. quadrilinguisme/S. quadrillage/S. quadrille/S. quadrillée/F.() quadriller/a0a+() quadrillion/S. quadrilobe/S. quadrilobée/F.() quadrilogie/S. quadrimoteur/S. quadripartie/F.() quadripartite/S. quadriphonie/S. quadripôle/S. quadrique/S. quadriréacteur/S. quadrirème/S. quadrisyllabe/S. quadrisyllabique/S. quadrivalence/S. quadrivalente/F.() quadrumane/S. quadrupède/S. quadruple/S. quadruplée/F.() quadruplement/S. quadrupler/a0a+() quadruplet/S. quadruplex quai/S. quaker/S. quakeresse/S. qualifiable/S. qualifiante/F.() qualification/S. qualificative/F.() qualifiée/F.() qualifier/a0a+() qualitative/F.() qualitativement qualité/S. quand quant quant-à-soi quantième/S. quantifiable/S. quantificateur/S. quantification/S. quantifiée/F.() quantifier/a0a+() quantile/S. quantique/S. quantitative/F.() quantitativement quantité/S. quantum/I. quarantaine/S. quarante quarante-cinq quarante-deux quarante-et-un quarante-huit quarantenaire/S. quarante-neuf quarante-quatre quarante-sept quarante-six quarante-trois quarantième/S. quarderonner/a0a+() quark/S. quarrer/a0a+() quartager/a0a+() quartanier/S. quartation/S. quartaut/S. quarte/F.() quarté/S. quartefeuille/S. quartenier/S. quarter/a0a+() quarteronne/F.() quartet/S. quartette/S. quartidi/S. quartier/S. quartier-maître quartiers-maîtres quartile/S. quartique/S. quart-monde quarto quarts-mondes quartz quartzeuse/W.() quartzifère/S. quartzite/S. quasar/S. quasi quasi/S. quasi-contrat/S. quasi-cristal/X. quasi-délit/S. quasiment quasimodo/S. quasi-monnaie/S. quassia/S. quassier/S. quassine/S. quater quaternaire/S. quaterne/S. quaternion/S. quatorze quatorzième/S. quatorzièmement quatrain/S. quatre quatre-de-chiffre quatre-épices quatre-feuilles quatre-mâts quatre-quarts quatre-saisons quatre-temps quatre-vingt/S. quatre-vingt-cinq quatre-vingt-deux quatre-vingt-dix quatre-vingt-dix-huit quatre-vingt-dix-neuf quatre-vingt-dix-sept quatre-vingt-douze quatre-vingt-huit quatre-vingtième/S. quatre-vingt-neuf quatre-vingt-onze quatre-vingt-quatorze quatre-vingt-quatre quatre-vingt-quinze quatre-vingt-seize quatre-vingt-sept quatre-vingt-six quatre-vingt-treize quatre-vingt-trois quatre-vingt-un quatrième/S. quatrièmement quattrocento quatuor/S. qubit/S. que québécisme/S. québécoise/F.() quebracho/S. quelconque/S. quelle/F.() quelque/S. quelquefois quelques-unes quelques-uns quelqu'un quelqu'une quémande/S. quémandée/F.() quémander/a0a+() quémandeuse/F.() qu'en-dira-t-on quenelle/S. quenotte/S. quenouille/S. quéquette/S. quérable/S. quercitrine/S. quercitron/S. querelle/S. quereller/a0a+() querelleuse/F.() quérir quérulence/S. quérulente/F.() questeur/S. question/S. questionnaire/S. questionnée/F.() questionnement/S. questionner/a0a+() questionneuse/F.() questure/S. quétaine/S. quétainerie/S. quête/S. quêter/a0a+() quêteuse/F.() quetsche/S. quetschier/S. quetter/a0a+() quetzal/S. quetzales queue/S. queue-d'aronde queue-de-cheval queue-de-cochon queue-de-morue queue-de-pie queue-de-rat queue-de-renard queues-d'aronde queues-de-cheval queues-de-cochon queues-de-morue queues-de-pie queues-de-rat queues-de-renard queusot/S. queuter/a0a+() queux qui quiche/S. quichenotte/S. quichua/S. quiconque quidam/S. quiddité/S. quiescence/S. quiète/F.() quiétisme/S. quiétiste/S. quiétude/S. quignon/S. quille/S. quiller/a0a+() quilleuse/F.() quillier/S. quillon/S. quimper/a0() quinaire/S. quinaude/F.() quincaillerie/S. quincaillière/F.() quinconce/S. quine/S. quinée/F.() quinine/S. quinoa/S. quinoléine/S. quinquagénaire/S. quinquagésime/S. quinquennale/W.() quinquennat/S. quinquet/S. quinquina/S. quintaine/S. quintal/X. quinte/F.() quinté/S. quintefeuille/S. quintessence/S. quintessenciée/F.() quintessencier/a0a+() quintet/S. quintette/S. quinteuse/W.() quintidi/S. quintillion/S. quinto quintologie/S. quintuple/S. quintuplée/F.() quintupler/a0a+() quintuplet/S. quinzaine/S. quinze quinzième/S. quinzièmement quinzomadaire/S. quipou/S. quiproquo/S. quirite/S. quiscale/S. quittance/S. quittancer/a0a+() quitter/a0a+() quitus qui-vive quiz quo quoi quoique quolibet/S. quorum/S. quota/S. quote-part quotes-parts quotidienne/F.() quotidiennement quotidienneté/S. quotient/S. quotité/S. quotter/a0() r ra/S. rabâchage/S. rabâcher/a0a+() rabâcheuse/F.() rabais rabaissement/S. rabaisser/a0a+() raban/S. rabane/S. rabanter/a0a+() rabat/S. rabat-eau rabat-joie rabattable/S. rabattage/S. rabattant/S. rabattante/F.() rabattement/S. rabatteur/S. rabatteuse/F.() rabattoir/S. rabattre/uA() rabattue/F.() rabat-vent rabbi/S. rabbin/S. rabbinat/S. rabbinique/S. rabbinisme/S. rabdomancie/S. rabelaisienne/F.() rabiauter rabibochage/S. rabibocher/a0a+() rabiot/S. rabiotée/F.() rabioter/a0a+() rabique/S. rabistoquer/a0a+() râble/S. râblée/F.() râbler/a0a+() râblure/S. rabonnir/f0f+() rabot/S. rabotage/S. rabotée/F.() rabotement/S. raboter/a0a+() raboteuse/F.() raboteuse/W.() rabougrie/F.() rabougrir/f0f+() rabougrissement/S. rabouillère/S. rabouilleuse/F.() raboutage/S. rabouter/a0a+() rabrouée/F.() rabrouement/S. rabrouer/a0a+() racabouillir racaille/S. raccommodable/S. raccommodage/S. raccommodée/F.() raccommodement/S. raccommoder/a0a+() raccommodeuse/F.() raccompagner/a0a+() raccord/S. raccordement/S. raccorder/a0a+() raccourcie/F.() raccourcir/f0f+() raccourcissement/S. raccoutrer/a0a+() raccoutumer/a0a+() raccroc/S. raccrochage/S. raccrocher/a0a+() raccrocheuse/F.() raccuser/a0() raccuspoter/a0() race/S. racée/F.() racémique/S. racer/S. rachat/S. rachetable/S. rachetée/F.() racheter/b0a+() rachialgie/S. rachianesthésie/S. rachidienne/F.() rachis rachitique/S. rachitisme/S. raciale/W.() racialement racialisme/S. racialiste/S. racinage/S. racinaire/S. racinal/X. racine/S. racinée/F.() raciner/a0a+() racinienne/F.() raciologie/S. racisme/S. raciste/S. racket/S. rackettée/F.() racketter/a0a+() racketteuse/F.() raclage/S. racle/S. raclée/S. raclement/S. racler/a0a+() raclette/S. racleuse/F.() racloir/S. raclure/S. racolage/S. racoler/a0a+() racoleuse/F.() racontable/S. racontar/S. racontée/F.() raconter/a0a+() raconteuse/F.() racornie/F.() racornir/f0f+() racornissement/S. racrapoter/a0a+() rad/||-- radar/S. radariste/S. rade/S. radeau/X. rader/a0a+() radeuse/S. radiaire/S. radiale/W.() radialement radian/S. radiance/S. radiant/S. radiante/F.() radiateur/S. radiation/S. radiative/F.() radicalaire/S. radicale/W.() radicalement radicale-socialiste radicales-socialistes radicalisation/S. radicalisée/F.() radicaliser/a0a+() radicalisme/S. radicalité/S. radical-socialisme radical-socialiste radicande/S. radicante/F.() radicaux-socialistes radicelle/S. radiculaire/S. radicule/S. radiée/F.() radier/a0a+() radiesthésie/S. radiesthésiste/S. radieuse/W.() radieusement radine/F.() radiner/a0a+() radinerie/S. radio/S. radioactive/F.() radioactivité/S. radioalignement/S. radioaltimètre/S. radioamatrice/F.() radioastronome/S. radioastronomie/S. radiobalisage/S. radiobalise/S. radiobaliser/a0a+() radioborne/S. radiocarbone/S. radiocassette/S. radiochimie/S. radiochimique/S. radiochimiste/S. radiochronologie/S. radiocobalt/S. radiocommunication/S. radiocompas radioconducteur/S. radiocristallographie/S. radiodiagnostic/S. radiodiffusée/F.() radiodiffuser/a0a+() radiodiffuseur/S. radiodiffusion/S. radioélectricité/S. radioélectrique/S. radiofréquence/S. radiogoniomètre/S. radiogoniométrie/S. radiogoniométrique/S. radiogramme/S. radiographie/S. radiographiée/F.() radiographier/a0a+() radiographique/S. radioguidage/S. radioguider/a0a+() radio-isotope/S. radiolaire/S. radiolésion/S. radiologie/S. radiologique/S. radiologiste/S. radiologue/S. radiolyse/S. radiométallographie/S. radiomètre/S. radiométrie/S. radiométrique/S. radionavigant/S. radionavigante/F.() radionavigation/S. radionécrose/S. radionucléide/S. radiophare/S. radiophonie/S. radiophonique/S. radiophotographie/S. radioprotection/S. radioreportage/S. radioreporter/S. radioscope/S. radioscoper/a0a+() radioscopie/S. radiosondage/S. radiosonde/S. radio-taxi/S. radiotechnique/S. radiotélégraphie/S. radiotélégraphier/a0a+() radiotélégraphique/S. radiotélégraphiste/S. radiotéléphone/S. radiotéléphonie/S. radiotéléphoniste/S. radiotélescope/S. radiotélévisée/F.() radiothérapeute/S. radiothérapie/S. radis radium/S. radius radja/S. radôme/S. radon/S. radotage/S. radoter/a0() radoteuse/F.() radoub/S. radouber/a0a+() radoucir/f0f+() radoucissement/S. rafale/S. rafantir/a0() raffermir/f0f+() raffermissement/S. raffinage/S. raffinée/F.() raffinement/S. raffiner/a0a+() raffinerie/S. raffineuse/F.() rafflesia/S. rafflésie/S. raffoler/a0() raffut/S. raffûter/a0a+() rafiot/S. rafistolage/S. rafistolée/F.() rafistoler/a0a+() rafle/S. rafler/a0a+() rafraîchie/F.() rafraîchir/f0f+() rafraîchissante/F.() rafraîchissement/S. raft/S. rafting/S. ragaillardir/f0f+() rage/S. rageante/F.() rager/a0() rageuse/F.() rageusement raggamuffin/S. raglan/S. ragondin/S. ragot/S. ragoter/a0() ragougnasse/S. ragoût/S. ragoutante/F.() ragoûtante/F.() ragoûter/a0a+() ragrafer/a0a+() ragréer/a0a+() ragréeuse/F.() ragtime/S. rague/S. raguer/a0() rahat-lokoum/S. rahat-loukoum/S. rai/S. raïa/S. raide/F.() rai-de-cœur raidement raider/S. raideur/S. raidie/F.() raidillon/S. raidir/f0f+() raidissement/S. raidisseur/S. raifort/S. rail/S. raille/S. raillée/F.() railler/a0a+() raillerie/S. railleuse/F.() railleusement rail-route rainage/S. raine/S. rainer/a0a+() raineter/d0a+() rainette/S. rainurage/S. rainure/S. rainurée/F.() rainurer/a0a+() raiponce/S. raire/wM() rais-de-cœur raisin/S. raisiné/S. raison/S. raisonnable/S. raisonnablement raisonnée/F.() raisonnement/S. raisonner/a0a+() raisonneuse/F.() raja/S. rajeunie/F.() rajeunir/f0f+() rajeunissante/F.() rajeunissement/S. rajout/S. rajouter/a0a+() rajustement/S. rajuster/a0a+() raki/S. râlante/F.() râle/S. râlement/S. ralentie/F.() ralentir/f0f+() ralentissement/S. ralentisseur/S. râler/a0() râleuse/F.() ralingue/S. ralinguer/a0a+() ralléger/c0() ralliée/F.() ralliement/S. rallier/a0a+() rallonge/S. rallongement/S. rallonger/a0a+() rallumer/a0a+() rallye/S. ramadan/S. ramage/S. ramagée/F.() ramager/a0a+() ramailler/a0a+() ramander/a0a+() ramarrer/a0a+() ramassage/S. ramasse/S. ramasse-couverts ramassée/F.() ramasse-feuilles ramasse-miettes ramasse-monnaie ramasse-pâtes ramasse-poussière ramasser/a0a+() ramassette/S. ramasseuse/F.() ramassis ramastiquer/a0a+() rambarde/S. rambiner/a0() rambour/S. ramdam/S. rame/S. rameau/X. ramée/F.() ramée/S. ramender/a0a+() ramendeuse/F.() ramener/b0a+() ramequin/S. ramer/a0a+() ramereau/X. ramerot/S. ramescence/S. rameter/d0() ramette/S. rameuse/F.() rameuse/W.() rameutée/F.() rameuter/a0a+() rami/S. ramie/S. ramier/S. ramification/S. ramifiée/F.() ramifier/a0a+() ramille/S. ramingue/S. ramollie/F.() ramollir/f0f+() ramollissante/F.() ramollissement/S. ramollo/S. ramonage/S. ramoner/a0a+() ramoneuse/F.() rampante/F.() rampe/S. rampeau/X. rampement/S. ramper/a0() ramponeau/X. ramponneau/X. ramure/S. ranatre/S. rancard/S. rancarder/a0a+() rancart/S. rance/S. rancescible/S. ranch/S. ranche/S. rancher/S. rancie/F.() rancio/S. rancir/f0f+() rancissement/S. rancissure/S. rancœur/S. rançon/S. rançonnée/F.() rançonnement/S. rançonner/a0a+() rancune/S. rancunière/F.() rand/S. randomisation/S. randonnée/S. randonner/a0() randonneuse/F.() rang/S. rangée/F.() rangée/S. rangement/S. ranger/a0a+() rangeuse/F.() rani/S. ranimée/F.() ranimer/a0a+() ranz raouster raout/S. rap/S. rapace/S. rapacité/S. râpage/S. rapapilloter/a0a+() rapatriée/F.() rapatriement/S. rapatrier/a0a+() rapatronnage/S. râpe/S. râpée/F.() râper/a0a+() râperie/S. rapetassage/S. rapetasser/a0a+() rapetissée/F.() rapetissement/S. rapetisser/a0a+() râpeuse/W.() raphia/S. rapiate/F.() rapide/S. rapidement rapidité/S. rapiéçage/S. rapiécée/F.() rapiécer/c0a+() rapiéceter/d0a+() rapière/S. rapin/S. rapine/S. rapiner/a0() rapinerie/S. rapipoter/a0() raplatie/F.() raplatir/f0f+() rapointir/f0f+() rappareiller/a0a+() rappariement/S. rapparier/a0a+() rappée/F.() rappel/S. rappelable/S. rappelée/F.() rappeler/d0a+() rapper/a0() rappeuse/F.() rappliquer/a0() rappointir/f0f+() rapport/S. rapportable/S. rapportage/S. rapportée/F.() rapporter/a0a+() rapporteuse/F.() rapprendre rapprochée/F.() rapprochement/S. rapprocher/a0a+() rapproprier/a0a+() rapprovisionner/a0a+() rapt/S. râpure/S. raquer/a0a+() raquette/S. rare/S. raréfaction/S. raréfiée/F.() raréfier/a0a+() rarement rarescente/F.() rareté/S. rarissime/S. ras rasade/S. rasage/S. rasance/S. rasante/F.() rascasse/S. rase/F.() rasée/F.() rase-mottes rase-pet raser/a0a+() rasette/S. raseuse/F.() rash/S. rasibus rasoir/S. raspoutitsa/S. rassasiée/F.() rassasiement/S. rassasier/a0a+() rassemblée/F.() rassemblement/S. rassembler/a0a+() rassembleuse/F.() rasseoir/pS() rassérénée/F.() rasséréner/c0a+() rassie/F.() rassir/f0f+() rassise/F.() rassortiment/S. rassortir rassurante/F.() rassurée/F.() rassurer/a0a+() rasta/S. rastafarisme/S. rastaquouère/S. raster/S. ratafia/S. ratage/S. rataplan ratatinée/F.() ratatiner/a0a+() ratatouille/S. ratatouiller/a0() rate/F.() râteau/X. ratée/F.() ratel/S. râtelage/S. râteler/d0a+() râteleuse/F.() râtelier/S. râtelures rater/a0a+() ratiboisée/F.() ratiboiser/a0a+() ratichon/S. ratière/F.() ratification/S. ratifiée/F.() ratifier/a0a+() ratinage/S. ratiner/a0a+() ratio/S. ratiocination/S. ratiociner/a0() ratiocineur/S. ration/S. rational/X. rationalisation/S. rationalisée/F.() rationaliser/a0a+() rationalisme/S. rationaliste/S. rationalité/S. rationnaire/S. rationnée/F.() rationnelle/F.() rationnellement rationnement/S. rationner/a0a+() ratissage/S. ratissée/F.() ratisser/a0a+() ratissoire/S. raton/S. ratonnade/S. rattachable/S. rattachement/S. rattacher/a0a+() rattachiste/S. rattrapable/S. rattrapage/S. rattraper/a0a+() raturage/S. rature/S. raturée/F.() raturer/a0a+() rauchage/S. raucheur/S. raucité/S. raugmenter/a0a+() rauque/S. rauquement/S. rauquer/a0() rauwolfia/S. ravage/S. ravagée/F.() ravager/a0a+() ravageuse/F.() ravalée/F.() ravalement/S. ravaler/a0a+() ravaleur/S. ravaudage/S. ravauder/a0a+() ravaudeuse/F.() rave/S. ravelin/S. ravenala/S. ravenelle/S. ravie/F.() ravier/S. ravière/S. ravigotante/F.() ravigote/S. ravigoter/a0a+() ravilir/f0f+() ravine/F.() ravinée/F.() ravinement/S. raviner/a0a+() ravioli/S. ravir/f0f+() raviser/a0a+() ravissante/F.() ravissement/S. ravisseuse/F.() ravitaillée/F.() ravitaillement/S. ravitailler/a0a+() ravitailleur/S. ravivage/S. raviver/a0a+() ravoir rayage/S. rayée/F.() rayer/a0a+() rayère/S. ray-grass rayon/S. rayonnage/S. rayonnante/F.() rayonnée/F.() rayonnement/S. rayonner/a0a+() rayure/S. raz razzia/S. razzier/a0a+() ré réabonnée/F.() réabonnement/S. réabonner/a0a+() réabsorber/a0a+() réabsorption/S. réac/S. réaccoutumer/a0a+() réacheminement/S. réacquérir/iK() réacquise/F.() réactance/S. réaction/S. réactionnaire/S. réactionnelle/F.() réactivation/S. réactive/F.() réactivée/F.() réactiver/a0a+() réactivité/S. réactrice/F.() réactualiser/a0a+() réadaptation/S. réadapter/a0a+() réadmettre/vA() réadmise/F.() réadmission/S. réadressage/S. réaffectation/S. réaffectée/F.() réaffecter/a0a+() réaffirmation/S. réaffirmée/F.() réaffirmer/a0a+() réaffûter/a0a+() réagir/f0() réajustement/S. réajuster/a0a+() réale/W.() réaléser/c0a+() réalgar/S. réalignement/S. réalimentation/S. réalimenter/a0a+() réalisable/S. réalisation/S. réalisatrice/F.() réalisée/F.() réaliser/a0a+() réalisme/S. réaliste/S. réalistement réalité/S. reality-show/S. réaménagée/F.() réaménagement/S. réaménager/a0a+() réamorçage/S. réamorcée/F.() réamorcer/a0a+() réanalyser/a0a+() réanimation/S. réanimatrice/F.() réanimer/a0a+() réapparaître/wQ() réapparition/S. réapprendre/tF() réapprentissage/S. réappropriation/S. réappropriée/F.() réapproprier/a0a+() réapprovisionnée/F.() réapprovisionnement/S. réapprovisionner/a0a+() réargenter/a0a+() réarmée/F.() réarmement/S. réarmer/a0a+() réarrangement/S. réarranger/a0a+() réassigner/a0a+() réassort/S. réassortiment/S. réassortir/f0f+() réassumer/a0a+() réassurance/S. réattribuer/a0a+() rebab/S. rebaisser/a0() rebander/a0a+() rebaptisée/F.() rebaptiser/a0a+() rébarbative/F.() rebâtie/F.() rebâtir/f0f+() rebattement/S. rebattre/uA() rebattue/F.() rebec/S. rebecter/a0a+() rebelle/S. rebeller/a0a+() rébellion/S. rébellionner rebelote rebiffer/a0a+() rebiquer/a0() reblanchir/f0f+() reblochon/S. reboisée/F.() reboisement/S. reboiser/a0a+() rebond/S. rebondie/F.() rebondir/f0f+() rebondissante/F.() rebondissement/S. rebonneter rebord/S. rebordée/F.() reborder/a0a+() rebouchage/S. rebouchée/F.() reboucher/a0a+() rebouiser rebours reboutée/F.() rebouter/a0a+() rebouteuse/F.() rebouteux reboutonner/a0a+() rebraguetter/a0a+() rebrancher/a0a+() rebroder/a0a+() rebroussement/S. rebrousse-poil rebrousser/a0a+() rebrûler/a0() rebuffade/S. rébus rebut/S. rebutante/F.() rebuter/a0a+() recacheter/d0a+() recadrage/S. recadrer/a0a+() recalage/S. recalcification/S. recalcifier/a0a+() récalcitrante/F.() recalculée/F.() recalculer/a0a+() recalée/F.() recaler/a0a+() recalibrer/a0a+() recapitalisation/S. récapitulation/S. récapitulative/F.() récapituler/a0a+() recarburation/S. recarder/a0a+() recarreler/d0a+() recaser/a0a+() recasquante/F.() recauser/a0() recéder/c0a+() recel/S. receler/b0a+() receleuse/F.() récemment recensée/F.() recensement/S. recenser/a0a+() recenseuse/F.() recension/S. récente/F.() recentrage/S. recentrée/F.() recentrer/a0a+() recépage/S. recépée/S. recéper/c0a+() récépissé/S. réceptacle/S. réception/S. réceptionnaire/S. réceptionner/a0a+() réceptionniste/S. réceptive/F.() réceptivité/S. réceptrice/F.() recercler/a0a+() recès récession/S. récessive/F.() recette/S. recevabilité/S. recevable/S. receveuse/F.() recevoir/pK() recez rechampir/f0f+() réchampir/f0f+() rechampissage/S. réchampissage/S. rechange/S. rechanger/a0a+() rechanter/a0a+() rechapage/S. rechapée/F.() rechaper/a0a+() réchapper/a0() recharge/S. rechargeable/S. rechargée/F.() rechargement/S. recharger/a0a+() rechasser/a0a+() réchaud/S. réchauffage/S. réchauffante/F.() réchauffée/F.() réchauffement/S. réchauffer/a0a+() réchauffeur/S. rechaussement/S. rechausser/a0a+() rêche/S. recherche/S. recherchée/F.() rechercher/a0a+() recherchiste/S. rechigner/a0() rechristianisée/F.() rechristianiser/a0a+() rechute/S. rechuter/a0() récidivante/F.() récidive/S. récidiver/a0() récidivisme/S. récidiviste/S. récif/S. récifale/W.() récipiendaire/S. récipient/S. réciprocité/S. réciproque/S. réciproquement réciproquer/a0a+() récit/S. récital/S. récitante/F.() récitatif/S. récitation/S. récitée/F.() réciter/a0a+() réclamation/S. réclame/S. réclamée/F.() réclamer/a0a+() reclaper/a0a+() reclassée/F.() reclassement/S. reclasser/a0a+() reclassification/S. récliner/a0() reclouer/a0a+() reclure/xJ() recluse/F.() réclusion/S. réclusionnaire/S. recognition/S. récognitive/F.() recoiffer/a0a+() recoin/S. récolement/S. récoler/a0a+() recollage/S. récollection/S. recollement/S. recoller/a0a+() récollet/S. recolorer/a0a+() récoltante/F.() récolte/S. récoltée/F.() récolter/a0a+() récolteur/S. recombinaison/S. recommandable/S. recommandation/S. recommandé/S. recommandée/F.() recommander/a0a+() recommencée/F.() recommencement/S. recommencer/a0a+() recomparaître/wQ() récompense/S. récompensée/F.() récompenser/a0a+() recomposable/S. recomposée/F.() recomposer/a0a+() recomposition/S. recompresser/a0a+() recomptée/F.() recompter/a0a+() réconciliable/S. réconciliation/S. réconciliatrice/F.() réconciliée/F.() réconcilier/a0a+() recondamner/a0a+() reconditionnement/S. reconductible/S. reconduction/S. reconduire/yL() reconfigurer/a0a+() réconfort/S. réconfortante/F.() réconfortée/F.() réconforter/a0a+() recongélation/S. recongelée/F.() recongeler/b0a+() reconnaissable/S. reconnaissance/S. reconnaissante/F.() reconnaître/wQ() reconnecter/a0a+() reconnexion/S. reconnue/F.() reconquérante/F.() reconquérir/iK() reconquête/S. reconquise/F.() reconsidération/S. reconsidérée/F.() reconsidérer/c0a+() reconsolidée/F.() reconsolider/a0a+() reconstituante/F.() reconstituée/F.() reconstituer/a0a+() reconstitution/S. reconstruction/S. reconstructive/F.() reconstructrice/F.() reconstruire/yM() reconstruite/F.() recontacter/a0a+() reconventionnelle/F.() reconversion/S. reconvertie/F.() reconvertir/f0f+() recopiage/S. recopiée/F.() recopier/a0a+() recoquillée/F.() recoquiller/a0a+() record/S. recordage/S. recordée/F.() recorder/a0a+() recordman/S. recordwoman/S. recorriger/a0a+() recors recoucher/a0a+() recoudre/xO() recoupe/S. recoupée/F.() recoupement/S. recouper/a0a+() recoupette/S. recouponner/a0a+() recourbée/F.() recourbement/S. recourber/a0a+() recourbure/S. recourir/iD() recours recousue/F.() recouverte/F.() recouvrable/S. recouvrage/S. recouvrance/S. recouvrante/F.() recouvrée/F.() recouvrement/S. recouvrer/a0a+() recouvrir/iC() recracher/a0a+() récré/S. recréation/S. récréation/S. récréative/F.() recréée/F.() recréer/a0a+() récréer/a0a+() recrépir/f0f+() recreuser/a0a+() récriée/F.() récrier/a0a+() récrimination/S. récriminatrice/F.() récriminée/F.() récriminer/a0() récrire/y1() recristallisation/S. recristalliser/a0a+() recroiser/a0a+() recroître/wT() recroller/a0() recroquevillée/F.() recroquevillement/S. recroqueviller/a0a+() recrû/S. recrudescence/S. recrudescente/F.() recrue/F.() recrutée/F.() recrutement/S. recruter/a0a+() recruteuse/F.() recta rectale/W.() rectangle/S. rectangulaire/S. rectifiable/S. rectification/S. rectificative/F.() rectificatrice/F.() rectifiée/F.() rectifier/a0a+() rectifieuse/F.() rectiligne/S. rectilinéaire/S. rection/S. rectite/S. rectitude/S. recto/S. rectocolite/S. rectorale/W.() rectorat/S. rectoscope/S. rectoscopie/S. rectrice/F.() rectum/S. reçue/F.() recueil/S. recueillement/S. recueillie/F.() recueillir/iR() recuire/yL() recuite/F.() recul/S. reculade/S. reculée/F.() reculement/S. reculer/a0a+() reculotter/a0a+() récupérable/S. récupération/S. récupératrice/F.() récupérée/F.() récupérer/c0a+() récurage/S. récurée/F.() récurer/a0a+() récurrence/S. récurrente/F.() récursion/S. récursive/F.() récursivement récursivité/S. récursoire/S. récusable/S. récusation/S. récusée/F.() récuser/a0a+() recyclable/S. recyclage/S. recyclée/F.() recycler/a0a+() rédaction/S. rédactionnelle/F.() rédactrice/F.() redan/S. reddition/S. redécorer/a0a+() redécoupage/S. redécouper/a0a+() redécouverte/F.() redécouverte/S. redécouvrir/iC() redéfaire/wD() redéfinie/F.() redéfinir/f0f+() redéfinition/S. redemander/a0a+() redémarrage/S. redémarrer/a0() redémolir/f0f+() rédemption/S. rédemptoriste/S. rédemptrice/F.() redent/S. redentée/F.() redéploiement/S. redéployer/a0a+() redescendre/tA() redessiner/a0a+() redevable/S. redevance/S. redevenir/i0i+() redevoir/pC() rédhibition/S. rédhibitoire/S. rédie/S. rediffusée/F.() rediffuser/a0a+() rediffusion/S. rédigée/F.() rédiger/a0a+() rédimée/F.() redimensionnée/F.() redimensionnement/S. redimensionner/a0a+() rédimer/a0a+() redingote/S. rédintégration/S. redire/yC() redirection/S. rediriger/a0a+() rediscuter/a0a+() redisposer/a0a+() redistribuée/F.() redistribuer/a0a+() redistribution/S. redite/S. redondance/S. redondante/F.() redondée/F.() redonder/a0() redonner/a0a+() redorer/a0a+() redorte/S. redoublante/F.() redoublée/F.() redoublement/S. redoubler/a0a+() redoutable/S. redoutablement redoute/S. redoutée/F.() redouter/a0a+() redoux redressée/F.() redressement/S. redresser/a0a+() redresseur/S. réductase/S. réductibilité/S. réductible/S. réduction/S. réductionnisme/S. réductionniste/S. réductive/F.() réductrice/F.() réduire/yM() réduit/S. réduite/F.() réduplication/S. réduplicative/F.() réduve/S. rééchelonnement/S. rééchelonner/a0a+() réécouter/a0a+() réécrire/y1() réécrite/F.() réécriture/S. réédification/S. réédifier/a0a+() rééditer/a0a+() réédition/S. rééducation/S. rééducatrice/F.() rééduquée/F.() rééduquer/a0a+() réélection/S. rééligible/S. réélire/yB() réelle/F.() réellement réélue/F.() réembauche/S. réembauchée/F.() réembaucher/a0a+() réémetteur/S. réémettre/vA() réémission/S. réemploi/S. réemployer/a0a+() réemprunter/a0a+() réencastrement/S. réenchantement/S. réenclencher/a0a+() réengagement/S. réengager/a0a+() réenregistrable/S. réenregistrement/S. réensemencée/F.() réensemencement/S. réensemencer/a0a+() réentendre rééquilibrage/S. rééquilibre/S. rééquilibrée/F.() rééquilibrer/a0a+() rééquipement/S. réer/a0() réescomptable/S. réescompte/S. réescompter/a0a+() réescompteur/S. réessayage/S. réessayer/a0a+() réétudier/a0a+() réévaluation/S. réévaluée/F.() réévaluer/a0a+() réexamen/S. réexaminée/F.() réexaminer/a0a+() réexpédiée/F.() réexpédier/a0a+() réexpédition/S. réexportation/S. réexporter/a0a+() réf refabriquer/a0a+() refaçonner/a0a+() réfaction/S. refaire/wD() refaite/F.() réfection/S. réfectoire/S. refendeuse/F.() refendre/tA() refente/S. référé/S. référence/S. référencée/F.() référencement/S. référencer/a0a+() référendaire/S. référendum/S. référent/S. référentielle/F.() référer/c0a+() refermentation/S. refermer/a0a+() refiler/a0a+() refinancement/S. refixer/a0a+() réfléchie/F.() réfléchir/f0f+() réfléchissante/F.() réflecteur/S. réflective/F.() réflectivité/S. reflet/S. refléter/c0a+() refleurir/f0f+() refleurissement/S. reflex réflexe/S. réflexibilité/S. réflexible/S. réflexion/S. réflexive/F.() réflexivement réflexivité/S. réflexogène/S. réflexogramme/S. réflexologie/S. réflexothérapie/S. refluer/a0() reflux refondation/S. refonder/a0a+() refondre/tA() refonte/S. reforestation/S. reforger/a0a+() réformable/S. reformatage/S. réformatrice/F.() réforme/S. réformée/F.() reformer/a0a+() réformer/a0a+() réformette/S. réformisme/S. réformiste/S. reformulation/S. reformuler/a0a+() refouillement/S. refouiller/a0a+() refoulée/F.() refoulement/S. refouler/a0a+() refouloir/S. refourguée/F.() refourguer/a0a+() refourrer/a0a+() refoutre réfractaire/S. réfractée/F.() réfracter/a0a+() réfraction/S. réfractomètre/S. réfractométrie/S. réfractrice/F.() refrain/S. réfrangibilité/S. réfrangible/S. refrènement/S. refréner/c0a+() réfrigérante/F.() réfrigérateur/S. réfrigération/S. réfrigérée/F.() réfrigérer/c0a+() réfringence/S. réfringente/F.() refroidie/F.() refroidir/f0f+() refroidissement/S. refroidisseur/S. refuge/S. réfugiée/F.() réfugier/a0a+() refus refusable/S. refusée/F.() refuser/a0a+() refusion/S. réfutabilité/S. réfutable/S. réfutation/S. réfutée/F.() réfuter/a0a+() refuznik/S. reg/S. regagner/a0a+() regain/S. régal/S. régalade/S. régalage/S. régale/F.() régalec/S. régalement/S. régaler/a0a+() régalienne/F.() regard/S. regardable/S. regardante/F.() regarder/a0a+() regarnie/F.() regarnir/f0f+() régate/S. régater/a0() régatière/F.() regazonner/a0a+() regeler/b0a+() régence/S. régénération/S. régénératrice/F.() régénérée/F.() régénérer/c0a+() régénérescence/S. régente/F.() régenter/a0a+() reggae/S. régicide/S. regimbement/S. regimber/a0a+() regimbeuse/F.() régime/S. régiment/S. régimentaire/S. reginglard/S. région/S. régionale/W.() régionalement régionalisation/S. régionalisée/F.() régionaliser/a0a+() régionalisme/S. régionaliste/S. régir/f0f+() régisseuse/F.() registraire/S. registre/S. réglable/S. réglage/S. réglante/F.() règle/S. réglée/F.() règlement/S. réglementaire/S. réglementairement réglementarisme/S. réglementariste/S. réglementation/S. réglementée/F.() réglementer/a0a+() régler/c0a+() réglet/S. réglette/S. régleuse/F.() réglisse/S. réglo/S. régloir/S. réglure/S. régnante/F.() règne/S. régner/c0() régolite/S. regonfler/a0a+() regorgement/S. regorger/a0() regrat/S. regratter/a0a+() regrattière/F.() regréer/a0a+() regreffer/a0a+() régressée/F.() régresser/a0() régression/S. régressive/F.() regret/S. regrettable/S. regrettablement regrettée/F.() regretter/a0a+() regrèvement/S. regrimper/a0a+() regrossir/f0() regroupement/S. regrouper/a0a+() régularisante/F.() régularisation/S. régularisée/F.() régulariser/a0a+() régularité/S. régulation/S. régulatrice/F.() régule/S. régulée/F.() réguler/a0a+() régulière/F.() régulièrement régurgitation/S. régurgitée/F.() régurgiter/a0a+() réhabilitable/S. réhabilitation/S. réhabilitée/F.() réhabiliter/a0a+() réhabituer/a0a+() rehausse/S. rehaussée/F.() rehaussement/S. rehausser/a0a+() rehausseur/S. rehaut/S. réhydratant/S. réhydratante/F.() réhydratation/S. réhydratée/F.() réhydrater/a0a+() reichsmark/S. reichstag/S. réification/S. réifiée/F.() réifier/a0a+() réimperméabiliser/a0a+() réimplantation/S. réimplanter/a0a+() réimportation/S. réimporter/a0a+() réimposer/a0a+() réimposition/S. réimpression/S. réimprimer/a0a+() réimputation/S. rein/S. réincarcérer/c0a+() réincarnation/S. réincarnée/F.() réincarner/a0a+() réincorporation/S. réincorporer/a0a+() réincrudation/S. réindustrialisée/F.() réindustrialiser/a0a+() reine/S. reine-claude reine-des-prés reine-marguerite reines-claudes reines-des-prés reines-marguerites reinette/S. réinfecter/a0a+() réinitialisation/S. réinitialisée/F.() réinitialiser/a0a+() réinjectée/F.() réinjecter/a0a+() réinjection/S. réinscription/S. réinscrire/y1() réinsérer/c0a+() réinsertion/S. réinstallation/S. réinstaller/a0a+() réinstaurer/a0a+() réintégrable/S. réintégration/S. réintégrer/c0a+() réinterprétation/S. réinterprétée/F.() réinterpréter/c0a+() réinterrogation/S. réinterroger/a0a+() réintroduction/S. réintroduire/yM() réinventée/F.() réinventer/a0a+() réinvention/S. réinvestie/F.() réinvestir/f0f+() réinvestissement/S. réinviter/a0a+() reis réitération/S. réitérative/F.() réitérer/c0a+() reître/S. rejaillir/f0() rejaillissement/S. réjection/S. rejet/S. rejetable/S. rejetée/F.() rejeter/d0a+() rejeton/S. rejeu/X. rejoindre/wB() rejointe/F.() rejointoyer/a0a+() rejointoyeuse/F.() rejouer/a0a+() réjouie/F.() réjouir/f0f+() réjouissance/S. réjouissante/F.() rel relacer/a0a+() relâche/S. relâchée/F.() relâchement/S. relâcher/a0a+() relais relaisser/a0a+() relance/S. relancée/F.() relancer/a0a+() relapse/F.() relargage/S. rélargir/f0f+() relarguer/a0a+() relater/a0a+() relation/S. relationnelle/F.() relative/F.() relativement relativisation/S. relativisée/F.() relativiser/a0a+() relativisme/S. relativiste/S. relativité/S. relaver/a0a+() relax relaxante/F.() relaxation/S. relaxe/S. relaxée/F.() relaxer/a0a+() relayage/S. relayée/F.() relayer/a0a+() relayeuse/F.() relectrice/F.() relecture/S. relégation/S. reléguée/F.() reléguer/c0a+() relent/S. relevable/S. relevage/S. relevailles relevante/F.() relevé/S. relève/S. relevée/F.() relèvement/S. relever/b0a+() releveuse/F.() reliée/F.() relief/S. relier/a0a+() relieuse/F.() religieuse/W.() religieusement religion/S. religionnaire/S. religiosité/S. reliquaire/S. reliquat/S. relique/S. relire/yA() reliure/S. relocalisation/S. relogée/F.() relogement/S. reloger/a0a+() relookée/F.() relooker/a0a+() relouer/a0a+() réluctance/S. relue/F.() reluire/yU() reluisante/F.() reluquer/a0a+() rem/S. remâchée/F.() remâcher/a0a+() remaillage/S. remailler/a0a+() remake/S. rémanence/S. rémanente/F.() remanger/a0a+() remaniée/F.() remaniement/S. remanier/a0a+() remaquiller/a0a+() remarcher/a0() remariage/S. remarier/a0a+() remarquable/S. remarquablement remarquée/F.() remarquer/a0a+() remastérisée/F.() remastériser/a0a+() remastiquer/a0a+() remballage/S. remballée/F.() remballer/a0a+() rembarquement/S. rembarquer/a0a+() rembarrer/a0a+() rembauchée/F.() rembaucher/a0a+() rembiner/a0a+() remblai/S. remblaiement/S. remblaver/a0a+() remblayage/S. remblayer/a0a+() rembobinée/F.() rembobiner/a0a+() remboîtage/S. remboîtement/S. remboîter/a0a+() rembouger/a0a+() rembourrage/S. rembourrée/F.() rembourrer/a0a+() rembourrure/S. remboursable/S. remboursée/F.() remboursement/S. rembourser/a0a+() rembroquer rembrunir/f0f+() rembrunissement/S. rembucher/a0a+() remède/S. remédiable/S. remédiation/S. remédier/a0() remembrement/S. remembrer/a0a+() remémoration/S. remémorée/F.() remémorer/a0a+() remerciée/F.() remerciement/S. remercier/a0a+() réméré/S. remétrer remettage/S. remettante/F.() remettre/vA() remeublée/F.() remeubler/a0a+() rémige/S. remilitarisation/S. remilitarisée/F.() remilitariser/a0a+() réminiscence/S. remisage/S. remise/F.() remise/S. remisée/F.() remiser/a0a+() remisier/S. rémissible/S. rémission/S. rémittence/S. rémittente/F.() remix remixer/a0a+() rémiz remmaillage/S. remmailler/a0a+() remmailleuse/S. remmailloter/a0a+() remmancher/a0a+() remmener/b0a+() remmoulage/S. remmouleur/S. remodelage/S. remodelée/F.() remodeler/b0a+() remontage/S. remontante/F.() remontée/F.() remonte-pente/S. remonter/a0a+() remonteuse/F.() remontoir/S. remontrance/S. remontrer/a0a+() rémora/S. remordre/tA() remorquage/S. remorque/S. remorquée/F.() remorquer/a0a+() remorqueuse/F.() remotivée/F.() remotiver/a0a+() remoucher/a0a+() remoudre/xP() remouiller/a0a+() rémoulade/S. remoulage/S. rémouleur/S. remoulue/F.() remous rempaillage/S. rempailler/a0a+() rempailleuse/F.() rempaqueter/d0a+() remparder remparer/a0a+() rempart/S. rempiétement/S. rempiéter/c0a+() rempiler/a0a+() remplaçable/S. remplaçante/F.() remplacée/F.() remplacement/S. remplacer/a0a+() remplage/S. remplie/F.() remplier/a0a+() remplir/f0f+() remplissage/S. remplisseuse/F.() remploi/S. remployer/a0a+() remplumer/a0a+() rempocher/a0a+() rempoissonner/a0a+() remporter/a0a+() rempoter/a0a+() remprunter/a0a+() remuante/F.() remuée/F.() remue-ménage remue-méninges remuement/S. remuer/a0a+() remugle/S. rémunération/S. rémunératoire/S. rémunératrice/F.() rémunérée/F.() rémunérer/c0a+() remutualisation/S. renâcler/a0() renaissance/S. renaissante/F.() renaître/wR() rénale/W.() renarde/F.() renardeau/X. renardée/F.() renarder/a0() renardière/S. renauder/a0() rencaissage/S. rencaissement/S. rencaisser/a0a+() rencard/S. rencardée/F.() rencarder/a0a+() rencart/S. renchaîner/a0a+() renchérie/F.() renchérir/f0f+() renchérissement/S. renchérisseuse/F.() rencogner/a0a+() rencontre/S. rencontrée/F.() rencontrer/a0a+() rendement/S. rendez-vous rendormie/F.() rendormir/iJ() rendosser/a0a+() rendre/tA() rendu/S. rendue/F.() rêne/S. renégate/F.() renégociation/S. renégocier/a0a+() reneiger/a9() rénette/S. renfaîtage/S. renfaîter/a0a+() renfermée/F.() renfermement/S. renfermer/a0a+() renfiler/a0a+() renflammer/a0a+() renflée/F.() renflement/S. renfler/a0a+() renflouage/S. renflouée/F.() renflouement/S. renflouer/a0a+() renfoncée/F.() renfoncement/S. renfoncer/a0a+() renforçante/F.() renforcée/F.() renforcement/S. renforcer/a0a+() renformir/f0f+() renfort/S. renfrognée/F.() renfrognement/S. renfrogner/a0a+() rengagée/F.() rengagement/S. rengager/a0a+() rengaine/S. rengainée/F.() rengainer/a0a+() rengorgement/S. rengorger/a0a+() rengracier/a0() rengrener/b0a+() rengréner/c0a+() reniée/F.() reniement/S. renier/a0a+() reniflage/S. reniflard/S. reniflement/S. renifler/a0a+() renifleuse/F.() réniforme/S. rénitence/S. renne/S. renom/S. renommage/S. renommée/F.() renommer/a0a+() renoncement/S. renoncer/a0a+() renonciataire/S. renonciation/S. renonciatrice/F.() renonculacée/S. renoncule/S. renormalisable/S. renormalisation/S. renouement/S. renouer/a0a+() renouveau/X. renouvelable/S. renouvelante/F.() renouvelée/F.() renouveler/d0a+() renouvellement/S. rénovation/S. rénovatrice/F.() rénovée/F.() rénover/a0a+() renquiller/a0a+() renseignée/F.() renseignement/S. renseigner/a0a+() rentabilisation/S. rentabilisée/F.() rentabiliser/a0a+() rentabilité/S. rentable/S. rentamer/a0a+() rente/S. rentée/F.() renter/a0a+() rentière/F.() rentoiler/a0a+() rentoileuse/F.() rentraire rentrante/F.() rentrayer/a0a+() rentre-dedans rentrée/F.() rentrée/S. rentrer/a0a+() rentrouverte/F.() rentrouvrir/iC() renumérotation/S. renuméroter/a0a+() renvelopper/a0a+() renvenimer/a0a+() renverger/a0a+() renversante/F.() renverse/S. renversée/F.() renversement/S. renverser/a0a+() renvidage/S. renvider/a0a+() renvideur/S. renvier/a0a+() renvoi/S. renvoyée/F.() renvoyer/aD() réoccupation/S. réoccuper/a0a+() réopérer/c0a+() réorchestrer/a0a+() réordonnancer/a0a+() réordonner/a0a+() réorganisation/S. réorganisatrice/F.() réorganisée/F.() réorganiser/a0a+() réorientation/S. réorientée/F.() réorienter/a0a+() réouverture/S. repaire/S. repairer/a0() repaître/wS() répandre/tA() répandue/F.() réparable/S. reparaître/wQ() reparamétrage/S. réparation/S. réparatrice/F.() réparée/F.() réparer/a0a+() reparler/a0a+() repartager/a0a+() répartement/S. répartie/F.() repartie/S. repartir/f0f+() répartir/f0f+() repartir/i5i+() répartissable/S. répartiteur/S. répartition/S. repas repassage/S. repassée/F.() repasser/a0a+() repasseuse/F.() repatiner/a0a+() repaver/a0a+() repayer/a0a+() repêchage/S. repêchée/F.() repêcher/a0a+() repeigner/a0a+() repeindre/wB() repeinte/F.() rependre/tA() repenser/a0a+() repentance/S. repentante/F.() repentie/F.() repentir/S. repentir/i5i+() repérable/S. repérage/S. repercer/a0a+() répercussion/S. répercuter/a0a+() reperdre/tA() repère/S. repérée/F.() repérer/c0a+() répertoire/S. répertoriée/F.() répertorier/a0a+() répétabilité/S. répétable/S. répétée/F.() répéter/c0a+() répéteur/S. répétibilité/S. répétition/S. répétitive/F.() répétitivité/S. répétitorat/S. répétitrice/F.() repeuplée/F.() repeuplement/S. repeupler/a0a+() repic repincer/a0a+() repiquage/S. repiquer/a0a+() répit/S. replacée/F.() replacement/S. replacer/a0a+() replantée/F.() replanter/a0a+() replat/S. replâtrage/S. replâtrée/F.() replâtrer/a0a+() replète/F.() réplétion/S. réplétive/F.() repleuvoir/pZ() repli/S. repliable/S. réplication/S. repliée/F.() repliement/S. replier/a0a+() réplique/S. répliquer/a0a+() replisser/a0a+() replonger/a0a+() reployée/F.() reployer/a0a+() repointer/a0a+() repolir/f0f+() répondante/F.() répondeuse/F.() répondre/tA() répons réponse/S. repopulation/S. report/S. reportage/S. reportée/F.() reporter/S. reporter/a0a+() reporter-cameraman reporters-cameramans reportrice/F.() repos reposante/F.() reposée/F.() repose-pied/S. reposer/a0a+() repose-tête repositionnable/S. repositionnement/S. repositionner/a0a+() reposoir/S. repoudrée/F.() repoudrer/a0a+() repoussage/S. repoussante/F.() repousse/S. repoussée/F.() repoussement/S. repousser/a0a+() repoussoir/S. répréhensible/S. répréhension/S. reprendre/tF() repreneuse/F.() représailles représentable/S. représentante/F.() représentation/S. représentative/F.() représentativité/S. représentée/F.() représenter/a0a+() répressible/S. répression/S. répressive/F.() réprimande/S. réprimandée/F.() réprimander/a0a+() réprimée/F.() réprimer/a0a+() reprisage/S. reprise/F.() reprise/S. reprisée/F.() repriser/a0a+() repriseuse/S. réprobation/S. réprobatrice/F.() reprochable/S. reproche/S. reprochée/F.() reprocher/a0a+() reproductibilité/S. reproductible/S. reproduction/S. reproductive/F.() reproductrice/F.() reproduire/yM() reproduite/F.() reprogrammée/F.() reprogrammer/a0a+() reprographie/S. reprographiée/F.() reprographier/a0a+() réprouvée/F.() reprouver/a0a+() réprouver/a0a+() reps reptation/S. reptile/S. reptilienne/F.() républicaine/F.() républicaniser/a0a+() républicanisme/S. république/S. répudiation/S. répudiée/F.() répudier/a0a+() repue/F.() répugnance/S. répugnante/F.() répugner/a0a+() répulsion/S. répulsive/F.() réputation/S. réputée/F.() réputer/a0a+() requalification/S. requalifiée/F.() requalifier/a0a+() requérante/F.() requérir/iK() requestionner/a0a+() requête/S. requiem/S. requin/S. requinquée/F.() requinquer/a0a+() requise/F.() réquisit/S. réquisition/S. réquisitionnée/F.() réquisitionner/a0a+() réquisitoire/S. réquisitoriale/W.() resaler/a0a+() resalir/f0f+() resaluer/a0a+() resarcelée/F.() rescapée/F.() rescindable/S. rescindante/F.() rescinder/a0a+() rescision/S. rescisoire/S. rescousse/S. rescription/S. rescrit/S. réseau/X. résection/S. réséda/S. resemer/b0a+() réséquer/c0a+() réserpine/S. réservataire/S. réservation/S. réserve/S. réservée/F.() réserver/a0a+() réserviste/S. réservoir/S. résidence/S. résidente/F.() résidentielle/F.() résider/a0() résidu/S. résiduaire/S. résiduelle/F.() résignataire/S. résignation/S. résignée/F.() résigner/a0a+() résiliable/S. résiliation/S. résiliée/F.() résilience/S. résilier/a0a+() résille/S. résine/S. résiner/a0a+() résineuse/W.() résinière/F.() résinifère/S. résinifier/a0a+() résipiscence/S. résistance/S. résistante/F.() résister/a0() résistible/S. résistive/F.() résistivité/S. résistor/S. résolubilité/S. résoluble/S. résolue/F.() résolument résolution/S. résolutive/F.() résolutoire/S. résolvante/F.() résonance/S. résonante/F.() résonateur/S. résonatrice/F.() résonnante/F.() résonner/a0() résorbable/S. résorbée/F.() résorber/a0a+() résorcine/S. résorption/S. résoudre/xN() respect/S. respectabilité/S. respectable/S. respectée/F.() respecter/a0a+() respective/F.() respectivement respectueuse/W.() respectueusement respirable/S. respirateur/S. respiration/S. respiratoire/S. respirer/a0a+() resplendir/f0() resplendissante/F.() resplendissement/S. responsabilisation/S. responsabilisée/F.() responsabiliser/a0a+() responsabilité/S. responsable/S. resquillage/S. resquille/S. resquiller/a0a+() resquilleuse/F.() ressac/S. ressaigner/a0a+() ressaisir/f0f+() ressaisissement/S. ressassée/F.() ressassement/S. ressasser/a0a+() ressasseur/S. ressaut/S. ressauter/a0a+() ressayage/S. ressayer/a0a+() ressemblance/S. ressemblante/F.() ressembler/a0a+() ressemelage/S. ressemeler/d0a+() ressemeleuse/F.() ressemer/b0a+() ressenti/S. ressentie/F.() ressentiment/S. ressentir/i5i+() resserrage/S. resserre/S. resserrée/F.() resserrement/S. resserrer/a0a+() resservir/iF() ressort/S. ressortir/f0() ressortir/i5i+() ressortissante/F.() ressouder/a0a+() ressource/S. ressourcement/S. ressourcer/a0a+() ressouvenir/i0i+() ressuer/a0a+() ressui/S. ressuscitée/F.() ressusciter/a0a+() ressuyage/S. ressuyée/F.() ressuyer/a0a+() restanque/S. restante/F.() restaurant/S. restauration/S. restauratrice/F.() restaurée/F.() restaurer/a0a+() reste/S. rester/a0a+() restituable/S. restituée/F.() restituer/a0a+() restitution/S. resto/S. restoroute/S. restreindre/wB() restreinte/F.() restriction/S. restrictive/F.() restringente/F.() restructuration/S. restructurée/F.() restructurer/a0a+() restyler resucée/S. résultante/F.() résultat/S. résulter/aG() résumé/S. résumée/F.() résumer/a0a+() résurgence/S. résurgente/F.() resurgir/f0() résurrection/S. résurrectionnelle/F.() resynchronisation/S. resynchronisée/F.() resynchroniser/a0a+() retable/S. rétablie/F.() rétablir/f0f+() rétablissement/S. retaille/S. retailler/a0a+() rétamage/S. rétamée/F.() rétamer/a0a+() rétameur/S. retape/S. retapée/F.() retaper/a0a+() retapissée/F.() retapisser/a0a+() retard/S. retardataire/S. retardatrice/F.() retardée/F.() retardement/S. retarder/a0a+() retâter/a0a+() reteindre/wB() retéléphoner/a0() retendre/tA() retenir/i0i+() retenter/a0a+() rétention/S. retentir/f0() retentissante/F.() retentissement/S. rétentrice/F.() retenue/F.() retenue/S. retercer/a0a+() reterser/a0a+() rétiaire/S. réticence/S. réticente/F.() réticulaire/S. réticulation/S. réticule/S. réticulée/F.() réticuler/a0a+() réticulo-endothéliale/W.() réticulum/S. rétine/S. rétinienne/F.() rétinite/S. rétinoïde/S. rétinol/S. rétinopathie/S. retirage/S. retiration/S. retirée/F.() retirement/S. retirer/a0a+() retisser/a0a+() rétive/F.() rétivité/S. retombante/F.() retombée/S. retombement/S. retomber/a0() retondre/tA() retoquer/a0a+() retordage/S. retordement/S. retordeuse/F.() retordre/tA() rétorquer/a0a+() retorse/F.() rétorsion/S. retouchable/S. retouche/S. retouchée/F.() retoucher/a0a+() retoucheuse/F.() retour/S. retournage/S. retournée/F.() retournement/S. retourner/a0a+() retracer/a0a+() rétractable/S. rétractation/S. rétractée/F.() rétracter/a0a+() rétracteur/S. rétractibilité/S. rétractile/S. rétractilité/S. rétraction/S. rétractrice/F.() retraduction/S. retraduire/yL() retraduite/F.() retraire/wL() retraitante/F.() retraite/F.() retraite/S. retraitée/F.() retraitement/S. retraiter/a0a+() retranchée/F.() retranchement/S. retrancher/a0a+() retranscription/S. retranscrire/y1() retranscrite/F.() retransmetteur/S. retransmettre/vA() retransmise/F.() retransmission/S. retravaillée/F.() retravailler/a0a+() retraverser/a0a+() retrayante/F.() rétrécie/F.() rétrécir/f0f+() rétrécissante/F.() rétrécissement/S. retreindre rétreindre retreinte/F.() rétreinte/F.() retrempe/S. retremper/a0a+() rétribuée/F.() rétribuer/a0a+() rétribution/S. retriever/S. rétro/S. rétroactes rétroaction/S. rétroactive/F.() rétroactivement rétroactivité/S. rétroagir/f0() rétrocédée/F.() rétrocéder/c0a+() rétrocession/S. rétrocompatibilité/S. rétrocompatible/S. rétrocontrôle/S. rétrodiffusion/S. rétroéclairage/S. rétroflexe/S. rétrofusée/S. rétrogradation/S. rétrograde/S. rétrogradée/F.() rétrograder/a0a+() rétrogression/S. rétro-ingénierie/S. rétropédalage/S. rétroposition/S. rétroprojecteur/S. rétropropulsion/S. rétrospection/S. rétrospective/F.() rétrospectivement retroussage/S. retroussée/F.() retroussement/S. retrousser/a0a+() retroussis retrouvable/S. retrouvailles retrouvée/F.() retrouver/a0a+() rétroversion/S. rétrovirus rétroviseur/S. rets retuber/a0a+() réunie/F.() réunification/S. réunifiée/F.() réunifier/a0a+() réunion/S. réunionnaise/F.() réunir/f0f+() réunissage/S. réusiner/a0a+() réussie/F.() réussir/f0f+() réussite/S. réutilisable/S. réutilisation/S. réutilisée/F.() réutiliser/a0a+() revacciner/a0a+() revalidation/S. revalider/a0a+() revaloir/pO() revalorisation/S. revalorisée/F.() revaloriser/a0a+() revancharde/F.() revanche/S. revancher/a0a+() revanchisme/S. revascularisation/S. rêvasser/a0() rêvasserie/S. rêvasseuse/F.() rêve/S. revêche/S. rêvée/F.() réveil/S. réveillée/F.() réveille-matin réveiller/a0a+() réveilleuse/F.() réveillon/S. réveillonner/a0() réveillonneur/S. révélation/S. révélatrice/F.() révélée/F.() révéler/c0a+() revenant-bon revenante/F.() revendable/S. revendeuse/F.() revendication/S. revendicative/F.() revendicatrice/F.() revendiquée/F.() revendiquer/a0a+() revendre/tA() revendue/F.() revenir/i0i+() revente/S. revenu/S. revenue/F.() rêver/a0a+() réverbérante/F.() réverbération/S. réverbère/S. réverbérée/F.() réverbérer/c0a+() reverdie/F.() reverdir/f0f+() révérée/F.() révérence/S. révérencielle/F.() révérencieuse/W.() révérencieusement révérende/F.() révérendissime/S. révérer/c0a+() rêverie/S. revérification/S. revérifier/a0a+() revernir/f0f+() revers reversée/F.() reversement/S. reverser/a0a+() réversibilité/S. réversible/S. réversion/S. revêtement/S. revêtir/iG() rêveuse/F.() rêveusement revigorante/F.() revigoration/S. revigorée/F.() revigorer/a0a+() revirement/S. revirer/a0() révisable/S. révisée/F.() réviser/a0a+() réviseure/S. réviseuse/F.() révision/S. revisionner/a0a+() révisionnisme/S. révisionniste/S. revisitée/F.() revisiter/a0a+() revisser/a0a+() revitalisation/S. revitalisée/F.() revitaliser/a0a+() revive/F.() revivifiante/F.() revivifier/a0a+() reviviscence/S. revivre/xS() révocabilité/S. révocable/S. révocation/S. revoici revoilà revoir/pF() revoler/a0a+() révoltante/F.() révolte/S. révoltée/F.() révolter/a0a+() révolue/F.() révolution/S. révolutionnaire/S. révolutionnairement révolutionnarisme/S. révolutionnariste/S. révolutionner/a0a+() revolver/S. revolvériser/a0a+() révoquée/F.() révoquer/a0a+() revoter/a0a+() revouloir revoyure/S. revue/F.() revue/S. révulsée/F.() révulser/a0a+() révulsion/S. révulsive/F.() rewriter/S. rewriter/a0a+() rewriting/S. rez rez-de-chaussée rez-de-jardin rhabdomancie/S. rhabdomancienne/F.() rhabillage/S. rhabillement/S. rhabiller/a0a+() rhabilleuse/F.() rhapsode/S. rhapsodie/S. rhapsodique/S. rhé/S. rhénane/F.() rhénium/S. rhéobase/S. rhéologie/S. rhéologique/S. rhéologue/S. rhéomètre/S. rhéophile/S. rhéostat/S. rhéostatique/S. rhésus rhéteur/S. rhétienne/F.() rhétique/S. rhéto/S. rhétoricienne/F.() rhétorique/S. rhétoriqueur/S. rhéto-romane/F.() rhinanthe/S. rhinencéphale/S. rhingrave/S. rhinite/S. rhinocéros rhino-laryngite/S. rhinologie/S. rhinolophe/S. rhino-pharyngée/F.() rhino-pharyngienne/F.() rhino-pharyngite/S. rhino-pharynx rhinoplastie/S. rhizocarpée/F.() rhizoctone/S. rhizoïde/S. rhizomateuse/W.() rhizome/S. rhizophage/S. rhizophore/S. rhizopode/S. rhizosphère/S. rhizostome/S. rhizotome/S. rhô rho/S. rhodamine/S. rhodanienne/F.() rhodiée/F.() rhodinol/S. rhodite/S. rhodium/S. rhododendron/S. rhodoïd/S. rhodonite/S. rhodophycée/S. rhodophyte/S. rhodopsine/S. rhombe/S. rhombencéphale/S. rhombique/S. rhomboèdre/S. rhomboédrique/S. rhomboïdale/W.() rhomboïde/S. rhotacisme/S. rhubarbe/S. rhum/S. rhumatisante/F.() rhumatismale/W.() rhumatisme/S. rhumatoïde/S. rhumatologie/S. rhumatologique/S. rhumatologiste/S. rhumatologue/S. rhumb/S. rhume/S. rhumée/F.() rhumer/a0a+() rhumerie/S. rhynchite/S. rhynchocéphale/S. rhynchonelle/S. rhyolite/S. rhyolithe/S. rhytidome/S. rhyton/S. ria/S. rial/S. riante/F.() ribambelle/S. ribaude/F.() ribaudequin/S. riblage/S. ribler/a0a+() riblon/S. riboflavine/S. ribonucléase/S. ribonucléique/S. ribose/S. ribosome/S. ribosomique/S. ribote/S. ribouis ribouldingue/S. ribouler/a0() ricaine/F.() ricanante/F.() ricanement/S. ricaner/a0() ricaneuse/F.() riccie/S. ricercare/I. richarde/F.() riche/S. richelieu/S. richement richesse/S. richissime/S. ricin ricine/S. ricinée/F.() ricinoléique/S. rickettsie/S. rickettsiose/S. ricoche/S. ricocher/a0() ricochet/S. ric-rac rictus ridage/S. ride/S. rideau/X. ridée/F.() ridelle/S. ridement/S. rider/a0a+() ridicule/S. ridiculement ridiculisée/F.() ridiculiser/a0a+() ridoir/S. ridule/S. rie/S. riel/S. riemannienne/F.() rien/S. riesling/S. rieuse/F.() riffaudée/F.() riffauder/a0a+() riffle/S. rififi/S. riflard/S. rifle/S. rifler/a0a+() riflette/S. rifloir/S. rift/S. rigaudon/S. rigide/S. rigidement rigidifiée/F.() rigidifier/a0a+() rigidité/S. rigodon/S. rigolade/S. rigolage/S. rigolarde/F.() rigole/S. rigoler/a0() rigoleuse/F.() rigollot/S. rigolo/S. rigolote/S. rigorisme/S. rigoriste/S. rigotte/S. rigoureuse/W.() rigoureusement rigueur/S. rikiki rillettes rillons rilsan/S. rimaille/S. rimailler/a0() rimailleuse/F.() rimaye/S. rime/S. rimée/F.() rimer/a0a+() rimeuse/F.() rimmel/S. rinçage/S. rinceau/X. rince-bouche rince-bouteille/S. rince-doigts rincée/F.() rincer/a0a+() rincette/S. rinceuse/F.() rinçure/S. rinforzando ring/S. ringardage/S. ringarde/F.() ringarder/a0a+() ringardise/S. ringardiser/a0a+() rink-hockey/S. ripage/S. ripaille/S. ripailler/a0() ripailleuse/F.() ripaton/S. ripatonner ripe/S. riper/a0a+() ripieno/S. ripolin/S. ripoliner/a0a+() riposte/S. riposter/a0a+() ripou/X. ripper/S. ripuaire/S. riquiqui rire/S. rire/yW() ris risban/S. risberme/S. risée/S. risette/S. risible/S. risiblement risorius risotto/S. risque/S. risquée/F.() risquer/a0a+() risque-tout rissole/S. rissoler/a0a+() ristourne/S. ristourner/a0a+() ritale/F.() rite/S. ritournelle/S. ritualisation/S. ritualisée/F.() ritualiser/a0a+() ritualisme/S. ritualiste/S. rituelle/F.() rituellement rivage/S. rivale/W.() rivaliser/a0() rivalité/S. rive/S. rivée/F.() rivelaine/S. river/a0a+() riveraine/F.() riveraineté/S. rivet/S. rivetage/S. rivetée/F.() riveter/d0a+() riveteuse/S. riveuse/F.() rivière/S. rivoir/S. rivulaire/S. rivure/S. rixdale/S. rixe/S. riz rizerie/S. rizicole/S. rizicultrice/F.() riziculture/S. rizière/S. riz-pain-sel road-movie/S. roadster/S. roast-beef/S. rob/S. robage/S. robe/S. robelage/S. rober/a0a+() robert/S. robin/S. robinet/S. robinetier/S. robinétier/S. robinetière/F.() robinetterie/S. robinier/S. roborative/F.() robot/S. roboticienne/F.() robotique/S. robotisation/S. robotisée/F.() robotiser/a0a+() robuste/S. robustement robustesse/S. roc/S. rocade/S. rocaillage/S. rocaille/S. rocailleur/S. rocailleuse/W.() rocambolesque/S. rochage/S. rochassière/F.() roche/S. rocher rocher/S. rochet/S. rocheuse/W.() rochier/S. rock/S. rockeuse/F.() rocking-chair/S. rococo/S. rocou/S. rocouyer/S. rocquer/a0() rodage/S. rôdailler/a0() rôde/S. rodée/F.() rodéo/S. roder/a0a+() rôder/a0() rôdeuse/F.() rodoir/S. rodomont/S. rodomontade/S. rœntgen/S. rœntgenium/S. rœntgenthérapie/S. rogation/S. rogatoire/S. rogatoirement rogaton/S. rognage/S. rogne/S. rognée/F.() rogne-pied rogner/a0a+() rogneuse/F.() rognon/S. rognonner/a0() rognure/S. rogomme/S. rogue/S. roguée/F.() rohart/S. roi/S. roide/S. roidement roideur/S. roidie/F.() roidir/f0f+() roitelet/S. rôle/S. roller/S. rolleuse/F.() rollier/S. rollmops romaine/F.() romaji/S. roman/S. romance/S. romancée/F.() romancer/a0a+() romancero/S. romanche/S. romancière/F.() romande/F.() romane/F.() romanesque/S. roman-feuilleton roman-fleuve romani/S. romanichelle/F.() romanisante/F.() romanisation/S. romanisée/F.() romaniser/a0a+() romaniste/S. romanité/S. romano/S. roman-photo romans-feuilletons romans-fleuves romans-photos romantique/S. romantiquement romantisme/S. romarin/S. rombière/S. rompre/tA() rompue/F.() ronce/S. ronceraie/S. ronceuse/W.() ronchonne/F.() ronchonneau/X. ronchonnement/S. ronchonner/a0() ronchonneuse/F.() ronchopathie/S. roncière/F.() rondache/S. rond-de-cuir ronde/F.() rondeau/X. ronde-bosse rondel/S. rondelette/F.() rondelle/S. rondement rondes-bosses rondeur/S. rondier/S. rondin/S. rondir/f0f+() rondo/S. rondouillarde/F.() rond-point ronds-de-cuir ronds-points ronéo/S. ronéoter/a0a+() ronéotyper/a0a+() ronflaguer/a0a+() ronflante/F.() ronflement/S. ronfler/a0() ronfleuse/F.() rongée/F.() rongement/S. ronger/a0a+() rongeure/S. rongeuse/F.() rônin/S. ronron/S. ronronnement/S. ronronner/a0() ronsardiser/a0() rookerie/S. roque/S. roquefort/S. roquelaure/S. roquentin/S. roquer/a0() roquerie/S. roquet/S. roquette/S. rorqual/S. rosace/S. rosacée/F.() rosage/S. rosaire/S. rosalbin/S. rosaniline/S. rosat rosâtre/S. rosbif/S. rose/S. roseau/X. rose-croix rosée/F.() rosée/S. roselet/S. roselière/F.() roséole/S. roser/a0a+() roseraie/S. rosette/S. rosicrucienne/F.() rosie/F.() rosière/F.() rosiériste/S. rosir/f0f+() rosissante/F.() rosissement/S. rossard/S. rosse/S. rosser/a0a+() rosserie/S. rossignol/S. rossignolet/S. rossinante/S. rossolis rösti rostrale/W.() rostre/S. rot/S. rôt/S. rotacée/F.() rotang/S. rotarien/S. rotary/S. rotateur/S. rotation/S. rotative/F.() rotatoire/S. rotatrice/F.() rotengle/S. roténone/S. roter/a0() rôtie/F.() rotifère/S. rotin/S. rôtir/f0f+() rôtissage/S. rôtisserie/S. rôtisseuse/F.() rôtissoire/S. rotogravure/S. rotomoulage/S. rotonde/S. rotondité/S. rotor/S. rotorique/S. rotrouenge/S. rotruenge/S. rottweiler/S. rotule/S. rotulienne/F.() roture/S. roturière/F.() rouable/S. rouage/S. rouanne/F.() rouannette/S. roublarde/F.() roublardise/S. rouble/S. rouchi roucoulade/S. roucoulante/F.() roucoulement/S. roucouler/a0a+() roudoudou/S. roue/S. rouée/F.() rouelle/S. rouennerie/S. rouer/a0a+() rouergate/F.() rouerie/S. rouette/F.() rouf/S. rouflaquette/S. roufle/S. roufler/a0a+() rouge/S. rougeâtre/S. rougeaude/F.() rouge-gorge rougeoiement/S. rougeole/S. rougeoyante/F.() rougeoyer/a0() rouge-queue rouges-gorges rouges-queues rouget/S. rougeur/S. rougie/F.() rougir/f0f+() rougissante/F.() rougissement/S. rougnotter/a0() rouie/F.() rouille/S. rouillée/F.() rouiller/a0a+() rouillure/S. rouir/f0f+() rouissage/S. rouissoir/S. roulade/S. roulage/S. roulante/F.() roule/S. rouleau/X. rouleautée/F.() roulé-boulé roulée/F.() roulement/S. rouler/a0a+() roulés-boulés roulette/S. rouleur/S. roulier/S. roulis rouloir/S. roulotte/S. roulotter/a0a+() roulure/S. roumaine/F.() roumi/S. round/S. roupettes roupie/S. roupiller/a0() roupillon/S. rouquine/F.() rouscailler/a0() rouspétance/S. rouspéter/c0() rouspéteuse/F.() rousquille/S. roussâtre/S. rousse/W.() rousseau/X. rousseauisme/S. rousseauiste/S. rousselet/S. rousserolle/S. roussette/S. rousseur/S. roussie/F.() roussin/S. roussir/f0f+() roussissement/S. rouste/S. roustir/f0f+() roustons routage/S. routarde/F.() route/S. router/a0a+() routeur/S. routeuse/F.() routière/F.() routine/S. routinière/F.() rouverain/S. rouverin/S. rouvieux rouvraie/S. rouvrir/iC() rowing/S. royale/W.() royalement royalisme/S. royaliste/S. royalties royaume/S. royauté/S. rromani ru/S. ruade/S. ruban/S. rubanée/F.() rubaner/a0a+() rubanerie/S. rubanière/F.() rubato rubéfaction/S. rubéfiante/F.() rubéfier/a0a+() rubellite/S. rubéole/S. rubéoleuse/W.() rubescente/F.() rubiacée/S. rubican/S. rubicelle/S. rubiconde/F.() rubidium/S. rubiette/S. rubigineuse/W.() rubis rubrique/S. ruche/S. ruchée/F.() rucher/S. rucher/a0a+() rudbeckie/S. rude/S. rudement rudentée/F.() rudenter/a0a+() rudenture/S. rudérale/W.() rudération/S. rudesse/S. rudiment/S. rudimentaire/S. rudimentairement rudoiement/S. rudoyée/F.() rudoyer/a0a+() rue/S. ruée/S. ruelle/S. ruer/a0a+() ruffian/S. rufian/S. rugby/S. rugbyman/S. rugination/S. rugir/f0f+() rugissante/F.() rugissement/S. rugosité/S. rugueuse/W.() ruiler/a0a+() ruine/S. ruine-babines ruinée/F.() ruiner/a0a+() ruineuse/W.() ruineusement ruiniforme/S. ruiniste/S. ruinure/S. ruisseau/X. ruisselante/F.() ruisseler/d0() ruisselet/S. ruissellement/S. rumba/S. rumen/S. rumeur/S. rumex ruminante/F.() rumination/S. ruminée/F.() ruminer/a0a+() rumsteck/S. runabout/S. rune/S. runiforme/S. runique/S. runologue/S. ruolz rupestre/S. rupicole/S. rupine/F.() rupiner/a0() rupteur/S. rupture/S. rurale/W.() ruralité/S. rurbanisation/S. ruse/S. rusée/F.() ruser/a0() rush/S. russe/S. russification/S. russifiée/F.() russifier/a0a+() russisée/F.() russiser/a0a+() russophile/S. russophone/S. russule/S. rustaude/F.() rustauderie/S. rusticage/S. rusticité/S. rustine/S. rustique/S. rustiquement rustiquer/a0a+() rustre/S. rut/S. rutabaga/S. rûter/a0() ruthène/S. ruthénium/S. rutherfordium/S. rutilance/S. rutilante/F.() rutilation/S. rutilement/S. rutiler/a0() rwandaise/F.() rythme/S. rythmée/F.() rythmer/a0a+() rythmicienne/F.() rythmicité/S. rythmique/S. rythmiquement s s/U.||-- sa s'abader sabayon/S. sabbat/S. sabbathienne/F.() sabbatique/S. sabéenne/F.() sabéisme/S. sabelle/S. sabellianisme/S. sabine/F.() sabir/S. sablage/S. sable/S. sablée/F.() sabler/a0a+() sablerie/S. sableuse/F.() sableuse/W.() sablière/F.() sablon/S. sablonner/a0a+() sablonneuse/W.() sablonnière/S. sabord/S. sabordage/S. sabordée/F.() sabordement/S. saborder/a0a+() sabot/S. sabotage/S. sabotée/F.() saboter/a0a+() saboterie/S. saboteuse/F.() sabotière/F.() sabouler/a0a+() sabra/S. sabrage/S. sabre/S. sabrée/F.() sabrer/a0a+() sabretache/S. sabreuse/F.() s'abriller saburrale/W.() saburre/S. sac/S. sacagner/a0a+() saccade/S. saccadée/F.() saccader/a0a+() saccage/S. saccagée/F.() saccagement/S. saccager/a0a+() saccageuse/F.() saccharase/S. saccharate/S. sacchareuse/W.() saccharide/S. saccharidé/S. saccharifère/S. saccharification/S. saccharifier/a0a+() saccharimètre/S. saccharimétrie/S. saccharimétrique/S. saccharine/F.() saccharine/S. saccharinée/F.() saccharique/S. saccharoïde/S. saccharolé/S. saccharomyces saccharose/S. saccharure/S. sacciforme/S. saccule/S. sacculiforme/S. sacculine/S. sacerdoce/S. sacerdotale/W.() sachem/S. sachet/S. sacoche/S. sacoléva/S. sacolève/S. sacome/S. sacquebute/S. sacquée/F.() sacquer/a0a+() sacrale/W.() sacralisation/S. sacralisée/F.() sacraliser/a0a+() sacralité/S. sacramentaire/S. sacramental/X. sacramentelle/F.() sacre/S. sacrebleu sacré-cœur sacredieu sacrée/F.() sacrément sacrement/S. sacrer/a0a+() sacret/S. sacrifiable/S. sacrificatoire/S. sacrificatrice/F.() sacrifice/S. sacrificielle/F.() sacrifiée/F.() sacrifier/a0a+() sacrilège/S. sacripant/S. sacristain/S. sacristi sacristie/S. sacristine/S. sacro-sainte/F.() sacrum/S. sadd/S. sadducéenne/F.() sadique/S. sadiquement sadisme/S. sadomasochisme/S. sadomasochiste/S. safari/S. safari-photo safaris-photos safran/S. safranée/F.() safraner/a0a+() safranière/S. safre/S. saga/S. sagace/S. sagacité/S. sagaie/S. sage/S. sage-femme sagement sages-femmes sagesse/S. sagette/S. s'agir/fZ() sagittaire/S. sagittale/W.() sagittée/F.() sagou/S. sagouin/S. sagoutier/S. sagum/S. saharienne/F.() sahel/S. sahélienne/F.() saï/S. saie/S. saietter/a0a+() saïga/S. saignante/F.() saignement/S. saigner/a0a+() saigneuse/F.() saigneuse/W.() saignoir/S. saillante/F.() saillie/S. saillir/iS() saïmiri/S. sainbois saindoux saine/F.() sainement sainfoin/S. saint-bernard saint-crépin saint-cyrienne/F.() sainte/F.() saintement sainteté/S. saint-frusquin saint-glinglin saint-honoré saint-nectaire saintongeaise/F.() saint-paulin saint-père saint-pierre saint-simonienne/F.() saint-simonisme saints-pères saisie/F.() saisie-arrêt saisie-brandon saisie-exécution saisies-arrêts saisies-brandons saisies-exécutions saisine/S. saisir/f0f+() saisissable/S. saisissante/F.() saisissement/S. saisisseur/S. saison/S. saisonnale/W.() saisonnalité/S. saisonner/a0() saisonnière/F.() saisonnièrement saïte/S. sajou/S. saké/S. saki/S. salace/S. salacité/S. salade/S. saladerie/S. saladero/S. saladier/S. salafisme/S. salafiste/S. salage/S. salaire/S. salaison/S. salamalec/S. salamandre/S. salami/S. salangane/S. salants salariale/W.() salariat/S. salariée/F.() salarier/a0a+() salaud/S. salée/F.() salement salep/S. saler/a0a+() saleron/S. salésienne/F.() saleté/S. saleuse/F.() salicaire/S. salicine/S. salicional/S. salicole/S. salicoque/S. salicorne/S. salicoside/S. salicylate/S. salicylique/S. salie/F.() salienne/F.() salière/S. salifère/S. salifiable/S. salification/S. salifier/a0a+() saligaude/F.() salignon/S. saligote/F.() saligoter/a0a+() salinage/S. saline/F.() salinière/S. salinisation/S. salinité/S. salique/S. salir/f0f+() salissante/F.() salisson/S. salissure/S. salivaire/S. salivation/S. salive/S. saliver/a0() salle/S. salmigondis salmis salmonelle/S. salmonellose/S. salmonicultrice/F.() salmoniculture/S. saloir/S. salol/S. salomé/S. salon/S. salonguer/a0() salonnarde/F.() salonnarde/F.() salonnière/F.() saloon/S. salop/S. salopard/S. salope/S. salopée/F.() saloper/a0a+() saloperie/S. salopette/S. salopiaud/S. salopiot/S. salpêtrage/S. salpêtre/S. salpêtrée/F.() salpêtrer/a0a+() salpêtreuse/W.() salpêtrière/S. salpêtrisation/S. salpicon/S. salpingite/S. salsa/S. salse/S. salsepareille/S. salsifis saltarelle/S. saltation/S. saltimbanque/S. salubre/S. salubrité/S. saluée/F.() saluer/a0a+() salure/S. salut salut/S. salutaire/S. salutairement salutation/S. salutiste/S. salvadorienne/F.() salvatrice/F.() salve/S. samare/S. samaritaine/F.() samarium/S. samba/S. samedi/S. samit/S. samizdat/S. samouraï/S. samovar/S. samoyède/S. sampan/S. sampi sample/S. sampler/S. sampling/S. sampot/S. samsâra samu/S. sana/S. sanatorium/S. san-benito/S. sancerre/S. sanctification/S. sanctificatrice/F.() sanctifiée/F.() sanctifier/a0a+() sanction/S. sanctionnée/F.() sanctionner/a0a+() sanctuaire/S. sanctuarisée/F.() sanctuariser/a0a+() sanctus sandale/S. sandalette/S. sandaraque/S. sanderling/S. sandjak/S. sandow/S. sandre/S. sandwich/S. sandwicher/a0a+() sandwicherie/S. sang/S. sang-froid sanglante/F.() sangle/S. sanglée/F.() sangler/a0a+() sanglier/S. sanglot/S. sanglotante/F.() sanglotement/S. sangloter/a0() sang-mêlé sangria/S. sangs-mêlés sangsue/S. sanguinaire/S. sanguine/F.() sanguinolente/F.() sanhédrin/S. sanicle/S. sanie/S. sanieuse/W.() sanitaire/S. sans sans-abri sans-cœur sans-culotte/S. sans-emploi sansevière/S. sans-façon sans-faute sans-fil sans-filiste/S. sans-gêne sans-grade sanskrit/S. sanskrite/F.() sanskritisme/S. sanskritiste/S. sans-le-sou sans-logis sansonnet/S. sans-papiers sans-parti sans-patrie sans-plomb sans-serif sans-soin sans-souci santal/S. santé/S. santer/a0() santiag/S. santon/S. santonner/a0a+() santonnière/F.() sanve/S. sanza/S. saônoise/F.() saoudienne/F.() saoudite/S. saoule/F.() saouler/a0a+() sapajou/S. sape/S. sapée/F.() sapement/S. sapèque/S. saper/a0a+() saperde/S. saperlipopette saperlotte sapeur/S. sapeur-pompier sapeurs-pompiers saphène/S. saphique/S. saphir/S. saphisme/S. sapide/S. sapidité/S. sapience/S. sapiens sapientiale/W.() sapin/S. sapine/S. sapinette/S. sapinière/S. sapiteur/S. saponacée/F.() saponaire/S. saponifiable/S. saponification/S. saponifier/a0a+() saponine/S. sapotier/S. sapristi saprophage/S. saprophyte/S. saquer/a0a+() sarabande/S. sarbacane/S. sarcasme/S. sarcastique/S. sarcastiquement sarcelle/S. sarclage/S. sarcler/a0a+() sarcleuse/F.() sarcloir/S. sarcocèle/S. sarcoïde/S. sarcologie/S. sarcomateuse/W.() sarcome/S. sarcophage/S. sarcoplasme/S. sarcopte/S. sardanapalesque/S. sardane/S. sarde/S. sardine/S. sardinerie/S. sardinière/F.() sardoine/S. sardonique/S. sardoniquement sardonyx sargasse/S. sari/S. sarigue/S. sarin/S. sarisse/S. sarment/S. sarmenteuse/W.() sarong/S. saros sarrancolin/S. sarrasine/F.() sarrau/S. sarrette/S. sarriette/S. sarroise/F.() sarter/a0a+() sas sassafras sassanide/S. sassement/S. sassenage/S. sasser/a0a+() sasseur/S. satanée/F.() sataner/a0a+() satanique/S. sataniser/a0a+() satanisme/S. sataniste/S. satellisation/S. satellisée/F.() satelliser/a0a+() satellitaire/S. satellite/S. sati/S. satiété/S. satin/S. satinage/S. satinée/F.() satiner/a0a+() satinette/S. satineuse/F.() satire/S. satirique/S. satiriquement satiriser/a0a+() satiriste/S. satisfaction/S. satisfaire/wD() satisfaisante/F.() satisfaite/F.() satisfecit satonner/a0a+() satrape/S. satrapie/S. saturabilité/S. saturable/S. saturante/F.() saturateur/S. saturation/S. saturée/F.() saturer/a0a+() saturnales saturne/S. saturnie/S. saturnienne/F.() saturnine/F.() saturnisme/S. satyre/S. satyriasis satyrique/S. satyrisme/S. sauce/S. saucée/F.() saucer/a0a+() saucière/F.() sauciflard/S. saucisse/S. saucisson/S. saucissonnage/S. saucissonnée/F.() saucissonner/a0a+() sauf sauf/S. sauf-conduit/S. sauge/S. saugrenue/F.() saulaie/S. saule/S. saulée/S. saumâtre/S. saumon/S. saumoneau/X. saumonée/F.() saumurage/S. saumure/S. saumurée/F.() saumurer/a0a+() sauna/S. saunage/S. sauner/a0() saunière/F.() saupiquet/S. saupoudrage/S. saupoudrée/F.() saupoudrer/a0a+() saupoudreuse/F.() saupoudroir/S. saure/F.() saurée/F.() saurer/a0a+() saurien/S. saurin/S. saurir/f0f+() saurischien/S. saurissage/S. saurisserie/S. saurisseur/S. sauropode/S. saussaie/S. saut/S. saut-de-lit saut-de-loup saut-de-mouton saute/S. sautée/F.() sautelle/S. saute-mines saute-mouton sauter/a0a+() sautereau/X. sauterelle/S. sauterie/S. sauternes saute-ruisseau sauteuse/F.() sautillante/F.() sautillement/S. sautiller/a0() sautoir/S. sauts-de-lit sauts-de-loup sauts-de-mouton sauvage/S. sauvagement sauvageonne/F.() sauvagerie/S. sauvagine/F.() sauvée/F.() sauvegarde/S. sauvegardée/F.() sauvegarder/a0a+() sauve-qui-peut sauver/a0a+() sauvetage/S. sauveté/S. sauveteuse/F.() sauvette sauveur/S. sauveuse/F.() savamment savane/S. savante/F.() savarin/S. savart/S. savate/S. savater/a0a+() saveter savetier/S. saveur/S. savoir/S. savoir/pE() savoir-faire savoir-vivre savoisienne/F.() savon/S. savonnage/S. savonnée/F.() savonner/a0a+() savonnerie/S. savonnette/S. savonneuse/W.() savonnière/F.() savourée/F.() savourer/a0a+() savoureuse/W.() savoureusement savoyarde/F.() saxatile/S. saxe/S. saxhorn/S. saxicole/S. saxifrage/S. saxo/S. saxonne/F.() saxophone/S. saxophoniste/S. saynète/S. sayon/S. sb/||-- sbire/S. scabieuse/W.() scabreuse/W.() scaferlati/S. scalaire/S. scalairement scalde/S. scaldique/S. scalène/S. scalp/S. scalpée/F.() scalpel/S. scalper/a0a+() scampi/S. scandale/S. scandaleuse/W.() scandaleusement scandalisée/F.() scandaliser/a0a+() scandée/F.() scander/a0a+() scandinave/S. scandium/S. scannée/F.() scanner/S. scanner/a0a+() scannériser/a0a+() scanographe/S. scanographie/S. scansion/S. scaphandre/S. scaphandrière/F.() scaphite/S. scaphoïde/S. scapulaire/S. scapulo-humérale/W.() scarabée/S. scare/S. scarieuse/W.() scarifiage/S. scarificateur/S. scarification/S. scarifiée/F.() scarifier/a0a+() scarlatine/S. scarole/S. scat/S. scatologie/S. scatologique/S. scatophile/S. sceau/X. sceau-de-Salomon sceaux-de-Salomon scélérate/F.() scélératesse/S. scellage/S. scellée/F.() scellement/S. sceller/a0a+() scénarimage/S. scénario/S. scénarisée/F.() scénariser/a0a+() scénariste/S. scène/S. scénette/S. scénique/S. scéniquement scénographe/S. scénographie/S. scénographique/S. scepticisme/S. sceptique/S. sceptiquement sceptre/S. schako/S. schappe/S. schelem/S. schéma/S. schématèque/S. schématique/S. schématiquement schématisation/S. schématisée/F.() schématiser/a0a+() schématisme/S. schème/S. schéol/S. scherzo scherzo/S. schilling/S. schismatique/S. schisme/S. schiste/S. schisteuse/W.() schistoïde/S. schizogamie/S. schizogenèse/S. schizoïde/S. schizoïdie/S. schizonévrose/S. schizophrène/S. schizophrénie/S. schizophrénique/S. schizothymie/S. schlague/S. schlamm/S. schlass schlich/S. schlinguer/a0() schlittage/S. schlitte/S. schlitter/a0a+() schlitteur/S. schmecter/a0() schnaps schnauzer/S. schnorchel/S. schnorkel/S. schnouff/S. schofar/S. scholie/S. schooner/S. schorre/S. schupo/S. schuss schwarzienne/F.() sciable/S. sciage/S. scialytique/S. sciatique/S. scie/S. sciée/F.() sciemment science/S. science-fiction sciences-fictions sciène/S. scientificité/S. scientifique/S. scientifiquement scientisme/S. scientiste/S. scientologie scientologue/S. scientométrie/S. scier/a0a+() scierie/S. scieuse/F.() scille/S. scindable/S. scindage/S. scindée/F.() scinder/a0a+() scinque/S. scintigraphie/S. scintillante/F.() scintillation/S. scintillement/S. scintiller/a0() scion/S. sciotte/S. sciotter/a0a+() scirpe/S. scissile/S. scission/S. scissionner/a0() scissionniste/S. scissipare/S. scissiparité/S. scissure/S. sciure/S. sclérale/W.() scléranthe/S. scléreuse/W.() sclérifiante/F.() sclérifiée/F.() sclérifier/a0a+() sclérite/S. scléro-choroïdite/S. scléro-conjonctivite/S. scléroderme/S. sclérokératite/S. sclérophylle/S. scléroprotéine/S. sclérosante/F.() sclérose/S. sclérosée/F.() scléroser/a0a+() sclérothérapie/S. sclérotique/S. scléterectasie/S. scléterectomie/S. scolaire/S. scolairement scolarisable/S. scolarisation/S. scolarisée/F.() scolariser/a0a+() scolarité/S. scolasticat/S. scolastique/S. scolastiquement scolex scoliaste/S. scolie/S. scoliose/S. scolopacidé/S. scolopendre/S. scolyte/S. sconse/S. scoop/S. scooter/S. scootériste/S. scopie/S. scopolamine/S. scorbut/S. scorbutique/S. score/S. scoriacée/F.() scorie/S. scorifier/a0a+() scorpioïde/S. scorpion/S. scorsonère/S. scota scotch/S. scotchée/F.() scotcher/a0a+() scotie/S. scotisme/S. scotiste/S. scotomisation/S. scots scottish/S. scoubidou/S. scoured/S. scoute/F.() scoutisme/S. scrabble/S. scramasaxe/S. scrapbooking/S. scraper/S. scratch scratch/S. scratcher/a0a+() scratching/S. scriban/S. scribe/S. scribouillage/S. scribouillarde/F.() scribouiller/a0a+() scribouilleuse/F.() scripte/F.() scripteur/S. script-girl/S. scriptorium/S. scripturaire/S. scripturale/W.() scrofulaire/S. scrofule/S. scrofuleuse/W.() scrogneugneu/X. scrolling/S. scrubber/S. scrupule/S. scrupuleuse/W.() scrupuleusement scrutation/S. scrutatrice/F.() scruter/a0a+() scrutin/S. scull/S. sculptée/F.() sculpter/a0a+() sculptrice/F.() sculpturale/W.() sculpture/S. scutellaire/S. scutum/S. scythe/S. scythique/S. se seaborgium/S. séance/S. séante/F.() seau/X. sébacée/F.() sébaste/S. sébile/S. sebkha/S. séborrhée/S. séborrhéide/S. séborrhéique/S. sébum/S. sécable/S. secam/S. sécante/F.() sécateur/S. sécession/S. sécessionniste/S. séchage/S. sèche/F.() sèche-cheveux séchée/F.() sèche-linge sèche-mains sèchement sécher/c0a+() sécheresse/S. sécherie/S. sécheuse/F.() séchoir/S. secondaire/S. secondairement secondarité/S. seconde/F.() seconde/Um() secondée/F.() secondement seconder/a0a+() secouante/F.() secouée/F.() secouement/S. secouer/a0a+() secoueur/S. secourable/S. secoureur/S. secourir/iE() secourisme/S. secouriste/S. secours secourue/F.() secousse/S. secrétage/S. secrétaire/S. secrétairerie/S. secrétariat/S. secrète/F.() secrétée/F.() sécrétée/F.() secrètement secréter/c0a+() sécréter/c0a+() sécréteuse/S. sécrétine/S. sécrétion/S. sécrétoire/S. sécrétrice/F.() sectaire/S. sectarisme/S. sectatrice/F.() secte/S. secteur/S. section/S. sectionnée/F.() sectionnelle/F.() sectionnement/S. sectionner/a0a+() sectionneur/S. sectorielle/F.() sectorisation/S. sectoriser/a0a+() séculaire/S. séculairement sécularisation/S. sécularisée/F.() séculariser/a0a+() sécularité/S. séculière/F.() séculièrement secundo sécurisante/F.() sécurisation/S. sécurisée/F.() sécuriser/a0a+() sécuritaire/S. sécurité/S. sédation/S. sédative/F.() sédénion/S. sédentaire/S. sédentarisation/S. sédentarisée/F.() sédentariser/a0a+() sédentarisme/S. sédentarité/S. sédiment/S. sédimentaire/S. sédimentation/S. sédimenter/a0a+() sédimentologie/S. sédimentologique/S. sédimentologue/S. séditieuse/W.() séditieusement sédition/S. séduction/S. séductrice/F.() séduire/yL() séduisante/F.() séduite/F.() sedum/S. séfarade/S. séga/S. ségala/S. segment/S. segmentaire/S. segmentale/W.() segmentation/S. segmentée/F.() segmenter/a0a+() ségrairie/S. ségrais ségrégation/S. ségrégationnisme/S. ségrégationniste/S. ségrégative/F.() ségrégée/F.() ségréguée/F.() ségréguer/c0a+() séguedille/S. seguia/S. seguidilla/S. seiche/S. séide/S. seigle/S. seigneur/S. seigneuriage/S. seigneuriale/W.() seigneurie/S. seille/S. seillon/S. seime/S. sein/S. seine/S. seing/S. séisme/S. séismicité/S. séismique/S. séismographe/S. séismologie/S. seize seizième/S. seizièmement seiziémisme/S. séjour/S. séjourner/a0a+() sel/S. sélacien/S. sélaginelle/S. sélecte/F.() sélecter/a0a+() sélection/S. sélectionnable/S. sélectionnée/F.() sélectionner/a0a+() sélectionneuse/F.() sélective/F.() sélectivement sélectivité/S. sélectrice/F.() séléniate/S. sélénienne/F.() sélénieux sélénique/S. sélénite/S. séléniteuse/W.() sélénium/S. séléniure/S. sélénographie/S. sélénographique/S. sélénologie/S. séleucide/S. self/S. self-control self-government/S. self-inductance/S. self-induction/S. self-made-man/S. self-made-woman/S. self-service/S. selle/S. sellée/F.() seller/a0a+() sellerie/S. sellette/S. sellier/S. selon selve/S. semailles semaine/S. semainière/F.() sémantème/S. sémanticienne/F.() sémantique/S. sémantiquement sémaphore/S. sémaphorique/S. sémasiologie/S. semblable/S. semblablement semblance/S. semblant/S. sembler/a0() semée/F.() séméiologie/S. séméiotique/S. semelle/S. semence/S. semer/b0a+() semestre/S. semestrielle/F.() semestriellement semeuse/F.() semi/S. semi-aride/S. semi-automatique/S. semi-auxiliaire/S. semi-chenillée/F.() semi-circulaire/S. semi-coke/S. semi-conducteur/S. semi-conductrice/F.() semi-consonne/S. semi-finie/F.() sémillante/F.() sémillon/S. semi-lunaire/S. semi-manufacturée/F.() semi-marathon/S. semi-marathonienne/F.() séminaire/S. séminale/W.() séminariste/S. semi-nomade/S. semi-nomadisme/S. sémiologie/S. sémiologique/S. sémiologue/S. sémioticienne/F.() sémiotique/S. semi-ouvrée/F.() semi-perméable/S. semi-polaire/S. semi-produit/S. semi-publique/F.() semi-remorque/S. semi-rigide/S. semis sémite/S. sémitique/S. sémitisme/S. semi-voyelle/S. semnopithèque/S. semoir/S. semonce/S. semoncer/a0a+() semoule/S. semoulerie/S. sempervirente/F.() sempervivum sempiternelle/F.() sempiternellement semple/S. sen sénaire/S. sénat/S. sénatoriale/W.() sénatrice/F.() sénatus-consulte/S. senau/X. séné/S. sénéchal/X. sénéchaussée/S. séneçon/S. sénégalaise/F.() sénégaliser/a0a+() sénégambienne/F.() sénescence/S. sénescente/F.() senestre/S. senestrochère/S. senestrorsum senestrorsum sénevé/S. sénile/S. sénilité/S. senior/S. séniorie/S. séniorité/S. senne/S. señorita/S. sensass sensation/S. sensationnalisme/S. sensationnaliste/S. sensationnelle/F.() sensée/F.() sensément senseur/S. sensibilisante/F.() sensibilisation/S. sensibilisatrice/F.() sensibilisée/F.() sensibiliser/a0a+() sensibilité/S. sensible/S. sensiblement sensiblerie/S. sensitive/F.() sensitivité/S. sensitogramme/S. sensitographe/S. sensitomètre/S. sensitométrie/S. sensitométrique/S. sensorialité/S. sensorielle/F.() sensorimétrie/S. sensorimétrique/S. sensorimotrice/F.() sensu sensualisme/S. sensualiste/S. sensualité/S. sensuelle/F.() sensuellement sentence/S. sentencieuse/W.() sentencieusement senteur/S. sentie/F.() sentier/S. sentiment/S. sentimentale/W.() sentimentalement sentimentalisme/S. sentimentalité/S. sentine/S. sentinelle/S. sentir/i5i+() seoir/pU() seoir/pV() sep/S. sépale/S. sépaloïde/S. séparabilité/S. séparable/S. séparation/S. séparatisme/S. séparatiste/S. séparatrice/F.() séparée/F.() séparément séparer/a0a+() sépia sépia/S. seppuku/S. sept sept septain/S. septantaine/S. septante septante-cinq septante-deux septante-et-un septante-huit septante-neuf septante-quatre septante-sept septante-six septante-trois septantième/S. septembre/S. septembrisades septembriseur/S. septemvir/S. septénaire/S. septennale/W.() septennalité/S. septennat/S. septentrion/S. septentrionale/W.() septicémie/S. septicémique/S. septicité/S. septidi/S. septième/S. septièmement septillion/S. septime/S. septimo septique/S. septmoncel/S. septomycète/S. septuagénaire/S. septuagésime/S. septum septuor/S. septuple/S. septuplée/F.() septupler/a0a+() sépulcrale/W.() sépulcre/S. sépulture/S. séquelle/S. séquençage/S. séquence/S. séquencée/F.() séquencement/S. séquencer/a0a+() séquenceur/S. séquentialité/S. séquentielle/F.() séquentiellement séquestration/S. séquestrée/F.() séquestrer/a0a+() sequin/S. séquoia/S. sérac/S. sérail/S. sérancer/a0a+() sérapéum/S. séraphin/S. séraphine/F.() séraphique/S. serbe/S. serbo-croate/S. serdeau/S. sereine/F.() sereinement sérénade/S. sérendipité/S. sérénissime/S. sérénité/S. séreuse/W.() serf/S. serfouette/S. serfouir/f0f+() serfouissage/S. serge/S. sergé/S. sergent/S. sergent-major sergents-majors sergette/S. sérialisation/S. sérialisée/F.() sérialiser/a0a+() sériation/S. séricicole/S. séricicultrice/F.() sériciculture/S. séricigène/S. séricigraphie/S. série/S. sérielle/F.() sérier/a0a+() sérieuse/W.() sérieusement serif/S. sérigraphie/S. serine/F.() sérine/S. seriner/a0a+() seringa/S. seringat/S. seringue/S. seringuer/a0a+() seringuero/S. sérique/S. serlienne/S. serment/S. sermon/S. sermonnaire/S. sermonnée/F.() sermonner/a0a+() sermonneuse/F.() sérodiagnostic/S. sérologie/S. sérologique/S. séropositive/F.() séropositivité/S. sérosité/S. sérothérapie/S. sérotonine/S. sérovaccination/S. serpe/S. serpent/S. serpentaire/S. serpenteau/X. serpentement/S. serpenter/a0() serpentiforme/S. serpentine/F.() serpette/S. serpigineuse/W.() serpillière/S. serpolet/S. serpule/S. serrage/S. serran/S. serrate/S. serratule/S. serre/S. serre-bosse serre-câble serrée/F.() serre-écrou serre-file/S. serre-fils serre-frein/S. serre-joint/S. serre-livres serrement/S. serre-nez serre-papiers serrer/a0a+() serre-tête serre-tube/S. serrure/S. serrurerie/S. serrurière/F.() serte/S. sertie/F.() sertir/f0f+() sertissage/S. sertisseuse/F.() sertissure/S. sertraline/S. sérum/S. servage/S. serval/S. servante/F.() serveuse/F.() serviabilité/S. serviable/S. service/S. servie/F.() serviette/S. serviette-éponge serviettes-éponges servile/S. servilement servilité/S. servir/iF() serviteur/S. servitude/S. servocommande/S. servofrein/S. servomécanisme/S. servomoteur/S. ses sésame/S. sésamoïde/S. sesbania/S. sesbanie/S. sesquialtère/S. sesquilinéaire/S. sesquioxyde/S. sesquiterpène/S. sessile/S. session/S. sesterce/S. set/S. sétacée/F.() setier/S. séton/S. setter/S. seuil/S. seuillage/S. seuillée/F.() seule/F.() seulement seulette/F.() sève/S. sévère/S. sévèrement sévérité/S. sévices sévir/f0() sevrage/S. sevrée/F.() sevrer/b0a+() sexagénaire/S. sexagésimale/W.() sexagésime/S. sex-appeal/S. sexe/S. sexisme/S. sexiste/S. sexologie/S. sexologue/S. sexonomie/S. sexothérapeute/S. sexothérapie/S. sex-shop/S. sextant/S. sexte/S. sextet/S. sextidi/S. sextillion/S. sextine/S. sexto sextolet/S. sextuor/S. sextuple/S. sextuplée/F.() sextupler/a0a+() sexualisation/S. sexualiser/a0a+() sexualisme/S. sexualité/S. sexuée/F.() sexuelle/F.() sexuellement sexy seyante/F.() sézigue sforzando sfumato/S. sgraffite/S. shaker/S. shakespearienne/F.() shako/S. shampoing/S. shampouiner/a0a+() shampouineuse/F.() shantung/S. shérif/S. sherpa/S. sherry/S. shetland/S. shiatsu/S. shilling/S. shimmy/S. shinto/S. shintoïsme/S. shintoïste/S. ship/S. shipchandler/S. shirt/S. shocking shogun/S. shogunale/W.() shogunat/S. shoot/S. shooter/a0a+() shopping/S. short/S. shot/S. show/S. show-business showroom/S. shrapnel/S. shunt/S. shunter/a0a+() si si si sial/S. sialagogue/S. sialis sialorrhée/S. siamoise/F.() sibérienne/F.() sibilante/F.() sibylle/S. sibylline/F.() sic sicaire/S. siccative/F.() siccité/S. sicilienne/F.() sicle/S. sida side-car/S. sidéenne/F.() sidérale/W.() sidérante/F.() sidérée/F.() sidérer/c0a+() sidérite/S. sidérolithique/S. sidérose/S. sidérostat/S. sidéroxylon/S. sidérurgie/S. sidérurgique/S. sidérurgiste/S. siècle/S. siège/S. siéger/c0() siemens/Um() sienne/F.() sierra/S. sieste/S. siester/a0() sieur/S. sievert/Um() sifflage/S. sifflante/F.() sifflée/F.() sifflement/S. siffler/a0a+() sifflet/S. siffleuse/F.() sifflotement/S. siffloter/a0a+() sifilet/S. sigillaire/S. sigillée/F.() sigillographie/S. sigillographique/S. sigisbée/S. siglaison/S. sigle/S. sigma sigmoïde/S. signal/X. signalée/F.() signalement/S. signaler/a0a+() signalétique/S. signaleur/S. signalisation/S. signalisée/F.() signaliser/a0a+() signataire/S. signature/S. signe/S. signée/F.() signer/a0a+() signet/S. signifiance/S. signifiante/F.() signification/S. significative/F.() significativement signifier/a0a+() sikhe/F.() sikhisme/S. sil/S. silane/S. silence/S. silencieuse/W.() silencieusement silène/S. silésienne/S. silex silhouette/S. silhouetter/a0a+() silicagel/S. silicate/S. silicatiser/a0a+() silice siliceuse/W.() silicicole/S. silicique/S. silicium/S. siliciure/S. silicone/S. siliconée/F.() siliconer/a0a+() silicose/S. silicule/S. silionne/S. silique/S. sillage/S. sillet/S. sillimanite/S. sillon/S. sillonnée/F.() sillonner/a0a+() silo/S. silotage/S. silphe/S. silure/S. silurienne/F.() siluroïde/S. sima/S. simagrée/S. simarre/S. simaruba/S. simbleau/X. simienne/F.() simiesque/S. similaire/S. similairement similarité/S. simili/S. similicuir/S. similigravure/S. similisage/S. similiser/a0a+() similiste/S. similitude/S. similor/S. simoniaque/S. simonie/S. simonienne/F.() simonisme/S. simoun/S. simple/S. simplement simplette/F.() simplex simplexe/S. simpliciale/W.() simplicialement simplicité/S. simplifiable/S. simplification/S. simplificatrice/F.() simplifiée/F.() simplifier/a0a+() simplisme/S. simpliste/S. simulacre/S. simulation/S. simulatrice/F.() simulée/F.() simuler/a0a+() simultanée/F.() simultanéisme/S. simultanéité/S. simultanément sinanthrope/S. sinapisée/F.() sinapisme/S. sincère/S. sincèrement sincérité/S. sincipitale/W.() sinciput/S. sinécure/S. singalette/S. singapourienne/F.() singe/S. singée/F.() singer/a0a+() singerie/S. single/S. singleton/S. singularisation/S. singulariser/a0a+() singularité/S. singulet/S. singulière/F.() singulièrement sinisante/F.() sinisation/S. siniser/a0a+() sinistralité/S. sinistre/S. sinistrée/F.() sinistrement sinité/S. sinogramme/S. sinologie/S. sinologue/S. sinon sinophone/S. sinople/S. sinueuse/W.() sinuosité/S. sinus sinusale/W.() sinusite/S. sinusoïdale/W.() sinusoïde/S. sionisme/S. sioniste/S. sioux siphoïde/S. siphomycète/S. siphon/S. siphonnage/S. siphonnée/F.() siphonner/a0a+() sir sirdar/S. sire/S. sirène/S. sirex sirli/S. sirocco/S. sirop/S. siroter/a0a+() sirupeuse/W.() sirvente/S. sirventès sisal/S. sise/F.() sismale/W.() sismicité/S. sismique/S. sismographe/S. sismologie/S. sismologique/S. sismologue/S. sismothérapie/S. sistership/S. sistre/S. sisymbre/S. sitar/S. sitcom/S. site/S. sit-in sitogoniomètre/S. sitôt sittelle/S. situ situation/S. situationnisme/S. situationniste/S. située/F.() situer/a0a+() sium/S. six sixain/S. sixième/S. sixièmement sixte/S. sizain/S. sizerin/S. skaï/S. skate/S. skateboard/S. skating/S. sketch/S. ski/S. skiable/S. skiascopie/S. skier/a0() skieuse/F.() skiff/S. skipper/S. sky-surf/S. sky-surfing/S. slalom/S. slalomer/a0() slalomeuse/F.() slang/S. slash/S. slave/S. slavisante/F.() slavisée/F.() slaviser/a0a+() slaviste/S. slavonne/F.() slavophile/S. sleeping/S. slice/S. slicer/a0a+() slip/S. slogan/S. sloop/S. sloughi/S. slovaque/S. slovène/S. slow/S. smala/S. smalt/S. smaltine/S. smaragdine/F.() smaragdite/S. smart smartphone/S. smash/S. smasher/a0a+() smectique/S. smicarde/F.() smilax smiley/S. smillage/S. smille/S. smiller/a0a+() smilodon/S. smithsonite/S. smocks smog/S. smoking/S. smolt/S. smorzando smurf/S. snack/S. snack-bar/S. sniff sniffer/a0a+() snob/S. snobée/F.() snober/a0a+() snobinarde/F.() snobisme/S. snooker/S. snowboard/S. snow-boot/S. sobre/S. sobrement sobriété/S. sobriquet/S. soc/S. soccer/S. sociabilité/S. sociable/S. social-chrétien social-démocrate social-démocratie/S. sociale/W.() sociale-chrétienne sociale-démocrate socialement sociales-chrétiennes sociales-démocrates socialisante/F.() socialisation/S. socialisée/F.() socialiser/a0a+() socialisme/S. socialiste/S. sociatrie/S. sociaux-chrétiens sociaux-démocrates sociétaire/S. sociétale/W.() sociétariat/S. société/S. société-écran sociétés-écrans socinianisme/S. socio-affective/F.() socioculturelle/F.() sociodrame/S. socio-économique/S. socio-éducative/F.() sociogramme/S. sociolecte/S. sociolinguistique/S. sociologie/S. sociologique/S. sociologiquement sociologisme/S. sociologue/S. sociométrie/S. sociométrique/S. sociopathe/S. sociopathie/S. sociopathique/S. socioprofessionnelle/F.() sociothérapie/S. socle/S. socque/S. socquette/S. socratique/S. socratiser/a0() soda/S. sodalité/S. sodée/F.() sodique/S. sodium/S. sodoku/S. sodomie/S. sodomisée/F.() sodomiser/a0a+() sodomite/S. sœur/S. sœurette/S. sofa/S. soffite/S. softball/S. software/S. soi soi-disant soie/S. soierie/S. soif/S. soiffarde/F.() soignante/F.() soignée/F.() soigner/a0a+() soigneuse/F.() soigneuse/W.() soigneusement soi-même soin/S. soir/S. soirée/S. soirer/a0() soit soit-communiqué/S. soixantaine/S. soixante soixante-cinq soixante-deux soixante-dix soixante-dix-huit soixante-dix-neuf soixante-dix-sept soixante-douze soixante-et-onze soixante-et-un soixante-huit soixante-huitarde/F.() soixante-neuf soixante-quatorze soixante-quatre soixante-quinze soixante-seize soixante-sept soixante-six soixante-treize soixante-trois soixantième/S. soja/S. sol sol/S. solaire/S. solanée/S. solarigraphe/S. solariser/a0a+() solarium/S. soldanelle/S. soldate/F.() soldatesque/S. solde/S. soldée/F.() solder/a0a+() soldeuse/F.() sole/S. soléaire/S. solécisme/S. soleil/S. solen/S. solennelle/F.() solennellement solenniser/a0a+() solennité/S. solénoïdale/W.() solénoïde/S. soleret/S. solex solfatare/S. solfège/S. solfier/a0a+() solidage/S. solidaire/S. solidairement solidarisée/F.() solidariser/a0a+() solidarisme/S. solidarité/S. solide/S. solidement solidification/S. solidifiée/F.() solidifier/a0a+() solidité/S. solière/F.() solière-moquettiste solières-moquettistes solier-moquettiste soliers-moquettistes solifluer/a0() solifluxion/S. soliloque/S. soliloquer/a0() solin/S. solipède/S. solipsisme/S. solipsiste/S. soliste/S. solitaire/S. solitairement soliton/S. solitude/S. solive/S. soliveau/X. sollicitation/S. sollicitée/F.() solliciter/a0a+() solliciteuse/F.() sollicitude/S. solmisation/S. solmiser/a0a+() solo/S. solstice/S. solsticiale/W.() solubilisation/S. solubiliser/a0a+() solubilité/S. soluble/S. soluté/S. solution/S. solutionnaire/S. solutionner/a0a+() solutréenne/F.() solvabilité/S. solvable/S. solvant/S. solvatation/S. soma/S. somalie/F.() somalienne/F.() soman/S. somation/S. somatique/S. somatisation/S. somatiser/a0a+() somato-dendritique/S. somatologie/S. somato-psychique/S. somatotrope/S. somatotrophine/S. sombre/S. sombrement sombrer/a0() sombrero/S. somesthésie/S. somesthésique/S. somite/S. sommabilité/S. sommable/S. sommaire/S. sommairement sommants sommation/S. sommatoire/S. somme/S. sommée/F.() sommeil/S. sommeiller/a0() sommeilleuse/W.() sommelière/F.() sommellerie/S. sommer/a0a+() sommet/S. sommier/S. sommitale/W.() sommité/S. somnambule/S. somnambulique/S. somnambuliquement somnambulisme/S. somnanbulesque/S. somnifère/S. somnolence/S. somnolente/F.() somnoler/a0() somoni/S. somptuaire/S. somptueuse/W.() somptueusement somptuosité/S. son son/S. sonagramme/S. sonagraphe/S. sonal/S. sonar/S. sonate/S. sonatine/S. sondage/S. sondagière/F.() sonde/S. sondée/F.() sonder/a0a+() sondeuse/F.() songe/S. songe-creux songer/a0() songerie/S. songeuse/F.() songeusement sonique/S. sonnailler/a0() sonnante/F.() sonnée/F.() sonner/a0a+() sonnerie/S. sonnet/S. sonnette/S. sonneur/S. sono/S. sonomètre/S. sonore/S. sonorisation/S. sonorisée/F.() sonoriser/a0a+() sonorité/S. sonothèque/S. sonotone/S. sonrer/a0() sophisme/S. sophiste/S. sophistication/S. sophistiquée/F.() sophistiquer/a0a+() sophora/S. sophrologie/S. sophrologue/S. soporifique/S. sopraniste/S. soprano/S. soquet/S. soqueter/d0() sorabe/S. sorbe/S. sorbet/S. sorbetière/S. sorbier/S. sorbitol/S. sorbonnarde/F.() sorcellerie/S. sorcière/F.() sordide/S. sordidement sordidité/S. sore/S. sorgho/S. sornette/S. sororale/W.() sororalement sororat/S. sororité/S. sort/S. sortable/S. sortante/F.() sorte/S. sortie/F.() sortie/S. sortie-de-bain sorties-de-bain sortilège/S. sortir/fD() sortir/i5i+() sosie/S. sostenuto sotch/S. sot-l'y-laisse sotte/F.() sottement sottie/S. sottise/S. sottisier/S. sou/S. souabe/S. souahélie/F.() soubassement/S. soubattre/uA() soubresaut/S. soubresauter/a0() soubrette/S. soubreveste/S. souche/S. souchet/S. soucheter/d0a+() souchever/b0a+() sou-chong souci/S. soucier/a0a+() soucieuse/W.() soucieusement soucoupe/S. soudable/S. soudage/S. soudaine/F.() soudainement soudaineté/S. soudan/S. soudanaise/F.() soudante/F.() soudard/S. soude/S. soudée/F.() souder/a0a+() soudeuse/F.() soudière/F.() soudoyée/F.() soudoyer/a0a+() soudure/S. soue/S. soufferte/F.() soufflage/S. soufflante/F.() soufflard/S. soufflée/F.() soufflement/S. souffler/a0a+() soufflerie/S. soufflet/S. souffleter/d0a+() souffletier/S. souffleuse/F.() soufflure/S. souffrance/S. souffrante/F.() souffre-douleur souffreteuse/W.() souffrir/iC() soufie/F.() soufisme/S. soufrage/S. soufre/S. soufrée/F.() soufrer/a0a+() soufreuse/F.() soufrière/S. soufroir/S. souhait/S. souhaitable/S. souhaitée/F.() souhaiter/a0a+() souillarde/F.() souillée/F.() souiller/a0a+() souillon/S. souillure/S. souimanga/S. souk/S. soulagée/F.() soulagement/S. soulager/a0a+() soulane/S. soûlante/F.() soûlarde/F.() soûlaude/F.() soûle/F.() soûler/a0a+() soûlerie/S. soulevée/F.() soulèvement/S. soulever/b0a+() soulier/S. soulignage/S. soulignée/F.() soulignement/S. souligner/a0a+() soûlographe/S. soûlographie/S. souloir soûlonne/F.() soûlote/F.() soulte/S. soumettre/vA() soumise/F.() soumission/S. soumissionnaire/S. soumissionner/a0a+() soupape/S. soupçon/S. soupçonnable/S. soupçonnée/F.() soupçonner/a0a+() soupçonneuse/W.() soupçonneusement soupe/S. soupente/S. souper/S. souper/a0() soupesée/F.() soupeser/b0a+() soupeuse/F.() soupière/S. soupir/S. soupirail/X. soupirante/F.() soupirer/a0a+() souple/S. souplement souplesse/S. souquenille/S. souquer/a0a+() sourate/S. sourçage/S. source/S. sourcière/F.() sourcil/S. sourcilière/F.() sourciller/a0() sourcilleuse/W.() sourde/F.() sourdement sourde-muette sourdes-muettes sourdine/S. sourdiner/a0a+() sourdingue/S. sourd-muet sourdre/xM() sourds-muets souriante/F.() souriceau/X. souricière/S. sourire/S. sourire/yW() souris souris sournoise/F.() sournoisement sournoiserie/S. sous-activité/S. sous-admissible/S. sous-aide/S. sous-alimentation/S. sous-alimentée/F.() sous-alimenter/a0a+() sous-amendement/S. sous-arbrisseau/X. sous-bailleur/S. sous-barbe/S. sous-bas sous-bibliothécaire/S. sous-bois sous-brigadier/S. sous-calibrée/F.() sous-cavage/S. sous-chef/S. sous-classe/S. sous-clavière/F.() sous-commission/S. sous-compte/S. sous-comptoir/S. sous-consommation/S. sous-continent/S. sous-couche/S. souscription/S. souscriptrice/F.() souscrire/y1() souscrite/F.() sous-cutanée/F.() sous-développée/F.() sous-développement/S. sous-diaconat/S. sous-diacre/S. sous-diagonale/S. sous-directrice/F.() sous-dominante/F.() sous-économe/S. sous-embranchement/S. sous-emploi/S. sous-employée/F.() sous-employer/a0a+() sous-ensemble/S. sous-entendre/tA() sous-entendu/S. sous-entendue/F.() sous-épidermique/S. sous-équipée/F.() sous-équipement/S. sous-estimation/S. sous-estimée/F.() sous-estimer/a0a+() sous-évaluation/S. sous-évaluée/F.() sous-évaluer/a0a+() sous-exploitation/S. sous-exploitée/F.() sous-exploiter/a0a+() sous-exposée/F.() sous-exposer/a0a+() sous-exposition/S. sous-expression/S. sous-faîtage/S. sous-faîte/S. sous-fifre/S. sous-filiale/S. sous-frutescente/F.() sous-garde/S. sous-genre/S. sous-gorge sous-gouverneur/S. sousharmonique/S. sous-homme/S. sous-imposition/S. sous-ingénieur/S. sous-intendante/F.() sous-investir sous-jacente/F.() sous-lieutenante/F.() souslik/S. sous-locataire/S. sous-location/S. sous-louée/F.() sous-louer/a0a+() sous-main sous-maîtresse/F.() sous-marin/S. sous-marinier/S. sous-multiple/S. sous-nappe/S. sous-normale/S. sous-occipitale/W.() sous-œuvre/S. sous-off/S. sous-officier/S. sous-orbitaire/S. sous-ordre/S. sous-palan sous-payée/F.() sous-payer/a0a+() sous-peuplée/F.() sous-peuplement/S. sous-pied/S. sous-préfecture/S. sous-préfète/F.() sous-production/S. sous-produit/S. sous-programme/S. sous-prolétaire/S. sous-prolétariat/S. sous-pubienne/F.() sous-pull/S. sous-rémunérée/F.() sous-rémunérer/c0a+() sous-répertoire/S. sous-réseau/X. sous-routine/S. sous-scapulaire/S. sous-secrétaire/S. sous-secrétariat/S. sous-section/S. sous-seing soussignée/F.() sous-sol/S. sous-station/S. sous-système/S. sous-tangente/S. sous-tasse/S. sous-tendre/tA() sous-tension/S. sous-titrage/S. sous-titre/S. sous-titrée/F.() sous-titrer/a0a+() soustracteur/S. soustraction/S. soustractive/F.() soustraire/wL() sous-traitance/S. sous-traitante/F.() soustraite/F.() sous-traitée/F.() sous-traiter/a0a+() sous-utilisée/F.() sous-utiliser/a0a+() sous-ventrière/S. sous-verge sous-verre sous-vêtement/S. sous-virer/a0() soutache/S. soutacher/a0a+() soutane/S. soutanelle/S. soute/S. soutenable/S. soutenance/S. soutènement/S. souteneur/S. soutenir/i0i+() soutenue/F.() souterrain/S. souterraine/F.() souterrainement soutien/S. soutien-gorge soutiens-gorge soutier/S. soutirage/S. soutirée/F.() soutirer/a0a+() souvenance/S. souvenir/S. souvenir/i0i+() souvent souveraine/F.() souverainement souveraineté/S. souverainisme/S. souverainiste/S. soviet/S. soviétique/S. soviétisation/S. soviétisée/F.() soviétiser/a0a+() soviétisme/S. sovkhoze/S. soyer/S. soyeuse/W.() spa/S. spacieuse/W.() spacieusement spadassin/S. spadice/S. spaghetti/S. spagyrie/S. spagyrique/S. spahi/S. spalax spallation/S. spalter/S. spam/S. spammer/a0a+() spammeur/S. sparadrap/S. sparage/S. spardeck/S. sparganier/S. spartakisme/S. spartakiste/S. sparte/S. spartéine/S. sparterie/S. spartiate/S. spasme/S. spasmodique/S. spasmodiquement spasmolytique/S. spasmophilie/S. spatangue/S. spath/S. spathe/S. spathifier/a0a+() spathique/S. spatiale/W.() spatialement spatialisation/S. spatialiser/a0a+() spatialité/S. spationaute/S. spatioport/S. spatio-temporelle/F.() spatule/S. speakeasy/S. speaker/S. speakerine/S. spéciale/W.() spécialement spécialisation/S. spécialisée/F.() spécialiser/a0a+() spécialiste/S. spécialité/S. spéciation/S. spécieuse/W.() spécieusement spécificateur/S. spécification/S. spécificatrice/F.() spécificité/S. spécifiée/F.() spécifier/a0a+() spécifique/S. spécifiquement spécimen/S. spéciosité/S. spectacle/S. spectaculaire/S. spectaculairement spectatrice/F.() spectrale/W.() spectralement spectre/S. spectrographe/S. spectrographie/S. spectrographique/S. spectromètre/S. spectrométrie/S. spectrophotomètre/S. spectrophotométrie/S. spectroscope/S. spectroscopie/S. spectroscopique/S. spéculaire/S. spéculation/S. spéculative/F.() spéculatrice/F.() spéculer/a0() spéculoos spéculum/S. speech/S. speeder/a0a+() speiss spéléologie/S. spéléologique/S. spéléologue/S. spéléonaute/S. spencer/S. spéos spergulaire/S. spergule/S. spermaceti/S. spermaphyte/S. spermatide/S. spermatie/S. spermatique/S. spermatocyte/S. spermatogenèse/S. spermatogonie/S. spermatophyte/S. spermatozoïde/S. sperme/S. spermicide/S. spermogonie/S. spermogramme/S. spermophile/S. spet/S. spetsnaz sphacèle/S. sphacéler/c0a+() sphaigne/S. sphène/S. sphénodon/S. sphénoïdale/W.() sphénoïde/S. sphère/S. sphéricité/S. sphérique/S. sphéroïdale/W.() sphéroïde/S. sphéromètre/S. sphérule/S. sphex sphincter/S. sphinctérienne/F.() sphinx sphygmogramme/S. sphygmographe/S. spicule/S. spider/S. spin/S. spina-bifida spinale/W.() spina-ventosa spinelle/S. spineur/S. spinnaker/S. spinorielle/F.() spinosaure/S. spinozisme/S. spinoziste/S. spintronique/S. spiracle/S. spirale/W.() spiralée/F.() spiralement spiralisation/S. spiraloïde/S. spirante/F.() spire/S. spirée/S. spirifer/S. spirille/S. spirillose/S. spiritain/S. spirite/S. spiritisme/S. spiritiste/S. spiritual/S. spiritualisation/S. spiritualiser/a0a+() spiritualisme/S. spiritualiste/S. spiritualité/S. spirituelle/F.() spirituellement spiritueuse/W.() spirochète/S. spirochétose/S. spirographe/S. spiroïdale/W.() spiroïde/S. spiromètre/S. spirométrie/S. spirorbe/S. spitante/F.() spitter/a0a+() splanchnique/S. splanchnologie/S. spleen/S. spleenétique/S. splendeur/S. splendide/S. splendidement splénomégalie/S. spline/S. splitter/a0a+() spoliation/S. spoliatrice/F.() spoliée/F.() spolier/a0a+() spondée/S. spongiculture/S. spongieuse/W.() spongiforme/S. spongille/S. spongiosité/S. sponsor/S. sponsoring/S. sponsorisée/F.() sponsoriser/a0a+() spontanée/F.() spontanéisme/S. spontanéité/S. spontanément spontanisme/S. sporadicité/S. sporadique/S. sporadiquement sporange/S. spore/S. sporogone/S. sporophore/S. sporophyte/S. sporotriche/S. sporotrichose/S. sport/S. sportive/F.() sportivement sportivité/S. sportsman/S. sportule/S. sporulée/F.() sporuler/a0() spot/S. spotmètre/S. spoutnik/S. sprat/S. spray/S. sprint/S. sprinter/a0() sprinteuse/F.() sprue/S. spumeuse/W.() spumosité/S. squale/S. squame/S. squameuse/W.() squamifère/S. squamule/S. square/S. squash/S. squat/S. squatine/S. squattée/F.() squatter/a0a+() squatteuse/F.() squaw/S. squeezer/a0a+() squelette/S. squelettique/S. squille/S. squire/S. squirrhe/S. squirrheuse/W.() sr/||-- st/||-- stabiblisateur/S. stabilimètre/S. stabilisante/F.() stabilisation/S. stabilisatrice/F.() stabilisée/F.() stabiliser/a0a+() stabilité/S. stable/S. stablement stabulation/S. staccato staccato/S. stade/S. stadhouder/S. stadia/S. staff/S. staffer/a0a+() staffeur/S. stage/S. stagflation/S. stagiaire/S. stagnante/F.() stagnation/S. stagner/a0() stakhanovisme/S. stakhanoviste/S. stakning/S. stalactite/S. stalag/S. stalagmite/S. stalagmomètre/S. stalagmométrie/S. stalinienne/F.() staliniser/a0a+() stalinisme/S. stalle/S. staminale/W.() staminée/F.() staminifère/S. stance/S. stand/S. standard/S. standardisation/S. standardisée/F.() standardiser/a0a+() standardiste/S. stand-by standing/S. stand-up staphylin/S. staphyline/F.() staphylococcie/S. staphylococcique/S. staphylocoque/S. staphylome/S. star/S. starets starie/S. stariets stariser/a0a+() starlette/S. staroste/S. starter/S. starting-block/S. starting-gate/S. start-up stase/S. stater/a0a+() statère/S. stathouder/S. stathoudérat/S. statice/S. station/S. stationnaire/S. stationnarité/S. stationnée/F.() stationnement/S. stationner/a0() station-service stations-service statique/S. statiquement statisticienne/F.() statistique/S. statistiquement stative/F.() statokinésimètre/S. stator/S. statoréacteur/S. statorique/S. statthalter/S. statu statuaire/S. statue/S. statuer/a0a+() statuette/S. statufier/a0a+() stature/S. statut/S. statutaire/S. statutairement stawug/S. stayer/S. steak/S. steamer/S. stéarate/S. stéarine/S. stéarinerie/S. stéarinier/S. stéarique/S. stéatite/S. stéatopyge/S. stéatose/S. steeple/S. steeple-chase/S. stéganographie/S. stégomyie/S. stégosaure/S. steinbock/S. stèle/S. stellage/S. stellaire/S. stem/S. stencil/S. stenciliste/S. stendhalienne/F.() sténo/S. sténodactylo/S. sténodactylographe/S. sténodactylographie/S. sténogramme/S. sténographe/S. sténographie/S. sténographiée/F.() sténographier/a0a+() sténographique/S. sténographiquement sténopé/S. sténosage/S. sténose/S. sténotherme/S. sténothermie/S. sténotype/S. sténotyper/a0a+() sténotypie/S. sténotypiste/S. stentor/S. step/S. stéphanophore/S. steppage/S. steppe/S. stepper/S. steppique/S. stéradian/S. stercoraire/S. stercorale/W.() stère/S. stéréo/S. stéréobate/S. stéréochimie/S. stéréochromie/S. stéréocomparateur/S. stéréoduc/S. stéréognosie/S. stéréogramme/S. stéréographie/S. stéréographique/S. stéréométrie/S. stéréométrique/S. stéréophonie/S. stéréophonique/S. stéréorégulière/F.() stéréoscope/S. stéréoscopie/S. stéréoscopique/S. stéréospécificité/S. stéréotomie/S. stéréotomique/S. stéréotype/S. stéréotypée/F.() stéréotyper/a0a+() stéréotypie/S. stérer/c0a+() stéride/S. stérile/S. stérilement stérilet/S. stérilisante/F.() stérilisateur/S. stérilisation/S. stérilisatrice/F.() stérilisée/F.() stériliser/a0a+() stérilité/S. stérique/S. sterlet/S. sterling sternale/W.() sterne/S. sterno-cléido-mastoïdienne/F.() sternum/S. sternutation/S. sternutatoire/S. stéroïde/S. stéroïdienne/F.() stérol/S. stertoreuse/W.() stéthoscope/S. steward/S. sthène/S. stibiée/F.() stibine/S. stichomythie/S. stick/S. stigmate/S. stigmatique/S. stigmatisation/S. stigmatisée/F.() stigmatiser/a0a+() stigmatisme/S. stilb/S. stillation/S. stilligoutte/S. stimugène/S. stimulante/F.() stimulation/S. stimulatrice/F.() stimulée/F.() stimuler/a0a+() stimuline/S. stimulus stipe/S. stipendiaire/S. stipendiée/F.() stipendier/a0a+() stipitée/F.() stipulaire/S. stipulation/S. stipulée/F.() stipuler/a0a+() stochastique/S. stock/S. stockage/S. stock-car/S. stockée/F.() stocker/a0a+() stockfisch/S. stockiste/S. stœchiométrie/S. stœchiométrique/S. stoïcienne/F.() stoïcisme/S. stoïque/S. stoïquement stoker/S. stokes stolon/S. stolonifère/S. stomacale/W.() stomachique/S. stomate/S. stomatite/S. stomatologie/S. stomatologiste/S. stomatologue/S. stomatoplastie/S. stomatorragie/S. stomatoscope/S. stomie/S. stomisée/F.() stomoxe/S. stop stop/S. stoppage/S. stopper/a0a+() stoppeuse/F.() storax store/S. storiste/S. story-board/S. stout/S. strabique/S. strabisme/S. stradiot/S. stradivarius stramoine/S. stramonium/S. strangulation/S. strangulée/F.() stranguler/a0a+() strapontin/S. strasbourgeoise/F.() strass strasse/S. stratagème/S. strate/S. stratège/S. stratégie/S. stratégique/S. stratégiquement stratification/S. stratifiée/F.() stratifier/a0a+() stratigraphie/S. stratigraphique/S. stratiome/S. stratiomys stratocumulus stratopause/S. stratosphère/S. stratosphérique/S. stratovision/S. stratovolcan/S. stratum/S. stratus streptobacille/S. streptococcie/S. streptococcique/S. streptocoque/S. streptomycète/S. streptomycine/S. stress stressante/F.() stressée/F.() stresser/a0a+() stretch/S. strette/S. striation/S. stricte/F.() strictement striction/S. stricto stridence/S. stridente/F.() stridor/S. stridulante/F.() stridulation/S. stridulatoire/S. striduler/a0a+() striduleuse/W.() strie/S. striée/F.() strier/a0a+() strige/S. strigile/S. string/S. strioscopie/S. strioscopique/S. stripage/S. stripper/a0a+() stripping/S. strip-tease/S. strip-teaseuse/F.() striquer/a0a+() striure/S. strix strobile/S. strobophotographie/S. stroborama/S. stroboscope/S. stroboscopie/S. stroboscopique/S. stroma/S. stromatolite/S. stromatolithe/S. strombe/S. strombolienne/F.() strongle/S. strongyle/S. strongylose/S. strontiane/S. strontium/S. strophante/S. strophantine/S. strophantus strophe/S. structurable/S. structurale/W.() structuralisme/S. structuraliste/S. structurante/F.() structuration/S. structure/S. structurée/F.() structurelle/F.() structurellement structurer/a0a+() structurologie/S. strume/S. strychnine/S. stryge/S. stuc/S. stucage/S. stucateur/S. stud-book/S. studette/S. studieuse/W.() studieusement studio/S. stupa/S. stupéfaction/S. stupéfaire/wG() stupéfaite/F.() stupéfiante/F.() stupéfiée/F.() stupéfier/a0a+() stupeur/S. stupide/S. stupidement stupidité/S. stupre/S. stuquée/F.() stuquer/a0a+() style/S. stylée/F.() styler/a0a+() stylet/S. stylisation/S. stylisée/F.() styliser/a0a+() stylisme/S. styliste/S. stylisticienne/F.() stylistique/S. stylistiquement stylite/S. stylo/S. stylobate/S. stylographe/S. stylographique/S. styloïde/S. stylomine/S. styptique/S. styrax styrène/S. styrolène/S. styromousse/S. su suage/S. suaire/S. suante/F.() suave/S. suavement suavité/S. subaiguë/F.() subalpine/F.() subalterne/S. subantarctique/S. subaquatique/S. subarctique/S. subatomique/S. subcarpatique/S. subconscience/S. subconscient/S. subconsciente/F.() subdélégation/S. subdéléguée/F.() subdéléguer/c0a+() subdésertique/S. subdiviser/a0a+() subdivision/S. subdivisionnaire/S. subduction/S. subduire/yK() subduite/F.() subéquatoriale/W.() suber/S. subéreuse/W.() subérine/S. subexponentielle/F.() subfébrile/S. subie/F.() subintrante/F.() subir/f0f+() subite/F.() subitement subito subjacente/F.() subjectile/S. subjectivation/S. subjective/F.() subjectivement subjectivisation/S. subjectivisme/S. subjectiviste/S. subjectivité/S. subjonctif/S. subjuguée/F.() subjuguer/a0a+() sublétale/W.() sublimation/S. sublime/S. sublimée/F.() sublimement sublimer/a0a+() subliminaire/S. subliminale/W.() sublimité/S. sublinguale/W.() sublunaire/S. submergée/F.() submerger/a0a+() submersible/S. submersion/S. subnarcose/S. subodorer/a0a+() suboptimale/W.() suboptimalité suborbitale/W.() subordination/S. subordonnante/F.() subordonnée/F.() subordonner/a0a+() subornation/S. subornée/F.() suborner/a0a+() suborneuse/F.() subrécargue/S. subreptice/S. subrepticement subreption/S. subrogateur/S. subrogation/S. subrogative/F.() subrogatoire/S. subrogée/F.() subroger/a0a+() subsaharienne/F.() subséquemment subséquente/F.() subside/S. subsidence/S. subsidiaire/S. subsidiairement subsidiante/F.() subsidiarité/S. subsidiation/S. subsidier/a0a+() subsistance/S. subsistante/F.() subsister/a0() subsomption/S. subsonique/S. substance/S. substantialisme/S. substantialiste/S. substantialité/S. substantielle/F.() substantiellement substantifique/S. substantivation/S. substantive/F.() substantivement substantiver/a0a+() substituabilité/S. substituable/S. substituant/S. substituée/F.() substituer/a0a+() substitut/S. substitution/S. substitutive/F.() substrat/S. substratum/S. substruction/S. subsumer/a0a+() subterfuge/S. subtile/F.() subtilement subtilisation/S. subtilisée/F.() subtiliser/a0a+() subtilité/S. subtropicale/W.() subulée/F.() suburbaine/F.() suburbicaire/S. subvenir/i0() subvention/S. subventionnée/F.() subventionnelle/F.() subventionnement/S. subventionner/a0a+() subversion/S. subversive/F.() subversivement subvertie/F.() subvertir/f0f+() suc/S. succédanée/F.() succéder/c0a+() succenturiée/F.() succès successeur/S. successibilité/S. successible/S. succession/S. successive/F.() successivement successorale/W.() succin/S. succincte/F.() succinctement succinique/S. succion/S. succombante/F.() succomber/a0() succube/S. succulence/S. succulente/F.() succursale/S. sucée/F.() sucement/S. sucer/a0a+() sucette/S. suceuse/F.() suçoir/S. suçon/S. suçotement/S. suçoter/a0a+() sucrage/S. sucrante/F.() sucrase/S. sucrate/S. sucre/S. sucrée/F.() sucrer/a0a+() sucrerie/S. sucrette/S. sucrière/F.() sucrin/S. sud sud-africaine/F.() sud-américaine/F.() sudation/S. sudatoire/S. sud-coréenne/F.() sud-est sudiste/S. sudoku/S. sudorale/W.() sudorifère/S. sudorifique/S. sudoripare/S. sud-ouest sud-vietnamienne/F.() sue/F.() suède/S. suédée/F.() suédine/S. suédoise/F.() suée/S. suer/a0a+() suette/S. sueur/S. suffète/S. suffire/yV() suffisamment suffisance/S. suffisante/F.() suffixale/W.() suffixation/S. suffixe/S. suffixée/F.() suffixer/a0a+() suffocante/F.() suffocation/S. suffoquée/F.() suffoquer/a0a+() suffragante/F.() suffrage/S. suffragette/S. suffusion/S. suggérée/F.() suggérer/c0a+() suggestibilité/S. suggestible/S. suggestion/S. suggestionner/a0a+() suggestive/F.() suicidaire/S. suicide/S. suicidée/F.() suicider/a0a+() suie/S. suif/S. suifer/a0a+() suiffer/a0a+() suiffeuse/W.() suint/S. suintante/F.() suintement/S. suinter/a0a+() suis/zF() suissesse/F.() suite/S. suitée/S. suivante/F.() suiveuse/F.() suivi/S. suivie/F.() suivisme/S. suiviste/S. suivre/xQ() sujétion/S. sujette/F.() sukkeler/d0() sulcature/S. sulciforme/S. sulfamide/S. sulfatage/S. sulfate/S. sulfatée/F.() sulfater/a0a+() sulfateuse/F.() sulfhémoglobine/S. sulfhydrique/S. sulfinisation/S. sulfitage/S. sulfite/S. sulfitée/F.() sulfiter/a0a+() sulfocarbonate/S. sulfocarbonique/S. sulfone/S. sulfonée/F.() sulfoner/a0a+() sulfosel/S. sulfovinique/S. sulfoxyde/S. sulfurage/S. sulfuration/S. sulfure/S. sulfurée/F.() sulfurer/a0a+() sulfureuse/W.() sulfurique/S. sulfurisée/F.() sulky/S. sulpicienne/F.() sultanat/S. sultane/F.() sumac/S. sumérienne/F.() summum/S. sumo/S. sumotori/S. sunlight/S. sunna/S. sunnisme/S. sunnite/S. super super/S. super/S. superalliage/S. superattractive/F.() superattractivité/S. superbe/S. superbement superbénéfice/S. superbombe/S. supercalculateur/S. supercarburant/S. supercarré/S. supercavitante/F.() superchampion/S. supercherie/S. superciment/S. superclasse/S. superconnexion/S. supercritique/S. superdensité/S. superdividende/S. supère/S. supérette/S. superfamille/S. superfécondation/S. superfétation/S. superfétatoire/S. superficialité/S. superficie/S. superficielle/F.() superficiellement superfine/F.() superfinir/f0f+() superfinition/S. superflue/F.() superfluide/S. superfluidité/S. superfluité/S. superforme/S. superforteresse/S. superfractionnement/S. super-géant/S. supergéante/S. super-grand/S. supergrand/S. supergravité/S. super-héros superhétérodyne/S. super-huit supérieure/F.() supérieurement supériorité/S. superlatif/S. superlativement superluminique/S. supermalloy/S. superman/S. supermarché/S. supernova supernovæ superordinateur/S. superordonnée/F.() superordre/S. superovariée/F.() superovulation/S. superoxyde/S. superparamagnétisme/S. superpétrolier/S. superphosphate/S. superplasticité/S. superplastique/S. superpolyamide/S. superposable/S. superposée/F.() superposer/a0a+() superposition/S. superpréfet/S. superprivilège/S. superproduction/S. superprofit/S. superpuissance/S. superpurgation/S. superréaction/S. supersonique/S. superstar/S. superstitieuse/W.() superstitieusement superstition/S. superstrat/S. superstructure/S. supersymétrie/S. supersymétrique/S. supersynthèse/S. supertanker/S. supervariété/S. supervisée/F.() superviser/a0a+() superviseure/S. superviseuse/F.() supervision/S. super-welter/S. supin/S. supinateur/S. supination/S. suppl supplantation/S. supplantée/F.() supplanter/a0a+() suppléance/S. suppléante/F.() suppléer/a0a+() supplément/S. supplémentaire/S. supplémentairement supplémentation/S. supplémenter/a0a+() supplétisme/S. supplétive/F.() supplétoire/S. suppliante/F.() supplication/S. supplice/S. suppliciée/F.() supplicier/a0a+() suppliée/F.() supplier/a0a+() supplique/S. support/S. supportable/S. supportée/F.() supporter/a0a+() supportrice/F.() supposable/S. supposée/F.() supposément supposer/a0a+() supposition/S. suppositoire/S. suppôt/S. suppresseur/S. suppression/S. supprimable/S. supprimée/F.() supprimer/a0a+() suppurante/F.() suppuration/S. suppurative/F.() suppurée/F.() suppurer/a0() supputation/S. supputée/F.() supputer/a0a+() supra supraconduction/S. supraconductivité/S. supraconductrice/F.() suprahumaine/F.() supraliminaire/S. supraluminique/S. supramoléculaire/S. supranationale/W.() supranormale/W.() suprasegmentale/W.() suprasensible/S. suprastructure/S. supraterrestre/S. suprématie/S. suprême/S. suprêmement sur surabondamment surabondance/S. surabondante/F.() surabonder/a0() suractivée/F.() suractivité/S. surah/S. suraiguë/F.() surajoutée/F.() surajouter/a0a+() surale/W.() suralimentation/S. suralimentée/F.() suralimenter/a0a+() suraller/a0() suramplificateur/S. surannée/F.() surarbitre/S. surarmement/S. surarmer/a0a+() surbaissée/F.() surbaissement/S. surbaisser/a0a+() surbookée/F.() surbooking/S. surboucher/a0a+() surboum/S. surbrillance/S. surbroder/a0a+() surcapacité/S. surcapitalisante/F.() surcapitalisation/S. surcharge/S. surchargée/F.() surcharger/a0a+() surchauffe/S. surchauffée/F.() surchauffer/a0a+() surchauffeur/S. surchoix surclassée/F.() surclassement/S. surclasser/a0a+() surcoller/a0() surcompensation/S. surcompensatoire/S. surcompensatrice/F.() surcomposée/F.() surcompression/S. surcomprimée/F.() surcomprimer/a0a+() surconscience/S. surconsommation/S. surcontrer/a0a+() surcoter/a0a+() surcouche/S. surcoupe/S. surcouper/a0() surcoût/S. surcreusée/F.() surcreusement/S. surcreuser/a0a+() surcritique/S. surcroît/S. surdent/S. surdéterminante/F.() surdétermination/S. surdéterminée/F.() surdéveloppement/S. sur-diagonale/S. surdiagonale/S. surdi-mutité/S. surdité/S. surdorer/a0a+() surdos surdosage/S. surdose/S. surdouée/F.() sure/F.() sûre/F.() sureau/X. surédifier/a0a+() surélévation/S. surélevée/F.() surélever/b0a+() suremballage/S. sûrement suremploi/S. surenchère/S. surenchérir/f0() surenchérissement/S. surenchérisseuse/F.() surencombrée/F.() surencombrement/S. surendettement/S. surendetter/a0a+() surentraînée/F.() surentraînement/S. surentraîner/a0a+() suréquipée/F.() suréquipement/S. suréquiper/a0a+() surérogation/S. surérogatoire/S. surestimation/S. surestimée/F.() surestimer/a0a+() sûreté/S. surette/F.() surévaluation/S. surévaluée/F.() surévaluer/a0a+() surexcitante/F.() surexcitation/S. surexcitée/F.() surexciter/a0a+() surexploitation/S. surexploitée/F.() surexploiter/a0a+() surexposée/F.() surexposer/a0a+() surexposition/S. surf/S. surfaçage/S. surface/S. surfacer/a0a+() surfacique/S. surfacturation/S. surfacturer/a0a+() surfaire/wD() surfait/S. surfaite/F.() surfaix surfer/a0() surfeuse/F.() surfil/S. surfilage/S. surfiler/a0a+() surfine/F.() surfleurir surfondue/F.() surfrapper/a0a+() surfréquentation/S. surfusion/S. surgélateur/S. surgélation/S. surgelé/S. surgelée/F.() surgeler/b0a+() surgénération/S. surgénératrice/F.() surgeon/S. surgeonner/a0() surgir/f0() surgissement/S. surglacer/a0a+() surgreffer/a0a+() surharmonique/S. surhaussée/F.() surhaussement/S. surhausser/a0a+() surhomme/S. surhumaine/F.() surhumainement surhumanité/S. suricate/S. surie/F.() surimposer/a0a+() surimposition/S. surimpression/S. surin/S. surinamaise/F.() suriner/a0a+() surinfection/S. surintendance/S. surintendante/F.() surintensité/S. surinterpréter/c0a+() surinvestir surir/f0() surjaler/a0() surjection/S. surjective/F.() surjectivement surjectivité/S. surjet/S. surjeter/d0a+() surjouer/a0a+() sur-le-champ surlendemain/S. surlier/a0a+() surlignante/F.() surlignée/F.() surligner/a0a+() surlonge/S. surloyer/S. surmédiatisation/S. surmédicalisation/S. surmédicalisée/F.() surmédicaliser/a0a+() surmenage/S. surmenée/F.() surmener/b0a+() surmoi surmontable/S. surmontée/F.() surmonter/a0a+() surmontoir/S. surmortalité/S. surmoulage/S. surmoulée/F.() surmouler/a0a+() surmulet/S. surmulot/S. surmultiplication/S. surnager/a0() surnatalité/S. surnaturalisme/S. surnaturaliste/S. surnaturelle/F.() surnaturellement surnom/S. surnombre/S. surnommée/F.() surnommer/a0a+() surnuméraire/S. suroffre/S. suroît/S. suros suroxyder/a0a+() suroxygénée/F.() surpassement/S. surpasser/a0a+() surpaye/S. surpayée/F.() surpayer/a0a+() surpêche/S. surpeuplée/F.() surpeuplement/S. surpiquer/a0a+() surpiqûre/S. surplace/S. surplis surplomb/S. surplombante/F.() surplombement/S. surplomber/a0a+() surplus surpopulation/S. surprenante/F.() surprendre/tF() surpression/S. surprime/S. surprise/F.() surprise/S. surprise-partie surprises-parties surproduction/S. surproductive/F.() surproductivité/S. surproductrice/F.() surproduire/yL() surprotection/S. surprotégée/F.() surprotéger/c0a+() surpuissance/S. surpuissante/F.() surréalisme/S. surréaliste/S. surrection/S. surrégénérateur/S. surrégime/S. surrénale/W.() surréservation/S. surréservée/F.() sursalaire/S. sursalée/F.() sursaturante/F.() sursaturation/S. sursaturée/F.() sursaturer/a0a+() sursaut/S. sursauter/a0() sursemer/b0a+() surseoir/pT() sursitaire/S. sursouffler/a0a+() surtailler/a0a+() surtaux surtaxe/S. surtaxée/F.() surtaxer/a0a+() surtendre surtension/S. surtitrage/S. surtitre/S. surtitrée/F.() surtitrer/a0a+() surtonte/S. surtout survalorisation/S. surveillance/S. surveillante/F.() surveillée/F.() surveiller/a0a+() survenance/S. survenir/i0i+() survente/S. survêtement/S. survêtir/iG() survie/S. survirage/S. survirante/F.() survirer/a0a+() survireuse/F.() survitaminée/F.() survivance/S. survivante/F.() survive/F.() survivre/xS() survol/S. survolante/F.() survoler/a0a+() survoltage/S. survoltée/F.() survolter/a0a+() survolteur/S. survolteur-dévolteur survolteurs-dévolteurs susceptibilité/S. susceptible/S. suscitée/F.() susciter/a0a+() suscription/S. suscrire/y1() susdénommée/F.() susdite/F.() sus-dominante/S. sus-hépatique/S. sushi/S. susmentionnée/F.() susnommée/F.() suspect/S. suspecter/a0a+() suspendre/tA() suspendue/F.() suspens suspense/S. suspenseur/S. suspension/S. suspensive/F.() suspensoir/S. suspente/S. suspicieuse/W.() suspicieusement suspicion/S. sustentation/S. sustentatrice/F.() sustenter/a0a+() susurrante/F.() susurration/S. susurrement/S. susurrer/a0a+() susvisée/F.() sutra/S. suturale/W.() suture/S. suturée/F.() suturer/a0a+() suzeraine/F.() suzeraineté/S. svastika/S. svelte/S. sveltesse/S. swahilie/F.() swap/S. swastika/S. sweater/S. sweating-system/S. sweat-shirt/S. sweepstake/S. swing/S. swinguer/a0() sybarite/S. sybaritique/S. sybaritisme/S. sycomore/S. sycophante/S. sycosis syénite/S. syllabaire/S. syllabation/S. syllabe/S. syllaber/a0a+() syllabique/S. syllabisme/S. syllabus syllepse/S. syllogisme/S. syllogistique/S. sylphe/S. sylphide/S. sylvain/S. sylve/S. sylvestre/S. sylvicole/S. sylvicultrice/F.() sylviculture/S. sylvinite/S. symbiose/S. symbiote/S. symbiotique/S. symbole/S. symbolique/S. symboliquement symbolisation/S. symboliser/a0a+() symbolisme/S. symboliste/S. symbologie/S. symétrie/S. symétrique/S. symétriquement symétrisation/S. symétriser/a0a+() sympa sympathie/S. sympathique/S. sympathiquement sympathisante/F.() sympathiser/a0() sympatrie/S. symphonie/S. symphonique/S. symphoniste/S. symphorine/S. symphyse/S. symplectique/S. symposion/S. symposium/S. symptomatique/S. symptomatiquement symptomatologie/S. symptôme/S. synagogue/S. synalèphe/S. synallagmatique/S. synanthérée/F.() synapomorphie/S. synapse/S. synapside/S. synaptase/S. synaptique/S. synarchie/S. synarthrose/S. synchondrose/S. synchrocyclotron/S. synchrone/S. synchronicité/S. synchronie/S. synchronique/S. synchroniquement synchronisable/S. synchronisation/S. synchronisée/F.() synchroniser/a0a+() synchroniseuse/F.() synchronisme/S. synchrotron/S. synclinale/W.() syncopale/W.() syncope/S. syncopée/F.() syncoper/a0a+() syncrétique/S. syncrétisme/S. syncrétiste/S. syncristalliser/a0() syndic/S. syndicale/W.() syndicalement syndicalisation/S. syndicalisée/F.() syndicaliser/a0a+() syndicalisme/S. syndicaliste/S. syndicat/S. syndicataire/S. syndication/S. syndiquée/F.() syndiquer/a0a+() syndrome/S. synecdoque/S. synéchie/S. synérèse/S. synergie/S. synergique/S. synesthésie/S. syngnathe/S. synodale/W.() synode/S. synodique/S. synonyme/S. synonymie/S. synonymique/S. synopse/S. synopsie/S. synopsis synoptique/S. synostose/S. synovie/S. syntacticienne/F.() syntactique/S. syntagmatique/S. syntagme/S. syntaxe/S. syntaxique/S. syntaxiquement synthèse/S. synthétase/S. synthétique/S. synthétiquement synthétisée/F.() synthétiser/a0a+() synthétiseur/S. syntone/S. syntonie/S. syntonisateur/S. syntonisation/S. syntoniser/a0a+() syntoniseur/S. syphilide/S. syphiligraphe/S. syphiligraphie/S. syphilis syphilitique/S. syphilographe/S. syphilographie/S. syriaque/S. syrienne/F.() syringe/S. syringomyélie/S. syrinx syrphe/S. systématicienne/F.() systématique/S. systématiquement systématisation/S. systématisée/F.() systématiser/a0a+() systématisme/S. système/S. systèmes-experts systémique/S. systole/S. systolique/S. systyle/S. syzygie/S. t t/||-- ta tabac/S. tabacologie/S. tabacologue/S. tabacomanie/S. tabacultrice/F.() tabagie/S. tabagique/S. tabagisme/S. tabar/S. tabard/S. tabasco/S. tabassage/S. tabassée/F.() tabasser/a0a+() tabatière/S. tabellaire/S. tabellion/S. tabernacle/S. tabès tabétique/S. tablar/S. tablature/S. table/S. tableau/X. tableautage/S. tableautin/S. tablée/S. tabler/a0() tabletière/F.() tablette/S. tabletterie/S. tableur/S. tablier/S. tabloïd/S. tabor/S. tabou/S. taboue/F.() tabouiser/a0a+() tabouret/S. tabulaire/S. tabulation/S. tabulatrice/F.() tabuler/a0a+() tabun/S. tac/S. tacaud/S. tacca/S. tacet/S. tachante/F.() tache/S. tâche/S. tachée/F.() tachéographe/S. tachéomètre/S. tachéométrie/S. tacher/a0a+() tâcher/a0a+() tâcheron/S. tachetée/F.() tacheter/d0a+() tacheture/S. tachine/S. tachisme/S. tachiste/S. tachistoscope/S. tachistoscopique/S. tachyarythmie/S. tachycardie/S. tachygenèse/S. tachygraphe/S. tachygraphie/S. tachymètre/S. tachyon/S. tachyphémie/S. tachyphylaxie/S. tacite/S. tacitement taciturne/S. taciturnité/S. tacle/S. tacler/a0a+() taco/S. tacon/S. taconeos tacot/S. tact/S. tacticienne/F.() tacticité/S. tactile/S. tactique/S. tactiquement tactisme/S. tadorne/S. taekwondo/S. taekwondoïste/S. tænia/S. taffetas tafia/S. tag/S. tagal/S. tagalog/S. tagète/S. tagliatelle/S. taguée/F.() taguer/a0a+() tahitienne/F.() taïaut taie/S. taïga/S. taiji/S. taïkonaute/S. taillable/S. taillade/S. tailladée/F.() taillader/a0a+() taillage/S. taillanderie/S. taillandier/S. taille/S. taille-crayon/S. taille-douce taillée/F.() taille-mer taille-ongles tailler/a0a+() taille-racines taillerie/S. tailles-douces tailleuse/F.() taille-vent taillis tailloir/S. taillole/S. tain/S. taire/wN() taiseuse/W.() tajine/S. take-off talc/S. talée/F.() talent/S. talentueuse/W.() talentueusement taler/a0a+() taleth/S. talibane/F.() talion/S. talisman/S. talismanique/S. talitre/S. talkies-walkies talkie-walkie talk-show/S. tallage/S. talle/S. tallée/F.() taller/a0() tallipot/S. talmouse/S. talmud/S. talmudique/S. talmudiste/S. taloche/S. talocher/a0a+() talon/S. talonnade/S. talonnage/S. talonnement/S. talonner/a0a+() talonnette/S. talonneur/S. talonnière/S. talpack/S. talpidé/S. talquer/a0a+() talqueuse/W.() talure/S. talus talweg/S. tamandua/S. tamanoir/S. tamarin/S. tamarinier/S. tamaris tamarix tambouille/S. tambouler/a0() tambour/S. tambourin/S. tambourinage/S. tambourinaire/S. tambourinement/S. tambouriner/a0a+() tambourineuse/F.() tambour-major tambours-majors tamia/S. tamier/S. tamile/F.() tamis tamisage/S. tamisée/F.() tamiser/a0a+() tamiserie/S. tamiseuse/F.() tamisière/F.() tamoule/F.() tampico/S. tampon/S. tamponnade/S. tamponnée/F.() tamponnement/S. tamponner/a0a+() tamponneuse/F.() tamponnoir/S. tam-tam/S. tan/S. tanagra/S. tanaisie/S. tancer/a0a+() tanche/S. tandem/S. tandis tangage/S. tangara/S. tangence/S. tangente/F.() tangenter/a9() tangentielle/F.() tangentiellement tangibilité/S. tangible/S. tangiblement tango/S. tangon/S. tanguer/a0() tanguière/S. tanière/S. tanin/S. tanisage/S. taniser/a0a+() tank/S. tanker/S. tankiste/S. tannage/S. tannante/F.() tanne/S. tannée/F.() tanner/a0a+() tannerie/S. tanneuse/F.() tannique/S. tanrec/S. tansad/S. tant tantale/S. tante/S. tantième/S. tantine/S. tantinet/S. tantôt tantrique/S. tantrisme/S. tanzanienne/F.() tao/S. taoïsme/S. taoïste/S. taon/S. tapage/S. tapager/a0() tapageuse/F.() tapageusement tapante/F.() tape/S. tapecul/S. tapée/F.() tapement/S. tapenade/S. taper/a0a+() tapette/S. tapeuse/F.() taphophilie/S. tapie/F.() tapin/S. tapiner/a0() tapinois tapioca/S. tapir/S. tapir/f0f+() tapis tapis-brosse/S. tapissage/S. tapisser/a0a+() tapisserie/S. tapissière/F.() tapon/S. taponner/a0a+() tapotage/S. tapotement/S. tapoter/a0a+() tapuscrit/S. taque/S. taquer/a0a+() taquet/S. taquine/F.() taquiner/a0a+() taquinerie/S. taquoir/S. tarabiscot/S. tarabiscotage/S. tarabiscotée/F.() tarabiscoter/a0a+() tarabuster/a0a+() tarage/S. tarama/S. tararage/S. tarare/S. tarasque/S. taratata taraud/S. taraudage/S. tarauder/a0a+() taraudeuse/F.() taravelle/S. tarbouch/S. tarbouche/S. tard tarder/a0() tardigrade/S. tardillonne/F.() tardive/F.() tardivement tardiveté/S. tare/S. tarée/F.() tarente/S. tarentelle/S. tarentule/S. tarer/a0a+() taret/S. targe/S. targette/S. targuer/a0a+() targui targuie taricheute/S. tarie/F.() tarière/S. tarif/S. tarifaire/S. tarifer/a0a+() tarification/S. tarifier/a0a+() tarin/S. tarir/f0f+() tarissable/S. tarissement/S. tarlatane/S. tarmacadam/S. taro/S. tarot/S. tarotée/F.() tarpan/S. tarpon/S. tarsale/W.() tarse/S. tarsectomie/S. tarsienne/F.() tarsier/S. tartan/S. tartane/S. tartare/S. tartarin/S. tarte/S. tartelette/S. tartiflette/S. tartignole/S. tartine/S. tartiner/a0a+() tartir/f0() tartrate/S. tartre/S. tartreuse/W.() tartrique/S. tartufe/S. tartuferie/S. tarzan/S. tas tassage/S. tasse/S. tasseau/X. tassée/F.() tassement/S. tasser/a0a+() tassette/S. tassili/S. taste-vin tata/S. tatami/S. tatane/S. tatare/F.() tâter/a0a+() tâteur/S. tâte-vin tatillonne/F.() tatillonner/a0() tâtonnante/F.() tâtonnement/S. tâtonner/a0() tatou/S. tatouage/S. tatouée/F.() tatouer/a0a+() tatoueuse/F.() tau taud/S. taudis taularde/F.() taule/S. taulière/F.() tauon/S. taupe/S. taupée/F.() taupe-grillon tauper/a0a+() taupes-grillons taupière/F.() taupin/S. taupinière/S. taure/S. taureau/X. taurillon/S. taurine/F.() taurobole/S. tauromachie/S. tauromachique/S. tautochrone/S. tautologie/S. tautologique/S. tautologue/S. tautomère/S. tautomérie/S. taux tauzin/S. tavaillon/S. tavaïolle/S. tavelée/F.() taveler/d0a+() tavelure/S. taverne/S. tavernière/F.() tavillon/S. taxable/S. taxage/S. taxateur/S. taxation/S. taxative/F.() taxe/S. taxée/F.() taxer/a0a+() taxi/S. taxidermie/S. taxidermiste/S. taxie/S. taximètre/S. taxinomie/S. taxinomique/S. taxinomiste/S. taxiphone/S. taxiway/S. taxodium/S. taxon/S. taxonomie/S. taxonomique/S. taxonomiste/S. taxum/S. taylorisation/S. tayloriser/a0a+() taylorisme/S. tchadienne/F.() tchadiser/a0a+() tchador/S. tchao tcharchaf/S. tchatcher/a0() tchécoslovaque/S. tchèque/S. tchérémisse/S. tchernoziom/S. tchervonets tchervontsy tchétchène/S. tchin-tchin tchitola/S. te/S. té/S. tébibit/S. tébioctet/S. tec/||-- technétium/S. technétronique/S. technicienne/F.() technicisation/S. techniciser/a0a+() technicisme/S. technicité/S. technico-commerciale/W.() technicolor/S. technique/S. techniquement techniser/a0a+() techniverrière/F.() techno/S. technobureaucratique/S. technocrate/S. technocratie/S. technocratique/S. technocratisation/S. technocratiser/a0a+() technocratisme/S. technoéconomique/S. technologie/S. technologique/S. technologiquement technologiste/S. technologue/S. technophile/S. technopole/S. technopôle/S. technostructure/S. teck/S. teckel/S. tecker/a0() tectonique/S. tectrice/S. tee/S. teen-ager/S. tee-shirt/S. téflon/S. tégénaire/S. tégument/S. tégumentaire/S. teigneuse/W.() teillage/S. teille/S. teiller/a0a+() teilleuse/F.() teindre/wB() teinte/F.() teinte/S. teintée/F.() teinter/a0a+() teinture/S. teinturerie/S. teinturière/F.() tél télamon/S. télé/S. téléachat/S. téléactrice/F.() téléassistance/S. téléavertisseur/S. télébenne/S. téléboutique/S. télécabine/S. télécarte/S. télécentre/S. téléchargeable/S. téléchargée/F.() téléchargement/S. télécharger/a0a+() téléchirurgie/S. télécinéma/S. télécommande/S. télécommandée/F.() télécommander/a0a+() télécommunication/S. téléconduite/F.() téléconduite/S. téléconférence/S. téléconseil/S. téléconseillère/F.() télécontrôle/S. télécopie/S. télécopier/a0a+() télécopieur/S. télédéclarante/F.() télédéclaration/S. télédétection/S. télédiffuser/a0a+() télédiffusion/S. télédistribution/S. télé-enseignement/S. télé-évangélisme/S. télé-évangéliste/S. téléfilm/S. téléga/S. télégénique/S. télégestion/S. télégramme/S. télégraphe/S. télégraphier/a0a+() télégraphique/S. télégraphiquement télégraphiste/S. télègue/S. téléguidage/S. téléguidée/F.() téléguider/a0a+() téléimprimeur/S. téléinformatique/S. téléjournal/X. télékinésie/S. télémaintenance/S. télémanipulateur/S. télémanipulation/S. télémark/S. télémarketing/S. télématique/S. télémécanicienne/F.() télémécanique/S. télémédecine/S. télémercatique/S. télémessage/S. télémesure/S. télémètre/S. télémétrer/c0a+() télémétreur/S. télémétrie/S. télémétrique/S. télencéphale/S. téléobjectif/S. téléologie/S. téléologique/S. téléonomie/S. téléopérateur/S. téléopération/S. téléopératrice/F.() téléosaure/S. téléostéen/S. télépathe/S. télépathie/S. télépathique/S. télépathiquement télépéage/S. téléphérage/S. téléphérique/S. téléphonage/S. téléphone/S. téléphonée/F.() téléphoner/a0a+() téléphonie/S. téléphonique/S. téléphoniquement téléphoniste/S. téléphotographie/S. télépointage/S. téléportation/S. téléporter/a0a+() téléprompteur/S. téléprospection/S. téléprospectrice/F.() téléradio/S. téléradiographie/S. télé-réalité/S. téléreportage/S. télérobotique/S. téléroman/S. téléscaphe/S. télescopage/S. télescope/S. télescoper/a0a+() télescopique/S. téléscripteur/S. télésecours télésiège/S. télésignalisation/S. téléski/S. téléspectatrice/F.() télesthésie/S. télésurveillance/S. télétexte/S. téléthèque/S. télétoxie/S. télétoxique/S. télétraitement/S. télétransmission/S. télétravail/S. télétravailleuse/F.() télétype/S. télévangélisme/S. télévangéliste/S. télévendeuse/F.() télévente/S. télévérité/S. téléversement/S. téléverser/a0a+() télévisée/F.() téléviser/a0a+() téléviseur/S. télévision/S. télévisuelle/F.() télex télexer/a0a+() télexiste/S. tell/S. telle/F.() tellement tellière/S. tellurate/S. tellure/S. tellureuse/W.() tellurhydrique/S. tellurienne/F.() tellurique/S. tellurisme/S. tellurure/S. télolécithe/S. télomérase/S. télomère/S. télophase/S. telson/S. téméraire/S. témérairement témérité/S. témoignage/S. témoigner/a0a+() témoin/S. tempe/S. tempera tempera tempérament/S. tempérance/S. tempérante/F.() température/S. tempérée/F.() tempérer/c0a+() tempête/S. tempêter/a0() tempétueuse/W.() temple/S. templier/S. tempo/S. temporaire/S. temporairement temporale/W.() temporaliser/a0a+() temporalité/S. temporelle/F.() temporellement temporisation/S. temporisatrice/F.() temporiser/a0a+() temps temps-réel tenable/S. tenace/S. tenacement ténacité/S. tenaille/S. tenaillement/S. tenailler/a0a+() tenancière/F.() tenante/F.() tendance/S. tendancielle/F.() tendancieuse/W.() tendancieusement tendelle/S. tender/S. tenderie/S. tendeuse/F.() tendineuse/W.() tendinite/S. tendoir/S. tendon/S. tendre/S. tendre/tA() tendrement tendresse/S. tendreté/S. tendron/S. tendue/F.() ténèbres ténébreuse/W.() ténébreusement ténébrion/S. tènement/S. ténesme/S. teneur/S. teneurmètre/S. teneuse/F.() ténia/S. ténifuge/S. tenir/i0i+() tennis tennisman/S. tennistique/S. tenniswoman/S. tenon/S. tenonner/a0a+() tenonneuse/S. ténor/S. ténorino/S. ténoriser/a0() ténorite/S. ténotomie/S. tenrec/S. tenségrité/S. tenseur/S. tensioactive/F.() tensiomètre/S. tension/S. tenson/S. tensorielle/F.() tentaculaire/S. tentacule/S. tentante/F.() tentation/S. tentative/S. tentatrice/F.() tente/S. tente-abri tenter/a0a+() tentes-abris tenthrède/S. tenture/S. ténue/F.() tenue/S. ténuité/S. tenure/S. tenuto téocalli/S. tep/||-- tepidarium/S. tequila/S. ter térabit/S. téraoctet/S. tératogène/S. tératogenèse/S. tératogénie/S. tératologie/S. tératologique/S. tératologiste/S. tératologue/S. terbine/S. terbium/S. tercer/a0a+() tercet/S. térébelle/S. terebellum/S. térébenthine/S. térébinthacée/S. térébinthe/S. térébique/S. térébrante/F.() térébratule/S. tergal/S. tergiversation/S. tergiverser/a0() termaillage/S. terme/S. terminaison/S. terminale/W.() terminateur/S. terminée/F.() terminer/a0a+() terminologie/S. terminologique/S. terminologue/S. terminus termite/S. termitière/S. ternaire/S. terne/S. ternie/F.() ternir/f0f+() ternissement/S. ternissure/S. terpène/S. terpénique/S. terpénoïde/S. terpine/S. terpinéol/S. terpinol/S. terraformation/S. terrafungine/S. terrage/S. terrain/S. terramare/S. terraplane/S. terraquée/F.() terrarium/S. terrasse/S. terrassée/F.() terrassement/S. terrasser/a0a+() terrassier/S. terre/S. terreau/X. terreautage/S. terreauter/a0a+() terre-neuvas terre-neuve terre-neuvienne/F.() terre-neuvier/S. terre-plein/S. terrer/a0a+() terrestre/S. terreur/S. terreuse/W.() terrible/S. terriblement terricole/S. terrienne/F.() terrier/S. terrifiante/F.() terrifiée/F.() terrifier/a0a+() terrifique/S. terrigène/S. terril/S. terrine/S. terrir/f0() territoire/S. territoriale/W.() territorialement territorialité/S. terroir/S. terrorisante/F.() terrorisée/F.() terroriser/a0a+() terrorisme/S. terroriste/S. terser/a0a+() tertiaire/S. tertiairisation/S. tertiarisation/S. tertio tertre/S. tervueren/S. terzetto/S. teseter/d0a+() tesla/Um() tesselation/S. tesselle/S. tessiture/S. tesson/S. test/S. testabilité/S. testable/S. testacée/F.() testacelle/S. testage/S. testament/S. testamentaire/S. testatrice/F.() testée/F.() tester/a0a+() testeuse/F.() testiculaire/S. testicule/S. testimoniale/W.() testologie/S. teston/S. testostérone/S. tétanie/S. tétaniforme/S. tétanique/S. tétanisante/F.() tétanisation/S. tétanisée/F.() tétaniser/a0a+() tétanisme/S. tétanos tétanotoxine/S. têtard/S. tête/S. tête-à-queue tête-à-tête têteau/X. tête-bêche tête-de-Maure tête-de-clou tête-de-loup tête-de-moineau tête-de-mort tête-de-nègre tête-de-nègre tétée/S. téter/c0a+() téterelle/S. têtes-de-Maure têtes-de-clou têtes-de-loup têtes-de-moineau têtes-de-mort têtes-de-nègre têtière/S. tétin/S. tétine/S. téton/S. tétonnière/S. tétra/S. tétrachlorure/S. tétracorde/S. tétracycline/S. tétradactyle/S. tétrade/S. tétradrachme/S. tétraèdre/S. tétragone/S. tétragramme/S. tétrahydronaphtaline/S. tétralogie/S. tétramère/S. tétramètre/S. tétramorphe/S. tétraphonie/S. tétraplégie/S. tétraplégique/S. tétraploïde/S. tétraploïdie/S. tétrapode/S. tétrapolaire/S. tétraptère/S. tétrarchat/S. tétrarchie/S. tétrarchique/S. tétrarque/S. tétras tétrasodique/S. tétrastyle/S. tétrasyllabe/S. tétrasyllabique/S. tétraterpène/S. tétratomicité/S. tétratomique/S. tétravalence/S. tétravalente/F.() tétrodon/S. tétrodotoxine/S. tette/S. têtue/F.() têtuer/a0a+() teufs-teufs teuf-teuf teutonique/S. teutonne/F.() tex tex/||-- texane/F.() texte/S. textile/S. texto/S. textualiser/a0a+() textuelle/F.() textuellement texture/S. texturée/F.() texturer/a0a+() texturisation/S. texturiser/a0a+() th/||-- thaïe/F.() thaïlandaise/F.() thalamique/S. thalamus thalassémie/S. thalassothérapeute/S. thalassothérapie/S. thalassotoque/S. thaler/S. thalidomide/S. thalle/S. thallium/S. thanatologie/S. thanatopraxie/S. thanatos thaumaturge/S. thaumaturgie/S. thaumaturgique/S. thé/S. théatin/S. théâtrale/W.() théâtralement théâtraliser/a0a+() théâtralisme/S. théâtralité/S. théâtre/S. thébaïde/S. thébaine/F.() thébaïne/S. thébaïque/S. thébaïsme/S. théière/F.() théine/S. théisme/S. théiste/S. thématique/S. thématiser/a0a+() thématisme/S. thème/S. thénar/S. théobromine/S. théocrate/S. théocratie/S. théocratique/S. théodicée/S. théodolite/S. théogonie/S. théogonique/S. théologale/W.() théologie/S. théologienne/F.() théologique/S. théologiquement théophanie/S. théophilanthrope/S. théophilanthropie/S. théophylline/S. théorbe/S. théorématique/S. théorème/S. théorétique/S. théoricienne/F.() théorie/S. théorique/S. théoriquement théorisation/S. théoriser/a0a+() théosophe/S. théosophie/S. thèque/S. thérapeute/S. thérapeutique/S. thérapie/S. thériaque/S. théridion/S. thermale/W.() thermalisme/S. thermes thermicienne/F.() thermidor/S. thermie/S. thermique/S. thermiquement thermistance/S. thermisteur/S. thermistor/S. thermite/S. thermocautère/S. thermochimie/S. thermochimique/S. thermocinétique/S. thermocolorimètre/S. thermocouple/S. thermodurcissable/S. thermodynamicienne/F.() thermodynamique/S. thermoélectricité/S. thermoélectrique/S. thermoformage/S. thermogène/S. thermogenèse/S. thermographie/S. thermogravimétrie/S. thermohaline/F.() thermolabile/S. thermoludique/S. thermoludisme/S. thermoluminescence/S. thermolyse/S. thermomagnétique/S. thermomètre/S. thermométrie/S. thermométrique/S. thermonucléaire/S. thermophile/S. thermoplastique/S. thermopompe/S. thermopropulsée/F.() thermopropulsion/S. thermopropulsive/F.() thermorégulation/S. thermorégulatrice/F.() thermorésistante/F.() thermos thermoscope/S. thermosiphon/S. thermosphère/S. thermostable/S. thermostat/S. thermostatique/S. thermothérapie/S. théropode/S. thésarde/F.() thésaurisation/S. thésaurisée/F.() thésauriser/a0a+() thésauriseuse/F.() thésaurus thèse/S. thesmophories thesmothète/S. thêta thétique/S. théurge/S. théurgie/S. théurgique/S. théurgiste/S. thiamine/S. thiase/S. thibaude/S. thioalcool/S. tholos thomisme/S. thomiste/S. thon/S. thonaire/S. thonier/S. thora/S. thoracentèse/S. thoracique/S. thoracocentèse/S. thoracoplastie/S. thorax thorine/S. thorite/S. thorium/S. thorn/S. thoron/S. thrace/S. thrène/S. thréonine/S. thridace/S. thriller/S. thrips thrombine/S. thrombocyte/S. thromboplastine/S. thrombose/S. thrombus thulium/S. thune/S. thuriféraire/S. thuya/S. thylacine/S. thym/S. thymie/S. thymine/S. thymique/S. thymol/S. thymus thyratron/S. thyréotrope/S. thyristor/S. thyroglobuline/S. thyroïde/S. thyroïdectomie/S. thyroïdienne/F.() thyroïdisme/S. thyroïdite/S. thyrotrophine/S. thyroxine/S. thyrse/S. tian/S. tiare/S. tibétaine/F.() tibia/S. tibiale/W.() tic/S. ticket/S. tic-tac tictaquer/a0() tiédasse/S. tiède/S. tièdement tiédeur/S. tiédir/f0f+() tiédissement/S. tienne/F.() tierce/S. tiercée/F.() tiercefeuille/S. tiercelet/S. tiercer/a0a+() tierceron/S. tiers tiers-monde/S. tiers-mondisme/S. tiers-mondiste/S. tiers-point/S. tif/S. tiffe/S. tifosi tige/S. tigelle/S. tigette/S. tiglon/S. tignasse/S. tigrée/F.() tigrer/a0a+() tigresse/F.() tigridie/S. tigron/S. tiki/S. tilbury/S. tilde/S. tiliacée/S. tillac/S. tillage/S. tillandsie/S. tille/S. tiller/a0a+() tilleul/S. tilt/S. tiltée/F.() tilter/a0a+() timbale/S. timbalier/S. timbrage/S. timbre/S. timbre-amende timbrée/F.() timbre-poste timbre-quittance timbrer/a0a+() timbres-amendes timbres-poste timbres-quittances timide/S. timidement timidité/S. timing/S. timocratie/S. timon/S. timonerie/S. timonière/F.() timorée/F.() tin/S. tinamou/S. tincal/S. tinctoriale/W.() tinette/S. tintamarre/S. tintement/S. tinter/a0a+() tintin tintinnabulante/F.() tintinnabulement/S. tintinnabuler/a0() tintouin/S. tipi/S. tipule/S. tique/S. tiquer/a0() tiquetée/F.() tiqueture/S. tiqueuse/F.() tir/S. tirade/S. tirage/S. tiraillante/F.() tiraillée/F.() tiraillement/S. tirailler/a0a+() tiraillerie/S. tirailleur/S. tiramisu/S. tirant/S. tire/S. tire-au-cul tire-au-flanc tire-balle/S. tire-bonde/S. tire-botte/S. tire-bouchon/S. tire-bouchonnée/F.() tire-bouchonner/a0a+() tire-bourre tire-bouton/S. tire-braise tire-clou/S. tire-crins tire-d'aile tirée/F.() tire-fesses tire-feu tire-filet/S. tire-fond tire-jus tire-laine tire-lait tire-larigot tire-ligne/S. tirelire/S. tire-lisse tire-l'œil tire-pied/S. tirer/a0a+() tire-sac/S. tire-sou/S. tiret/S. tiretaine/S. tireté/S. tire-terre tirette/S. tireuse/F.() tire-veille tire-veine/S. tiroir/S. tiroir-caisse tiroirs-caisses tisane/S. tisaner/a0a+() tiser/a0a+() tison/S. tisonnée/F.() tisonner/a0a+() tisonnier/S. tissage/S. tissée/F.() tisser/a0a+() tisserande/F.() tisserin/S. tisseuse/F.() tissu/S. tissu-éponge tissulaire/S. tissure/S. tissus-éponges tistre/tU() titan/S. titane/S. titanesque/S. titanide/S. titanique/S. titanite/S. titi/S. titillation/S. titiller/a0a+() titisme/S. titiste/S. titrage/S. titraille/S. titre/S. titrée/F.() titrer/a0a+() titre-restaurant titres-restaurant titrisation/S. titrisée/F.() titriser/a0a+() titubante/F.() titubation/S. tituber/a0() titulaire/S. titularisation/S. titularisée/F.() titulariser/a0a+() titulature/S. tmèse/S. toast/S. toaster/S. toaster/a0a+() toasteur/S. toboggan/S. toc/S. tocante/S. tocarde/F.() toccata/S. tocsin/S. tofu/S. toge/S. togolaise/F.() togoliser/a0a+() tohu-bohu toi toile/S. toiler/a0a+() toilerie/S. toilettage/S. toilette/S. toiletter/a0a+() toi-même toise/S. toiser/a0a+() toison/S. toit/S. toiture/S. tokai/S. tokamak/S. tokay/S. tokharienne/F.() tôle/S. tôlée/S. tolérable/S. tolérance/S. tolérante/F.() tolérantisme/S. tolérée/F.() tolérer/c0a+() tôlerie/S. tolet/S. tôlière/F.() tolite/S. tollé/S. toltèque/S. tolu/S. toluène/S. toluidine/S. toluol/S. tomahawk/S. tomaison/S. tomate/S. tombac/S. tombale/W.() tombante/F.() tombe/S. tombeau/X. tombée/F.() tombelle/S. tomber/a0a+() tombereau/X. tombeur/S. tombola/S. tome/S. tomenteuse/W.() tomer/a0a+() tomette/S. tomme/S. tommy/S. tomodensitomètre/S. tomodensitométrie/S. tomodensitométrique/S. tomographe/S. tomographie/S. tomographique/S. tom-pouce ton ton/S. tonale/F.() tonalité/S. tondage/S. tondaison/S. tondeuse/F.() tondre/tA() tondue/F.() toner/S. tonicardiaque/S. tonicité/S. tonie/S. tonifiante/F.() tonification/S. tonifier/a0a+() tonique/S. tonitruante/F.() tonitruer/a0() tonka/S. tonlieu/X. tonnage/S. tonnante/F.() tonne/S. tonneau/X. tonnelage/S. tonnelet/S. tonnelier/S. tonnelle/S. tonnellerie/S. tonner/a0() tonnerre/S. tonofibrille/S. tonologie/S. tonométrie/S. tonsure/S. tonsurée/F.() tonsurer/a0a+() tonte/S. tontine/S. tontiner/a0a+() tontinière/F.() tontisse/S. tonton/S. tonture/S. tonus top/S. topaze/S. tope toper/a0() topette/S. tophet/S. tophus topicaliser/a0a+() topinambour/S. topique/S. topless topo/S. topographe/S. topographie/S. topographique/S. topographiquement topologie/S. topologique/S. topologiquement toponyme/S. toponymie/S. toponymique/S. toponymiste/S. toquade/S. toque/S. toquée/F.() toquer/a0a+() toquet/S. torah/S. torche/S. torche-cul/S. torchée/F.() torcher/a0a+() torchère/S. torchis torchon/S. torchonner/a0a+() torcol/S. tordage/S. tordante/F.() tord-boyaux tordeuse/F.() tordoir/S. tordre/tA() tordue/F.() tore/S. toréador/S. toréer/a0() torero/S. toreutique/S. torgnole/S. torii toril/S. torique/S. tormentille/S. tornade/S. toroïdale/W.() toron/S. toronner/a0a+() toronneuse/S. torpédo/S. torpeur/S. torpide/S. torpillage/S. torpille/S. torpillée/F.() torpiller/a0a+() torpillerie/S. torpilleur/S. torque/S. torr/S. torréfacteur/S. torréfaction/S. torréfier/a0a+() torrent/S. torrentielle/F.() torrentiellement torrentueuse/W.() torride/S. torsade/S. torsadée/F.() torsader/a0a+() torse/S. torseur/S. torsion/S. tort/S. torticolis tortil/S. tortillage/S. tortillard/S. tortille/S. tortillement/S. tortiller/a0a+() tortillon/S. tortionnaire/S. tortis tortorer/a0a+() tortue/S. tortueuse/W.() tortueusement torturante/F.() torture/S. torturée/F.() torturer/a0a+() torve/S. tory/S. torysme/S. toscane/F.() tosser/a0() tôt totale/W.() totalement totalisation/S. totalisatrice/F.() totalisée/F.() totaliser/a0a+() totaliseur/S. totalitaire/S. totalitarisme/S. totalité/S. totem/S. totémique/S. totémisme/S. tôt-fait/S. toto/S. toton/S. touage/S. touaille/S. touareg/S. touarègue/S. toubabiser/a0a+() toubib/S. toucan/S. touchable/S. touchante/F.() touchau/X. touche/S. touche-à-tout touchée/F.() toucher/S. toucher/a0a+() touchette/S. toucheur/S. touer/a0a+() toueur/S. touffe/S. touffeur/S. touffue/F.() touillage/S. touille/S. touiller/a0a+() touillette/S. toujours touloupe/S. toulousaine/F.() toundra/S. toungouse/S. toupet/S. toupie/S. toupiller/a0a+() toupilleuse/F.() toupillon/S. toupiner/a0() touque/S. tour/S. touraillage/S. touraille/S. touranienne/F.() tourbe/S. tourber/a0() tourbeuse/W.() tourbière/F.() tourbillon/S. tourbillonnaire/S. tourbillonnante/F.() tourbillonnement/S. tourbillonner/a0() tourd/S. tourdille/S. tourelle/S. touret/S. tourie/S. tourière/F.() tourillon/S. tourillonner/a0() tourisme/S. touriste/S. touristique/S. tourmaline/S. tourment/S. tourmente/S. tourmentée/F.() tourmenter/a0a+() tourmenteuse/F.() tourmentin/S. tournage/S. tournailler/a0() tournante/F.() tournasser/a0a+() tournebouler/a0a+() tournebride/S. tournebroche/S. tourne-disque tourne-disque/S. tournedos tournée/F.() tournée/S. tourne-feuille tournemain/S. tourne-oreille tourne-pierre/S. tourner/a0a+() tournerie/S. tourne-soc tournesol/S. tournette/S. tourneuse/F.() tourne-vent tournevis tournicoter/a0() tourniller/a0() tourniole/S. tourniquer/a0() tourniquet/S. tournis tournisse/S. tournoi/S. tournoiement/S. tournoyante/F.() tournoyer/a0() tournure/S. touron/S. tour-opérateur/S. tours-opérateurs tourte/S. tourteau/X. tourtelée/F.() tourtelette/S. tourtereau/X. tourterelle/S. tourtière/S. tous touselle/S. toussailler/a0() tousser/a0() tousserie/S. tousseuse/F.() toussotement/S. toussoter/a0() tout-à-l'égout toute/F.() toute-bonne toute-épice toutefois toute-puissance toute-puissante touter/a0() toutes-boîtes toutes-bonnes toutes-épices toutes-puissantes tout-fou/S. toutim toutou/S. tout-petit/S. tout-puissant/S. tout-venant toux toxémie/S. toxicité/S. toxico/S. toxicodermie/S. toxicologie/S. toxicologique/S. toxicologue/S. toxicomane/S. toxicomaniaque/S. toxicomanie/S. toxicose/S. toxine/S. toxique/S. toxoplasme/S. toxoplasmose/S. toyotisme/S. tr/||-- trabe/S. trabée/S. trabouler/a0() trac/S. traçabilité/S. traçable/S. traçage/S. tracaner/a0a+() traçante/F.() tracas tracassée/F.() tracasser/a0a+() tracasserie/S. tracassière/F.() tracassin/S. trace/S. tracé/S. tracée/F.() tracement/S. tracéologie/S. tracer/a0a+() traceret/S. traceuse/F.() trachéale/W.() trachée/S. trachée-artère trachéenne/F.() trachées-artères trachéide/S. trachéite/S. trachéo-bronchite/S. trachéostomie/S. trachéotomie/S. trachome/S. trachyte/S. traçoir/S. tract/S. tractable/S. tractage/S. tractation/S. tractée/F.() tracter/a0a+() traction/S. tractionnaire/S. tractive/F.() tractoriste/S. tractrice/F.() tractus trad trader/S. tradescantia/S. trade-union/S. traditeur/S. tradition/S. traditionalisme/S. traditionaliste/S. traditionnaire/S. traditionnelle/F.() traditionnellement traduction/S. traductrice/F.() traduire/yM() traduisible/S. traduite/F.() trafic/S. traficoter/a0() traficoteuse/F.() trafiquante/F.() trafiquée/F.() trafiquer/a0a+() trafiqueuse/F.() tragédie/S. tragédienne/F.() tragi-comédie/S. tragi-comique/S. tragique/S. tragiquement trahie/F.() trahir/f0f+() trahison/S. traille/S. train/S. traînage/S. traînailler/a0() traînante/F.() traînarde/F.() traînasser/a0a+() traîne/S. traîneau/X. traîne-bûche traîne-buisson traînée/S. traîne-malheur traînement/S. traîne-misère traîner/a0a+() traîne-savates traîne-semelles traîneuse/F.() trainglot/S. training/S. train-train traire/wL() trait/S. traitable/S. traitance/S. traitante/F.() traite/F.() traite/S. traitée/F.() traitement/S. traiter/a0a+() traiteur/S. traîtresse/F.() traîtreusement traîtrise/S. trajectographie/S. trajectoire/S. trajet/S. tralala tralala/S. tram/S. tramage/S. tramail/S. trame/S. tramer/a0a+() traminot/S. tramontane/S. tramp/S. trampoline/S. tramway/S. tranchage/S. tranchante/F.() tranche/S. tranchée/F.() tranchée/S. tranchée-abri tranchées-abris tranchefiler/a0a+() trancher/a0a+() tranchet/S. trancheuse/F.() tranchoir/S. tranquille/S. tranquillement tranquillisante/F.() tranquillisation/S. tranquillisée/F.() tranquilliser/a0a+() tranquillité/S. transaction/S. transactionnelle/F.() transafricaine/F.() transalpine/F.() transandine/F.() transat/S. transatlantique/S. transbahutement/S. transbahuter/a0a+() transbordement/S. transborder/a0a+() transbordeur/S. transcanadienne/F.() transcaspienne/F.() transcendance/S. transcendantale/W.() transcendantalisme/S. transcendantaliste/S. transcendante/F.() transcendée/F.() transcender/a0a+() transcodage/S. transcoder/a0a+() transcodeur/S. transcontinentale/W.() transcripteur/S. transcription/S. transcrire/y1() transcrite/F.() transdisciplinaire/S. transducteur/S. transduction/S. transe/S. transept/S. transfection/S. transférable/S. transférée/F.() transfèrement/S. transférentielle/F.() transférer/c0a+() transfert/S. transfiguration/S. transfiguratrice/F.() transfigurée/F.() transfigurer/a0a+() transfiler/a0a+() transfinie/F.() transfixion/S. transfo/S. transformable/S. transformante/F.() transformation/S. transformationnelle/F.() transformatrice/F.() transformée/F.() transformer/a0a+() transformisme/S. transformiste/S. transfrontalière/F.() transfuge/S. transfusée/F.() transfuser/a0a+() transfusion/S. transgénérationnelle/F.() transgenèse/S. transgénique/S. transgénose/S. transgresser/a0a+() transgresseur/S. transgression/S. transgressive/F.() transhumance/S. transhumante/F.() transhumer/a0a+() transie/F.() transiger/a0() transillumination/S. transir/f0f+() transistor/S. transistorisation/S. transistoriser/a0a+() transit/S. transitaire/S. transiter/a0a+() transition/S. transitionnelle/F.() transitive/F.() transitivement transitivité/S. transitoire/S. transitoirement translatée/F.() translater/a0a+() translation/S. translationnelle/F.() translative/F.() translittération/S. translittérer/c0a+() translocation/S. translucide/S. translucidité/S. transmetteur/S. transmettre/vA() transmigration/S. transmigrer/a0() transmise/F.() transmissibilité/S. transmissible/S. transmissiomètre/S. transmission/S. transmuable/S. transmuée/F.() transmuer/a0a+() transmutabilité/S. transmutable/S. transmutation/S. transmutatoire/S. transmutée/F.() transmuter/a0a+() transnationale/W.() transneptunienne/F.() transocéanienne/F.() transocéanique/S. transparaître/wQ() transparence/S. transparente/F.() transpercée/F.() transpercement/S. transpercer/a0a+() transpirante/F.() transpiration/S. transpirer/a0a+() transplant/S. transplantable/S. transplantation/S. transplanter/a0a+() transplantoir/S. transpolaire/S. transpondeur/S. transport/S. transportable/S. transportation/S. transportée/F.() transporter/a0a+() transporteuse/F.() transposable/S. transposée/F.() transposer/a0a+() transposition/S. transpositrice/F.() transpyrénéenne/F.() transsaharienne/F.() transsexualisme/S. transsexuelle/F.() transsibérienne/F.() transsonique/S. transsubstantiation/S. transsubstantier/a0a+() transsudat/S. transsudation/S. transsuder/a0a+() transvasement/S. transvaser/a0a+() transvection/S. transversale/W.() transversalement transversalité/S. transverse/S. transvestisme/S. transvider/a0a+() transylvaine/F.() trantran/S. trapèze/S. trapéziste/S. trapézoïdale/W.() trapézoïde/S. trappe/S. trappeur/S. trappillon/S. trappiste/S. trappistine/S. trapue/F.() traque/S. traquée/F.() traquenard/S. traquer/a0a+() traquet/S. traqueuse/F.() trattoria/S. trauma/S. traumatique/S. traumatisante/F.() traumatisée/F.() traumatiser/a0a+() traumatisme/S. traumatologie/S. traumatologique/S. traumatologiste/S. traumatologue/S. travail/X. travaillée/F.() travailler/a0a+() travailleuse/F.() travaillisme/S. travailliste/S. travailloter/a0() travée/S. travelage/S. traveller's travelling/S. travelo/S. traversable/S. traversante/F.() traverse/F.() traversée/F.() traversée/S. traverser/a0a+() traversière/F.() traversin/S. travertin/S. travestie/F.() travestir/f0f+() travestisme/S. travestissement/S. trayeuse/F.() trayon/S. trébuchante/F.() trébuchement/S. trébucher/a0a+() trébuchet/S. tréfilage/S. tréfiler/a0a+() tréfilerie/S. tréfileuse/F.() trèfle/S. tréflée/F.() tréflière/S. tréfondre tréfonds tréhalose/S. treillage/S. treillager/a0a+() treillageur/S. treillagiste/S. treille/S. treillis treillisser/a0a+() treize treizième/S. treizièmement treiziste/S. trek/S. trekkeuse/F.() trekking/S. trélingage/S. tréma/S. trémail/S. trématage/S. trémater/a0a+() tremblante/F.() tremblée/F.() tremblement/S. trembler/a0() trembleuse/F.() tremblotante/F.() tremblote/S. tremblotement/S. trembloter/a0() trémelle/S. tremens trémie/S. trémière/S. trémolo/S. trémoussement/S. trémousser/a0a+() trempage/S. trempe/S. trempée/F.() tremper/a0a+() trempette/S. tremplin/S. trémulation/S. trémuler/a0a+() trench-coat/S. trentain/S. trentaine/S. trente trente-cinq trente-deux trente-et-quarante trente-et-un trente-huit trentenaire/S. trente-neuf trente-quatre trente-sept trente-six trente-trois trentième/S. trépan/S. trépanation/S. trépanée/F.() trépaner/a0a+() trépang/S. trépas trépassée/F.() trépasser/a0() tréphocyte/S. tréphone/S. trépidante/F.() trépidation/S. trépider/a0() trépied/S. trépignement/S. trépigner/a0a+() trépigneuse/S. trépointe/S. tréponème/S. très trésaille/S. trescheur/S. trésor/S. trésorerie/S. trésorière/F.() tressage/S. tressaillement/S. tressaillir/iS() tressautement/S. tressauter/a0() tresse/S. tressée/F.() tresser/a0a+() tréteau/X. treuil/S. treuillage/S. treuiller/a0a+() trêve/S. trévirer/a0a+() tri/S. triac/S. triacide/S. triade/S. triage/S. triaire/S. trial/S. trialcool/S. triandine/S. triandrie/S. triangle/S. triangulabilité/S. triangulable/S. triangulaire/S. triangulairement triangularisation/S. triangularité/S. triangulation/S. trianguler/a0a+() triasique/S. triathlon/S. triatomique/S. tribade/S. tribale/W.() tribalisme/S. triballer/a0a+() tribart/S. tribasique/S. triboélectricité/S. triboélectrique/S. tribologie/S. triboluminescence/S. tribomètre/S. tribométrie/S. tribord/S. tribordais triboulet/S. tribu/S. tribulation/S. tribun/S. tribunal/X. tribunat/S. tribune/S. tribunitienne/F.() tribut/S. tributaire/S. tric/S. tricennale/W.() tricentenaire/S. tricéphale/S. triceps tricératops triche/S. tricher/a0() tricherie/S. tricheuse/F.() trichiasis trichinée/F.() trichineuse/W.() trichinose/S. trichite/S. trichloracétique/S. trichloréthylène/S. trichlorure/S. trichocéphale/S. tricholome/S. trichoma/S. trichome/S. trichomonas trichophagie/S. trichophyton/S. trichotillomanie/S. trichrome/S. trichromie/S. trick/S. triclinique/S. triclinium/S. tricoise/S. tricolore/S. tricorne/S. tricot/S. tricotage/S. tricotée/F.() tricoter/a0a+() tricotets tricoteuse/F.() tricouni/S. tricourant trictrac/S. tricuspide/S. tricycle/S. tricyclique/S. tridacne/S. tridactyle/S. trident/S. tridentée/F.() tridi/S. tridiagonale/S. tridimensionnalité/S. tridimensionnelle/F.() trièdre/S. triennale/W.() trier/a0a+() triérarque/S. trière/S. trieuse/F.() trifide/S. trifoliolée/F.() triforium/S. trifouiller/a0a+() trigémellaire/S. trigéminée/F.() trigle/S. triglyphe/S. trigonale/W.() trigonalisation/S. trigone/S. trigonelle/S. trigonocéphale/S. trigonométrie/S. trigonométrique/S. trigonométriquement trigramme/S. trijumeau/X. trikini/S. trilatérale/W.() trilatération/S. trilinéaire/S. trilingue/S. trilinguisme/S. trilitère/S. trille/S. triller/a0a+() trilliard/S. trillion/S. trilobée/F.() trilobite/S. triloculaire/S. trilogie/S. trimaran/S. trimard/S. trimarder/a0a+() trimardeur/S. trimbalage/S. trimbalement/S. trimbaler/a0a+() trimer/a0() trimère/S. trimestre/S. trimestrielle/F.() trimestriellement trimètre/S. trimmer/S. trimoteur/S. trine/F.() trinervée/F.() tringle/S. tringler/a0a+() tringlot/S. trinitaire/S. trinité/S. trinitrobenzène/S. trinitrotoluène/S. trinôme/S. trinquer/a0() trinquette/S. trinqueur/S. trio/S. triode/S. triol/S. triolet/S. triomphale/W.() triomphalement triomphalisme/S. triomphaliste/S. triomphante/F.() triomphatrice/F.() triomphe/S. triompher/a0() trionyx trip/S. tripaille/S. tripale/S. tripang/S. tripartie/F.() tripartisme/S. tripartite/S. tripartition/S. tripatouillage/S. tripatouiller/a0a+() tripatouilleuse/F.() tripe/S. triperie/S. tripette/S. triphasée/F.() triphosphate/S. tripière/F.() triplace/S. triple/S. triplée/F.() triplement/S. tripler/a0a+() triplet/S. triplette/S. triplex triplicata/S. triploïde/S. triploïdie/S. triplure/S. tripode/S. tripodie/S. tripolaire/S. tripoli/S. triporteur/S. tripot/S. tripotage/S. tripoter/a0a+() tripoteuse/F.() tripous tripoux triptyque/S. trique/S. triqueballe/S. triquer/a0a+() triquet/S. trirectangle/S. trirègne/S. trirème/S. trisaïeule/F.() trisaïeux trisannuelle/F.() trisection/S. trisectrice/F.() triséquer/c0a+() trisme/S. trismégiste/S. trismus trisoc/S. trisodique/S. trisomie/S. trisomique/S. trisser/a0a+() triste/S. tristement tristesse/S. tristounette/F.() trisyllabe/S. trisyllabique/S. triterpène/S. trithérapie/S. triticale/S. tritium/S. triton/S. triturable/S. triturateur/S. trituration/S. triturer/a0a+() triumvir/S. triumvirale/W.() triumvirat/S. trivalence/S. trivalente/F.() trivalve/S. triviale/W.() trivialement trivialisable/S. trivialisation/S. trivialité/S. troc/S. trocart/S. trochaïque/S. trochanter/S. troche/S. trochée/S. trochet/S. trochile/S. trochin/S. trochiter/S. trochlée/S. trochure/S. troène/S. troglobie/S. troglodyte/S. troglodytique/S. trogne/S. trognon/S. troïka/S. trois trois-deux trois-étoiles trois-huit troisième/S. troisièmement trois-mâts trois-points trois-quarts trois-quatre trois-six trôler/a0() troll/S. trolle/S. troller/a0() trolley/S. trolleybus trombe/S. trombidion/S. trombidiose/S. trombine/S. trombinoscope/S. tromblon/S. trombone/S. tromboniste/S. trommel/S. trompe/S. trompée/F.() trompe-la-mort trompe-l'œil tromper/a0a+() tromperie/S. trompeter/d0a+() trompette/S. trompette-des-morts trompettes-des-morts trompettiste/S. trompeuse/F.() trompeusement trompillon/S. tronc/S. troncation/S. troncature/S. tronche/S. tronchet/S. tronçon/S. tronconique/S. tronçonnage/S. tronçonnée/F.() tronçonnement/S. tronçonner/a0a+() tronçonneuse/F.() tronculaire/S. trône/S. trôner/a0() tronquée/F.() tronquer/a0a+() trop trope/S. tropézienne/F.() trophée/S. trophique/S. trophoblaste/S. trophoblastique/S. trophomicrobienne/F.() tropicale/W.() tropicalisation/S. tropicaliser/a0a+() tropique/S. tropisme/S. tropopause/S. troposphère/S. troposphérique/S. trop-perçu/S. trop-plein/S. troquée/F.() troquer/a0a+() troquet/S. troqueuse/F.() trot/S. trotskisme/S. trotskiste/S. trottante/F.() trotte/S. trotter/a0a+() trotteuse/F.() trottin/S. trottinante/F.() trottinement/S. trottiner/a0() trottinette/S. trottoir/S. trou/S. troubade/S. troubadour/S. troublante/F.() trouble/S. troubleau/X. troublée/F.() trouble-fête/S. troubler/a0a+() trouée/F.() trouée/S. trouer/a0a+() troufignon/S. troufion/S. trouillarde/F.() trouille/S. trouillomètre/S. trouilloter/a0() trou-madame troupe/S. troupeau/X. troupiale/S. troupier/S. trous-madame troussage/S. trousse/S. trousseau/X. troussée/F.() trousse-galant trousse-pet trousse-pète trousse-pied trousse-queue troussequin/S. troussequiner/a0a+() trousser/a0a+() trousseur/S. trou-trou/S. trouvable/S. trouvaille/S. trouvée/F.() trouver/a0a+() trouvère/S. trouveuse/F.() troyenne/F.() truandage/S. truande/F.() truander/a0a+() truanderie/S. truble/S. trublion/S. truc/S. trucage/S. truchement/S. trucidée/F.() trucider/a0a+() truck/S. trucmuche/S. truculence/S. truculente/F.() trudgeon/S. truelle/S. truellée/S. truffe/S. truffée/F.() truffer/a0a+() trufficulture/S. truffière/F.() truie/S. truisme/S. truite/S. truitée/F.() truiticulture/S. trullo/S. trumeau/X. truquage/S. truquée/F.() truquer/a0a+() truqueuse/F.() truquiste/S. trusquin/S. trusquiner/a0a+() trust/S. truster/a0a+() trusteur/S. trypanosome/S. trypanosomiase/S. trypsine/S. trypsinogène/S. tryptophane/S. tsar/S. tsarévitch/S. tsarine/S. tsarisme/S. tsariste/S. tsé-tsé t-shirt/S. tsigane/S. tsoin-tsoin tsoin-tsoin tss tss-tss tsunami/S. tuable/S. tuage/S. tuante/F.() tub/S. tubage/S. tubaire/S. tubarde/F.() tube/S. tuber/a0a+() tubéracée/F.() tubercule/S. tuberculeuse/W.() tuberculide/S. tuberculination/S. tuberculine/S. tuberculiner/a0a+() tuberculinique/S. tuberculinisation/S. tuberculiniser/a0a+() tuberculisation/S. tuberculiser/a0a+() tuberculose/S. tubéreuse/W.() tubériforme/S. tubérisation/S. tubérisée/F.() tubérosité/S. tubicole/S. tubifex tubipore/S. tubiste/S. tubulaire/S. tubule/S. tubulée/F.() tubuleuse/W.() tubuliflore/S. tubuline/S. tubulure/S. tudesque/S. tudieu tue-chien tue-diable tuée/F.() tue-loup tue-mouche tuer/a0a+() tuerie/S. tue-tête tueuse/F.() tuf/S. tuffeau/X. tufière/F.() tuile/S. tuileau/X. tuilée/F.() tuiler/a0a+() tuilerie/S. tuilette/S. tuilière/F.() tularémie/S. tulipe/S. tulipier/S. tulle/S. tullerie/S. tullière/F.() tulliste/S. tuméfaction/S. tuméfiée/F.() tuméfier/a0a+() tumescence/S. tumescente/F.() tumeur/S. tumorale/W.() tumorothèque/S. tumulaire/S. tumulte/S. tumultueuse/W.() tumultueusement tumulus tune/S. tuner/S. tungar/S. tungstate/S. tungstène/S. tungstique/S. tunicelle/S. tuning/S. tunique/S. tuniquée/F.() tunisienne/F.() tunnel/S. tunnelier/S. tupaïa/S. tupie/F.() tupinambis tuple/S. tupperware/S. tuque/S. turban/S. turbe/S. turbé/S. turbeh/S. turbide/S. turbidité/S. turbin/S. turbinage/S. turbine/S. turbinée/F.() turbinelle/S. turbiner/a0a+() turbith/S. turbo turbo/S. turboagitateur/S. turboalternateur/S. turbocompresseur/S. turbofiltre/S. turbomachine/S. turbomoteur/S. turbopompe/S. turbopropulseur/S. turboréacteur/S. turbosoufflante/F.() turbot/S. turbotière/S. turbotin/S. turbotrain/S. turbulence/S. turbulente/F.() turbulette/S. turcique/S. turco/S. turco-mongole/F.() turcophone/S. turf/S. turfiste/S. turgescence/S. turgescente/F.() turgide/S. turion/S. turkmène/S. turlupiner/a0a+() turlurette/S. turlutaine/S. turlute/S. turluter/a0a+() turlutte/S. turlututu turlututu/S. turne/S. turnep/S. turnover/S. turonienne/F.() turpide/S. turpidement turpitude/S. turque/F.() turquerie/S. turquette/S. turquin/S. turquoise/S. turriculée/F.() turritelle/S. tussah/S. tussilage/S. tussor/S. tussore/S. tutélaire/S. tûteler/d0a+() tutelle/S. tûter/a0a+() tuteurage/S. tuteurer/a0a+() tuthie/S. tutoiement/S. tutorale/F.() tutorat/S. tutoriel/S. tutoyer/a0a+() tutoyeuse/F.() tutrice/F.() tutti tutu/S. tuyau/X. tuyautage/S. tuyautée/F.() tuyauter/a0a+() tuyauterie/S. tuyauteuse/F.() tuyère/S. tweed/S. twin-set/S. twist/S. twister/a0() tylenchus tympan/S. tympanal/X. tympanique/S. tympaniser/a0a+() tympanisme/S. tympanon/S. tyndallisation/S. type/S. typée/F.() typer/a0a+() typha/S. typhique/S. typhlite/S. typhoïde/S. typhoïdique/S. typhomycine/S. typhon/S. typhose/S. typhus typique/S. typiquement typiser/a0a+() typo/S. typochromie/S. typographe/S. typographie/S. typographiée/F.() typographier/a0a+() typographique/S. typographiquement typolithographie/S. typologie/S. typologique/S. typomètre/S. typon/S. typothèque/S. typtologie/S. tyran/S. tyranneau/X. tyrannicide/S. tyrannie/S. tyrannique/S. tyranniquement tyrannisée/F.() tyranniser/a0a+() tyrannosaure/S. tyrolienne/F.() tyrosine/S. tyrrhénienne/F.() tzigane/S. u u/||-- ua/||-- ubac/S*() ubérale/S*() ubiquité/S*() ubuesque/S*() ufologie/S*() ufologique/S*() ufologue/S*() ukrainienne/F*() ukulélé/S*() ulcération/S*() ulcérative/F*() ulcère/S*() ulcérée/F*() ulcérer/c4a+() ulcéreuse/W*() ulcéroïde/S*() uliginaire/S*() ulmaire/S*() ulmiste/S*() ulnaire/S*() ultérieure/F*() ultérieurement/D'Q' ultimatum/S*() ultime/S*() ultimement/D'Q' ultimo ultra/S*() ultracentrifugation/S*() ultra-chic/S*() ultracolonialisme/S*() ultracolonialiste/S*() ultracourte/F*() ultrafiltration/S*() ultrafiltre/S*() ultralibérale/W*() ultralibéralisme/S*() ultramarine/F*() ultramétrique/S*() ultramicroscope/S*() ultramicroscopie/S*() ultramicroscopique/S*() ultramoderne/S*() ultramontaine/F*() ultramontanisme/S*() ultraorthodoxe/S*() ultra-petita/D'Q' ultra-petita/L'D'Q' ultraponie/S*() ultraponique/S*() ultrapression/S*() ultrarésistante/F*() ultrarévolutionnaire/S*() ultraroyaliste/S*() ultrasensible/S*() ultrason/S*() ultrasonique/S*() ultraviolet/S*() ultraviolette/F*() ululement/S*() ululer/a1() ulve/S*() umlaut/S*() un/L'D'Q' unaire/S*() unanime/S*() unanimement/D'Q' unanimisme/S*() unanimiste/S*() unanimité/S*() unau/S*() unciforme/S*() uncinée/F*() underground/L'D'Q' underground/S*() une/L'D'Q' unes unetelle/S*() unguéale/W*() unguifère/S*() unguis/L'D'Q' uniate/S*() uniaxe/S*() unicaule/S*() unicellulaire/S*() unicité/S*() unicolore/S*() unicorne/S*() unidimensionnelle/F*() unidirectionnalité/S*() unidirectionnelle/F*() unie/F*() unième/S*() unièmement/D'Q' unifère/S*() unifiable/S*() unification/S*() unificatrice/F*() unifiée/F*() unifier/a4a+() unifilaire/S*() uniflore/S*() unifoliée/F*() uniforme/S*() uniformément/D'Q' uniformisante/F*() uniformisation/S*() uniformisée/F*() uniformiser/a2a+() uniformitarisme/S*() uniformité/S*() unijambiste/S*() unilatérale/W*() unilatéralement/D'Q' unilatéralisme/S*() unilatéralité/S*() unilinéaire/S*() unilingue/S*() unilobée/F*() uniloculaire/S*() uniment/D'Q' unimodulaire/S*() uninominale/W*() union/S*() unionisme/S*() unioniste/S*() unipare/S*() unipolaire/S*() unipotente/F*() unique/S*() uniquement/D'Q' unir/f4f+() unisexe/S*() unisexualité/S*() unisexuée/F*() unisson/S*() unitaire/S*() unitairement/D'Q' unitarienne/F*() unitarisme/S*() unitarité/S*() unité/S*() unitive/F*() univalence/S*() univalente/F*() univalve/S*() univers/L'D'Q' universalisation/S*() universalisée/F*() universaliser/a4a+() universalisme/S*() universaliste/S*() universalité/S*() universaux/D'Q' universelle/F*() universellement/D'Q' universitaire/S*() université/S*() univitelline/F*() univocité/S*() univoque/S*() univoquement/D'Q' uns untel/S*() ununhexium/S*() ununoctium/S*() ununpentium/S*() ununquadium/S*() ununseptium/S*() ununtrium/S*() upas/L'D'Q' upérisation/S*() uppercut/S*() upsilon/L'D'Q' uracile/S*() uraète/S*() uræus/L'D'Q' uranate/S*() urane/S*() uranie/S*() uranifère/S*() uraninite/S*() uranique/S*() uranisme/S*() uranium/S*() uranographie/S*() uranoplastie/S*() uranoscope/S*() uranyle/S*() urate/S*() urbaine/F*() urbanisation/S*() urbanisée/F*() urbaniser/a4a+() urbanisme/S*() urbaniste/S*() urbanistique/S*() urbanité/S*() urcéolée/F*() ure/S*() urédospore/S*() urée/S*() uréide/S*() urémie/S*() urémique/S*() urétérale/W*() uretère/S*() urétérite/S*() uréthane/S*() urétrale/W*() urètre/S*() urétrite/S*() urgemment/D'Q' urgence/S*() urgente/F*() urgentissime/S*() urgentiste/S*() urgentologue/S*() urger/a9() uricémie/S*() uridine/S*() urinaire/S*() urinal/X*() urine/S*() uriner/a2a+() urineuse/W*() urinifère/S*() urinoir/S*() urique/S*() urne/S*() urobiline/S*() urobilinogène/S*() urobilinurie/S*() urochrome/S*() urodèle/S*() uro-génitale/W*() urogénitale/W*() urographie/S*() urolagnie/S*() urologie/S*() urologique/S*() urologue/S*() uromètre/S*() uropode/S*() uropygiale/W*() uropygienne/F*() uroscopie/S*() uroscopique/S*() ursuline/S*() urticaire/S*() urticante/F*() urtication/S*() urticée/S*() urubu/S*() uruguayenne/F*() urus/L'D'Q' us/D'Q' usage/S*() usagée/F*() usagère/F*() usante/F*() usée/F*() user/a4a+() usinabilité/S*() usinage/S*() usine/S*() usinée/F*() usiner/a2a+() usinière/F*() usitée/F*() usnée/S*() ustensile/S*() usucapion/S*() usuelle/F*() usuellement/D'Q' usufructuaire/S*() usufruit/S*() usufruitière/F*() usuraire/S*() usurairement/D'Q' usure/S*() usurière/F*() usurpation/S*() usurpatoire/S*() usurpatrice/F*() usurpée/F*() usurper/a2a+() ut/L'D'Q' utérine/F*() utérus/L'D'Q' utile/S*() utilement/D'Q' utilisabilité/S*() utilisable/S*() utilisation/S*() utilisatrice/F*() utilisée/F*() utiliser/a2a+() utilitaire/S*() utilitarisme/S*() utilitariste/S*() utilité/S*() utopie/S*() utopique/S*() utopisme/S*() utopiste/S*() utriculaire/S*() utricule/S*() utriculeuse/W*() uvale/W*() uva-ursi/L'D'Q' uvée/S*() uvéite/S*() uvula/S*() uvulaire/S*() uvule/S*() uxorilocale/W*() v va vacance/S. vacancière/F.() vacante/F.() vacarme/S. vacataire/S. vacation/S. vaccaire/S. vaccin/S. vaccinable/S. vaccinale/W.() vaccination/S. vaccinatrice/F.() vaccine/S. vaccinée/F.() vaccinelle/S. vacciner/a0a+() vaccinide/S. vaccinier/S. vaccinifère/S. vaccinogène/S. vaccinoïde/S. vaccinostyle/S. vaccinothérapie/S. vacharde/F.() vache/S. vachement vachère/F.() vacherie/S. vacherin/S. vachette/S. vacillante/F.() vacillation/S. vacillement/S. vaciller/a0() vacive/S. vacuité/S. vacuolaire/S. vacuole/S. vacuolisation/S. vacuoliser/a0a+() vacuome/S. vacuum vade-mecum vadrouille/S. vadrouiller/a0() vadrouilleuse/F.() va-et-vient vagabondage/S. vagabonde/F.() vagabonder/a0() vagin/S. vaginale/W.() vaginisme/S. vaginite/S. vagir/f0() vagissante/F.() vagissement/S. vagolytique/S. vagotonie/S. vagotonique/S. vague/S. vaguelette/S. vaguement vaguemestre/S. vaguer/a0a+() vahiné/S. vaigrage/S. vaigre/S. vaillamment vaillance/S. vaillante/F.() vaillantie/S. vaincre/wP() vaincue/F.() vaine/F.() vainement vainqueur/S. vair/S. vairée/F.() vairon/S. vaironner/a0() vais/aB() vaisseau/X. vaisselier/S. vaisselle/S. val/S. valable/S. valablement valaque/S. valdinguer/a0() valence/S. valences-grammes valencienne/F.() valentine/F.() valentinite/S. valériane/S. valérianelle/S. valérianique/S. valet/S. valetaille/S. valeter/d0() valétudinaire/S. valeur/S. valeureuse/W.() valeureusement valgus validation/S. validatrice/F.() valide/S. validée/F.() validement valider/a0a+() validité/S. valine/S. valise/S. valiser/a0a+() valkyrie/S. vallée/S. valleuse/S. vallisnérie/S. vallon/S. vallonnée/F.() vallonnement/S. vallonner/a0a+() valoche/S. valoir/pM() valorem valorisable/S. valorisante/F.() valorisation/S. valoriser/a0a+() valouser/a0a+() valse/S. valse-hésitation valser/a0a+() valses-hésitations valseuse/F.() valuation/S. valvaire/S. valve/S. valvée/F.() valvulaire/S. valvule/S. vamp/S. vamper/a0a+() vampire/S. vampirique/S. vampirisée/F.() vampiriser/a0a+() vampirisme/S. van/S. vanadate/S. vanadinite/S. vanadique/S. vanadium/S. vanda/S. vandale/S. vandalisée/F.() vandaliser/a0a+() vandalisme/S. vandoise/S. vanesse/S. vanille/S. vanillée/F.() vanillier/S. vanilline/S. vanillisme/S. vanillon/S. vanité/S. vaniteuse/W.() vaniteusement vannage/S. vanne/S. vanneau/X. vannée/F.() vannelle/S. vanner/a0a+() vannerie/S. vanneuse/F.() vannière/F.() vannure/S. vantail/X. vantarde/F.() vantardise/S. vanter/a0a+() vanterie/S. va-nu-pieds vape/S. vapeur/S. vaporeuse/W.() vaporeusement vaporisage/S. vaporisateur/S. vaporisation/S. vaporisée/F.() vaporiser/a0a+() vaquer/a0() var/S. var/U.||-- varaigne/S. varan/S. varangue/S. varappe/S. varapper/a0() varappeuse/F.() varech/S. vareuse/S. varheure/S. varia variabilité/S. variable/S. variablement variance/S. variante/F.() variante/S. variateur/S. variation/S. variationnelle/F.() varice/S. varicelle/S. varicocèle/S. variée/F.() varier/a0a+() variétale/W.() variété/S. variole/S. variolée/F.() varioleuse/W.() variolique/S. variolisation/S. variorum variqueuse/W.() varistance/S. varlet/S. varlope/S. varloper/a0a+() varron/S. varus varve/S. vasarde/F.() vasculaire/S. vascularisation/S. vascularisée/F.() vascularite/S. vase/S. vasectomie/S. vaseline/S. vaseliner/a0a+() vaser/a9() vaseuse/W.() vasière/S. vasistas vasoconstriction/S. vasoconstrictrice/F.() vasodilatation/S. vasodilatatrice/F.() vasomotrice/F.() vasouillarde/F.() vasouiller/a0() vasque/S. vassale/W.() vassalisation/S. vassaliser/a0a+() vassalité/S. vassiveau/X. vaste/S. vastement vastité/S. vastitude/S. va-t-en-guerre vaticane/S. vaticanesque/S. vaticination/S. vaticinatrice/F.() vaticiner/a0() va-tout vau/X. vauchérie/S. vauclusienne/F.() vaudeville/S. vaudevillesque/S. vaudevilliste/S. vaudoise/F.() vaudou vau-l'eau vaurienne/F.() vautour/S. vautrée/F.() vautrer/a0a+() vauvert vavasseur/S. va-vite veau/X. vécés vectorielle/F.() vectorisation/S. vectrice/F.() vécu/S. vécue/F.() vedettariat/S. vedette/S. vedika/S. védique/S. védisme/S. végétal/X. végétale/W.() végétalienne/F.() végétalisation/S. végétalisée/F.() végétaliser/a0a+() végétalisme/S. végétaliste/S. végétarienne/F.() végétarisme/S. végétation/S. végétative/F.() végétativement végéter/c0() véhémence/S. véhémente/F.() véhémentement véhiculaire/S. véhicule/S. véhiculée/F.() véhiculer/a0a+() veille/S. veillée/S. veiller/a0a+() veilleuse/F.() veinarde/F.() veine/S. veinée/F.() veiner/a0a+() veinette/S. veineuse/W.() veinotonique/S. veinule/S. veinure/S. vêlage/S. vélaire/S. vélar/S. vélariser/a0a+() vélarium/S. velche/S. velcro/S. veld/S. vêlement/S. vêler/a0a+() vélie/S. vélin/S. véliplanchiste/S. vélique/S. vélite/S. vélivole/S. velléitaire/S. velléité/S. vélo/S. véloce/S. vélocement vélocimètre/S. vélocimétrie/S. vélocimétrique/S. vélocipède/S. vélocipédique/S. vélociraptor/S. vélocité/S. vélodrome/S. vélomoteur/S. vélo-pousse véloski/S. vélos-taxis velot/S. vélo-taxi velours velouté/S. veloutée/F.() veloutement/S. velouter/a0a+() velouteuse/W.() veloutier/S. veloutine/S. velte/S. velue/F.() vélum/S. velux venaison/S. vénale/W.() vénalement vénalité/S. venante/F.() vendable/S. vendange/S. vendangeoir/S. vendanger/a0a+() vendangerot/S. vendangette/S. vendangeuse/F.() vendéenne/F.() vendémiaire/S. vendetta/S. vendeuse/F.() vendre/tA() vendredi/S. vendue/F.() venelle/S. vénéneuse/W.() vénérable/S. vénérablement vénération/S. vénérée/F.() vénéréologie/S. vénérer/c0a+() vénéricarde/S. vénerie/S. vénérienne/F.() vénérologue/S. venet/S. venette/S. veneur/S. vénézuelienne/F.() vénézuélienne/F.() vengeance/S. vengée/F.() venger/a0a+() vengeresse/F.() vénielle/F.() véniellement venimeuse/W.() venimosité/S. venin/S. venir/i0i+() vénitienne/F.() vent/S. ventage/S. ventail/X. vente/S. ventée/F.() venter/a9() venteuse/W.() ventilateur/S. ventilation/S. ventilatoire/S. ventilée/F.() ventiler/a0a+() ventileuse/S. ventis ventôse/S. ventouse/S. ventouser/a0a+() ventrale/W.() ventralement ventre/S. ventrebleu ventrèche/S. ventrée/S. ventriculaire/S. ventricule/S. ventrière/S. ventriloque/S. ventriloquie/S. ventripotente/F.() ventrue/F.() venturi/S. venue/F.() venue/S. vénus vénusienne/F.() vénusté/S. vêpres ver/S. véracité/S. véraison/S. véranda/S. vératre/S. vératrine/S. verbale/W.() verbalement verbalisation/S. verbalisée/F.() verbaliser/a0a+() verbalisme/S. verbatim/S. verbe/S. verbénacée/S. verbeuse/W.() verbeusement verbiage/S. verbiager/a0() verbigération/S. verbomanie/S. verboquet/S. verbosité/S. verdage/S. verdâtre/S. verdelette/F.() verdet/S. verdeur/S. verdict/S. verdier/S. verdir/f0f+() verdissage/S. verdissement/S. verdoiement/S. verdoyante/F.() verdoyer/a0() verdunisation/S. verduniser/a0a+() verdure/S. vérétille/S. véreuse/W.() verge/S. vergée/F.() vergence/S. vergeoise/S. verger/S. verger/a0() vergerette/S. vergetée/F.() vergette/S. vergeture/S. vergeure/S. verglaçante/F.() verglacée/F.() verglacer/a9() verglas vergne/S. vergobret/S. vergogne/S. vergue/S. véridicité/S. véridique/S. véridiquement vérifiabilité vérifiable/S. vérification/S. vérificative/F.() vérificatrice/F.() vérifiée/F.() vérifier/a0a+() vérifieuse/F.() vérin/S. vérine/S. vérisme/S. vériste/S. véritable/S. véritablement vérité/S. verjus verjutée/F.() verjuter/a0a+() verlan/S. vermée/S. vermeille/F.() vermet/S. vermicelle/S. vermicide/S. vermiculaire/S. vermicule/S. vermiculée/F.() vermiculer/a0() vermiculure/S. vermiforme/S. vermifuge/S. vermiller/a0() vermillonne/F.() vermillonnée/F.() vermillonner/a0a+() vermine/S. vermineuse/W.() vermis vermisseau/X. vermouler/a0a+() vermoulue/F.() vermoulure/S. vermouth/S. vernaculaire/S. vernale/W.() vernalisation/S. vernation/S. vernie/F.() vernier/S. vernir/f0f+() vernis vernissage/S. vernissée/F.() vernisser/a0a+() vernisseuse/F.() vérole/S. vérolée/F.() véronal/S. véronique/S. verranne/S. verrat/S. verre/S. verrée/F.() verrerie/S. verrière/F.() verrine/S. verroterie/S. verrou/S. verrouillable/S. verrouillage/S. verrouillée/F.() verrouiller/a0a+() verrucosité/S. verrue/S. verruqueuse/W.() vers vers versaillaise/F.() versant/S. versante/F.() versatile/S. versatilité/S. verse/S. verseau/X. versée/F.() versement/S. verser/a0a+() verset/S. verseuse/F.() versicolore/S. versicule/S. versification/S. versificatrice/F.() versifier/a0a+() version/S. vers-librisme/S. vers-libriste/S. verso/S. versoir/S. verste/S. versus vert-de-gris vert-de-grisée/F.() verte/F.() vertébrale/W.() vertèbre/S. vertébrée/F.() vertement vertex verticale/W.() verticalement verticalité/S. verticille/S. verticillée/F.() vertige/S. vertigineuse/W.() vertigineusement vertigo/S. vertisol/S. vertu/S. vertubleu vertuchou vertueuse/W.() vertueusement vertugadin/S. verve/S. verveine/S. vervelle/S. verveuse/W.() vésanie/S. vesce/S. vésicale/W.() vésicante/F.() vésication/S. vésicatoire/S. vésiculaire/S. vésicule/S. vésiculeuse/W.() vespa/S. vespasienne/S. vespérale/W.() vespertilion/S. vespiste/S. vesse/S. vesse-de-loup vesser/a0() vesses-de-loup vessie/S. vessigon/S. vestale/S. veste/S. vestiaire/S. vestibulaire/S. vestibule/S. vestige/S. vestigiale/W.() vestimentaire/S. vestimentairement veston/S. vêtage/S. vêtement/S. vétéran/S. vétérance/S. vétérinaire/S. vétérotestamentaire/S. vétillarde/F.() vétille/S. vétiller/a0() vétilleuse/W.() vêtir/iG() vétiver/S. veto vêtue/F.() vêture/S. vétuste/S. vétusté/S. veuglaire/S. veule/S. veulerie/S. veuvage/S. veuve/F.() vévé/S. veveysanne/F.() vexante/F.() vexation/S. vexatoire/S. vexatrice/F.() vexée/F.() vexer/a0a+() vexillaire/S. vexille/S. vexillologie/S. vexillologue/S. vg/||-- via viabilisation/S. viabilisée/F.() viabiliser/a0a+() viabilité/S. viable/S. viaduc/S. viagère/F.() viande/S. viander/a0a+() viatique/S. vibord/S. vibrage/S. vibrance/S. vibrante/F.() vibraphone/S. vibraphoniste/S. vibrateur/S. vibratile/S. vibration/S. vibrationnelle/F.() vibrato/S. vibratoire/S. vibrer/a0a+() vibreur/S. vibrion/S. vibrionner/a0() vibrisse/S. vibromasseur/S. vicaire/S. vicariale/W.() vicariante/F.() vicariat/S. vice/S. vice-amiral/X. vice-chancelier/S. vice-consul/S. vice-consulat/S. vicelarde/F.() vice-légat/S. vice-légation/S. vicennale/W.() vice-première/F.() vice-présidence/S. vice-présidente/F.() vice-recteur/S. vice-reine/S. vice-roi/S. vice-royauté/S. vicésimale/W.() vice-versa vichy/S. vichyssoise/F.() vichyste/S. viciable/S. viciation/S. viciatrice/F.() viciée/F.() vicier/a0a+() vicieuse/W.() vicieusement vicinale/W.() vicinalité/S. vicissitude/S. vicomtale/W.() vicomté/S. vicomtesse/F.() victimaire/S. victime/S. victimisation/S. victimiser/a0a+() victimologie/S. victimologue/S. victoire/S. victoria/S. victorienne/F.() victorieuse/W.() victorieusement victuailles vidage/S. vidame/S. vidamie/S. vidange/S. vidangée/F.() vidanger/a0a+() vidangeur/S. vide/S. vidéaste/S. vide-bouteille/S. vide-cave/S. vidée/F.() videlle/S. vidéo/S. vidéocassette/S. vidéoclip/S. vidéoconférence/S. vidéodisque/S. vidéofréquence/S. vidéophonie/S. vidéoprojecteur/S. vidéoprojection/S. vide-ordures vidéosphère/S. vidéotex vidéothécaire/S. vidéothèque/S. vide-poche/S. vide-pomme/S. vider/a0a+() vide-tourie/S. videuse/F.() vide-vite vidimer/a0a+() vidimus vidoir/S. viduité/S. vidure/S. vie/S. vieil vieillarde/F.() vieille/S. vieillerie/S. vieillesse/S. vieillie/F.() vieillir/f0f+() vieillissante/F.() vieillissement/S. vieillotte/F.() vielle/S. vieller/a0() vielleuse/F.() vielleuse/W.() vielliste/S. viennoise/F.() viennoiserie/S. vierge/S. vietnamienne/F.() vieux vif-argent vigie/S. vigilamment vigilance/S. vigilante/F.() vigile/S. vigiler/a0a+() vigne/S. vigneau/X. vigneronne/F.() vignetage/S. vignettage/S. vignette/S. vignettiste/S. vigneture/S. vignoble/S. vignot/S. vigogne/S. vigoureuse/W.() vigoureusement viguerie/S. vigueur/S. viguier/S. viking/S. vilaine/F.() vilainement vilayet/S. vile/F.() vilebrequin/S. vilement vilené/S. vilenie/S. vilipendée/F.() vilipender/a0a+() villa/S. village/S. villageoise/F.() villanelle/S. ville/S. ville-champignon ville-dortoir villégiateur/S. villégiature/S. villégiaturer/a0() villes-champignons villes-dortoirs villosité/S. vin/S. vinage/S. vinaigre/S. vinaigrée/F.() vinaigrer/a0a+() vinaigrerie/S. vinaigrette/S. vinaigrier/S. vinaire/S. vinasse/S. vindicative/F.() vindicativement vindicte/S. viner/a0a+() vinette/S. vineuse/W.() vingt/S. vingtaine/S. vingt-cinq vingt-deux vingt-et-un vingt-huit vingtième/S. vingtièmement vingt-neuf vingt-quatre vingt-sept vingt-six vingt-trois vinicole/S. viniculture/S. vinifère/S. vinification/S. vinifier/a0a+() vinique/S. vinosité/S. vintage vintage/S. vinyle/S. vinylique/S. vinylite/S. vioc/S. viol/S. violacée/F.() violacer/a0a+() violat/S. violation/S. violâtre/S. violatrice/F.() viole/S. violée/F.() violemment violence/S. violente/F.() violentée/F.() violenter/a0a+() violer/a0a+() violette/F.() violette/S. violeuse/F.() violier/S. violine/S. violiste/S. violon/S. violoncelle/S. violoncelliste/S. violonée/F.() violoner/a0a+() violoneuse/W.() violoniste/S. vioque/S. vioquir/f0() viorne/S. vipère/S. vipéreau/X. vipérine/F.() virage/S. virago/S. virale/W.() virée/F.() virée/S. virelai/S. virement/S. virer/a0a+() virescence/S. vireton/S. vireuse/F.() vireuse/W.() virevoltante/F.() virevolter/a0() virginale/W.() virginie/S. virginité/S. virgule/S. virguler/a0a+() virile/F.() virilement virilisation/S. viriliser/a0a+() virilisme/S. virilité/S. virilocale/W.() virion/S. virolage/S. virole/S. virolée/F.() viroler/a0a+() virolier/S. virologie/S. virologiste/S. virologue/S. virophage/S. virose/S. virostatique/S. virtualisation/S. virtualiser/a0a+() virtualité/S. virtuelle/F.() virtuellement virtuose/S. virtuosité/S. virulence/S. virulente/F.() virure/S. virus visa/S. visage/S. visagiste/S. vis-à-vis viscache/S. viscérale/W.() viscéralement viscère/S. viscose/S. viscosimètre/S. viscosité/S. visée/F.() viser/a0a+() viseur/S. viseuse/W.() visibilité/S. visible/S. visiblement visière/S. visioconférence/S. vision/S. visionique/S. visionnage/S. visionnaire/S. visionnée/F.() visionnement/S. visionner/a0a+() visionneuse/F.() visiophone/S. visiophonie/S. visiophonique/S. visitandine/S. visitation/S. visite/S. visitée/F.() visiter/a0a+() visiteuse/F.() visnage/S. vison/S. visonnière/S. visqueuse/W.() vissage/S. vissée/F.() visser/a0a+() visserie/S. visseuse/S. visualisation/S. visualisée/F.() visualiser/a0a+() visualiseur/S. visuelle/F.() visuellement vitae vitæ vitale/W.() vitalisation/S. vitalisme/S. vitaliste/S. vitalité/S. vitamine/S. vitaminée/F.() vitaminique/S. vite vite/S. vitelline/F.() vitellus vitelotte/S. vitement vitesse/S. viticole/S. viticultrice/F.() viticulture/S. vitiligo/S. vitrage/S. vitrail/X. vitre/S. vitrée/F.() vitrer/a0a+() vitrerie/S. vitreuse/W.() vitrière/F.() vitrifiabilité/S. vitrifiable/S. vitrification/S. vitrificative/F.() vitrificatrice/F.() vitrifiée/F.() vitrifier/a0a+() vitrine/S. vitriol/S. vitriolage/S. vitriolée/F.() vitrioler/a0a+() vitrioleuse/F.() vitro vitrocéramique/S. vitulaire/S. vitupération/S. vitupératrice/F.() vitupérer/c0a+() vivable/S. vivace/S. vivacité/S. vivandière/F.() vivante/F.() vivarium/S. vivat/S. vive/F.() vivement vivendi viveuse/F.() vivier/S. vivifiante/F.() vivification/S. vivificatrice/F.() vivifiée/F.() vivifier/a0a+() vivipare/S. viviparité/S. vivisection/S. vivoter/a0() vivre/xSxT() vivrée/F.() vivres vivrière/F.() vizir/S. vizirat/S. vlan vocable/S. vocabulaire/S. vocale/W.() vocalement vocalique/S. vocalisation/S. vocalisatrice/F.() vocaliser/a0a+() vocalisme/S. vocaliste/S. vocatif/S. vocation/S. voceratrice/S. vocero/S. vociférante/F.() vocifération/S. vocifératrice/F.() vociférée/F.() vociférer/c0a+() vodka/S. vœu/X. vogoule/F.() vogoule/S. vogue/S. voguer/a0() voici voïévodie/S. voilà voilage/S. voile/S. voilée/F.() voilement/S. voiler/a0a+() voilerie/S. voilette/S. voilier/S. voilure/S. voir/pFpG() voire voirie/S. voisée/F.() voisement/S. voisinage/S. voisine/F.() voisiner/a0() voiturage/S. voiture/S. voiturer/a0a+() voiture-restaurant voitures-restaurants voiturette/S. voiturier/S. voiturin/S. voïvodat/S. voïvode/S. voïvodie/S. voix vol/S. volable/S. volage/S. volaille/S. volailler/S. volailleuse/F.() volante/F.() volapük/S. volatile/F.() volatile/S. volatilisable/S. volatilisation/S. volatilisée/F.() volatiliser/a0a+() volatilité/S. vol-au-vent volcan/S. volcanique/S. volcaniser/a0a+() volcanisme/S. volcanologie/S. volcanologique/S. volcanologue/S. volée/F.() volée/S. voler/a0a+() volerie/S. volet/S. voleter/d0() volettement/S. voleuse/F.() volière/S. voligeage/S. voliger/a0a+() volis volition/S. volitionnelle/F.() volitive/F.() volley/S. volley-ball/S. volleyer/a0() volleyeuse/F.() volontaire/S. volontairement volontariat/S. volontarisme/S. volontariste/S. volonté/S. volontiers volt/Um() voltage/S. voltaïque/S. voltaire/S. voltairianisme/S. voltairienne/F.() voltaïsation/S. voltamètre/S. voltampère/Um() volte-face volter/a0() voltige/S. voltigement/S. voltiger/a0() voltigeuse/F.() voltmètre/S. volubile/S. volubilement volubilis volubilité/S. volucelle/S. volucompteur/S. volume/S. volumétrie/S. volumétrique/S. volumineuse/W.() volumique/S. volupté/S. voluptuaire/S. voluptueuse/W.() voluptueusement volute/S. volvaire/S. volve/S. volvox volvulus vomer/S. vomérienne/F.() vomie/F.() vomique/S. vomiquier/S. vomir/f0f+() vomissement/S. vomissure/S. vomitive/F.() vomito/S. vomitoire/S. vomito-negro vorace/S. voracement voracité/S. vortex vorticelle/S. vos vosgienne/F.() votante/F.() votation/S. vote/S. voter/a0a+() votive/F.() votre vôtre/S. vouée/F.() vouer/a0a+() vouge/S. vouivre/S. vouloir/pB() voulue/F.() vous vous-même/S. vousseau/X. voussoiement/S. voussoir/S. voussoyer/a0a+() voussure/S. voûtain/S. voûte/S. voûtée/F.() voûter/a0a+() vouvoiement/S. vouvoyer/a0a+() voyage/S. voyager/a0() voyageuse/F.() voyagiste/S. voyance/S. voyante/F.() voyelle/S. voyer/S. voyeurisme/S. voyeuse/F.() voyou/S. voyoucratie/S. vrac vraie/F.() vraiment vraisemblable/S. vraisemblablement vraisemblance/S. vraquier/S. vreneli/S. vrillage/S. vrille/S. vrillée/F.() vrillement/S. vriller/a0a+() vrillette/S. vrombir/f0() vrombissante/F.() vrombissement/S. vs vu vue/F.() vulcain/S. vulcanales vulcanienne/F.() vulcanisable/S. vulcanisation/S. vulcaniser/a0a+() vulcanologie/S. vulcanologue/S. vulgaire/S. vulgairement vulganiser/a0a+() vulgarisation/S. vulgarisatrice/F.() vulgarisée/F.() vulgariser/a0a+() vulgarisme/S. vulgarité/S. vulgate/S. vulgo vulnérabilité/S. vulnérable/S. vulnéraire/S. vulnérante/F.() vulpin/S. vulvaire/S. vulve/S. w wading/S. wagage/S. wagnérienne/F.() wagon/S. wagon-bar wagon-citerne wagon-foudre wagon-lit wagonnée/S. wagonnet/S. wagonnette/S. wagonnier/S. wagon-poste wagon-réservoir wagon-restaurant wagon-salon wagons-bars wagons-citernes wagons-foudres wagons-lits wagons-poste wagons-réservoirs wagons-restaurants wagons-salons wagons-tombereaux wagons-trémies wagons-vannes wagon-tombereau wagon-trémie wagon-vanne wahhabisme/S. wahhabiste/S. wakizashi/S. walkies-talkies walkie-talkie walkman/S. walk-over walkyrie/S. wallaby/S. wallingante/F.() wallonisme/S. wallonne/F.() wapiti/S. wargame/S. warning/S. warrant/S. warrantage/S. warranter/a0a+() washingtonia/S. wassingue/S. water-ballast/S. water-closet/S. watergang/S. wateringue/S. water-polo/S. waterproof/S. waters watt/Um() wattheure/Um() wattman/S. wattmètre/S. web webcam/S. webcaméra/S. weber/Um() weblog/S. webmestre/S. webmestrie/S. webradio/S. webtélé/S. week-end/S. week-ender/a0() welche/S. wellingtonia/S. weltanschauung/S. welter/S. wergeld/S. western/S. westphalienne/F.() wharf/S. whig/S. whipcord/S. whisky/S. whist/S. white-spirit/S. widget/S. wi-fi wigwam/S. wiki/S. wilaya/S. williamine/S. winch/S. winchester/S. windsurf/S. wintergreen/S. wishbone/S. wisigothe/F.() wisigothique/S. witloof/S. wok/S. wolfram/S. wolophiser/a0a+() wombat/S. won/S. woofer/S. wormien/S. würmienne/F.() wyandotte/S. x xanthate/S. xanthélasma/S. xanthie/S. xanthine/S. xanthique/S. xanthoderme/S. xanthogénate/S. xanthogénique/S. xanthome/S. xanthophycée/S. xanthophylle/S. xanthopsie/S. xénarthre/S. xénélasie/S. xénocristal/X. xénogreffe/S. xénolite/S. xénolithe/S. xénon/S. xénophile/S. xénophilie/S. xénophobe/S. xénophobie/S. xéranthème/S. xérès xérodermie/S. xérographie/S. xérophile/S. xérophtalmie/S. xérus xi ximénie/S. xiphias xipho/S. xiphoïde/S. xiphoïdienne/F.() xiphophore/S. xylème/S. xylène/S. xylidine/S. xylocope/S. xylographe/S. xylographie/S. xylographique/S. xylophage/S. xylophone/S. xyste/S. y/Q'n'd'j'l'm't's' yacht/S. yacht-club/S. yachting/S. yachtman/S. yachtwoman/S. yailler/a2a+() yak/S. yang yankee/S. yaourt/S. yaourtière/S. yard/S. yatagan/S. yawl/S. yd/||-- yearling/S. yèble/S. yéménite/S. yen/S. yeoman/S. yeomanry/S. yéti/S. yeuse/S*() yeux/D' yé-yé yiddish yin ylangs-ylangs/D'Q' ylang-ylang/L'D'Q' yobibit/S. yobioctet/S. yod/S. yodiser/a2a+() yoga/S. yogi/S. yogourt/S. yohimbehe/S. yohimbine/S. yole/S. yoper/a2a+() yottabit/S. yottaoctet/S. yougoslave/S. youpi youpie youpine/F.() yourte/S. youyou/S. yo-yo yoyottante/F.() yoyotter/a1() ypérite/S*() ypréau/X*() ytterbine/S*() ytterbium/S*() yttria/S*() yttrialite/S*() yttrifère/S*() yttrique/S*() yttrium/S*() yuan/S. yucca/S. z zabre/S. zaibatsu/S. zain/S. zaïroise/F.() zakouski zamak/S. zambienne/F.() zancle/S. zani/S. zanzi/S. zanzibar/S. zaouïa/S. zapateado/S. zapatiste/S. zapper/a0a+() zappeuse/F.() zapping/S. zarabe/S. zarzuela/S. zaydite/S. zazoue/F.() zébibit/S. zébioctet/S. zèbre/S. zébrée/F.() zébrer/c0a+() zébrure/S. zébu/S. zée/S. zélandaise/F.() zélatrice/F.() zèle/S. zélée/F.() zellige/S. zélote/S. zemstvo/S. zen zenana/S. zende/F.() zénith/S. zénithale/W.() zénitude/S. zéolite/S. zéolithe/S. zéphyr/S. zéphyrienne/F.() zéphyrine/S. zeppelin/S. zéro/S. zérotage/S. zérumbet/S. zerver/a0a+() zeste/S. zester/a0a+() zêta zétète/S. zététicienne/F.() zététique/S. zettabit/S. zettaoctet/S. zeugma/S. zeugme/S. zeuzère/S. zézaiement/S. zézayer/a0() zibeline/S. ziber/a0a+() zidovudine/S. zieuter/a0a+() zig/S. ziggourat/S. zigoteau/X. zigoto/S. zigouillage/S. zigouillée/F.() zigouiller/a0a+() zigounette/S. zigue/S. ziguer/a0a+() zigzag/S. zigzagante/F.() zigzaguer/a0() zimbabwéenne/F.() zinc/S. zincage/S. zincate/S. zincifère/S. zincographie/S. zincogravure/S. zingage/S. zingara zingaro/S. zingue/S. zinguer/a0a+() zinguerie/S. zingueuse/F.() zinjanthrope/S. zinnia/S. zinzin/S. zinzinuler/a0() zinzoline/F.() zip/S. zippée/F.() zipper/a0a+() zircon/S. zircone/S. zirconite/S. zirconium/S. zizanie/S. zizi/S. zloty/S. zoanthaire/S. zoanthropie/S. zodiac/S. zodiacale/W.() zodiaque/S. zoé/S. zoïle/S. zombi/S. zombie/S. zona/S. zonage/S. zonale/W.() zonalité/S. zonarde/F.() zonation/S. zone/S. zonée/F.() zoner/a0a+() zonier/S. zoning/S. zonure/S. zonzonner/a0() zoo/S. zoogamète/S. zoogéographie/S. zooglée/S. zooïde/S. zoolâtre/S. zoolâtrie/S. zoolâtrique/S. zoolite/S. zoolithe/S. zoologie/S. zoologique/S. zoologiquement zoologiste/S. zoologue/S. zoom/S. zoomer/a0a+() zoomorphe/S. zoomorphisme/S. zoonose/S. zoopathie/S. zoophile/S. zoophilie/S. zoophobie/S. zoophore/S. zoophyte/S. zooplancton/S. zoopsie/S. zoosémiotique/S. zoosporange/S. zoospore/S. zootaxie/S. zootechnicienne/F.() zootechnie/S. zootechnique/S. zoothérapeute/S. zoothérapeutique/S. zoothérapie/S. zorille/S. zoroastrienne/F.() zoroastrisme/S. zostère/S. zostérienne/F.() zou zouave/S. zouaver/a0a+() zouk/S. zouker/a0() zouloue/F.() zozo/S. zozotement/S. zozoter/a0() zucchette/S. zuchette/S. zûner/a0() zurichoise/F.() zut zutique/S. zutiste/S. zwanze/S. zwanzer/a0() zwinglianisme/S. zyeuter/a0a+() zygène/S. zygoma/S. zygomatique/S. zygomorphe/S. zygomycète/S. zygopétale/S. zygote/S. zygotique/S. zyklon/S. zymase/S. zymotechnie/S. zymotique/S. zython/S. zythum/S. µR/||-- µas/||-- α β γ δ ε ζ η θ ι κ λ μ ν ξ ο π ρ σ τ υ φ χ ψ ω Ω/U.||-- ================================================ FILE: docs/build.md ================================================ # Build This page is also available in [Japanese](https://github.com/BoostIO/Boostnote/blob/master/docs/jp/build.md), [Korean](https://github.com/BoostIO/Boostnote/blob/master/docs/ko/build.md), [Russain](https://github.com/BoostIO/Boostnote/blob/master/docs/ru/build.md), [Traditional Chinese](https://github.com/BoostIO/Boostnote/blob/master/docs/zh_TW/build.md), [Simplified Chinese](https://github.com/BoostIO/Boostnote/blob/master/docs/zh_CN/build.md), [French](https://github.com/BoostIO/Boostnote/blob/master/docs/fr/build.md), [Portuguese](https://github.com/BoostIO/Boostnote/blob/master/docs/pt_BR/build.md) and [German](https://github.com/BoostIO/Boostnote/blob/master/docs/de/build.md). ## Environments - npm: 6.x - node: 8.x ## Development We use Webpack HMR to develop Boostnote. Running the following commands, at the top of the project directory, will start Boostnote with the default configurations. Install the required packages using yarn. ``` $ yarn ``` Build and run. ``` $ yarn run dev ``` > ### Notice > > There are some cases where you have to refresh the app manually. > > 1. When editing a constructor method of a component > 2. When adding a new css class (similar to 1: the CSS class is re-written by each component. This process occurs at the Constructor method.) ## Accessing code used in Pull Requests Visit the page for the pull request and look at the end of the url for the PR number
https://github.com/BoostIO/Boostnote/pull/2794
In the following, replace \ with that number (no brackets). For URLs below, you would replace \ with 2794 _If you do not have a local copy of the master branch yet_ ``` git clone https://github.com/BoostIO/Boostnote.git cd Boostnote git fetch origin pull//head: git checkout ``` _If you already have the master branch_ ``` git fetch origin pull//head: git checkout ``` _To compile and run the code_ ``` yarn yarn run dev ``` ## Deploy We use Grunt to automate deployment. You can build the program by using `grunt`. However, we don't recommend this because the default task includes codesign and authenticode. So, we've prepared a separate script which just makes an executable file. ``` grunt pre-build ``` You will find the executable in the `dist` directory. Note, the auto updater won't work because the app isn't signed. If you find it necessary, you can use codesign or authenticode with this executable. ## Make own distribution packages (deb, rpm) Distribution packages are created by exec `grunt build` on Linux platform (e.g. Ubuntu, Fedora). > Note: You can create both `.deb` and `.rpm` in a single environment. After installing the supported version of `node` and `npm`, install build dependency packages. ``` $ yarn add --dev grunt-electron-installer-debian grunt-electron-installer-redhat ``` **Ubuntu/Debian:** ``` $ sudo apt-get install -y rpm fakeroot ``` **Fedora:** ``` $ sudo dnf install -y dpkg dpkg-dev rpm-build fakeroot ``` Then execute `grunt build`. ``` $ grunt build ``` > You will find `.deb` and `.rpm` in the `dist` directory. ================================================ FILE: docs/code_style.md ================================================ # Boostnote Code Style When submitting your PR, please make sure that your code is well tested and follow the code style of Boostnote. The code style of Boostnote is listed in [`.eslintrc`](.eslintrc). We also have additional code styles that is not mentioned in that file. ## Additional code styles ### Use ES6 Object Destructing Please use Object Destructing whenever it's possible. **Example**: Importing from library ```js // BAD import Code from 'library' const subCode = Code.subCode subCode() // GOOD import { subCode } from 'library' subCode() ``` **Example**: Extract data from react component state ``` // BAD

{this.state.name}

// GOOD const { name } = this.state

{name}

``` ### Use meaningful name This is actually not a "code style" but rather a requirement in every projects. Please name your variables carefully. **Example**: Naming callback function for event ```js // BAD

Name

// GOOD

Name

``` ### Don't write long conditional statement When writing a conditional statement, if it's too long, cut it into small meaningful variables. ```js // BAD if (note.type == 'markdown' && note.index == 2 && note.content.indexOf('string') != -1) // GOOD const isSecondMarkdownNote = note.type == 'markdown' && note.index == 2 const isNoteHasString = note.content.indexOf('string') != -1 if (isSecondMarkdownNote && isNoteHasString) ``` ### Use class property instead of class methods When writing React components, try to use class property instead of class methods. The reason for this is explained perfectly here: https://codeburst.io/use-class-properties-to-clean-up-your-classes-and-react-components-93185879f688 **Example**: ```js // BAD class MyComponent extends React.Component { myMethod () { // code goes here... } } // GOOD class MyComponent extends React.Component { myMethod = () => { // code goes here... } } ``` ## React Hooks Existing code will be kept class-based and will only be changed to functional components with hooks if it improves readability or makes things more reusable. For new components it's OK to use hooks with functional components but don't mix hooks & class-based components within a feature - just for code style / readability reasons. Read more about hooks in the [React hooks introduction](https://reactjs.org/docs/hooks-intro.html). ================================================ FILE: docs/de/build.md ================================================ # Build Diese Seite ist auch verfügbar in [Japanisch](https://github.com/BoostIO/Boostnote/blob/master/docs/jp/build.md), [Koreanisch](https://github.com/BoostIO/Boostnote/blob/master/docs/ko/build.md), [Russisch](https://github.com/BoostIO/Boostnote/blob/master/docs/ru/build.md), [Vereinfachtem Chinesisch](https://github.com/BoostIO/Boostnote/blob/master/docs/zh_CN/build.md), [Französisch](https://github.com/BoostIO/Boostnote/blob/master/docs/fr/build.md), [Portugiesisch](https://github.com/BoostIO/Boostnote/blob/master/docs/pt_BR/build.md) und [Deutsch](https://github.com/BoostIO/Boostnote/blob/master/docs/de/build.md). ## Umgebungen - npm: 6.x - node: 8.x ## Entwicklung Wir verwenden Webpack HMR für die Entwicklung von Boostnote. Durch Ausführen der folgenden Befehle, im root Verzeichnis des Projektes, wird Boostnote mit der Default Konfiguration gestartet. Installiere die nötigen Pakete unter Verwendung von yarn. ``` $ yarn ``` Bauen und Ausführen. ``` $ yarn run dev ``` > ### Notiz > > Es gibt einige Fälle bei denen die App manuell zu refreshen ist. > > 1. Wenn eine "constructor method" einer Komponente manuell editiert wird. > 2. Wenn eine neue CSS Klasse ergänzt wird (ähnlich wie 1: die CSS Klasse wird von jeder Komponenete neu geschrieben. Dieser Prozess passiert in der "Constructor method".) ## Deploy Wir verwenden Grunt um das Deployment zu automatisieren. Du kannst das Programm unter Verwendung von `grunt` bauen. Jedoch empfehlen wir das nicht denn der default task beinhaltet codesign und authenticode. Deshalb haben wir ein separates Script vorbereitet welches eine ausführbare Datei erstellt. ``` grunt pre-build ``` Du findest die ausführbare Datein in dem Verzeichnis `dist`. Beachte, der auto updater funktioniert nicht da die app nicht signiert ist. Wenn du es für notwendig erachtest, kannst du codesign or authenticode mit dieser ausführbaren Datei verwenden. ## Erstelle eigene Distributions Pakete (deb, rpm) Distributions Pakete können mittels `grunt build` auf Linux Plattformen (e.g. Ubuntu, Fedora) erstellt werden. > Beachte: Du kannst bei `.deb` and `.rpm` in der selben Umgebung erstellen. Nach der Installation der supporteten Version von `node` and `npm`, installiere auch build dependency packages. Ubuntu/Debian: ``` $ sudo apt-get install -y rpm fakeroot ``` Fedora: ``` $ sudo dnf install -y dpkg dpkg-dev rpm-build fakeroot ``` Dann führe `grunt build` aus. ``` $ grunt build ``` Du findest nun die `.deb` undd `.rpm` Pakete in dem `dist` Ordner. --- Special thanks: Translated by [gino909](https://github.com/gino909) ================================================ FILE: docs/de/debug.md ================================================ # How to debug Boostnote (Electron app) Diese Seite ist auch verfügbar in [Japanisch](https://github.com/BoostIO/Boostnote/blob/master/docs/jp/debug.md), [Koreanisch](https://github.com/BoostIO/Boostnote/blob/master/docs/ko/debug.md), [Russisch](https://github.com/BoostIO/Boostnote/blob/master/docs/ru/debug.md), [Vereinfachtem Chinesisch](https://github.com/BoostIO/Boostnote/blob/master/docs/zh_CN/debug.md), [Französisch](https://github.com/BoostIO/Boostnote/blob/master/docs/fr/debug.md), [Portugiesisch](https://github.com/BoostIO/Boostnote/blob/master/docs/pt_BR/debug.md) und [Deutsch](https://github.com/BoostIO/Boostnote/blob/master/docs/de/debug.md). Boostnote ist eine Electron App und basiert auf Chromium. Zum Entwicklen verwendest du am Besten die `Developer Tools` von Google Chrome verwenden. Diese kannst du ganz einfach im unter dem Menüpunkt `View` mit `Toggle Developer Tools` aktivieren: ![how_to_toggle_devTools](https://cloud.githubusercontent.com/assets/11307908/24343585/162187e2-127c-11e7-9c01-23578db03ecf.png) Die Anzeige der `Developer Tools` sieht in etwa so aus: ![Developer_Tools](https://cloud.githubusercontent.com/assets/11307908/24343545/eff9f3a6-127b-11e7-94cf-cb67bfda634a.png) ## Debugging Fehlermeldungen werden in der Regel in der `console` ausgegeben, die du über den gleichnamigen Reiter der `Developer Tools` anzeigen lassen kannst. Zum Debuggen kannst du beispielsweise über den `debugger` Haltepunkte im Code setzen. ![debugger](https://cloud.githubusercontent.com/assets/11307908/24343879/9459efea-127d-11e7-9943-f60bf7f66d4a.png) Du kannst aber natürlich auch die Art von Debugging verwenden mit der du am besten zurecht kommst. ## Referenz - [Official document of Google Chrome about debugging](https://developer.chrome.com/devtools) --- Special thanks: Translated by [gino909](https://github.com/gino909), [mdeuerlein](https://github.com/mdeuerlein) ================================================ FILE: docs/debug.md ================================================ # How to debug Boostnote (Electron app) This page is also available in [Japanese](https://github.com/BoostIO/Boostnote/blob/master/docs/jp/debug.md), [Korean](https://github.com/BoostIO/Boostnote/blob/master/docs/ko/debug.md), [Russain](https://github.com/BoostIO/Boostnote/blob/master/docs/ru/debug.md), [Simplified Chinese](https://github.com/BoostIO/Boostnote/blob/master/docs/zh_CN/debug.md), [French](https://github.com/BoostIO/Boostnote/blob/master/docs/fr/debug.md), [Portuguese](https://github.com/BoostIO/Boostnote/blob/master/docs/pt_BR/debug.md) and [German](https://github.com/BoostIO/Boostnote/blob/master/docs/de/debug.md). ## Debug with Google Chrome developer Tools Boostnote is an Electron app so it's based on Chromium; developers can use `Developer Tools` just like Google Chrome. You can toggle the `Developer Tools` like this: ![how_to_toggle_devTools](https://cloud.githubusercontent.com/assets/11307908/24343585/162187e2-127c-11e7-9c01-23578db03ecf.png) The `Developer Tools` will look like this: ![Developer_Tools](https://cloud.githubusercontent.com/assets/11307908/24343545/eff9f3a6-127b-11e7-94cf-cb67bfda634a.png) When errors occur, the error messages are displayed at the `console`. ### Debugging For example, you can use the `debugger` to set a breakpoint in the code like this: ![debugger](https://cloud.githubusercontent.com/assets/11307908/24343879/9459efea-127d-11e7-9943-f60bf7f66d4a.png) This is just an illustrative example, you should find a way to debug which fits your style. ### References - [Official document of Google Chrome about debugging](https://developer.chrome.com/devtools) ## Debug with Visual Studio Code 1. Install **[Debugger for Chrome](https://marketplace.visualstudio.com/items?itemName=msjsdiag.debugger-for-chrome 'Install Debugger for Chrome')** plugin for Visual Studio Code. Then restart it. 2. Pressing **Shift+Command+B** or running **Run Build Task** from the global **Terminal** menu, then pick the task named **Build Boostnote**. Or run `yarn run watch` from the terminal. 3. When above task is running, open **Debug view** in **Activity Bar** on the side of VS Code or use shortcut **Shift+Command+D**. 4. Select the configuration named **Boostnote All** from the **Debug configuration**, then click the green arrow button or press **F5** to start debugging. 5. Now you should find **Boostnote** is running. You will see two processes running, one named **Boostnote Main** and the other named **Boostnote Renderer**. Now you can set **debug breakpoints** in vscode. If you find your **breakpoints** is unverified, you need to switch to the appropriate process between **Boostnote Renderer** and **Boostnote Main**. ### References - [Electron application debugging](https://electronjs.org/docs/tutorial/application-debugging) - [Debugger for Chrome](https://marketplace.visualstudio.com/items?itemName=msjsdiag.debugger-for-chrome) ================================================ FILE: docs/fr/build.md ================================================ # Build Cette page est également disponible en [Anglais](https://github.com/BoostIO/Boostnote/blob/master/docs/build.md), [Japonais](https://github.com/BoostIO/Boostnote/blob/master/docs/jp/build.md), [Coréen](https://github.com/BoostIO/Boostnote/blob/master/docs/ko/build.md), [Russe](https://github.com/BoostIO/Boostnote/blob/master/docs/ru/build.md), [Chinois Simplifié](https://github.com/BoostIO/Boostnote/blob/master/docs/zh_CN/build.md), [Portugais](https://github.com/BoostIO/Boostnote/blob/master/docs/pt_BR/build.md) et en [Allemand](https://github.com/BoostIO/Boostnote/blob/master/docs/de/build.md) ## Environnements - npm: 6.x - node: 8.x ## Développement Webpack HMR est utilisé pour développer Boostnote. En utilisant les commandes suivantes à la racine du projet, cela va démarrer Boostnote avec les configurations par défaut. Installez les paquets requis à l'aide de `yarn`. ``` $ yarn ``` Build et start ``` $ yarn run dev ``` > ### Notice > > Il y a certains cas où vous voudrez relancer l'application manuellement. > > 1. Quand vous éditez la méthode constructeur dans un composant > 2. Quand vous ajoutez une nouvelle classe css. (Comme pour 1: la classe est réécrite pour chaque composant. Le process intervient dans la méthode constructeur) ## Déploiement On utilise Grunt pour le déploiement automatique. Vous pouvez build le programme en utilisant `grunt`. Cependant, nous ne recommandons pas cette méthode car la task par défaut inclut codesign et authenticode. Nous avons donc préparé un script séparé qui va rendre un fichier exécutable. ``` grunt pre-build ``` Vous trouverez l'exécutable dans le dossier `dist`. Note : l'auto updater ne marchera pas car l'application n'est pas signée. Si vous trouvez ça nécessaire, vous pouvez utiliser codesign ou authenticode avec cet exécutable. ## Faire un paquet (deb, rpm) Les paquets sont créés en exécutant `grunt build` sur une plateforme Linux (e.g. Ubuntu, Fedora). > Note: Vous pouvez créer à la fois un `.deb` et un `.rpm` dans un seul et même environnement. Après avoir installé la version supportée de `node` et de `npm`, installer les paquets de builds. Ubuntu/Debian: ``` $ sudo apt-get install -y rpm fakeroot ``` Fedora: ``` $ sudo dnf install -y dpkg dpkg-dev rpm-build fakeroot ``` Puis exécutez `grunt build`. ``` $ grunt build ``` Vous trouverez le `.deb` et le `.rpm` dans le dossier `dist`. ================================================ FILE: docs/fr/debug.md ================================================ # Comment débugger Boostnote (Application Electron) Cette page est également disponible en [Angalis](https://github.com/BoostIO/Boostnote/blob/master/docs/debug.md), [Japonais](https://github.com/BoostIO/Boostnote/blob/master/docs/jp/debug.md), [Coréen](https://github.com/BoostIO/Boostnote/blob/master/docs/ko/debug.md), [Russe](https://github.com/BoostIO/Boostnote/blob/master/docs/ru/debug.md), [Chinois Simplifié](https://github.com/BoostIO/Boostnote/blob/master/docs/zh_CN/debug.md) et en [Allemand](https://github.com/BoostIO/Boostnote/blob/master/docs/de/debug.md) Boostnote est une application Electron donc basée sur Chromium. Il est possible d'utiliser les `Developer Tools` comme dans Google Chrome. Vous pouvez utiliser les `Developer Tools` de la façon suivante : ![how_to_toggle_devTools](https://cloud.githubusercontent.com/assets/11307908/24343585/162187e2-127c-11e7-9c01-23578db03ecf.png) Les `Developer Tools` ressemblent à ça : ![Developer_Tools](https://cloud.githubusercontent.com/assets/11307908/24343545/eff9f3a6-127b-11e7-94cf-cb67bfda634a.png) Quand une erreur arrive, les messages d'erreurs sont affichés dans la `console`. ## Debugging Par exemple, vous pouvez utiliser le `debugger` pour placer un point d'arrêt dans le code de la façon suivante: ![debugger](https://cloud.githubusercontent.com/assets/11307908/24343879/9459efea-127d-11e7-9943-f60bf7f66d4a.png) C'est une façon comme une autre de faire, vous pouvez trouver une façon de débugger que vous trouverez plus adaptée. ## Références * [Documentation officiel de Google Chrome sur le debugging](https://developer.chrome.com/devtools) ================================================ FILE: docs/jp/build.md ================================================ # Build ## 環境 * npm: 6.x * node: 8.x ## 開発 Webpack HRMを使います。 Boostnoteの最上位ディレクトリにて以下のコマンドを実行して、 デフォルトの設定の開発環境を起動させます。 依存するパッケージをインストールします。 ``` $ yarn ``` ビルドして実行します。 ``` $ yarn run dev ``` > ### 注意 > 時々、直接リフレッシュをする必要があります。 > 1. コンポーネントのコンストラクタ関数を編集する場合 > 2. 新しいCSSクラスを追加する場合(1.の理由と同じ: CSSクラス名はコンポーネントごとに書きなおされますが、この作業はコンストラクタで行われます。) ## 配布 Gruntを使います。 実際の配布は`grunt`で実行できます。しかし、これにはCodesignとAuthenticodeを実行するタスクが含まれるので、使用しないでください。 代わりに、実行ファイルを作るスクリプトを用意しておきました。 ``` grunt pre-build ``` 実行ファイルは`dist`から見つかります。この場合、認証されていないため、自動アップデーターは使えません。 必要であれば、この実行ファイルからCodesignやAuthenticodeなどの署名ができます。 ## ディストリビューション用パッケージ (deb, rpm) ディストリビューション用パッケージはLinuxプラットフォーム(Ubuntu や Fedora)上で `grunt build` を実行する事で作成されます。 > 一つの環境で `.deb` と `.rpm` の両方を作成する事が出来ます。 対応するバージョンの `node` と `npm` をインストールした後、必要なパッケージをインストールします。 Ubuntu/Debian: ``` $ sudo apt-get install -y rpm fakeroot ``` Fedora: ``` $ sudo dnf install -y dpkg dpkg-dev rpm-build fakeroot ``` `grunt build` を実行します。 ``` $ grunt build ``` `.deb` と `.rpm` は `dist` 配下に作成されます。 ================================================ FILE: docs/jp/debug.md ================================================ # Boostnote(electronアプリケーション)のデバッグ方法について Boostnoteを作っているelectronはChromiumからできており、開発者は `Developer Tools`をGoogle Chromeと同じように使うことができます。 Developer Toolsの切り替え方法はこちらです: ![how_to_toggle_devTools](https://cloud.githubusercontent.com/assets/11307908/24343585/162187e2-127c-11e7-9c01-23578db03ecf.png) 実際のデベロッパーツールはこちらです: ![Developer_Tools](https://cloud.githubusercontent.com/assets/11307908/24343545/eff9f3a6-127b-11e7-94cf-cb67bfda634a.png) 何かエラーが起きた場合 `console`にエラーメッセージが表示されます。 ## デバッグ 例えば、 `debugger`をコード中にブレークポイントとして挟む方法があります。 ![debugger](https://cloud.githubusercontent.com/assets/11307908/24343879/9459efea-127d-11e7-9943-f60bf7f66d4a.png) ですがこれは一例にしか過ぎません。最もあなたに合うデバッグ方法を見つけた方がいいでしょう。 ## 参考 * [デバッグに関するGoogle Chromeの公式ドキュメント](https://developer.chrome.com/devtools) ================================================ FILE: docs/ko/build.md ================================================ # Build ## 환경 * npm: 6.x * node: 8.x ## 개발 개발에 있어서 Webpack HRM을 사용합니다. 다음과 같은 명령을 프로젝트 디렉토리에서 실행하면, 기본 설정을 사용 할 수 있습니다. 먼저, yarn을 이용해서 필요한 패키지들을 설치합니다. ``` $ yarn ``` 그 다음, 아래의 명령으로 빌드를 끝내고 자동적으로 어플리케이션을 실행합니다. ``` $ yarn run dev ``` > ### 주의 > 가끔 직접 리프레쉬를 해주어야 하는 경우가 있습니다. > 1. 콤포넌트의 컨스트럭터 함수를 수정할 경우 > 2. 새로운 CSS코드를 추가할 경우(1.과 같은 이유: CSS클래스는 콤포넌트마다 다시 만들어 지는데, 이 작업은 컨스트럭터에서 일어납니다.) ## Pull Request에 사용된 코드를 적용하는 방법 관련된 Pull request 페이지를 방문하여, url 스트링 마지막에 표기된 PR 번호를 확인합니다.
https://github.com/BoostIO/Boostnote/pull/2794
아래의 커맨드를 실행하면서, \ 대신에 위에서 확인한 번호를 입력합니다 (부등호 신호는 빼고 입력하세요). 위에 보여진 예시의 경우, \ 자리에 2794를 입력하면 됩니다. _본인의 로컬 컴퓨터에 마스터 브랜치가 복사되어 있지 않은 경우_ ``` git clone https://github.com/BoostIO/Boostnote.git cd Boostnote git fetch origin pull//head: git checkout ``` _이미 마스터 브랜치를 로컬 컴퓨터에 저장해둔 경우_ ``` git fetch origin pull//head: git checkout ``` _To compile and run the code_ ``` yarn yarn run dev ``` ## 배포 Boostnote에서는 배포 자동화를 위하여 그런트를 사용합니다. 실제 배포는 `grunt`로 실행할 수 있습니다. 하지만, 여기엔 Codesign과 Authenticode의 과정이 포함되어있기 때문에 사용 하셔선 안됩니다. 그래서, 실행파일만을 만드는 스크립트를 준비해 뒀습니다. ``` grunt pre-build ``` 실행 파일은 `dist`에서 찾을 수 있습니다. 이 경우, 인증이 되어있지 않기 때문에 업데이터는 사용할 수 없습니다. 필요로 하다면, 이 실행파일에 Codesign나 Authenticode등의 서명을 할 수 있습니다. ## 독자적인 배포판을 제작하는 방법 (deb, rpm) 배포판 패키지를 제작하려면 (우분투, 페도라 등) 리눅스 플랫폼에서 `grunt build` 커맨드를 실행하면 됩니다. > 참조: 동일한 환경에서 `.deb` 파일과 `.rpm` 파일을 모두 만들 수 있습니다. 지원되는 버전의 `node`와 `npm`을 설치한 다음, 빌드에 필요한 패키지를 설치합니다. 우분투/데비안 환경 (Ubuntu/Debian): ``` $ sudo apt-get install -y rpm fakeroot ``` 페도라 환경 (Fedora): ``` $ sudo dnf install -y dpkg dpkg-dev rpm-build fakeroot ``` 그 다음 `grunt build` 커맨드를 실행합니다. ``` $ grunt build ``` `dist` 디렉토리에 `.deb` 파일과 `.rpm` 파일이 새롭게 생성됩니다. ================================================ FILE: docs/ko/debug.md ================================================ # Boostnote의 디버그 방법(Electron app) ## 구글 크롬 Developer Tools를 사용한 디버깅 Boostnote는 Electron 애플리케이션이므로 Chromium위에서 작동합니다. 그렇기 때문에 개발자분들은 Google Chrome 브라우저에서 처럼 `Developer Tools`를 사용하실 수 있습니다. 다음과 같이 `Developer Tools`를 실행할 수 있습니다: ![how_to_toggle_devTools](https://cloud.githubusercontent.com/assets/11307908/24343585/162187e2-127c-11e7-9c01-23578db03ecf.png) `Developer Tools`는 다음과 같이 나타납니다: ![Developer_Tools](https://cloud.githubusercontent.com/assets/11307908/24343545/eff9f3a6-127b-11e7-94cf-cb67bfda634a.png) 에러가 발생할 때에는, 에러메시지가 `console`위에 표시 됩니다. ### 디버깅 예를들면 `debugger`를 사용하여 코드 안에서 다음과 같이 일시 정지지점을 설정할 수 있습니다: ![debugger](https://cloud.githubusercontent.com/assets/11307908/24343879/9459efea-127d-11e7-9943-f60bf7f66d4a.png) 이는 단순한 하나의 예시에 불과합니다. 자기자신에게 가장 잘 맞는 디버그 방법을 찾는 것도 좋을 것 입니다. ### 참고 * [디버그에 관한 Google Chrome의 공식 문서](https://developer.chrome.com/devtools) ## 비주얼 스튜디오 코드를 사용한 디버깅 1. **[크롬 디버깅 플러그인](https://marketplace.visualstudio.com/items?itemName=msjsdiag.debugger-for-chrome 'Install Debugger for Chrome')** 을 비주얼 스튜디오 코드에 설치한 후, 프로그램을 닫았다가 재실행합니다. 2. **Shift+Command+B** 키를 누르거나, **Terminal** 메뉴 하단에 있는 **Run Build Task** 메뉴를 선택한 후 **Build Boostnote** 를 선택합니다. 아니면 터미널에서 곧바로 `yarn run watch`를 실행해도 됩니다. 3. 위의 절차가 실행되고 있을 때, 사이드바 **Activity Bar**에서 **Debug view**를 선택합니다. 키보드 단축키로는 **Shift+Command+D**를 눌러도 됩니다.. 4. **Debug configuration**에서 **Boostnote All** 설정을 선택한 후, 초록색 화살표를 클릭하거나 **F5** 키를 누르면 디버깅이 시작됩니다. 5. 이 시점에서는 **Boostnote**가 실행되고 있을 텐데, 두 개의 프로세스가 진행중인 것을 볼 수 있을 겁니다. 바로 **Boostnote Main** 프로세스와 **Boostnote Renderer** 프로세스입니다. 이제 비주얼 스튜디오 코드에서 곧바로 **디버깅 정지지점 (debug breakpoint)** 을 설정할 수 있습니다. 만약에 지정한 **정지지점 (breakpoint)** 이 등록되지 않는다면, **Boostnote Renderer** 와 **Boostnote Main** 프로세스 사이를 번갈아 확인해 보아야 합니다. ### 참고 - [일렉트론 애플리케이션 디버깅 공식 튜토리얼](https://electronjs.org/docs/tutorial/application-debugging) - [비쥬얼 스튜디오 코드용 크롬 디버깅 플러그인](https://marketplace.visualstudio.com/items?itemName=msjsdiag.debugger-for-chrome) ================================================ FILE: docs/pt_BR/build.md ================================================ # Build Esta página também está disponível em [Japônes](https://github.com/BoostIO/Boostnote/blob/master/docs/jp/build.md), [Coreano](https://github.com/BoostIO/Boostnote/blob/master/docs/ko/build.md), [Russo](https://github.com/BoostIO/Boostnote/blob/master/docs/ru/build.md), [Chinês simplificado](https://github.com/BoostIO/Boostnote/blob/master/docs/zh_CN/build.md), [Francês](https://github.com/BoostIO/Boostnote/blob/master/docs/fr/build.md) e [Alemão](https://github.com/BoostIO/Boostnote/blob/master/docs/de/build.md). ## Ambiente - npm: 6.x - node: 8.x ## Desenvolvimento Nós usamos o Webpack HMR para desenvolver o Boostnote. Ao executar os seguintes comandos no diretório raiz do projeto, o Boostnote será iniciado com as configurações padrão. Instala os pacotes necessários usando o yarn. ``` $ yarn ``` Gerar e iniciar. ``` $ yarn run dev ``` > ### Notice > > Existe alguns casos onde você precisa atualizar o app manualmente. > > 1. Quando editar um método construtor de um componente > 2. Quando adicionar uma nova classe de css (similiar ao 1: a classe do css é reescrita por cada componente. Esse processo ocorre através do método construtor) ## Deploy Nós usamos o Grunt para automatizar o desenvolvimento. Você pode gerar o programa usando `grunt`. Contudo, nós não recomendamos isso porque a tarefa padrão inclui _codedesign_ e _authenticode_. Então nós preparamos um _script_ separado, o qual somente cria um executável. ``` grunt pre-build ``` Você irá encontrar o executável na pasta `dist`. **Nota:** o atualizador automático não funciona porque o app não está certificado. Se você achar isto necessário, você pode usar o _codesign_ ou o _authenticode_ com esse executável. ## Faça seus próprios pacotes de distribuição (deb, rpm) Pacotes de distribuição são gerados através do comando `grunt build` em plataforma Linux (e.g. Ubuntu, Fedora). **Nota:** você pode criar `.deb` e `.rpm` em um mesmo ambiente. Depois de instalar uma versão suportada do `node` e do `npm`, deve-se instalar as dependências para gerar os pacotes. Ubuntu/Debian: ``` $ sudo apt-get install -y rpm fakeroot ``` Fedora: ``` $ sudo dnf install -y dpkg dpkg-dev rpm-build fakeroot ``` Então execute `grunt build`. ``` $ grunt build ``` Você vai encontrar o `.deb` e o `.rpm` na pasta`dist`. ================================================ FILE: docs/pt_BR/debug.md ================================================ # Como debugar Boostnote (app Electron) Esta página também está disponível em [Japônes](https://github.com/BoostIO/Boostnote/blob/master/docs/jp/debug.md), [Coreano](https://github.com/BoostIO/Boostnote/blob/master/docs/ko/debug.md), [Russo](https://github.com/BoostIO/Boostnote/blob/master/docs/ru/debug.md), [Chinês simplificado](https://github.com/BoostIO/Boostnote/blob/master/docs/zh_CN/debug.md), [Francês](https://github.com/BoostIO/Boostnote/blob/master/docs/fr/debug.md) e [Alemão](https://github.com/BoostIO/Boostnote/blob/master/docs/de/debug.md). ## Debugar com o Google Chrome developer Tools Boostnote é um app Electron, por isso ele é baseado no Chromium; desenvolvedores podem usar o `Developer Tools` igual no Google Chrome. Você pode habilitar e desabilitar o `Developer Tools` assim: ![how_to_toggle_devTools](https://cloud.githubusercontent.com/assets/11307908/24343585/162187e2-127c-11e7-9c01-23578db03ecf.png) O `Developer Tools` deve parecer assim: ![Developer_Tools](https://cloud.githubusercontent.com/assets/11307908/24343545/eff9f3a6-127b-11e7-94cf-cb67bfda634a.png) Quando erros acontecem, eles são apresentados na aba `console`. ### Debugando Por exemplo, você pode usar o `debugger` para adicionar um _breakpoint_ (ponto de parada) no código dessa forma: ![debugger](https://cloud.githubusercontent.com/assets/11307908/24343879/9459efea-127d-11e7-9943-f60bf7f66d4a.png) Isso é só um exemplo ilustrativo, mas você deve encontrar um jeito de debugar que encaixe no seu estilo. ### Referências - [Documentação do Google Chrome sobre como debugar](https://developer.chrome.com/devtools) ## Debugar com o Visual Studio Code (VS Code) 1. Instale o plugin **[Debugger for Chrome](https://marketplace.visualstudio.com/items?itemName=msjsdiag.debugger-for-chrome 'Instale o pacote Debugger for Chrome')** para Visual Studio Code. Então reinicie-o. 2. Pressione **Shift+Command+B** ou execute **Run Build Task** do menu global **Terminal**, então seleciona a task **Build Boostnote**. Ou execute `yarn run watch` no terminal. 3. Quando a task acima estiver rodando, abra o **Debug view** na **Activity Bar** no lado do seu VS Code ou use o atalho **Shift+Command+D**. 4. Selecione a configuração **Boostnote All** no **Debug configuration**, então clique na seta verde ou aperte **F5** para começar a debugar. 5. Agora você deve encontrar seu **Boostnote** rodando. Você vai ver dois processos rodando, um com nome de **Boostnote Main** e outro com nome de **Boostnote Renderer**. Agora você pode adicionar os **debug breakpoints** no vscode. Se os seus **breakpoints** não forem alertados você pode precisar altenrar entre os processos **Boostnote Renderer** e **Boostnote Main**. ### Referências - [Debugando uma aplicação Electron](https://electronjs.org/docs/tutorial/application-debugging) - [Debugger for Chrome](https://marketplace.visualstudio.com/items?itemName=msjsdiag.debugger-for-chrome) ================================================ FILE: docs/ru/build.md ================================================ # Сборка ## Используемые инструменты * npm: 6.x * node: 8.x ## Разработка Мы используем Webpack HMR при разработке Boostnote. Выполнение следующих команд в корне проекта запустит Boostnote с настройками по умолчанию. Установите необходимые пакеты с помощью yarn. ``` $ yarn ``` Соберите и запустите. ``` $ yarn run dev ``` > ### Примечание > В некоторых случаях вам необходимо обновить приложение вручную. > 1. При редактировании метода конструктора компонента > 2. При добавлении нового класса CSS (аналогично 1: Класс CSS перезаписывается каждым компонентом. Этот процесс выполняется в методе Constructor.) ## Деплой Мы используем Grunt для автоматического деплоя. Вы можете создать задачу, используя `grunt`. Однако мы не рекомендуем этого делать, так как задача по умолчанию включает в себя код и аутентификацию. Мы подготовили отдельный скрипт, который просто создает исполняемый файл. ``` grunt pre-build ``` Вы найдете исполняемый файл в папке `dist`. Обратите внимание: автоматическое обновление не будет работать, потому что приложение не подписано. Если вам необходимо, вы можете использовать код или аутентификацию с помощью этого исполняемого файла. --- Special thanks: Translated by @AlexanderBelkevich ================================================ FILE: docs/ru/debug.md ================================================ # Как отладить Boostnote (приложение Electron) Boostnote - это программа, сделанная с помощью Electron, поэтому она базируется на Chromium. Разработчики могут использовать `Developer Tools` в Google Chrome для отладки. Вы можете переключиться в `Developer Tools` следующим образом: ![how_to_toggle_devTools](https://cloud.githubusercontent.com/assets/11307908/24343585/162187e2-127c-11e7-9c01-23578db03ecf.png) `Developer Tools` будет выглядеть следующим образом: ![Developer_Tools](https://cloud.githubusercontent.com/assets/11307908/24343545/eff9f3a6-127b-11e7-94cf-cb67bfda634a.png) Возможные ошибки отображаются во вкладке `console`. ## Отладка Например, вы можете использовать `debugger`, чтобы установить точку остановы следующим образом: ![debugger](https://cloud.githubusercontent.com/assets/11307908/24343879/9459efea-127d-11e7-9943-f60bf7f66d4a.png) Это всего лишь пример. Вы можете использовать любой свой способ отладки. Тот, который вам будет удобен. ## Рекомендации * [Официальная документация Google Chrome об отладке](https://developer.chrome.com/devtools) --- Special thanks: Translated by @AlexanderBelkevich ================================================ FILE: docs/zh_CN/build.md ================================================ # 构建Boostnote ## 环境 * npm: 6.x * node: 8.x ## 开发 我们使用Webpack HMR来开发Boostnote。 在代码根目录下运行下列指令可以以默认配置运行Boostnote。 ### 首先使用yarn安装所需的依赖包。 ``` $ yarn ``` ### 接着编译并且运行Boostnote。 ``` $ yarn run dev ``` > ### 提示 > 在如下情况中,您可能需要重新运行Boostnote才能应用代码更改 > 1. 当您在修改了一个组件的构造函数的时候When editing a constructor method of a component > 2. 当您新建了一个CSS类的时候(其实这和第1项是相同的,因为每个CSS类都需在组件的构造函数中被重写) ## 部署 我们使用Grunt来自动部署Boostnote。 因为部署需要协同设计(codesign)与验证码(authenticode),所以您可以但我们不建议通过`grunt`来部署。 所以我们准备了一个脚本文件来生成执行文件。 ``` grunt pre-build ``` 接下来您就可以在`dist`目录中找到可执行文件。 > ### 提示 > 因为此可执行文件并没有被注册,所以自动更新不可用。 > 如果需要,您也可将协同设计(codesign)与验证码(authenticode)使用于这个可执行文件中。 ================================================ FILE: docs/zh_CN/debug.md ================================================ # 在Boostnote上Debug Boostnote基于Electron,所以Boostnote上的开发者工具和Google Chrome相同。 您可以像这样或者按下快捷键`Ctrl+Shift+I`打开开发者工具: ![how_to_toggle_devTools](https://cloud.githubusercontent.com/assets/11307908/24343585/162187e2-127c-11e7-9c01-23578db03ecf.png) 开发者工具大概形如这样: ![Developer_Tools](https://cloud.githubusercontent.com/assets/11307908/24343545/eff9f3a6-127b-11e7-94cf-cb67bfda634a.png) 您可以在`console`选项卡中找到运行错误, 也可以像这样在`debugger`选项卡中设置断点去分步Debug: ![debugger](https://cloud.githubusercontent.com/assets/11307908/24343879/9459efea-127d-11e7-9943-f60bf7f66d4a.png) 关于具体如何使用开发者工具,详见[Chrome 官档](https://developer.chrome.com/devtools)。(如果您在中国大陆,您可能需要一个VPN才能正常访问) ================================================ FILE: docs/zh_TW/build.md ================================================ # 編譯 此文件還提供下列的語言 [日文](https://github.com/BoostIO/Boostnote/blob/master/docs/jp/build.md), [韓文](https://github.com/BoostIO/Boostnote/blob/master/docs/ko/build.md), [俄文](https://github.com/BoostIO/Boostnote/blob/master/docs/ru/build.md), [簡體中文](https://github.com/BoostIO/Boostnote/blob/master/docs/zh_CN/build.md), [法文](https://github.com/BoostIO/Boostnote/blob/master/docs/fr/build.md), [葡萄牙](https://github.com/BoostIO/Boostnote/blob/master/docs/pt_BR/build.md) and [德文](https://github.com/BoostIO/Boostnote/blob/master/docs/de/build.md). ## 環境 - npm: 6.x - node: 8.x ## 開發 我們使用 Webpack HMR 來開發 Boostnote。 在專案根目錄底下執行下列指令,將會以原始設置啟動 Boostnote。 **用 yarn 來安裝必要 packages** ```bash $ yarn ``` **編譯及執行** ``` $ yarn run dev ``` > ### 注意 > > 以下是一些可能要手動重新啟動程式的情況。 > > 1. 修改一個 component 的 constructor 方法時。 > 2. 新增新的 CSS 類別時 (和 1 很類似:CSS 類別會被每個 component 重寫過。這個過程在 constructor 方法中發生)。 ## 使用 Pull Requests 中的程式碼 瀏覽 pull request 的頁面,從 URL 的後面找到 PR 號碼。
https://github.com/BoostIO/Boostnote/pull/2794
接著,於底下步驟中把 \ 換成這個號碼 (沒有括號)。 請將下方 URL 中的 \ 換置成 2794。 _如果您還未取得一份 master branch 的本地備份_ ``` git clone https://github.com/BoostIO/Boostnote.git cd Boostnote git fetch origin pull//head: git checkout ``` _如果您已經擁有了 master branch_ ``` git fetch origin pull//head: git checkout ``` _編譯及執行程式碼_ ``` yarn yarn run dev ``` ## 佈署 我們用 Grunt 做自動佈署。 您能使用 `grung` 建構本程式。然而,我們並不建議這麼做,因為預設工作流程包含了程式簽名以及 Authenticode 驗證。 所以,我們準備了一份額外的腳本用於建構可執行檔。 ``` grunt pre-build ``` 您可以在 `dist` 資料夾下找到可執行檔。注意,自動更新功能 (auto updater) 並不會生效,因為程式沒有被簽署過。 必要時您可以使用程式簽名或 authenticode 驗證執行檔。 ## 建立您自己的發行版套件 (deb, rpm) 發行版套件可以透過在 Linux 平台上 (如 Ubuntu, Fedora) 執行 `grunt build` 來建立。 > 注意:您可以在同個環境中同時建立 `.deb` 及`.rpm` 。 安裝支援版本的 `node` 和 `npm` 後,安裝編譯相依套件。 ``` $ yarn add --dev grunt-electron-installer-debian grunt-electron-installer-redhat ``` Ubuntu/Debian: ``` $ sudo apt-get install -y rpm fakeroot ``` Fedora: ``` $ sudo dnf install -y dpkg dpkg-dev rpm-build fakeroot ``` 接著執行 `grunt build`。 ``` $ grunt build ``` > 於 `dist` 資料夾下找到 `.deb` 及 `.rpm`。 ================================================ FILE: extra_scripts/boost/boostNewLineIndentContinueMarkdownList.js ================================================ (function (mod) { if (typeof exports === 'object' && typeof module === 'object') { // Common JS mod(require('../codemirror/lib/codemirror')) } else if (typeof define === 'function' && define.amd) { // AMD define(['../codemirror/lib/codemirror'], mod) } else { // Plain browser env mod(CodeMirror) } })(function (CodeMirror) { 'use strict' var listRE = /^(\s*)(>[> ]*|[*+-] \[[x ]\]\s|[*+-]\s|(\d+)([.)]))(\s*)/ var emptyListRE = /^(\s*)(>[> ]*|[*+-] \[[x ]\]|[*+-]|(\d+)[.)])(\s*)$/ var unorderedListRE = /[*+-]\s/ CodeMirror.commands.boostNewLineAndIndentContinueMarkdownList = function (cm) { if (cm.getOption('disableInput')) return CodeMirror.Pass var ranges = cm.listSelections() var replacements = [] for (var i = 0; i < ranges.length; i++) { var pos = ranges[i].head var eolState = cm.getStateAfter(pos.line) var inList = eolState.list !== false var inQuote = eolState.quote !== 0 var line = cm.getLine(pos.line) var match = listRE.exec(line) if (!ranges[i].empty() || (!inList && !inQuote) || !match || pos.ch < match[2].length - 1) { cm.execCommand('newlineAndIndent') return } if (emptyListRE.test(line)) { if (!/>\s*$/.test(line)) { cm.replaceRange('', { line: pos.line, ch: 0 }, { line: pos.line, ch: pos.ch + 1 }) } replacements[i] = '\n' } else { var indent = match[1] var after = match[5] var bullet = unorderedListRE.test(match[2]) || match[2].indexOf('>') >= 0 ? match[2].replace('x', ' ') : (parseInt(match[3], 10) + 1) + match[4] replacements[i] = '\n' + indent + bullet + after if (bullet) incrementRemainingMarkdownListNumbers(cm, pos) } } cm.replaceSelections(replacements) } // Auto-updating Markdown list numbers when a new item is added to the // middle of a list function incrementRemainingMarkdownListNumbers(cm, pos) { var startLine = pos.line, lookAhead = 0, skipCount = 0 var startItem = listRE.exec(cm.getLine(startLine)), startIndent = startItem[1] do { lookAhead += 1 var nextLineNumber = startLine + lookAhead var nextLine = cm.getLine(nextLineNumber), nextItem = listRE.exec(nextLine) if (nextItem) { var nextIndent = nextItem[1] var newNumber = (parseInt(startItem[3], 10) + lookAhead - skipCount) var nextNumber = (parseInt(nextItem[3], 10)), itemNumber = nextNumber if (startIndent === nextIndent && !isNaN(nextNumber)) { if (newNumber === nextNumber) itemNumber = nextNumber + 1 if (newNumber > nextNumber) itemNumber = newNumber + 1 cm.replaceRange( nextLine.replace(listRE, nextIndent + itemNumber + nextItem[4] + nextItem[5]), { line: nextLineNumber, ch: 0 }, { line: nextLineNumber, ch: nextLine.length }) } else { if (startIndent.length > nextIndent.length) return // This doesn't run if the next line immediatley indents, as it is // not clear of the users intention (new indented item or same level) if ((startIndent.length < nextIndent.length) && (lookAhead === 1)) return skipCount += 1 } } } while (nextItem) } }) ================================================ FILE: extra_scripts/codemirror/addon/edit/closebrackets.js ================================================ // CodeMirror, copyright (c) by Marijn Haverbeke and others // Distributed under an MIT license: https://codemirror.net/LICENSE (function(mod) { if (typeof exports == "object" && typeof module == "object") // CommonJS mod(require("../../lib/codemirror")); else if (typeof define == "function" && define.amd) // AMD define(["../../lib/codemirror"], mod); else // Plain browser env mod(CodeMirror); })(function(CodeMirror) { var defaults = { pairs: "()[]{}''\"\"", closeBefore: ")]}'\":;>", triples: "", explode: "[]{}" }; var Pos = CodeMirror.Pos; CodeMirror.defineOption("autoCloseBrackets", false, function(cm, val, old) { if (old && old != CodeMirror.Init) { cm.removeKeyMap(keyMap); cm.state.closeBrackets = null; } if (val) { ensureBound(getOption(val.markdown, "pairs")) cm.state.closeBrackets = val; cm.addKeyMap(keyMap); } }); function getOption(conf, name) { if (name == "pairs" && typeof conf == "string") return conf; if (typeof conf == "object" && conf[name] != null) return conf[name]; return defaults[name]; } var keyMap = {Backspace: handleBackspace, Enter: handleEnter}; function ensureBound(chars) { for (var i = 0; i < chars.length; i++) { var ch = chars.charAt(i), key = "'" + ch + "'" if (!keyMap[key]) keyMap[key] = handler(ch) } } ensureBound(defaults.pairs + "`") function handler(ch) { return function(cm) { return handleChar(cm, ch); }; } function getConfig(cm) { var cursor = cm.getCursor(); var token = cm.getTokenAt(cursor); var inCodeBlock = !!token.state.fencedEndRE; if (inCodeBlock) { return cm.state.closeBrackets.codeBlock } else { return cm.state.closeBrackets.markdown } } function handleBackspace(cm) { var conf = getConfig(cm); if (!conf || cm.getOption("disableInput")) return CodeMirror.Pass; var pairs = getOption(conf, "pairs"); var ranges = cm.listSelections(); for (var i = 0; i < ranges.length; i++) { if (!ranges[i].empty()) return CodeMirror.Pass; var around = charsAround(cm, ranges[i].head); if (!around || pairs.indexOf(around) % 2 != 0) return CodeMirror.Pass; } for (var i = ranges.length - 1; i >= 0; i--) { var cur = ranges[i].head; cm.replaceRange("", Pos(cur.line, cur.ch - 1), Pos(cur.line, cur.ch + 1), "+delete"); } } function handleEnter(cm) { var conf = getConfig(cm); var explode = conf && getOption(conf, "explode"); if (!explode || cm.getOption("disableInput")) return CodeMirror.Pass; var ranges = cm.listSelections(); for (var i = 0; i < ranges.length; i++) { if (!ranges[i].empty()) return CodeMirror.Pass; var around = charsAround(cm, ranges[i].head); if (!around || explode.indexOf(around) % 2 != 0) return CodeMirror.Pass; } cm.operation(function() { var linesep = cm.lineSeparator() || "\n"; cm.replaceSelection(linesep + linesep, null); cm.execCommand("goCharLeft"); ranges = cm.listSelections(); for (var i = 0; i < ranges.length; i++) { var line = ranges[i].head.line; cm.indentLine(line, null, true); cm.indentLine(line + 1, null, true); } }); } function contractSelection(sel) { var inverted = CodeMirror.cmpPos(sel.anchor, sel.head) > 0; return {anchor: new Pos(sel.anchor.line, sel.anchor.ch + (inverted ? -1 : 1)), head: new Pos(sel.head.line, sel.head.ch + (inverted ? 1 : -1))}; } function handleChar(cm, ch) { var conf = getConfig(cm); if (!conf || cm.getOption("disableInput")) return CodeMirror.Pass; var pairs = getOption(conf, "pairs"); var pos = pairs.indexOf(ch); if (pos == -1) return CodeMirror.Pass; var closeBefore = getOption(conf,"closeBefore"); var triples = getOption(conf, "triples"); var identical = pairs.charAt(pos + 1) == ch; var ranges = cm.listSelections(); var opening = pos % 2 == 0; var type; for (var i = 0; i < ranges.length; i++) { var range = ranges[i], cur = range.head, curType; var next = cm.getRange(cur, Pos(cur.line, cur.ch + 1)); if (opening && !range.empty()) { curType = "surround"; } else if ((identical || !opening) && next == ch) { if (identical && stringStartsAfter(cm, cur)) curType = "both"; else if (triples.indexOf(ch) >= 0 && cm.getRange(cur, Pos(cur.line, cur.ch + 3)) == ch + ch + ch) curType = "skipThree"; else curType = "skip"; } else if (identical && cur.ch > 1 && triples.indexOf(ch) >= 0 && cm.getRange(Pos(cur.line, cur.ch - 2), cur) == ch + ch) { if (cur.ch > 2 && /\bstring/.test(cm.getTokenTypeAt(Pos(cur.line, cur.ch - 2)))) return CodeMirror.Pass; curType = "addFour"; } else if (identical) { var prev = cur.ch == 0 ? " " : cm.getRange(Pos(cur.line, cur.ch - 1), cur) if (!CodeMirror.isWordChar(next) && prev != ch && !CodeMirror.isWordChar(prev)) curType = "both"; else return CodeMirror.Pass; } else if (opening && (next.length === 0 || /\s/.test(next) || closeBefore.indexOf(next) > -1)) { curType = "both"; } else { return CodeMirror.Pass; } if (!type) type = curType; else if (type != curType) return CodeMirror.Pass; } var left = pos % 2 ? pairs.charAt(pos - 1) : ch; var right = pos % 2 ? ch : pairs.charAt(pos + 1); cm.operation(function() { if (type == "skip") { cm.execCommand("goCharRight"); } else if (type == "skipThree") { for (var i = 0; i < 3; i++) cm.execCommand("goCharRight"); } else if (type == "surround") { var sels = cm.getSelections(); for (var i = 0; i < sels.length; i++) sels[i] = left + sels[i] + right; cm.replaceSelections(sels, "around"); sels = cm.listSelections().slice(); for (var i = 0; i < sels.length; i++) sels[i] = contractSelection(sels[i]); cm.setSelections(sels); } else if (type == "both") { cm.replaceSelection(left + right, null); cm.triggerElectric(left + right); cm.execCommand("goCharLeft"); } else if (type == "addFour") { cm.replaceSelection(left + left + left + left, "before"); cm.execCommand("goCharRight"); } }); } function charsAround(cm, pos) { var str = cm.getRange(Pos(pos.line, pos.ch - 1), Pos(pos.line, pos.ch + 1)); return str.length == 2 ? str : null; } function stringStartsAfter(cm, pos) { var token = cm.getTokenAt(Pos(pos.line, pos.ch + 1)) return /\bstring/.test(token.type) && token.start == pos.ch && (pos.ch == 0 || !/\bstring/.test(cm.getTokenTypeAt(pos))) } }); ================================================ FILE: extra_scripts/codemirror/addon/hyperlink/hyperlink.js ================================================ ;(function(mod) { if (typeof exports === 'object' && typeof module === 'object') { // Common JS mod(require('../codemirror/lib/codemirror')) } else if (typeof define === 'function' && define.amd) { // AMD define(['../codemirror/lib/codemirror'], mod) } else { // Plain browser env mod(CodeMirror) } })(function(CodeMirror) { 'use strict' const shell = require('electron').shell const remote = require('electron').remote const eventEmitter = { emit: function() { remote.getCurrentWindow().webContents.send.apply(null, arguments) } } const yOffset = 2 const macOS = global.process.platform === 'darwin' const modifier = macOS ? 'metaKey' : 'ctrlKey' class HyperLink { constructor(cm) { this.cm = cm this.lineDiv = cm.display.lineDiv this.onMouseDown = this.onMouseDown.bind(this) this.onMouseEnter = this.onMouseEnter.bind(this) this.onMouseLeave = this.onMouseLeave.bind(this) this.onMouseMove = this.onMouseMove.bind(this) this.tooltip = document.createElement('div') this.tooltipContent = document.createElement('div') this.tooltipIndicator = document.createElement('div') this.tooltip.setAttribute( 'class', 'CodeMirror-hover CodeMirror-matchingbracket CodeMirror-selected' ) this.tooltip.setAttribute('cm-ignore-events', 'true') this.tooltip.appendChild(this.tooltipContent) this.tooltip.appendChild(this.tooltipIndicator) this.tooltipContent.textContent = `${ macOS ? 'Cmd(⌘)' : 'Ctrl(^)' } + click to follow link` this.lineDiv.addEventListener('mousedown', this.onMouseDown) this.lineDiv.addEventListener('mouseenter', this.onMouseEnter, { capture: true, passive: true }) this.lineDiv.addEventListener('mouseleave', this.onMouseLeave, { capture: true, passive: true }) this.lineDiv.addEventListener('mousemove', this.onMouseMove, { passive: true }) } getUrl(el) { const className = el.className.split(' ') if (className.indexOf('cm-url') !== -1) { // multiple cm-url because of search term const cmUrlSpans = Array.from( el.parentNode.getElementsByClassName('cm-url') ) const textContent = cmUrlSpans.length > 1 ? cmUrlSpans.map(span => span.textContent).join('') : el.textContent const match = /^\((.*)\)|\[(.*)\]|(.*)$/.exec(textContent) const url = match[1] || match[2] || match[3] // `:storage` is the value of the variable `STORAGE_FOLDER_PLACEHOLDER` defined in `browser/main/lib/dataApi/attachmentManagement` return /^:storage(?:\/|%5C)/.test(url) ? null : url } return null } specialLinkHandler(e, rawHref, linkHash) { const isStartWithHash = rawHref[0] === '#' const extractIdRegex = /file:\/\/.*main.?\w*.html#/ // file://path/to/main(.development.)html const regexNoteInternalLink = new RegExp(`${extractIdRegex.source}(.+)`) if (isStartWithHash || regexNoteInternalLink.test(rawHref)) { const posOfHash = linkHash.indexOf('#') if (posOfHash > -1) { const extractedId = linkHash.slice(posOfHash + 1) const targetId = mdurl.encode(extractedId) const targetElement = document.getElementById(targetId) // this.getWindow().document.getElementById(targetId) if (targetElement != null) { this.scrollTo(0, targetElement.offsetTop) } return } } // this will match the new uuid v4 hash and the old hash // e.g. // :note:1c211eb7dcb463de6490 and // :note:7dd23275-f2b4-49cb-9e93-3454daf1af9c const regexIsNoteLink = /^:note:([a-zA-Z0-9-]{20,36})$/ if (regexIsNoteLink.test(linkHash)) { eventEmitter.emit('list:jump', linkHash.replace(':note:', '')) return } const regexIsLine = /^:line:[0-9]/ if (regexIsLine.test(linkHash)) { const numberPattern = /\d+/g const lineNumber = parseInt(linkHash.match(numberPattern)[0]) eventEmitter.emit('line:jump', lineNumber) return } // this will match the old link format storage.key-note.key // e.g. // 877f99c3268608328037-1c211eb7dcb463de6490 const regexIsLegacyNoteLink = /^(.{20})-(.{20})$/ if (regexIsLegacyNoteLink.test(linkHash)) { eventEmitter.emit('list:jump', linkHash.split('-')[1]) return } const regexIsTagLink = /^:tag:([\w]+)$/ if (regexIsTagLink.test(rawHref)) { const tag = rawHref.match(regexIsTagLink)[1] eventEmitter.emit('dispatch:push', `/tags/${encodeURIComponent(tag)}`) return } } onMouseDown(e) { const { target } = e if (!e[modifier]) { return } // Create URL spans array used for special case "search term is hitting a link". const cmUrlSpans = Array.from( e.target.parentNode.getElementsByClassName('cm-url') ) const innerText = cmUrlSpans.length > 1 ? cmUrlSpans.map(span => span.textContent).join('') : e.target.innerText const rawHref = innerText.trim().slice(1, -1) // get link text from markdown text if (!rawHref) return // not checked href because parser will create file://... string for [empty link]() const parser = document.createElement('a') parser.href = rawHref const { href, hash } = parser const linkHash = hash === '' ? rawHref : hash // needed because we're having special link formats that are removed by parser e.g. :line:10 this.specialLinkHandler(target, rawHref, linkHash) const url = this.getUrl(target) // all special cases handled --> other case if (url) { e.preventDefault() shell.openExternal(url) } } onMouseEnter(e) { const { target } = e const url = this.getUrl(target) if (url) { if (e[modifier]) { target.classList.add( 'CodeMirror-activeline-background', 'CodeMirror-hyperlink' ) } else { target.classList.add('CodeMirror-activeline-background') } this.showInfo(target) } } onMouseLeave(e) { if (this.tooltip.parentElement === this.lineDiv) { e.target.classList.remove( 'CodeMirror-activeline-background', 'CodeMirror-hyperlink' ) this.lineDiv.removeChild(this.tooltip) } } onMouseMove(e) { if (this.tooltip.parentElement === this.lineDiv) { if (e[modifier]) { e.target.classList.add('CodeMirror-hyperlink') } else { e.target.classList.remove('CodeMirror-hyperlink') } } } showInfo(relatedTo) { const b1 = relatedTo.getBoundingClientRect() const b2 = this.lineDiv.getBoundingClientRect() const tdiv = this.tooltip tdiv.style.left = b1.left - b2.left + 'px' this.lineDiv.appendChild(tdiv) const b3 = tdiv.getBoundingClientRect() const top = b1.top - b2.top - b3.height - yOffset if (top < 0) { tdiv.style.top = b1.top - b2.top + b1.height + yOffset + 'px' } else { tdiv.style.top = top + 'px' } } } CodeMirror.defineOption('hyperlink', true, cm => { const addon = new HyperLink(cm) }) }) ================================================ FILE: extra_scripts/codemirror/mode/bfm/bfm.css ================================================ .cm-table-row-even { background-color: rgb(242, 242, 242); } .cm-s-3024-day.CodeMirror .cm-table-row-even { background-color: rgb(238, 237, 237); } .cm-s-3024-night.CodeMirror .cm-table-row-even { background-color: rgb(30, 24, 21); } .cm-s-abcdef.CodeMirror .cm-table-row-even { background-color: rgb(36, 39, 37); } .cm-s-ambiance.CodeMirror .cm-table-row-even { background-color: rgb(242, 242, 242); } .cm-s-base16-dark.CodeMirror .cm-table-row-even { background-color: rgb(41, 41, 41); } .cm-s-base16-light.CodeMirror .cm-table-row-even { background-color: rgb(234, 234, 234); } .cm-s-bespin.CodeMirror .cm-table-row-even { background-color: rgb(52, 45, 40); } .cm-s-blackboard.CodeMirror .cm-table-row-even { background-color: rgb(36, 39, 55); } .cm-s-cobalt.CodeMirror .cm-table-row-even { background-color: rgb(26, 56, 83); } .cm-s-colorforth.CodeMirror .cm-table-row-even { background-color: rgb(25, 25, 25); } .cm-s-darcula.CodeMirror .cm-table-row-even { background-color: rgb(56, 57, 59); } .cm-s-dracula.CodeMirror .cm-table-row-even { background-color: rgb(61, 63, 73); } .cm-s-duotone-dark.CodeMirror .cm-table-row-even { background-color: rgb(49, 45, 60); } .cm-s-duotone-light.CodeMirror .cm-table-row-even { background-color: rgb(246, 243, 238); } .cm-s-erlang-dark.CodeMirror .cm-table-row-even { background-color: rgb(26, 56, 83); } .cm-s-gruvbox-dark.CodeMirror .cm-table-row-even { background-color: rgb(55, 53, 51); } .cm-s-hopscotch.CodeMirror .cm-table-row-even { background-color: rgb(66, 58, 65); } .cm-s-isotope.CodeMirror .cm-table-row-even { background-color: rgb(22, 22, 22); } .cm-s-lesser-dark.CodeMirror .cm-table-row-even { background-color: rgb(58, 58, 57); } .cm-s-liquibyte.CodeMirror .cm-table-row-even { background-color: rgb(26, 26, 26); } .cm-s-lucario.CodeMirror .cm-table-row-even { background-color: rgb(64, 81, 96); } .cm-s-material.CodeMirror .cm-table-row-even { background-color: rgb(58, 69, 74); } .cm-s-mbo.CodeMirror .cm-table-row-even { background-color: rgb(65, 65, 63); } .cm-s-midnight.CodeMirror .cm-table-row-even { background-color: rgb(34, 46, 63); } .cm-s-monokai.CodeMirror .cm-table-row-even { background-color: rgb(60, 61, 55); } .cm-s-neo.CodeMirror .cm-table-row-even { background-color: rgb(245, 245, 245); } .cm-s-night.CodeMirror .cm-table-row-even { background-color: rgb(34, 25, 53); } .cm-s-oceanic-next.CodeMirror .cm-table-row-even { background-color: rgb(68, 83, 89); } .cm-s-paraiso-dark.CodeMirror .cm-table-row-even { background-color: rgb(61, 45, 59); } .cm-s-paraiso-light.CodeMirror .cm-table-row-even { background-color: rgb(223, 224, 211); } .cm-s-pastel-on-dark.CodeMirror .cm-table-row-even { background-color: rgb(54, 51, 49); } .cm-s-railscasts.CodeMirror .cm-table-row-even { background-color: rgb(63, 63, 62); } .cm-s-rubyblue.CodeMirror .cm-table-row-even { background-color: rgb(41, 58, 73); } .cm-s-seti.CodeMirror .cm-table-row-even { background-color: rgb(40, 42, 43); } .cm-s-shadowfox.CodeMirror .cm-table-row-even { background-color: rgb(56, 56, 59); } .cm-s-the-matrix.CodeMirror .cm-table-row-even { background-color: rgb(0, 26, 0); } .cm-s-tomorrow-night-bright.CodeMirror .cm-table-row-even { background-color: rgb(23, 23, 23); } .cm-s-tomorrow-night-eighties.CodeMirror .cm-table-row-even { background-color: rgb(20, 20, 20); } .cm-s-twilight.CodeMirror .cm-table-row-even { background-color: rgb(43, 43, 43); } .cm-s-vibrant-ink.CodeMirror .cm-table-row-even { background-color: rgb(26, 26, 26); } .cm-s-xq-dark.CodeMirror .cm-table-row-even { background-color: rgb(34, 25, 53); } .cm-s-yeti.CodeMirror .cm-table-row-even { background-color: rgb(235, 232, 230); } .cm-s-solarized.cm-s-dark .cm-table-row-even { background-color: rgb(13, 54, 64); } .cm-s-solarized.cm-s-light .cm-table-row-even { background-color: rgb(245, 240, 222); } ================================================ FILE: extra_scripts/codemirror/mode/bfm/bfm.js ================================================ ;(function(mod) { if (typeof exports == 'object' && typeof module == 'object') // CommonJS mod( require('../codemirror/lib/codemirror'), require('../codemirror/mode/gfm/gfm'), require('../codemirror/mode/yaml-frontmatter/yaml-frontmatter') ) else if (typeof define == 'function' && define.amd) // AMD define([ '../codemirror/lib/codemirror', '../codemirror/mode/gfm/gfm', '../codemirror/mode/yaml-frontmatter/yaml-frontmatter' ], mod) // Plain browser env else mod(CodeMirror) })(function(CodeMirror) { 'use strict' const fencedCodeRE = /^(~~~+|```+)[ \t]*([\w+#-]+)?(?:\(((?:\s*\w[-\w]*(?:=(?:'(?:.*?[^\\])?'|"(?:.*?[^\\])?"|(?:[^'"][^\s]*)))?)*)\))?(?::([^:]*)(?::(\d+))?)?\s*$/ function getMode(name, params, config, cm) { if (!name) { return null } const parameters = {} if (params) { const regex = /(\w[-\w]*)(?:=(?:'(.*?[^\\])?'|"(.*?[^\\])?"|([^'"][^\s]*)))?/g let match while ((match = regex.exec(params))) { parameters[match[1]] = match[2] || match[3] || match[4] || null } } if (name === 'chart') { name = parameters.hasOwnProperty('yaml') ? 'yaml' : 'json' } const found = CodeMirror.findModeByName(name) if (!found) { return null } if (CodeMirror.modes.hasOwnProperty(found.mode)) { const mode = CodeMirror.getMode(config, found.mode) return mode.name === 'null' ? null : mode } else { CodeMirror.requireMode(found.mode, () => { cm.setOption('mode', cm.getOption('mode')) }) } } CodeMirror.defineMode('bfm', function (config, baseConfig) { baseConfig.name = 'yaml-frontmatter' const baseMode = CodeMirror.getMode(config, baseConfig) return { startState: function() { return { baseState: CodeMirror.startState(baseMode), basePos: 0, baseCur: null, overlayPos: 0, overlayCur: null, streamSeen: null, fencedEndRE: null, inTable: false, rowIndex: 0 } }, copyState: function(s) { return { baseState: CodeMirror.copyState(baseMode, s.baseState), basePos: s.basePos, baseCur: null, overlayPos: s.overlayPos, overlayCur: null, fencedMode: s.fencedMode, fencedState: s.fencedMode ? CodeMirror.copyState(s.fencedMode, s.fencedState) : null, fencedEndRE: s.fencedEndRE, inTable: s.inTable, rowIndex: s.rowIndex } }, token: function(stream, state) { const initialPos = stream.pos if (state.fencedEndRE) { if (stream.match(state.fencedEndRE)) { state.fencedEndRE = null state.fencedMode = null state.fencedState = null stream.pos = initialPos } else if (state.fencedMode) { return state.fencedMode.token(stream, state.fencedState) } else { state.overlayCur = this.overlayToken(stream, state) state.overlayPos = stream.pos return state.overlayCur } } else { const match = stream.match(fencedCodeRE, true) if (match) { state.fencedEndRE = new RegExp(match[1] + '+ *$') state.fencedMode = getMode(match[2], match[3], config, stream.lineOracle.doc.cm) if (state.fencedMode) { state.fencedState = CodeMirror.startState(state.fencedMode) } stream.pos = initialPos } } if (stream != state.streamSeen || Math.min(state.basePos, state.overlayPos) < stream.start) { state.streamSeen = stream state.basePos = state.overlayPos = stream.start } if (stream.start == state.basePos) { state.baseCur = baseMode.token(stream, state.baseState) state.basePos = stream.pos } if (stream.start == state.overlayPos) { stream.pos = stream.start state.overlayCur = this.overlayToken(stream, state) state.overlayPos = stream.pos } stream.pos = Math.min(state.basePos, state.overlayPos) if (state.overlayCur == null) { return state.baseCur } else if (state.baseCur != null && state.combineTokens) { return state.baseCur + ' ' + state.overlayCur } else { return state.overlayCur } }, overlayToken: function(stream, state) { state.combineTokens = false if (state.localMode) { return state.localMode.token(stream, state.localState) || '' } state.combineTokens = true if (state.inTable) { if (stream.match(/^\|/)) { ++state.rowIndex stream.skipToEnd() if (state.rowIndex === 1) { return 'table table-separator' } else if (state.rowIndex % 2 === 0) { return 'table table-row table-row-even' } else { return 'table table-row table-row-odd' } } else { state.inTable = false stream.skipToEnd() return null } } else if (stream.match(/^\|/)) { state.inTable = true state.rowIndex = 0 stream.skipToEnd() return 'table table-header' } stream.skipToEnd() return null }, electricChars: baseMode.electricChars, innerMode: function(state) { if (state.fencedMode) { return { mode: state.fencedMode, state: state.fencedState } } else { return { mode: baseMode, state: state.baseState } } }, blankLine: function(state) { state.inTable = false if (state.fencedMode) { return state.fencedMode.blankLine && state.fencedMode.blankLine(state.fencedState) } else { return baseMode.blankLine(state.baseState) } } } }, 'yaml-frontmatter') CodeMirror.defineMIME('text/x-bfm', 'bfm') CodeMirror.modeInfo.push({ name: 'Boost Flavored Markdown', mime: 'text/x-bfm', mode: 'bfm' }) }) ================================================ FILE: extra_scripts/codemirror/mode/gfm/gfm.js ================================================ // CodeMirror, copyright (c) by Marijn Haverbeke and others // Distributed under an MIT license: https://codemirror.net/LICENSE ;(function(mod) { if (typeof exports == 'object' && typeof module == 'object') // CommonJS mod( require('../codemirror/lib/codemirror'), require('../codemirror/mode/markdown/markdown'), require('../codemirror/addon/mode/overlay') ) else if (typeof define == 'function' && define.amd) // AMD define([ '../codemirror/lib/codemirror', '../codemirror/mode/markdown/markdown', '../codemirror/addon/mode/overlay' ], mod) // Plain browser env else mod(CodeMirror) })(function(CodeMirror) { 'use strict' var urlRE = /^((?:(?:aaas?|about|acap|adiumxtra|af[ps]|aim|apt|attachment|aw|beshare|bitcoin|bolo|callto|cap|chrome(?:-extension)?|cid|coap|com-eventbrite-attendee|content|crid|cvs|data|dav|dict|dlna-(?:playcontainer|playsingle)|dns|doi|dtn|dvb|ed2k|facetime|feed|file|finger|fish|ftp|geo|gg|git|gizmoproject|go|gopher|gtalk|h323|hcp|https?|iax|icap|icon|im|imap|info|ipn|ipp|irc[6s]?|iris(?:\.beep|\.lwz|\.xpc|\.xpcs)?|itms|jar|javascript|jms|keyparc|lastfm|ldaps?|magnet|mailto|maps|market|message|mid|mms|ms-help|msnim|msrps?|mtqp|mumble|mupdate|mvn|news|nfs|nih?|nntp|notes|oid|opaquelocktoken|palm|paparazzi|platform|pop|pres|proxy|psyc|query|res(?:ource)?|rmi|rsync|rtmp|rtsp|secondlife|service|session|sftp|sgn|shttp|sieve|sips?|skype|sm[bs]|snmp|soap\.beeps?|soldat|spotify|ssh|steam|svn|teamspeak|tel(?:net)?|tftp|things|thismessage|tip|tn3270|tv|udp|unreal|urn|ut2004|vemmi|ventrilo|view-source|webcal|wss?|wtai|wyciwyg|xcon(?:-userid)?|xfire|xmlrpc\.beeps?|xmpp|xri|ymsgr|z39\.50[rs]?):(?:\/{1,3}|[a-z0-9%])|www\d{0,3}[.]|[a-z0-9.\-]+[.][a-z]{2,4}\/)(?:[^\s()<>]|\([^\s()<>]*\))+(?:\([^\s()<>]*\)|[^\s`*!()\[\]{};:'".,<>?«»“”‘’]))/i CodeMirror.defineMode( 'gfm', function(config, modeConfig) { var codeDepth = 0 function blankLine(state) { state.code = false return null } var gfmOverlay = { startState: function() { return { code: false, codeBlock: false, ateSpace: false } }, copyState: function(s) { return { code: s.code, codeBlock: s.codeBlock, ateSpace: s.ateSpace } }, token: function(stream, state) { state.combineTokens = null // Hack to prevent formatting override inside code blocks (block and inline) if (state.codeBlock) { if (stream.match(/^```+/)) { state.codeBlock = false return null } stream.skipToEnd() return null } if (stream.sol()) { state.code = false } if (stream.sol() && stream.match(/^```+/)) { stream.skipToEnd() state.codeBlock = true return null } // If this block is changed, it may need to be updated in Markdown mode if (stream.peek() === '`') { stream.next() var before = stream.pos stream.eatWhile('`') var difference = 1 + stream.pos - before if (!state.code) { codeDepth = difference state.code = true } else { if (difference === codeDepth) { // Must be exact state.code = false } } return null } else if (state.code) { stream.next() return null } // Check if space. If so, links can be formatted later on if (stream.eatSpace()) { state.ateSpace = true return null } if (stream.sol() || state.ateSpace) { state.ateSpace = false if (modeConfig.gitHubSpice !== false) { if ( stream.match( /^(?:[a-zA-Z0-9\-_]+\/)?(?:[a-zA-Z0-9\-_]+@)?(?=.{0,6}\d)(?:[a-f0-9]{7,40}\b)/ ) ) { // User/Project@SHA // User@SHA // SHA state.combineTokens = true return 'link' } else if ( stream.match( /^(?:[a-zA-Z0-9\-_]+\/)?(?:[a-zA-Z0-9\-_]+)?#[0-9]+\b/ ) ) { // User/Project#Num // User#Num // #Num state.combineTokens = true return 'link' } } } if ( stream.match(urlRE) && stream.string.slice(stream.start - 2, stream.start) != '](' && (stream.start == 0 || /\W/.test(stream.string.charAt(stream.start - 1))) ) { // URLs // Taken from http://daringfireball.net/2010/07/improved_regex_for_matching_urls // And then (issue #1160) simplified to make it not crash the Chrome Regexp engine // And then limited url schemes to the CommonMark list, so foo:bar isn't matched as a URL state.combineTokens = true return 'link' } stream.next() return null }, blankLine: blankLine } var markdownConfig = { taskLists: true, strikethrough: true, emoji: true } for (var attr in modeConfig) { markdownConfig[attr] = modeConfig[attr] } markdownConfig.name = 'markdown' return CodeMirror.overlayMode( CodeMirror.getMode(config, markdownConfig), gfmOverlay ) }, 'markdown' ) CodeMirror.defineMIME('text/x-gfm', 'gfm') }) ================================================ FILE: extra_scripts/codemirror/theme/nord.css ================================================ /* Theme: nord */ .cm-s-nord.CodeMirror { color: #d8dee9; } .cm-s-nord.CodeMirror { background: #2e3440; } .cm-s-nord .CodeMirror-cursor { color: #d8dee9; border-color: #d8dee9; } .cm-s-nord .CodeMirror-activeline-background { background: #434c5e52 !important; } .cm-s-nord .CodeMirror-selected { background: undefined; } .cm-s-nord .cm-comment { color: #4c566a; } .cm-s-nord .cm-string { color: #a3be8c; } .cm-s-nord .cm-string-2 { color: #8fbcbb; } .cm-s-nord .cm-property { color: #8fbcbb; } .cm-s-nord .cm-qualifier { color: #8fbcbb; } .cm-s-nord .cm-tag { color: #81a1c1; } .cm-s-nord .cm-attribute { color: #8fbcbb; } .cm-s-nord .cm-number { color: #b48ead; } .cm-s-nord .cm-keyword { color: #81a1c1; } .cm-s-nord .cm-operator { color: #81a1c1; } .cm-s-nord .cm-error { background: #bf616a; color: #d8dee9; } .cm-s-nord .cm-invalidchar { background: #bf616a; color: #d8dee9; } .cm-s-nord .cm-variable { color: #d8dee9; } .cm-s-nord .cm-variable-2 { color: #8fbcbb; } .cm-s-nord .CodeMirror-gutters { background: #3b4252; color: #d8dee9; } ================================================ FILE: gruntfile.js ================================================ const fs = require('fs') const path = require('path') const ChildProcess = require('child_process') const packager = require('electron-packager') const WIN = process.platform === 'win32' module.exports = function(grunt) { var authCode try { authCode = grunt.file.readJSON('secret/auth_code.json') } catch (e) { if (e.origError.code === 'ENOENT') { console.warn( 'secret/auth_code.json is not found. CodeSigning is not available.' ) } } const OSX_COMMON_NAME = authCode != null ? authCode.OSX_COMMON_NAME : '' const WIN_CERT_PASSWORD = authCode != null ? authCode.WIN_CERT_PASSWORD : '' var initConfig = { pkg: grunt.file.readJSON('package.json'), 'create-windows-installer': { x64: { appDirectory: path.join(__dirname, 'dist', 'Boostnote-win32-x64'), outputDirectory: path.join(__dirname, 'dist'), authors: 'MAISIN&CO., Inc.', exe: 'Boostnote.exe', loadingGif: path.join(__dirname, 'resources/boostnote-install.gif'), iconUrl: path.join(__dirname, 'resources/app.ico'), setupIcon: path.join(__dirname, 'resources/dmg.ico'), certificateFile: path.join(__dirname, 'secret', 'authenticode_cer.p12'), certificatePassword: WIN_CERT_PASSWORD, noMsi: true } }, 'electron-installer-debian': { app: { options: { name: 'boostnote', productName: 'Boostnote', genericName: 'Boostnote', productDescription: 'The opensource note app for developers.', arch: 'amd64', categories: ['Development', 'Utility'], icon: path.join(__dirname, 'resources/app.png'), bin: 'Boostnote' }, src: path.join(__dirname, 'dist', 'Boostnote-linux-x64'), dest: path.join(__dirname, 'dist') } }, 'electron-installer-redhat': { app: { options: { name: 'boostnote', productName: 'Boostnote', genericName: 'Boostnote', productDescription: 'The opensource note app for developers.', arch: 'x86_64', categories: ['Development', 'Utility'], icon: path.join(__dirname, 'resources/app.png'), bin: 'Boostnote' }, src: path.join(__dirname, 'dist', 'Boostnote-linux-x64'), dest: path.join(__dirname, 'dist') } } } grunt.initConfig(initConfig) grunt.loadNpmTasks('grunt-electron-installer') if (!WIN) { grunt.loadNpmTasks('grunt-electron-installer-debian') grunt.loadNpmTasks('grunt-electron-installer-redhat') } grunt.registerTask('compile', function() { var done = this.async() var execPath = path.join('node_modules', '.bin', 'webpack') + ' --config webpack-production.config.js' grunt.log.writeln(execPath) ChildProcess.exec( execPath, { env: Object.assign({}, process.env, { BABEL_ENV: 'production', NODE_ENV: 'production' }) }, function(err, stdout, stderr) { grunt.log.writeln(stdout) if (err) { grunt.log.writeln(err) grunt.log.writeln(stderr) done(false) return } done() } ) }) grunt.registerTask('pack', function(platform) { grunt.log.writeln(path.join(__dirname, 'dist')) var done = this.async() var opts = { name: 'Boostnote', arch: 'x64', dir: __dirname, version: grunt.config.get('pkg.config.electron-version'), 'app-version': grunt.config.get('pkg.version'), 'app-bundle-id': 'com.maisin.boost', asar: false, prune: true, overwrite: true, out: path.join(__dirname, 'dist'), ignore: /node_modules\/ace-builds\/(?!src-min)|node_modules\/ace-builds\/(?=src-min-noconflict)|node_modules\/devicon\/icons|^\/browser|^\/secret|\.babelrc|\.gitignore|^\/\.gitmodules|^\/gruntfile|^\/readme.md|^\/webpack|^\/appdmg\.json|^\/node_modules\/grunt/ } switch (platform) { case 'win': Object.assign(opts, { platform: 'win32', icon: path.join(__dirname, 'resources/app.ico'), 'version-string': { CompanyName: 'MAISIN&CO., Inc.', LegalCopyright: '© 2015 MAISIN&CO., Inc. All rights reserved.', FileDescription: 'Boostnote', OriginalFilename: 'Boostnote', FileVersion: grunt.config.get('pkg.version'), ProductVersion: grunt.config.get('pkg.version'), ProductName: 'Boostnote', InternalName: 'Boostnote' } }) packager(opts, function(err, appPath) { if (err) { grunt.log.writeln(err) done(err) return } done() }) break case 'osx': Object.assign(opts, { platform: 'darwin', darwinDarkModeSupport: true, icon: path.join(__dirname, 'resources/app.icns'), 'app-category-type': 'public.app-category.developer-tools' }) packager(opts, function(err, appPath) { if (err) { grunt.log.writeln(err) done(err) return } done() }) break case 'linux': Object.assign(opts, { platform: 'linux', icon: path.join(__dirname, 'resources/app.icns'), 'app-category-type': 'public.app-category.developer-tools' }) packager(opts, function(err, appPath) { if (err) { grunt.log.writeln(err) done(err) return } done() }) break } }) grunt.registerTask('codesign', function(platform) { var done = this.async() if (process.platform !== 'darwin') { done(false) return } ChildProcess.exec( `codesign --verbose --deep --force --timestamp=none --sign \"${OSX_COMMON_NAME}\" dist/Boostnote-darwin-x64/Boostnote.app`, function(err, stdout, stderr) { grunt.log.writeln(stdout) if (err) { grunt.log.writeln(err) grunt.log.writeln(stderr) done(false) return } done() } ) }) grunt.registerTask('create-osx-installer', function() { var done = this.async() var execPath = 'appdmg appdmg.json dist/Boostnote-mac.dmg' grunt.log.writeln(execPath) ChildProcess.exec(execPath, function(err, stdout, stderr) { grunt.log.writeln(stdout) if (err) { grunt.log.writeln(err) grunt.log.writeln(stderr) done(false) return } done() }) }) grunt.registerTask('zip', function(platform) { var done = this.async() switch (platform) { case 'osx': var execPath = 'cd dist/Boostnote-darwin-x64 && zip -r -y -q ../Boostnote-mac.zip Boostnote.app' grunt.log.writeln(execPath) ChildProcess.exec(execPath, function(err, stdout, stderr) { grunt.log.writeln(stdout) if (err) { grunt.log.writeln(err) grunt.log.writeln(stderr) done(false) return } done() }) break default: done() return } }) function getTarget() { switch (process.platform) { case 'darwin': return 'osx' case 'win32': return 'win' case 'linux': return 'linux' default: return process.platform } } grunt.registerTask('build', function(platform) { if (platform == null) platform = getTarget() switch (platform) { case 'win': grunt.task.run(['compile', 'pack:win', 'create-windows-installer']) break case 'osx': grunt.task.run([ 'compile', 'pack:osx', 'codesign', 'create-osx-installer', 'zip:osx' ]) break case 'linux': grunt.task.run([ 'compile', 'pack:linux', 'electron-installer-debian', 'electron-installer-redhat' ]) break } }) grunt.registerTask('pre-build', function(platform) { if (platform == null) platform = getTarget() switch (platform) { case 'win': grunt.task.run(['compile', 'pack:win']) break case 'osx': grunt.task.run(['compile', 'pack:osx']) break case 'linux': grunt.task.run(['compile', 'pack:linux']) } }) grunt.registerTask('bfm', function() { const Color = require('color') const parseCSS = require('css').parse function generateRule(selector, bgColor, fgColor) { if (bgColor.isLight()) { bgColor = bgColor.mix(fgColor, 0.05) } else { bgColor = bgColor.mix(fgColor, 0.1) } if (selector && selector.length > 0) { return `${selector} .cm-table-row-even { background-color: ${bgColor .rgb() .string()}; }` } else { return `.cm-table-row-even { background-color: ${bgColor .rgb() .string()}; }` } } const root = path.join(__dirname, 'node_modules/codemirror/theme/') const colors = fs .readdirSync(root) .filter(file => file !== 'solarized.css') .map(file => { const css = parseCSS(fs.readFileSync(path.join(root, file), 'utf8')) const rules = css.stylesheet.rules.filter( rule => rule.selectors && /\b\.CodeMirror$/.test(rule.selectors[0]) ) if (rules.length === 1) { let bgColor = Color('white') let fgColor = Color('black') rules[0].declarations.forEach(declaration => { if ( declaration.property === 'background-color' || declaration.property === 'background' ) { bgColor = Color(declaration.value.split(' ')[0]) } else if (declaration.property === 'color') { const value = /^(.*?)(?:\s*!important)?$/.exec( declaration.value )[1] const match = /^rgba\((.*?),\s*1\)$/.exec(value) if (match) { fgColor = Color(`rgb(${match[1]})`) } else { fgColor = Color(value) } } }) return generateRule(rules[0].selectors[0], bgColor, fgColor) } }) .filter(value => !!value) // default colors.unshift(generateRule(null, Color('white'), Color('black'))) // solarized dark colors.push( generateRule( '.cm-s-solarized.cm-s-dark', Color('#002b36'), Color('#839496') ) ) // solarized light colors.push( generateRule( '.cm-s-solarized.cm-s-light', Color('#fdf6e3'), Color('#657b83') ) ) fs.writeFileSync( path.join(__dirname, 'extra_scripts/codemirror/mode/bfm/bfm.css'), colors.join('\n'), 'utf8' ) }) grunt.registerTask('default', ['build']) } ================================================ FILE: index.js ================================================ const { app } = require('electron') const ChildProcess = require('child_process') const path = require('path') var error = null function execMainApp() { const appRootPath = path.join(process.execPath, '../..') const updateDotExePath = path.join(appRootPath, 'Update.exe') const exeName = path.basename(process.execPath) function spawnUpdate(args, cb) { var stdout = '' var updateProcess = null try { updateProcess = ChildProcess.spawn(updateDotExePath, args) } catch (e) { process.nextTick(function() { cb(e) }) } updateProcess.stdout.on('data', function(data) { stdout += data }) updateProcess.on('error', function(_error) { error = _error }) updateProcess.on('close', function(code, signal) { if (code !== 0) { error = new Error('Command failed: #{signal ? code}') error.code = code error.stdout = stdout } cb(error, stdout) }) } var handleStartupEvent = function() { if (process.platform !== 'win32') { return false } var squirrelCommand = process.argv[1] switch (squirrelCommand) { case '--squirrel-install': spawnUpdate(['--createShortcut', exeName], function(err) { if (err) console.error(err) app.quit() }) return true case '--squirrel-updated': app.quit() return true case '--squirrel-uninstall': spawnUpdate(['--removeShortcut', exeName], function(err) { if (err) console.error(err) app.quit() }) return true case '--squirrel-obsolete': app.quit() return true } } if (handleStartupEvent()) { return } require('./lib/main-app') } execMainApp() ================================================ FILE: lib/ipcServer.js ================================================ const nodeIpc = require('node-ipc') const { app, Menu, globalShortcut, ipcMain } = require('electron') const path = require('path') const mainWindow = require('./main-window') nodeIpc.config.id = 'node' nodeIpc.config.retry = 1500 nodeIpc.config.silent = true function toggleMainWindow() { switch (global.process.platform) { case 'darwin': if (mainWindow.isFocused()) { Menu.sendActionToFirstResponder('hide:') } else { mainWindow.show() } return default: if (mainWindow.isFocused()) { mainWindow.minimize() } else { mainWindow.minimize() mainWindow.restore() } } } ipcMain.on('config-renew', (e, payload) => { nodeIpc.server.broadcast('config-renew', payload) globalShortcut.unregisterAll() var { config } = payload mainWindow.setMenuBarVisibility(config.ui.showMenuBar) var errors = [] try { globalShortcut.register(config.hotkey.toggleMain, toggleMainWindow) } catch (err) { errors.push('toggleMain') } if (!config.silent) { if (errors.length === 0) { mainWindow.webContents.send('APP_SETTING_DONE', {}) } else { mainWindow.webContents.send('APP_SETTING_ERROR', { message: 'Failed to apply hotkey: ' + errors.join(' ') }) } } }) nodeIpc.serve( path.join(app.getPath('userData'), 'boostnote.service'), function() { nodeIpc.server.on('connect', function(socket) { nodeIpc.log('ipc server >> socket joinned'.rainbow) socket.on('close', function() { nodeIpc.log('ipc server >> socket closed'.rainbow) }) }) nodeIpc.server.on('error', function(err) { nodeIpc.log('Node IPC error'.rainbow, err) }) } ) module.exports = nodeIpc ================================================ FILE: lib/main-app.js ================================================ const electron = require('electron') const app = electron.app const Menu = electron.Menu const ipc = electron.ipcMain const GhReleases = require('electron-gh-releases') const { isPackaged } = app const electronConfig = new (require('electron-config'))() // electron.crashReporter.start() const singleInstance = app.requestSingleInstanceLock() var ipcServer = null var mainWindow = null // Single Instance Lock if (!singleInstance) { app.quit() } else { app.on('second-instance', () => { // Someone tried to run a second instance, it should focus the existing instance. if (mainWindow) { if (!mainWindow.isVisible()) mainWindow.show() mainWindow.focus() } }) } var isUpdateReady = false let updateFound = false var ghReleasesOpts = { repo: 'BoostIO/boost-releases', currentVersion: app.getVersion() } const updater = new GhReleases(ghReleasesOpts) // Check for updates // `status` returns true if there is a new update available function checkUpdate(manualTriggered = false) { if (!isPackaged) { // Prevents app from attempting to update when in dev mode. console.log('Updates are disabled in Development mode, see main-app.js') return true } // End if auto updates disabled and it is an automatic check if (!electronConfig.get('autoUpdateEnabled', true) && !manualTriggered) return if (process.platform === 'linux' || isUpdateReady || updateFound) { return true } updater.check((err, status) => { if (err) { var isLatest = err.message === 'There is no newer version.' if (!isLatest) console.error('Updater error! %s', err.message) mainWindow.webContents.send( 'update-not-found', isLatest ? 'There is no newer version.' : 'Updater error' ) return } if (status) { mainWindow.webContents.send('update-found', 'Update available!') updateFound = true } }) } updater.on('update-downloaded', info => { if (mainWindow != null) { mainWindow.webContents.send('update-ready', 'Update available!') isUpdateReady = true updateFound = false } }) updater.autoUpdater.on('error', err => { console.error(err) }) ipc.on('update-app-confirm', function(event, msg) { if (isUpdateReady) { mainWindow.removeAllListeners() updater.install() } }) ipc.on('update-cancel', () => { updateFound = false }) ipc.on('update-download-confirm', () => { updater.download() }) app.on('window-all-closed', function() { app.quit() }) app.on('ready', function() { mainWindow = require('./main-window') var template = require('./main-menu') var menu = Menu.buildFromTemplate(template) var touchBarMenu = require('./touchbar-menu') switch (process.platform) { case 'darwin': Menu.setApplicationMenu(menu) mainWindow.setTouchBar(touchBarMenu) break case 'win32': mainWindow.setMenu(menu) break case 'linux': Menu.setApplicationMenu(menu) mainWindow.setMenu(menu) } // Check update every day setInterval(function() { if (isPackaged) checkUpdate() }, 1000 * 60 * 60 * 24) // Check update after 10 secs to prevent file locking of Windows setTimeout(() => { if (isPackaged) checkUpdate() ipc.on('update-check', function(event, msg) { if (isUpdateReady) { mainWindow.webContents.send('update-ready', 'Update available!') } else { checkUpdate(msg === 'manual') } }) }, 10 * 1000) ipcServer = require('./ipcServer') ipcServer.server.start() }) module.exports = app ================================================ FILE: lib/main-menu.js ================================================ const electron = require('electron') const BrowserWindow = electron.BrowserWindow const shell = electron.shell const ipc = electron.ipcMain const mainWindow = require('./main-window') const os = require('os') const macOS = process.platform === 'darwin' // const WIN = process.platform === 'win32' const LINUX = process.platform === 'linux' const boost = macOS ? { label: 'Boostnote', submenu: [ { label: 'About Boostnote', selector: 'orderFrontStandardAboutPanel:' }, { type: 'separator' }, { label: 'Preferences', accelerator: 'Command+,', click() { mainWindow.webContents.send('side:preferences') } }, { type: 'separator' }, { label: 'Hide Boostnote', accelerator: 'Command+H', selector: 'hide:' }, { label: 'Hide Others', accelerator: 'Command+Shift+H', selector: 'hideOtherApplications:' }, { label: 'Show All', selector: 'unhideAllApplications:' }, { type: 'separator' }, { label: 'Quit Boostnote', role: 'quit', accelerator: 'CommandOrControl+Q' } ] } : { label: 'Boostnote', submenu: [ { label: 'Preferences', accelerator: 'Control+,', click() { mainWindow.webContents.send('side:preferences') } }, { type: 'separator' }, { role: 'quit', accelerator: 'Control+Q' } ] } const file = { label: 'File', submenu: [ { label: 'New Note', accelerator: 'CommandOrControl+N', click() { mainWindow.webContents.send('top:new-note') } }, { label: 'Focus Note', accelerator: 'CommandOrControl+E', click() { mainWindow.webContents.send('detail:focus') } }, { label: 'Delete Note', accelerator: 'CommandOrControl+Shift+Backspace', click() { mainWindow.webContents.send('detail:delete') } }, { label: 'Clone Note', accelerator: 'CommandOrControl+D', click() { mainWindow.webContents.send('list:clone') } }, { type: 'separator' }, { label: 'Import from', submenu: [ { label: 'Plain Text, MarkDown (.txt, .md)', click() { mainWindow.webContents.send('import:file') } } ] }, { label: 'Export as', submenu: [ { label: 'Plain Text (.txt)', click() { mainWindow.webContents.send('list:isMarkdownNote', 'export-txt') mainWindow.webContents.send('export:save-text') } }, { label: 'MarkDown (.md)', click() { mainWindow.webContents.send('list:isMarkdownNote', 'export-md') mainWindow.webContents.send('export:save-md') } }, { label: 'HTML (.html)', click() { mainWindow.webContents.send('list:isMarkdownNote', 'export-html') mainWindow.webContents.send('export:save-html') } }, { label: 'PDF (.pdf)', click() { mainWindow.webContents.send('list:isMarkdownNote', 'export-pdf') mainWindow.webContents.send('export:save-pdf') } } ] }, { type: 'separator' }, { label: 'Generate/Update Markdown TOC', accelerator: 'Shift+Ctrl+T', click() { mainWindow.webContents.send('code:generate-toc') } }, { label: 'Format Table', click() { mainWindow.webContents.send('code:format-table') } }, { type: 'separator' }, { label: 'Print', accelerator: 'CommandOrControl+P', click() { mainWindow.webContents.send('list:isMarkdownNote', 'print') mainWindow.webContents.send('print') } }, { type: 'separator' }, { label: 'Update', click() { mainWindow.webContents.send('update') } }, { type: 'separator' } ] } if (LINUX) { file.submenu.push( { type: 'separator' }, { label: 'Preferences', accelerator: 'Control+,', click() { mainWindow.webContents.send('side:preferences') } }, { type: 'separator' }, { role: 'quit', accelerator: 'Control+Q' } ) } const edit = { label: 'Edit', submenu: [ { label: 'Undo', accelerator: 'Command+Z', selector: 'undo:' }, { label: 'Redo', accelerator: 'Shift+Command+Z', selector: 'redo:' }, { type: 'separator' }, { label: 'Cut', accelerator: 'Command+X', selector: 'cut:' }, { label: 'Copy', accelerator: 'Command+C', selector: 'copy:' }, { label: 'Paste', accelerator: 'Command+V', selector: 'paste:' }, { label: 'Select All', accelerator: 'Command+A', selector: 'selectAll:' }, { type: 'separator' }, { label: 'Add Tag', accelerator: 'CommandOrControl+Shift+T', click() { mainWindow.webContents.send('editor:add-tag') } } ] } const view = { label: 'View', submenu: [ { label: 'Reload', accelerator: 'CommandOrControl+R', click() { BrowserWindow.getFocusedWindow().reload() } }, { label: 'Toggle Developer Tools', accelerator: 'CommandOrControl+Alt+I', click() { BrowserWindow.getFocusedWindow().toggleDevTools() } }, { type: 'separator' }, { label: 'Next Note', accelerator: 'CommandOrControl+]', click() { mainWindow.webContents.send('list:next') } }, { label: 'Previous Note', accelerator: 'CommandOrControl+[', click() { mainWindow.webContents.send('list:prior') } }, { type: 'separator' }, { label: 'Focus Search', accelerator: 'CommandOrControl+Shift+L', click() { mainWindow.webContents.send('top:focus-search') } }, { type: 'separator' }, { label: 'Toggle Full Screen', accelerator: macOS ? 'Command+Control+F' : 'F11', click() { mainWindow.setFullScreen(!mainWindow.isFullScreen()) } }, { label: 'Toggle Side Bar', accelerator: 'CommandOrControl+B', click() { mainWindow.webContents.send('editor:fullscreen') } }, { label: 'Toggle Editor Orientation', click() { mainWindow.webContents.send('editor:orientation') } }, { type: 'separator' }, { label: 'Actual Size', accelerator: 'CommandOrControl+0', click() { mainWindow.webContents.send('status:zoomreset') } }, { label: 'Zoom In', accelerator: 'CommandOrControl+=', click() { mainWindow.webContents.send('status:zoomin') } }, { label: 'Zoom Out', accelerator: 'CommandOrControl+-', click() { mainWindow.webContents.send('status:zoomout') } } ] } let editorFocused // Define extra shortcut keys mainWindow.webContents.on('before-input-event', (event, input) => { // Synonyms for Search (Find) if (input.control && input.key === 'l' && input.type === 'keyDown') { if (!editorFocused) { mainWindow.webContents.send('top:focus-search') event.preventDefault() } } }) ipc.on('editor:focused', (event, isFocused) => { editorFocused = isFocused }) const window = { label: 'Window', submenu: [ { label: 'Minimize', accelerator: 'Command+M', selector: 'performMiniaturize:' }, { label: 'Close', accelerator: 'Command+W', selector: 'performClose:' }, { type: 'separator' }, { label: 'Bring All to Front', selector: 'arrangeInFront:' } ] } const help = { label: 'Help', role: 'help', submenu: [ { label: 'Boostnote official site', click() { shell.openExternal('https://boostnote.io/') } }, { label: 'Wiki', click() { shell.openExternal('https://github.com/BoostIO/Boostnote/wiki') } }, { label: 'Issue Tracker', click() { shell.openExternal('https://github.com/BoostIO/Boostnote/issues') } }, { label: 'Changelog', click() { shell.openExternal('https://github.com/BoostIO/boost-releases') } }, { label: 'Cheatsheets', submenu: [ { label: 'Markdown', click() { shell.openExternal( 'https://github.com/adam-p/markdown-here/wiki/Markdown-Cheatsheet' ) } }, { label: 'Latex', click() { shell.openExternal('https://katex.org/docs/supported.html') } }, { label: 'HTML', click() { shell.openExternal('https://htmlcheatsheet.com/') } }, { label: 'Boostnote', click() { shell.openExternal( 'https://github.com/TobseF/boostnote-markdown-cheatsheet/blob/master/BOOSTNOTE_MARKDOWN_CHEAT_SHEET.md' ) } } ] }, { type: 'separator' }, { label: 'About', click() { const version = electron.app.getVersion() const electronVersion = process.versions.electron const chromeVersion = process.versions.chrome const nodeVersion = process.versions.node const v8Version = process.versions.v8 const OSInfo = `${os.type()} ${os.arch()} ${os.release()}` const detail = `Version: ${version}\nElectron: ${electronVersion}\nChrome: ${chromeVersion}\nNode.js: ${nodeVersion}\nV8: ${v8Version}\nOS: ${OSInfo}` electron.dialog.showMessageBox(BrowserWindow.getFocusedWindow(), { title: 'BoostNote', message: 'BoostNote', type: 'info', detail: `\n${detail}` }) } } ] } const team = { label: 'For Team', submenu: [ { label: 'BoostHub', click: async () => { shell.openExternal('https://boosthub.io/') } } ] } module.exports = process.platform === 'darwin' ? [boost, file, edit, view, window, team, help] : process.platform === 'win32' ? [boost, file, view, team, help] : [file, view, team, help] ================================================ FILE: lib/main-window.js ================================================ const electron = require('electron') const app = electron.app const BrowserWindow = electron.BrowserWindow const path = require('path') const Config = require('electron-config') const config = new Config() const _ = require('lodash') // set up some chrome extensions if (process.env.NODE_ENV === 'development') { const { default: installExtension, REACT_DEVELOPER_TOOLS, REACT_PERF } = require('electron-devtools-installer') require('electron-debug')({ showDevTools: false }) const ChromeLens = { // ID of the extension (https://chrome.google.com/webstore/detail/chromelens/idikgljglpfilbhaboonnpnnincjhjkd) id: 'idikgljglpfilbhaboonnpnnincjhjkd', electron: '>=1.2.1' } const extensions = [REACT_DEVELOPER_TOOLS, REACT_PERF, ChromeLens] for (const extension of extensions) { try { installExtension(extension) } catch (e) { console.error(`[ELECTRON] Extension installation failed`, e) } } } const windowSize = config.get('windowsize') || { x: null, y: null, width: 1080, height: 720 } const mainWindow = new BrowserWindow({ x: windowSize.x, y: windowSize.y, width: windowSize.width, height: windowSize.height, useContentSize: true, minWidth: 500, minHeight: 320, webPreferences: { zoomFactor: 1.0, enableBlinkFeatures: 'OverlayScrollbars' }, icon: path.resolve(__dirname, '../resources/app.png') }) const url = path.resolve( __dirname, process.env.NODE_ENV === 'development' ? './main.development.html' : './main.production.html' ) mainWindow.loadURL('file://' + url) mainWindow.setMenuBarVisibility(false) mainWindow.webContents.on('new-window', function(e) { e.preventDefault() }) mainWindow.webContents.sendInputEvent({ type: 'keyDown', keyCode: '\u0008' }) mainWindow.webContents.sendInputEvent({ type: 'keyUp', keyCode: '\u0008' }) if (process.platform === 'darwin') { mainWindow.on('close', function(e) { e.preventDefault() if (mainWindow.isFullScreen()) { mainWindow.once('leave-full-screen', function() { mainWindow.hide() }) mainWindow.setFullScreen(false) } else { mainWindow.hide() } }) app.on('before-quit', function(e) { mainWindow.removeAllListeners() }) } mainWindow.on('resize', _.throttle(storeWindowSize, 500)) mainWindow.on('move', _.throttle(storeWindowSize, 500)) function storeWindowSize() { try { config.set('windowsize', mainWindow.getBounds()) } catch (e) { // ignore any errors because an error occurs only on update // refs: https://github.com/BoostIO/Boostnote/issues/243 } } app.on('activate', function() { if (mainWindow == null) return null mainWindow.show() }) module.exports = mainWindow ================================================ FILE: lib/main.development.html ================================================ Boostnote
================================================ FILE: lib/main.production.html ================================================ Boostnote
================================================ FILE: lib/touchbar-menu.js ================================================ const { TouchBar } = require('electron') const { TouchBarButton, TouchBarSpacer } = TouchBar const mainWindow = require('./main-window') const allNotes = new TouchBarButton({ label: '📒', click: () => { mainWindow.webContents.send('list:navigate', '/home') } }) const starredNotes = new TouchBarButton({ label: '⭐️', click: () => { mainWindow.webContents.send('list:navigate', '/starred') } }) const trash = new TouchBarButton({ label: '🗑', click: () => { mainWindow.webContents.send('list:navigate', '/trashed') } }) const newNote = new TouchBarButton({ label: '✎', click: () => { mainWindow.webContents.send('list:navigate', '/home') mainWindow.webContents.send('top:new-note') } }) module.exports = new TouchBar([ allNotes, starredNotes, trash, new TouchBarSpacer({ size: 'small' }), newNote ]) ================================================ FILE: locales/cs.json ================================================ { "Notes": "Poznámky", "Tags": "Štítky", "Preferences": "Předvolby", "Make a note": "Vytvořit poznámku", "Ctrl": "Ctrl", "Ctrl(^)": "Ctrl(^)", "to create a new note": " pro vytvoření nové poznámky", "Toggle Mode": "Přepnout režim", "Add tag...": "Přidat štítek...", "Trash": "Koš", "Ok": "Ok", "MODIFICATION DATE": "DATUM ZMĚNY", "Words": "Slova", "Letters": "Písmena", "STORAGE": "ÚLOŽIŠTĚ", "FOLDER": "SLOŽKA", "CREATION DATE": "DATUM VYTVOŘENÍ", "NOTE LINK": "ODKAZ NA POZNÁMKU", ".md": ".md", ".txt": ".txt", ".html": ".html", ".pdf": ".pdf", "Print": "Tisk", "Your preferences for Boostnote": "Vaše předvolby pro Boostnote", "Help": "Nápověda", "Hide Help": "Skrýt nápovědu", "Storage Locations": "Umístění úložiště", "Add Storage Location": "Přidat umístění úložiště", "Add Folder": "Přidat složku", "Select Folder": "Vybrat složku", "Open Storage folder": "Otevřít složku úložiště", "Unlink": "Zrušit odkaz", "Edit": "Editovat", "Delete": "Odstranit", "Interface": "Rozhraní", "Interface Theme": "Téma vzhledu rozhraní", "Default": "Výchozí", "White": "Bílé", "Solarized Dark": "Solarizovaně tmavé", "Dark": "Tmavé", "Show a confirmation dialog when deleting notes": "Zobrazovat při odstraňování poznámek dialog pro potvrzení", "Disable Direct Write (It will be applied after restarting)": "Zakázat přímý zápis (Bude aplikováno po restartu)", "Show only related tags": "Zobrazit pouze související štítky", "Editor Theme": "Téma vzhledu editoru", "Editor Font Size": "Velikost písma editoru", "Editor Font Family": "Rodiny písma editoru", "Editor Indent Style": "Styl odsazení editoru", "Spaces": "Mezery", "Tabs": "Tabulátory", "Switch to Preview": "Přepnout na náhled", "When Editor Blurred": "Když se editor rozostří", "When Editor Blurred, Edit On Double Click": "Při rozostření editoru, editovat po dvojím kliknutí", "On Right Click": "Po kliknutí pravým tlačítkem myši", "Editor Keymap": "Mapa kláves editoru", "default": "výchozí", "vim": "vim", "emacs": "emacs", "⚠️ Please restart boostnote after you change the keymap": "⚠️ Prosím restartujte boostnote po změně mapy kláves", "Show line numbers in the editor": "Zobrazit v editoru čísla řádků", "Allow editor to scroll past the last line": "Povolit v editoru scrolování za poslední řádek", "Enable smart quotes": "Povolit chytré komentáře", "Bring in web page title when pasting URL on editor": "Vložit název webové stránky při zkopírování URL do editoru", "Preview": "Náhled", "Preview Font Size": "Velikost písma v náhledu", "Preview Font Family": "Rodina písma v náhledu", "Code Block Theme": "Téma bloku kódu", "Allow preview to scroll past the last line": "Povolit v náhledu scrolování za poslední řádek", "Show line numbers for preview code blocks": "Zobrazit čísla řádků v náhledu bloků kódu", "LaTeX Inline Open Delimiter": "inline otevírací oddělovač v LaTeX", "LaTeX Inline Close Delimiter": "inline uzavírací oddělovač v LaTeX", "LaTeX Block Open Delimiter": "otevírací oddělovač bloku v LaTeX", "LaTeX Block Close Delimiter": "uzavírací oddělovač bloku v LaTeX", "PlantUML Server": "PlantUML server", "Community": "Komunita", "Subscribe to Newsletter": "Přihlásit se k odběru novinek", "GitHub": "GitHub", "Blog": "Blog", "Facebook Group": "Facebook Skupina", "Twitter": "Twitter", "About": "O aplikaci", "Boostnote": "Boostnote", "An open source note-taking app made for programmers just like you.": "Open source aplikace pro tvorbu poznámek vytvořená programátory jako jste vy.", "Website": "Webová stránka", "Development": "Vývoj", " : Development configurations for Boostnote.": " : Vývojové konfigurace pro Boostnote.", "Copyright (C) 2017 - 2019 BoostIO": "Copyright (C) 2017 - 2019 BoostIO", "License: GPL v3": "License: GPL v3", "Analytics": "Analytika", "Boostnote collects anonymous data for the sole purpose of improving the application, and strictly does not collect any personal information such the contents of your notes.": "Boostnote sbírá anonymní data pouze pro účely zlepšování aplikace, a v žádném případě nesbírá žádné osobní údaje, jako je například obsah vašich poznámek.", "You can see how it works on ": "Můžete se podívat, jak to funguje ", "You can choose to enable or disable this option.": "Tuto možnost můžete povolit nebo zakázat.", "Enable analytics to help improve Boostnote": "Povolit analytiku pro další zlepšování Boostnote", "Crowdfunding": "Crowdfunding", "Dear Boostnote users,": "Vážení uživatelé Boostnote,", "Thank you for using Boostnote!": "Děkujeme, že používáte Boostnote!", "Boostnote is used in about 200 different countries and regions by an awesome community of developers.": "Boostnote je používán v přibližně 200 různých zemích a regionech úžasnou komunitou vývojářů.", "To support our growing userbase, and satisfy community expectations,": "Abychom podpořili rostoucí uživatelskou základnu a naplnili očekávání komunity,", "we would like to invest more time and resources in this project.": "rádi bychom do tohoto projektu investovali více času a zdrojů.", "If you use Boostnote and see its potential, help us out by supporting the project on OpenCollective!": "Pokud používáte Boostnote a vidíte jeho potenciál, pomozte nám podporou projektu na OpenCollective!", "Thanks,": "Děkujeme,", "The Boostnote Team": "Tým Boostnote", "Support via OpenCollective": "Podpořit přes OpenCollective", "Language": "Jazyk", "Default New Note": "Výchozí nová poznámka", "English": "Angličtina", "German": "Němčina", "French": "Francouzština", "Show \"Saved to Clipboard\" notification when copying": "Zobrazit při kopírování upozornění \"Uloženo do schránky\"", "All Notes": "Všechny poznámky", "Starred": "Oblíbené", "Are you sure to ": "Opravdu ", " delete": " odstranit", "this folder?": "tuto složku?", "Confirm": "Potvrdit", "Cancel": "Storno", "Markdown Note": "Markdown poznámka", "This format is for creating text documents. Checklists, code blocks and Latex blocks are available.": "Tento formát je pro tvorbu textových dokumentů. Zaškrtávací seznamy, bloky kódu a Latex bloky jsou dostupné.", "Snippet Note": "Útržek kódu", "This format is for creating code snippets. Multiple snippets can be grouped into a single note.": "Tento formát je pro tvorbu útržků kódu. Do jedné poznámky lze seskupit více útržků.", "Tab to switch format": "Pro přepnutí formátu zmáčkněte Tab", "Updated": "Aktualizováno", "Created": "Vytvořeno", "Alphabetically": "Abecedně", "Counter": "Počítadlo", "Default View": "Výchozí zobrazení", "Compressed View": "Komprimované zobrazení", "Search": "Vyhledat", "Blog Type": "Typ blogu", "Blog Address": "Adresa blogu", "Save": "Uložit", "Auth": "Autentizace", "Authentication Method": "Autentizační metoda", "JWT": "JWT", "USER": "UŽIVATEL", "Token": "Token", "Storage": "Uložiště", "Hotkeys": "Klávesové zkratky", "Show/Hide Boostnote": "Zobrazit/skrýt Boostnote", "Toggle Editor Mode": "Přepnout režim editoru", "Delete Note": "Odstranit poznámku", "Restore": "Obnovit", "Permanent Delete": "Trvale odstranit", "Confirm note deletion": "Potvrdit odstranění poznámky", "This will permanently remove this note.": "Tato akce trvale odstraní poznámku.", "Successfully applied!": "Úspěšně aplikováno!", "Albanian": "Albánština", "Chinese (zh-CN)": "Čínština (zjednodušená)", "Chinese (zh-TW)": "Čínština (tradiční)", "Danish": "Dánština", "Japanese": "Japonština", "Korean": "Korejština", "Norwegian": "Norština", "Polish": "Polština", "Portuguese": "Portugalština", "Spanish": "Španělština", "Unsaved Changes!": "Neuložené změny!", "UserName": "Uživatelské jméno", "Password": "Heslo", "Russian": "Rusky", "Hungarian": "Maďarsky", "Thai": "Thajština (ภาษาไทย)", "Command(⌘)": "Command(⌘)", "Add Storage": "Přidat úložiště", "Name": "Jméno", "Type": "Typ", "File System": "Souborový systém", "Setting up 3rd-party cloud storage integration:": "Nastavení integrace s úložištěm třetí strany:", "Cloud-Syncing-and-Backup": "Synchronizace a záloha do cloudu", "Location": "Umístění", "Add": "Přidat", "Unlink Storage": "Odpojit úložiště", "Unlinking removes this linked storage from Boostnote. No data is removed, please manually delete the folder from your hard drive if needed.": "Odpojení odstraní toto připojené úložiště z Boostnote. Žádná data nebudou odstraněna, prosím odstraňte složku z vašeho pevného disku manuálně.", "Editor Rulers": "Pravítka v editoru", "Enable": "Povolit", "Disable": "Zakázat", "Sanitization": "Sanitace", "Only allow secure html tags (recommended)": "Povolit pouze bezpečné html tagy (doporučeno)", "Render newlines in Markdown paragraphs as
": "Vykreslit konce řádků v Markdown jako
", "Allow styles": "Povolit styly", "Allow dangerous html tags": "Povolit nebezpečné html tagy", "Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.": "Převést textové šipky do překrásných symbolů. ⚠ Toto bude kolidovat s použitím HTML komentářů ve vašem Markdown.", "⚠ You have pasted a link referring an attachment that could not be found in the storage location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠": "⚠ Vložili jste odkaz směrující na přílohu, kterou nebylo možné v umístění úložiště této poznámky najít. Vložením odkazu směrujícího na přílohy je podporováno pouze v případě, že se zdrojové a cílového úložiště shodují. Raději sem prosím přílohu přetáhněte! ⚠", "Spellcheck disabled": "Kontrola pravopisu zakázána", "Save tags of a note in alphabetical order": "Uložit štítky poznámky v abecedním pořadí", "Enable live count of notes": "Povolit zobrazení aktuálního počtu poznámek", "Enable smart table editor": "Povolit chytrý editor tabulek", "Snippet Default Language": "Výchozí jazyk kódu", "New notes are tagged with the filtering tags": "Nové poznámky jsou opatřeny štítky z filtru", "Show menu bar": "Zobrazit lištu menu", "Auto Detect": "Automatická detekce", "Enable HTML label in mermaid flowcharts": "Povolit HTML label v mermaid flowcharts ⚠ Tato možnost je potenciálním zdrojem XSS.", "Wrap line in Snippet Note": "Ukončovat řádky v útržcích kódu" } ================================================ FILE: locales/da.json ================================================ { "Notes": "Notes", "Tags": "Tags", "Preferences": "Preferences", "Make a note": "Make a note", "Ctrl": "Ctrl", "Ctrl(^)": "Ctrl", "to create a new note": "to create a new note", "Toggle Mode": "Toggle Mode", "Trash": "Trash", "Ok": "Ok", "MODIFICATION DATE": "MODIFICATION DATE", "Words": "Words", "Letters": "Letters", "STORAGE": "STORAGE", "FOLDER": "FOLDER", "CREATION DATE": "CREATION DATE", "NOTE LINK": "NOTE LINK", ".md": ".md", ".txt": ".txt", ".html": ".html", ".pdf": ".pdf", "Print": "Print", "Your preferences for Boostnote": "Your preferences for Boostnote", "Storage Locations": "Storage Locations", "Add Storage Location": "Add Storage Location", "Add Folder": "Add Folder", "Open Storage folder": "Open Storage folder", "Unlink": "Unlink", "Edit": "Edit", "Delete": "Delete", "Interface": "Interface", "Interface Theme": "Interface Theme", "Default": "Default", "White": "White", "Solarized Dark": "Solarized Dark", "Dark": "Dark", "Show a confirmation dialog when deleting notes": "Show a confirmation dialog when deleting notes", "Editor Theme": "Editor Theme", "Editor Font Size": "Editor Font Size", "Editor Font Family": "Editor Font Family", "Editor Indent Style": "Editor Indent Style", "Spaces": "Spaces", "Tabs": "Tabs", "Switch to Preview": "Switch to Preview", "When Editor Blurred": "When Editor Blurred", "When Editor Blurred, Edit On Double Click": "When Editor Blurred, Edit On Double Click", "On Right Click": "On Right Click", "Editor Keymap": "Editor Keymap", "default": "default", "vim": "vim", "emacs": "emacs", "⚠️ Please restart boostnote after you change the keymap": "⚠️ Please restart boostnote after you change the keymap", "Show line numbers in the editor": "Show line numbers in the editor", "Allow editor to scroll past the last line": "Allow editor to scroll past the last line", "Bring in web page title when pasting URL on editor": "Bring in web page title when pasting URL on editor", "Preview": "Preview", "Preview Font Size": "Preview Font Size", "Preview Font Family": "Preview Font Family", "Code Block Theme": "Code Block Theme", "Allow preview to scroll past the last line": "Allow preview to scroll past the last line", "Show line numbers for preview code blocks": "Show line numbers for preview code blocks", "LaTeX Inline Open Delimiter": "LaTeX Inline Open Delimiter", "LaTeX Inline Close Delimiter": "LaTeX Inline Close Delimiter", "LaTeX Block Open Delimiter": "LaTeX Block Open Delimiter", "LaTeX Block Close Delimiter": "LaTeX Block Close Delimiter", "PlantUML Server": "PlantUML Server", "Community": "Community", "Subscribe to Newsletter": "Subscribe to Newsletter", "GitHub": "GitHub", "Blog": "Blog", "Facebook Group": "Facebook Group", "Twitter": "Twitter", "About": "About", "Boostnote": "Boostnote", "An open source note-taking app made for programmers just like you.": "An open source note-taking app made for programmers just like you.", "Website": "Website", "Development": "Development", " : Development configurations for Boostnote.": " : Development configurations for Boostnote.", "Copyright (C) 2017 - 2019 BoostIO": "Copyright (C) 2017 - 2019 BoostIO", "License: GPL v3": "License: GPL v3", "Analytics": "Analytics", "Boostnote collects anonymous data for the sole purpose of improving the application, and strictly does not collect any personal information such the contents of your notes.": "Boostnote collects anonymous data for the sole purpose of improving the application, and strictly does not collect any personal information such the contents of your notes.", "You can see how it works on ": "You can see how it works on ", "You can choose to enable or disable this option.": "You can choose to enable or disable this option.", "Enable analytics to help improve Boostnote": "Enable analytics to help improve Boostnote", "Crowdfunding": "Crowdfunding", "Dear Boostnote users,": "Dear Boostnote users,", "Thank you for using Boostnote!": "Thank you for using Boostnote!", "Boostnote is used in about 200 different countries and regions by an awesome community of developers.": "Boostnote is used in about 200 different countries and regions by an awesome community of developers.", "To support our growing userbase, and satisfy community expectations,": "To support our growing userbase, and satisfy community expectations,", "we would like to invest more time and resources in this project.": "we would like to invest more time and resources in this project.", "If you use Boostnote and see its potential, help us out by supporting the project on OpenCollective!": "If you use Boostnote and see its potential, help us out by supporting the project on OpenCollective!", "Thanks,": "Thanks,", "The Boostnote Team": "The Boostnote Team", "Support via OpenCollective": "Support via OpenCollective", "Language": "Language", "English": "English", "German": "German", "French": "French", "Show \"Saved to Clipboard\" notification when copying": "Show \"Saved to Clipboard\" notification when copying", "All Notes": "All Notes", "Starred": "Starred", "Are you sure to ": "Are you sure to ", " delete": " delete", "this folder?": "this folder?", "Confirm": "Confirm", "Cancel": "Cancel", "Markdown Note": "Markdown Note", "This format is for creating text documents. Checklists, code blocks and Latex blocks are available.": "This format is for creating text documents. Checklists, code blocks and Latex blocks are available.", "Snippet Note": "Snippet Note", "This format is for creating code snippets. Multiple snippets can be grouped into a single note.": "This format is for creating code snippets. Multiple snippets can be grouped into a single note.", "Tab to switch format": "Tab to switch format", "Updated": "Updated", "Created": "Created", "Alphabetically": "Alphabetically", "Default View": "Default View", "Compressed View": "Compressed View", "Search": "Search", "Blog Type": "Blog Type", "Blog Address": "Blog Address", "Save": "Save", "Auth": "Auth", "Authentication Method": "Authentication Method", "JWT": "JWT", "USER": "USER", "Token": "Token", "Storage": "Storage", "Hotkeys": "Hotkeys", "Show/Hide Boostnote": "Show/Hide Boostnote", "Restore": "Restore", "Permanent Delete": "Permanent Delete", "Confirm note deletion": "Confirm note deletion", "This will permanently remove this note.": "This will permanently remove this note.", "Successfully applied!": "Successfully applied!", "Albanian": "Albanian", "Chinese (zh-CN)": "Chinese (zh-CN)", "Chinese (zh-TW)": "Chinese (zh-TW)", "Czech": "Czech", "Danish": "Danish", "Japanese": "Japanese", "Korean": "Korean", "Norwegian": "Norwegian", "Polish": "Polish", "Portuguese": "Portuguese", "Spanish": "Spanish", "Unsaved Changes!": "Unsaved Changes!", "Russian": "Russian", "Command(⌘)": "Command(⌘)", "Editor Rulers": "Editor Rulers", "Enable": "Enable", "Disable": "Disable", "Sanitization": "Sanitization", "Only allow secure html tags (recommended)": "Only allow secure html tags (recommended)", "Allow styles": "Allow styles", "Allow dangerous html tags": "Allow dangerous html tags", "Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.": "Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.", "⚠ You have pasted a link referring an attachment that could not be found in the storage location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠": "⚠ You have pasted a link referring an attachment that could not be found in the storage location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠", "Spellcheck disabled": "Spellcheck disabled", "Show menu bar": "Show menu bar", "Auto Detect": "Auto Detect", "Filter tags/folders...": "filter tags/folders...", "Enable HTML label in mermaid flowcharts": "Enable HTML label in mermaid flowcharts ⚠ This option potentially has a risk of XSS.", "Wrap line in Snippet Note": "Wrap line in Snippet Note" } ================================================ FILE: locales/de.json ================================================ { "Notes": "Notizen", "Tags": "Tags", "Preferences": "Einstellungen", "Make a note": "Notiz erstellen", "Ctrl": "Strg", "Ctrl(^)": "Strg", "to create a new note": "um eine neue Notiz zu erstellen", "Toggle Mode": "Modus umschalten", "Trash": "Papierkorb", "Ok": "Ok", "MODIFICATION DATE": "ÄNDERUNGSDATUM", "Words": "Wörter", "Letters": "Buchstaben", "STORAGE": "SPEICHERORT", "FOLDER": "ORDNER", "CREATION DATE": "ERSTELLUNGSDATUM", "NOTE LINK": "NOTIZ LINK", ".md": ".md", ".txt": ".txt", ".html": ".html", ".pdf": ".pdf", "Print": "Drucken", "Your preferences for Boostnote": "Boostnote Einstellungen", "Storage Locations": "Speicherverwaltung", "Add Storage Location": "Speicherort hinzufügen", "Add Folder": "Ordner hinzufügen", "Open Storage folder": "Speicherort öffnen", "Unlink": "Verknüpfung aufheben", "Edit": "Bearbeiten", "Delete": "Löschen", "Interface": "Darstellung", "Interface Theme": "Stil", "Default": "Standard", "White": "Hell", "Solarized Dark": "Solarized Dark", "Dark": "Dunkel", "Show a confirmation dialog when deleting notes": "Bestätigungsdialog beim Löschen von Notizen anzeigen", "Editor Theme": "Editor Theme", "Editor Font Size": "Editor Schriftgröße", "Editor Font Family": "Editor Schriftart", "Editor Indent Style": "Editor Einrückestil", "Spaces": "Leerzeichen", "Tabs": "Tabs", "Switch to Preview": "Zur Vorschau wechseln", "When Editor Blurred": "Wenn Editor nicht fokusiert", "When Editor Blurred, Edit On Double Click": "Mit Doppelklick bearbeiten, wenn Editor in Vorschaumodus", "On Right Click": "Mit Rechtsklick", "Editor Keymap": "Editor Tastenbelegung", "default": "Standard", "vim": "vim", "emacs": "emacs", "⚠️ Please restart boostnote after you change the keymap": "⚠️ Boostnote nach Änderung der Tastenbelegung neu starten", "Show line numbers in the editor": "Zeilennummern im Editor anzeigen", "Allow editor to scroll past the last line": "Editor das Scrollen über das Ende hinaus erlauben", "Bring in web page title when pasting URL on editor": "Titel der Website beim Einfügen in den Editor anzeigen", "Preview": "Vorschau", "Preview Font Size": "Vorschau Schriftgröße", "Preview Font Family": "Vorschau Schriftart", "Code Block Theme": "Code-Block Theme", "Allow preview to scroll past the last line": "Vorschau das Scrollen über das Ende hinaus erlauben", "Show line numbers for preview code blocks": "Zeilennummern in Vorschau-Code-Blöcken anzeigen", "LaTeX Inline Open Delimiter": "LaTeX Inline Beginn Kennzeichen", "LaTeX Inline Close Delimiter": "LaTeX Inline Ende Kennzeichen", "LaTeX Block Open Delimiter": "LaTeX Block Beginn Kennzeichen", "LaTeX Block Close Delimiter": "LaTeX Block Ende Kennzeichen", "PlantUML Server": "PlantUML Server", "Community": "Community", "Subscribe to Newsletter": "Newsletter abonnieren", "GitHub": "GitHub", "Blog": "Blog", "Facebook Group": "Facebook Gruppe", "Twitter": "Twitter", "About": "Über", "Boostnote": "Boostnote", "An open source note-taking app made for programmers just like you.": "Eine OpenSource-Notizapp für Programmierer wie du und ich.", "Website": "Website", "Development": "Entwicklung", " : Development configurations for Boostnote.": " : Entwicklungseinstellungen für Boostnote.", "Copyright (C) 2017 - 2019 BoostIO": "Copyright (C) 2017 - 2019 BoostIO", "License: GPL v3": "License: GPL v3", "Analytics": "Analytics", "Boostnote collects anonymous data for the sole purpose of improving the application, and strictly does not collect any personal information such the contents of your notes.": "Boostnote sammelt anonyme Daten, um die App zu verbessern. Persönliche Informationen, wie z.B. der Inhalt deiner Notizen, werden dabei nicht erfasst.", "You can see how it works on ": "Wie das funktioniert, kannst du dir hier ansehen ", "You can choose to enable or disable this option.": "Du kannst wählen, ob du diese Option aktivieren oder daektivieren möchtest.", "Enable analytics to help improve Boostnote": "Datenerhebung zur Verbesserung von Boostnote aktivieren", "Crowdfunding": "Crowdfunding", "Dear Boostnote users,": "Hallo,", "Thank you for using Boostnote!": "Danke, dass du Boostnote verwendest.", "Boostnote is used in about 200 different countries and regions by an awesome community of developers.": "Boostnote wird in über 200 verschiedenen Ländern von einer großartigen Community von Entwicklern verwendet.", "To support our growing userbase, and satisfy community expectations,": "Um die Erwartungen der Community weiterhin erfüllen zu können und die Verbreitung von Boostnote weiter voranzutreiben,", "we would like to invest more time and resources in this project.": "würden wir gern mehr Zeit und Resourcen in dieses Projekt investieren.", "If you use Boostnote and see its potential, help us out by supporting the project on OpenCollective!": "Wenn dir dieses Projekt gefällt und du sein Potential erkennst, kannst du uns gern mit OpenCollective unterstützen!", "Thanks,": "Vielen Dank,", "The Boostnote Team": "Dein Boostnote Team", "Support via OpenCollective": "Unterstützen mit OpenCollective", "Language": "Sprache", "English": "Englisch", "German": "Deutsch", "French": "Französisch", "Show \"Saved to Clipboard\" notification when copying": "\"Auf Clipboard gespeichert\" Benachrichtigungen beim Kopieren anzeigen", "All Notes": "Alle Notizen", "Starred": "Markiert", "Are you sure to ": "Sind sie sicher ", " delete": " zu löschen", "this folder?": "diesen Ordner?", "Confirm": "Bestätigen", "Cancel": "Abbrechen", "Markdown Note": "Markdown Notiz", "This format is for creating text documents. Checklists, code blocks and Latex blocks are available.": "Mit diesem Format kannst du einzelne Textdokumente erstellen. Dabei stehen dir Checklisten, Code- & Latex-Blöcke zur Verfügung.", "Snippet Note": "Codeschnipsel", "This format is for creating code snippets. Multiple snippets can be grouped into a single note.": "Mit diesem Format kannst du mehrere Codeschnipsel erstellen und sie in einer Notiz zusammenfassen.", "Tab to switch format": "Tab drücken, um das Format zu wechseln", "Updated": "Bearbeitet", "Created": "Erstellt", "Alphabetically": "Alphabetisch", "Default View": "Standardansicht", "Compressed View": "Kompaktansicht", "Search": "Suchen", "Blog Type": "Blog-Typ", "Blog Address": "Blog Adresse", "Save": "Speichern", "Auth": "Authentifizierung", "Authentication Method": "Authentifizierungsmethode", "JWT": "JWT", "USER": "BENUTZER", "Token": "Token", "Storage": "Speicher", "Hotkeys": "Tastenkürzel", "Show/Hide Boostnote": "Boostnote anzeigen/verstecken", "Restore": "Wiederherstellen", "Permanent Delete": "Dauerhaft löschen", "Confirm note deletion": "Löschen bestätigen", "This will permanently remove this note.": "Diese Notiz wird dauerhaft gelöscht.", "Unsaved Changes!": "Speichern notwendig!", "Albanian": "Albanisch", "Czech": "Tschechisch", "Danish": "Dänisch", "Japanese": "Japanisch", "Korean": "Koreanisch", "Norwegian": "Norwegisch", "Polish": "Polnisch", "Portuguese": "Portugiesisch", "Spanish": "Spanisch", "Chinese (zh-CN)": "Chinesisch (China)", "Chinese (zh-TW)": "Chinesisch (Taiwan)", "Successfully applied!": "Erfolgreich gespeichert!", "UserName": "Benutzername", "Password": "Passwort", "Russian": "Russisch", "Thai": "Thai (ภาษาไทย)", "Command(⌘)": "Befehlstaste(⌘)", "Editor Rulers": "Editor Trennline", "Enable": "Aktiviert", "Disable": "Deaktiviert", "Sanitization": "Sanitization", "Only allow secure html tags (recommended)": "Erlaube nur sichere HTML Tags (empfohlen)", "Allow styles": "Erlaube Styles", "Allow dangerous html tags": "Erlaube gefähliche HTML Tags", "Select filter mode": "Wähle Filter Modus", "Add tag...": "Tag hinzufügen...", "Star": "Markieren", "Fullscreen": "Vollbild", "Info": "Info", "Remove pin": "Pin entfernen", "Pin to Top": "Notiz anpinnen", "Delete Note": "Notiz löschen", "Clone Note": "Notiz duplizieren", "Restore Note": "Notiz wiederherstellen", "Copy Note Link": "Link zur Notiz kopieren", "Publish Blog": "Auf Blog veröffentlichen", "Update Blog": "Blog aktualisieren", "Open Blog": "Blog öffnen", "Empty Trash": "Papierkorb leeren", "Rename Folder": "Ordner umbenennen", "Export Folder": "Ordner exportieren", "Export as txt": "Exportieren als txt", "Export as md": "Exportieren als md", "Delete Folder": "Ordner löschen", "Select directory": "Ordner auswählen", "Select a folder to export the files to": "Wähle einen Ordner zum Export der Dateien", "Description...": "Beschreibung...", "Publish Failed": "Veröffentlichung fehlgeschlagen", "Check and update your blog setting and try again.": "Prüfe und aktualisiere deine Blog Einstellungen und versuche es noch einmal.", "Delete a snippet": "Codeschnipsel löschen", "This work cannot be undone.": "Diese Aktion kann nicht rückgängig gemacht werden.", "Help": "Hilfe", "Hungarian": "Ungarisch", "Hide Help": "Hilfe verstecken", "wordpress": "Wordpress", "Add Storage": "Speicher hinzufügen", "Name": "Name", "Type": "Typ", "File System": "Dateisystem", "Setting up 3rd-party cloud storage integration:": "Integration von Cloudspeicher externer Anbieter einrichten:", "Cloud-Syncing-and-Backup": "Cloud-Syncing-and-Backup", "Location": "Ort", "Add": "Hinzufügen", "Available Keys": "Verfügbare Tasten", "Select Directory": "Ordner auswählen", "copy": "Kopie", "Create new folder": "Ordner erstellen", "Folder name": "Ordnername", "Create": "Erstellen", "Unlink Storage": "Speicherverknüpfung aufheben", "Unlinking removes this linked storage from Boostnote. No data is removed, please manually delete the folder from your hard drive if needed.": "Die Verknüpfung des Speichers mit Boostnote wird entfernt. Es werden keine Daten gelöscht. Um die Daten dauerhaft zu löschen musst du den Ordner auf der Festplatte manuell entfernen.", "Empty note": "Leere Notiz", "Unnamed": "Unbenannt", "Rename": "Umbenennen", "Folder Name": "Ordnername", "No tags": "Keine Tags", "Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.": "Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.", "⚠ You have pasted a link referring an attachment that could not be found in the storage location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠": "⚠ You have pasted a link referring an attachment that could not be found in the storage location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠", "Spellcheck disabled": "Spellcheck disabled", "Show menu bar": "Show menu bar", "Auto Detect": "Auto Detect", "Filter tags/folders...": "filter tags/ordner...", "Enable HTML label in mermaid flowcharts": "Enable HTML label in mermaid flowcharts ⚠ This option potentially has a risk of XSS.", "Wrap line in Snippet Note": "Wrap line in Snippet Note" } ================================================ FILE: locales/en.json ================================================ { "Notes": "Notes", "Tags": "Tags", "Preferences": "Preferences", "Make a note": "Make a note", "Ctrl": "Ctrl", "Ctrl(^)": "Ctrl(^)", "to create a new note": "to create a new note", "Toggle Mode": "Toggle Mode", "Add tag...": "Add tag...", "Trash": "Trash", "Ok": "Ok", "MODIFICATION DATE": "MODIFICATION DATE", "Words": "Words", "Letters": "Letters", "STORAGE": "STORAGE", "FOLDER": "FOLDER", "CREATION DATE": "CREATION DATE", "NOTE LINK": "NOTE LINK", ".md": ".md", ".txt": ".txt", ".html": ".html", ".pdf": ".pdf", "Print": "Print", "Your preferences for Boostnote": "Your preferences for Boostnote", "Help": "Help", "Hide Help": "Hide Help", "Storage Locations": "Storage Locations", "Add Storage Location": "Add Storage Location", "Add Folder": "Add Folder", "Select Folder": "Select Folder", "Open Storage folder": "Open Storage folder", "Unlink": "Unlink", "Edit": "Edit", "Delete": "Delete", "Interface": "Interface", "Interface Theme": "Interface Theme", "Default": "Default", "White": "White", "Solarized Dark": "Solarized Dark", "Dark": "Dark", "Show a confirmation dialog when deleting notes": "Show a confirmation dialog when deleting notes", "Disable Direct Write (It will be applied after restarting)": "Disable Direct Write (It will be applied after restarting)", "Show only related tags": "Show only related tags", "Editor Theme": "Editor Theme", "Editor Font Size": "Editor Font Size", "Editor Font Family": "Editor Font Family", "Editor Indent Style": "Editor Indent Style", "Spaces": "Spaces", "Tabs": "Tabs", "Switch to Preview": "Switch to Preview", "When Editor Blurred": "When Editor Blurred", "When Editor Blurred, Edit On Double Click": "When Editor Blurred, Edit On Double Click", "On Right Click": "On Right Click", "Editor Keymap": "Editor Keymap", "default": "default", "vim": "vim", "emacs": "emacs", "⚠️ Please restart boostnote after you change the keymap": "⚠️ Please restart boostnote after you change the keymap", "Show line numbers in the editor": "Show line numbers in the editor", "Allow editor to scroll past the last line": "Allow editor to scroll past the last line", "Enable smart quotes": "Enable smart quotes", "Bring in web page title when pasting URL on editor": "Bring in web page title when pasting URL on editor", "Preview": "Preview", "Preview Font Size": "Preview Font Size", "Preview Font Family": "Preview Font Family", "Code Block Theme": "Code Block Theme", "Allow preview to scroll past the last line": "Allow preview to scroll past the last line", "Show line numbers for preview code blocks": "Show line numbers for preview code blocks", "LaTeX Inline Open Delimiter": "LaTeX Inline Open Delimiter", "LaTeX Inline Close Delimiter": "LaTeX Inline Close Delimiter", "LaTeX Block Open Delimiter": "LaTeX Block Open Delimiter", "LaTeX Block Close Delimiter": "LaTeX Block Close Delimiter", "PlantUML Server": "PlantUML Server", "Community": "Community", "Subscribe to Newsletter": "Subscribe to Newsletter", "GitHub": "GitHub", "Blog": "Blog", "Facebook Group": "Facebook Group", "Twitter": "Twitter", "About": "About", "Boostnote": "Boostnote", "An open source note-taking app made for programmers just like you.": "An open source note-taking app made for programmers just like you.", "Website": "Website", "Development": "Development", " : Development configurations for Boostnote.": " : Development configurations for Boostnote.", "Copyright (C) 2017 - 2019 BoostIO": "Copyright (C) 2017 - 2019 BoostIO", "License: GPL v3": "License: GPL v3", "Analytics": "Analytics", "Boostnote collects anonymous data for the sole purpose of improving the application, and strictly does not collect any personal information such the contents of your notes.": "Boostnote collects anonymous data for the sole purpose of improving the application, and strictly does not collect any personal information such the contents of your notes.", "You can see how it works on ": "You can see how it works on ", "You can choose to enable or disable this option.": "You can choose to enable or disable this option.", "Enable analytics to help improve Boostnote": "Enable analytics to help improve Boostnote", "Crowdfunding": "Crowdfunding", "Dear Boostnote users,": "Dear Boostnote users,", "Thank you for using Boostnote!": "Thank you for using Boostnote!", "Boostnote is used in about 200 different countries and regions by an awesome community of developers.": "Boostnote is used in about 200 different countries and regions by an awesome community of developers.", "To support our growing userbase, and satisfy community expectations,": "To support our growing userbase, and satisfy community expectations,", "we would like to invest more time and resources in this project.": "we would like to invest more time and resources in this project.", "If you use Boostnote and see its potential, help us out by supporting the project on OpenCollective!": "If you use Boostnote and see its potential, help us out by supporting the project on OpenCollective!", "Thanks,": "Thanks,", "The Boostnote Team": "The Boostnote Team", "Support via OpenCollective": "Support via OpenCollective", "Language": "Language", "Default New Note": "Default New Note", "English": "English", "German": "German", "French": "French", "Show \"Saved to Clipboard\" notification when copying": "Show \"Saved to Clipboard\" notification when copying", "All Notes": "All Notes", "Starred": "Starred", "Are you sure to ": "Are you sure to ", " delete": " delete", "this folder?": "this folder?", "Confirm": "Confirm", "Cancel": "Cancel", "Markdown Note": "Markdown Note", "This format is for creating text documents. Checklists, code blocks and Latex blocks are available.": "This format is for creating text documents. Checklists, code blocks and Latex blocks are available.", "Snippet Note": "Snippet Note", "This format is for creating code snippets. Multiple snippets can be grouped into a single note.": "This format is for creating code snippets. Multiple snippets can be grouped into a single note.", "Tab to switch format": "Tab to switch format", "Updated": "Updated", "Created": "Created", "Alphabetically": "Alphabetically", "Counter": "Counter", "Default View": "Default View", "Compressed View": "Compressed View", "Search": "Search", "Blog Type": "Blog Type", "Blog Address": "Blog Address", "Save": "Save", "Auth": "Auth", "Authentication Method": "Authentication Method", "JWT": "JWT", "USER": "USER", "Token": "Token", "Storage": "Storage", "Hotkeys": "Hotkeys", "Show/Hide Boostnote": "Show/Hide Boostnote", "Toggle Editor Mode": "Toggle Editor Mode", "Delete Note": "Delete Note", "Restore": "Restore", "Permanent Delete": "Permanent Delete", "Confirm note deletion": "Confirm note deletion", "This will permanently remove this note.": "This will permanently remove this note.", "Successfully applied!": "Successfully applied!", "Albanian": "Albanian", "Chinese (zh-CN)": "Chinese (zh-CN)", "Chinese (zh-TW)": "Chinese (zh-TW)", "Czech": "Czech", "Danish": "Danish", "Japanese": "Japanese", "Korean": "Korean", "Norwegian": "Norwegian", "Polish": "Polish", "Portuguese": "Portuguese", "Spanish": "Spanish", "Unsaved Changes!": "Unsaved Changes!", "UserName": "UserName", "Password": "Password", "Russian": "Russian", "Hungarian": "Hungarian", "Thai": "Thai (ภาษาไทย)", "Command(⌘)": "Command(⌘)", "Add Storage": "Add Storage", "Name": "Name", "Type": "Type", "File System": "File System", "Setting up 3rd-party cloud storage integration:": "Setting up 3rd-party cloud storage integration:", "Cloud-Syncing-and-Backup": "Cloud-Syncing-and-Backup", "Location": "Location", "Add": "Add", "Unlink Storage": "Unlink Storage", "Unlinking removes this linked storage from Boostnote. No data is removed, please manually delete the folder from your hard drive if needed.": "Unlinking removes this linked storage from Boostnote. No data is removed, please manually delete the folder from your hard drive if needed.", "Editor Rulers": "Editor Rulers", "Enable": "Enable", "Disable": "Disable", "Sanitization": "Sanitization", "Only allow secure html tags (recommended)": "Only allow secure html tags (recommended)", "Render newlines in Markdown paragraphs as
": "Render newlines in Markdown paragraphs as
", "Allow styles": "Allow styles", "Allow dangerous html tags": "Allow dangerous html tags", "Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.": "Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.", "⚠ You have pasted a link referring an attachment that could not be found in the storage location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠": "⚠ You have pasted a link referring an attachment that could not be found in the storage location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠", "Spellcheck disabled": "Spellcheck disabled", "Save tags of a note in alphabetical order": "Save tags of a note in alphabetical order", "Enable live count of notes": "Enable live count of notes", "Enable smart table editor": "Enable smart table editor", "Snippet Default Language": "Snippet Default Language", "New notes are tagged with the filtering tags": "New notes are tagged with the filtering tags", "Show menu bar": "Show menu bar", "Auto Detect": "Auto Detect", "Filter tags/folders...": "filter tags/folders...", "Enable HTML label in mermaid flowcharts": "Enable HTML label in mermaid flowcharts ⚠ This option potentially has a risk of XSS.", "Wrap line in Snippet Note": "Wrap line in Snippet Note", "Enable Auto Update": "Enable Auto Update" } ================================================ FILE: locales/es-ES.json ================================================ { "Notes": "Notas", "Tags": "Etiquetas", "Preferences": "Preferencias", "Make a note": "Crear nota", "Ctrl": "Ctrl", "Ctrl(^)": "Ctrl", "to create a new note": "para crear una nueva nota", "Toggle Mode": "Alternar modo", "Trash": "Basura", "Ok": "Ok", "MODIFICATION DATE": "FECHA DE MODIFICACIÓN", "Words": "Palabras", "Letters": "Letras", "STORAGE": "ALMACENAMIENTO", "FOLDER": "CARPETA", "CREATION DATE": "FECHA DE CREACIÓN", "NOTE LINK": "ENLACE DE LA NOTA", ".md": ".md", ".txt": ".txt", ".html": ".html", ".pdf": ".pdf", "Print": "Imprimir", "Your preferences for Boostnote": "Tus preferencias para Boostnote", "Storage Locations": "Almacenamientos", "Add Storage Location": "Añadir ubicación de almacenamiento", "Add Folder": "Añadir carpeta", "Open Storage folder": "Abrir carpeta de almacenamiento", "Unlink": "Desvincular", "Edit": "Editar", "Delete": "Eliminar", "Interface": "Interfaz", "Interface Theme": "Tema de la interfaz", "Default": "Por defecto", "White": "Blanco", "Solarized Dark": "Solarizado oscuro", "Dark": "Oscuro", "Show a confirmation dialog when deleting notes": "Requerir confirmación al eliminar nota", "Editor Theme": "Tema del editor", "Editor Font Size": "Tamaño de fuente del editor", "Editor Font Family": "Fuente del editor", "Editor Indent Style": "Estilo de indentado del editor", "Spaces": "Espacios", "Tabs": "Tabulaciones", "Switch to Preview": "Cambiar a previsualización", "When Editor Blurred": "Cuando el editor pierde el foco", "When Editor Blurred, Edit On Double Click": "Cuando el editor pierde el foco, editar con doble clic", "On Right Click": "Al hacer clic derecho", "Editor Keymap": "Mapeo de teclas del editor", "default": "por defecto", "vim": "vim", "emacs": "emacs", "⚠️ Please restart boostnote after you change the keymap": "⚠️ Por favor reinicie boostnote después de cambiar el mapeo de teclas", "Show line numbers in the editor": "Mostrar números de línea en el editor", "Allow editor to scroll past the last line": "Permitir al editor desplazarse más allá de la última línea", "Bring in web page title when pasting URL on editor": "Al pegar una URL en el editor, insertar el título de la web", "Preview": "Previsualizar", "Preview Font Size": "Previsualizar tamaño de la fuente", "Preview Font Family": "Previsualizar fuente", "Code Block Theme": "Tema de los bloques de código", "Allow preview to scroll past the last line": "Permitir a la previsualización desplazarse más allá de la última línea", "Show line numbers for preview code blocks": "Mostrar números de línea al previsualizar bloques de código", "LaTeX Inline Open Delimiter": "Delimitador de apertura de LaTeX en línea", "LaTeX Inline Close Delimiter": "Delimitador de cierre de LaTeX en línea", "LaTeX Block Open Delimiter": "Delimitador de apertura de bloque LaTeX", "LaTeX Block Close Delimiter": "Delimitador de cierre de bloque LaTeX", "PlantUML Server": "PlantUML Server", "Community": "Comunidad", "Subscribe to Newsletter": "Suscribirse al boletín", "GitHub": "GitHub", "Blog": "Blog", "Facebook Group": "Grupo de Facebook", "Twitter": "Twitter", "About": "Sobre", "Boostnote": "Boostnote", "An open source note-taking app made for programmers just like you.": "Una aplicación de código abierto para tomar notas hecho para programadores como tú.", "Website": "Página web", "Development": "Desarrollo", " : Development configurations for Boostnote.": " : Configuraciones de desarrollo para Boostnote.", "Copyright (C) 2017 - 2019 BoostIO": "Copyright (C) 2017 - 2019 BoostIO", "License: GPL v3": "Licencia: GPL v3", "Analytics": "Analítica", "Boostnote collects anonymous data for the sole purpose of improving the application, and strictly does not collect any personal information such the contents of your notes.": "Boostnote recopila datos anónimos con el único propósito de mejorar la aplicación, y de ninguna manera recopila información personal como el contenido de sus notas.", "You can see how it works on ": "Puedes ver cómo funciona en ", "You can choose to enable or disable this option.": "Puedes elegir activar o desactivar esta opción.", "Enable analytics to help improve Boostnote": "Activar recopilación de datos para ayudar a mejorar Boostnote", "Crowdfunding": "Crowdfunding", "Dear Boostnote users,": "Hola a todos,", "Thank you for using Boostnote!": "¡Gracias por usar Boostnote!", "Boostnote is used in about 200 different countries and regions by an awesome community of developers.": "Boostnote es utilizado en alrededor de 200 países y regiones diferentes por una increíble comunidad de desarrolladores.", "To support our growing userbase, and satisfy community expectations,": "Para continuar apoyando este crecimiento y satisfacer las expectativas de la comunidad,", "we would like to invest more time and resources in this project.": "nos gustaría invertir más tiempo y recursos en este proyecto.", "If you use Boostnote and see its potential, help us out by supporting the project on OpenCollective!": "Si te gusta este proyecto y ves su potencial, ¡puedes ayudar apoyándonos en OpenCollective!", "Thanks,": "Gracias,", "The Boostnote Team": "Equipo de Boostnote", "Support via OpenCollective": "Contribuir vía OpenCollective", "Language": "Idioma", "English": "Inglés", "German": "Alemán", "French": "Francés", "Show \"Saved to Clipboard\" notification when copying": "Mostrar la notificaión \"Guardado en Portapapeles\" al copiar", "All Notes": "Todas las notas", "Starred": "Destacado", "Are you sure to ": "¿Estás seguro de ", " delete": " eliminar", "this folder?": "esta carpeta?", "Confirm": "Confirmar", "Cancel": "Cancelar", "Markdown Note": "Nota Markdown", "This format is for creating text documents. Checklists, code blocks and Latex blocks are available.": "Formato para crear documentos de texto. Permite utilizar listas, bloques de código y LaTeX.", "Snippet Note": "Nota Snippet", "This format is for creating code snippets. Multiple snippets can be grouped into a single note.": "Formato para fragmentos de código. Múltiples fragmentos se pueden agrupar en una sola nota.", "Tab to switch format": "Tabulador para cambiar formato", "Updated": "Actualizado", "Created": "Creado", "Alphabetically": "Alfabéticamente", "Default View": "Vista por defecto", "Compressed View": "Vista comprimida", "Search": "Buscar", "Blog Type": "Tipo de blog", "Blog Address": "Dirección del blog", "Save": "Guardar", "Auth": "Autentificación", "Authentication Method": "Método de autentificación", "JWT": "JWT", "USER": "USUARIO", "Token": "Token", "Storage": "Almacenamiento", "Hotkeys": "Atajos de teclado", "Show/Hide Boostnote": "Mostrar/Ocultar Boostnote", "Restore": "Restaurar", "Permanent Delete": "Eliminar permanentemente", "Confirm note deletion": "Confirmar eliminación de nota", "This will permanently remove this note.": "Esto eliminará la nota permanentemente.", "Successfully applied!": "¡Aplicado con éxito!", "Albanian": "Albanés", "Chinese (zh-CN)": "Chino - China", "Chinese (zh-TW)": "Chino - Taiwán", "Czech": "Checo", "Danish": "Danés", "Japanese": "Japonés", "Korean": "Coreano", "Norwegian": "Noruego", "Polish": "Polaco", "Portuguese": "Portugués", "Spanish": "Español", "Unsaved Changes!": "¡Tienes que guardar!", "Russian": "Ruso", "Thai": "Thai (ภาษาไทย)", "Command(⌘)": "Comando(⌘)", "Editor Rulers": "Reglas del editor", "Enable": "Activar", "Disable": "Desactivar", "Sanitization": "Saneamiento", "Only allow secure html tags (recommended)": "Solo permitir etiquetas html seguras (recomendado)", "Allow styles": "Permitir estilos", "Allow dangerous html tags": "Permitir etiquetas html peligrosas", "⚠ You have pasted a link referring an attachment that could not be found in the location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠": "⚠ Ha pegado un enlace a un archivo adjunto que no se puede encontrar en el almacenamiento de esta nota. Pegar enlaces a archivos adjuntos solo está soportado si el origen y el destino son el mismo almacenamiento. ¡Por favor, mejor arrastre el archivo! ⚠", "Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.": "Convertir flechas textuales a símbolos bonitos. ⚠ Esto interferirá cuando use comentarios HTML en Markdown.", "Spellcheck disabled": "Deshabilitar corrector ortográfico", "Show menu bar": "Mostrar barra del menú", "Auto Detect": "Detección automática", "Snippet Default Language": "Lenguaje por defecto de los fragmentos de código", "Filter tags/folders...": "filter etiquetas/carpeta...", "Enable HTML label in mermaid flowcharts": "Enable HTML label in mermaid flowcharts ⚠ This option potentially has a risk of XSS.", "Wrap line in Snippet Note": "Wrap line in Snippet Note" } ================================================ FILE: locales/fa.json ================================================ { "Notes": "یادداشت ها", "Tags": "تگ ها", "Preferences": "تنظیمات", "Make a note": "یک یادداشت بنویس", "Ctrl": "Ctrl", "Ctrl(^)": "Ctrl", "to create a new note": "برای ساخت یک یادداشت", "Toggle Mode": "تغییر حالت نمایش", "Trash": "سطل آشغال", "Ok": "خوب", "MODIFICATION DATE": "تاریخ تغییر", "Words": "کلمات", "Letters": "حروف", "STORAGE": "ذخیره سازی", "FOLDER": "پوشه", "CREATION DATE": "تاریخ ایجاد", "NOTE LINK": "لینک یادداشت", ".md": ".md", ".txt": ".txt", ".html": ".html", ".pdf": ".pdf", "Print": "پرینت", "Your preferences for Boostnote": "تنظیمات شما برای boostnote", "Storage Locations": "ذخیره سازی", "Add Storage Location": "افزودن محل ذخیره سازی", "Add Folder": "ساخت پوشه", "Open Storage folder": "بازکردن پوشه ذخیره سازی", "Unlink": "حذف لینک", "Edit": "ویرایش", "Delete": "حذف", "Interface": "رابط کاربری", "Interface Theme": "تم رابط کاربری", "Default": "پیش فرض", "White": "روشن", "Solarized Dark": "سولارایز", "Dark": "تاریک", "Show a confirmation dialog when deleting notes": "هنگام حذف یادداشت ها یک پیام تایید نمایش بده.", "Editor Theme": "تم ویرایشگر", "Editor Font Size": "اندازه فونت ویرایشگر", "Editor Font Family": "فونت ویرایشگر", "Editor Indent Style": "حالت فاصله گذاری ویرایشگر", "Spaces": "Spaces", "Tabs": "Tabs", "Switch to Preview": "دیدن پیش نمایش", "When Editor Blurred": "وقتی ویرایشگر از حالت ویرایش خارج شد ", "When Editor Blurred, Edit On Double Click": "وقتی ویرایشگر از حالت ویرایش خارج شد و با دبل کلیک ویرایش کنید.", "On Right Click": "راست کلیک", "Editor Keymap": "ویرایشگر Keymap", "default": "پیش فرض", "vim": "vim", "emacs": "emacs", "⚠️ Please restart boostnote after you change the keymap": "⚠️ برنامه را دوباره راه اندازی کنید keymap لطفا بعد از تغییر", "Show line numbers in the editor": "شماره خطوط در ویرایشگر را نمایش بده.", "Allow editor to scroll past the last line": "اجازه بده ویرایشگر بعد از آخرین خط اسکرول کند.", "Bring in web page title when pasting URL on editor": "هنگامی که آدرس اینترنتی در ویرایشگر اضافه شد عنوان آنرا نمایش بده", "Preview": "پیش نمایش", "Preview Font Size": "اندازه فونتِ پیش نمایش", "Preview Font Family": " فونتِ پیش نمایش", "Code Block Theme": "تم بخش کد", "Allow preview to scroll past the last line": "اجازه بده پیش نمایش بعد از آخرین خط اسکرول کند.", "Show line numbers for preview code blocks": "شماره خطوط در پیش نمایش را نمایش بده.", "LaTeX Inline Open Delimiter": "جداکننده آغازین لاتکس خطی", "LaTeX Inline Close Delimiter": "جداکننده پایانی لاتکس خطی", "LaTeX Block Open Delimiter": "جداکننده آغازین بلوک لاتکس ", "LaTeX Block Close Delimiter": "جداکننده آغازین بلوک لاتکس ", "PlantUML Server": "PlantUML Server", "Community": "کامینیتی", "Subscribe to Newsletter": "اشتراک در خبرنامه", "GitHub": "گیت هاب", "Blog": "بلاگ", "Facebook Group": "گروه فیسبوک", "Twitter": "توییتر", "About": "درباره", "Boostnote": "Boostnote", "An open source note-taking app made for programmers just like you.": "یک دفترچه یادداشت متن باز ساخته شده برای برنامه نویسانی مثل تو.", "Website": "وبسایت", "Development": "توسعه", " : Development configurations for Boostnote.": " : پیکربندی توسعه برای Boostnote.", "Copyright (C) 2017 - 2019 BoostIO": "Copyright (C) 2017 - 2019 BoostIO", "License: GPL v3": "لایسنس: GPL v3", "Analytics": "تجزیه و تحلیل", "Boostnote collects anonymous data for the sole purpose of improving the application, and strictly does not collect any personal information such the contents of your notes.": "Bosstnote اطلاعات ناشناس را برای بهبود عملکرد برنامه جمع آوری می‌کند.اطلاعات شخصی شما مثل محتوای یادداشت ها هرگز برای هیچ هدفی جمع آوری نمی‌شوند", "You can see how it works on ": "میتوانید ببینید چگونه کار میکند. ", "You can choose to enable or disable this option.": "میتوانید این گزینه را فعال یا غیرفعال کنید.", "Enable analytics to help improve Boostnote": ".تجزیه تحلیل داده ها را برای کمک به بهبود برنامه فعال کن", "Crowdfunding": "جمع سپاری (سرمایه گذاری جمعی )", "Dear Boostnote users,": "عزیزان,", "Thank you for using Boostnote!": "از شما بخاطر استفاده از boostnote ممنونیم!", "Boostnote is used in about 200 different countries and regions by an awesome community of developers.": "در ۲۰۰ کشور مختلف دنیا مورد توسط جمعی از برنامه نویسان بی نظیر مورد استفاده قرار میگیرد. Boostnote", "To support our growing userbase, and satisfy community expectations,": "برای حمایت از این رشد ، و برآورده شدن انتظارات کامینیتی,", "we would like to invest more time and resources in this project.": "ما می خواهیم زمان و منابع بیشتری را در این پروژه سرمایه گذاری کنیم.", "If you use Boostnote and see its potential, help us out by supporting the project on OpenCollective!": "اگر این پروژه را دوست دارید و پتانسیلی در آن می‌بینید، میتوانید مارا در اوپن‌ کالکتیو حمایت کنید.", "Thanks,": "با تشکر,", "The Boostnote Team": "Boostnote نگهدارندگان", "Support via OpenCollective": "حمایت کنید OpenCollective از طریق", "Language": "زبان", "English": "انگلیسی", "German": "آلمانی", "French": "فرانسوی", "Show \"Saved to Clipboard\" notification when copying": "نمایش \"ذخیره در کلیپ‌بورد\" اطلاع رسانی هنگام کپی کردن", "All Notes": "همه یادداشت ها", "Starred": "ستاره دار", "Are you sure to ": " مطمئن هستید که", " delete": "حذف ", "this folder?": "این پوشه ؟", "Confirm": "تایید", "Cancel": "انصراف", "Markdown Note": "Markdown یادداشتِ", "This format is for creating text documents. Checklists, code blocks and Latex blocks are available.": "این قالب برای ساخت سند های متنی است. چک لیست ها و تکه کد ها و بلاک های لاتکس قابل استفاده اند.", "Snippet Note": "Snippet یادداشتِ", "This format is for creating code snippets. Multiple snippets can be grouped into a single note.": "این قالب برای ساخت تکه کد هاست. چند تکه کد میتوانند تبدیل به یک یادداشت شوند.", "Tab to switch format": "را بزنید Tab برای تغییر فرمت", "Updated": "بروزرسانی شد", "Created": "ایجاد شد", "Alphabetically": "بر اساس حروف الفبا", "Counter": "شمارشگر", "Default View": "نمایش پیش‌فرض", "Compressed View": "نمایش فشرده", "Search": "جستجو", "Blog Type": "نوع وبلاگ", "Blog Address": "آدرس وبلاگ", "Save": "ذخیره", "Auth": "هویت", "Authentication Method": "متد احراز هویت", "JWT": "JWT", "USER": "کاربر", "Token": "توکن", "Storage": "ذخیره سازی", "Hotkeys": "کلید های میانبر", "Show/Hide Boostnote": "Boostnote نمایش/پنهان کردن", "Restore": "بازگرداندن به حالت اول", "Permanent Delete": "حذف بدون بازگشت", "Confirm note deletion": ".حذف یادداشت را تایید کنید", "This will permanently remove this note.": ".این کار یادداشت را بطور دائمی حذف خواهد کرد", "Successfully applied!": "!با موفقیت اجرا شد", "Albanian": "آلبانی", "Chinese (zh-CN)": "چینی (zh-CN)", "Chinese (zh-TW)": "چینی (zh-TW)", "Czech": "Czech", "Danish": "دانمارکی", "Japanese": "ژاپنی", "Korean": "کره ای", "Norwegian": "نروژی", "Polish": "لهستانی", "Portuguese": "پرتغالی", "Spanish": "اسپانیایی", "Unsaved Changes!": "!باید ذخیره کنید", "UserName": "نام کاربری", "Password": "رمز عبور", "Russian": "روسی", "Thai": "Thai (ภาษาไทย)", "Command(⌘)": "Command(⌘)", "Editor Rulers": "Editor Rulers", "Enable": "فعال", "Disable": "غیرفعال", "Sanitization": "پاکسازی کردن", "Only allow secure html tags (recommended)": "(فقط تگ های امن اچ تی ام ال مجاز اند.(پیشنهاد میشود", "Allow styles": "حالت های مجاز", "Allow dangerous html tags": "تگ های خطرناک اچ‌ تی ام ال مجاز اند", "Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.": "Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.", "⚠ You have pasted a link referring an attachment that could not be found in the storage location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠": "⚠ You have pasted a link referring an attachment that could not be found in the storage location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠", "Spellcheck disabled": "Spellcheck disabled", "Show menu bar": "Show menu bar", "Auto Detect": "Auto Detect", "Filter tags/folders...": "filter tags/folders...", "Enable HTML label in mermaid flowcharts": "Enable HTML label in mermaid flowcharts ⚠ This option potentially has a risk of XSS.", "Wrap line in Snippet Note": "Wrap line in Snippet Note" } ================================================ FILE: locales/fr.json ================================================ { "Notes": "Notes", "Tags": "Tags", "Preferences": "Préférences", "Make a note": "Créer une note", "Ctrl": "Ctrl", "Ctrl(^)": "Ctrl", "to create a new note": "pour créer une nouvelle note", "Toggle Mode": "Toggle Mode", "Trash": "Poubelle", "Ok": "Ok", "MODIFICATION DATE": "DATE DE MODIFICATION", "Words": "Mots", "Letters": "Lettres", "STORAGE": "STOCKAGE", "FOLDER": "DOSSIER", "CREATION DATE": "DATE DE CREATION", "NOTE LINK": "LIEN DE LA NOTE", ".md": ".md", ".txt": ".txt", ".html": ".html", ".pdf": ".pdf", "Print": "Imprimer", "Your preferences for Boostnote": "Vos préférences pour Boostnote", "Storage Locations": "Stockages", "Add Storage Location": "Ajouter un espace de stockage", "Add Folder": "Ajouter un dossier", "Open Storage folder": "Ouvrir un dossier de stockage", "Unlink": "Délier", "Edit": "Editer", "Delete": "Supprimer", "Interface": "Interface", "Interface Theme": "Thème d'interface", "Default": "Effacer", "White": "Blanc", "Solarized Dark": "Foncé solarisé", "Dark": "Foncé", "Show a confirmation dialog when deleting notes": "Montrer une alerte de confirmation lors de la suppression de notes", "Editor Theme": "Theme d'éditeur", "Editor Font Size": "Taille de police de l'éditeur", "Editor Font Family": "Police de l'éditeur", "Editor Indent Style": "Style d'indentation de l'éditeur", "Spaces": "Espaces", "Tabs": "Tabulations", "Show only related tags": "Afficher uniquement les tags associés", "Switch to Preview": "Switcher vers l'aperçu", "When Editor Blurred": "Quand l'éditeur n'est pas sélectionné", "When Editor Blurred, Edit On Double Click": "Quand l'éditeur n'est pas sélectionné, éditer avec un double clic", "On Right Click": "Avec un clic droit", "Editor Keymap": "Keymap de l'éditeur", "default": "Par défaut", "vim": "vim", "emacs": "emacs", "⚠️ Please restart boostnote after you change the keymap": "⚠️ Redémarrez Boostnote après avoir changé la keymap", "Show line numbers in the editor": "Montrer les numéros de lignes dans l'éditeur", "Allow editor to scroll past the last line": "Contrôle si l'éditeur défile au-delà de la dernière ligne", "Bring in web page title when pasting URL on editor": "Mettre le titre de la page lors d'un collé d'une URL dans l'éditeur", "Preview": "Aperçu", "Preview Font Size": "Taille de police de l'aperçu", "Preview Font Family": "Police de l'aperçu", "Code Block Theme": "Thème des blocs de code", "Show line numbers for preview code blocks": "Montrer les numéros de lignes dans les blocs de code dans l'aperçu", "Enable smart quotes": "Activer les citations intelligentes", "LaTeX Inline Open Delimiter": "LaTeX Inline Open Delimiter", "LaTeX Inline Close Delimiter": "LaTeX Inline Close Delimiter", "LaTeX Block Open Delimiter": "LaTeX Block Open Delimiter", "LaTeX Block Close Delimiter": "LaTeX Block Close Delimiter", "PlantUML Server": "PlantUML Server", "Community": "Communauté", "Subscribe to Newsletter": "Souscrire à la newsletter", "GitHub": "GitHub", "Blog": "Blog", "Facebook Group": "Groupe Facebook", "Twitter": "Twitter", "About": "A propos", "Boostnote": "Boostnote", "An open source note-taking app made for programmers just like you.": "Une appli de prise de notes open-source faite pour les développeurs comme vous.", "Website": "Site web", "Development": "Développement", " : Development configurations for Boostnote.": " : Configurations de développement pour Boostnote.", "Copyright (C) 2017 - 2019 BoostIO": "Copyright (C) 2017 - 2019 BoostIO", "License: GPL v3": "License: GPL v3", "Analytics": "Analytics", "Boostnote collects anonymous data for the sole purpose of improving the application, and strictly does not collect any personal information such the contents of your notes.": "Boostnote collecte des données anonymisées dans le seul but d'améliorer l'application, et ne collecte aucune donnée personnelle telle que le contenu de vos notes.", "You can see how it works on ": "Vous pouvez voir comment ça marche sur", "You can choose to enable or disable this option.": "Vous pouvez choisir d'activer/désactiver cette option.", "Enable analytics to help improve Boostnote": "Activer la collecte de données anonymisées pour améliorer Boostnote", "Crowdfunding": "Crowdfunding", "Dear Boostnote users,": "Cher utilisateur,", "Thank you for using Boostnote!": "Merci d'utiliser Boostnote !", "Boostnote is used in about 200 different countries and regions by an awesome community of developers.": "Boostnote est utilisé dans plus de 200 pays et régions par une impressionnante communauté de développeurs.", "To support our growing userbase, and satisfy community expectations,": "Afin de continuer à grandir, et de satisfaire les attentes de la communauté,", "we would like to invest more time and resources in this project.": "nous aimerions investir d'avantage de temps et de ressources dans ce proje.", "If you use Boostnote and see its potential, help us out by supporting the project on OpenCollective!": "Si vous aimez ce projet et que vous en voyez tout le potentiel, vous pouvez aider par un support sur OpenCollective !", "Thanks,": "Merci,", "The Boostnote Team": "Les mainteneurs de Boostnote", "Support via OpenCollective": "Support via OpenCollective", "Language": "Langues", "Default New Note": "Nouvelle note par défaut", "English": "Anglais", "German": "Allemand", "French": "Français", "Show \"Saved to Clipboard\" notification when copying": "Montrer la notification \"Sauvegardé dans le presse-papiers\" lors de la copie", "All Notes": "Toutes les notes", "Starred": "Favoris", "Are you sure to ": "Etes-vous sûr de ", " delete": " supprimer", "this folder?": "ce dossier ?", "Confirm": "Confimer", "Cancel": "Annuler", "Markdown Note": "Note Markdown", "This format is for creating text documents. Checklists, code blocks and Latex blocks are available.": "Ce format est pour créer des documents texte. Checklists, blocks de code et blocks Latex sont disponibles.", "Snippet Note": "Note Snippet", "This format is for creating code snippets. Multiple snippets can be grouped into a single note.": "Ce format est pour créer des snippets de code. Plusieurs snippets peuvent être groupés en une seule note.", "Tab to switch format": "Tab pour changer de format", "Updated": "Mis à jour", "Created": "Créé", "Alphabetically": "De manière alphabétique", "Default View": "Vue par défaut", "Compressed View": "Vue compressée", "Search": "Chercher", "Blog Type": "Type du blog", "Blog Address": "Adresse du blog", "Save": "Sauvegarder", "Auth": "Auth", "Authentication Method": "Méthode d'Authentification", "JWT": "JWT", "USER": "USER", "Token": "Token", "Storage": "Stockage", "Hotkeys": "Raccourcis", "Show/Hide Boostnote": "Montrer/Cacher Boostnote", "Restore": "Restaurer", "Permanent Delete": "Supprimer définivitement", "Confirm note deletion": "Confirmer la suppression de la note", "This will permanently remove this note.": "Cela va supprimer cette note définitivement.", "Successfully applied!": " Succès !", "Albanian": "Albanais", "Chinese (zh-CN)": "Chinois (zh-CN)", "Chinese (zh-TW)": "Chinois (zh-TW)", "Czech": "Tchèque", "Toggle Editor Mode": "Basculer en mode éditeur", "Danish": "Danois", "Japanese": "Japonais", "Korean": "Coréen", "Norwegian": "Norvégien", "Polish": "Polonais", "Portuguese": "Portugais", "Spanish": "Espagnol", "Unsaved Changes!": "Il faut sauvegarder !", "Russian": "Russe", "Thai": "Thai (ภาษาไทย)", "Command(⌘)": "Command(⌘)", "Editor Rulers": "Règles dans l'éditeur", "Enable": "Activer", "Disable": "Désactiver", "Allow preview to scroll past the last line": "Permettre de scroller après la dernière ligne dans l'aperçu", "Sanitization": "Sanitization", "Only allow secure html tags (recommended)": "N'accepter que les tags html sécurisés (recommandé)", "Allow styles": "Accepter les styles", "Allow dangerous html tags": "Accepter les tags html dangereux", "Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.": "Convertir des flèches textuelles en jolis signes. ⚠ Cela va interferérer avec les éventuels commentaires HTML dans votre Markdown.", "⚠ You have pasted a link referring an attachment that could not be found in the storage location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠": "⚠ Vous avez collé un lien qui référence une pièce-jointe qui n'a pas pu être récupéré dans le dossier de stockage de la note. Coller des liens qui font référence à des pièces-jointes ne fonctionne que si la source et la destination et la même. Veuillez plutôt utiliser du Drag & Drop ! ⚠", "Save tags of a note in alphabetical order": "Sauvegarder les tags d'une note en ordre alphabétique", "Show tags of a note in alphabetical order": "Afficher les tags d'une note par ordre alphabétique", "Enable live count of notes": "Activer le comptage live des notes", "Enable smart table editor": "Activer l'intelligent éditeur de tableaux", "Snippet Default Language": "Langage par défaut d'un snippet", "Spellcheck disabled": "Spellcheck disabled", "Show menu bar": "Show menu bar", "Auto Detect": "Auto Detect", "New Snippet": "Nouveau snippet", "Custom CSS": "CSS personnalisé", "Snippet name": "Nom du snippet", "Snippet prefix": "Préfixe du snippet", "Delete Note": "Supprimer la note", "New notes are tagged with the filtering tags": "Les nouvelles notes sont taggées avec les tags de filtrage", "Filter tags/folders...": "filtrage tags/dossier...", "Enable HTML label in mermaid flowcharts": "Enable HTML label in mermaid flowcharts ⚠ This option potentially has a risk of XSS.", "Wrap line in Snippet Note": "Wrap line in Snippet Note" } ================================================ FILE: locales/hu.json ================================================ { "Notes": "Jegyzetek", "Tags": "Címkék", "Preferences": "Beállítások", "Make a note": "Új jegyzet", "Ctrl": "Ctrl", "Ctrl(^)": "Ctrl", "to create a new note": "hogy létrehozz egy jegyzetet", "Toggle Mode": "Mód Váltás", "Add tag...": "Tag hozzáadása...", "Trash": "Lomtár", "Ok": "oké", "MODIFICATION DATE": "MÓDOSÍTÁS DÁTUMA", "Words": "Szó", "Letters": "Betű", "STORAGE": "TÁROLÓ", "FOLDER": "KÖNYVTÁR", "CREATION DATE": "LÉTREHOZÁS DÁTUMA", "NOTE LINK": "JEGYZET LINKJE", ".md": ".md", ".txt": ".txt", ".html": ".html", ".pdf": ".pdf", "Print": "Nyomtatás", "Your preferences for Boostnote": "Boostnote beállításaid", "Help": "Súgó", "Hide Help": "Súgó Elrejtése", "Storage Locations": "Tárolók", "Add Storage Location": "Tároló Hozzáadása", "Add Folder": "Könyvtár Hozzáadása", "Open Storage folder": "Tároló Megnyitása", "Unlink": "Tároló Leválasztása", "Edit": "Szerkesztés", "Delete": "Törlés", "Interface": "Felület", "Interface Theme": "Felület Témája", "Default": "Alapértelmezett", "White": "Világos", "Solarized Dark": "Solarized Dark", "Dark": "Sötét", "Show a confirmation dialog when deleting notes": "Kérjen megerősítést a jegyzetek törlése előtt", "Disable Direct Write (It will be applied after restarting)": "Jegyzet Azonnali Mentésének Tiltása (Újraindítás igényel)", "Show only related tags": "Csak a kapcsolódó tag-ek megjelenítése", "Editor Theme": "Szerkesztő Témája", "Editor Font Size": "Szerkesztő Betűmérete", "Editor Font Family": "Szerkesztő Betűtípusa", "Editor Indent Style": "Szerkesztő Behúzása", "Spaces": "Szóközök", "Tabs": "Tabulátor karakterek", "Switch to Preview": "Váltás Megtekintésre", "When Editor Blurred": "Szerkesztő Elhagyásakor", "When Editor Blurred, Edit On Double Click": "Szerkesztő Elhagyásakor, Szerkesztő Megnyitása Dupla Kattintással", "On Right Click": "Jobb Egérgombbal", "Editor Keymap": "Szerkesztő Billentyűzetkiosztása", "default": "alapértelmezett", "vim": "vim", "emacs": "emacs", "⚠️ Please restart boostnote after you change the keymap": "⚠️ Kérlek, indítsd újra a programot a kiosztás megváltoztatása után", "Show line numbers in the editor": "Mutatassa a sorszámokat a szerkesztőben", "Allow editor to scroll past the last line": "A szerkesztőben az utolsó sor alá is lehessen görgetni", "Enable smart quotes": "Idézőjelek párjának automatikus beírása", "Bring in web page title when pasting URL on editor": "Weboldal főcímének lekérdezése URL cím beillesztésekor", "Preview": "Megtekintés", "Preview Font Size": "Megtekintés Betűmérete", "Preview Font Family": "Megtekintés Betűtípusa", "Code Block Theme": "Kódblokk Témája", "Allow preview to scroll past the last line": "Megtekintésben az utolsó sor alá is lehessen görgetni", "Show line numbers for preview code blocks": "Mutatassa a sorszámokat a megtekintett kódblokkokban", "LaTeX Inline Open Delimiter": "LaTeX Inline Nyitó Határolója", "LaTeX Inline Close Delimiter": "LaTeX Inline Záró Határolója", "LaTeX Block Open Delimiter": "LaTeX Blokk Nyitó Határolója", "LaTeX Block Close Delimiter": "LaTeX Blokk Záró Határolója", "PlantUML Server": "PlantUML Server", "Community": "Közösség", "Subscribe to Newsletter": "Feliratkozás a Hírlevélre", "GitHub": "GitHub", "Blog": "Blog", "Facebook Group": "Facebook Csoport", "Twitter": "Twitter", "About": "Névjegy", "Boostnote": "Boostnote", "An open source note-taking app made for programmers just like you.": "Nyílt forráskódú jegyzetkészítő program a hozzád hasonló programozóknak.", "Website": "Weboldal", "Development": "Fejlesztés", " : Development configurations for Boostnote.": " : Információk a Boostnote fejlesztéséről.", "Copyright (C) 2017 - 2019 BoostIO": "Szerzői jog (C) 2017 - 2019 BoostIO", "License: GPL v3": "Licensz: GPL v3", "Analytics": "Adatok elemzése", "Boostnote collects anonymous data for the sole purpose of improving the application, and strictly does not collect any personal information such the contents of your notes.": "A Boostnote névtelen adatokat gyűjt össze az alkalmazás tökéletesítése céljából, és szigorúan nem gyűjt semmilyen személyes adatot, például a jegyzetek tartalmát.", "You can see how it works on ": "A működéséről további információkat itt találsz: ", "You can choose to enable or disable this option.": "Kiválaszthatod, hogy engedélyezed, vagy tiltod ezt az opciót.", "Enable analytics to help improve Boostnote": "Adatok elemzésének engedélyezése a Boostnote tökéletesítésének céljából", "Crowdfunding": "Közösségi finanszírozás", "Dear Boostnote users,": "Kedves felhasználók!", "Thank you for using Boostnote!": "Köszönjük, hogy a Boostnote-ot használjátok!", "Boostnote is used in about 200 different countries and regions by an awesome community of developers.": "A Boostnote-ot több, mint 200 ország és régió fantasztikus fejlesztői használják.", "To support our growing userbase, and satisfy community expectations,": "Hogy folytathassuk ezt a fejlődést és kielégíthessük a felhasználói elvárásokat,", "we would like to invest more time and resources in this project.": "több időt és erőforrást szeretnénk a projektbe fektetni.", "If you use Boostnote and see its potential, help us out by supporting the project on OpenCollective!": "Ha tetszik a projekt és hasznosnak találod, te is segíthetsz ebben az OpenCollective-en keresztül küldött támogatásoddal.", "Thanks,": "Köszönjük!", "The Boostnote Team": "A Boostnote csapata", "Support via OpenCollective": "Támogatás Küldése", "Language": "Nyelv", "English": "English", "German": "German", "French": "French", "Show \"Saved to Clipboard\" notification when copying": "Mutassa a \"Vágólapra Másolva\" üzenetet másoláskor", "All Notes": "Minden Jegyzet", "Starred": "Kiemelt", "Are you sure to ": "Biztos, hogy ", " delete": " törölni", "this folder?": "szeretnéd a könyvtárat?", "Confirm": "Igen", "Cancel": "Mégse", "Markdown Note": "Markdown Jegyzet", "This format is for creating text documents. Checklists, code blocks and Latex blocks are available.": "Ez a formátum szöveges dokumentumok készítésére használható. Jelölőnégyzeteket, kódblokkokat és Latex blokkokat is tartalmazhat.", "Snippet Note": "Kód Jegyzet", "This format is for creating code snippets. Multiple snippets can be grouped into a single note.": "Ez a formátum kódrészletek készítésére használható. Több kódrészlet tárolására is alkalmas (pl. HTML + CSS).", "Tab to switch format": "Formátum váltásához nyomd le a Tabulátor billentyűt!", "Updated": "Módosítás", "Created": "Létrehozás", "Alphabetically": "Ábécé sorrendben", "Counter": "Számláló", "Default View": "Alapértelmezett Nézet", "Compressed View": "Tömörített Nézet", "Search": "Keresés", "Blog Type": "Blog Típusa", "Blog Address": "Blog Címe", "Save": "Mentés", "Auth": "Hitelesítés", "Authentication Method": "Hitelesítési Módszer", "JWT": "JWT", "USER": "USER", "Token": "Token", "Storage": "Tároló", "Hotkeys": "Gyorsbillentyűk", "Show/Hide Boostnote": "Boostnote Megjelenítése/Elrejtése", "Toggle Editor Mode": "Szerkesztő mód váltása", "Restore": "Visszaállítás", "Permanent Delete": "Végleges Törlés", "Confirm note deletion": "Törlés megerősítése", "This will permanently remove this note.": "A jegyzet véglegesen törölve lesz.", "Successfully applied!": "Sikeresen alkalmazva.", "Albanian": "Albanian", "Chinese (zh-CN)": "Chinese (zh-CN)", "Chinese (zh-TW)": "Chinese (zh-TW)", "Czech": "Czech", "Danish": "Danish", "Japanese": "Japanese", "Korean": "Korean", "Norwegian": "Norwegian", "Polish": "Polish", "Portuguese": "Portuguese", "Spanish": "Spanish", "Unsaved Changes!": "Mentened kell!", "UserName": "FelhasznaloNev", "Password": "Jelszo", "Russian": "Russian", "Hungarian": "Hungarian", "Thai": "Thai (ภาษาไทย)", "Command(⌘)": "Command(⌘)", "Add Storage": "Tároló hozzáadása", "Name": "Név", "Type": "Típus", "File System": "Fájlrendszer", "Setting up 3rd-party cloud storage integration:": "Harmadik féltől származó felhőtárolási integráció beállítása:", "Cloud-Syncing-and-Backup": "Cloud-Syncing-and-Backup", "Location": "Hely", "Add": "Hozzáadás", "Select Folder": "Könyvtár Kiválasztása", "Unlink Storage": "Tároló Leválasztása", "Unlinking removes this linked storage from Boostnote. No data is removed, please manually delete the folder from your hard drive if needed.": "A leválasztás eltávolítja ezt a tárolót a Boostnote-ból. Az adatok nem lesznek törölve, kérlek manuálisan töröld a könyvtárat a merevlemezről, ha szükséges.", "Editor Rulers": "Szerkesztő Margók", "Enable": "Engedélyezés", "Disable": "Tiltás", "Sanitization": "Tisztítás", "Only allow secure html tags (recommended)": "Csak a biztonságos html tag-ek engedélyezése (ajánlott)", "Render newlines in Markdown paragraphs as
": "Az újsor karaktert
soremelésként jelenítse meg a Markdown jegyzetekben", "Allow styles": "Stílusok engedélyezése", "Allow dangerous html tags": "Veszélyes html tag-ek engedélyezése", "Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.": "Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.", "⚠ You have pasted a link referring an attachment that could not be found in the storage location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠": "⚠ You have pasted a link referring an attachment that could not be found in the storage location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠", "Spellcheck disabled": "Spellcheck disabled", "Show menu bar": "Show menu bar", "Auto Detect": "Auto Detect", "Filter tags/folders...": "filter tags/folders...", "Enable HTML label in mermaid flowcharts": "Enable HTML label in mermaid flowcharts ⚠ This option potentially has a risk of XSS.", "Wrap line in Snippet Note": "Wrap line in Snippet Note" } ================================================ FILE: locales/it.json ================================================ { "Notes": "Note", "Tags": "Tags", "Preferences": "Preferenze", "Make a note": "Crea una nota", "Ctrl": "Ctrl", "Ctrl(^)": "Ctrl", "to create a new note": "per creare una nuova nota", "Toggle Mode": "Cambia Modalità", "Trash": "Cestino", "Ok": "Ok", "MODIFICATION DATE": "DATA DI MODIFICA", "Words": "Parole", "Letters": "Lettere", "STORAGE": "POSIZIONE", "FOLDER": "CARTELLA", "CREATION DATE": "DATA DI CREAZIONE", "NOTE LINK": "LINK NOTA", ".md": ".md", ".txt": ".txt", ".html": ".html", ".pdf": ".pdf", "Print": "Stampa", "Your preferences for Boostnote": "Le tue preferenze per Boostnote", "Storage Locations": "Posizioni", "Add Storage Location": "Aggiungi posizione", "Add Folder": "Aggiungi cartella", "Open Storage folder": "Apri cartella di memoria", "Unlink": "Scollega", "Edit": "Modifica", "Delete": "Elimina", "Interface": "Interfaccia", "Interface Theme": "Tema interfaccia", "Default": "Default", "White": "White", "Solarized Dark": "Solarized Dark", "Dark": "Dark", "Show a confirmation dialog when deleting notes": "Mostra finestra di conferma quando elimini delle note", "Editor Theme": "Tema dell'Editor", "Editor Font Size": "Dimensione font dell'editor", "Editor Font Family": "Famiglia del font dell'editor", "Editor Indent Style": "Stile di indentazione dell'editor", "Spaces": "Spazi", "Tabs": "Tabs", "Switch to Preview": "Passa all'anteprima", "When Editor Blurred": "Quando l'editor è sfocato", "When Editor Blurred, Edit On Double Click": "Quando l'Editor è sfocato, Modifica facendo doppio click", "On Right Click": "Cliccando con il tasto destro", "Editor Keymap": "keymapping dell'editor", "default": "default", "vim": "vim", "emacs": "emacs", "⚠️ Please restart boostnote after you change the keymap": "⚠️ Riavvia Boostnote dopo aver cambiato il keymapping", "Show line numbers in the editor": "Mostra numero di linea nell'editor", "Allow editor to scroll past the last line": "Consenti scrolling oltre l'ultima linea nell'editor", "Bring in web page title when pasting URL on editor": "Mostra il titolo della pagina web quando incolli un URL nell'editor", "Preview": "Anteprima", "Preview Font Size": "Dimensione font nell'anteprima", "Preview Font Family": "Famiglia del font dell'anteprima", "Code Block Theme": "Tema blocco di codice", "Allow preview to scroll past the last line": "Consenti scrolling oltre l'ultima linea", "Show line numbers for preview code blocks": "Mostra numero di linea per i blocchi di codice nell'Anteprima", "LaTeX Inline Open Delimiter": "Delimitatore inline per apertura LaTex", "LaTeX Inline Close Delimiter": "Delimitatore inline per chiusura LaTex", "LaTeX Block Open Delimiter": "Delimitatore apertura LaTex", "LaTeX Block Close Delimiter": "Delimitatore chiusura LaTex", "PlantUML Server": "PlantUML Server", "Community": "Community", "Subscribe to Newsletter": "Iscriviti alla Newsletter", "GitHub": "GitHub", "Blog": "Blog", "Facebook Group": "Gruppo Facebook", "Twitter": "Twitter", "About": "About", "Boostnote": "Boostnote", "An open source note-taking app made for programmers just like you.": "Un'app open-source per prendere appunti, fatta per sviluppatori come te.", "Website": "Sito Web", "Development": "Sviluppo", " : Development configurations for Boostnote.": " : Configurazioni di sviluppo per Boostnote.", "Copyright (C) 2017 - 2019 BoostIO": "Copyright (C) 2017 - 2019 BoostIO", "License: GPL v3": "Licenza: GPL v3", "Analytics": "Statistiche", "Boostnote collects anonymous data for the sole purpose of improving the application, and strictly does not collect any personal information such the contents of your notes.": "Boostnote raccoglie dati anonimi al solo scopo di migliorare l'applicazione, e non raccoglie nessuna informazione personale rigurado il contenuto delle note.", "You can see how it works on ": "Ypuoi vedere come su ", "You can choose to enable or disable this option.": "Puoi scegliere se attivare o disattivare questa opzione.", "Enable analytics to help improve Boostnote": "Attiva raccolta dati per aiutare a migliorare Boostnote", "Crowdfunding": "Crowdfunding", "Dear Boostnote users,": "Cari utenti,", "Thank you for using Boostnote!": "Grazie per stare utilizzando Boostnote!", "Boostnote is used in about 200 different countries and regions by an awesome community of developers.": "Boostnote è usato in circa 200 Paesi da una fantastica community di sviluppatori.", "To support our growing userbase, and satisfy community expectations,": "Per continuare a supportarne la crescita, e per soddisfare le aspettative della comunità,", "we would like to invest more time and resources in this project.": "ci piacerebbe investire più tempo e risorse in questo progetto.", "If you use Boostnote and see its potential, help us out by supporting the project on OpenCollective!": "Se ti piace questo progetto e ci vedi del potenziale, puoi aiutarci dandodci supporto su OpenCollective!", "Thanks,": "Grazie,", "The Boostnote Team": "I mantainers di Boostnote", "Support via OpenCollective": "Supporta su OpenCollective", "Language": "Lingua", "English": "Inglese", "German": "Tedesco", "French": "Francese", "Show \"Saved to Clipboard\" notification when copying": "Mostra la notifica \"Salvato negli Appunti\" quando copi:", "All Notes": "Tutte le note", "Starred": "Contribuite", "Are you sure to ": "Sei sicuro di ", " delete": " eliminare", "this folder?": "questa cartella?", "Confirm": "Conferma", "Cancel": "Cancella", "Markdown Note": "Nota in Markdown", "This format is for creating text documents. Checklists, code blocks and Latex blocks are available.": "Questo formato è per creare documenti di testo. Sono disponibili checklist, blocchi di codice and blocchi in Latex", "Snippet Note": "Nota Snippet", "This format is for creating code snippets. Multiple snippets can be grouped into a single note.": "Questo formato è per creare snippets. Più snippet possono essere raccolti in un'unica nota.", "Tab to switch format": "Premi Tab per cambiare formato", "Updated": "Aggiornato", "Created": "Creato", "Alphabetically": "Ordine alfabetico", "Counter": "Contatore", "Default View": "Visione di default", "Compressed View": "Visione compressa", "Search": "Cerca", "Blog Type": "Tipo di blog", "Blog Address": "Indirizzo del blog", "Save": "Salva", "Auth": "Autorizzazione", "Authentication Method": "Metodo di autenticazione", "JWT": "JWT", "USER": "USER", "Token": "Token", "Storage": "Storage", "Hotkeys": "Hotkeys", "Show/Hide Boostnote": "Mostra/Nascondi Boostnote", "Restore": "Ripristina", "Permanent Delete": "Elimina permanentemente", "Confirm note deletion": "Conferma eliiminazione della nota", "This will permanently remove this note.": "Questo eliminerà permanentemente questa nota.", "Successfully applied!": "Applicato con successo!", "Albanian": "Albanese", "Chinese (zh-CN)": "Cinese (zh-CN)", "Chinese (zh-TW)": "Cinese (zh-TW)", "Czech": "Ceco", "Danish": "Danese", "Japanese": "Giapponese", "Korean": "Koreano", "Norwegian": "Novergese", "Polish": "Polacco", "Portuguese": "Portoghese", "Spanish": "Spagnolo", "Unsaved Changes!": "Devi salvare!", "UserName": "UserName", "Password": "Password", "Russian": "Russo", "Thai": "Thai (ภาษาไทย)", "Command(⌘)": "Comando(⌘)", "Editor Rulers": "Regole dell'editor", "Enable": "Abilita", "Disable": "Disabilia", "Sanitization": "Bonifica", "Only allow secure html tags (recommended)": "Consenti solo tag HTML sicuri (raccomandato)", "Allow styles": "Consenti stili", "Allow dangerous html tags": "Consenti tag HTML pericolosi", "Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.": "Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.", "⚠ You have pasted a link referring an attachment that could not be found in the storage location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠": "⚠ You have pasted a link referring an attachment that could not be found in the storage location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠", "Spellcheck disabled": "Spellcheck disabled", "Show menu bar": "Show menu bar", "Auto Detect": "Auto Detect", "Filter tags/folders...": "filter tags/folders...", "Enable HTML label in mermaid flowcharts": "Enable HTML label in mermaid flowcharts ⚠ This option potentially has a risk of XSS.", "Wrap line in Snippet Note": "Wrap line in Snippet Note" } ================================================ FILE: locales/ja.json ================================================ { "Notes": "ノート", "Tags": "タグ", "Preferences": "設定", "Make a note": "ノート作成", "Ctrl": "Ctrl", "Ctrl(^)": "Ctrl", "to create a new note": "ノートを新規に作成", "Toggle Mode": "モード切替", "Add tag...": "タグを追加...", "Star": "お気に入り", "Fullscreen": "全画面", "Trash": "ゴミ箱", "Ok": "OK", "Info": "情報", "MODIFICATION DATE": "修正日", "Words": "ワード", "Letters": "文字", "STORAGE": "ストレージ", "FOLDER": "フォルダ", "CREATION DATE": "作成日", "NOTE LINK": "リンク", ".md": ".md", ".txt": ".txt", ".html": ".html", ".pdf": ".pdf", "Print": "印刷", "Your preferences for Boostnote": "Boostnoteの個人設定", "Help": "ヘルプ", "Hide Help": "ヘルプを隠す", "Storage Locations": "ストレージ", "Add Storage Location": "ストレージロケーションを追加", "Add Folder": "フォルダを追加", "Create new folder": "新規フォルダ作成", "Folder name": "フォルダ名", "Create": "作成", "Select Folder": "フォルダを選択", "Open Storage folder": "ストレージフォルダを開く", "Unlink": "リンク解除", "Edit": "編集", "Delete": "削除", "Interface": "インターフェース", "Interface Theme": "インターフェーステーマ", "Default": "デフォルト", "White": "白", "Solarized Dark": "明灰", "Dark": "暗灰", "Default New Note": "新規ノートの形式", "Always Ask": "作成時に聞く", "Show a confirmation dialog when deleting notes": "ノートを削除する時に確認ダイアログを表示する", "Disable Direct Write (It will be applied after restarting)": "直接編集を無効にする(設定反映には再起動が必要です)", "Save tags of a note in alphabetical order": "ノートのタグをアルファベット順に保存する", "Show tags of a note in alphabetical order": "ノートのタグをアルファベット順に表示する", "Show only related tags": "関連するタグのみ表示する", "Enable live count of notes": "タグ選択時にノート数を再計算して表示する", "New notes are tagged with the filtering tags": "新規ノートに選択中のタグを付与する", "Editor Theme": "エディタのテーマ", "Editor Font Size": "エディタのフォントサイズ", "Editor Font Family": "エディタのフォント", "Editor Indent Style": "エディタのインデント方法", "Spaces": "スペース", "Tabs": "タブ", "Switch to Preview": "プレビューへ移動", "When Editor Blurred": "エディタがフォーカスを失った時", "When Editor Blurred, Edit On Double Click": "エディタがフォーカスを失った時、ダブルクリックで編集", "On Right Click": "右クリック", "Editor Keymap": "エディタのキーマップ", "default": "デフォルト", "vim": "vim", "emacs": "emacs", "⚠️ Please restart boostnote after you change the keymap": "⚠️ キーマップ変更後は Boostnote を再起動してください", "Snippet Default Language": "スニペットのデフォルト言語", "Extract title from front matter": "Front matterからタイトルを抽出する", "Show line numbers in the editor": "エディタ内に行番号を表示", "Allow editor to scroll past the last line": "エディタが最終行以降にスクロールできるようにする", "Enable smart quotes": "スマートクォートを有効にする", "Bring in web page title when pasting URL on editor": "URLを貼り付けた時にWebページのタイトルを取得する", "Enable smart table editor": "スマートテーブルエディタを有効にする", "Enable HTML paste": "HTML貼り付けを有効にする", "Matching character pairs": "自動補完する括弧ペアの列記", "Matching character triples": "自動補完する3文字括弧の列記", "Exploding character pairs": "改行時に空行を挿入する括弧ペアの列記", "Custom MarkdownLint Rules": "カスタムMarkdownLintルール", "Preview": "プレビュー", "Preview Font Size": "プレビュー時フォントサイズ", "Preview Font Family": "プレビュー時フォント", "Code Block Theme": "コードブロックのテーマ", "Allow line through checkbox": "チェック済みチェックボックスのテキストに取り消し線を付与する", "Allow preview to scroll past the last line": "プレビュー時に最終行以降にスクロールできるようにする", "When scrolling, synchronize preview with editor": "エディタとプレビューのスクロールを同期する", "Show line numbers for preview code blocks": "プレビュー時のコードブロック内に行番号を表示する", "LaTeX Inline Open Delimiter": "LaTeX 開始デリミタ(インライン)", "LaTeX Inline Close Delimiter": "LaTeX 終了デリミタ(インライン)", "LaTeX Block Open Delimiter": "LaTeX 開始デリミタ(ブロック)", "LaTeX Block Close Delimiter": "LaTeX 終了デリミタ(ブロック)", "PlantUML Server": "PlantUML サーバー", "Custom CSS": "カスタムCSS", "Allow custom CSS for preview": "プレビュー用のカスタムCSSを許可する", "Community": "コミュニティ", "Subscribe to Newsletter": "ニュースレターを購読する", "GitHub": "GitHub", "Blog": "ブログ", "Facebook Group": "Facebook グループ", "Twitter": "Twitter", "About": "Boostnote について", "Boostnote": "Boostnote", "An open source note-taking app made for programmers just like you.": "あなたのようなプログラマー向けのオープンソースメモ書きアプリケーション", "Website": "ウェブサイト", "Development": "開発", " : Development configurations for Boostnote.": " : Boostnote の開発構成", "Copyright (C) 2017 - 2019 BoostIO": "Copyright (C) 2017 - 2019 BoostIO", "License: GPL v3": "ライセンス: GPL v3", "Analytics": "解析", "Boostnote collects anonymous data for the sole purpose of improving the application, and strictly does not collect any personal information such the contents of your notes.": "Boostnote はアプリケーションの機能向上だけを目的に匿名データを収集します。ノートの内容を含めた個人の情報は一切収集しません。", "You can see how it works on ": "どのように動くかをこちらで確認できます ", "You can choose to enable or disable this option.": "このオプションは有効/無効を選択できます。", "Enable analytics to help improve Boostnote": "Boostnote の機能向上のための解析機能を有効にする", "Crowdfunding": "クラウドファンディング", "Dear Boostnote users,": "みなさまへ", "Thank you for using Boostnote!": "Boostnote を利用いただき、ありがとうございます!", "Boostnote is used in about 200 different countries and regions by an awesome community of developers.": "Boostnote はおよそ 200 の国と地域において、開発者コミュニティを中心に利用されています。", "To support our growing userbase, and satisfy community expectations,": "この成長を持続し、またコミュニティからの要望に答えるため、", "we would like to invest more time and resources in this project.": "私達はこのプロジェクトにより多くの時間とリソースを投資したいと考えています。", "If you use Boostnote and see its potential, help us out by supporting the project on OpenCollective!": "もしあなたがこのプロジェクトとそのポテンシャルを気に入っていただけたのであれば、OpenCollective を通じて支援いただくことができます!", "Thanks,": "ありがとうございます。", "The Boostnote Team": "Boostnote メンテナンスチーム", "Support via OpenCollective": "OpenCollective を通じて支援します", "Language": "言語", "English": "英語", "German": "ドイツ語", "French": "フランス語", "Show \"Saved to Clipboard\" notification when copying": "クリップボードコピー時に \"クリップボードに保存\" 通知を表示する", "All Notes": "すべてのノート", "Pin to Top": "一番上にピン留め", "Remove pin": "ピン削除", "Clone Note": "ノート複製", "Copy Note Link": "ノートのリンクをコピー", "Publish Blog": "ブログを公開", "Starred": "スター付き", "Empty Trash": "ゴミ箱を空にする", "Restore Note": "ノート復元", "Rename Folder": "フォルダの名称変更", "Export Folder": "フォルダの書き出し", "Export as txt": ".txtで書き出す", "Export as md": ".mdで書き出す", "Delete Folder": "フォルダ削除", "Are you sure to ": "本当に ", " delete": "このフォルダを", "this folder?": "削除しますか?", "Confirm": "確認", "Cancel": "キャンセル", "Markdown Note": "マークダウン", "This format is for creating text documents. Checklists, code blocks and Latex blocks are available.": "このフォーマットはテキスト文書を作成することを目的としています。チェックリストや比較的長いコード、LaTeX にも向いています。", "Snippet Note": "スニペット", "This format is for creating code snippets. Multiple snippets can be grouped into a single note.": "このフォーマットは短いコードスニペットを作成することを目的としています。複数のコードスニペットを1つのグループにまとめて1つのノートとして扱うことも可能です。", "Tab to switch format": "フォーマット切り替えタブ", "Updated": "更新日時", "Created": "作成日時", "Alphabetically": "アルファベット順", "Counter": "数順", "Default View": "デフォルトビュー", "Compressed View": "圧縮ビュー", "Search": "検索", "Blog Type": "ブログの種類", "Blog Address": "ブログのアドレス", "Save": "保存", "Auth": "認証", "Authentication Method": "認証方法", "JWT": "JWT", "USER": "ユーザー", "Token": "トークン", "Storage": "ストレージ", "Hotkeys": "ホットキー", "Show/Hide Boostnote": "Boostnote の表示/非表示", "Toggle Editor Mode": "エディタモードの切替", "Delete Note": "ノート削除", "Paste HTML": "HTMLで貼り付け", "Restore": "リストア", "Permanent Delete": "永久に削除", "Confirm note deletion": "ノート削除確認", "This will permanently remove this note.": "本当にこのノートを削除します。", "Successfully applied!": "成功しました!", "Albanian": "アルバニア語", "Chinese (zh-CN)": "簡体字中国語 (zh-CN)", "Chinese (zh-TW)": "繁体字中国語 (zh-TW)", "Czech": "チェコ語", "Danish": "デンマーク語", "Japanese": "日本語", "Korean": "韓国語", "Norwegian": "ノルウェー語", "Polish": "ポーランド語", "Portuguese": "ポルトガル語", "Spanish": "スペイン語", "Unsaved Changes!": "保存してください!", "UserName": "ユーザー名", "Password": "パスワード", "Russian": "ロシア語", "Hungarian": "ハンガリー語", "Thai": "Thai (ภาษาไทย)", "Command(⌘)": "コマンド(⌘)", "Add Storage": "ストレージを追加", "Name": "名前", "Type": "種類", "File System": "ファイルシステム", "Setting up 3rd-party cloud storage integration:": "サードパーティのクラウドストレージとの統合を設定する:", "Cloud-Syncing-and-Backup": "クラウド同期とバックアップ", "Location": "ロケーション", "Add": "追加", "Export Storage": "ストレージの書き出し", "Unlink Storage": "ストレージのリンクを解除", "Unlinking removes this linked storage from Boostnote. No data is removed, please manually delete the folder from your hard drive if needed.": "リンクの解除ではBoostnoteからリンクされたストレージを削除しますが、データは削除されません。データを削除する場合はご自身でハードドライブからフォルダを削除してください。", "Editor Rulers": "罫線", "Enable": "有効", "Disable": "無効", "Sanitization": "サニタイズ", "Only allow secure html tags (recommended)": "安全なHTMLタグのみ利用を許可する(推奨)", "Render newlines in Markdown paragraphs as
": "Markdown 中の改行でプレビューも改行する", "Allow styles": "スタイルを許可する", "Allow dangerous html tags": "安全でないHTMLタグの利用を許可する", "Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.": "テキストの矢印を綺麗な記号に変換する ⚠ この設定はMarkdown内でのHTMLコメントに干渉します。", "⚠ You have pasted a link referring an attachment that could not be found in the storage location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠": "⚠ このノートのストレージに存在しない添付ファイルへのリンクを貼り付けました。添付ファイルへのリンクの貼り付けは同一ストレージ内でのみサポートされています。代わりに添付ファイルをドラッグアンドドロップしてください! ⚠", "Spellcheck disabled": "スペルチェック無効", "Show menu bar": "メニューバーを表示", "Auto Detect": "自動検出", "Filter tags/folders...": "タグ/フォルダをフィルタ...", "Enable HTML label in mermaid flowcharts": "mermaid flowchartでHTMLラベルを有効にする ⚠ このオプションには潜在的なXSSの危険性があります。", "Wrap line in Snippet Note": "行を右端で折り返す(Snippet Note)" } ================================================ FILE: locales/ko.json ================================================ { "Notes": "노트", "Tags": "태그", "Preferences": "설정", "Make a note": "노트 생성", "Ctrl": "Ctrl", "Ctrl(^)": "Ctrl", "to create a new note": "to create a new note", "Toggle Mode": "모드 전환", "Trash": "쓰레기 통", "Ok": "확인", "MODIFICATION DATE": "변경 날짜", "Words": "단어 수", "Letters": "글자 수", "STORAGE": "STORAGE", "FOLDER": "FOLDER", "CREATION DATE": "생성일", "NOTE LINK": "노트 링크", ".md": ".md", ".txt": ".txt", ".html": ".html", ".pdf": ".pdf", "Print": "인쇄", "Your preferences for Boostnote": "Boostnote 설정", "Storage Locations": "저장소", "Add Storage Location": "저장소 위치 추가", "Add Folder": "폴더 추가", "Open Storage folder": "저장소 위치 열기", "Unlink": "연결 해제", "Edit": "편집", "Delete": "삭제", "Interface": "인터페이스", "Interface Theme": "인터페이스 테마", "Default": "Default", "White": "White", "Solarized Dark": "Solarized Dark", "Dark": "Dark", "Show a confirmation dialog when deleting notes": "노트 삭제시 확인 다이얼로그를 보여줌", "Editor Theme": "에디터 테마", "Editor Font Size": "에디터 폰트 크기", "Editor Font Family": "에디터 폰트 종류", "Editor Indent Style": "에디터 인덴트 스타일", "Spaces": "Spaces", "Tabs": "Tabs", "Switch to Preview": "프리뷰 전환", "When Editor Blurred": "에디터 선택이 풀렸을 때", "When Editor Blurred, Edit On Double Click": "에디터 선택이 풀렸을 때, 더블클릭으로 편집", "On Right Click": "우클릭시", "Editor Keymap": "에디터 키맵", "default": "default", "vim": "vim", "emacs": "emacs", "⚠️ Please restart boostnote after you change the keymap": "⚠️ 키맵 변경후에는 앱을 다시 재시작해주세요.", "Show line numbers in the editor": "에디터에서 줄 번호를 보여줌", "Allow editor to scroll past the last line": "마지막 줄보다 더 밑으로 스크롤 가능하게 해줌", "Bring in web page title when pasting URL on editor": "URL이 붙여넣기 되었을 때, 웹페이지 타이틀을 가져옴", "Preview": "프리뷰", "Preview Font Size": "프리뷰시 폰트 크기", "Preview Font Family": "프리뷰시 폰트 종류", "Code Block Theme": "코드 블록 테마", "Allow preview to scroll past the last line": "Allow preview to scroll past the last line", "Show line numbers for preview code blocks": "Show line numbers for preview code blocks", "LaTeX Inline Open Delimiter": "LaTeX 인라인 블록 열기 기호", "LaTeX Inline Close Delimiter": "LaTeX 인라인 블록 닫기 기호", "LaTeX Block Open Delimiter": "LaTeX 블록 열기 기호", "LaTeX Block Close Delimiter": "LaTeX 블록 닫기 기호", "PlantUML Server": "PlantUML Server", "Community": "커뮤니티", "Subscribe to Newsletter": "뉴스레터 구독", "GitHub": "깃허브", "Blog": "블로그", "Facebook Group": "페이스북 그룹", "Twitter": "트위터", "About": "About", "Boostnote": "Boostnote", "An open source note-taking app made for programmers just like you.": "여러분과 같은 프로그래머를 위한 오픈소스 노트 앱", "Website": "웹사이트", "Development": "개발", " : Development configurations for Boostnote.": " : Boostnote 개발을 위한 설정들.", "Copyright (C) 2017 - 2019 BoostIO": "Copyright (C) 2017 - 2019 BoostIO", "License: GPL v3": "License: GPL v3", "Analytics": "사용 통계/분석", "Boostnote collects anonymous data for the sole purpose of improving the application, and strictly does not collect any personal information such the contents of your notes.": "Boostnote는 서비스개선을 위해 익명으로 데이터를 수집하며 노트의 내용과같은 일체의 개인정보는 수집하지 않습니다.", "You can see how it works on ": "여기서 어떻게 작동하는지 확인하실 수 있습니다.", "You can choose to enable or disable this option.": "사용 통계/분석 수집 여부는 직접 선택하실 수 있습니다.", "Enable analytics to help improve Boostnote": "Boostnote 개선을 돕기위해 사용 통계/분석 수집 허가", "Crowdfunding": "크라우드펀딩", "Dear Boostnote users,": "모두들에게,", "Thank you for using Boostnote!": "사용해주셔서 감사합니다!", "Boostnote is used in about 200 different countries and regions by an awesome community of developers.": "Boostnote는 200여개의 국가에서 뛰어난 개발자들에게 사용되어지고 있습니다.", "To support our growing userbase, and satisfy community expectations,": "성장을 계속하기 위해 그리고 커뮤니티의 기대를 만족시키기 위해서,", "we would like to invest more time and resources in this project.": "저희도 시간과 자원을 더 쏟아붓고 싶습니다.", "If you use Boostnote and see its potential, help us out by supporting the project on OpenCollective!": "만약 이 프로젝트가 마음에 들고 가능성이 보이신다면, 저희를 OpenCollective에서 도와주세요!", "Thanks,": "감사합니다,", "The Boostnote Team": "Boostnote 메인테이너", "Support via OpenCollective": "OpenCollective로 지원하기", "Language": "언어(Language)", "English": "English", "German": "German", "French": "French", "Show \"Saved to Clipboard\" notification when copying": "Show \"Saved to Clipboard\" notification when copying", "All Notes": "모든 노트들", "Starred": "즐겨찾기", "Are you sure to ": "정말 이 폴더를", " delete": " 삭제", "this folder?": "하시겠습니까?", "Confirm": "확인", "Cancel": "취소", "Markdown Note": "마크다운 노트", "This format is for creating text documents. Checklists, code blocks and Latex blocks are available.": "텍스트 문서를 작성하기 위한 형식입니다. 체크리스트, 코드블록 그리고 LaTeX블록이 사용가능합니다.", "Snippet Note": "스닙펫 노트", "This format is for creating code snippets. Multiple snippets can be grouped into a single note.": "코드스닙펫을 작성하기 위한 형식입니다. 여러개의 스닙펫들을 하나의 노트로 만들 수 있습니다.", "Tab to switch format": "탭으로 형식을 바꿀 수 있습니다.", "Updated": "수정일 순", "Created": "생성일 순", "Alphabetically": "알파벳 순", "Default View": "크게 보기", "Compressed View": "작게 보기", "Search": "검색", "Blog Type": "블로그 종류", "Blog Address": "블로그 주소", "Save": "저장", "Auth": "인증", "Authentication Method": "인증방식", "JWT": "JWT", "USER": "USER", "토큰": "Token", "저장소": "저장소", "단축키": "단축키", "Show/Hide Boostnote": "앱 열기/숨기기", "Restore": "복구", "Permanent Delete": "완전 삭제", "Confirm note deletion": "노트 삭제 확인", "This will permanently remove this note.": "노트를 완전히 삭제하게 됩니다.", "Successfully applied!": "설정됨!", "Albanian": "Albanian", "Chinese (zh-CN)": "Chinese (zh-CN)", "Chinese (zh-TW)": "Chinese (zh-TW)", "Czech": "체코 어", "Danish": "Danish", "Japanese": "Japanese", "Korean": "Korean", "Norwegian": "Norwegian", "Polish": "Polish", "Portuguese": "Portuguese", "Spanish": "Spanish", "Unsaved Changes!": "저장해주세요!", "Russian": "Russian", "Thai": "Thai (ภาษาไทย)", "Command(⌘)": "Command(⌘)", "Delete Folder": "폴더 삭제", "This will delete all notes in the folder and can not be undone.": "폴더의 모든 노트를 지우게 되고, 되돌릴 수 없습니다.", "UserName": "유저명", "Password": "패스워드", "Storage": "저장소", "Hotkeys": "단축키", "Editor Rulers": "Editor Rulers", "Enable": "Enable", "Disable": "Disable", "Sanitization": "허용 태그 범위", "Only allow secure html tags (recommended)": "안전한 HTML 태그만 허용 (추천)", "Allow styles": "style 태그, 속성까지 허용", "Allow dangerous html tags": "모든 위험한 태그 허용", "Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.": "Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.", "⚠ You have pasted a link referring an attachment that could not be found in the storage location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠": "⚠ You have pasted a link referring an attachment that could not be found in the storage location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠", "Spellcheck disabled": "Spellcheck disabled", "Show menu bar": "Show menu bar", "Auto Detect": "Auto Detect", "Filter tags/folders...": "filter tags/folders...", "Enable HTML label in mermaid flowcharts": "Enable HTML label in mermaid flowcharts ⚠ This option potentially has a risk of XSS.", "Wrap line in Snippet Note": "Wrap line in Snippet Note" } ================================================ FILE: locales/no.json ================================================ { "Notes": "Notes", "Tags": "Tags", "Preferences": "Preferences", "Make a note": "Make a note", "Ctrl": "Ctrl", "Ctrl(^)": "Ctrl", "to create a new note": "to create a new note", "Toggle Mode": "Toggle Mode", "Trash": "Trash", "MODIFICATION DATE": "MODIFICATION DATE", "Words": "Words", "Letters": "Letters", "STORAGE": "STORAGE", "FOLDER": "FOLDER", "CREATION DATE": "CREATION DATE", "NOTE LINK": "NOTE LINK", ".md": ".md", ".txt": ".txt", ".html": ".html", ".pdf": ".pdf", "Print": "Print", "Your preferences for Boostnote": "Your preferences for Boostnote", "Storage Locations": "Storage Locations", "Add Storage Location": "Add Storage Location", "Add Folder": "Add Folder", "Open Storage folder": "Open Storage folder", "Unlink": "Unlink", "Edit": "Edit", "Delete": "Delete", "Interface": "Interface", "Interface Theme": "Interface Theme", "Default": "Default", "White": "White", "Solarized Dark": "Solarized Dark", "Dark": "Dark", "Show a confirmation dialog when deleting notes": "Show a confirmation dialog when deleting notes", "Editor Theme": "Editor Theme", "Editor Font Size": "Editor Font Size", "Editor Font Family": "Editor Font Family", "Editor Indent Style": "Editor Indent Style", "Spaces": "Spaces", "Tabs": "Tabs", "Switch to Preview": "Switch to Preview", "When Editor Blurred": "When Editor Blurred", "When Editor Blurred, Edit On Double Click": "When Editor Blurred, Edit On Double Click", "On Right Click": "On Right Click", "Editor Keymap": "Editor Keymap", "default": "default", "vim": "vim", "emacs": "emacs", "⚠️ Please restart boostnote after you change the keymap": "⚠️ Please restart boostnote after you change the keymap", "Show line numbers in the editor": "Show line numbers in the editor", "Allow editor to scroll past the last line": "Allow editor to scroll past the last line", "Bring in web page title when pasting URL on editor": "Bring in web page title when pasting URL on editor", "Preview": "Preview", "Preview Font Size": "Preview Font Size", "Preview Font Family": "Preview Font Family", "Code Block Theme": "Code Block Theme", "Allow preview to scroll past the last line": "Allow preview to scroll past the last line", "Show line numbers for preview code blocks": "Show line numbers for preview code blocks", "LaTeX Inline Open Delimiter": "LaTeX Inline Open Delimiter", "LaTeX Inline Close Delimiter": "LaTeX Inline Close Delimiter", "LaTeX Block Open Delimiter": "LaTeX Block Open Delimiter", "LaTeX Block Close Delimiter": "LaTeX Block Close Delimiter", "PlantUML Server": "PlantUML Server", "Community": "Community", "Subscribe to Newsletter": "Subscribe to Newsletter", "GitHub": "GitHub", "Blog": "Blog", "Facebook Group": "Facebook Group", "Twitter": "Twitter", "About": "About", "Boostnote": "Boostnote", "An open source note-taking app made for programmers just like you.": "An open source note-taking app made for programmers just like you.", "Website": "Website", "Development": "Development", " : Development configurations for Boostnote.": " : Development configurations for Boostnote.", "Copyright (C) 2017 - 2019 BoostIO": "Copyright (C) 2017 - 2019 BoostIO", "License: GPL v3": "License: GPL v3", "Analytics": "Analytics", "Boostnote collects anonymous data for the sole purpose of improving the application, and strictly does not collect any personal information such the contents of your notes.": "Boostnote collects anonymous data for the sole purpose of improving the application, and strictly does not collect any personal information such the contents of your notes.", "You can see how it works on ": "You can see how it works on ", "You can choose to enable or disable this option.": "You can choose to enable or disable this option.", "Enable analytics to help improve Boostnote": "Enable analytics to help improve Boostnote", "Crowdfunding": "Crowdfunding", "Dear Boostnote users,": "Dear Boostnote users,", "Thank you for using Boostnote!": "Thank you for using Boostnote!", "Boostnote is used in about 200 different countries and regions by an awesome community of developers.": "Boostnote is used in about 200 different countries and regions by an awesome community of developers.", "To support our growing userbase, and satisfy community expectations,": "To support our growing userbase, and satisfy community expectations,", "we would like to invest more time and resources in this project.": "we would like to invest more time and resources in this project.", "If you use Boostnote and see its potential, help us out by supporting the project on OpenCollective!": "If you use Boostnote and see its potential, help us out by supporting the project on OpenCollective!", "Thanks,": "Thanks,", "The Boostnote Team": "The Boostnote Team", "Support via OpenCollective": "Support via OpenCollective", "Language": "Language", "English": "English", "German": "German", "French": "French", "Show \"Saved to Clipboard\" notification when copying": "Show \"Saved to Clipboard\" notification when copying", "All Notes": "All Notes", "Starred": "Starred", "Are you sure to ": "Are you sure to ", " delete": " delete", "this folder?": "this folder?", "Confirm": "Confirm", "Cancel": "Cancel", "Markdown Note": "Markdown Note", "This format is for creating text documents. Checklists, code blocks and Latex blocks are available.": "This format is for creating text documents. Checklists, code blocks and Latex blocks are available.", "Snippet Note": "Snippet Note", "This format is for creating code snippets. Multiple snippets can be grouped into a single note.": "This format is for creating code snippets. Multiple snippets can be grouped into a single note.", "Tab to switch format": "Tab to switch format", "Updated": "Updated", "Created": "Created", "Alphabetically": "Alphabetically", "Default View": "Default View", "Compressed View": "Compressed View", "Search": "Search", "Blog Type": "Blog Type", "Blog Address": "Blog Address", "Save": "Save", "Auth": "Auth", "Authentication Method": "Authentication Method", "JWT": "JWT", "USER": "USER", "Token": "Token", "Storage": "Storage", "Hotkeys": "Hotkeys", "Show/Hide Boostnote": "Show/Hide Boostnote", "Restore": "Restore", "Permanent Delete": "Permanent Delete", "Confirm note deletion": "Confirm note deletion", "This will permanently remove this note.": "This will permanently remove this note.", "Successfully applied!": "Successfully applied!", "Albanian": "Albanian", "Chinese (zh-CN)": "Chinese (zh-CN)", "Chinese (zh-TW)": "Chinese (zh-TW)", "Czech": "Czech", "Danish": "Danish", "Japanese": "Japanese", "Korean": "Korean", "Norwegian": "Norwegian", "Polish": "Polish", "Portuguese": "Portuguese", "Spanish": "Spanish", "Unsaved Changes!": "Unsaved Changes!", "Russian": "Russian", "Thai": "Thai (ภาษาไทย)", "Editor Rulers": "Editor Rulers", "Enable": "Enable", "Disable": "Disable", "Sanitization": "Sanitization", "Only allow secure html tags (recommended)": "Only allow secure html tags (recommended)", "Allow styles": "Allow styles", "Allow dangerous html tags": "Allow dangerous html tags", "Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.": "Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.", "⚠ You have pasted a link referring an attachment that could not be found in the storage location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠": "⚠ You have pasted a link referring an attachment that could not be found in the storage location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠", "Spellcheck disabled": "Spellcheck disabled", "Show menu bar": "Show menu bar", "Auto Detect": "Auto Detect", "Filter tags/folders...": "filter tags/folders...", "Enable HTML label in mermaid flowcharts": "Enable HTML label in mermaid flowcharts ⚠ This option potentially has a risk of XSS.", "Wrap line in Snippet Note": "Wrap line in Snippet Note" } ================================================ FILE: locales/pl.json ================================================ { "Notes": "Notatki", "Tags": "Tagi", "Preferences": "Ustawienia", "Make a note": "Stwórz notatkę", "Ctrl": "Ctrl", "Ctrl(^)": "Ctrl", "to create a new note": "Aby stworzyć nową notatkę", "Toggle Mode": "Przełącz tryb", "Trash": "Kosz", "Ok": "dobrze", "MODIFICATION DATE": "DATA MODYFIKACJI", "Words": "Słowa", "Letters": "Litery", "STORAGE": "MIEJSCE ZAPISU", "FOLDER": "FOLDER", "CREATION DATE": "DATA UTWORZENIA", "NOTE LINK": "LINK NOTATKI", "Toggle Editor Mode": "Przełączanie trybu edytora", ".md": ".md", ".txt": ".txt", ".html": ".html", ".pdf": ".pdf", "Print": "Drukuj", "Help": "Pomoc", "Your preferences for Boostnote": "Twoje ustawienia dla Boostnote", "Storage Locations": "Storage Locations", "Add Storage Location": "Dodaj miejsce zapisu", "Add Folder": "Dodaj Folder", "Open Storage folder": "Otwórz folder zapisu", "Unlink": "Odlinkuj", "Edit": "Edytuj", "Delete": "Usuń", "Interface": "Interfejs", "Interface Theme": "Styl interfejsu", "Default": "Domyślny", "White": "Biały", "Solarized Dark": "Solarized Dark", "Dark": "Ciemny", "Show a confirmation dialog when deleting notes": "Zatwierdzaj usunięcie notatek", "Show only related tags": "Pokazuj tylko powiązane tagi", "Editor Theme": "Wygląd edytora", "Editor Font Size": "Rozmiar czcionki", "Editor Font Family": "Czcionka", "Snippet Default Language": "Domyślny język snippetów kodu", "Editor Indent Style": "Rodzaj wcięć", "Spaces": "Spacje", "Tabs": "Tabulatory", "Switch to Preview": "Przełącz na podgląd", "When Editor Blurred": "Gdy edytor jest w tle", "When Editor Blurred, Edit On Double Click": "Gdy edytor jest w tle, edytuj za pomocą podwójnego kliknięcia", "On Right Click": "Kliknięcie prawego przycisku myszy", "Editor Keymap": "Układ klawiszy edytora", "default": "domyślny", "vim": "vim", "emacs": "emacs", "⚠️ Please restart boostnote after you change the keymap": "⚠️ Musisz zrestartować Boostnote po zmianie ustawień klawiszy", "Show line numbers in the editor": "Pokazuj numery lini w edytorze", "Allow editor to scroll past the last line": "Pozwalaj edytorowi na przewijanie poza końcową linię", "Bring in web page title when pasting URL on editor": "Wprowadź tytuł wklejanej strony WWW do edytora", "Preview": "Podgląd", "Preview Font Size": "Rozmiar czcionki", "Enable smart quotes": "Włącz inteligentne cytowanie", "Render newlines in Markdown paragraphs as
": "Dodawaj nowe linie w notatce jako znacznik
", "Preview Font Family": "Czcionka", "Code Block Theme": "Styl bloku kodu", "Allow preview to scroll past the last line": "Pozwalaj podglądowi na przewijanie poza końcową linię", "Show line numbers for preview code blocks": "Pokazuj numery lini dla podglądu bloków kodu", "LaTeX Inline Open Delimiter": "Otwarcie liniowego ogranicznika LaTeX", "LaTeX Inline Close Delimiter": "Zamknięcie liniowego ogranicznika LaTeX", "LaTeX Block Open Delimiter": "Otwarcie blokowego ogranicznika LaTeX", "LaTeX Block Close Delimiter": "Zamknięcie blokowego ogranicznika LaTeX", "PlantUML Server": "Serwer PlantUML", "Community": "Społeczność", "Subscribe to Newsletter": "Zapisz się do Newslettera", "GitHub": "GitHub", "Blog": "Blog", "Facebook Group": "Grupa na Facebooku", "Twitter": "Twitter", "About": "O nas", "Boostnote": "Boostnote", "An open source note-taking app made for programmers just like you.": "Aplikacja open-source do przechowywania notatek, stworzona dla programistów takich jak Ty.", "Website": "Strona WWW", "Development": "Development", " : Development configurations for Boostnote.": " : Development configurations for Boostnote.", "Copyright (C) 2017 - 2019 BoostIO": "Copyright (C) 2017 - 2019 BoostIO", "License: GPL v3": "Licencja: GPL v3", "Analytics": "Statystyki", "Boostnote collects anonymous data for the sole purpose of improving the application, and strictly does not collect any personal information such the contents of your notes.": "Boostnote zbiera anonimowe dane wyłącznie w celu poprawy działania aplikacji, lecz nigdy nie pobiera prywatnych danych z Twoich notatek.", "You can see how it works on ": "Możesz zobaczyć jak to działa na platformie", "You can choose to enable or disable this option.": "Możesz włączyć lub wyłączyć zbieranie danych tutaj:", "Enable analytics to help improve Boostnote": "Zbieraj dane by pomóc w ulepszaniu Boostnote", "Crowdfunding": "Crowdfunding", "Dear Boostnote users,": "Droga społeczności,", "Thank you for using Boostnote!": "Dziękujemy za używanie Boostnote!", "Boostnote is used in about 200 different countries and regions by an awesome community of developers.": "Boostnote jest używany w około 200 krajach i regionach przez wspaniałą społeczność programistów.", "To support our growing userbase, and satisfy community expectations,": "Chcielibyśmy poświęcić więcej czasu na rozwój naszego projektu", "we would like to invest more time and resources in this project.": "aby popularność i satysfakcja naszej społeczności ciągle wzrastała.", "If you use Boostnote and see its potential, help us out by supporting the project on OpenCollective!": "Jeśli podoba Ci się naszy projekt i lubisz go używać, możesz wspomóc nasz przez OpenCollective!", "Thanks,": "Dzięki,", "The Boostnote Team": "Kontrybutorzy Boostnote", "Support via OpenCollective": "Wspomóż przez OpenCollective", "Language": "Język", "English": "Angielski", "German": "Niemiecki", "French": "Francuski", "Show \"Saved to Clipboard\" notification when copying": "Pokazuj \"Skopiowano do schowka\" podczas kopiowania", "All Notes": "Notatki", "Starred": "Oznaczone", "Are you sure to ": "Czy na pewno chcesz ", " delete": " usunąc", "this folder?": "ten folder?", "Confirm": "Potwierdź", "Cancel": "Anuluj", "Markdown Note": "Notatka Markdown", "This format is for creating text documents. Checklists, code blocks and Latex blocks are available.": "Ten format pozwala na tworzenie dokumentów tekstowych, list zadań, bloków kodu, czy bloków Latex.", "Snippet Note": "Snippet Kodu", "This format is for creating code snippets. Multiple snippets can be grouped into a single note.": "Ten format zezwala na tworzenia snippetów kodu. Kilka snippetów można zgrupować w jedną notatkę.", "Tab to switch format": "Tabulator by zmienić format", "Updated": "Ostatnio aktualizowane", "Created": "Data utworzenia", "Alphabetically": "Alfabetycznie", "Default View": "Widok domyślny", "Compressed View": "Widok skompresowany", "Search": "Szukaj", "Blog Type": "Typ bloga", "Blog Address": "Adres bloga", "Save": "Zapisz", "Auth": "Autoryzacja", "Authentication Method": "Metoda Autoryzacji", "JWT": "JWT", "USER": "Użutkownik", "Token": "Token", "Storage": "Storage", "Hotkeys": "Skróty klawiszowe", "Show/Hide Boostnote": "Pokaż/Ukryj Boostnote", "Restore": "Przywróć", "Permanent Delete": "Usuń trwale", "Confirm note deletion": "Potwierdź usunięcie notatki", "This will permanently remove this note.": "Spodowoduje to trwałe usunięcie notatki", "Successfully applied!": "Sukces!", "Albanian": "Albański", "Chinese (zh-CN)": "Chiński (zh-CN)", "Chinese (zh-TW)": "Chiński (zh-TW)", "Czech": "Czeski", "Danish": "Duński", "Japanese": "Japoński", "Korean": "Koreański", "Norwegian": "Norweski", "Polish": "Polski", "Portuguese": "Portugalski", "Spanish": "Hiszpański", "Unsaved Changes!": "Musisz zapisać!", "Russian": "Rosyjski", "Thai": "Thai (ภาษาไทย)", "Editor Rulers": "Margines", "Enable": "Włącz", "Disable": "Wyłącz", "Sanitization": "Sanitization", "Only allow secure html tags (recommended)": "Zezwól tylko na bezpieczne tagi HTML (zalecane)", "Allow styles": "Zezwól na style", "Allow dangerous html tags": "Zezwól na niebezpieczne tagi HTML", "Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.": "Konwertuje tekstowe strzałki na znaki. ⚠ Wpłynie to na używanie komentarzy HTML w Twojej notatce.", "⚠ You have pasted a link referring an attachment that could not be found in the storage location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠": "⚠ Wkleiłes link odnoszący się do załącznika, ktory nie może zostać znaleziony. Wklejanie linków do załączników jest możliwe tylko gdy notatka i załącznik są w tym samym folderze. Używaj opcji 'Przeciągaj i upuść' załącznik! ⚠", "Star": "Oznacz", "Fullscreen": "Pełen ekran", "Add tag...": "Dodaj tag...", "Spellcheck disabled": "Spellcheck disabled", "Show menu bar": "Show menu bar", "Auto Detect": "Auto Detect", "Filter tags/folders...": "filter tags/folders...", "Enable HTML label in mermaid flowcharts": "Enable HTML label in mermaid flowcharts ⚠ This option potentially has a risk of XSS.", "Wrap line in Snippet Note": "Wrap line in Snippet Note" } ================================================ FILE: locales/pt-BR.json ================================================ { "Notes": "Notas", "Tags": "Etiquetas", "Preferences": "Preferências", "Make a note": "Fazer uma nota", "Ctrl": "Ctrl", "Ctrl(^)": "Ctrl", "to create a new note": "para criar uma nova nota", "Toggle Mode": "Modo de alternância", "Trash": "Lixeira", "Ok": "Ok", "MODIFICATION DATE": "DATA DE MODIFICAÇÃO", "Words": "Palavras", "Letters": "Letras", "STORAGE": "ARMAZENAMENTO", "FOLDER": "PASTA", "CREATION DATE": "DATA DE CRIAÇÃO", "NOTE LINK": "VÍNCULO DA NOTA", ".md": ".md", ".txt": ".txt", ".html": ".html", ".pdf": ".pdf", "Print": "Imprimir", "Your preferences for Boostnote": "Suas preferências para o Boostnote", "Storage Locations": "Armazenamentos", "Add Storage Location": "Adicionar Local de Armazenamento", "Add Folder": "Adicionar Pasta", "Open Storage folder": "Abrir Local de Armazenamento", "Unlink": "Desvincular", "Edit": "Editar", "Delete": "Apagar", "Interface": "Interface", "Interface Theme": "Tema da Interface", "Default": "Padrão", "White": "Branco", "Solarized Dark": "Escuro Solarizado", "Dark": "Escuro", "Show a confirmation dialog when deleting notes": "Mostrar um diálogo de confirmação ao excluir notas", "Editor Theme": "Tema do Editor", "Editor Font Size": "Tamanho da Fonte do Editor", "Editor Font Family": "Família da Fonte do Editor", "Editor Indent Style": "Estílo de Indentação do Editor", "Spaces": "Espaços", "Tabs": "Tabulação", "Switch to Preview": "Mudar para a Pré-Visualização", "When Editor Blurred": "Quando o Editor Obscurece", "When Editor Blurred, Edit On Double Click": "Quando o Editor Obscurece, Editar com Duplo Clique", "On Right Click": "Ao Clicar Com o Botão Direito", "Editor Keymap": "Mapa de Teclado do Editor", "default": "padrão", "vim": "vim", "emacs": "emacs", "⚠️ Please restart boostnote after you change the keymap": "⚠️ Por favor, reinicie o boostnote depois de alterar o mapa de teclado", "Show line numbers in the editor": "Mostrar os números das linhas no editor", "Allow editor to scroll past the last line": "Permitir ao editor rolar além da última linha", "Bring in web page title when pasting URL on editor": "Trazer o título da página da Web ao colar a URL no editor", "Preview": "Pré-Visualização", "Preview Font Size": "Tamanho da Fonte da Pré-Visualização", "Preview Font Family": "Família da Fonte da Pré-Visualização", "Code Block Theme": "Tema do Bloco de Código", "Allow preview to scroll past the last line": "Permitir à pré-visualização rolar além da última linha", "Show line numbers for preview code blocks": "Mostrar os números das linhas na pré-visualização dos blocos de código", "LaTeX Inline Open Delimiter": "Delimitador em Linha Aberto do LaTeX", "LaTeX Inline Close Delimiter": "Delimitador em Linha Fechado do LaTeX", "LaTeX Block Open Delimiter": "Delimitador de Bloco Aberto do LaTeX", "LaTeX Block Close Delimiter": "Delimitador de Bloco Fechado do LaTeX", "PlantUML Server": "PlantUML Server", "Community": "Comunidade", "Subscribe to Newsletter": "Subscrever à Newsletter", "GitHub": "GitHub", "Blog": "Blog", "Facebook Group": "Grupo do Facebook", "Twitter": "Twitter", "About": "Sobre", "Boostnote": "Boostnote", "An open source note-taking app made for programmers just like you.": "Um aplicativo de anotações de código aberto feito para programadores como você.", "Website": "Website", "Development": "Desenvolvimento", " : Development configurations for Boostnote.": " : Configurações de desenvolvimento para o Boostnote.", "Copyright (C) 2017 - 2019 BoostIO": "Direitos Autorais (C) 2017 - 2019 BoostIO", "License: GPL v3": "Licença: GPL v3", "Analytics": "Técnicas analíticas", "Boostnote collects anonymous data for the sole purpose of improving the application, and strictly does not collect any personal information such the contents of your notes.": "O Boostnote coleta dados anônimos com o único propósito de melhorar o aplicativo e de modo algum coleta qualquer informação pessoal, bem como o conteúdo de suas anotações.", "You can see how it works on ": "Você pode ver como funciona ", "You can choose to enable or disable this option.": "Você pode optar por ativar ou desativar essa opção.", "Enable analytics to help improve Boostnote": "Ativar técnicas analíticas para ajudar a melhorar o Boostnote", "Crowdfunding": "Financiamento Coletivo", "Dear Boostnote users,": "Caros(as),", "Thank you for using Boostnote!": "Obrigado por usar o Boostnote!", "Boostnote is used in about 200 different countries and regions by an awesome community of developers.": "O Boostnote é usado em cerca de 200 países e regiões diferentes por uma incrível comunidade de desenvolvedores.", "To support our growing userbase, and satisfy community expectations,": "Para continuar apoiando o crescimento e satisfazer as expectativas da comunidade,", "we would like to invest more time and resources in this project.": "gostaríamos de investir mais tempo e recursos neste projeto.", "If you use Boostnote and see its potential, help us out by supporting the project on OpenCollective!": "Se você gosta deste projeto e vê o seu potencial, você pode nos ajudar apoiando-nos no OpenCollective!", "Thanks,": "Obrigado,", "The Boostnote Team": "Mantenedores do Boostnote", "Support via OpenCollective": "Suporte via OpenCollective", "Language": "Idioma", "English": "Inglês", "German": "Alemão", "French": "Francês", "Show \"Saved to Clipboard\" notification when copying": "Mostrar a notificação \"Armazenado na Área de Transferência\" ao copiar", "All Notes": "Todas as Notas", "Starred": "Com Estrela", "Are you sure to ": "Tem certeza que gostaría de ", " delete": " apagar", "this folder?": "essa pasta?", "Confirm": "Confirmar", "Cancel": "Cancelar", "Markdown Note": "Nota em Markdown", "This format is for creating text documents. Checklists, code blocks and Latex blocks are available.": "Este formato permite a criação de documentos de texto. Listas de verificação, blocos de código e blocos Latex estão disponíveis.", "Snippet Note": "Fragmento de Nota", "This format is for creating code snippets. Multiple snippets can be grouped into a single note.": "Este formato é para criar trechos de código. Vários trechos podem ser agrupados em uma única nota.", "Tab to switch format": "Tabule para mudar o formato", "Updated": "Atualizado", "Created": "Criado", "Alphabetically": "Alfabeticamente", "Default View": "Visualização Padrão", "Compressed View": "Visualização Comprimida", "Search": "Procura", "Blog Type": "Tipo do Blog", "Blog Address": "Endereço do Blog", "Save": "Salvar", "Auth": "Auth", "Authentication Method": "Método de Autenticação", "JWT": "JWT", "USER": "USUÁRIO", "Token": "Token", "Storage": "Armazenamento", "Hotkeys": "Teclas de Atalho", "Show/Hide Boostnote": "Esconder/Mostrar Boostnote", "Restore": "Restaurar", "Permanent Delete": "Excluir Permanentemente", "Confirm note deletion": "Confirmar exclusão da nota", "This will permanently remove this note.": "Isso irá excluir a nota permanentemente.", "Successfully applied!": "Aplicado com Sucesso!", "Albanian": "Albanês", "Chinese (zh-CN)": "Chinês (zh-CN)", "Chinese (zh-TW)": "Chinês (zh-TW)", "Czech": "Tcheco", "Danish": "Dinamarquês", "Japanese": "Japonês", "Korean": "Coreano", "Norwegian": "Norueguês", "Polish": "Polonês", "Portuguese": "Português (pt-BR)", "Spanish": "Espanhol", "Unsaved Changes!": "Você precisa salvar!", "Russian": "Russo", "Thai": "Thai (ภาษาไทย)", "Editor Rulers": "Réguas do Editor", "Enable": "Habilitado", "Disable": "Desabilitado", "Sanitization": "Sanitização", "Only allow secure html tags (recommended)": "Permitir apenas tags html seguras (recomendado)", "Allow styles": "Permitir estilos", "Allow dangerous html tags": "Permitir tags html perigosas", "Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.": "Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.", "⚠ You have pasted a link referring an attachment that could not be found in the storage location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠": "⚠ You have pasted a link referring an attachment that could not be found in the storage location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠", "Spellcheck disabled": "Spellcheck disabled", "Show menu bar": "Show menu bar", "Auto Detect": "Auto Detect", "Filter tags/folders...": "filter tags/folders...", "Enable HTML label in mermaid flowcharts": "Enable HTML label in mermaid flowcharts ⚠ This option potentially has a risk of XSS.", "Wrap line in Snippet Note": "Wrap line in Snippet Note" } ================================================ FILE: locales/pt-PT.json ================================================ { "Notes": "Notas", "Tags": "Etiquetas", "Preferences": "Definiçōes", "Make a note": "Criar nota", "Ctrl": "Ctrl", "Ctrl(^)": "Ctrl", "to create a new note": "para criar uma nova nota", "Toggle Mode": "Alternar Modo", "Trash": "Lixo", "Ok": "Ok", "MODIFICATION DATE": "DATA DE MODIFICAÇÃO", "Words": "Palavras", "Letters": "Letras", "STORAGE": "ARMAZENAMENTO", "FOLDER": "PASTA", "CREATION DATE": "DATA DE CRIAÇÃO", "NOTE LINK": "ATALHO DE NOTA", ".md": ".md", ".txt": ".txt", ".html": ".html", ".pdf": ".pdf", "Print": "Imprimir", "Your preferences for Boostnote": "As tuas definiçōes para Boostnote", "Storage Locations": "Locais de Armazenamento", "Add Storage Location": "Adicionar Local de Armazenamento", "Add Folder": "Adicionar Pasta", "Open Storage folder": "Abrir Local de Armazenamento", "Unlink": "Remover a ligação", "Edit": "Editar", "Delete": "Apagar", "Interface": "Interface", "Interface Theme": "Tema", "Default": "Default", "White": "Branco", "Solarized Dark": "Solarized Dark", "Dark": "Escuro", "Show a confirmation dialog when deleting notes": "Mostrar uma confirmação ao excluir notas", "Editor Theme": "Tema do Editor", "Editor Font Size": "Tamanho de Fonte do Editor", "Editor Font Family": "Família de Fonte do Editor", "Editor Indent Style": "Estílo de Identação do Editor", "Spaces": "Espaços", "Tabs": "Tabs", "Switch to Preview": "Mudar para Pré-Visualização", "When Editor Blurred": "Quando o Editor Obscurece", "When Editor Blurred, Edit On Double Click": "Quando o Editor Obscurece, Editar com Duplo Clique", "On Right Click": "Ao Clicar Com o Botão Direito", "Editor Keymap": "Mapa de Teclado do Editor", "default": "padrão", "vim": "vim", "emacs": "emacs", "⚠️ Please restart boostnote after you change the keymap": "⚠️ Por favor, reinicia o Boostnote depois de alterar o mapa de teclado.", "Show line numbers in the editor": "Mostrar os números das linhas no editor", "Allow editor to scroll past the last line": "Permitir que o editor faça scroll além da última linha", "Bring in web page title when pasting URL on editor": "Trazer o título da página da Web ao colar o endereço no editor", "Preview": "Pré-Visualização", "Preview Font Size": "Tamanho da Fonte da Pré-Visualização", "Preview Font Family": "Família da Fonte da Pré-Visualização", "Code Block Theme": "Tema do Bloco de Código", "Allow preview to scroll past the last line": "Permitir que se faça scroll além da última linha", "Show line numbers for preview code blocks": "Mostrar os números das linhas na pré-visualização dos blocos de código", "LaTeX Inline Open Delimiter": "Delimitador para Abrir Bloco LaTeX em Linha", "LaTeX Inline Close Delimiter": "Delimitador para Fechar Bloco LaTeX em Linha", "LaTeX Block Open Delimiter": "Delimitador para Abrir Bloco LaTeX", "LaTeX Block Close Delimiter": "Delimitador para Fechar Bloco LaTeX", "PlantUML Server": "PlantUML Server", "Community": "Comunidade", "Subscribe to Newsletter": "Subscrever à Newsletter", "GitHub": "GitHub", "Blog": "Blog", "Facebook Group": "Grupo de Facebook", "Twitter": "Twitter", "About": "Sobre", "Boostnote": "Boostnote", "An open source note-taking app made for programmers just like you.": "Uma aplicação open source de bloco de notas feita para programadores como tu.", "Website": "Website", "Development": "Desenvolvimento", " : Development configurations for Boostnote.": " : Configurações de desenvolvimento para o Boostnote.", "Copyright (C) 2017 - 2019 BoostIO": "Direitos de Autor (C) 2017 - 2019 BoostIO", "License: GPL v3": "Licença: GPL v3", "Analytics": "Analíse de Data", "Boostnote collects anonymous data for the sole purpose of improving the application, and strictly does not collect any personal information such the contents of your notes.": "O Boostnote coleta dados anônimos com o único propósito de melhorar a aplicação e não adquire informação pessoal ou conteúdo das tuas notas.", "You can see how it works on ": "Podes ver como funciona em ", "You can choose to enable or disable this option.": "Podes optar por activar ou desactivar esta opção.", "Enable analytics to help improve Boostnote": "Permitir recolha de data anônima para ajudar a melhorar o Boostnote", "Crowdfunding": "Financiamento Coletivo", "Dear Boostnote users,": "Caros(as),", "Thank you for using Boostnote!": "Obrigado por usar o Boostnote!", "Boostnote is used in about 200 different countries and regions by an awesome community of developers.": "O Boostnote é usado em cerca de 200 países e regiões diferentes por uma incrível comunidade de developers.", "To support our growing userbase, and satisfy community expectations,": "Para continuar a apoiar o crescimento e satisfazer as expectativas da comunidade,", "we would like to invest more time and resources in this project.": "gostaríamos de investir mais tempo e recursos neste projeto.", "If you use Boostnote and see its potential, help us out by supporting the project on OpenCollective!": "Se gostas deste projeto e vês o seu potencial, podes ajudar-nos através de donativos no OpenCollective!", "Thanks,": "Obrigado,", "The Boostnote Team": "A Equipa do Boostnote", "Support via OpenCollective": "Suporte via OpenCollective", "Language": "Idioma", "English": "Inglês", "German": "Alemão", "French": "Francês", "Show \"Saved to Clipboard\" notification when copying": "Mostrar a notificação \"Guardado na Área de Transferência\" ao copiar", "All Notes": "Todas as Notas", "Starred": "Com Estrela", "Are you sure to ": "Tens a certeza que gostarias de ", " delete": " apagar", "this folder?": "esta pasta?", "Confirm": "Confirmar", "Cancel": "Cancelar", "Markdown Note": "Nota em Markdown", "This format is for creating text documents. Checklists, code blocks and Latex blocks are available.": "Este formato permite a criação de documentos de texto. Estão disponíveis: listas de verificação, blocos de código e blocos Latex.", "Snippet Note": "Fragmento de Nota", "This format is for creating code snippets. Multiple snippets can be grouped into a single note.": "Este formato permite a criação de fragmentos de notas. Vários fragmentos podem ser agrupados em uma única nota.", "Tab to switch format": "Tab para mudar o formato", "Updated": "Actualizado", "Created": "Criado", "Alphabetically": "Alfabeticamente", "Default View": "Vista Padrão", "Compressed View": "Vista Comprimida", "Search": "Procurar", "Blog Type": "Tipo de Blog", "Blog Address": "Endereço do Blog", "Save": "Guardar", "Auth": "Autenticação", "Authentication Method": "Método de Autenticação", "JWT": "JWT", "USER": "USER", "Token": "Token", "Storage": "Armazenamento", "Hotkeys": "Teclas de Atalho", "Show/Hide Boostnote": "Mostrar/Esconder Boostnote", "Restore": "Restaurar", "Permanent Delete": "Apagar Permanentemente", "Confirm note deletion": "Confirmar o apagamento da nota", "This will permanently remove this note.": "Isto irá remover permanentemente esta nota.", "Successfully applied!": "Aplicado com Sucesso!", "Albanian": "Albanês", "Chinese (zh-CN)": "Chinês (zh-CN)", "Chinese (zh-TW)": "Chinês (zh-TW)", "Czech": "Tcheco", "Danish": "Dinamarquês", "Japanese": "Japonês", "Korean": "Coreano", "Norwegian": "Norueguês", "Polish": "Polaco", "Portuguese": "Português (pt-PT)", "Spanish": "Espanhol", "Unsaved Changes!": "Alterações Não Guardadas!", "Russian": "Russo", "Editor Rulers": "Réguas do Editor", "Enable": "Activar", "Disable": "Desactivar", "Sanitization": "Sanitização", "Only allow secure html tags (recommended)": "Perminar somente tags html seguras (recomendado)", "Allow styles": "Permitir Estilos", "Allow dangerous html tags": "Permitir tags html perigosas", "Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.": "Converter setas de texto em simbolos. ⚠ Isto irá interferir no use de comentários em HTML em Markdown.", "⚠ You have pasted a link referring an attachment that could not be found in the storage location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠": "⚠ Você colou um link referente a um anexo que não pôde ser encontrado no local de armazenamento desta nota. A vinculação de anexos de referência de links só é suportada se o local de origem e de destino for o mesmo de armazenamento. Por favor, arraste e solte o anexo na nota! ⚠", "Spellcheck disabled": "Spellcheck disabled", "Show menu bar": "Show menu bar", "Auto Detect": "Auto Detect", "Filter tags/folders...": "filter tags/folders...", "Enable HTML label in mermaid flowcharts": "Enable HTML label in mermaid flowcharts ⚠ This option potentially has a risk of XSS.", "Wrap line in Snippet Note": "Wrap line in Snippet Note" } ================================================ FILE: locales/ru.json ================================================ { "Notes": "Записи", "Tags": "Теги", "Preferences": "Настройки", "Make a note": "Добавить запись", "Ctrl": "Ctrl", "Ctrl(^)": "Ctrl", "to create a new note": "создать новую запись", "Toggle Mode": "Переключить режим", "Trash": "Корзина", "Ok": "Ok", "MODIFICATION DATE": "Дата изменения", "Words": "Слова", "Letters": "Буквы", "STORAGE": "Хранилище", "FOLDER": "Папка", "CREATION DATE": "Дата создания", "NOTE LINK": "Ссылка на запись", ".md": ".md", ".txt": ".txt", ".html": ".html", ".pdf": ".pdf", "Print": "Print", "Your preferences for Boostnote": "Настройки Boostnote", "Storage Locations": "Хранилища", "Add Storage Location": "Добавить хранилище", "Add Folder": "Добавить папку", "Open Storage folder": "Открыть хранилище", "Unlink": "Удалить", "Edit": "Редактировать", "Delete": "Удалить", "Interface": "Интерфейс", "Interface Theme": "Тема оформления", "Default": "По умолчанию", "White": "Светлая", "Solarized Dark": "Solarized Dark", "Dark": "Темная", "Show a confirmation dialog when deleting notes": "Спрашивать подтверждение перед удалением записей?", "Editor Theme": "Тема", "Editor Font Size": "Размер шрифта", "Editor Font Family": "Шрифт", "Editor Indent Style": "Отступы", "Spaces": "Пробелы", "Tabs": "Табуляция", "Switch to Preview": "Переключать на превью", "When Editor Blurred": "При снятии фокуса с редактора", "When Editor Blurred, Edit On Double Click": "При снятии фокуса, редактировать двойным кликом", "On Right Click": "По правому клику", "Editor Keymap": "Горячие клавиши", "default": "по умолчанию", "vim": "vim", "emacs": "emacs", "⚠️ Please restart boostnote after you change the keymap": "⚠️ Перезапустите Boostnote, чтобы применить изменения", "Show line numbers in the editor": "Показывать номера строк в редакторе", "Allow editor to scroll past the last line": "Разрешить прокрутку дальше последней строки в редакторе", "Bring in web page title when pasting URL on editor": "Копировать заголовок страницы при вставке URL-ссылки в редакторе", "Preview": "Preview", "Preview Font Size": "Размер шрифта", "Preview Font Family": "Шрифт", "Code Block Theme": "Тема оформления кода", "Allow preview to scroll past the last line": "Разрешить прокрутку дальше последней строки в превью", "Show line numbers for preview code blocks": "Показывать номера строк в блоках кода", "LaTeX Inline Open Delimiter": "Символ начала inline записи в LaTeX", "LaTeX Inline Close Delimiter": "Символ окончания inline записи в LaTeX", "LaTeX Block Open Delimiter": "Символ начала блока LaTeX", "LaTeX Block Close Delimiter": "Символ окончания блока LaTeX", "Community": "Сообщество", "Subscribe to Newsletter": "Подпишитесь на рассылку", "GitHub": "GitHub", "Blog": "Блог", "Facebook Group": "Группа в Фейсбуке", "Twitter": "Твиттер", "About": "О нас", "Boostnote": "Boostnote", "An open source note-taking app made for programmers just like you.": "Приложение для программерских и научных заметок с открытым кодом", "Website": "Сайт", "Development": "Разработка", " : Development configurations for Boostnote.": " : Разработческие конфигурации для Boostnote.", "Copyright (C) 2017 - 2019 BoostIO": "Copyright (C) 2017 - 2019 BoostIO", "License: GPL v3": "License: GPL v3", "Analytics": "Аналитика", "Boostnote collects anonymous data for the sole purpose of improving the application, and strictly does not collect any personal information such the contents of your notes.": "Boostnote собирает анонимные данные о пользовании приложением для того, чтобы улучшать пользовательский опыт. Мы не собираем личную информацию и содержание ваших записей.", "You can see how it works on ": "Посмотрите исходный код на ", "You can choose to enable or disable this option.": "Вы можете отказаться от передачи анонимной информации разработчикам.", "Enable analytics to help improve Boostnote": "Отправлять анонимные данные, чтобы сделать Boostnote еще лучше", "Crowdfunding": "Краудфандинг", "Dear Boostnote users,": "Привет,", "Thank you for using Boostnote!": "Спасибо за использование Boostnote!", "Boostnote is used in about 200 different countries and regions by an awesome community of developers.": "Boostnote используется в 200 странах и регионов дружным сообществом разработчиков.", "To support our growing userbase, and satisfy community expectations,": "Чтобы продукт развивался и удовлетворял ожиданиям пользователей,", "we would like to invest more time and resources in this project.": "мы хотим выделять больше времени и ресурсов проекту.", "If you use Boostnote and see its potential, help us out by supporting the project on OpenCollective!": "Если вам нравится Boostnote и его сообщество, вы можете профинансировать проект на OpenCollective!", "Thanks,": "Спасибо,", "The Boostnote Team": "разработчики Boostnote", "Support via OpenCollective": "Старница проекта на OpenCollective", "Language": "Язык", "English": "Английский", "German": "Немецкий", "French": "Французский", "Show \"Saved to Clipboard\" notification when copying": "Показывать уведомление \"Скопировано в буфер\" при копировании?", "All Notes": "Все записи", "Starred": "Избранное", "Are you sure to ": "Вы уверены, что хотите ", " delete": " удалить", "this folder?": "эту папку?", "Confirm": "Да", "Cancel": "Отмена", "Markdown Note": "Markdown", "This format is for creating text documents. Checklists, code blocks and Latex blocks are available.": "Этот формат подходит для создания текстовых документов. Сюда вы можете добавлять чек-листы, блоки кода и блоки в LaTeX.", "Snippet Note": "Snippet", "This format is for creating code snippets. Multiple snippets can be grouped into a single note.": "Этот формат подходит для хранения кусков кода. Внутри одной записи можно создать несколько сниппетов.", "Tab to switch format": "Tab для переключения формата", "Updated": "По дате изменения", "Created": "По дате создания", "Alphabetically": "По алфавиту", "Default View": "Стандартный вид", "Compressed View": "Сокращенный вид", "Search": "Поиск", "Blog Type": "Тип блога", "Blog Address": "Адрес блога", "Save": "Сохранить", "Auth": "Авторизоваться", "Authentication Method": "Метод авторизации", "JWT": "JWT", "USER": "USER", "Token": "Token", "Storage": "Хранилище", "Hotkeys": "Горячие клавиши", "Show/Hide Boostnote": "Показать/скрыть Boostnote", "Restore": "Восстановить", "Permanent Delete": "Удалить без восстановления", "Confirm note deletion": "Подтвердите удаление", "This will permanently remove this note.": "Это действие приведет к полному удалению записи. Восстановить запись будет невозможно.", "Successfully applied!": "Успешно!", "Albanian": "Албанский", "Chinese (zh-CN)": "Китайский (zh-CN)", "Chinese (zh-TW)": "Китайский (zh-TW)", "Czech": "чешский", "Danish": "Датский", "Japanese": "Японский", "Korean": "Корейский", "Norwegian": "Норвежский", "Polish": "Польский", "Portuguese": "Португальский", "Spanish": "Испанский", "Unsaved Changes!": "Нужно сохранить!", "UserName": "Имя пользователя", "Password": "Пароль", "Russian": "Русский", "Thai": "Thai (ภาษาไทย)", "Editor Rulers": "Editor Rulers", "Enable": "Enable", "Disable": "Disable", "Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.": "Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.", "⚠ You have pasted a link referring an attachment that could not be found in the storage location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠": "⚠ You have pasted a link referring an attachment that could not be found in the storage location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠", "Spellcheck disabled": "Spellcheck disabled", "Show menu bar": "Show menu bar", "Auto Detect": "Auto Detect", "Filter tags/folders...": "filter tags/folders...", "Enable HTML label in mermaid flowcharts": "Enable HTML label in mermaid flowcharts ⚠ This option potentially has a risk of XSS.", "Wrap line in Snippet Note": "Wrap line in Snippet Note" } ================================================ FILE: locales/sq.json ================================================ { "Notes": "Notes", "Tags": "Tags", "Preferences": "Preferences", "Make a note": "Make a note", "Ctrl": "Ctrl", "Ctrl(^)": "Ctrl", "to create a new note": "to create a new note", "Toggle Mode": "Toggle Mode", "Trash": "Trash", "Ok": "Ok", "MODIFICATION DATE": "MODIFICATION DATE", "Words": "Words", "Letters": "Letters", "STORAGE": "STORAGE", "FOLDER": "FOLDER", "CREATION DATE": "CREATION DATE", "NOTE LINK": "NOTE LINK", ".md": ".md", ".txt": ".txt", ".html": ".html", ".pdf": ".pdf", "Print": "Print", "Your preferences for Boostnote": "Your preferences for Boostnote", "Storage Locations": "Storage Locations", "Add Storage Location": "Add Storage Location", "Add Folder": "Add Folder", "Open Storage folder": "Open Storage folder", "Unlink": "Unlink", "Edit": "Edit", "Delete": "Delete", "Interface": "Interface", "Interface Theme": "Interface Theme", "Default": "Default", "White": "White", "Solarized Dark": "Solarized Dark", "Dark": "Dark", "Show a confirmation dialog when deleting notes": "Show a confirmation dialog when deleting notes", "Editor Theme": "Editor Theme", "Editor Font Size": "Editor Font Size", "Editor Font Family": "Editor Font Family", "Editor Indent Style": "Editor Indent Style", "Spaces": "Spaces", "Tabs": "Tabs", "Switch to Preview": "Switch to Preview", "When Editor Blurred": "When Editor Blurred", "When Editor Blurred, Edit On Double Click": "When Editor Blurred, Edit On Double Click", "On Right Click": "On Right Click", "Editor Keymap": "Editor Keymap", "default": "default", "vim": "vim", "emacs": "emacs", "⚠️ Please restart boostnote after you change the keymap": "⚠️ Please restart boostnote after you change the keymap", "Show line numbers in the editor": "Show line numbers in the editor", "Allow editor to scroll past the last line": "Allow editor to scroll past the last line", "Bring in web page title when pasting URL on editor": "Bring in web page title when pasting URL on editor", "Preview": "Preview", "Preview Font Size": "Preview Font Size", "Preview Font Family": "Preview Font Family", "Code Block Theme": "Code Block Theme", "Allow preview to scroll past the last line": "Allow preview to scroll past the last line", "Show line numbers for preview code blocks": "Show line numbers for preview code blocks", "LaTeX Inline Open Delimiter": "LaTeX Inline Open Delimiter", "LaTeX Inline Close Delimiter": "LaTeX Inline Close Delimiter", "LaTeX Block Open Delimiter": "LaTeX Block Open Delimiter", "LaTeX Block Close Delimiter": "LaTeX Block Close Delimiter", "Community": "Community", "Subscribe to Newsletter": "Subscribe to Newsletter", "GitHub": "GitHub", "Blog": "Blog", "Facebook Group": "Facebook Group", "Twitter": "Twitter", "About": "About", "Boostnote": "Boostnote", "An open source note-taking app made for programmers just like you.": "An open source note-taking app made for programmers just like you.", "Website": "Website", "Development": "Development", " : Development configurations for Boostnote.": " : Development configurations for Boostnote.", "Copyright (C) 2017 - 2019 BoostIO": "Copyright (C) 2017 - 2019 BoostIO", "License: GPL v3": "License: GPL v3", "Analytics": "Analytics", "Boostnote collects anonymous data for the sole purpose of improving the application, and strictly does not collect any personal information such the contents of your notes.": "Boostnote collects anonymous data for the sole purpose of improving the application, and strictly does not collect any personal information such the contents of your notes.", "You can see how it works on ": "You can see how it works on ", "You can choose to enable or disable this option.": "You can choose to enable or disable this option.", "Enable analytics to help improve Boostnote": "Enable analytics to help improve Boostnote", "Crowdfunding": "Crowdfunding", "Dear Boostnote users,": "Dear Boostnote users,", "Thank you for using Boostnote!": "Thank you for using Boostnote!", "Boostnote is used in about 200 different countries and regions by an awesome community of developers.": "Boostnote is used in about 200 different countries and regions by an awesome community of developers.", "To support our growing userbase, and satisfy community expectations,": "To support our growing userbase, and satisfy community expectations,", "we would like to invest more time and resources in this project.": "we would like to invest more time and resources in this project.", "If you use Boostnote and see its potential, help us out by supporting the project on OpenCollective!": "If you use Boostnote and see its potential, help us out by supporting the project on OpenCollective!", "Thanks,": "Thanks,", "The Boostnote Team": "The Boostnote Team", "Support via OpenCollective": "Support via OpenCollective", "Language": "Language", "English": "English", "German": "German", "French": "French", "Show \"Saved to Clipboard\" notification when copying": "Show \"Saved to Clipboard\" notification when copying", "All Notes": "All Notes", "Starred": "Starred", "Are you sure to ": "Are you sure to ", " delete": " delete", "this folder?": "this folder?", "Confirm": "Confirm", "Cancel": "Cancel", "Markdown Note": "Markdown Note", "This format is for creating text documents. Checklists, code blocks and Latex blocks are available.": "This format is for creating text documents. Checklists, code blocks and Latex blocks are available.", "Snippet Note": "Snippet Note", "This format is for creating code snippets. Multiple snippets can be grouped into a single note.": "This format is for creating code snippets. Multiple snippets can be grouped into a single note.", "Tab to switch format": "Tab to switch format", "Updated": "Updated", "Created": "Created", "Alphabetically": "Alphabetically", "Default View": "Default View", "Compressed View": "Compressed View", "Search": "Search", "Blog Type": "Blog Type", "Blog Address": "Blog Address", "Save": "Save", "Auth": "Auth", "Authentication Method": "Authentication Method", "JWT": "JWT", "USER": "USER", "Token": "Token", "Storage": "Storage", "Hotkeys": "Hotkeys", "Show/Hide Boostnote": "Show/Hide Boostnote", "Restore": "Restore", "Permanent Delete": "Permanent Delete", "Confirm note deletion": "Confirm note deletion", "This will permanently remove this note.": "This will permanently remove this note.", "Successfully applied!": "Successfully applied!", "Albanian": "Albanian", "Chinese (zh-CN)": "Chinese (zh-CN)", "Chinese (zh-TW)": "Chinese (zh-TW)", "Czech": "Czech", "Danish": "Danish", "Japanese": "Japanese", "Korean": "Korean", "Norwegian": "Norwegian", "Polish": "Polish", "Portuguese": "Portuguese", "Spanish": "Spanish", "Unsaved Changes!": "Unsaved Changes!", "Russian": "Russian", "Thai": "Thai (ภาษาไทย)", "Editor Rulers": "Editor Rulers", "Enable": "Enable", "Disable": "Disable", "Sanitization": "Sanitization", "Only allow secure html tags (recommended)": "Only allow secure html tags (recommended)", "Allow styles": "Allow styles", "Allow dangerous html tags": "Allow dangerous html tags", "Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.": "Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.", "⚠ You have pasted a link referring an attachment that could not be found in the storage location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠": "⚠ You have pasted a link referring an attachment that could not be found in the storage location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠", "Spellcheck disabled": "Spellcheck disabled", "Show menu bar": "Show menu bar", "Auto Detect": "Auto Detect", "Filter tags/folders...": "filter tags/folders...", "Enable HTML label in mermaid flowcharts": "Enable HTML label in mermaid flowcharts ⚠ This option potentially has a risk of XSS.", "Wrap line in Snippet Note": "Wrap line in Snippet Note" } ================================================ FILE: locales/th.json ================================================ { "Notes": "โน๊ต", "Tags": "แท็ก", "Preferences": "ตั้งค่า", "Make a note": "สร้างโน๊ต", "Ctrl": "Ctrl", "Ctrl(^)": "Ctrl(^)", "to create a new note": "เพื่อสร้างโน๊ต", "Toggle Mode": "Toggle Mode", "Add tag...": "เพิ่มแท็ก...", "Trash": "ถังขยะ", "Ok": "ตกลง.", "MODIFICATION DATE": "แก้ไขเมื่อ", "Words": "คำ", "Letters": "ตัวอักษร", "STORAGE": "แหล่งจัดเก็บ", "FOLDER": "โฟลเดอร์", "CREATION DATE": "สร้างเมื่อ", "NOTE LINK": "NOTE LINK", ".md": ".md", ".txt": ".txt", ".html": ".html", ".pdf": ".pdf", "Print": "พิมพ์", "Your preferences for Boostnote": "การตั้งค่าของคุณสำหรับ Boostnote", "Help": "ช่วยเหลือ", "Hide Help": "ซ่อนการช่วยเหลือ", "Storages": "แหล่งจัดเก็บ", "Add Storage Location": "เพิ่มแหล่งจัดเก็บ", "Add Folder": "เพิ่มโฟลเดอร์", "Select Folder": "เลือกโฟลเดอร์", "Open Storage folder": "เปิดโฟลเดอร์แหล่งจัดเก็บ", "Unlink": "ยกเลิกการลิงค์", "Edit": "แก้ไข", "Delete": "ลบ", "Interface": "หน้าตาโปรแกรม", "Interface Theme": "ธีมของโปรแกรม", "Default": "ค่าเริ่มต้น", "White": "โทนสว่าง", "Solarized Dark": "Solarized Dark", "Dark": "โทนมืด", "Show a confirmation dialog when deleting notes": "แสดงหน้าต่างยืนยันเมื่อทำการลบโน๊ต", "Disable Direct Write (It will be applied after restarting)": "ปิด Direct Write (It will be applied after restarting)", "Show only related tags": "แสดงเฉพาะแท็กที่เกี่ยวข้อง", "Editor Theme": "ธีมของ Editor", "Editor Font Size": "ขนาดอักษรของ Editor", "Editor Font Family": "แบบอักษรของ Editor", "Editor Indent Style": "รูปแบบการย่อหน้าของ Editor", "Spaces": "ช่องว่าง", "Tabs": "แท็บ", "Switch to Preview": "Switch to Preview", "When Editor Blurred": "When Editor Blurred", "When Editor Blurred, Edit On Double Click": "When Editor Blurred, Edit On Double Click", "On Right Click": "On Right Click", "Editor Keymap": "รูปแบบคีย์ลัดของ Editor", "default": "ค่าเริ่มต้น", "vim": "vim", "emacs": "emacs", "⚠️ Please restart boostnote after you change the keymap": "⚠️ กรุณาปิดและเปิดโปรแกรมใหม่ หลังจากคุณเปลี่ยนคีย์ลัด", "Show line numbers in the editor": "แสดงหมายเลขบรรทัด", "Allow editor to scroll past the last line": "อนุญาตให้เลื่อน Scroll เลยบรรทัดสุดท้ายได้", "Enable smart quotes": "เปิด Smart quotes", "Bring in web page title when pasting URL on editor": "แสดงชื่อ Title ของเว็บไซต์เมื่อวางลิงค์ใน Editor", "Preview": "พรีวิว", "Preview Font Size": "ขนาดอักษร", "Preview Font Family": "แบบอักษร", "Code block Theme": "ธีมของ Code block", "Allow preview to scroll past the last line": "อนุญาตให้เลื่อน Scroll เลยบรรทัดสุดท้ายได้", "Show line numbers for preview code blocks": "แสดงหมายเลขบรรทัดใน Code block", "LaTeX Inline Open Delimiter": "LaTeX Inline Open Delimiter", "LaTeX Inline Close Delimiter": "LaTeX Inline Close Delimiter", "LaTeX Block Open Delimiter": "LaTeX Block Open Delimiter", "LaTeX Block Close Delimiter": "LaTeX Block Close Delimiter", "PlantUML Server": "เซิฟเวอร์ของ PlantUML", "Community": "ชุมชนผู้ใช้", "Subscribe to Newsletter": "สมัครรับข่าวสาร", "GitHub": "GitHub", "Blog": "บล็อก", "Facebook Group": "กลุ่ม Facebook", "Twitter": "Twitter", "About": "เกี่ยวกับ", "Boostnote": "Boostnote", "An open source note-taking app made for programmers just like you.": "เป็นแอพพลิเคชันจดบันทึก ที่ออกแบบมาเพื่อโปรแกรมเมอร์อย่างคุณ.", "Website": "เว็บไซต์", "Development": "การพัฒนา", " : Development configurations for Boostnote.": " : การตั้งค่าต่างๆสำหรับการพัฒนา Boostnote.", "Copyright (C) 2017 - 2019 BoostIO": "สงวนลิขสิทธิ์ (C) 2017 - 2019 BoostIO", "License: GPL v3": "License: GPL v3", "Analytics": "การวิเคราะห์", "Boostnote collects anonymous data for the sole purpose of improving the application, and strictly does not collect any personal information such the contents of your notes.": "Boostnote จะเก็บข้อมูลแบบไม่ระบุตัวตนเพื่อนำไปใช้ในการปรับปรุงแอพพลิเคชันเท่านั้น, และจะไม่มีการเก็บข้อมูลส่วนตัวใดๆของคุณ เช่น ข้อมูลในโน๊ตของคุณอย่างเด็ดขาด.", "You can see how it works on ": "คุณสามารถดูรายละเอียดเพิ่มเติมได้ที่ ", "You can choose to enable or disable this option.": "คุณสามารถเลือกที่จะเปิดหรือปิดตัวเลือกนี้ได้.", "Enable analytics to help improve Boostnote": "เปิดการวิเคราะห์ สำหรับการนำไปปรับปรุงพัฒนา Boostnote", "Crowdfunding": "การระดมทุนสาธารณะ", "Dear everyone,": "สวัสดีทุกคน,", "Thank you for using Boostnote!": "ขอขอบคุณที่เลือกใช้ Boostnote!", "Boostnote is used in about 200 different countries and regions by an awesome community of developers.": "มีการใช้งาน Boostnote จากสังคมผู้ใช้ที่เป็น Developer มากกว่า 200 ประเทศทั่วโลกจากหลากหลายภูมิภาค.", "To continue supporting this growth, and to satisfy community expectations,": "เพื่อให้เกิดการสนับสนุนให้เกิดการเติบโตอย่างต่อเนื่อง, และเพื่อพัฒนาให้ตรงตามความต้องการของชุมชนผู้ใช้,", "we would like to invest more time and resources in this project.": "เราต้องใช้เวลา และการลงทุนด้านทรัพยากรสำหรับโครงการนี้.", "If you like this project and see its potential, you can help by supporting us on OpenCollective!": "ถ้าคุณชอบและมองเห็นความเป็นไปได้ในอนาคต, คุณสามารถช่วยเหลือด้วยการสนับสนุนเราผ่าน OpenCollective!", "Thanks,": "ขอขอบคุณ,", "Boostnote maintainers": "กลุ่มผู้พัฒนา Boostnote", "Support via OpenCollective": "สนับสนุนผ่าน OpenCollective", "Language": "ภาษา", "English": "English", "German": "German", "French": "French", "Show \"Saved to Clipboard\" notification when copying": "แสดงการแจ้งเตือน \"บันทึกไปยังคลิปบอร์ด\" เมื่อทำการคัดลอก", "All Notes": "โน๊ตทั้งหมด", "Starred": "รายการโปรด", "Are you sure to ": "คุณแน่ใจหรือไม่ที่จะ ", " delete": " ลบ", "this folder?": "โฟลเดอร์นี้?", "Confirm": "ยืนยัน", "Cancel": "ยกเลิก", "Markdown Note": "โน๊ต Markdown", "This format is for creating text documents. Checklists, code blocks and Latex blocks are available.": "รูปแบบนี้ใช้สำหรับสร้างเอกสารทั่วไป. รองรับการเขียนเช็คลิสต์, แทรกโค้ด และการเขียนโดยใช้ Latex.", "Snippet Note": "โน๊ต Snippet", "This format is for creating code snippets. Multiple snippets can be grouped into a single note.": "รูปแบบนี้ใช้สำหรับสร้าง Code snippets. สามารถรวมหลาย Snippets เป็นโน๊ตเดียวกันได้.", "Tab to switch format": "กด Tab เพื่อเปลี่ยนรูปแบบที่เลือก", "Updated": "เรียงตามอัพเดท", "Created": "เรียงตามเวลาที่สร้างโน๊ต", "Alphabetically": "เรียงตามอักษร", "Counter": "Counter", "Default View": "มุมมองปกติ", "Compressed View": "มุมมองหนาแน่น", "Search": "ค้นหา", "Blog Type": "ประเภทของบล็อก", "Blog Address": "ที่อยู่ของบล็อก", "Save": "บันทึก", "Auth": "การยืนยันตัวตน", "Authentication Method": "รูปแบบการยืนยันตัวตน", "JWT": "JWT", "USER": "USER", "Token": "Token", "Storage": "แหล่งจัดเก็บ", "Hotkeys": "คีย์ลัด", "Show/Hide Boostnote": "แสดง/ซ่อน Boostnote", "Toggle editor mode": "เปิด/ปิด Editor mode", "Restore": "กู้คืน", "Permanent Delete": "ลบถาวร", "Confirm note deletion": "ยืนยันการลบโน๊ต", "This will permanently remove this note.": "โน๊ตของคุณจะถูกลบอย่างถาวร.", "Successfully applied!": "สำเร็จ!", "Albanian": "Albanian", "Chinese (zh-CN)": "Chinese (zh-CN)", "Chinese (zh-TW)": "Chinese (zh-TW)", "Czech": "Czech", "Danish": "Danish", "Japanese": "Japanese", "Korean": "Korean", "Norwegian": "Norwegian", "Polish": "Polish", "Portuguese": "Portuguese", "Spanish": "Spanish", "You have to save!": "คุณจำเป็นต้องบันทึก!", "UserName": "UserName", "Password": "Password", "Russian": "Russian", "Hungarian": "Hungarian", "Thai": "Thai (ภาษาไทย)", "Command(⌘)": "Command(⌘)", "Add Storage": "เพิ่มแหล่งจัดเก็บ", "Name": "ชื่อ", "Type": "ชนิด", "File System": "ระบบไฟล์", "Setting up 3rd-party cloud storage integration:": "ดูวิธีการตั้งค่า หากต้องการใช้งานแบบลิงค์ไฟล์ร่วมกับผู้ให้บริการเก็บข้อมูลบนคลาวด์", "Cloud-Syncing-and-Backup": "Cloud-Syncing-and-Backup", "Location": "ที่อยู่", "Add": "เพิ่ม", "Unlink Storage": "ยกเลิกการลิงค์ Storage", "Unlinking removes this linked storage from Boostnote. No data is removed, please manually delete the folder from your hard drive if needed.": "การยกเลิกการลิงค์ จะเป็นการลบการลิงค์แหล่งจัดเก็บออกไปจาก Boostnote. แต่ไฟล์ข้อมูลจะไม่ถูกลบ, หากต้องการลบข้อมูล กรุณาลบโพลเดอร์ของข้อมูลในเครื่องของท่านด้วยตัวเอง.", "Editor Rulers": "ไม้บรรทัด Editor", "Enable": "เปิด", "Disable": "ปิด", "Sanitization": "Sanitization", "Only allow secure html tags (recommended)": "อนุญาตเฉพาะ HTML tag ที่มีความปลอดภัย (แนะนำ)", "Render newlines in Markdown paragraphs as
": "ใช้
แทนอักขระขึ้นบรรทัดใหม่ในข้อความ Markdown", "Allow styles": "อนุญาตการใช้ styles", "Allow dangerous html tags": "อนุญาตให้ใช้ html tags ที่ไม่ปลอดภัย", "Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.": "แปลงลูกศรจากรูปแบบข้อความให้เป็นสัญลักษณ์. ⚠ สิ่งนี้จะเป็นการแทรกโดยใช้ HTML comment ลงไปใน Markdown ที่คุณเขียน.", "⚠ You have pasted a link referring an attachment that could not be found in the storage location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠": "⚠ ไม่พบไฟล์แนบในโน๊ตนี้ จากลิงค์ที่คุณได้วาง. คุณสามารถวางลิงค์ที่อ้างอิงไปยังไฟล์แนบ เฉพาะกรณีที่ต้นทาง และปลายทางที่อ้างถึงนั้นอยู่ใน 'แหล่งจัดเก็บ เดียวกัน. กรุณาใช้การลากและวางเพื่อใส่ไฟล์แนบแทน! ⚠", "Enable smart table editor": "เปิดการใช้ Smart table editor", "Snippet Default Language": "ทำการ Snippet ภาษาที่เป็นค่าเริ่มต้น", "Spellcheck disabled": "Spellcheck disabled", "Show menu bar": "Show menu bar", "Auto Detect": "Auto Detect", "Filter tags/folders...": "filter tags/folders...", "Enable HTML label in mermaid flowcharts": "Enable HTML label in mermaid flowcharts ⚠ This option potentially has a risk of XSS.", "Wrap line in Snippet Note": "Wrap line in Snippet Note" } ================================================ FILE: locales/tr.json ================================================ { "Notes": "Notlar", "Tags": "Etiketler", "Preferences": "Tercihler", "Make a note": "Not Oluştur", "Ctrl": "Ctrl", "Ctrl(^)": "Ctrl", "to create a new note": "yeni not oluşturmak için", "Toggle Mode": "Mod Değiştir", "Trash": "Çöp", "Ok": "tamam", "MODIFICATION DATE": "DEĞİŞİKLİK TARİHİ", "Words": "Kelimeler", "Letters": "Harfler", "STORAGE": "SAKLAMA ALANI", "FOLDER": "DOSYA", "CREATION DATE": "OLUŞTURULMA TARİHİ", "NOTE LINK": "NOT BAĞLANTISI", ".md": ".md", ".txt": ".txt", ".html": ".html", ".pdf": ".pdf", "Print": "Yazdır", "Your preferences for Boostnote": "Boostnote tercihleriniz", "Storage Locations": "Saklama Alanları", "Add Storage Location": "Saklama Yeri Ekle", "Add Folder": "Dosya Ekle", "Open Storage folder": "Saklama Alanı Dosyasını Aç", "Unlink": "Bağlantıyı kaldır", "Edit": "Düzenle", "Delete": "Sil", "Interface": "Arayüz", "Interface Theme": "Arayüz Teması", "Default": "Varsayılan", "White": "Beyaz", "Solarized Dark": "Solarize Karanlık", "Dark": "Karanlık", "Show a confirmation dialog when deleting notes": "Notlar silinirken onay ekranını göster", "Editor Theme": "Editör Teması", "Editor Font Size": "Editör Yazı Büyüklüğü", "Editor Font Family": "Editör Yazı Ailesi", "Editor Indent Style": "Editör Girinti Stili", "Spaces": "Boşluklar", "Tabs": "Tablar", "Switch to Preview": "Önizlemeye Geç", "When Editor Blurred": "Editörden çıkıldığında", "When Editor Blurred, Edit On Double Click": "Editörden Çıkıldığında, Çift Tıklayarak Düzenle", "On Right Click": "Sağ tıklandığında", "Editor Keymap": "Editör Tuş Haritası", "default": "varsayılan", "vim": "vim", "emacs": "emacs", "⚠️ Please restart boostnote after you change the keymap": "⚠️ Tuş haritası değişikliklerinden sonra lütfen Boostnote'u yeniden başlatın", "Show line numbers in the editor": "Editörde satır numaralarını göster", "Allow editor to scroll past the last line": "Editörün son satırı geçmesine izin ver", "Bring in web page title when pasting URL on editor": "Editörde URL yapıştırırken web sayfasının başlığını getir", "Preview": "Önizleme", "Preview Font Size": "Yazı Büyüklüğünü Önizle", "Preview Font Family": "Yazı Tipini Önizle", "Code Block Theme": "Kod bloğu Teması", "Allow preview to scroll past the last line": "Önizlemenin son satırı geçmesine izin ver", "Show line numbers for preview code blocks": "Kod bloklarının önizlemesinde satır numaralarını göster", "LaTeX Inline Open Delimiter": "LaTeX Inline Open Delimiter", "LaTeX Inline Close Delimiter": "LaTeX Inline Close Delimiter", "LaTeX Block Open Delimiter": "LaTeX Block Open Delimiter", "LaTeX Block Close Delimiter": "LaTeX Block Close Delimiter", "Community": "Topluluk", "Subscribe to Newsletter": "Bültene Kayıt Ol", "GitHub": "GitHub", "Blog": "Blog", "Facebook Group": "Facebook Grubu", "Twitter": "Twitter", "About": "Hakkında", "Boostnote": "Boostnote", "An open source note-taking app made for programmers just like you.": "Tıpkı sizin gibi programcılar için yapılmış açık kaynak not alma uygulaması", "Website": "Websitesi", "Development": "Geliştirme", " : Development configurations for Boostnote.": " : Boostnote için geliştirme ayarları.", "Copyright (C) 2017 - 2019 BoostIO": "Her hakkı saklıdır. (C) 2017 - 2019 BoostIO", "License: GPL v3": "Lisans: GPL v3", "Analytics": "Analizler", "Boostnote collects anonymous data for the sole purpose of improving the application, and strictly does not collect any personal information such the contents of your notes.": "Boostnote, uygulamanın geliştirilmesi amacıyla anonim veriler toplar. Notlarınızın içeriği gibi kişisel bilgiler kesinlikle toplanmaz.", "You can see how it works on ": "Nasıl çalıştığını görebilirsiniz ", "You can choose to enable or disable this option.": "Bu seçeneği etkinleştirmeyi veya devre dışı bırakmayı seçebilirsiniz.", "Enable analytics to help improve Boostnote": "Boostnote'un geliştirilmesine katkıda bulunmak için analizleri etkinleştirin", "Crowdfunding": "Kitle Fonlaması", "Dear Boostnote users,": "Sevgili herkes,", "Thank you for using Boostnote!": "Boostnote'u kullandığınız için teşekkürler!", "Boostnote is used in about 200 different countries and regions by an awesome community of developers.": "Boostnote, 200 farklı ülke ve bölgede, harika bir geliştirici topluluğu tarafından kullanılmaktadır.", "To support our growing userbase, and satisfy community expectations,": "Bu büyümeyi desteklemeye devam etmek ve topluluk beklentilerini karşılamak için,", "we would like to invest more time and resources in this project.": "bu projeye daha fazla zaman ve kaynak yatırmak istiyoruz.", "If you use Boostnote and see its potential, help us out by supporting the project on OpenCollective!": "Bu projeyi beğeniyor ve potansiyel görüyorsanız, OpenCollective üzerinden bizi destekleyerek katkıda bulunabilirsiniz!", "Thanks,": "Teşekkürler,", "The Boostnote Team": "Boostnote'un bakımını yapanlar", "Support via OpenCollective": "OpenCollective aracılığıyla destekle", "Language": "Dil", "English": "İngilizce", "German": "Almanca", "French": "Fransızca", "Show \"Saved to Clipboard\" notification when copying": "Kopyalandığında \"Clipboard'a kopyalandı\" uyarısını göster", "All Notes": "Tüm Notlar", "Starred": "Yıldızlı", "Are you sure to ": "Bu klasörü", " delete": " silmek istediğinize", "this folder?": " emin misiniz?", "Confirm": "Onayla", "Cancel": "İptal", "Markdown Note": "Markdown Notu", "This format is for creating text documents. Checklists, code blocks and Latex blocks are available.": "Bu format metin dökümanları oluşturmak içindir. Listeler, kod blokları ve Latex blokları mevcuttur.", "Snippet Note": "Parça Not", "This format is for creating code snippets. Multiple snippets can be grouped into a single note.": "Bu format kod parçacıkları oluşturmak içindir. Çoklu kod parçaları tek bir not içinde gruplanabilir.", "Tab to switch format": "Format değiştirmek için Tab tuşunu kullan", "Updated": "Güncellendi", "Created": "Oluşturuldu", "Alphabetically": "Alfabetik Olarak", "Default View": "Varsayılan Görünüm", "Compressed View": "Sıkıştırılmış Görünüm", "Search": "Ara", "Blog Type": "Blog Tipi", "Blog Address": "Blog Adresi", "Save": "Kaydet", "Auth": "Auth", "Authentication Method": "Doğrulama Yöntemi", "JWT": "JWT", "USER": "KULLANICI", "Token": "Token", "Storage": "Saklama Alanı", "Hotkeys": "Kısayol Tuşları", "Show/Hide Boostnote": "Boostnote'u Göster/Gizle ", "Restore": "Geri Yükle", "Permanent Delete": "Kalıcı Olarak Sil", "Confirm note deletion": "Not silmeyi onayla", "This will permanently remove this note.": "Bu not kalıcı olarak silinecektir.", "Successfully applied!": "Başarıyla Uygulandı!", "Albanian": "Arnavutça", "Chinese (zh-CN)": "Çince (zh-CN)", "Chinese (zh-TW)": "Çince (zh-TW)", "Czech": "Çek", "Danish": "Danca", "Japanese": "Japonca", "Korean": "Korean", "Norwegian": "Norveççe", "Polish": "Lehçe", "Portuguese": "Portekizce", "Spanish": "İspanyolca", "Unsaved Changes!": "Kaydetmelisiniz!", "UserName": "KullanıcıAdı", "Password": "Şifre", "Russian": "Rusça", "Command(⌘)": "Command(⌘)", "Editor Rulers": "Editör Cetvelleri", "Enable": "Etkinleştir", "Disable": "Etkisizleştir", "Sanitization": "Temizleme", "Only allow secure html tags (recommended)": "Sadece güvenli html etiketlerine izin ver (tavsiye edilen)", "Allow styles": "Stillere izin ver", "Allow dangerous html tags": "Tehlikeli html etiketlerine izin ver", "Spellcheck disabled": "Spellcheck disabled", "Show menu bar": "Show menu bar", "Auto Detect": "Auto Detect", "Filter tags/folders...": "filter tags/folders...", "Enable HTML label in mermaid flowcharts": "Enable HTML label in mermaid flowcharts ⚠ This option potentially has a risk of XSS.", "Wrap line in Snippet Note": "Wrap line in Snippet Note" } ================================================ FILE: locales/zh-CN.json ================================================ { "Notes": "笔记", "Tags": "标签", "Preferences": "首选项", "Make a note": "新建笔记", "Ctrl": "Ctrl", "Ctrl(^)": "Ctrl(^)", "to create a new note": "新建笔记", "Toggle Mode": "切换模式", "Trash": "废纸篓", "Ok": "好", "MODIFICATION DATE": "更改时间", "Words": "单词数", "Letters": "字数", "STORAGE": "本地存储", "FOLDER": "文件夹", "CREATION DATE": "创建时间", "NOTE LINK": "笔记链接", ".md": ".md", ".txt": ".txt", ".html": ".html", ".pdf": ".pdf", "Print": "打印", "Your preferences for Boostnote": "个性设置", "Storage Locations": "本地存储", "Add Storage Location": "添加一个本地存储位置", "Add Folder": "新建文件夹", "Open Storage folder": "打开本地存储文件夹", "Unlink": "取消链接", "Edit": "编辑", "Delete": "删除", "Interface": "界面", "Interface Theme": "主题", "Default": "默认", "White": "White", "Solarized Dark": "Solarized Dark", "Dark": "Dark", "Show a confirmation dialog when deleting notes": "删除笔记的时候,显示确认框", "Editor": "编辑器", "Editor Theme": "编辑器主题", "Editor Font Size": "编辑器字号", "Editor Font Family": "编辑器字体", "Editor Indent Style": "编辑器缩进风格", "Spaces": "Spaces", "Tabs": "Tabs", "Switch to Preview": "快速切换到预览界面", "When Editor Blurred": "当编辑器失去焦点的时候", "When Editor Blurred, Edit On Double Click": "当编辑器失去焦点的时候预览,双击切换到编辑界面", "On Right Click": "右键点击", "Editor Keymap": "编辑器键位设置", "default": "默认", "vim": "vim", "emacs": "emacs", "⚠️ Please restart boostnote after you change the keymap": "⚠️ 修改后,请重启 boostnote", "Show line numbers in the editor": "在编辑器中显示行号", "Allow editor to scroll past the last line": "允许编辑器滚动到最后一行", "Bring in web page title when pasting URL on editor": "粘贴网页链接的时候,显示为网页标题", "Preview": "预览", "Preview Font Size": "预览字号", "Preview Font Family": "预览字体", "Code Block Theme": "代码块主题", "Allow preview to scroll past the last line": "允许预览时滚动到最后一行", "Show line numbers for preview code blocks": "在预览时显示行号", "LaTeX Inline Open Delimiter": "LaTeX 单行开头分隔符", "LaTeX Inline Close Delimiter": "LaTeX 单行结尾分隔符", "LaTeX Block Open Delimiter": "LaTeX 多行开头分隔符", "LaTeX Block Close Delimiter": "LaTeX 多行结尾分隔符", "PlantUML Server": "PlantUML 服务器", "Community": "社区", "Subscribe to Newsletter": "订阅邮件", "GitHub": "GitHub", "Blog": "博客", "Facebook Group": "Facebook Group", "Twitter": "Twitter", "About": "关于", "Boostnote": "Boostnote", "An open source note-taking app made for programmers just like you.": "一款专门为程序员朋友量身打造的开源笔记", "Website": "官网", "Development": "开发", " : Development configurations for Boostnote.": " : Boostnote 的开发配置", "Copyright (C) 2017 - 2019 BoostIO": "Copyright (C) 2017 - 2019 BoostIO", "License: GPL v3": "License: GPL v3", "Analytics": "分析", "Boostnote collects anonymous data for the sole purpose of improving the application, and strictly does not collect any personal information such the contents of your notes.": "Boostnote 收集匿名数据只为了提升软件使用体验,绝对不收集任何个人信息(包括笔记内容)", "You can see how it works on ": "你可以看看它的源码是如何运作的 ", "You can choose to enable or disable this option.": "你可以选择开启或禁用这个功能", "Enable analytics to help improve Boostnote": "允许对数据进行分析,帮助我们改进 Boostnote", "Crowdfunding": "众筹", "Dear Boostnote users,": "亲爱的用户:", "Thank you for using Boostnote!": "谢谢你使用 Boostnote!", "Boostnote is used in about 200 different countries and regions by an awesome community of developers.": "大约有200个不同的国家和地区的优秀开发者们都在使用 Boostnote!", "To support our growing userbase, and satisfy community expectations,": "为了继续支持这种发展,和满足社区的期待,", "we would like to invest more time and resources in this project.": "我们非常愿意投入更多的时间和资源到这个项目中。", "If you use Boostnote and see its potential, help us out by supporting the project on OpenCollective!": "如果你喜欢这款软件并且看好它的潜力, 请在 OpenCollective 上支持我们!", "Thanks,": "十分感谢!", "The Boostnote Team": "Boostnote 的维护人员", "Support via OpenCollective": "在 OpenCollective 上支持我们", "Language": "语言", "English": "English", "German": "German", "French": "French", "Show \"Saved to Clipboard\" notification when copying": "复制的时候,显示 \"已复制\" 提示", "All Notes": "所有笔记", "Starred": "星标收藏", "Are you sure to ": "你确定要", " delete": " 删除", "this folder?": "这个文件夹?", "Confirm": "确认", "Cancel": "取消", "Markdown Note": "Markdown 笔记", "This format is for creating text documents. Checklists, code blocks and Latex blocks are available.": "创建文档,清单,代码块甚至是 Latex 格式文档", "Snippet Note": "代码笔记", "This format is for creating code snippets. Multiple snippets can be grouped into a single note.": "创建代码片段,支持多种语法代码片段", "Tab to switch format": "使用 Tab 键切换格式", "Updated": "更新时间", "Created": "创建时间", "Alphabetically": "A~Z 排序", "Counter": "标签下文章数量排序", "Default View": "默认视图", "Compressed View": "列表视图", "Search": "搜索", "Blog Type": "博客类型", "Blog Address": "博客地址", "Save": "保存", "Auth": "Auth", "Authentication Method": "认证方法", "JWT": "JWT", "USER": "USER", "Token": "Token", "Storage": "本地存储", "Hotkeys": "快捷键", "Show/Hide Boostnote": "显示/隐藏 Boostnote", "Restore": "恢复", "Permanent Delete": "永久删除", "Confirm note deletion": "确认删除笔记", "This will permanently remove this note.": "将永久地删除这条笔记", "Successfully applied!": "设置成功", "Albanian": "Albanian", "Chinese (zh-CN)": "简体中文", "Chinese (zh-TW)": "繁體中文", "Czech": "捷克文", "Danish": "Danish", "Japanese": "Japanese", "Korean": "Korean", "Norwegian": "Norwegian", "Polish": "Polish", "Portuguese": "Portuguese", "Spanish": "Spanish", "Unsaved Changes!": "你必须保存一下!", "Russian": "Russian", "Editor Rulers": "Editor Rulers", "Enable": "开启", "Disable": "关闭", "Sanitization": "代码处理", "Only allow secure html tags (recommended)": "只允许安全的 html 标签(推荐)", "Allow styles": "允许样式", "Allow dangerous html tags": "允许危险的 html 标签", "Select filter mode": "选择过滤模式", "Add tag...": "添加标签...", "Star": "星标", "Fullscreen": "全屏", "Info": "详情", "Remove pin": "取消置顶", "Pin to Top": "置顶", "Delete Note": "删除笔记", "Clone Note": "复制笔记", "Restore Note": "恢复笔记", "Copy Note Link": "复制笔记链接", "Publish Blog": "发布博客", "Update Blog": "更新博客", "Open Blog": "打开博客", "Empty Trash": "清空废纸篓", "Rename Folder": "重命名文件夹", "Export Folder": "导出文件夹", "Export as txt": "导出为 txt", "Export as md": "导出为 md", "Delete Folder": "删除文件夹", "Select directory": "选择目录", "Select a folder to export the files to": "选择一个导出目录", "Description...": "描述...", "Publish Failed": "发布失败", "Check and update your blog setting and try again.": "检查并修改你的博客设置后重试。", "Delete a snippet": "删除一个代码片段", "This work cannot be undone.": "此操作无法撤销。", "Help": "帮助", "Hungarian": "匈牙利语", "Hide Help": "隐藏帮助", "wordpress": "wordpress", "Add Storage": "添加存储", "Name": "名称", "Type": "类型", "File System": "文件", "Setting up 3rd-party cloud storage integration:": "设置整合第三方云存储:", "Cloud-Syncing-and-Backup": "云端同步和备份", "Location": "路径", "Select Folder": "选择文件夹", "Add": "添加", "Available Keys": "可用按键", "Select Directory": "选择目录", "copy": "副本", "Create new folder": "创建新文件夹", "Folder name": "文件夹名称", "Create": "创建", "Unlink Storage": "取消存储链接", "Unlinking removes this linked storage from Boostnote. No data is removed, please manually delete the folder from your hard drive if needed.": "取消链接会移除存储和 Boostnote 的链接。文件将不会被删除,如果你需要的话可以手动删除此目录。", "Empty note": "空笔记", "Unnamed": "未命名", "Rename": "重命名", "Folder Name": "文件夹名称", "No tags": "无标签", "Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.": "将文本箭头转换为完整符号。 ⚠ 注意这会影响 Markdown 的 HTML 注释。", "⚠ You have pasted a link referring an attachment that could not be found in the storage location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠": "⚠ 您粘贴了一个链接,但在此文档的存储位置中找不到对应的附件。仅当附件和文档在同一存储位置时,才支持粘贴引用附件的链接。请将附件拖放到文档内!⚠", "Default New Note": "预设新笔记类型", "Show only related tags": "只显示相关标签", "Snippet Default Language": "程式码片段预设语言", "Disable Direct Write (It will be applied after restarting)": "停用直接编辑 (重启后生效)", "Enable smart table editor": "启用智能表格编辑器", "Enable smart quotes": "启用智能引号", "Allow line through checkbox": "替标示为完成的选框添加删除线", "Custom CSS": "自定义 CSS", "Allow custom CSS for preview": "允许预览自定义 CSS", "Render newlines in Markdown paragraphs as
": "在 Markdown 段落中使用
换行", "Spellcheck disabled": "拼写检查已禁用", "Show menu bar": "显示菜单栏", "Auto Detect": "自动检测", "Filter tags/folders...": "filter tags/folders...", "Enable HTML label in mermaid flowcharts": "在 mermaid flowcharts 中启用 HTML 标签 ⚠ 这个选项可能会产生 XSS", "Wrap line in Snippet Note": "在 Snippet Note 里换行", "Toggle Editor Mode": "切换编辑模式", "Insert Current Date": "插入当前日期", "Insert Current Date and Time": "插入当前日期和时间", "Paste HTML": "粘贴 HTML", "Show/Hide Menu Bar": "显示/隐藏 菜单栏", "Save tags of a note in alphabetical order": "按字母顺序存储标签", "Show tags of a note in alphabetical order": "按字母顺序显示标签", "Enable live count of notes": "实时统计标签下笔记数量", "New notes are tagged with the filtering tags": "新建的笔记带有在标签列表过滤的标签", "Front matter title field": "从 front-matter 中抽取标题的字段名", "Extract title from front matter": "启用从 front-matter 抽取标题", "Enable HTML paste": "启用 HTML 粘贴(自动转换 html 到 md)", "Enable spellcheck - Experimental feature!! :)": "启用拼写检查 - 实验性功能!! :)", "Matching character pairs": "Matching character pairs", "Matching character triples": "Matching character triples", "Exploding character pairs": "Exploding character pairs", "Custom MarkdownLint Rules": "自定义 MarkdownLint 规则", "Enable MarkdownLint": "启用 MarkdownLint", "When scrolling, synchronize preview with editor": "滚动编辑页时同步滚动预览页", "This will delete all notes in the folder and can not be undone.": "即将删除文件夹中所有笔记,并且不能撤销。", "Always Ask": "每次询问" } ================================================ FILE: locales/zh-TW.json ================================================ { "Notes": "筆記", "Tags": "標籤", "Preferences": "偏好設定", "Make a note": "做點筆記", "Ctrl": "Ctrl", "Ctrl(^)": "Ctrl(^)", "to create a new note": "新增筆記", "Toggle Mode": "切換模式", "Add tag...": "新增標籤...", "Trash": "垃圾桶", "Ok": "好", "MODIFICATION DATE": "修改時間", "Words": "單字", "Letters": "字數", "STORAGE": "本機儲存空間", "FOLDER": "資料夾", "CREATION DATE": "建立時間", "NOTE LINK": "筆記連結", ".md": ".md", ".txt": ".txt", ".html": ".html", ".pdf": ".pdf", "Print": "列印", "Your preferences for Boostnote": "Boostnote 偏好設定", "Help": "幫助", "Hide Help": "隱藏幫助", "Storage Locations": "儲存空間", "Add Storage Location": "新增儲存位置", "Add Folder": "新增資料夾", "Select Folder": "選擇資料夾", "Open Storage folder": "開啟儲存資料夾", "Unlink": "解除連結", "Edit": "編輯", "Delete": "刪除", "Interface": "介面", "Interface Theme": "介面主題", "Default": "預設", "White": "White", "Solarized Dark": "Solarized Dark", "Dark": "Dark", "Show a confirmation dialog when deleting notes": "刪除筆記時顯示確認對話框", "Disable Direct Write (It will be applied after restarting)": "停用直接編輯 (重新啟動後生效)", "Show only related tags": "只顯示相關標籤", "Editor Theme": "編輯器主題", "Editor Font Size": "編輯器字型大小", "Editor Font Family": "編輯器字體", "Editor Indent Style": "縮排風格", "Spaces": "空格", "Tabs": "Tabs", "Switch to Preview": "切回預覽頁面", "When Editor Blurred": "當編輯器失去焦點時", "When Editor Blurred, Edit On Double Click": "當編輯器失去焦點時,點兩下開始編輯", "On Right Click": "點選右鍵", "Editor Keymap": "編輯器 Keymap", "default": "預設", "vim": "vim", "emacs": "emacs", "⚠️ Please restart boostnote after you change the keymap": "⚠️ 修改鍵盤配置後請重新啟動 Boostnote ", "Show line numbers in the editor": "在編輯器中顯示行號", "Allow editor to scroll past the last line": "允許編輯器捲軸捲動超過最後一行", "Enable smart quotes": "啟用智慧引號", "Bring in web page title when pasting URL on editor": "在編輯器貼上網址時自動加上網頁標題", "Preview": "預覽頁面", "Preview Font Size": "預覽頁面字型大小", "Preview Font Family": "預覽頁面字體", "Code Block Theme": "程式碼區塊主題", "Allow preview to scroll past the last line": "允許預覽頁面捲軸捲動超過最後一行", "Show line numbers for preview code blocks": "在程式碼區塊預覽中顯示行號", "LaTeX Inline Open Delimiter": "LaTeX 單行開頭符號", "LaTeX Inline Close Delimiter": "LaTeX 單行結尾符號", "LaTeX Block Open Delimiter": "LaTeX 多行開頭符號", "LaTeX Block Close Delimiter": "LaTeX 多行結尾符號", "PlantUML Server": "PlantUML 伺服器", "Community": "社群", "Subscribe to Newsletter": "訂閱電子報", "GitHub": "GitHub", "Blog": "部落格", "Facebook Group": "Facebook 社團", "Twitter": "Twitter", "About": "關於", "Boostnote": "Boostnote", "An open source note-taking app made for programmers just like you.": "一款專門為程式設計師朋友量身打造的開源筆記軟體", "Website": "官方網站", "Development": "開發", " : Development configurations for Boostnote.": " : Boostnote 的開發設定", "Copyright (C) 2017 - 2019 BoostIO": "Copyright (C) 2017 - 2019 BoostIO", "License: GPL v3": "License: GPL v3", "Analytics": "分析", "Boostnote collects anonymous data for the sole purpose of improving the application, and strictly does not collect any personal information such the contents of your notes.": "Boostnote 收集匿名資料單純只為了提升軟體使用體驗,絕對不收集任何個人資料(包括筆記內容)", "You can see how it works on ": "您可以看看它的程式碼是如何運作 ", "You can choose to enable or disable this option.": "您可以選擇啟用或停用這項功能", "Enable analytics to help improve Boostnote": "啟用數據分析以協助我們改進 Boostnote", "Crowdfunding": "群眾募資", "Dear Boostnote users,": "親愛的使用者:", "Thank you for using Boostnote!": "感謝您使用 Boostnote!", "Boostnote is used in about 200 different countries and regions by an awesome community of developers.": "大約有 200 個不同的國家和地區的優秀開發者們都在使用 Boostnote!", "To support our growing userbase, and satisfy community expectations,": "為了繼續支持我們的使用者成長與滿足社群期待,", "we would like to invest more time and resources in this project.": "我們非常願意投入更多的時間和資源到這個專案中。", "If you use Boostnote and see its potential, help us out by supporting the project on OpenCollective!": "如果您喜歡這款軟體並且看好它的潛力, 請在 OpenCollective 上支持我們!", "Thanks,": "十分感謝!", "The Boostnote Team": "Boostnote 的團隊", "Support via OpenCollective": "在 OpenCollective 上支持我們", "Language": "語言", "Default New Note": "新筆記預設類型", "English": "English", "German": "德文", "French": "法文", "Show \"Saved to Clipboard\" notification when copying": "複製的時候,顯示 \"已複製到剪貼簿\" 的通知", "All Notes": "所有筆記", "Starred": "我的最愛", "Are you sure to ": "您確定要 ", " delete": " 刪除", "this folder?": "這個資料夾嗎?", "Confirm": "確認", "Cancel": "取消", "Markdown Note": "Markdown 筆記", "This format is for creating text documents. Checklists, code blocks and Latex blocks are available.": "建立文件、清單,也可以使用程式碼區塊及 Latex 區塊。", "Snippet Note": "程式碼片段筆記", "This format is for creating code snippets. Multiple snippets can be grouped into a single note.": "建立程式碼區塊片段。多個程式碼區塊可以分組爲同一個筆記。", "Tab to switch format": "使用 Tab 鍵切換格式", "Updated": "依更新時間排序", "Created": "依建立時間排序", "Alphabetically": "依字母排序", "Counter": "計數器", "Default View": "預設顯示", "Compressed View": "緊密顯示", "Search": "搜尋", "Blog Type": "部落格類型", "Blog Address": "部落格網址", "Save": "儲存", "Auth": "認證", "Authentication Method": "認證方法", "JWT": "JWT", "USER": "USER", "Token": "Token", "Storage": "儲存空間", "Hotkeys": "快捷鍵", "Show/Hide Boostnote": "顯示/隱藏 Boostnote", "Toggle Editor Mode": "切換編輯器模式", "Delete Note": "刪除模式", "Restore": "還原", "Permanent Delete": "永久刪除", "Confirm note deletion": "確認刪除筆記", "This will permanently remove this note.": "永久地刪除此筆記", "Successfully applied!": "設定成功!", "Albanian": "阿爾巴尼亞語", "Chinese (zh-CN)": "简体中文 (zh-CN)", "Chinese (zh-TW)": "繁體中文 (zh-TW)", "Czech": "捷克文", "Danish": "丹麥文", "Japanese": "日文", "Korean": "韓文", "Norwegian": "挪威語", "Polish": "波蘭文", "Portuguese": "葡萄牙文", "Spanish": "西班牙文", "Unsaved Changes!": "您必須儲存一下!", "UserName": "使用者名稱", "Password": "密碼", "Russian": "俄羅斯語", "Hungarian": "匈牙利語", "Thai": "泰文 (ภาษาไทย)", "Command(⌘)": "指令(⌘)", "Add Storage": "新增儲存空間", "Name": "名稱", "Type": "類型", "File System": "檔案系統", "Setting up 3rd-party cloud storage integration:": "第三方雲端儲存空間設定:", "Cloud-Syncing-and-Backup": "雲端同步與備份", "Location": "位置", "Add": "新增", "Unlink Storage": "解除儲存空間連結", "Unlinking removes this linked storage from Boostnote. No data is removed, please manually delete the folder from your hard drive if needed.": "從 Boostnote 移除解此連結. 資料並不會被刪除,如需刪除,請手動從硬碟資料夾中刪除資料。", "Editor Rulers": "編輯器中顯示垂直尺規", "Enable": "啟用", "Disable": "停用", "Sanitization": "過濾 HTML 程式碼", "Only allow secure html tags (recommended)": "只允許安全的 HTML 標籤 (建議)", "Render newlines in Markdown paragraphs as
": "在 Markdown 段落中使用
換行", "Allow styles": "允許樣式", "Allow dangerous html tags": "允許危險的 HTML 標籤", "Convert textual arrows to beautiful signs. ⚠ This will interfere with using HTML comments in your Markdown.": "將文本箭頭轉換為完整符號。 ⚠ 注意這會影響 Markdown 的 HTML 注釋。", "⚠ You have pasted a link referring an attachment that could not be found in the storage location of this note. Pasting links referring attachments is only supported if the source and destination location is the same storage. Please Drag&Drop the attachment instead! ⚠": "⚠ 您貼上了一個不存在本筆記儲存空間的附加檔案連結。貼上附加檔案連結功能只支援剪下貼上於相同儲存空間之間。請改以拖拉 Drag&Drop 附加檔案!⚠", "Spellcheck disabled": "拼寫檢查已關閉", "Save tags of a note in alphabetical order": "依照字母排序儲存標籤", "Enable live count of notes": "啟用即時統計筆記數量", "Enable smart table editor": "啟用智能表格編輯器", "Snippet Default Language": "程式碼片段預設語言", "New notes are tagged with the filtering tags": "以過慮標籤標記新筆記", "Show menu bar": "顯示功能列", "Auto Detect": "自動偵測", "Filter tags/folders...": "過濾標籤/資料夾...", "Enable HTML label in mermaid flowcharts": "在 mermaid 流程圖中啟用 HTML 標籤 ⚠ 本選項有潛在的 XSS 安全風險。", "Wrap line in Snippet Note": "Snippet Note 行尾換行", "Enable Auto Update": "Enable Auto Update" } ================================================ FILE: package.json ================================================ { "name": "boost", "productName": "Boostnote", "version": "0.16.1", "main": "index.js", "description": "Boostnote", "license": "GPL-3.0", "scripts": { "start": "electron ./index.js", "compile": "grunt compile", "test": "npm run ava && npm run jest", "ava": "cross-env NODE_ENV=test ava --serial", "jest": "jest", "fix": "eslint . --fix", "lint": "eslint .", "dev": "cross-env NODE_ENV=development node dev-scripts/dev.js", "watch": "webpack-dev-server --hot" }, "config": { "electron-version": "4.2.12" }, "repository": { "type": "git", "url": "git+https://github.com/BoostIO/Boostnote.git" }, "keywords": [ "boostnote", "b00st", "boostio", "note", "snippet", "storage", "electron" ], "author": "Junyoung Choi (https://github.com/Rokt33r)", "contributors": [ "Kazu Yokomizo (https://github.com/kazup01)", "dojineko (https://github.com/dojineko)", "Romain Bazile (https://github.com/gromain)", "Bruno Paz (https://github.com/brpaz)", "Fabian Mueller (https://github.com/dotcs)", "Yoshihisa Mochihara (https://github.com/yosmoc)", "Mike Resoli (https://github.com/mikeres0)", "tjado (https://github.com/tejado)", "Sota Sugiura (https://github.com/sota1235)", "Milo Todt (https://github.com/MiloTodt)" ], "bugs": { "url": "https://github.com/BoostIO/Boostnote/issues" }, "homepage": "https://boostnote.io", "dependencies": { "@enyaxu/markdown-it-anchor": "^5.0.2", "@hikerpig/markdown-it-toc-and-anchor": "^4.5.0", "@rokt33r/js-sequence-diagrams": "^2.0.6-2", "@rokt33r/markdown-it-math": "^4.0.1", "@rokt33r/season": "^5.3.0", "@susisu/mte-kernel": "^2.0.0", "aws-sdk": "^2.48.0", "aws-sdk-mobile-analytics": "^0.9.2", "chart.js": "^2.7.2", "codemirror": "^5.40.2", "codemirror-mode-elixir": "^1.1.1", "command-exists": "^1.2.9", "connected-react-router": "^6.4.0", "electron-config": "^1.0.0", "electron-gh-releases": "^2.0.4", "escape-string-regexp": "^1.0.5", "file-uri-to-path": "^1.0.0", "file-url": "^2.0.2", "filenamify": "^2.1.0", "flowchart.js": "^1.6.5", "font-awesome": "^4.3.0", "fs-extra": "^5.0.0", "highlight.js": "^9.13.1", "i18n-2": "^0.7.2", "iconv-lite": "^0.4.19", "immutable": "^3.8.1", "invert-color": "^2.0.0", "js-yaml": "^3.13.1", "jsonlint-mod": "^1.7.4", "katex": "^0.10.1", "lodash": "^4.17.19", "lodash-move": "^1.1.1", "markdown-it": "^6.0.1", "markdown-it-abbr": "^1.0.4", "markdown-it-admonition": "^1.0.4", "markdown-it-emoji": "^1.1.1", "markdown-it-footnote": "^3.0.0", "markdown-it-imsize": "^2.0.1", "markdown-it-kbd": "^1.1.1", "markdown-it-multimd-table": "^2.0.1", "markdown-it-plantuml": "^1.1.0", "markdown-it-smartarrows": "^1.0.1", "markdown-it-sub": "^1.0.0", "markdown-it-sup": "^1.0.0", "markdown-toc": "^1.2.0", "mdurl": "^1.0.1", "mermaid": "^8.5.2", "moment": "^2.10.3", "mousetrap": "^1.6.2", "mousetrap-global-bind": "^1.1.0", "node-ipc": "^8.1.0", "prettier": "^1.18.2", "prop-types": "^15.7.2", "query-string": "^6.5.0", "raphael": "^2.2.7", "react": "^16.8.6", "react-autosuggest": "^9.4.0", "react-codemirror": "^1.0.0", "react-color": "^2.2.2", "react-composition-input": "^1.1.1", "react-debounce-render": "^4.0.1", "react-dom": "^16.8.6", "react-emoji-render": "^1.1.0", "react-image-carousel": "^2.0.18", "react-redux": "^7.0.3", "react-router-dom": "^5.0.0", "react-sortable-hoc": "^0.6.7", "react-transition-group": "^2.5.0", "redux": "^3.5.2", "sander": "^0.5.1", "sanitize-html": "^1.18.2", "striptags": "^2.2.1", "turndown": "^4.0.2", "turndown-plugin-gfm": "^1.0.2", "typo-js": "^1.0.3", "unique-slug": "2.0.0", "uuid": "^3.2.1" }, "devDependencies": { "ava": "^0.25.0", "babel-core": "^6.14.0", "babel-jest": "^22.4.3", "babel-loader": "^6.2.0", "babel-plugin-react-transform": "^2.0.0", "babel-plugin-webpack-alias": "^2.1.1", "babel-preset-env": "^1.6.1", "babel-preset-es2015": "^6.3.13", "babel-preset-react": "^6.24.1", "babel-preset-react-hmre": "^1.0.1", "babel-register": "^6.11.6", "browser-env": "^3.2.5", "color": "^3.0.0", "concurrently": "^3.4.0", "copy-to-clipboard": "^3.0.6", "cross-env": "^5.2.0", "css": "^2.2.4", "css-loader": "^0.19.0", "devtron": "^1.1.0", "dom-storage": "^2.0.2", "electron": "4", "electron-debug": "^2.2.0", "electron-devtools-installer": "^2.2.4", "electron-packager": "^12.2.0", "eslint": "^4.18.2", "eslint-config-prettier": "^6.10.0", "eslint-config-standard": "^6.2.1", "eslint-config-standard-jsx": "^3.2.0", "eslint-plugin-prettier": "^3.1.2", "eslint-plugin-react": "^7.8.2", "eslint-plugin-standard": "^3.0.1", "faker": "^3.1.0", "grunt": "^0.4.5", "grunt-electron-installer": "2.1.0", "history": "^4.9.0", "husky": "^1.1.0", "identity-obj-proxy": "^3.0.0", "jest": "^22.4.3", "jest-localstorage-mock": "^2.2.0", "jsdom": "^9.4.2", "json-loader": "^0.5.4", "markdownlint": "^0.11.0", "merge-stream": "^1.0.0", "mock-require": "^3.0.1", "nib": "^1.1.0", "react-css-modules": "^4.7.9", "react-input-autosize": "^1.1.0", "react-test-renderer": "^16.8.6", "redux-devtools": "^3.5.0", "redux-devtools-dock-monitor": "^1.1.3", "redux-devtools-log-monitor": "^1.4.0", "signale": "^1.2.1", "standard": "^8.4.0", "style-loader": "^0.12.4", "stylus": "^0.52.4", "stylus-loader": "^2.3.1", "webpack": "^1.12.2", "webpack-dev-server": "^1.12.0" }, "optionalDependencies": { "grunt-electron-installer-debian": "^0.5.0", "grunt-electron-installer-redhat": "^0.3.1" }, "optional": false, "ava": { "files": [ "tests/**/*-test.js" ], "require": [ "babel-register", "./tests/helpers/setup-browser-env.js", "./tests/helpers/setup-electron-mock.js" ], "babel": "inherit" }, "jest": { "moduleNameMapper": { "\\.(jpg|jpeg|png|gif|eot|otf|webp|svg|ttf|woff|woff2|mp4|webm|wav|mp3|m4a|aac|oga)$": "/__mocks__/fileMock.js", "\\.(css|less|styl)$": "identity-obj-proxy" }, "setupFiles": [ "/tests/jest.js", "jest-localstorage-mock" ] }, "husky": { "hooks": { "pre-commit": "npm run lint" } } } ================================================ FILE: prettier.config ================================================ { "singleQuote": true, "semi": false, "jsxSingleQuote": true } ================================================ FILE: readme.md ================================================ > # New Boost Note app is available! > > We've launched a new Boost Note app which supports real-time collaborative writing. > > And it is open sourced too! Please check it out! https://github.com/BoostIO/BoostNote-App > > ## 📦 Download App > > ### 🖥 Desktop > > - [🌎 Web App (boostnote.io)](https://boostnote.io) > - [🍎 macOS (.dmg)](https://github.com/BoostIO/BoostNote-App/releases/latest/download/boost-note-mac.dmg) > - [:framed_picture: Windows (.exe NSIS)](https://github.com/BoostIO/BoostNote-App/releases/latest/download/boost-note-win.exe) > - [🐧 Linux (.deb)](https://github.com/BoostIO/BoostNote-App/releases/latest/download/boost-note-linux.deb) > - [🐧 Linux (.rpm)](https://github.com/BoostIO/BoostNote-App/releases/latest/download/boost-note-linux.rpm) > > ### 📱 Mobile > > - [🌎 Mobile Web App (m.boostnote.io)](https://m.boostnote.io) > - [🍏 iOS (Apple App Store)](https://apps.apple.com/gb/app/boost-note-mobile/id1576176505) > - [🤖 Android (Google Play Store)](https://play.google.com/store/apps/details?id=com.boostio.boostnote2021)

BoostNote-Legacy

Note-taking app for programmers.

Apps available for Mac, Windows and Linux.
Built with Electron, React + Redux, Webpack, and CSSModules.

Build Status

## Download [Find the latest release of Boostnote here!](https://github.com/BoostIO/boost-releases/releases/) #### More Information - Website: https://boostnote.io - [Development](https://github.com/BoostIO/Boostnote/blob/master/docs/build.md): Development configurations for Boostnote. - Copyright (C) 2016 - 2020 BoostIO, Inc. #### License [GPL v3](./LICENSE). ================================================ FILE: snap/gui/boostnote.desktop ================================================ [Desktop Entry] Version=1.0 Type=Application Name=Boostnote Comment=A note-taking app for programmers Exec=$SNAP/etc/boostnote/Boostnote Icon=resources/app.png MimeType=image/x-foo; NotShowIn=KDE; ================================================ FILE: snap/snapcraft.yaml ================================================ name: boostnote version: '0.1' summary: A note-taking app for programmers description: | Boostnote is an open source note-taking app made for programmers just like you. https://boostnote.io https://github.com/BoostIO/Boostnote grade: stable confinement: strict apps: asmstnote: command: desktop-launch $SNAP/etc/boostnote/Boostnote plugs: - browser-support - network - unity7 - gsettings parts: src: plugin: nodejs source: . deps: plugin: nil stage-packages: - libgconf-2-4 - libnss3 - libxss1 - fontconfig-config desktop-integration: plugin: nil stage-packages: - libappindicator1 - libdbusmenu-glib4 - libnotify4 - libunity9 launcher: plugin: dump source: . stage: - etc/boostnote organize: dist/Boostnote-linux-x64: etc/boostnote after: [desktop-glib-only] ================================================ FILE: tests/.gitignore ================================================ sandbox/* ================================================ FILE: tests/components/TagListItem.snapshot.test.js ================================================ import React from 'react' import renderer from 'react-test-renderer' import TagListItem from 'browser/components/TagListItem' it('TagListItem renders correctly', () => { const tagListItem = renderer.create( ) expect(tagListItem.toJSON()).toMatchSnapshot() }) ================================================ FILE: tests/components/__snapshots__/TagListItem.snapshot.test.js.snap ================================================ // Jest Snapshot v1, https://goo.gl/fbAQLP exports[`TagListItem renders correctly 1`] = `
`; ================================================ FILE: tests/dataApi/addStorage.js ================================================ const test = require('ava') const addStorage = require('browser/main/lib/dataApi/addStorage') global.document = require('jsdom').jsdom('') global.window = document.defaultView global.navigator = window.navigator const Storage = require('dom-storage') const localStorage = (window.localStorage = global.localStorage = new Storage( null, { strict: true } )) const path = require('path') const TestDummy = require('../fixtures/TestDummy') const sander = require('sander') const _ = require('lodash') const os = require('os') const CSON = require('@rokt33r/season') const v1StoragePath = path.join(os.tmpdir(), 'test/addStorage-v1-storage') // const legacyStoragePath = path.join(os.tmpdir(), 'test/addStorage-legacy-storage') // const emptyDirPath = path.join(os.tmpdir(), 'test/addStorage-empty-storage') test.beforeEach(t => { t.context.v1StorageData = TestDummy.dummyStorage(v1StoragePath) // t.context.legacyStorageData = TestDummy.dummyLegacyStorage(legacyStoragePath) localStorage.setItem('storages', JSON.stringify([])) }) test.serial('Add Storage', t => { const input = { type: 'FILESYSTEM', name: 'add-storage1', path: v1StoragePath } return Promise.resolve() .then(function doTest() { return addStorage(input) }) .then(function validateResult(data) { const { storage, notes } = data // Check data.storage t.true(_.isString(storage.key)) t.is(storage.name, input.name) t.is(storage.type, input.type) t.is(storage.path, input.path) t.is(storage.version, '1.0') t.is(storage.folders.length, t.context.v1StorageData.json.folders.length) // Check data.notes t.is(notes.length, t.context.v1StorageData.notes.length) notes.forEach(function validateNote(note) { t.is(note.storage, storage.key) }) // Check localStorage const cacheData = _.find(JSON.parse(localStorage.getItem('storages')), { key: data.storage.key }) t.is(cacheData.name, input.name) t.is(cacheData.type, input.type) t.is(cacheData.path, input.path) // Check boostnote.json const jsonData = CSON.readFileSync( path.join(storage.path, 'boostnote.json') ) t.true(_.isArray(jsonData.folders)) t.is(jsonData.version, '1.0') t.is(jsonData.folders.length, t.context.v1StorageData.json.folders.length) }) }) test.after.always(() => { localStorage.clear() sander.rimrafSync(v1StoragePath) }) ================================================ FILE: tests/dataApi/attachmentManagement.test.js ================================================ 'use strict' jest.mock('fs') const fs = require('fs') const path = require('path') const findStorage = require('browser/lib/findStorage') jest.mock('unique-slug') const uniqueSlug = require('unique-slug') const mdurl = require('mdurl') const fse = require('fs-extra') jest.mock('sander') const sander = require('sander') const systemUnderTest = require('browser/main/lib/dataApi/attachmentManagement') it('should test that copyAttachment should throw an error if sourcePath or storageKey or noteKey are undefined', function() { systemUnderTest.copyAttachment(undefined, 'storageKey').then( () => {}, error => { expect(error).toBe('sourceFilePath has to be given') } ) systemUnderTest.copyAttachment(null, 'storageKey', 'noteKey').then( () => {}, error => { expect(error).toBe('sourceFilePath has to be given') } ) systemUnderTest.copyAttachment('source', undefined, 'noteKey').then( () => {}, error => { expect(error).toBe('storageKey has to be given') } ) systemUnderTest.copyAttachment('source', null, 'noteKey').then( () => {}, error => { expect(error).toBe('storageKey has to be given') } ) systemUnderTest.copyAttachment('source', 'storageKey', null).then( () => {}, error => { expect(error).toBe('noteKey has to be given') } ) systemUnderTest.copyAttachment('source', 'storageKey', undefined).then( () => {}, error => { expect(error).toBe('noteKey has to be given') } ) }) it("should test that copyAttachment should throw an error if sourcePath dosen't exists", function() { fs.existsSync = jest.fn() fs.existsSync.mockReturnValue(false) return systemUnderTest.copyAttachment('path', 'storageKey', 'noteKey').then( () => {}, error => { expect(error).toBe('source file does not exist') expect(fs.existsSync).toHaveBeenCalledWith('path') } ) }) it('should test that copyAttachment works correctly assuming correct working of fs', function() { const dummyExtension = '.ext' const sourcePath = 'path' + dummyExtension const storageKey = 'storageKey' const noteKey = 'noteKey' const dummyUniquePath = 'dummyPath' const dummyStorage = { path: 'dummyStoragePath' } const dummyReadStream = {} dummyReadStream.pipe = jest.fn() dummyReadStream.on = jest.fn((event, callback) => { callback() }) fs.existsSync = jest.fn() fs.existsSync.mockReturnValue(true) fs.createReadStream = jest.fn(() => dummyReadStream) fs.createWriteStream = jest.fn() findStorage.findStorage = jest.fn() findStorage.findStorage.mockReturnValue(dummyStorage) uniqueSlug.mockReturnValue(dummyUniquePath) return systemUnderTest .copyAttachment(sourcePath, storageKey, noteKey) .then(function(newFileName) { expect(findStorage.findStorage).toHaveBeenCalledWith(storageKey) expect(fs.createReadStream).toHaveBeenCalledWith(sourcePath) expect(fs.existsSync).toHaveBeenCalledWith(sourcePath) expect(fs.createReadStream().pipe).toHaveBeenCalled() expect(fs.createWriteStream).toHaveBeenCalledWith( path.join( dummyStorage.path, systemUnderTest.DESTINATION_FOLDER, noteKey, dummyUniquePath + dummyExtension ) ) expect(newFileName).toBe(dummyUniquePath + dummyExtension) }) }) it("should test that copyAttachment creates a new folder if the attachment folder doesn't exist", function() { const dummyStorage = { path: 'dummyStoragePath' } const noteKey = 'noteKey' const attachmentFolderPath = path.join( dummyStorage.path, systemUnderTest.DESTINATION_FOLDER ) const attachmentFolderNoteKyPath = path.join( dummyStorage.path, systemUnderTest.DESTINATION_FOLDER, noteKey ) const dummyReadStream = {} dummyReadStream.pipe = jest.fn() dummyReadStream.on = jest.fn((event, callback) => { callback() }) fs.createReadStream = jest.fn(() => dummyReadStream) fs.existsSync = jest.fn() fs.existsSync.mockReturnValueOnce(true) fs.existsSync.mockReturnValueOnce(false) fs.existsSync.mockReturnValueOnce(false) fs.mkdirSync = jest.fn() findStorage.findStorage = jest.fn() findStorage.findStorage.mockReturnValue(dummyStorage) uniqueSlug.mockReturnValue('dummyPath') return systemUnderTest .copyAttachment('path', 'storageKey', 'noteKey') .then(function() { expect(fs.existsSync).toHaveBeenCalledWith(attachmentFolderPath) expect(fs.mkdirSync).toHaveBeenCalledWith(attachmentFolderPath) expect(fs.existsSync).toHaveBeenLastCalledWith(attachmentFolderNoteKyPath) expect(fs.mkdirSync).toHaveBeenLastCalledWith(attachmentFolderNoteKyPath) }) }) it("should test that copyAttachment don't uses a random file name if not intended ", function() { const dummyStorage = { path: 'dummyStoragePath' } const dummyReadStream = {} dummyReadStream.pipe = jest.fn() dummyReadStream.on = jest.fn((event, callback) => { callback() }) fs.createReadStream = jest.fn(() => dummyReadStream) fs.existsSync = jest.fn() fs.existsSync.mockReturnValueOnce(true) fs.existsSync.mockReturnValueOnce(false) fs.mkdirSync = jest.fn() findStorage.findStorage = jest.fn() findStorage.findStorage.mockReturnValue(dummyStorage) uniqueSlug.mockReturnValue('dummyPath') return systemUnderTest .copyAttachment('path', 'storageKey', 'noteKey', false) .then(function(newFileName) { expect(newFileName).toBe('path') }) }) it('should test that copyAttachment with url (with extension, without query)', function() { const dummyStorage = { path: 'dummyStoragePath' } const dummyReadStream = { pipe: jest.fn(), on: jest.fn((event, callback) => { callback() }) } fs.createReadStream = jest.fn(() => dummyReadStream) const dummyWriteStream = { write: jest.fn((data, callback) => { callback() }) } fs.createWriteStream = jest.fn(() => dummyWriteStream) fs.existsSync = jest.fn() fs.existsSync.mockReturnValueOnce(true) fs.existsSync.mockReturnValueOnce(false) fs.mkdirSync = jest.fn() findStorage.findStorage = jest.fn() findStorage.findStorage.mockReturnValue(dummyStorage) uniqueSlug.mockReturnValue('dummyPath') const sourcePath = { sourceFilePath: 'http://www.foo.bar/baz/qux.jpg', type: 'base64', data: 'data:image/jpeg;base64,Ym9vc3Rub3Rl' } return systemUnderTest .copyAttachment(sourcePath, 'storageKey', 'noteKey') .then(function(newFileName) { expect(newFileName).toBe('dummyPath.jpg') }) }) it('should test that copyAttachment with url (with extension, with query)', function() { const dummyStorage = { path: 'dummyStoragePath' } const dummyReadStream = { pipe: jest.fn(), on: jest.fn((event, callback) => { callback() }) } fs.createReadStream = jest.fn(() => dummyReadStream) const dummyWriteStream = { write: jest.fn((data, callback) => { callback() }) } fs.createWriteStream = jest.fn(() => dummyWriteStream) fs.existsSync = jest.fn() fs.existsSync.mockReturnValueOnce(true) fs.existsSync.mockReturnValueOnce(false) fs.mkdirSync = jest.fn() findStorage.findStorage = jest.fn() findStorage.findStorage.mockReturnValue(dummyStorage) uniqueSlug.mockReturnValue('dummyPath') const sourcePath = { sourceFilePath: 'http://www.foo.bar/baz/qux.jpg?h=1080', type: 'base64', data: 'data:image/jpeg;base64,Ym9vc3Rub3Rl' } return systemUnderTest .copyAttachment(sourcePath, 'storageKey', 'noteKey') .then(function(newFileName) { expect(newFileName).toBe('dummyPath.jpg') }) }) it('should test that copyAttachment with url (without extension, without query)', function() { const dummyStorage = { path: 'dummyStoragePath' } const dummyReadStream = { pipe: jest.fn(), on: jest.fn((event, callback) => { callback() }) } fs.createReadStream = jest.fn(() => dummyReadStream) const dummyWriteStream = { write: jest.fn((data, callback) => { callback() }) } fs.createWriteStream = jest.fn(() => dummyWriteStream) fs.existsSync = jest.fn() fs.existsSync.mockReturnValueOnce(true) fs.existsSync.mockReturnValueOnce(false) fs.mkdirSync = jest.fn() findStorage.findStorage = jest.fn() findStorage.findStorage.mockReturnValue(dummyStorage) uniqueSlug.mockReturnValue('dummyPath') const sourcePath = { sourceFilePath: 'http://www.foo.bar/baz/qux', type: 'base64', data: 'data:image/jpeg;base64,Ym9vc3Rub3Rl' } return systemUnderTest .copyAttachment(sourcePath, 'storageKey', 'noteKey') .then(function(newFileName) { expect(newFileName).toBe('dummyPath.png') }) }) it('should test that copyAttachment with url (without extension, with query)', function() { const dummyStorage = { path: 'dummyStoragePath' } const dummyReadStream = { pipe: jest.fn(), on: jest.fn((event, callback) => { callback() }) } fs.createReadStream = jest.fn(() => dummyReadStream) const dummyWriteStream = { write: jest.fn((data, callback) => { callback() }) } fs.createWriteStream = jest.fn(() => dummyWriteStream) fs.existsSync = jest.fn() fs.existsSync.mockReturnValueOnce(true) fs.existsSync.mockReturnValueOnce(false) fs.mkdirSync = jest.fn() findStorage.findStorage = jest.fn() findStorage.findStorage.mockReturnValue(dummyStorage) uniqueSlug.mockReturnValue('dummyPath') const sourcePath = { sourceFilePath: 'http://www.foo.bar/baz/qux?h=1080', type: 'base64', data: 'data:image/jpeg;base64,Ym9vc3Rub3Rl' } return systemUnderTest .copyAttachment(sourcePath, 'storageKey', 'noteKey') .then(function(newFileName) { expect(newFileName).toBe('dummyPath.png') }) }) it('should replace the all ":storage" path with the actual storage path', function() { const storageFolder = systemUnderTest.DESTINATION_FOLDER const noteKey = '9c9c4ba3-bc1e-441f-9866-c1e9a806e31c' const testInput = '\n' + ' \n' + ' //header\n' + ' \n' + ' \n' + '

Headline

\n' + '

\n' + ' dummyImage.png\n' + '

\n' + '

\n' + ' dummyPDF.pdf\n' + '

\n' + '

\n' + ' dummyImage2.jpg\n' + '

\n' + '
\n' +
    '            \n' +
    '            \n' +
    '        
\n' + '
\n' +
    '            \n' +
    '            \n' +
    '        
\n' + ' \n' + '' const storagePath = '<>' const expectedOutput = '\n' + ' \n' + ' //header\n' + ' \n' + ' \n' + '

Headline

\n' + '

\n' + ' dummyImage.png\n' + '

\n' + '

\n' + ' dummyPDF.pdf\n' + '

\n' + '

\n' + ' dummyImage2.jpg\n' + '

\n' + '
\n' +
    '            \n' +
    '            \n' +
    '        
\n' + '
\n' +
    '            \n' +
    '            \n' +
    '        
\n' + ' \n' + '' const actual = systemUnderTest.fixLocalURLS(testInput, storagePath) expect(actual).toEqual(expectedOutput) }) it('should replace the ":storage" path with the actual storage path when they have different path separators', function() { const storageFolder = systemUnderTest.DESTINATION_FOLDER const noteKey = '9c9c4ba3-bc1e-441f-9866-c1e9a806e31c' const testInput = '\n' + ' \n' + ' //header\n' + ' \n' + ' \n' + '

Headline

\n' + '

\n' + ' dummyImage.png\n' + '

\n' + '

\n' + ' dummyPDF.pdf\n' + '

\n' + ' \n' + '' const storagePath = '<>' const expectedOutput = '\n' + ' \n' + ' //header\n' + ' \n' + ' \n' + '

Headline

\n' + '

\n' + ' dummyImage.png\n' + '

\n' + '

\n' + ' dummyPDF.pdf\n' + '

\n' + ' \n' + '' const actual = systemUnderTest.fixLocalURLS(testInput, storagePath) expect(actual).toEqual(expectedOutput) }) it('should test that generateAttachmentMarkdown works correct both with previews and without', function() { const fileName = 'fileName' const path = 'path' let expected = `![${fileName}](${path})` let actual = systemUnderTest.generateAttachmentMarkdown(fileName, path, true) expect(actual).toEqual(expected) expected = `[${fileName}](${path})` actual = systemUnderTest.generateAttachmentMarkdown(fileName, path, false) expect(actual).toEqual(expected) }) it('should test that migrateAttachments work when they have different path separators', function() { sander.existsSync = jest.fn(() => true) const dummyStoragePath = 'dummyStoragePath' const imagesPath = path.join(dummyStoragePath, 'images') const attachmentsPath = path.join(dummyStoragePath, 'attachments') const noteKey = 'noteKey' const testInput = '"# Test\n' + '\n' + '![Screenshot1](:storage' + path.win32.sep + '0.3b88d0dc.png)\n' + '![Screenshot2](:storage' + path.posix.sep + '0.2cb8875c.pdf)"' systemUnderTest.migrateAttachments(testInput, dummyStoragePath, noteKey) expect(sander.existsSync.mock.calls[0][0]).toBe(imagesPath) expect(sander.existsSync.mock.calls[1][0]).toBe( path.join(imagesPath, '0.3b88d0dc.png') ) expect(sander.existsSync.mock.calls[2][0]).toBe( path.join(attachmentsPath, '0.3b88d0dc.png') ) expect(sander.existsSync.mock.calls[3][0]).toBe( path.join(imagesPath, '0.2cb8875c.pdf') ) expect(sander.existsSync.mock.calls[4][0]).toBe( path.join(attachmentsPath, '0.2cb8875c.pdf') ) }) it('should test that getAttachmentsInMarkdownContent finds all attachments when they have different path separators', function() { const testInput = '"# Test\n' + '\n' + '![Screenshot1](:storage' + path.win32.sep + '9c9c4ba3-bc1e-441f-9866-c1e9a806e31c' + path.win32.sep + '0.3b88d0dc.png)\n' + '![Screenshot2](:storage' + path.posix.sep + '9c9c4ba3-bc1e-441f-9866-c1e9a806e31c' + path.posix.sep + '2cb8875c.pdf)\n' + '![Screenshot3](:storage' + path.win32.sep + '9c9c4ba3-bc1e-441f-9866-c1e9a806e31c' + path.posix.sep + 'bbf49b02.jpg)"' const actual = systemUnderTest.getAttachmentsInMarkdownContent(testInput) const expected = [ ':storage' + path.sep + '9c9c4ba3-bc1e-441f-9866-c1e9a806e31c' + path.sep + '0.3b88d0dc.png', ':storage' + path.sep + '9c9c4ba3-bc1e-441f-9866-c1e9a806e31c' + path.sep + '2cb8875c.pdf', ':storage' + path.sep + '9c9c4ba3-bc1e-441f-9866-c1e9a806e31c' + path.sep + 'bbf49b02.jpg' ] expect(actual).toEqual(expect.arrayContaining(expected)) }) it('should test that getAbsolutePathsOfAttachmentsInContent returns all absolute paths', function() { const dummyStoragePath = 'dummyStoragePath' const noteKey = '9c9c4ba3-bc1e-441f-9866-c1e9a806e31c' const testInput = '"# Test\n' + '\n' + '![Screenshot1](:storage' + path.win32.sep + noteKey + path.win32.sep + '0.6r4zdgc22xp.png)\n' + '![Screenshot2](:storage' + path.posix.sep + noteKey + path.posix.sep + '0.q2i4iw0fyx.pdf)\n' + '![Screenshot3](:storage' + path.win32.sep + noteKey + path.posix.sep + 'd6c5ee92.jpg)"' const actual = systemUnderTest.getAbsolutePathsOfAttachmentsInContent( testInput, dummyStoragePath ) const expected = [ dummyStoragePath + path.sep + systemUnderTest.DESTINATION_FOLDER + path.sep + noteKey + path.sep + '0.6r4zdgc22xp.png', dummyStoragePath + path.sep + systemUnderTest.DESTINATION_FOLDER + path.sep + noteKey + path.sep + '0.q2i4iw0fyx.pdf', dummyStoragePath + path.sep + systemUnderTest.DESTINATION_FOLDER + path.sep + noteKey + path.sep + 'd6c5ee92.jpg' ] expect(actual).toEqual(expect.arrayContaining(expected)) }) it('should remove the all ":storage" and noteKey references', function() { const storageFolder = systemUnderTest.DESTINATION_FOLDER const noteKey = 'noteKey' const testInput = '\n' + ' \n' + ' //header\n' + ' \n' + ' \n' + '

Headline

\n' + '

\n' + ' dummyImage.png\n' + '

\n' + '

\n' + ' dummyPDF.pdf\n' + '

\n' + '

\n' + ' dummyImage2.jpg\n' + '

\n' + ' \n' + '' const expectedOutput = '\n' + ' \n' + ' //header\n' + ' \n' + ' \n' + '

Headline

\n' + '

\n' + ' dummyImage.png\n' + '

\n' + '

\n' + ' dummyPDF.pdf\n' + '

\n' + '

\n' + ' dummyImage2.jpg\n' + '

\n' + ' \n' + '' const actual = systemUnderTest.replaceStorageReferences( testInput, noteKey, systemUnderTest.DESTINATION_FOLDER ) expect(actual).toEqual(expectedOutput) }) it('should make sure that "replaceStorageReferences" works with markdown content as well', function() { const noteKey = 'noteKey' const testInput = 'Test input' + '![imageName](' + systemUnderTest.STORAGE_FOLDER_PLACEHOLDER + path.win32.sep + noteKey + path.win32.sep + 'image.jpg) \n' + '[pdf](' + systemUnderTest.STORAGE_FOLDER_PLACEHOLDER + path.posix.sep + noteKey + path.posix.sep + 'pdf.pdf)' const expectedOutput = 'Test input' + '![imageName](' + systemUnderTest.DESTINATION_FOLDER + path.posix.sep + 'image.jpg) \n' + '[pdf](' + systemUnderTest.DESTINATION_FOLDER + path.posix.sep + 'pdf.pdf)' const actual = systemUnderTest.replaceStorageReferences( testInput, noteKey, systemUnderTest.DESTINATION_FOLDER ) expect(actual).toEqual(expectedOutput) }) it('should replace the all ":storage" references', function() { const storageFolder = systemUnderTest.DESTINATION_FOLDER const noteKey = 'noteKey' const testInput = '\n' + ' \n' + ' //header\n' + ' \n' + ' \n' + '

Headline

\n' + '

\n' + ' dummyImage.png\n' + '

\n' + '

\n' + ' dummyPDF.pdf\n' + '

\n' + '

\n' + ' dummyImage2.jpg\n' + '

\n' + ' \n' + '' const expectedOutput = '\n' + ' \n' + ' //header\n' + ' \n' + ' \n' + '

Headline

\n' + '

\n' + ' dummyImage.png\n' + '

\n' + '

\n' + ' dummyPDF.pdf\n' + '

\n' + '

\n' + ' dummyImage2.jpg\n' + '

\n' + ' \n' + '' const actual = systemUnderTest.replaceStorageReferences( testInput, noteKey, systemUnderTest.DESTINATION_FOLDER ) expect(actual).toEqual(expectedOutput) }) it('should make sure that "replaceStorageReferences" works with markdown content as well', function() { const noteKey = 'noteKey' const testInput = 'Test input' + '![imageName](' + systemUnderTest.STORAGE_FOLDER_PLACEHOLDER + path.win32.sep + noteKey + path.win32.sep + 'image.jpg) \n' + '[pdf](' + systemUnderTest.STORAGE_FOLDER_PLACEHOLDER + path.posix.sep + noteKey + path.posix.sep + 'pdf.pdf)' const expectedOutput = 'Test input' + '![imageName](' + systemUnderTest.DESTINATION_FOLDER + path.posix.sep + 'image.jpg) \n' + '[pdf](' + systemUnderTest.DESTINATION_FOLDER + path.posix.sep + 'pdf.pdf)' const actual = systemUnderTest.replaceStorageReferences( testInput, noteKey, systemUnderTest.DESTINATION_FOLDER ) expect(actual).toEqual(expectedOutput) }) it('should delete the correct attachment folder if a note is deleted', function() { const dummyStorage = { path: 'dummyStoragePath' } const storageKey = 'storageKey' const noteKey = 'noteKey' findStorage.findStorage = jest.fn(() => dummyStorage) sander.rimrafSync = jest.fn() const expectedPathToBeDeleted = path.join( dummyStorage.path, systemUnderTest.DESTINATION_FOLDER, noteKey ) systemUnderTest.deleteAttachmentFolder(storageKey, noteKey) expect(findStorage.findStorage).toHaveBeenCalledWith(storageKey) expect(sander.rimrafSync).toHaveBeenCalledWith(expectedPathToBeDeleted) }) it('should test that deleteAttachmentsNotPresentInNote deletes all unreferenced attachments ', function() { const dummyStorage = { path: 'dummyStoragePath' } const noteKey = 'noteKey' const storageKey = 'storageKey' const markdownContent = '' const dummyFilesInFolder = ['file1.txt', 'file2.pdf', 'file3.jpg'] const attachmentFolderPath = path.join( dummyStorage.path, systemUnderTest.DESTINATION_FOLDER, noteKey ) findStorage.findStorage = jest.fn(() => dummyStorage) fs.existsSync = jest.fn(() => true) fs.readdir = jest.fn((paht, callback) => callback(undefined, dummyFilesInFolder) ) fs.unlink = jest.fn() systemUnderTest.deleteAttachmentsNotPresentInNote( markdownContent, storageKey, noteKey ) expect(fs.existsSync).toHaveBeenLastCalledWith(attachmentFolderPath) expect(fs.readdir).toHaveBeenCalledTimes(1) expect(fs.readdir.mock.calls[0][0]).toBe(attachmentFolderPath) expect(fs.unlink).toHaveBeenCalledTimes(dummyFilesInFolder.length) const fsUnlinkCallArguments = [] for (let i = 0; i < dummyFilesInFolder.length; i++) { fsUnlinkCallArguments.push(fs.unlink.mock.calls[i][0]) } dummyFilesInFolder.forEach(function(file) { expect( fsUnlinkCallArguments.includes(path.join(attachmentFolderPath, file)) ).toBe(true) }) }) it('should test that deleteAttachmentsNotPresentInNote does not delete referenced attachments', function() { const dummyStorage = { path: 'dummyStoragePath' } const noteKey = 'noteKey' const storageKey = 'storageKey' const dummyFilesInFolder = ['file1.txt', 'file2.pdf', 'file3.jpg'] const markdownContent = systemUnderTest.generateAttachmentMarkdown( 'fileLabel', path.join( systemUnderTest.STORAGE_FOLDER_PLACEHOLDER, noteKey, dummyFilesInFolder[0] ), false ) const attachmentFolderPath = path.join( dummyStorage.path, systemUnderTest.DESTINATION_FOLDER, noteKey ) findStorage.findStorage = jest.fn(() => dummyStorage) fs.existsSync = jest.fn(() => true) fs.readdir = jest.fn((paht, callback) => callback(undefined, dummyFilesInFolder) ) fs.unlink = jest.fn() systemUnderTest.deleteAttachmentsNotPresentInNote( markdownContent, storageKey, noteKey ) expect(fs.unlink).toHaveBeenCalledTimes(dummyFilesInFolder.length - 1) const fsUnlinkCallArguments = [] for (let i = 0; i < dummyFilesInFolder.length - 1; i++) { fsUnlinkCallArguments.push(fs.unlink.mock.calls[i][0]) } expect( fsUnlinkCallArguments.includes( path.join(attachmentFolderPath, dummyFilesInFolder[0]) ) ).toBe(false) }) it('should test that deleteAttachmentsNotPresentInNote does nothing if noteKey, storageKey or noteContent was null', function() { const noteKey = null const storageKey = null const markdownContent = '' findStorage.findStorage = jest.fn() fs.existsSync = jest.fn() fs.readdir = jest.fn() fs.unlink = jest.fn() systemUnderTest.deleteAttachmentsNotPresentInNote( markdownContent, storageKey, noteKey ) expect(fs.existsSync).not.toHaveBeenCalled() expect(fs.readdir).not.toHaveBeenCalled() expect(fs.unlink).not.toHaveBeenCalled() }) it('should test that deleteAttachmentsNotPresentInNote does nothing if noteKey, storageKey or noteContent was undefined', function() { const noteKey = undefined const storageKey = undefined const markdownContent = '' findStorage.findStorage = jest.fn() fs.existsSync = jest.fn() fs.readdir = jest.fn() fs.unlink = jest.fn() systemUnderTest.deleteAttachmentsNotPresentInNote( markdownContent, storageKey, noteKey ) expect(fs.existsSync).not.toHaveBeenCalled() expect(fs.readdir).not.toHaveBeenCalled() expect(fs.unlink).not.toHaveBeenCalled() }) it('should test that getAttachmentsPathAndStatus return null if noteKey, storageKey or noteContent was undefined', function() { const noteKey = undefined const storageKey = undefined const markdownContent = '' const result = systemUnderTest.getAttachmentsPathAndStatus( markdownContent, storageKey, noteKey ) expect(result).toBeNull() }) it('should test that getAttachmentsPathAndStatus return null if noteKey, storageKey or noteContent was null', function() { const noteKey = null const storageKey = null const markdownContent = '' const result = systemUnderTest.getAttachmentsPathAndStatus( markdownContent, storageKey, noteKey ) expect(result).toBeNull() }) it('should test that getAttachmentsPathAndStatus return null if no storage found', function() { const noteKey = 'test' const storageKey = 'not_exist' const markdownContent = '' const result = systemUnderTest.getAttachmentsPathAndStatus( markdownContent, storageKey, noteKey ) expect(result).toBeNull() }) it('should test that getAttachmentsPathAndStatus return the correct path and status for attachments', async function() { const dummyStorage = { path: 'dummyStoragePath' } const noteKey = 'noteKey' const storageKey = 'storageKey' const markdownContent = 'Test input' + '![' + systemUnderTest.STORAGE_FOLDER_PLACEHOLDER + path.win32.sep + noteKey + path.win32.sep + 'file2.pdf](file2.pdf) \n' const dummyFilesInFolder = ['file1.txt', 'file2.pdf', 'file3.jpg'] findStorage.findStorage = jest.fn(() => dummyStorage) fs.existsSync = jest.fn(() => true) fs.readdir = jest.fn((paht, callback) => callback(undefined, dummyFilesInFolder) ) fs.unlink = jest.fn() const targetStorage = findStorage.findStorage(storageKey) const attachments = await systemUnderTest.getAttachmentsPathAndStatus( markdownContent, storageKey, noteKey ) expect(attachments.length).toBe(3) expect(attachments[0].isInUse).toBe(false) expect(attachments[1].isInUse).toBe(true) expect(attachments[2].isInUse).toBe(false) expect(attachments[0].path).toBe( path.join( targetStorage.path, systemUnderTest.DESTINATION_FOLDER, noteKey, dummyFilesInFolder[0] ) ) expect(attachments[1].path).toBe( path.join( targetStorage.path, systemUnderTest.DESTINATION_FOLDER, noteKey, dummyFilesInFolder[1] ) ) expect(attachments[2].path).toBe( path.join( targetStorage.path, systemUnderTest.DESTINATION_FOLDER, noteKey, dummyFilesInFolder[2] ) ) }) it('should test that moveAttachments moves attachments only if the source folder existed', function() { fse.existsSync = jest.fn(() => false) fse.moveSync = jest.fn() const oldPath = 'oldPath' const newPath = 'newPath' const oldNoteKey = 'oldNoteKey' const newNoteKey = 'newNoteKey' const content = '' const expectedSource = path.join( oldPath, systemUnderTest.DESTINATION_FOLDER, oldNoteKey ) systemUnderTest.moveAttachments( oldPath, newPath, oldNoteKey, newNoteKey, content ) expect(fse.existsSync).toHaveBeenCalledWith(expectedSource) expect(fse.moveSync).not.toHaveBeenCalled() }) it('should test that moveAttachments moves attachments to the right destination', function() { fse.existsSync = jest.fn(() => true) fse.moveSync = jest.fn() const oldPath = 'oldPath' const newPath = 'newPath' const oldNoteKey = 'oldNoteKey' const newNoteKey = 'newNoteKey' const content = '' const expectedSource = path.join( oldPath, systemUnderTest.DESTINATION_FOLDER, oldNoteKey ) const expectedDestination = path.join( newPath, systemUnderTest.DESTINATION_FOLDER, newNoteKey ) systemUnderTest.moveAttachments( oldPath, newPath, oldNoteKey, newNoteKey, content ) expect(fse.existsSync).toHaveBeenCalledWith(expectedSource) expect(fse.moveSync).toHaveBeenCalledWith(expectedSource, expectedDestination) }) it('should test that moveAttachments returns a correct modified content version', function() { fse.existsSync = jest.fn() fse.moveSync = jest.fn() const oldPath = 'oldPath' const newPath = 'newPath' const oldNoteKey = 'oldNoteKey' const newNoteKey = 'newNoteKey' const testInput = 'Test input' + '![' + systemUnderTest.STORAGE_FOLDER_PLACEHOLDER + path.win32.sep + oldNoteKey + path.win32.sep + 'image.jpg](imageName}) \n' + '[' + systemUnderTest.STORAGE_FOLDER_PLACEHOLDER + path.posix.sep + oldNoteKey + path.posix.sep + 'pdf.pdf](pdf})' const expectedOutput = 'Test input' + '![' + systemUnderTest.STORAGE_FOLDER_PLACEHOLDER + path.sep + newNoteKey + path.sep + 'image.jpg](imageName}) \n' + '[' + systemUnderTest.STORAGE_FOLDER_PLACEHOLDER + path.sep + newNoteKey + path.sep + 'pdf.pdf](pdf})' const actualContent = systemUnderTest.moveAttachments( oldPath, newPath, oldNoteKey, newNoteKey, testInput ) expect(actualContent).toBe(expectedOutput) }) it('should test that cloneAttachments modifies the content of the new note correctly', function() { const oldNote = { key: 'oldNoteKey', content: 'oldNoteContent', storage: 'storageKey', type: 'MARKDOWN_NOTE' } const newNote = { key: 'newNoteKey', content: 'oldNoteContent', storage: 'storageKey', type: 'MARKDOWN_NOTE' } const testInput = 'Test input' + '![' + systemUnderTest.STORAGE_FOLDER_PLACEHOLDER + path.win32.sep + oldNote.key + path.win32.sep + 'image.jpg](imageName}) \n' + '[' + systemUnderTest.STORAGE_FOLDER_PLACEHOLDER + path.posix.sep + oldNote.key + path.posix.sep + 'pdf.pdf](pdf})' newNote.content = testInput findStorage.findStorage = jest.fn() findStorage.findStorage.mockReturnValue({ path: 'dummyStoragePath' }) const expectedOutput = 'Test input' + '![' + systemUnderTest.STORAGE_FOLDER_PLACEHOLDER + path.sep + newNote.key + path.sep + 'image.jpg](imageName}) \n' + '[' + systemUnderTest.STORAGE_FOLDER_PLACEHOLDER + path.sep + newNote.key + path.sep + 'pdf.pdf](pdf})' systemUnderTest.cloneAttachments(oldNote, newNote) expect(newNote.content).toBe(expectedOutput) }) it('should test that cloneAttachments finds all attachments and copies them to the new location', function() { const storagePathOld = 'storagePathOld' const storagePathNew = 'storagePathNew' const dummyStorageOld = { path: storagePathOld } const dummyStorageNew = { path: storagePathNew } const oldNote = { key: 'oldNoteKey', content: 'oldNoteContent', storage: 'storageKeyOldNote', type: 'MARKDOWN_NOTE' } const newNote = { key: 'newNoteKey', content: 'oldNoteContent', storage: 'storageKeyNewNote', type: 'MARKDOWN_NOTE' } const testInput = 'Test input' + '![' + systemUnderTest.STORAGE_FOLDER_PLACEHOLDER + path.win32.sep + oldNote.key + path.win32.sep + 'image.jpg](imageName}) \n' + '[' + systemUnderTest.STORAGE_FOLDER_PLACEHOLDER + path.posix.sep + oldNote.key + path.posix.sep + 'pdf.pdf](pdf})' oldNote.content = testInput newNote.content = testInput const copyFileSyncResp = { to: jest.fn() } sander.copyFileSync = jest.fn() sander.copyFileSync.mockReturnValue(copyFileSyncResp) findStorage.findStorage = jest.fn() findStorage.findStorage.mockReturnValueOnce(dummyStorageOld) findStorage.findStorage.mockReturnValue(dummyStorageNew) const pathAttachmentOneFrom = path.join( storagePathOld, systemUnderTest.DESTINATION_FOLDER, oldNote.key, 'image.jpg' ) const pathAttachmentOneTo = path.join( storagePathNew, systemUnderTest.DESTINATION_FOLDER, newNote.key, 'image.jpg' ) const pathAttachmentTwoFrom = path.join( storagePathOld, systemUnderTest.DESTINATION_FOLDER, oldNote.key, 'pdf.pdf' ) const pathAttachmentTwoTo = path.join( storagePathNew, systemUnderTest.DESTINATION_FOLDER, newNote.key, 'pdf.pdf' ) systemUnderTest.cloneAttachments(oldNote, newNote) expect(findStorage.findStorage).toHaveBeenCalledWith(oldNote.storage) expect(findStorage.findStorage).toHaveBeenCalledWith(newNote.storage) expect(sander.copyFileSync).toHaveBeenCalledTimes(2) expect(copyFileSyncResp.to).toHaveBeenCalledTimes(2) expect(sander.copyFileSync.mock.calls[0][0]).toBe(pathAttachmentOneFrom) expect(copyFileSyncResp.to.mock.calls[0][0]).toBe(pathAttachmentOneTo) expect(sander.copyFileSync.mock.calls[1][0]).toBe(pathAttachmentTwoFrom) expect(copyFileSyncResp.to.mock.calls[1][0]).toBe(pathAttachmentTwoTo) }) it('should test that cloneAttachments finds all attachments and copies them to the new location', function() { const oldNote = { key: 'oldNoteKey', content: 'oldNoteContent', storage: 'storageKeyOldNote', type: 'SOMETHING_ELSE' } const newNote = { key: 'newNoteKey', content: 'oldNoteContent', storage: 'storageKeyNewNote', type: 'SOMETHING_ELSE' } const testInput = 'Test input' oldNote.content = testInput newNote.content = testInput sander.copyFileSync = jest.fn() findStorage.findStorage = jest.fn() systemUnderTest.cloneAttachments(oldNote, newNote) expect(findStorage.findStorage).not.toHaveBeenCalled() expect(sander.copyFileSync).not.toHaveBeenCalled() }) it('should test that isAttachmentLink works correctly', function() { expect(systemUnderTest.isAttachmentLink('text')).toBe(false) expect(systemUnderTest.isAttachmentLink('text [linkText](link)')).toBe(false) expect(systemUnderTest.isAttachmentLink('text ![linkText](link)')).toBe(false) expect( systemUnderTest.isAttachmentLink( '[linkText](' + systemUnderTest.STORAGE_FOLDER_PLACEHOLDER + path.win32.sep + 'noteKey' + path.win32.sep + 'pdf.pdf)' ) ).toBe(true) expect( systemUnderTest.isAttachmentLink( '![linkText](' + systemUnderTest.STORAGE_FOLDER_PLACEHOLDER + path.win32.sep + 'noteKey' + path.win32.sep + 'pdf.pdf )' ) ).toBe(true) expect( systemUnderTest.isAttachmentLink( 'text [ linkText](' + systemUnderTest.STORAGE_FOLDER_PLACEHOLDER + path.win32.sep + 'noteKey' + path.win32.sep + 'pdf.pdf)' ) ).toBe(true) expect( systemUnderTest.isAttachmentLink( 'text ![linkText ](' + systemUnderTest.STORAGE_FOLDER_PLACEHOLDER + path.win32.sep + 'noteKey' + path.win32.sep + 'pdf.pdf)' ) ).toBe(true) expect( systemUnderTest.isAttachmentLink( '[linkText](' + systemUnderTest.STORAGE_FOLDER_PLACEHOLDER + path.win32.sep + 'noteKey' + path.win32.sep + 'pdf.pdf) test' ) ).toBe(true) expect( systemUnderTest.isAttachmentLink( '![linkText](' + systemUnderTest.STORAGE_FOLDER_PLACEHOLDER + path.win32.sep + 'noteKey' + path.win32.sep + 'pdf.pdf) test' ) ).toBe(true) expect( systemUnderTest.isAttachmentLink( 'text [linkText](' + systemUnderTest.STORAGE_FOLDER_PLACEHOLDER + path.win32.sep + 'noteKey' + path.win32.sep + 'pdf.pdf) test' ) ).toBe(true) expect( systemUnderTest.isAttachmentLink( 'text ![linkText](' + systemUnderTest.STORAGE_FOLDER_PLACEHOLDER + path.win32.sep + 'noteKey' + path.win32.sep + 'pdf.pdf) test' ) ).toBe(true) expect( systemUnderTest.isAttachmentLink( '[linkText](' + systemUnderTest.STORAGE_FOLDER_PLACEHOLDER + path.posix.sep + 'noteKey' + path.posix.sep + 'pdf.pdf)' ) ).toBe(true) expect( systemUnderTest.isAttachmentLink( '![linkText](' + systemUnderTest.STORAGE_FOLDER_PLACEHOLDER + path.posix.sep + 'noteKey' + path.posix.sep + 'pdf.pdf )' ) ).toBe(true) expect( systemUnderTest.isAttachmentLink( 'text [ linkText](' + systemUnderTest.STORAGE_FOLDER_PLACEHOLDER + path.posix.sep + 'noteKey' + path.posix.sep + 'pdf.pdf)' ) ).toBe(true) expect( systemUnderTest.isAttachmentLink( 'text ![linkText ](' + systemUnderTest.STORAGE_FOLDER_PLACEHOLDER + path.posix.sep + 'noteKey' + path.posix.sep + 'pdf.pdf)' ) ).toBe(true) expect( systemUnderTest.isAttachmentLink( '[linkText](' + systemUnderTest.STORAGE_FOLDER_PLACEHOLDER + path.posix.sep + 'noteKey' + path.posix.sep + 'pdf.pdf) test' ) ).toBe(true) expect( systemUnderTest.isAttachmentLink( '![linkText](' + systemUnderTest.STORAGE_FOLDER_PLACEHOLDER + path.posix.sep + 'noteKey' + path.posix.sep + 'pdf.pdf) test' ) ).toBe(true) expect( systemUnderTest.isAttachmentLink( 'text [linkText](' + systemUnderTest.STORAGE_FOLDER_PLACEHOLDER + path.posix.sep + 'noteKey' + path.posix.sep + 'pdf.pdf) test' ) ).toBe(true) expect( systemUnderTest.isAttachmentLink( 'text ![linkText](' + systemUnderTest.STORAGE_FOLDER_PLACEHOLDER + path.posix.sep + 'noteKey' + path.posix.sep + 'pdf.pdf) test' ) ).toBe(true) }) it('should test that handleAttachmentLinkPaste copies the attachments to the new location', function() { const dummyStorage = { path: 'dummyStoragePath' } findStorage.findStorage = jest.fn(() => dummyStorage) const pastedNoteKey = 'b1e06f81-8266-49b9-b438-084003c2e723' const newNoteKey = 'abc234-8266-49b9-b438-084003c2e723' const pasteText = 'text ![alt](' + systemUnderTest.STORAGE_FOLDER_PLACEHOLDER + path.posix.sep + pastedNoteKey + path.posix.sep + 'pdf.pdf)' const storageKey = 'storageKey' const expectedSourceFilePath = path.join( dummyStorage.path, systemUnderTest.DESTINATION_FOLDER, pastedNoteKey, 'pdf.pdf' ) sander.exists = jest.fn(() => Promise.resolve(true)) systemUnderTest.copyAttachment = jest.fn(() => Promise.resolve('dummyNewFileName') ) return systemUnderTest .handleAttachmentLinkPaste(storageKey, newNoteKey, pasteText) .then(() => { expect(findStorage.findStorage).toHaveBeenCalledWith(storageKey) expect(sander.exists).toHaveBeenCalledWith(expectedSourceFilePath) expect(systemUnderTest.copyAttachment).toHaveBeenCalledWith( expectedSourceFilePath, storageKey, newNoteKey ) }) }) it('should test that handleAttachmentLinkPaste copies the attachments to the new location - win32 path', function() { const dummyStorage = { path: 'dummyStoragePath' } findStorage.findStorage = jest.fn(() => dummyStorage) const pastedNoteKey = 'b1e06f81-8266-49b9-b438-084003c2e723' const newNoteKey = 'abc234-8266-49b9-b438-084003c2e723' const pasteText = 'text ![alt](' + systemUnderTest.STORAGE_FOLDER_PLACEHOLDER + path.win32.sep + pastedNoteKey + path.win32.sep + 'pdf.pdf)' const storageKey = 'storageKey' const expectedSourceFilePath = path.join( dummyStorage.path, systemUnderTest.DESTINATION_FOLDER, pastedNoteKey, 'pdf.pdf' ) sander.exists = jest.fn(() => Promise.resolve(true)) systemUnderTest.copyAttachment = jest.fn(() => Promise.resolve('dummyNewFileName') ) return systemUnderTest .handleAttachmentLinkPaste(storageKey, newNoteKey, pasteText) .then(() => { expect(findStorage.findStorage).toHaveBeenCalledWith(storageKey) expect(sander.exists).toHaveBeenCalledWith(expectedSourceFilePath) expect(systemUnderTest.copyAttachment).toHaveBeenCalledWith( expectedSourceFilePath, storageKey, newNoteKey ) }) }) it("should test that handleAttachmentLinkPaste don't try to copy the file if it does not exist - win32 path", function() { const dummyStorage = { path: 'dummyStoragePath' } findStorage.findStorage = jest.fn(() => dummyStorage) const pastedNoteKey = 'b1e06f81-8266-49b9-b438-084003c2e723' const newNoteKey = 'abc234-8266-49b9-b438-084003c2e723' const pasteText = 'text ![alt](' + systemUnderTest.STORAGE_FOLDER_PLACEHOLDER + path.win32.sep + pastedNoteKey + path.win32.sep + 'pdf.pdf)' const storageKey = 'storageKey' const expectedSourceFilePath = path.join( dummyStorage.path, systemUnderTest.DESTINATION_FOLDER, pastedNoteKey, 'pdf.pdf' ) sander.exists = jest.fn(() => Promise.resolve(false)) systemUnderTest.copyAttachment = jest.fn() systemUnderTest.generateFileNotFoundMarkdown = jest.fn() return systemUnderTest .handleAttachmentLinkPaste(storageKey, newNoteKey, pasteText) .then(() => { expect(findStorage.findStorage).toHaveBeenCalledWith(storageKey) expect(sander.exists).toHaveBeenCalledWith(expectedSourceFilePath) expect(systemUnderTest.copyAttachment).not.toHaveBeenCalled() }) }) it("should test that handleAttachmentLinkPaste don't try to copy the file if it does not exist -- posix", function() { const dummyStorage = { path: 'dummyStoragePath' } findStorage.findStorage = jest.fn(() => dummyStorage) const pastedNoteKey = 'b1e06f81-8266-49b9-b438-084003c2e723' const newNoteKey = 'abc234-8266-49b9-b438-084003c2e723' const pasteText = 'text ![alt](' + systemUnderTest.STORAGE_FOLDER_PLACEHOLDER + path.posix.sep + pastedNoteKey + path.posix.sep + 'pdf.pdf)' const storageKey = 'storageKey' const expectedSourceFilePath = path.join( dummyStorage.path, systemUnderTest.DESTINATION_FOLDER, pastedNoteKey, 'pdf.pdf' ) sander.exists = jest.fn(() => Promise.resolve(false)) systemUnderTest.copyAttachment = jest.fn() systemUnderTest.generateFileNotFoundMarkdown = jest.fn() return systemUnderTest .handleAttachmentLinkPaste(storageKey, newNoteKey, pasteText) .then(() => { expect(findStorage.findStorage).toHaveBeenCalledWith(storageKey) expect(sander.exists).toHaveBeenCalledWith(expectedSourceFilePath) expect(systemUnderTest.copyAttachment).not.toHaveBeenCalled() }) }) it('should test that handleAttachmentLinkPaste copies multiple attachments if multiple were pasted', function() { const dummyStorage = { path: 'dummyStoragePath' } findStorage.findStorage = jest.fn(() => dummyStorage) const pastedNoteKey = 'b1e06f81-8266-49b9-b438-084003c2e723' const newNoteKey = 'abc234-8266-49b9-b438-084003c2e723' const pasteText = 'text ![alt](' + systemUnderTest.STORAGE_FOLDER_PLACEHOLDER + path.posix.sep + pastedNoteKey + path.posix.sep + 'pdf.pdf) ..' + '![secondAttachment](' + systemUnderTest.STORAGE_FOLDER_PLACEHOLDER + path.win32.sep + pastedNoteKey + path.win32.sep + 'img.jpg)' const storageKey = 'storageKey' const expectedSourceFilePathOne = path.join( dummyStorage.path, systemUnderTest.DESTINATION_FOLDER, pastedNoteKey, 'pdf.pdf' ) const expectedSourceFilePathTwo = path.join( dummyStorage.path, systemUnderTest.DESTINATION_FOLDER, pastedNoteKey, 'img.jpg' ) sander.exists = jest.fn(() => Promise.resolve(true)) systemUnderTest.copyAttachment = jest.fn(() => Promise.resolve('dummyNewFileName') ) return systemUnderTest .handleAttachmentLinkPaste(storageKey, newNoteKey, pasteText) .then(() => { expect(findStorage.findStorage).toHaveBeenCalledWith(storageKey) expect(sander.exists).toHaveBeenCalledWith(expectedSourceFilePathOne) expect(sander.exists).toHaveBeenCalledWith(expectedSourceFilePathTwo) expect(systemUnderTest.copyAttachment).toHaveBeenCalledWith( expectedSourceFilePathOne, storageKey, newNoteKey ) expect(systemUnderTest.copyAttachment).toHaveBeenCalledWith( expectedSourceFilePathTwo, storageKey, newNoteKey ) }) }) it('should test that handleAttachmentLinkPaste returns the correct modified paste text', function() { const dummyStorage = { path: 'dummyStoragePath' } findStorage.findStorage = jest.fn(() => dummyStorage) const pastedNoteKey = 'b1e06f81-8266-49b9-b438-084003c2e723' const newNoteKey = 'abc234-8266-49b9-b438-084003c2e723' const dummyNewFileName = 'dummyNewFileName' const pasteText = 'text ![alt](' + systemUnderTest.STORAGE_FOLDER_PLACEHOLDER + path.posix.sep + pastedNoteKey + path.win32.sep + 'pdf.pdf)' const expectedText = 'text ![alt](' + systemUnderTest.STORAGE_FOLDER_PLACEHOLDER + path.sep + newNoteKey + path.sep + dummyNewFileName + ')' const storageKey = 'storageKey' sander.exists = jest.fn(() => Promise.resolve(true)) systemUnderTest.copyAttachment = jest.fn(() => Promise.resolve(dummyNewFileName) ) return systemUnderTest .handleAttachmentLinkPaste(storageKey, newNoteKey, pasteText) .then(returnedPastedText => { expect(returnedPastedText).toBe(expectedText) }) }) it('should test that handleAttachmentLinkPaste returns the correct modified paste text if multiple links are posted', function() { const dummyStorage = { path: 'dummyStoragePath' } findStorage.findStorage = jest.fn(() => dummyStorage) const pastedNoteKey = 'b1e06f81-8266-49b9-b438-084003c2e723' const newNoteKey = 'abc234-8266-49b9-b438-084003c2e723' const dummyNewFileNameOne = 'dummyNewFileName' const dummyNewFileNameTwo = 'dummyNewFileNameTwo' const pasteText = 'text ![alt](' + systemUnderTest.STORAGE_FOLDER_PLACEHOLDER + path.win32.sep + pastedNoteKey + path.win32.sep + 'pdf.pdf) ' + '![secondImage](' + systemUnderTest.STORAGE_FOLDER_PLACEHOLDER + path.posix.sep + pastedNoteKey + path.posix.sep + 'img.jpg)' const expectedText = 'text ![alt](' + systemUnderTest.STORAGE_FOLDER_PLACEHOLDER + path.sep + newNoteKey + path.sep + dummyNewFileNameOne + ') ' + '![secondImage](' + systemUnderTest.STORAGE_FOLDER_PLACEHOLDER + path.sep + newNoteKey + path.sep + dummyNewFileNameTwo + ')' const storageKey = 'storageKey' sander.exists = jest.fn(() => Promise.resolve(true)) systemUnderTest.copyAttachment = jest.fn() systemUnderTest.copyAttachment.mockReturnValueOnce( Promise.resolve(dummyNewFileNameOne) ) systemUnderTest.copyAttachment.mockReturnValue( Promise.resolve(dummyNewFileNameTwo) ) return systemUnderTest .handleAttachmentLinkPaste(storageKey, newNoteKey, pasteText) .then(returnedPastedText => { expect(returnedPastedText).toBe(expectedText) }) }) it('should test that handleAttachmentLinkPaste calls the copy method correct if multiple links are posted where one file was found and one was not', function() { const dummyStorage = { path: 'dummyStoragePath' } findStorage.findStorage = jest.fn(() => dummyStorage) const pastedNoteKey = 'b1e06f81-8266-49b9-b438-084003c2e723' const newNoteKey = 'abc234-8266-49b9-b438-084003c2e723' const pasteText = 'text ![alt](' + systemUnderTest.STORAGE_FOLDER_PLACEHOLDER + path.posix.sep + pastedNoteKey + path.posix.sep + 'pdf.pdf) ..' + '![secondAttachment](' + systemUnderTest.STORAGE_FOLDER_PLACEHOLDER + path.win32.sep + pastedNoteKey + path.win32.sep + 'img.jpg)' const storageKey = 'storageKey' const expectedSourceFilePathOne = path.join( dummyStorage.path, systemUnderTest.DESTINATION_FOLDER, pastedNoteKey, 'pdf.pdf' ) const expectedSourceFilePathTwo = path.join( dummyStorage.path, systemUnderTest.DESTINATION_FOLDER, pastedNoteKey, 'img.jpg' ) sander.exists = jest.fn() sander.exists.mockReturnValueOnce(Promise.resolve(false)) sander.exists.mockReturnValue(Promise.resolve(true)) systemUnderTest.copyAttachment = jest.fn(() => Promise.resolve('dummyNewFileName') ) systemUnderTest.generateFileNotFoundMarkdown = jest.fn() return systemUnderTest .handleAttachmentLinkPaste(storageKey, newNoteKey, pasteText) .then(() => { expect(findStorage.findStorage).toHaveBeenCalledWith(storageKey) expect(sander.exists).toHaveBeenCalledWith(expectedSourceFilePathOne) expect(sander.exists).toHaveBeenCalledWith(expectedSourceFilePathTwo) expect(systemUnderTest.copyAttachment).toHaveBeenCalledTimes(1) expect(systemUnderTest.copyAttachment).toHaveBeenCalledWith( expectedSourceFilePathTwo, storageKey, newNoteKey ) }) }) it('should test that handleAttachmentLinkPaste returns the correct modified paste text if the file was not found', function() { const dummyStorage = { path: 'dummyStoragePath' } findStorage.findStorage = jest.fn(() => dummyStorage) const pastedNoteKey = 'b1e06f81-8266-49b9-b438-084003c2e723' const newNoteKey = 'abc234-8266-49b9-b438-084003c2e723' const pasteText = 'text ![alt.png](' + systemUnderTest.STORAGE_FOLDER_PLACEHOLDER + path.win32.sep + pastedNoteKey + path.posix.sep + 'pdf.pdf)' const storageKey = 'storageKey' const fileNotFoundMD = 'file not found' const expectedPastText = 'text ' + fileNotFoundMD systemUnderTest.generateFileNotFoundMarkdown = jest.fn(() => fileNotFoundMD) sander.exists = jest.fn(() => Promise.resolve(false)) return systemUnderTest .handleAttachmentLinkPaste(storageKey, newNoteKey, pasteText) .then(returnedPastedText => { expect(returnedPastedText).toBe(expectedPastText) }) }) it('should test that handleAttachmentLinkPaste returns the correct modified paste text if multiple files were not found', function() { const dummyStorage = { path: 'dummyStoragePath' } findStorage.findStorage = jest.fn(() => dummyStorage) const pastedNoteKey = 'b1e06f81-8266-49b9-b438-084003c2e723' const newNoteKey = 'abc234-8266-49b9-b438-084003c2e723' const pasteText = 'text ![alt](' + systemUnderTest.STORAGE_FOLDER_PLACEHOLDER + path.win32.sep + pastedNoteKey + path.win32.sep + 'pdf.pdf) ' + '![secondImage](' + systemUnderTest.STORAGE_FOLDER_PLACEHOLDER + path.posix.sep + pastedNoteKey + path.posix.sep + 'img.jpg)' const storageKey = 'storageKey' const fileNotFoundMD = 'file not found' const expectedPastText = 'text ' + fileNotFoundMD + ' ' + fileNotFoundMD systemUnderTest.generateFileNotFoundMarkdown = jest.fn(() => fileNotFoundMD) sander.exists = jest.fn(() => Promise.resolve(false)) return systemUnderTest .handleAttachmentLinkPaste(storageKey, newNoteKey, pasteText) .then(returnedPastedText => { expect(returnedPastedText).toBe(expectedPastText) }) }) it('should test that handleAttachmentLinkPaste returns the correct modified paste text if one file was found and one was not found', function() { const dummyStorage = { path: 'dummyStoragePath' } findStorage.findStorage = jest.fn(() => dummyStorage) const pastedNoteKey = 'b1e06f81-8266-49b9-b438-084003c2e723' const newNoteKey = 'abc234-8266-49b9-b438-084003c2e723' const dummyFoundFileName = 'dummyFileName' const fileNotFoundMD = 'file not found' const pasteText = 'text ![alt](' + systemUnderTest.STORAGE_FOLDER_PLACEHOLDER + path.win32.sep + pastedNoteKey + path.win32.sep + 'pdf.pdf) .. ' + '![secondAttachment](' + systemUnderTest.STORAGE_FOLDER_PLACEHOLDER + path.posix.sep + pastedNoteKey + path.posix.sep + 'img.jpg)' const storageKey = 'storageKey' const expectedPastText = 'text ' + fileNotFoundMD + ' .. ![secondAttachment](' + systemUnderTest.STORAGE_FOLDER_PLACEHOLDER + path.sep + newNoteKey + path.sep + dummyFoundFileName + ')' sander.exists = jest.fn() sander.exists.mockReturnValueOnce(Promise.resolve(false)) sander.exists.mockReturnValue(Promise.resolve(true)) systemUnderTest.copyAttachment = jest.fn(() => Promise.resolve(dummyFoundFileName) ) systemUnderTest.generateFileNotFoundMarkdown = jest.fn(() => fileNotFoundMD) return systemUnderTest .handleAttachmentLinkPaste(storageKey, newNoteKey, pasteText) .then(returnedPastedText => { expect(returnedPastedText).toBe(expectedPastText) }) }) it('should test that handleAttachmentLinkPaste returns the correct modified paste text if one file was found and one was not found', function() { const dummyStorage = { path: 'dummyStoragePath' } findStorage.findStorage = jest.fn(() => dummyStorage) const pastedNoteKey = 'b1e06f81-8266-49b9-b438-084003c2e723' const newNoteKey = 'abc234-8266-49b9-b438-084003c2e723' const dummyFoundFileName = 'dummyFileName' const fileNotFoundMD = 'file not found' const pasteText = 'text ![alt](' + systemUnderTest.STORAGE_FOLDER_PLACEHOLDER + path.posix.sep + pastedNoteKey + path.posix.sep + 'pdf.pdf) .. ' + '![secondAttachment](' + systemUnderTest.STORAGE_FOLDER_PLACEHOLDER + path.win32.sep + pastedNoteKey + path.win32.sep + 'img.jpg)' const storageKey = 'storageKey' const expectedPastText = 'text ![alt](' + systemUnderTest.STORAGE_FOLDER_PLACEHOLDER + path.sep + newNoteKey + path.sep + dummyFoundFileName + ') .. ' + fileNotFoundMD sander.exists = jest.fn() sander.exists.mockReturnValueOnce(Promise.resolve(true)) sander.exists.mockReturnValue(Promise.resolve(false)) systemUnderTest.copyAttachment = jest.fn(() => Promise.resolve(dummyFoundFileName) ) systemUnderTest.generateFileNotFoundMarkdown = jest.fn(() => fileNotFoundMD) return systemUnderTest .handleAttachmentLinkPaste(storageKey, newNoteKey, pasteText) .then(returnedPastedText => { expect(returnedPastedText).toBe(expectedPastText) }) }) ================================================ FILE: tests/dataApi/copyFile.test.js ================================================ const copyFile = require('browser/main/lib/dataApi/copyFile') const path = require('path') const fs = require('fs') const os = require('os') const execSync = require('child_process').execSync const removeDirCommand = os.platform() === 'win32' ? 'rmdir /s /q ' : 'rm -rf ' const testFile = 'test.txt' const srcFolder = path.join(__dirname, '🤔') const srcPath = path.join(srcFolder, testFile) const dstFolder = path.join(__dirname, '😇') const dstPath = path.join(dstFolder, testFile) beforeAll(() => { if (!fs.existsSync(srcFolder)) fs.mkdirSync(srcFolder) fs.writeFileSync(srcPath, 'test') }) it('`copyFile` should handle encoded URI on src path', done => { return copyFile(encodeURI(srcPath), dstPath) .then(() => { expect(true).toBe(true) done() }) .catch(() => { expect(false).toBe(true) done() }) }) afterAll(() => { fs.unlinkSync(srcPath) fs.unlinkSync(dstPath) execSync(removeDirCommand + '"' + srcFolder + '"') execSync(removeDirCommand + '"' + dstFolder + '"') }) ================================================ FILE: tests/dataApi/createFolder.test.js ================================================ const createFolder = require('browser/main/lib/dataApi/createFolder') global.document = require('jsdom').jsdom('') global.window = document.defaultView global.navigator = window.navigator const Storage = require('dom-storage') const localStorage = (window.localStorage = global.localStorage = new Storage( null, { strict: true } )) const path = require('path') const _ = require('lodash') const TestDummy = require('../fixtures/TestDummy') const sander = require('sander') const os = require('os') const CSON = require('@rokt33r/season') const storagePath = path.join(os.tmpdir(), 'test/create-folder') let storageContext beforeAll(() => { storageContext = TestDummy.dummyStorage(storagePath) localStorage.setItem('storages', JSON.stringify([storageContext.cache])) }) it('Create a folder', done => { const storageKey = storageContext.cache.key const input = { name: 'created', color: '#ff5555' } return Promise.resolve() .then(() => { return createFolder(storageKey, input) }) .then(data => { expect(_.find(data.storage.folders, input)).not.toBeNull() const jsonData = CSON.readFileSync( path.join(data.storage.path, 'boostnote.json') ) expect(_.find(jsonData.folders, input)).not.toBeNull() done() }) }) afterAll(() => { localStorage.clear() sander.rimrafSync(storagePath) }) ================================================ FILE: tests/dataApi/createNote.test.js ================================================ const createNote = require('browser/main/lib/dataApi/createNote') global.document = require('jsdom').jsdom('') global.window = document.defaultView global.navigator = window.navigator const Storage = require('dom-storage') const localStorage = (window.localStorage = global.localStorage = new Storage( null, { strict: true } )) const path = require('path') const TestDummy = require('../fixtures/TestDummy') const sander = require('sander') const os = require('os') const CSON = require('@rokt33r/season') const faker = require('faker') const storagePath = path.join(os.tmpdir(), 'test/create-note') let storageContext beforeEach(() => { storageContext = TestDummy.dummyStorage(storagePath) localStorage.setItem('storages', JSON.stringify([storageContext.cache])) }) it('Create a note', done => { const storageKey = storageContext.cache.key const folderKey = storageContext.json.folders[0].key const randLinesHighlightedArray = new Array(10) .fill() .map(() => Math.round(Math.random() * 10)) const input1 = { type: 'SNIPPET_NOTE', description: faker.lorem.lines(), snippets: [ { name: faker.system.fileName(), mode: 'text', content: faker.lorem.lines(), linesHighlighted: randLinesHighlightedArray } ], tags: faker.lorem.words().split(' '), folder: folderKey } input1.title = input1.description.split('\n').shift() const input2 = { type: 'MARKDOWN_NOTE', content: faker.lorem.lines(), tags: faker.lorem.words().split(' '), folder: folderKey, linesHighlighted: randLinesHighlightedArray } input2.title = input2.content.split('\n').shift() return Promise.resolve() .then(() => { return Promise.all([ createNote(storageKey, input1), createNote(storageKey, input2) ]) }) .then(data => { const data1 = data[0] const data2 = data[1] expect(storageKey).toEqual(data1.storage) const jsonData1 = CSON.readFileSync( path.join(storagePath, 'notes', data1.key + '.cson') ) expect(input1.title).toEqual(data1.title) expect(input1.title).toEqual(jsonData1.title) expect(input1.description).toEqual(data1.description) expect(input1.description).toEqual(jsonData1.description) expect(input1.tags.length).toEqual(data1.tags.length) expect(input1.tags.length).toEqual(jsonData1.tags.length) expect(input1.snippets.length).toEqual(data1.snippets.length) expect(input1.snippets.length).toEqual(jsonData1.snippets.length) expect(input1.snippets[0].content).toEqual(data1.snippets[0].content) expect(input1.snippets[0].content).toEqual(jsonData1.snippets[0].content) expect(input1.snippets[0].name).toEqual(data1.snippets[0].name) expect(input1.snippets[0].name).toEqual(jsonData1.snippets[0].name) expect(input1.snippets[0].linesHighlighted).toEqual( data1.snippets[0].linesHighlighted ) expect(input1.snippets[0].linesHighlighted).toEqual( jsonData1.snippets[0].linesHighlighted ) expect(storageKey).toEqual(data2.storage) const jsonData2 = CSON.readFileSync( path.join(storagePath, 'notes', data2.key + '.cson') ) expect(input2.title).toEqual(data2.title) expect(input2.title).toEqual(jsonData2.title) expect(input2.content).toEqual(data2.content) expect(input2.content).toEqual(jsonData2.content) expect(input2.tags.length).toEqual(data2.tags.length) expect(input2.tags.length).toEqual(jsonData2.tags.length) expect(input2.linesHighlighted).toEqual(data2.linesHighlighted) expect(input2.linesHighlighted).toEqual(jsonData2.linesHighlighted) done() }) }) afterAll(function after() { localStorage.clear() sander.rimrafSync(storagePath) }) ================================================ FILE: tests/dataApi/createNoteFromUrl.test.js ================================================ const createNoteFromUrl = require('browser/main/lib/dataApi/createNoteFromUrl') global.document = require('jsdom').jsdom('') global.window = document.defaultView global.navigator = window.navigator const Storage = require('dom-storage') const localStorage = (window.localStorage = global.localStorage = new Storage( null, { strict: true } )) const path = require('path') const TestDummy = require('../fixtures/TestDummy') const sander = require('sander') const os = require('os') const CSON = require('@rokt33r/season') const storagePath = path.join(os.tmpdir(), 'test/create-note-from-url') let storageContext beforeEach(() => { storageContext = TestDummy.dummyStorage(storagePath) localStorage.setItem('storages', JSON.stringify([storageContext.cache])) }) it('Create a note from URL', () => { const storageKey = storageContext.cache.key const folderKey = storageContext.json.folders[0].key const url = 'https://shapeshed.com/writing-cross-platform-node/' return createNoteFromUrl(url, storageKey, folderKey).then(function assert({ note }) { expect(storageKey).toEqual(note.storage) const jsonData = CSON.readFileSync( path.join(storagePath, 'notes', note.key + '.cson') ) // Test if saved content is matching the created in memory note expect(note.content).toEqual(jsonData.content) expect(note.tags.length).toEqual(jsonData.tags.length) }) }) afterAll(function after() { localStorage.clear() sander.rimrafSync(storagePath) }) ================================================ FILE: tests/dataApi/createSnippet.test.js ================================================ const createSnippet = require('browser/main/lib/dataApi/createSnippet') const sander = require('sander') const os = require('os') const path = require('path') const snippetFilePath = path.join(os.tmpdir(), 'test', 'create-snippet') const snippetFile = path.join(snippetFilePath, 'snippets.json') beforeEach(() => { sander.writeFileSync(snippetFile, '[]') }) it('Create a snippet', () => { return Promise.resolve() .then(() => Promise.all([createSnippet(snippetFile)])) .then(function assert(data) { data = data[0] const snippets = JSON.parse(sander.readFileSync(snippetFile)) const snippet = snippets.find( currentSnippet => currentSnippet.id === data.id ) expect(snippet).not.toBeUndefined() expect(snippet.name).toEqual(data.name) expect(snippet.prefix).toEqual(data.prefix) expect(snippet.content).toEqual(data.content) expect(snippet.linesHighlighted).toEqual(data.linesHighlighted) }) }) afterAll(() => { sander.rimrafSync(snippetFilePath) }) ================================================ FILE: tests/dataApi/deleteFolder.test.js ================================================ const deleteFolder = require('browser/main/lib/dataApi/deleteFolder') const attachmentManagement = require('browser/main/lib/dataApi/attachmentManagement') const createNote = require('browser/main/lib/dataApi/createNote') const fs = require('fs') const faker = require('faker') global.document = require('jsdom').jsdom('') global.window = document.defaultView global.navigator = window.navigator const Storage = require('dom-storage') const localStorage = (window.localStorage = global.localStorage = new Storage( null, { strict: true } )) const path = require('path') const _ = require('lodash') const TestDummy = require('../fixtures/TestDummy') const sander = require('sander') const os = require('os') const CSON = require('@rokt33r/season') const storagePath = path.join(os.tmpdir(), 'test/delete-folder') let storageContext beforeEach(() => { storageContext = TestDummy.dummyStorage(storagePath) localStorage.setItem('storages', JSON.stringify([storageContext.cache])) }) it('Delete a folder', () => { const storageKey = storageContext.cache.key const folderKey = storageContext.json.folders[0].key let noteKey const input1 = { type: 'SNIPPET_NOTE', description: faker.lorem.lines(), snippets: [ { name: faker.system.fileName(), mode: 'text', content: faker.lorem.lines() } ], tags: faker.lorem.words().split(' '), folder: folderKey } input1.title = input1.description.split('\n').shift() return Promise.resolve() .then(function prepare() { return createNote(storageKey, input1).then( function createAttachmentFolder(data) { fs.mkdirSync( path.join(storagePath, attachmentManagement.DESTINATION_FOLDER) ) fs.mkdirSync( path.join( storagePath, attachmentManagement.DESTINATION_FOLDER, data.key ) ) noteKey = data.key return data } ) }) .then(function doTest() { return deleteFolder(storageKey, folderKey) }) .then(function assert(data) { expect(_.find(data.storage.folders, { key: folderKey })).toBeUndefined() const jsonData = CSON.readFileSync( path.join(data.storage.path, 'boostnote.json') ) expect(_.find(jsonData.folders, { key: folderKey })).toBeUndefined() const notePaths = sander.readdirSync(data.storage.path, 'notes') expect(notePaths.length).toBe( storageContext.notes.filter(note => note.folder !== folderKey).length ) const attachmentFolderPath = path.join( storagePath, attachmentManagement.DESTINATION_FOLDER, noteKey ) expect(fs.existsSync(attachmentFolderPath)).toBe(false) }) }) afterAll(() => { localStorage.clear() sander.rimrafSync(storagePath) }) ================================================ FILE: tests/dataApi/deleteNote-test.js ================================================ const test = require('ava') const createNote = require('browser/main/lib/dataApi/createNote') const deleteNote = require('browser/main/lib/dataApi/deleteNote') global.document = require('jsdom').jsdom('') global.window = document.defaultView global.navigator = window.navigator const Storage = require('dom-storage') const localStorage = (window.localStorage = global.localStorage = new Storage( null, { strict: true } )) const path = require('path') const TestDummy = require('../fixtures/TestDummy') const sander = require('sander') const os = require('os') const CSON = require('@rokt33r/season') const faker = require('faker') const fs = require('fs') const attachmentManagement = require('browser/main/lib/dataApi/attachmentManagement') const storagePath = path.join(os.tmpdir(), 'test/delete-note') test.beforeEach(t => { t.context.storage = TestDummy.dummyStorage(storagePath) localStorage.setItem('storages', JSON.stringify([t.context.storage.cache])) }) test.serial('Delete a note', t => { const storageKey = t.context.storage.cache.key const folderKey = t.context.storage.json.folders[0].key const input1 = { type: 'SNIPPET_NOTE', description: faker.lorem.lines(), snippets: [ { name: faker.system.fileName(), mode: 'text', content: faker.lorem.lines() } ], tags: faker.lorem.words().split(' '), folder: folderKey } input1.title = input1.description.split('\n').shift() return Promise.resolve() .then(function doTest() { return createNote(storageKey, input1) .then(function createAttachmentFolder(data) { fs.mkdirSync( path.join(storagePath, attachmentManagement.DESTINATION_FOLDER) ) fs.mkdirSync( path.join( storagePath, attachmentManagement.DESTINATION_FOLDER, data.key ) ) return data }) .then(function(data) { return deleteNote(storageKey, data.key) }) }) .then(function assert(data) { try { CSON.readFileSync( path.join(storagePath, 'notes', data.noteKey + '.cson') ) t.fail('note cson must be deleted.') } catch (err) { t.is(err.code, 'ENOENT') return data } }) .then(function assertAttachmentFolderDeleted(data) { const attachmentFolderPath = path.join( storagePath, attachmentManagement.DESTINATION_FOLDER, data.noteKey ) t.is(fs.existsSync(attachmentFolderPath), false) }) }) test.after(function after() { localStorage.clear() sander.rimrafSync(storagePath) }) ================================================ FILE: tests/dataApi/deleteSnippet-test.js ================================================ const test = require('ava') const deleteSnippet = require('browser/main/lib/dataApi/deleteSnippet') const sander = require('sander') const os = require('os') const path = require('path') const crypto = require('crypto') const snippetFilePath = path.join(os.tmpdir(), 'test', 'delete-snippet') const snippetFile = path.join(snippetFilePath, 'snippets.json') const newSnippet = { id: crypto.randomBytes(16).toString('hex'), name: 'Unnamed snippet', prefix: [], content: '' } test.beforeEach(t => { sander.writeFileSync(snippetFile, JSON.stringify([newSnippet])) }) test.serial('Delete a snippet', t => { return Promise.resolve() .then(function doTest() { return Promise.all([deleteSnippet(newSnippet, snippetFile)]) }) .then(function assert(data) { data = data[0] const snippets = JSON.parse(sander.readFileSync(snippetFile)) t.is(snippets.length, 0) }) }) test.after.always(() => { sander.rimrafSync(snippetFilePath) }) ================================================ FILE: tests/dataApi/exportFolder-test.js ================================================ const test = require('ava') const exportFolder = require('browser/main/lib/dataApi/exportFolder') const createNote = require('browser/main/lib/dataApi/createNote') global.document = require('jsdom').jsdom('') global.window = document.defaultView global.navigator = window.navigator const Storage = require('dom-storage') const localStorage = (window.localStorage = global.localStorage = new Storage( null, { strict: true } )) const path = require('path') const TestDummy = require('../fixtures/TestDummy') const os = require('os') const faker = require('faker') const fs = require('fs') const sander = require('sander') const storagePath = path.join(os.tmpdir(), 'test/export-note') test.beforeEach(t => { t.context.storage = TestDummy.dummyStorage(storagePath) localStorage.setItem('storages', JSON.stringify([t.context.storage.cache])) }) test.serial('Export a folder', t => { const storageKey = t.context.storage.cache.key const folderKey = t.context.storage.json.folders[0].key const input1 = { type: 'MARKDOWN_NOTE', description: '*Some* markdown text', tags: faker.lorem.words().split(' '), folder: folderKey } input1.title = 'input1' const input2 = { type: 'SNIPPET_NOTE', description: 'Some normal text', snippets: [ { name: faker.system.fileName(), mode: 'text', content: faker.lorem.lines() } ], tags: faker.lorem.words().split(' '), folder: folderKey } input2.title = 'input2' const config = { export: { metadata: 'DONT_EXPORT', variable: 'boostnote', prefixAttachmentFolder: false } } return createNote(storageKey, input1) .then(function() { return createNote(storageKey, input2) }) .then(function() { return exportFolder(storageKey, folderKey, 'md', storagePath, config) }) .then(function assert() { let filePath = path.join(storagePath, 'input1.md') t.true(fs.existsSync(filePath)) filePath = path.join(storagePath, 'input2.md') t.false(fs.existsSync(filePath)) }) }) test.after.always(function after() { localStorage.clear() sander.rimrafSync(storagePath) }) ================================================ FILE: tests/dataApi/exportStorage-test.js ================================================ const test = require('ava') const exportStorage = require('browser/main/lib/dataApi/exportStorage') global.document = require('jsdom').jsdom('') global.window = document.defaultView global.navigator = window.navigator const Storage = require('dom-storage') const localStorage = (window.localStorage = global.localStorage = new Storage( null, { strict: true } )) const path = require('path') const TestDummy = require('../fixtures/TestDummy') const os = require('os') const fs = require('fs') const sander = require('sander') test.beforeEach(t => { t.context.storageDir = path.join(os.tmpdir(), 'test/export-storage') t.context.storage = TestDummy.dummyStorage(t.context.storageDir) t.context.exportDir = path.join(os.tmpdir(), 'test/export-storage-output') try { fs.mkdirSync(t.context.exportDir) } catch (e) {} localStorage.setItem('storages', JSON.stringify([t.context.storage.cache])) }) test.serial('Export a storage', t => { const storageKey = t.context.storage.cache.key const folders = t.context.storage.json.folders const notes = t.context.storage.notes const exportDir = t.context.exportDir const folderKeyToName = folders.reduce((acc, folder) => { acc[folder.key] = folder.name return acc }, {}) const config = { export: { metadata: 'DONT_EXPORT', variable: 'boostnote', prefixAttachmentFolder: false } } return exportStorage(storageKey, 'md', exportDir, config).then(() => { notes.forEach(note => { const noteDir = path.join( exportDir, folderKeyToName[note.folder], `${note.title}.md` ) if (note.type === 'MARKDOWN_NOTE') { t.true(fs.existsSync(noteDir)) t.is(fs.readFileSync(noteDir, 'utf8'), note.content) } else if (note.type === 'SNIPPET_NOTE') { t.false(fs.existsSync(noteDir)) } }) }) }) test.afterEach.always(t => { localStorage.clear() sander.rimrafSync(t.context.storageDir) sander.rimrafSync(t.context.exportDir) }) ================================================ FILE: tests/dataApi/init.js ================================================ const test = require('ava') const init = require('browser/main/lib/dataApi/init') global.document = require('jsdom').jsdom('') global.window = document.defaultView global.navigator = window.navigator const Storage = require('dom-storage') const localStorage = (window.localStorage = global.localStorage = new Storage( null, { strict: true } )) const path = require('path') const TestDummy = require('../fixtures/TestDummy') const keygen = require('browser/lib/keygen') const sander = require('sander') const _ = require('lodash') const os = require('os') const v1StoragePath = path.join(os.tmpdir(), 'test/init-v1-storage') const legacyStoragePath = path.join(os.tmpdir(), 'test/init-legacy-storage') const emptyDirPath = path.join(os.tmpdir(), 'test/init-empty-storage') test.beforeEach(t => { localStorage.clear() // Prepare 3 types of dir t.context.v1StorageData = TestDummy.dummyStorage(v1StoragePath, { cache: { name: 'v1' } }) t.context.legacyStorageData = TestDummy.dummyLegacyStorage( legacyStoragePath, { cache: { name: 'legacy' } } ) t.context.emptyStorageData = { cache: { type: 'FILESYSTEM', name: 'empty', key: keygen(), path: emptyDirPath } } localStorage.setItem( 'storages', JSON.stringify([ t.context.v1StorageData.cache, t.context.legacyStorageData.cache, t.context.emptyStorageData.cache ]) ) }) test.serial('Initialize All Storages', t => { const { v1StorageData, legacyStorageData } = t.context return Promise.resolve() .then(function test() { return init() }) .then(function assert(data) { t.true(Array.isArray(data.storages)) t.is( data.notes.length, v1StorageData.notes.length + legacyStorageData.notes.length ) t.is(data.storages.length, 3) data.storages.forEach(function assertStorage(storage) { t.true(_.isString(storage.key)) t.true(_.isString(storage.name)) t.true(storage.type === 'FILESYSTEM') t.true(_.isString(storage.path)) }) }) .then(function after() { localStorage.clear() }) }) test.after.always(() => { localStorage.clear() sander.rimrafSync(v1StoragePath) sander.rimrafSync(legacyStoragePath) sander.rimrafSync(emptyDirPath) }) ================================================ FILE: tests/dataApi/migrateFromV6Storage-test.js ================================================ const test = require('ava') const migrateFromV6Storage = require('browser/main/lib/dataApi/migrateFromV6Storage') global.document = require('jsdom').jsdom('') global.window = document.defaultView global.navigator = window.navigator const Storage = require('dom-storage') const localStorage = (window.localStorage = global.localStorage = new Storage( null, { strict: true } )) const path = require('path') const TestDummy = require('../fixtures/TestDummy') const sander = require('sander') const CSON = require('@rokt33r/season') const _ = require('lodash') const os = require('os') const dummyStoragePath = path.join(os.tmpdir(), 'test/migrate-test-storage') test.beforeEach(t => { const dummyData = (t.context.dummyData = TestDummy.dummyLegacyStorage( dummyStoragePath )) console.log('init count', dummyData.notes.length) localStorage.setItem('storages', JSON.stringify([dummyData.cache])) }) test.serial('Migrate legacy storage into v1 storage', t => { return Promise.resolve() .then(function test() { return migrateFromV6Storage(dummyStoragePath) }) .then(function assert(data) { // Check the result. It must be true if succeed. t.true(data) // Check all notes migrated. const dummyData = t.context.dummyData const noteDirPath = path.join(dummyStoragePath, 'notes') const fileList = sander.readdirSync(noteDirPath) t.is(dummyData.notes.length, fileList.length) const noteMap = fileList.map(filePath => { return CSON.readFileSync(path.join(noteDirPath, filePath)) }) dummyData.notes.forEach(function(targetNote) { t.true( _.find(noteMap, { title: targetNote.title, folder: targetNote.folder }) != null ) }) // Check legacy folder directory is removed dummyData.json.folders.forEach(function(folder) { try { sander.statSync(dummyStoragePath, folder.key) t.fail('Folder still remains. ENOENT error must be occured.') } catch (err) { t.is(err.code, 'ENOENT') } }) }) }) test.after.always(function() { localStorage.clear() sander.rimrafSync(dummyStoragePath) }) ================================================ FILE: tests/dataApi/moveNote-test.js ================================================ const test = require('ava') const moveNote = require('browser/main/lib/dataApi/moveNote') global.document = require('jsdom').jsdom('') global.window = document.defaultView global.navigator = window.navigator const Storage = require('dom-storage') const localStorage = (window.localStorage = global.localStorage = new Storage( null, { strict: true } )) const path = require('path') const TestDummy = require('../fixtures/TestDummy') const sander = require('sander') const os = require('os') const CSON = require('@rokt33r/season') const storagePath = path.join(os.tmpdir(), 'test/move-note') const storagePath2 = path.join(os.tmpdir(), 'test/move-note2') test.beforeEach(t => { t.context.storage1 = TestDummy.dummyStorage(storagePath) t.context.storage2 = TestDummy.dummyStorage(storagePath2) localStorage.setItem( 'storages', JSON.stringify([t.context.storage1.cache, t.context.storage2.cache]) ) }) test.serial('Move a note', t => { const storageKey1 = t.context.storage1.cache.key const folderKey1 = t.context.storage1.json.folders[0].key const note1 = t.context.storage1.notes[0] const note2 = t.context.storage1.notes[1] const storageKey2 = t.context.storage2.cache.key const folderKey2 = t.context.storage2.json.folders[0].key return Promise.resolve() .then(function doTest() { return Promise.all([ moveNote(storageKey1, note1.key, storageKey1, folderKey1), moveNote(storageKey1, note2.key, storageKey2, folderKey2) ]) }) .then(function assert(data) { const data1 = data[0] const data2 = data[1] const jsonData1 = CSON.readFileSync( path.join(storagePath, 'notes', data1.key + '.cson') ) t.is(jsonData1.folder, folderKey1) t.is(jsonData1.title, note1.title) const jsonData2 = CSON.readFileSync( path.join(storagePath2, 'notes', data2.key + '.cson') ) t.is(jsonData2.folder, folderKey2) t.is(jsonData2.title, note2.title) try { CSON.readFileSync(path.join(storagePath, 'notes', note2.key + '.cson')) t.fail('The old note should be deleted.') } catch (err) { t.is(err.code, 'ENOENT') } }) }) test.after(function after() { localStorage.clear() sander.rimrafSync(storagePath) sander.rimrafSync(storagePath2) }) ================================================ FILE: tests/dataApi/removeStorage-test.js ================================================ const test = require('ava') const removeStorage = require('browser/main/lib/dataApi/removeStorage') global.document = require('jsdom').jsdom('') global.window = document.defaultView global.navigator = window.navigator const Storage = require('dom-storage') const localStorage = (window.localStorage = global.localStorage = new Storage( null, { strict: true } )) const path = require('path') const TestDummy = require('../fixtures/TestDummy') const sander = require('sander') const os = require('os') const storagePath = path.join(os.tmpdir(), 'test/remove-storage') test.beforeEach(t => { t.context.storage = TestDummy.dummyStorage(storagePath) localStorage.setItem('storages', JSON.stringify([t.context.storage.cache])) }) test('Remove a storage', t => { const storageKey = t.context.storage.cache.key return Promise.resolve() .then(function doTest() { return removeStorage(storageKey) }) .then(function assert(data) { t.is(JSON.parse(localStorage.getItem('storages')).length, 0) }) }) test.after(function after() { localStorage.clear() sander.rimrafSync(storagePath) }) ================================================ FILE: tests/dataApi/renameStorage-test.js ================================================ const test = require('ava') const renameStorage = require('browser/main/lib/dataApi/renameStorage') global.document = require('jsdom').jsdom('') global.window = document.defaultView global.navigator = window.navigator const Storage = require('dom-storage') const localStorage = (window.localStorage = global.localStorage = new Storage( null, { strict: true } )) const path = require('path') const _ = require('lodash') const TestDummy = require('../fixtures/TestDummy') const sander = require('sander') const os = require('os') const storagePath = path.join(os.tmpdir(), 'test/rename-storage') test.beforeEach(t => { t.context.storage = TestDummy.dummyStorage(storagePath) localStorage.setItem('storages', JSON.stringify([t.context.storage.cache])) }) test.serial('Rename a storage', t => { const storageKey = t.context.storage.cache.key return Promise.resolve() .then(function doTest() { return renameStorage(storageKey, 'changed') }) .then(function assert(data) { const cachedStorageList = JSON.parse(localStorage.getItem('storages')) t.true(_.find(cachedStorageList, { key: storageKey }).name === 'changed') }) }) test.after(function after() { localStorage.clear() sander.rimrafSync(storagePath) }) ================================================ FILE: tests/dataApi/reorderFolder-test.js ================================================ const test = require('ava') const reorderFolder = require('browser/main/lib/dataApi/reorderFolder') global.document = require('jsdom').jsdom('') global.window = document.defaultView global.navigator = window.navigator const Storage = require('dom-storage') const localStorage = (window.localStorage = global.localStorage = new Storage( null, { strict: true } )) const path = require('path') const _ = require('lodash') const TestDummy = require('../fixtures/TestDummy') const sander = require('sander') const os = require('os') const CSON = require('@rokt33r/season') const storagePath = path.join(os.tmpdir(), 'test/reorder-folder') test.beforeEach(t => { t.context.storage = TestDummy.dummyStorage(storagePath) localStorage.setItem('storages', JSON.stringify([t.context.storage.cache])) }) test.serial('Reorder a folder', t => { const storageKey = t.context.storage.cache.key const firstFolderKey = t.context.storage.json.folders[0].key const secondFolderKey = t.context.storage.json.folders[1].key return Promise.resolve() .then(function doTest() { return reorderFolder(storageKey, 0, 1) }) .then(function assert(data) { t.true(_.nth(data.storage.folders, 0).key === secondFolderKey) t.true(_.nth(data.storage.folders, 1).key === firstFolderKey) const jsonData = CSON.readFileSync( path.join(data.storage.path, 'boostnote.json') ) t.true(_.nth(jsonData.folders, 0).key === secondFolderKey) t.true(_.nth(jsonData.folders, 1).key === firstFolderKey) }) }) test.after(function after() { localStorage.clear() sander.rimrafSync(storagePath) }) ================================================ FILE: tests/dataApi/toggleStorage-test.js ================================================ const test = require('ava') const toggleStorage = require('browser/main/lib/dataApi/toggleStorage') global.document = require('jsdom').jsdom('') global.window = document.defaultView global.navigator = window.navigator const Storage = require('dom-storage') const localStorage = (window.localStorage = global.localStorage = new Storage( null, { strict: true } )) const path = require('path') const _ = require('lodash') const TestDummy = require('../fixtures/TestDummy') const sander = require('sander') const os = require('os') const storagePath = path.join(os.tmpdir(), 'test/toggle-storage') test.beforeEach(t => { t.context.storage = TestDummy.dummyStorage(storagePath) localStorage.setItem('storages', JSON.stringify([t.context.storage.cache])) }) test.serial('Toggle a storage location', t => { const storageKey = t.context.storage.cache.key return Promise.resolve() .then(function doTest() { return toggleStorage(storageKey, true) }) .then(function assert(data) { const cachedStorageList = JSON.parse(localStorage.getItem('storages')) t.true(_.find(cachedStorageList, { key: storageKey }).isOpen === true) }) }) test.after(function after() { localStorage.clear() sander.rimrafSync(storagePath) }) ================================================ FILE: tests/dataApi/updateFolder-test.js ================================================ const test = require('ava') const updateFolder = require('browser/main/lib/dataApi/updateFolder') global.document = require('jsdom').jsdom('') global.window = document.defaultView global.navigator = window.navigator const Storage = require('dom-storage') const localStorage = (window.localStorage = global.localStorage = new Storage( null, { strict: true } )) const path = require('path') const _ = require('lodash') const TestDummy = require('../fixtures/TestDummy') const sander = require('sander') const os = require('os') const CSON = require('@rokt33r/season') const storagePath = path.join(os.tmpdir(), 'test/update-folder') test.beforeEach(t => { t.context.storage = TestDummy.dummyStorage(storagePath) localStorage.setItem('storages', JSON.stringify([t.context.storage.cache])) }) test.serial('Update a folder', t => { const storageKey = t.context.storage.cache.key const folderKey = t.context.storage.json.folders[0].key const input = { name: 'changed', color: '#FF0000' } return Promise.resolve() .then(function doTest() { return updateFolder(storageKey, folderKey, input) }) .then(function assert(data) { t.true(_.find(data.storage.folders, input) != null) const jsonData = CSON.readFileSync( path.join(data.storage.path, 'boostnote.json') ) console.log(path.join(data.storage.path, 'boostnote.json')) t.true(_.find(jsonData.folders, input) != null) }) }) test.after(function after() { localStorage.clear() sander.rimrafSync(storagePath) }) ================================================ FILE: tests/dataApi/updateNote-test.js ================================================ const test = require('ava') const createNote = require('browser/main/lib/dataApi/createNote') const updateNote = require('browser/main/lib/dataApi/updateNote') global.document = require('jsdom').jsdom('') global.window = document.defaultView global.navigator = window.navigator const Storage = require('dom-storage') const localStorage = (window.localStorage = global.localStorage = new Storage( null, { strict: true } )) const path = require('path') const TestDummy = require('../fixtures/TestDummy') const sander = require('sander') const os = require('os') const CSON = require('@rokt33r/season') const faker = require('faker') const storagePath = path.join(os.tmpdir(), 'test/update-note') test.beforeEach(t => { t.context.storage = TestDummy.dummyStorage(storagePath) localStorage.setItem('storages', JSON.stringify([t.context.storage.cache])) }) test.serial('Update a note', t => { const storageKey = t.context.storage.cache.key const folderKey = t.context.storage.json.folders[0].key const randLinesHighlightedArray = new Array(10) .fill() .map(() => Math.round(Math.random() * 10)) const randLinesHighlightedArray2 = new Array(15) .fill() .map(() => Math.round(Math.random() * 15)) const input1 = { type: 'SNIPPET_NOTE', description: faker.lorem.lines(), snippets: [ { name: faker.system.fileName(), mode: 'text', content: faker.lorem.lines(), linesHighlighted: randLinesHighlightedArray } ], tags: faker.lorem.words().split(' '), folder: folderKey } input1.title = input1.description.split('\n').shift() const input2 = { type: 'MARKDOWN_NOTE', content: faker.lorem.lines(), tags: faker.lorem.words().split(' '), folder: folderKey, linesHighlighted: randLinesHighlightedArray } input2.title = input2.content.split('\n').shift() const input3 = { type: 'SNIPPET_NOTE', description: faker.lorem.lines(), snippets: [ { name: faker.system.fileName(), mode: 'text', content: faker.lorem.lines(), linesHighlighted: randLinesHighlightedArray2 } ], tags: faker.lorem.words().split(' ') } input3.title = input3.description.split('\n').shift() const input4 = { type: 'MARKDOWN_NOTE', content: faker.lorem.lines(), tags: faker.lorem.words().split(' '), linesHighlighted: randLinesHighlightedArray2 } input4.title = input4.content.split('\n').shift() return Promise.resolve() .then(function doTest() { return Promise.all([ createNote(storageKey, input1), createNote(storageKey, input2) ]).then(function updateNotes(data) { const data1 = data[0] const data2 = data[1] return Promise.all([ updateNote(data1.storage, data1.key, input3), updateNote(data1.storage, data2.key, input4) ]) }) }) .then(function assert(data) { const data1 = data[0] const data2 = data[1] const jsonData1 = CSON.readFileSync( path.join(storagePath, 'notes', data1.key + '.cson') ) t.is(input3.title, data1.title) t.is(input3.title, jsonData1.title) t.is(input3.description, data1.description) t.is(input3.description, jsonData1.description) t.is(input3.tags.length, data1.tags.length) t.is(input3.tags.length, jsonData1.tags.length) t.is(input3.snippets.length, data1.snippets.length) t.is(input3.snippets.length, jsonData1.snippets.length) t.is(input3.snippets[0].content, data1.snippets[0].content) t.is(input3.snippets[0].content, jsonData1.snippets[0].content) t.is(input3.snippets[0].name, data1.snippets[0].name) t.is(input3.snippets[0].name, jsonData1.snippets[0].name) t.deepEqual( input3.snippets[0].linesHighlighted, data1.snippets[0].linesHighlighted ) t.deepEqual( input3.snippets[0].linesHighlighted, jsonData1.snippets[0].linesHighlighted ) const jsonData2 = CSON.readFileSync( path.join(storagePath, 'notes', data2.key + '.cson') ) t.is(input4.title, data2.title) t.is(input4.title, jsonData2.title) t.is(input4.content, data2.content) t.is(input4.content, jsonData2.content) t.is(input4.tags.length, data2.tags.length) t.is(input4.tags.length, jsonData2.tags.length) t.deepEqual(input4.linesHighlighted, data2.linesHighlighted) t.deepEqual(input4.linesHighlighted, jsonData2.linesHighlighted) }) }) test.after(function after() { localStorage.clear() sander.rimrafSync(storagePath) }) ================================================ FILE: tests/dataApi/updateSnippet-test.js ================================================ const test = require('ava') const updateSnippet = require('browser/main/lib/dataApi/updateSnippet') const sander = require('sander') const os = require('os') const path = require('path') const crypto = require('crypto') const snippetFilePath = path.join(os.tmpdir(), 'test', 'update-snippet') const snippetFile = path.join(snippetFilePath, 'snippets.json') const oldSnippet = { id: crypto.randomBytes(16).toString('hex'), name: 'Initial snippet', prefix: [], content: '' } const newSnippet = { id: oldSnippet.id, name: 'new name', prefix: ['prefix'], content: 'new content' } test.beforeEach(t => { sander.writeFileSync(snippetFile, JSON.stringify([oldSnippet])) }) test.serial('Update a snippet', t => { return Promise.resolve() .then(function doTest() { return Promise.all([updateSnippet(newSnippet, snippetFile)]) }) .then(function assert() { const snippets = JSON.parse(sander.readFileSync(snippetFile)) const snippet = snippets.find( currentSnippet => currentSnippet.id === newSnippet.id ) t.not(snippet, undefined) t.is(snippet.name, newSnippet.name) t.deepEqual(snippet.prefix, newSnippet.prefix) t.is(snippet.content, newSnippet.content) }) }) test.after.always(() => { sander.rimrafSync(snippetFilePath) }) ================================================ FILE: tests/date-formatter-test.js ================================================ /** * @fileoverview Unit test for browser/lib/date-formatter.js */ const test = require('ava') const { formatDate } = require('browser/lib/date-formatter') test(t => { t.throws(() => formatDate('invalid argument'), 'Invalid argument.') }) ================================================ FILE: tests/fixtures/TestDummy.js ================================================ const faker = require('faker') const keygen = require('browser/lib/keygen') const _ = require('lodash') const sander = require('sander') const CSON = require('@rokt33r/season') const path = require('path') function dummyFolder(override = {}) { var data = { name: faker.lorem.word(), color: faker.internet.color() } if (override.key == null) data.key = keygen() Object.assign(data, override) return data } function dummyBoostnoteJSONData(override = {}, isLegacy = false) { var data = {} if (override.folders == null) { data.folders = [] var folderCount = Math.floor(Math.random() * 5) + 2 for (var i = 0; i < folderCount; i++) { var key = keygen() while (data.folders.some(folder => folder.key === key)) { key = keygen() } data.folders.push( dummyFolder({ key }) ) } } if (!isLegacy) data.version = '1.0' Object.assign(data, override) return data } function dummyNote(override = {}) { var data = Math.random() > 0.5 ? { type: 'MARKDOWN_NOTE', content: faker.lorem.lines() } : { type: 'SNIPPET_NOTE', description: faker.lorem.lines(), snippets: [ { name: faker.system.fileName(), mode: 'text', content: faker.lorem.lines() } ] } data.title = data.type === 'MARKDOWN_NOTE' ? data.content.split('\n').shift() : data.description.split('\n').shift() data.createdAt = faker.date.past() data.updatedAt = faker.date.recent() data.isStarred = false data.tags = faker.lorem.words().split(' ') if (override.key == null) data.key = keygen() if (override.folder == null) data.folder = keygen() Object.assign(data, override) return data } /** * @param {String} * @param {Object} * ``` * { * json: { * folders: [] * version: String(enum:'1.0') * }, * cache: { * key: String, * name: String, * type: String(enum:'FILESYSTEM'), * path: String * }, * notes: [] * } * ``` * @return {[type]} */ function dummyStorage(storagePath, override = {}) { var jsonData = override.json != null ? override.json : dummyBoostnoteJSONData() var cacheData = override.cache != null ? override.cache : {} if (cacheData.key == null) cacheData.key = keygen() if (cacheData.name == null) cacheData.name = faker.random.word() if (cacheData.type == null) cacheData.type = 'FILESYSTEM' cacheData.path = storagePath sander.writeFileSync( path.join(storagePath, 'boostnote.json'), JSON.stringify(jsonData) ) var notesData = [] var noteCount = Math.floor(Math.random() * 15) + 2 for (var i = 0; i < noteCount; i++) { var key = keygen(true) while (notesData.some(note => note.key === key)) { key = keygen(true) } var noteData = dummyNote({ key, folder: jsonData.folders[Math.floor(Math.random() * jsonData.folders.length)] .key }) notesData.push(noteData) } notesData.forEach(function saveNoteCSON(note) { CSON.writeFileSync( path.join(storagePath, 'notes', note.key + '.cson'), _.omit(note, ['key']) ) }) return { json: jsonData, cache: cacheData, notes: notesData } } function dummyLegacyStorage(storagePath, override = {}) { var jsonData = override.json != null ? override.json : dummyBoostnoteJSONData({}, true) var cacheData = override.cache != null ? override.cache : {} if (cacheData.key == null) cacheData.key = keygen() if (cacheData.name == null) cacheData.name = faker.random.word() if (cacheData.type == null) cacheData.type = 'FILESYSTEM' cacheData.path = storagePath sander.writeFileSync( path.join(storagePath, 'boostnote.json'), JSON.stringify(jsonData) ) var notesData = [] for (var j = 0; j < jsonData.folders.length; j++) { var folderNotes = [] var noteCount = Math.floor(Math.random() * 5) + 1 for (var i = 0; i < noteCount; i++) { var key = keygen(true) while (folderNotes.some(note => note.key === key)) { key = keygen(true) } var noteData = dummyNote({ key, folder: jsonData.folders[j].key }) folderNotes.push(noteData) } notesData = notesData.concat(folderNotes) CSON.writeFileSync( path.join(storagePath, jsonData.folders[j].key, 'data.json'), { notes: folderNotes.map(note => _.omit(note, ['folder'])) } ) } return { json: jsonData, cache: cacheData, notes: notesData } } module.exports = { dummyFolder, dummyBoostnoteJSONData, dummyStorage, dummyLegacyStorage, dummyNote } ================================================ FILE: tests/fixtures/markdowns.js ================================================ const basic = ` # Welcome to Boostnote! ## Click here to edit markdown :wave: ## Docs :memo: - [Boostnote | Boost your happiness, productivity and creativity.](https://hackernoon.com/boostnote-boost-your-happiness-productivity-and-creativity-315034efeebe) - [Cloud Syncing & Backups](https://github.com/BoostIO/Boostnote/wiki/Cloud-Syncing-and-Backup) - [How to sync your data across Desktop and Mobile apps](https://github.com/BoostIO/Boostnote/wiki/Sync-Data-Across-Desktop-and-Mobile-apps) - [Convert data from **Evernote** to Boostnote.](https://github.com/BoostIO/Boostnote/wiki/Evernote) - [Keyboard Shortcuts](https://github.com/BoostIO/Boostnote/wiki/Keyboard-Shortcuts) - [Keymaps in Editor mode](https://github.com/BoostIO/Boostnote/wiki/Keymaps-in-Editor-mode) - [How to set syntax highlight in Snippet note](https://github.com/BoostIO/Boostnote/wiki/Syntax-Highlighting) --- ## Article Archive :books: - [Reddit English](http://bit.ly/2mOJPu7) - [Reddit Spanish](https://www.reddit.com/r/boostnote_es/) - [Reddit Chinese](https://www.reddit.com/r/boostnote_cn/) - [Reddit Japanese](https://www.reddit.com/r/boostnote_jp/) --- ## Community :beers: - [GitHub](http://bit.ly/2AWWzkD) - [Twitter](http://bit.ly/2z8BUJZ) - [Facebook Group](http://bit.ly/2jcca8t) ` const codeblock = ` \`\`\`js:filename.js:2 var project = 'boostnote'; \`\`\` ` const katex = ` $$ c = \pm\sqrt{a^2 + b^2} $$ ` const checkboxes = ` - [ ] Unchecked - [x] Checked ` const smartQuotes = 'This is a "QUOTE".' const breaks = 'This is the first line.\nThis is the second line.' const abbrevations = ` ## abbr The HTML specification is maintained by the W3C. *[HTML]: Hyper Text Markup Language *[W3C]: World Wide Web Consortium ` const subTexts = ` ## sub H~2~0 ` const supTexts = ` ## sup 29^th^ ` const deflists = ` ## definition list ### list 1 Term 1 ~ Definition 1 Term 2 ~ Definition 2a ~ Definition 2b Term 3 ~ ### list 2 Term 1 : Definition 1 Term 2 with *inline markup* : Definition 2 { some code, part of Definition 2 } Third paragraph of definition 2. ` const shortcuts = 'Ctrl\n\n[[Ctrl]]' const footnote = ` ^[hello-world] hello-world: https://github.com/BoostIO/Boostnote/ ` const tocPlaceholder = ` [TOC] # H1 ## H2 ### H3 ###$ H4 ` const plantUmlMindMap = ` @startmindmap * Debian ** Ubuntu *** Linux Mint *** Kubuntu *** Lubuntu *** KDE Neon ** LMDE ** SolydXK ** SteamOS ** Raspbian with a very long name *** Raspmbc => OSMC *** Raspyfi => Volumio @endmindmap ` const plantUmlGantt = ` @startgantt [Prototype design] lasts 15 days [Test prototype] lasts 10 days [Test prototype] starts at [Prototype design]'s end @endgantt ` const plantUmlWbs = ` @startwbs * Business Process Modelling WBS ** Launch the project *** Complete Stakeholder Research *** Initial Implementation Plan ** Design phase *** Model of AsIs Processes Completed **** Model of AsIs Processes Completed1 **** Model of AsIs Processes Completed2 *** Measure AsIs performance metrics *** Identify Quick Wins ** Complete innovate phase @endwbs ` const plantUmlUml = ` @startuml left to right direction skinparam packageStyle rectangle actor customer actor clerk rectangle checkout { customer -- (checkout) (checkout) .> (payment) : include (help) .> (checkout) : extends (checkout) -- clerk } @enduml ` const plantUmlDitaa = ` @startditaa +--------+ +-------+ +-------+ | +---+ ditaa +--> | | | Text | +-------+ |Diagram| |Dokument| |!Magie!| | | | {d}| | | | | +---+----+ +-------+ +-------+ : ^ | Ein Haufen Arbeit | +-------------------------+ @endditaa ` export default { basic, codeblock, katex, checkboxes, smartQuotes, breaks, abbrevations, subTexts, supTexts, deflists, shortcuts, footnote, tocPlaceholder, plantUmlMindMap, plantUmlGantt, plantUmlWbs, plantUmlDitaa, plantUmlUml } ================================================ FILE: tests/helpers/setup-browser-env.js ================================================ import browserEnv from 'browser-env' browserEnv(['window', 'document', 'navigator']) // for CodeMirror mockup document.body.createTextRange = function() { return { setEnd: function() {}, setStart: function() {}, getBoundingClientRect: function() { return { right: 0 } }, getClientRects: function() { return { length: 0, left: 0, right: 0 } } } } window.localStorage = { // polyfill getItem() { return '{}' } } ================================================ FILE: tests/helpers/setup-electron-mock.js ================================================ import mock from 'mock-require' const noop = () => {} mock('electron', { remote: { app: { getAppPath: noop, getPath: noop } } }) ================================================ FILE: tests/jest.js ================================================ // Here you can mock the libraries connected through direct insertion